Repository: scopeInfinity/Video2Description Branch: VideoCaption Commit: 538568b42c89 Files: 68 Total size: 29.9 MB Directory structure: gitextract_80y_vnv1/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── labeler.yml │ └── workflows/ │ ├── ci.yml │ └── label.yml ├── .gitignore ├── LICENSE ├── README.md ├── REFERENCES.md ├── backend.Dockerfile ├── dataset/ │ ├── test_videodatainfo_2017.json │ ├── videodatainfo_2017.json │ └── videos/ │ └── README.md ├── dataset_cache/ │ └── README.md ├── docker-compose.yml ├── docker_build.sh ├── docker_hub.sh ├── docker_test.sh ├── early_tests.sh ├── environment.yml ├── frontend.Dockerfile ├── keep_alive.sh ├── requirements.txt ├── src/ │ ├── __init__.py │ ├── backend/ │ │ ├── CombinedResults/ │ │ │ ├── calculate_score_results.sh │ │ │ ├── calculate_total_score_json.py │ │ │ ├── find_total_sentences_unique.py │ │ │ └── summary.sh │ │ ├── __init__.py │ │ ├── data.py │ │ ├── framework.py │ │ ├── model.py │ │ ├── parser.py │ │ ├── plotepochlog.py │ │ ├── pred.sh │ │ ├── preprocess.py │ │ ├── run.sh │ │ ├── test_on_trained.sh │ │ ├── train.py │ │ ├── utils.py │ │ ├── videohandler.py │ │ ├── vocab.py │ │ └── vpreprocess.py │ ├── common/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── logger.py │ │ ├── rpc.py │ │ └── status.py │ ├── config.json │ ├── config_docker.json │ ├── frontend/ │ │ ├── __init__.py │ │ ├── app.py │ │ └── templates/ │ │ ├── get_ids.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── play.html │ │ ├── predict.html │ │ └── publicindex.html │ ├── run_tests.sh │ └── tests/ │ ├── __init__.py │ └── data/ │ ├── __init__.py │ ├── fetcher.py │ ├── test_fetcher.py │ └── videos/ │ └── .content ├── tests/ │ └── e2e/ │ ├── __init__.py │ └── test_external.py └── uploads/ └── touched ================================================ FILE CONTENTS ================================================ ================================================ FILE: .dockerignore ================================================ .git ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Sample video** Provide a sample video (if applicable). **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Docker Version - Docker Compose Version - Browser [e.g. chrome, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/labeler.yml ================================================ env: - Dockerfile - environment.yml - requirements.txt config: - src/config.json - src/config_docker.json test: - tests/* - tests/**/* - src/tests/* - src/tests/**/* ================================================ FILE: .github/workflows/ci.yml ================================================ name: CI on: push: branches: - VideoCaption - actions - speedo pull_request: branches: - VideoCaption schedule: - cron: "11 7 1 * *" workflow_dispatch: jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [2.7] steps: - uses: actions/checkout@v2 - name: Docker Pull run: | bash docker_hub.sh pull - name: Install dependencies run: | pip install -r requirements.txt bash early_tests.sh sudo apt-get install firefox wget 'https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux64.tar.gz' tar -xvzf geckodriver-v0.30.0-linux64.tar.gz sudo mv geckodriver /usr/local/bin - name: Build run: | bash docker_build.sh - name: Test run: | bash docker_test.sh # Push image to docker on 'push' event only. - name: Deploy to Docker Hub if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} env: DOCKER_USERNAME: "scopeinfinity" DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} run: | { echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin ; } && bash docker_hub.sh push ================================================ FILE: .github/workflows/label.yml ================================================ # This workflow will triage pull requests and apply a label based on the # paths that are modified in the pull request. # # To use this workflow, you will need to set up a .github/labeler.yml # file with configuration. For more information, see: # https://github.com/actions/labeler/blob/master/README.md name: Labeler on: [pull_request] jobs: label: runs-on: ubuntu-latest steps: - uses: actions/labeler@v2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" ================================================ FILE: .gitignore ================================================ # Other Git Projects FFmpeg/ # Learning Session Files *_state.txt *_model.dat *_logs.txt *_model.dat_*_loss_* *_logs_epoch_.txt *_logs_.txt model_*.dat* state_*.txt # Local Files to ignore display *.mp4 *.mp4_ # Backup Files *~ *# .#* # Files taken from other source glove/* models/* # Dynamically Generated Files vocab.dat glove.dat log.txt # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # dotenv .env # virtualenv .venv venv/ ENV/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # Video Captioning [![Build Status](https://travis-ci.com/scopeInfinity/Video2Description.svg?branch=VideoCaption)](https://travis-ci.com/scopeInfinity/Video2Description) [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FscopeInfinity%2FVideo2Description&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com) Generate caption for the given video clip Branch : [VideoCaption](https://github.com/scopeInfinity/Video2Description/tree/VideoCaption) (1a2124d), [VideoCaption_catt](https://github.com/scopeInfinity/Video2Description/tree/VideoCaption_catt) (647e73b4) ### Model Model generates natural sentence word by word ![SentenceGenerationImage](https://github.com/scopeInfinity/Video2Description/raw/VideoCaption/images/sentence_model.png) | Audio SubModel | Video SubModel | Sentence Generation SubModel | | :-------------: |:-------------:| :-----:| | ![audio_model][audio_model]| ![video_model][video_model] | ![sentence_generation][sentence_generation] [audio_model]: https://github.com/scopeInfinity/Video2Description/raw/VideoCaption/images/model_audio.png [video_model]: https://github.com/scopeInfinity/Video2Description/raw/VideoCaption/images/model_video.png [sentence_generation]: https://github.com/scopeInfinity/Video2Description/raw/VideoCaption/images/model_word.png Context extraction for Temporal Attention Model, at ith word generation ![AttentionModel](https://github.com/scopeInfinity/Video2Description/raw/VideoCaption/images/attention.png) ### Results - *f5c22f7* Test videos with good results | | | | | :-------------: |:-------------:| :-----:| | ![12727][12727]| ![12501][12501] | ![10802][10802] | two men are talking about a cooking show | a woman is cooking | a dog is running around a field | | ![12968][12968] | ![12937][12937] | ![12939][12939] | a woman is talking about a makeup face | a man is driving a car down the road | a man is cooking in a kitchen | ![12683][12683] | ![12901][12901] | ![12994][12994] | a man is playing a video game | two men are playing table tennis in a stadium | a man is talking about a computer program Test videos with poor results | | | | | :-------------: |:-------------:| :-----:| | ![12589][12589]| ![12966][12966] | ![12908][12908] | a person is playing with a toy | a man is walking on the field | a man is standing in a gym | [12727]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12727.gif [12501]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12501.gif [10802]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/10802.gif [12968]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12968.gif [12937]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12937.gif [12939]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12939.gif [12683]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12683.gif [12901]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12901.gif [12994]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12994.gif [12589]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12589.gif [12966]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12966.gif [12908]: https://raw.githubusercontent.com/scopeInfinity/Video2Description/VideoCaption/f5c22f7_images/12908.gif ### Try it out!!! * Please feel free to raise PR with necessary suggestions. * Clone the repository` * `git clone https://github.com/scopeInfinity/Video2Description.git` * Install docker and docker-compose * Current config has docker-compose file format '3.2'. * https://github.com/docker/compose/releases * ```bash sudo apt-get install docker.io sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose ``` * docs * https://docs.docker.com/install/linux/docker-ce/ubuntu/ * https://docs.docker.com/compose/install/ * Pull the prebuild images and run the container ```bash $ docker-compose pull $ docker-compose up ``` * Browse to `http://localhost:8080/` * backend might take few minutes to reach a stable stage. ##### Execution without Docker * We can go always go through `backend.Dockerfile` and `frontend.Dockerfile` to understand better. * Update `src/config.json` as per the requirement and use those path during upcoming steps. * To know more about any field, just search for the reference in the codebase. * Install miniconda * https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html * Get `glove.6B.300d.txt` from `https://nlp.stanford.edu/projects/glove/` * Install ffmpeg * Configure, build and install ffmpeg from source with shared libraries ```bash $ git clone 'https://github.com/FFmpeg/FFmpeg.git' $ cd FFmpeg $ ./configure --enable-shared # Use --prefix if need to install in custom directory $ make # make install ``` * If required, use `https://github.com/tylin/coco-caption/` for scoring the model. * Then create conda environment using `environment.yml` * `$ conda env create -f environment.yml` * And activate the environment ``` $ conda activate . ``` * Turn up the backend * `src$ python -m backend.parser server --start --model /path/to/model` * Turn up the web frontend * `src$ python -m frontend.app` ### Info Data Directory and Working Directory can be same as the project root directory. ### Data Directory File | Reference --- | --- */path/to/data_dir/VideoDataset/videodatainfo_2017.json* | http://ms-multimedia-challenge.com/2017/dataset */path/to/data_dir/VideoDataset/videos/[0-9]+.mp4* | Download videos based on above dataset */path/to/data_dir/glove/glove.6B.300d.txt* | https://nlp.stanford.edu/projects/glove/ */path/to/data_dir/VideoDataset/cache_40_224x224/[0-9]+.npy* | Video cached files will be created on fly ### Working Directory File | Content --- | --- */path/to/working_dir/glove.dat* | Pickle Dumped Glove Embedding */path/to/working_dir/vocab.dat* | Pickle Dumped Vocabulary Words ### Download Dataset * Execute `python videohandler.py` from *VideoDataset* Directory ### Execution It currently supports train, predict and server mode. Please use the following command for better explanation. ```bash src$ python -m backend.parse -h ``` ### Training Methods * Try Iterative Learning * Try Random Learning ### Evaluation #### Prerequisite ```bash cd /path/to/eval_dir/ git clone 'https://github.com/tylin/coco-caption.git' cococaption ln /path/to/working_dir/cocoeval.py cococaption/ ``` #### Evaluate ```bash # One can do changes in parser.py for numbers of test examples to be considered in evaluation python parser.py predict save_all_test python /path/to/eval_dir/cocoeval.py .txt ``` #### Sample Evaluation while training Commit | Training | Total | CIDEr | Bleu_4 | ROUGE_L | METEOR | Model Filename --- | --- | --- | --- | --- | --- | --- | --- 647e73b4 | 10 epochs | 1.1642 | 0.1580 | 0.3090 | 0.4917 | 0.2055 | CAttention_ResNet_D512L512_G128G64_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4990_loss_2.484_Cider0.360_Blue0.369_Rouge0.580_Meteor0.256 1a2124d | 17 epochs | 1.1599 | 0.1654 | 0.3022 | 0.4849 | 0.2074 | ResNet_D512L512_G128G64_D1024D0.20BN_BDLSTM1024_D0.2L1024DVS_model.dat_4987_loss_2.203_Cider0.342_Blue0.353_Rouge0.572_Meteor0.256 f5c22f7 | 17 epochs | 1.1559 | 0.1680 | 0.3000 | 0.4832 | 0.2047 | ResNet_D512L512_G128G64_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4983_loss_2.350_Cider0.355_Blue0.353_Rouge0.571_Meteor0.247_TOTAL_1.558_BEST bd072ac | 11 CPUhrs with Multiprocessing (16 epochs) | 1.0736 | 0.1528 | 0.2597 | 0.4674 | 0.1936 | ResNet_D512L512_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4986_loss_2.306_Cider0.347_Blue0.328_Rouge0.560_Meteor0.246 3ccf5d5 | 15 CPUhrs | 1.0307 | 0.1258 | 0.2535 | 0.4619 | 0.1895 | res_mcnn_rand_b100_s500_model.dat_model1_3ccf5d5 Check `Specifications` section for model comparision. Temporal attention Model for is on `VideoCaption_catt` branch. Pre-trained Models : https://drive.google.com/open?id=1gexBRQfrjfcs7N5UI5NtlLiIR_xa69tK ### Web Server - Start the server **(S)** for to compute predictions (Within conda environment) ```bash python parser.py server -s -m ``` - Check `config.json` for configurations. - Execute `python app.py` from webserver (No need for conda environment) - Make sure, your the process is can new files inside `$UPLOAD_FOLDER` - Open `http://webserver:5000/` to open Web Server for testing (under default configuration) ### Specifications ##### Commit: 3ccf5d5 - ResNet over LSTM for feature extraction - Word by Word generation based on last prediction for Sentence Generation using LSTM - Random Dataset Learning of training data - Vocab Size 9448 - Glove of 300 Dimension ##### Commit: bd072ac - ResNet over BiDirection GRU for feature extraction - Sequential Learning of training data - Batch Normalization + Few more tweaks in Model - Bleu, CIDEr, Rouge, Meteor score generation for validation - Multiprocessing keras ##### Commit: f5c22f7 - Audio with BiDirection GRU ##### Commit: 1a2124d - Audio with BiDirection LSTM ##### Commit: 647e73b - Audio with BiDirection GRU using temporal attention for context # Image Captioning Generate caption for the given images Branch : [onehot_gen](https://github.com/scopeInfinity/Video2Description/tree/onehot_gen) Commit : [898f15778d40b67f333df0a0e744a4af0b04b16c](https://github.com/scopeInfinity/Video2Description/commit/898f15778d40b67f333df0a0e744a4af0b04b16c) Trained Model : https://drive.google.com/open?id=1qzMCAbh_tW3SjMMVSPS4Ikt6hDnGfhEN Categorical Crossentropy Loss : 0.58 ================================================ FILE: REFERENCES.md ================================================ [1] J. Xu, T. Mei, T. Yao, Y. Rui. MSR-VTT: A Large Video Description Dataset for Bridging Video and Language, In Proceedings of CVPR, 2016. [2] Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun Deep Residual Learning for Image Recognition 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR) [3] Jeffrey Pennington, Richard Socher, and Christopher D. Manning. GloVe: Global Vec- tors for Word Representation (2014) [4] McFee, Brian, Colin Raffel, Dawen Liang, Daniel PW Ellis, Matt McVicar, Eric Bat- tenberg, and Oriol Nieto. librosa: Audio and music signal analysis in python. In Pro- ceedings of the 14th python in science conference, pp. 18-25. 2015 [5] Oriol Vinyals, Alexander Toshev, Samy Bengio, Dumitru Erhan. Show and Tell: A Neural Image Caption Generator (April 2015) [6] Jeff Donahue, Lisa Anne Hendricks, Marcus Rohrbach, Subhashini Venugopalan, Sergio Guadarrama, Kate Saenko, Trevor Darrell Long-term Recurrent Convolutional Networks for Visual Recognition and Description (Nov 2014)​ [7] Subhashini Venugopalan, Marcus Rohrbach, Jeff Donahue, Raymond Mooney, Trevor Darrell, Kate Saenko and Raymond Moone, Sequence to Sequence Video to Text (May 2015) [8] Ilya Sutskever, Oriol Vinyals, Quoc V. Le, Sequence to Sequence Learning with Neural Networks (Sep 2014) [9] Ramakrishna Vedantam, C. Lawrence Zitnick and Devi Parikh CIDEr: Consensus- based Image Description Evaluation, (The Computer Vision Foundation 2015) [10] Alon Lavie and Michael Denkowski, The METEOR Metric for Automatic Evaluation of Machine Translation, Machine Translation, 2010 [11] Kishore Papineni,Salim Roukos,Todd Ward and Wei-Jing Zhu BLEU: a method for automatic evaluation of machine translation ACL ’02 Proceedings of the 40th Annual Meeting on Association for Computational Linguistics, Pages 311-318 (2002) [12] Lin, C.Y.Rouge: A package for automatic evaluation of summaries. In Text Summa- rization Branches Out: Proceedings of the ACL 04 Workshop (pp. 74-81) (2004, July) ================================================ FILE: backend.Dockerfile ================================================ FROM ubuntu:xenial as my_base RUN apt-get update RUN apt-get install -y libsamplerate0 curl libsndfile1 pkg-config nasm wget zip FROM my_base as ffmpeg_builder WORKDIR /tmp RUN wget https://github.com/FFmpeg/FFmpeg/archive/master.zip -O ffmpeg.zip RUN unzip ffmpeg.zip RUN rm ffmpeg.zip WORKDIR /tmp/FFmpeg-master/ RUN ./configure --enable-shared RUN make -j32 FROM my_base as glove_builder WORKDIR /tmp # https://nlp.stanford.edu/projects/glove/ RUN wget http://nlp.stanford.edu/data/glove.6B.zip && \ unzip glove.6B.zip glove.6B.300d.txt && \ rm glove.6B.zip FROM my_base as deploy # FROM conda/miniconda2 RUN apt-get update RUN apt-get install -y libsamplerate0 curl libsndfile1 pkg-config nasm wget zip RUN useradd -m -s /bin/bash si RUN mkdir /var/log/v2d RUN chown si:si /var/log/v2d RUN chmod 700 /var/log/v2d USER si # Installing miniconda RUN wget -N https://repo.anaconda.com/miniconda/Miniconda2-latest-Linux-x86_64.sh -O /tmp/Miniconda2-latest-Linux-x86_64.sh RUN bash /tmp/Miniconda2-latest-Linux-x86_64.sh -b RUN rm /tmp/Miniconda2-latest-Linux-x86_64.sh USER root RUN ln -s /home/si/miniconda2/bin/conda /usr/bin/ USER si # glove RUN mkdir -p /home/si/v2d/dataset WORKDIR /home/si/v2d/dataset COPY --from=glove_builder /tmp/glove.6B.300d.txt /home/si/v2d/dataset/glove.6B.300d.txt # ffmpeg build and install COPY --from=ffmpeg_builder /tmp/FFmpeg-master/ /tmp/FFmpeg-master/ WORKDIR /tmp/FFmpeg-master/ USER root RUN make install USER si RUN echo 'export LD_LIBRARY_PATH=/usr/local/lib' >> /home/si/.bashrc # coco-caption WORKDIR /home/si RUN wget -N 'https://github.com/tylin/coco-caption/archive/master.zip' -O coco.zip && \ unzip coco.zip && \ mv coco-caption-master coco-caption && \ rm coco.zip # Create conda environment # Note: ffmpeg with --enable-shared should be before installing opencv WORKDIR /home/si/v2d/ COPY --chown=si:si environment.yml /home/si/v2d/ RUN conda env create -f environment.yml RUN conda init bash RUN echo "conda activate V2D" >> /home/si/.bashrc # Prepare basic files ENV V2D_CONFIG_FILE=config_docker.json RUN mkdir -p /home/si/v2d/dataset RUN mkdir -p /home/si/v2d/dataset_cache RUN mkdir -p /home/si/v2d/models RUN mkdir -p /tmp/v2d/app/uploads COPY --chown=si:si dataset/videodatainfo_2017.json /home/si/v2d/dataset/ COPY --chown=si:si dataset/test_videodatainfo_2017.json /home/si/v2d/dataset/ COPY --chown=si:si src/ /home/si/v2d/src/ WORKDIR /home/si/v2d/src # Prepares cache for pretrained model COPY --chown=si:si models/ /home/si/v2d/models/ WORKDIR /home/si/v2d/models/ RUN wget -q -N 'https://github.com/scopeInfinity/Video2Description/releases/download/models/ResNet_D512L512_G128G64_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4983_loss_2.350_Cider0.355_Blue0.353_Rouge0.571_Meteor0.247_TOTAL_1.558_BEST' RUN echo "Available Models:" RUN ls -1 /home/si/v2d/models WORKDIR /home/si/v2d/src/ RUN conda run -n V2D python -m backend.parser server --init-only -m /home/si/v2d/models/ResNet_D512L512_G128G64_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4983_loss_2.350_Cider0.355_Blue0.353_Rouge0.571_Meteor0.247_TOTAL_1.558_BEST ================================================ FILE: dataset/test_videodatainfo_2017.json ================================================ {"info": {"contributor": "Microsoft MSM group", "data_created": "2017-05-31 12:10:25", "version": "2.0", "description": "This is 2.0 version of the 2016 MSR-VTT dataset.", "year": "2017"}, "videos": [{"category": 14, "url": "https://www.youtube.com/watch?v=4TgXgwVndiw", "video_id": "video12728", "start time": 145.49, "end time": 173.19, "split": "test", "id": 12728}, {"category": 16, "url": "https://www.youtube.com/watch?v=42jC7y8b2VI", "video_id": "video11167", "start time": 19.27, "end time": 47.86, "split": "test", "id": 11167}, {"category": 13, "url": "https://www.youtube.com/watch?v=o4x-G_odmFQ", "video_id": "video10242", "start time": 41.02, "end time": 66.78, "split": "test", "id": 10242}, {"category": 11, "url": "https://www.youtube.com/watch?v=5HBgXY_MrQQ", "video_id": "video12303", "start time": 73.0, "end time": 84.34, "split": "test", "id": 12303}, {"category": 11, "url": "https://www.youtube.com/watch?v=Gv_4ZyrxhSI", "video_id": "video12888", "start time": 0.0, "end time": 11.63, "split": "test", "id": 12888}, {"category": 19, "url": "https://www.youtube.com/watch?v=pyMTSr8hbow", "video_id": "video10083", "start time": 76.57, "end time": 86.81, "split": "test", "id": 10083}, {"category": 5, "url": "https://www.youtube.com/watch?v=JSkvChTSanM", "video_id": "video11207", "start time": 219.9, "end time": 233.25, "split": "test", "id": 11207}, {"category": 4, "url": "https://www.youtube.com/watch?v=oIwqlJqH2XE", "video_id": "video11882", "start time": 36.65, "end time": 55.04, "split": "test", "id": 11882}, {"category": 9, "url": "https://www.youtube.com/watch?v=3L4CeF7ROCM", "video_id": "video12960", "start time": 0.0, "end time": 19.17, "split": "test", "id": 12960}, {"category": 13, "url": "https://www.youtube.com/watch?v=AYMj-isXtr4", "video_id": "video11347", "start time": 52.3, "end time": 69.38, "split": "test", "id": 11347}, {"category": 2, "url": "https://www.youtube.com/watch?v=7AvcG_-DnA8", "video_id": "video12141", "start time": 292.21, "end time": 305.11, "split": "test", "id": 12141}, {"category": 18, "url": "https://www.youtube.com/watch?v=6tIVHViRQ1c", "video_id": "video10269", "start time": 0.0, "end time": 16.93, "split": "test", "id": 10269}, {"category": 7, "url": "https://www.youtube.com/watch?v=1ROWuwPnthE", "video_id": "video12826", "start time": 61.44, "end time": 75.72, "split": "test", "id": 12826}, {"category": 3, "url": "https://www.youtube.com/watch?v=pu0mhnKpYio", "video_id": "video11015", "start time": 345.26, "end time": 361.38, "split": "test", "id": 11015}, {"category": 3, "url": "https://www.youtube.com/watch?v=00EVI5yIoUw", "video_id": "video10210", "start time": 16.37, "end time": 29.53, "split": "test", "id": 10210}, {"category": 13, "url": "https://www.youtube.com/watch?v=MHSx2_UqOoU", "video_id": "video12467", "start time": 184.44, "end time": 195.37, "split": "test", "id": 12467}, {"category": 9, "url": "https://www.youtube.com/watch?v=2SVB_jVZ6_M", "video_id": "video11656", "start time": 3.82, "end time": 24.0, "split": "test", "id": 11656}, {"category": 3, "url": "https://www.youtube.com/watch?v=pQ68SDKkvS8", "video_id": "video11539", "start time": 124.34, "end time": 153.8, "split": "test", "id": 11539}, {"category": 7, "url": "https://www.youtube.com/watch?v=bJyTdkyo8R4", "video_id": "video12539", "start time": 76.33, "end time": 92.97, "split": "test", "id": 12539}, {"category": 17, "url": "https://www.youtube.com/watch?v=QaszXW8aJlE", "video_id": "video10570", "start time": 65.65, "end time": 81.93, "split": "test", "id": 10570}, {"category": 3, "url": "https://www.youtube.com/watch?v=q4wkKwT3PRM", "video_id": "video10136", "start time": 83.97, "end time": 111.57, "split": "test", "id": 10136}, {"category": 6, "url": "https://www.youtube.com/watch?v=0DBM1PZxyLA", "video_id": "video11204", "start time": 274.15, "end time": 285.6, "split": "test", "id": 11204}, {"category": 11, "url": "https://www.youtube.com/watch?v=-zRBMNhvfi0", "video_id": "video11182", "start time": 204.78, "end time": 224.48, "split": "test", "id": 11182}, {"category": 18, "url": "https://www.youtube.com/watch?v=pCM36rMRnrk", "video_id": "video12239", "start time": 31.33, "end time": 42.13, "split": "test", "id": 12239}, {"category": 7, "url": "https://www.youtube.com/watch?v=-8H0KYDP44M", "video_id": "video11071", "start time": 20.94, "end time": 37.38, "split": "test", "id": 11071}, {"category": 16, "url": "https://www.youtube.com/watch?v=nq4a_lnKD3A", "video_id": "video11323", "start time": 41.29, "end time": 65.31, "split": "test", "id": 11323}, {"category": 8, "url": "https://www.youtube.com/watch?v=rgfLajtqcAc", "video_id": "video10245", "start time": 25.51, "end time": 46.01, "split": "test", "id": 10245}, {"category": 3, "url": "https://www.youtube.com/watch?v=1qXv5LCylSk", "video_id": "video12611", "start time": 6.89, "end time": 34.41, "split": "test", "id": 12611}, {"category": 18, "url": "https://www.youtube.com/watch?v=-bhSrkMlRHQ", "video_id": "video10524", "start time": 196.94, "end time": 215.36, "split": "test", "id": 10524}, {"category": 0, "url": "https://www.youtube.com/watch?v=rp4UwPZfRis", "video_id": "video11791", "start time": 144.78, "end time": 155.08, "split": "test", "id": 11791}, {"category": 6, "url": "https://www.youtube.com/watch?v=IUGa3kZH4NM", "video_id": "video10844", "start time": 15.25, "end time": 38.05, "split": "test", "id": 10844}, {"category": 19, "url": "https://www.youtube.com/watch?v=DKL4X0PZz7M", "video_id": "video10263", "start time": 119.75, "end time": 130.18, "split": "test", "id": 10263}, {"category": 5, "url": "https://www.youtube.com/watch?v=rGgoCm1hofM", "video_id": "video12160", "start time": 17.53, "end time": 44.29, "split": "test", "id": 12160}, {"category": 18, "url": "https://www.youtube.com/watch?v=Qmfkofj-fME", "video_id": "video11535", "start time": 514.29, "end time": 525.81, "split": "test", "id": 11535}, {"category": 7, "url": "https://www.youtube.com/watch?v=-iTjTCE0_yY", "video_id": "video12429", "start time": 4.41, "end time": 23.93, "split": "test", "id": 12429}, {"category": 9, "url": "https://www.youtube.com/watch?v=RX6jisSb-ec", "video_id": "video10400", "start time": 284.36, "end time": 310.09, "split": "test", "id": 10400}, {"category": 18, "url": "https://www.youtube.com/watch?v=j2WQip68HaU", "video_id": "video12144", "start time": 180.17, "end time": 193.93, "split": "test", "id": 12144}, {"category": 3, "url": "https://www.youtube.com/watch?v=GYSoQiwT4Iw", "video_id": "video11783", "start time": 78.77, "end time": 108.05, "split": "test", "id": 11783}, {"category": 3, "url": "https://www.youtube.com/watch?v=7r5u819B0Es", "video_id": "video12046", "start time": 205.45, "end time": 222.94, "split": "test", "id": 12046}, {"category": 9, "url": "https://www.youtube.com/watch?v=0_qQeSXaVt0", "video_id": "video11363", "start time": 87.01, "end time": 97.21, "split": "test", "id": 11363}, {"category": 3, "url": "https://www.youtube.com/watch?v=IbQDrRRqs-k", "video_id": "video12786", "start time": 37.62, "end time": 51.67, "split": "test", "id": 12786}, {"category": 18, "url": "https://www.youtube.com/watch?v=H_IfRNp0ncU", "video_id": "video12513", "start time": 27.07, "end time": 40.75, "split": "test", "id": 12513}, {"category": 4, "url": "https://www.youtube.com/watch?v=8s4NrpsuwTk", "video_id": "video12221", "start time": 22.27, "end time": 44.46, "split": "test", "id": 12221}, {"category": 10, "url": "https://www.youtube.com/watch?v=J_joiSa5tHI", "video_id": "video10200", "start time": 185.13, "end time": 200.98, "split": "test", "id": 10200}, {"category": 13, "url": "https://www.youtube.com/watch?v=7RfGo4xIaM4", "video_id": "video11145", "start time": 22.5, "end time": 35.52, "split": "test", "id": 11145}, {"category": 16, "url": "https://www.youtube.com/watch?v=qn-S3aS2Rrc", "video_id": "video11835", "start time": 45.69, "end time": 58.27, "split": "test", "id": 11835}, {"category": 16, "url": "https://www.youtube.com/watch?v=bcxQi7JkyHw", "video_id": "video10307", "start time": 233.28, "end time": 244.12, "split": "test", "id": 10307}, {"category": 16, "url": "https://www.youtube.com/watch?v=2tOo3NED_Ac", "video_id": "video12700", "start time": 378.01, "end time": 388.05, "split": "test", "id": 12700}, {"category": 0, "url": "https://www.youtube.com/watch?v=dCLS_ztGOBk", "video_id": "video12476", "start time": 42.17, "end time": 55.85, "split": "test", "id": 12476}, {"category": 18, "url": "https://www.youtube.com/watch?v=3-hrR9IvhOo", "video_id": "video10664", "start time": 336.52, "end time": 353.0, "split": "test", "id": 10664}, {"category": 13, "url": "https://www.youtube.com/watch?v=o1Jw6Z3q8xw", "video_id": "video11962", "start time": 26.51, "end time": 47.42, "split": "test", "id": 11962}, {"category": 16, "url": "https://www.youtube.com/watch?v=1qCOOL-STLU", "video_id": "video11809", "start time": 42.09, "end time": 58.33, "split": "test", "id": 11809}, {"category": 14, "url": "https://www.youtube.com/watch?v=hdyqbfNP0k0", "video_id": "video10666", "start time": 132.35, "end time": 147.26, "split": "test", "id": 10666}, {"category": 14, "url": "https://www.youtube.com/watch?v=iXEE92C75mc", "video_id": "video11829", "start time": 0.0, "end time": 13.45, "split": "test", "id": 11829}, {"category": 4, "url": "https://www.youtube.com/watch?v=6yiiAF5dYdo", "video_id": "video10004", "start time": 140.42, "end time": 154.87, "split": "test", "id": 10004}, {"category": 16, "url": "https://www.youtube.com/watch?v=hqB_TTCE-3U", "video_id": "video11133", "start time": 48.63, "end time": 75.86, "split": "test", "id": 11133}, {"category": 4, "url": "https://www.youtube.com/watch?v=L-U1MMa0SHw", "video_id": "video10124", "start time": 91.24, "end time": 103.12, "split": "test", "id": 10124}, {"category": 14, "url": "https://www.youtube.com/watch?v=h6Hlv98RFNY", "video_id": "video12843", "start time": 77.36, "end time": 88.4, "split": "test", "id": 12843}, {"category": 13, "url": "https://www.youtube.com/watch?v=sEIf90Nh7-o", "video_id": "video12054", "start time": 0.0, "end time": 14.06, "split": "test", "id": 12054}, {"category": 13, "url": "https://www.youtube.com/watch?v=F9NwpIFkiD4", "video_id": "video10046", "start time": 127.14, "end time": 155.94, "split": "test", "id": 10046}, {"category": 1, "url": "https://www.youtube.com/watch?v=KzJWRSXqDHU", "video_id": "video12266", "start time": 172.99, "end time": 191.61, "split": "test", "id": 12266}, {"category": 11, "url": "https://www.youtube.com/watch?v=dsSSpZ2JpxY", "video_id": "video11981", "start time": 6.79, "end time": 33.91, "split": "test", "id": 11981}, {"category": 15, "url": "https://www.youtube.com/watch?v=CcCeqmTvBkU", "video_id": "video10759", "start time": 225.33, "end time": 253.93, "split": "test", "id": 10759}, {"category": 9, "url": "https://www.youtube.com/watch?v=I7g08nwEmyY", "video_id": "video12785", "start time": 29.25, "end time": 43.85, "split": "test", "id": 12785}, {"category": 18, "url": "https://www.youtube.com/watch?v=PjbuZB7EYMY", "video_id": "video11313", "start time": 55.11, "end time": 80.11, "split": "test", "id": 11313}, {"category": 18, "url": "https://www.youtube.com/watch?v=gusuT78Sj5E", "video_id": "video11773", "start time": 96.57, "end time": 123.49, "split": "test", "id": 11773}, {"category": 17, "url": "https://www.youtube.com/watch?v=CcI2F8UISlA", "video_id": "video10016", "start time": 61.05, "end time": 87.92, "split": "test", "id": 10016}, {"category": 5, "url": "https://www.youtube.com/watch?v=mmabg3HnGdw", "video_id": "video11172", "start time": 2.31, "end time": 31.55, "split": "test", "id": 11172}, {"category": 3, "url": "https://www.youtube.com/watch?v=qtPLJBnUwhU", "video_id": "video12522", "start time": 451.06, "end time": 465.61, "split": "test", "id": 12522}, {"category": 13, "url": "https://www.youtube.com/watch?v=4FoTKBJ8TxU", "video_id": "video10635", "start time": 10.21, "end time": 23.45, "split": "test", "id": 10635}, {"category": 16, "url": "https://www.youtube.com/watch?v=qG2nkh4NMBA", "video_id": "video11577", "start time": 210.12, "end time": 237.85, "split": "test", "id": 11577}, {"category": 4, "url": "https://www.youtube.com/watch?v=45FyPMq8CgY", "video_id": "video11320", "start time": 17.33, "end time": 33.29, "split": "test", "id": 11320}, {"category": 12, "url": "https://www.youtube.com/watch?v=J2sgObXbIWY", "video_id": "video12136", "start time": 104.22, "end time": 123.07, "split": "test", "id": 12136}, {"category": 7, "url": "https://www.youtube.com/watch?v=aaRqr7oQ2bo", "video_id": "video12095", "start time": 28.18, "end time": 46.71, "split": "test", "id": 12095}, {"category": 4, "url": "https://www.youtube.com/watch?v=einP2u6tS7k", "video_id": "video10137", "start time": 2.98, "end time": 20.23, "split": "test", "id": 10137}, {"category": 4, "url": "https://www.youtube.com/watch?v=dW3Ro2ZY094", "video_id": "video11836", "start time": 14.4, "end time": 25.17, "split": "test", "id": 11836}, {"category": 16, "url": "https://www.youtube.com/watch?v=03lSUsQc6zM", "video_id": "video11314", "start time": 964.68, "end time": 980.53, "split": "test", "id": 11314}, {"category": 16, "url": "https://www.youtube.com/watch?v=Oe23Jte2i3M", "video_id": "video11813", "start time": 139.39, "end time": 161.51, "split": "test", "id": 11813}, {"category": 12, "url": "https://www.youtube.com/watch?v=3UUkBBXnoc0", "video_id": "video11885", "start time": 33.57, "end time": 46.29, "split": "test", "id": 11885}, {"category": 10, "url": "https://www.youtube.com/watch?v=53TPdhwjKwQ", "video_id": "video12950", "start time": 741.25, "end time": 768.98, "split": "test", "id": 12950}, {"category": 8, "url": "https://www.youtube.com/watch?v=BVJS-yuVl_w", "video_id": "video12415", "start time": 295.78, "end time": 308.22, "split": "test", "id": 12415}, {"category": 16, "url": "https://www.youtube.com/watch?v=FXLr56-rD68", "video_id": "video11916", "start time": 78.66, "end time": 94.48, "split": "test", "id": 11916}, {"category": 0, "url": "https://www.youtube.com/watch?v=2EwViQxSJJQ", "video_id": "video10117", "start time": 31.18, "end time": 42.56, "split": "test", "id": 10117}, {"category": 16, "url": "https://www.youtube.com/watch?v=qwwkwufaCKQ", "video_id": "video11738", "start time": 173.41, "end time": 184.09, "split": "test", "id": 11738}, {"category": 11, "url": "https://www.youtube.com/watch?v=R6bTt4GLTUI", "video_id": "video12995", "start time": 158.72, "end time": 180.55, "split": "test", "id": 12995}, {"category": 7, "url": "https://www.youtube.com/watch?v=ScYmZj4kBlE", "video_id": "video10671", "start time": 686.76, "end time": 707.09, "split": "test", "id": 10671}, {"category": 9, "url": "https://www.youtube.com/watch?v=c2eOLVvVARs", "video_id": "video12817", "start time": 27.75, "end time": 57.05, "split": "test", "id": 12817}, {"category": 18, "url": "https://www.youtube.com/watch?v=9pzro0T8rgY", "video_id": "video10181", "start time": 128.54, "end time": 144.99, "split": "test", "id": 10181}, {"category": 7, "url": "https://www.youtube.com/watch?v=nlGqN6Yvsrw", "video_id": "video10231", "start time": 71.49, "end time": 88.05, "split": "test", "id": 10231}, {"category": 16, "url": "https://www.youtube.com/watch?v=NWUygl2Zlos", "video_id": "video11673", "start time": 10.01, "end time": 33.73, "split": "test", "id": 11673}, {"category": 17, "url": "https://www.youtube.com/watch?v=dmT-QUgqLkc", "video_id": "video10237", "start time": 397.95, "end time": 413.63, "split": "test", "id": 10237}, {"category": 14, "url": "https://www.youtube.com/watch?v=mfXyMLUshX4", "video_id": "video10580", "start time": 81.06, "end time": 109.92, "split": "test", "id": 10580}, {"category": 15, "url": "https://www.youtube.com/watch?v=0r4FbHQJq2I", "video_id": "video11976", "start time": 87.59, "end time": 112.16, "split": "test", "id": 11976}, {"category": 3, "url": "https://www.youtube.com/watch?v=BSSpw5BTXQw", "video_id": "video10303", "start time": 103.01, "end time": 113.93, "split": "test", "id": 10303}, {"category": 9, "url": "https://www.youtube.com/watch?v=EzKjbCGAB8A", "video_id": "video11211", "start time": 56.09, "end time": 74.21, "split": "test", "id": 11211}, {"category": 7, "url": "https://www.youtube.com/watch?v=EE9bwI0PmAY", "video_id": "video12697", "start time": 132.25, "end time": 148.51, "split": "test", "id": 12697}, {"category": 12, "url": "https://www.youtube.com/watch?v=aUjMs5ESsDs", "video_id": "video12343", "start time": 100.33, "end time": 126.13, "split": "test", "id": 12343}, {"category": 3, "url": "https://www.youtube.com/watch?v=pEN9m-lbToQ", "video_id": "video12840", "start time": 16.73, "end time": 27.21, "split": "test", "id": 12840}, {"category": 4, "url": "https://www.youtube.com/watch?v=C8WlE7kHzcc", "video_id": "video10610", "start time": 0.0, "end time": 15.38, "split": "test", "id": 10610}, {"category": 2, "url": "https://www.youtube.com/watch?v=HVze8g6YfHU", "video_id": "video10357", "start time": 29.78, "end time": 45.59, "split": "test", "id": 10357}, {"category": 14, "url": "https://www.youtube.com/watch?v=9vUs1ypeWhY", "video_id": "video12871", "start time": 224.17, "end time": 245.65, "split": "test", "id": 12871}, {"category": 0, "url": "https://www.youtube.com/watch?v=OcviODaDOa8", "video_id": "video12533", "start time": 33.21, "end time": 51.33, "split": "test", "id": 12533}, {"category": 14, "url": "https://www.youtube.com/watch?v=-HEUi3nArdA", "video_id": "video12243", "start time": 94.64, "end time": 105.82, "split": "test", "id": 12243}, {"category": 3, "url": "https://www.youtube.com/watch?v=jpAao37qeac", "video_id": "video12820", "start time": 458.91, "end time": 472.45, "split": "test", "id": 12820}, {"category": 3, "url": "https://www.youtube.com/watch?v=8urj12twZMc", "video_id": "video10838", "start time": 15.66, "end time": 26.31, "split": "test", "id": 10838}, {"category": 2, "url": "https://www.youtube.com/watch?v=3IahwK6dnuw", "video_id": "video11603", "start time": 117.3, "end time": 145.93, "split": "test", "id": 11603}, {"category": 17, "url": "https://www.youtube.com/watch?v=Ke22PhXrffI", "video_id": "video11198", "start time": 306.69, "end time": 319.5, "split": "test", "id": 11198}, {"category": 7, "url": "https://www.youtube.com/watch?v=DKYjr84KUjw", "video_id": "video11733", "start time": 58.31, "end time": 71.38, "split": "test", "id": 11733}, {"category": 12, "url": "https://www.youtube.com/watch?v=-kGntZiT94M", "video_id": "video12207", "start time": 6.93, "end time": 33.57, "split": "test", "id": 12207}, {"category": 14, "url": "https://www.youtube.com/watch?v=6Lz5T1IYAqg", "video_id": "video12781", "start time": 45.43, "end time": 55.52, "split": "test", "id": 12781}, {"category": 4, "url": "https://www.youtube.com/watch?v=nrI5lKhO5qo", "video_id": "video12356", "start time": 29.57, "end time": 46.93, "split": "test", "id": 12356}, {"category": 13, "url": "https://www.youtube.com/watch?v=1Rhcc1shQc0", "video_id": "video10956", "start time": 1356.84, "end time": 1370.95, "split": "test", "id": 10956}, {"category": 7, "url": "https://www.youtube.com/watch?v=4hDwqwiRdvM", "video_id": "video12512", "start time": 6.35, "end time": 26.91, "split": "test", "id": 12512}, {"category": 13, "url": "https://www.youtube.com/watch?v=9gVEAhFBeHs", "video_id": "video11643", "start time": 98.48, "end time": 121.24, "split": "test", "id": 11643}, {"category": 17, "url": "https://www.youtube.com/watch?v=oMmVDHs36SE", "video_id": "video11343", "start time": 45.26, "end time": 58.27, "split": "test", "id": 11343}, {"category": 6, "url": "https://www.youtube.com/watch?v=MOf-cw1TVUQ", "video_id": "video12886", "start time": 142.49, "end time": 153.6, "split": "test", "id": 12886}, {"category": 16, "url": "https://www.youtube.com/watch?v=1i78dyHA2oI", "video_id": "video11461", "start time": 8.99, "end time": 20.53, "split": "test", "id": 11461}, {"category": 6, "url": "https://www.youtube.com/watch?v=KBuXSwkRMVk", "video_id": "video10826", "start time": 408.76, "end time": 425.51, "split": "test", "id": 10826}, {"category": 10, "url": "https://www.youtube.com/watch?v=r8Xf5DxtLDw", "video_id": "video12567", "start time": 145.45, "end time": 173.85, "split": "test", "id": 12567}, {"category": 3, "url": "https://www.youtube.com/watch?v=74OszFEJza8", "video_id": "video12284", "start time": 110.92, "end time": 123.6, "split": "test", "id": 12284}, {"category": 18, "url": "https://www.youtube.com/watch?v=Jn0vxV8CX6Q", "video_id": "video11785", "start time": 565.68, "end time": 584.46, "split": "test", "id": 11785}, {"category": 9, "url": "https://www.youtube.com/watch?v=GLYa_Au8nhE", "video_id": "video12723", "start time": 11.13, "end time": 30.05, "split": "test", "id": 12723}, {"category": 5, "url": "https://www.youtube.com/watch?v=bcutxQi2NTU", "video_id": "video10908", "start time": 38.38, "end time": 58.98, "split": "test", "id": 10908}, {"category": 0, "url": "https://www.youtube.com/watch?v=87BRGJf3wTU", "video_id": "video12043", "start time": 84.47, "end time": 95.06, "split": "test", "id": 12043}, {"category": 16, "url": "https://www.youtube.com/watch?v=9GmKqeNY5lQ", "video_id": "video11196", "start time": 276.11, "end time": 301.15, "split": "test", "id": 11196}, {"category": 10, "url": "https://www.youtube.com/watch?v=Hi4mZhmoqnU", "video_id": "video11569", "start time": 130.71, "end time": 148.55, "split": "test", "id": 11569}, {"category": 15, "url": "https://www.youtube.com/watch?v=JWWZLWF-K44", "video_id": "video10122", "start time": 261.11, "end time": 287.87, "split": "test", "id": 10122}, {"category": 16, "url": "https://www.youtube.com/watch?v=3lnLbAAHMks", "video_id": "video10523", "start time": 90.09, "end time": 102.29, "split": "test", "id": 10523}, {"category": 11, "url": "https://www.youtube.com/watch?v=58BROsFhipc", "video_id": "video11214", "start time": 387.97, "end time": 415.93, "split": "test", "id": 11214}, {"category": 18, "url": "https://www.youtube.com/watch?v=rEVME9V6UzU", "video_id": "video12705", "start time": 283.87, "end time": 301.68, "split": "test", "id": 12705}, {"category": 3, "url": "https://www.youtube.com/watch?v=njkpTaHP-50", "video_id": "video10173", "start time": 3.89, "end time": 32.65, "split": "test", "id": 10173}, {"category": 12, "url": "https://www.youtube.com/watch?v=nCWoW7XauZs", "video_id": "video12319", "start time": 171.75, "end time": 184.0, "split": "test", "id": 12319}, {"category": 17, "url": "https://www.youtube.com/watch?v=AjnuMJRANLw", "video_id": "video11095", "start time": 70.25, "end time": 84.17, "split": "test", "id": 11095}, {"category": 18, "url": "https://www.youtube.com/watch?v=9pzro0T8rgY", "video_id": "video11117", "start time": 145.23, "end time": 156.64, "split": "test", "id": 11117}, {"category": 9, "url": "https://www.youtube.com/watch?v=Sbyeakdh2w0", "video_id": "video12743", "start time": 0.0, "end time": 18.66, "split": "test", "id": 12743}, {"category": 7, "url": "https://www.youtube.com/watch?v=N1NLzBGJavc", "video_id": "video11093", "start time": 93.09, "end time": 111.97, "split": "test", "id": 11093}, {"category": 11, "url": "https://www.youtube.com/watch?v=0JYj7PkWSBo", "video_id": "video12561", "start time": 100.15, "end time": 116.3, "split": "test", "id": 12561}, {"category": 2, "url": "https://www.youtube.com/watch?v=GwhFYN8QZT0", "video_id": "video12401", "start time": 351.05, "end time": 363.28, "split": "test", "id": 12401}, {"category": 9, "url": "https://www.youtube.com/watch?v=-E2qrwWGLCE", "video_id": "video10887", "start time": 253.15, "end time": 264.41, "split": "test", "id": 10887}, {"category": 16, "url": "https://www.youtube.com/watch?v=IUkizLGDbnA", "video_id": "video11364", "start time": 15.67, "end time": 36.92, "split": "test", "id": 11364}, {"category": 11, "url": "https://www.youtube.com/watch?v=6gdWJVDZfSg", "video_id": "video10701", "start time": 48.36, "end time": 67.11, "split": "test", "id": 10701}, {"category": 3, "url": "https://www.youtube.com/watch?v=E_fwBwS-wU8", "video_id": "video10079", "start time": 75.56, "end time": 93.44, "split": "test", "id": 10079}, {"category": 15, "url": "https://www.youtube.com/watch?v=rUv_xdhdEq8", "video_id": "video11418", "start time": 0.0, "end time": 21.05, "split": "test", "id": 11418}, {"category": 4, "url": "https://www.youtube.com/watch?v=0MTF79Xq27k", "video_id": "video10667", "start time": 0.0, "end time": 21.13, "split": "test", "id": 10667}, {"category": 7, "url": "https://www.youtube.com/watch?v=AnUBAyG0Qq8", "video_id": "video10852", "start time": 84.81, "end time": 100.53, "split": "test", "id": 10852}, {"category": 4, "url": "https://www.youtube.com/watch?v=6N2J9bpNIHw", "video_id": "video12075", "start time": 3.25, "end time": 16.1, "split": "test", "id": 12075}, {"category": 3, "url": "https://www.youtube.com/watch?v=5g_BDiCL6tE", "video_id": "video10170", "start time": 202.89, "end time": 226.49, "split": "test", "id": 10170}, {"category": 11, "url": "https://www.youtube.com/watch?v=0JYj7PkWSBo", "video_id": "video11693", "start time": 32.48, "end time": 59.97, "split": "test", "id": 11693}, {"category": 18, "url": "https://www.youtube.com/watch?v=6O0n3ab_Lzk", "video_id": "video11193", "start time": 58.55, "end time": 78.91, "split": "test", "id": 11193}, {"category": 3, "url": "https://www.youtube.com/watch?v=fm_Dgr6p6Kw", "video_id": "video12015", "start time": 43.38, "end time": 57.58, "split": "test", "id": 12015}, {"category": 3, "url": "https://www.youtube.com/watch?v=FUVBdP9qMpc", "video_id": "video10708", "start time": 225.58, "end time": 252.61, "split": "test", "id": 10708}, {"category": 17, "url": "https://www.youtube.com/watch?v=ARHPNWpsu9M", "video_id": "video12501", "start time": 12.36, "end time": 38.32, "split": "test", "id": 12501}, {"category": 14, "url": "https://www.youtube.com/watch?v=r9x6hSdRAvI", "video_id": "video10448", "start time": 8.77, "end time": 26.37, "split": "test", "id": 10448}, {"category": 16, "url": "https://www.youtube.com/watch?v=iMHf8SZQIg8", "video_id": "video12860", "start time": 252.93, "end time": 265.73, "split": "test", "id": 12860}, {"category": 16, "url": "https://www.youtube.com/watch?v=F99mXQINkMY", "video_id": "video10184", "start time": 12.69, "end time": 23.7, "split": "test", "id": 10184}, {"category": 0, "url": "https://www.youtube.com/watch?v=sbbKU4YtB0o", "video_id": "video10436", "start time": 0.0, "end time": 26.41, "split": "test", "id": 10436}, {"category": 6, "url": "https://www.youtube.com/watch?v=e_kU9KY8Yhs", "video_id": "video10650", "start time": 6.09, "end time": 32.35, "split": "test", "id": 10650}, {"category": 7, "url": "https://www.youtube.com/watch?v=3gPYqpjk6W0", "video_id": "video10195", "start time": 0.0, "end time": 10.02, "split": "test", "id": 10195}, {"category": 18, "url": "https://www.youtube.com/watch?v=ak8Opntu4ng", "video_id": "video11743", "start time": 84.15, "end time": 111.15, "split": "test", "id": 11743}, {"category": 16, "url": "https://www.youtube.com/watch?v=irTXyJJUn-U", "video_id": "video11803", "start time": 324.53, "end time": 341.73, "split": "test", "id": 11803}, {"category": 9, "url": "https://www.youtube.com/watch?v=NJ2yUu7BFww", "video_id": "video11508", "start time": 12.61, "end time": 38.37, "split": "test", "id": 11508}, {"category": 4, "url": "https://www.youtube.com/watch?v=85RXPnXDkrc", "video_id": "video12014", "start time": 45.49, "end time": 66.05, "split": "test", "id": 12014}, {"category": 3, "url": "https://www.youtube.com/watch?v=RNNdgZQWT08", "video_id": "video11892", "start time": 7.01, "end time": 30.74, "split": "test", "id": 11892}, {"category": 9, "url": "https://www.youtube.com/watch?v=3UErA3kPcG0", "video_id": "video11387", "start time": 118.37, "end time": 144.69, "split": "test", "id": 11387}, {"category": 7, "url": "https://www.youtube.com/watch?v=op_Waw7Hb0E", "video_id": "video10566", "start time": 113.69, "end time": 133.65, "split": "test", "id": 10566}, {"category": 18, "url": "https://www.youtube.com/watch?v=gOJyDjMhJvk", "video_id": "video10324", "start time": 10.27, "end time": 20.48, "split": "test", "id": 10324}, {"category": 0, "url": "https://www.youtube.com/watch?v=oM-XJD4J36U", "video_id": "video10329", "start time": 6.6, "end time": 35.04, "split": "test", "id": 10329}, {"category": 4, "url": "https://www.youtube.com/watch?v=QT3Q_nP8mcs", "video_id": "video10695", "start time": 44.91, "end time": 58.15, "split": "test", "id": 10695}, {"category": 12, "url": "https://www.youtube.com/watch?v=iz-o_UmQENM", "video_id": "video11708", "start time": 5.77, "end time": 31.69, "split": "test", "id": 11708}, {"category": 0, "url": "https://www.youtube.com/watch?v=Pw1S7x9YU78", "video_id": "video10622", "start time": 0.0, "end time": 17.13, "split": "test", "id": 10622}, {"category": 18, "url": "https://www.youtube.com/watch?v=ndtlyCWiS34", "video_id": "video10133", "start time": 7.53, "end time": 27.21, "split": "test", "id": 10133}, {"category": 7, "url": "https://www.youtube.com/watch?v=kFbAAs1HW7w", "video_id": "video11574", "start time": 27.24, "end time": 37.63, "split": "test", "id": 11574}, {"category": 5, "url": "https://www.youtube.com/watch?v=5A_o-nU5s2U", "video_id": "video11615", "start time": 24.32, "end time": 34.5, "split": "test", "id": 11615}, {"category": 7, "url": "https://www.youtube.com/watch?v=KE-ok-meF3E", "video_id": "video10652", "start time": 37.79, "end time": 47.93, "split": "test", "id": 10652}, {"category": 10, "url": "https://www.youtube.com/watch?v=52dRgM3sl2k", "video_id": "video11723", "start time": 377.69, "end time": 401.07, "split": "test", "id": 11723}, {"category": 9, "url": "https://www.youtube.com/watch?v=9kzfuWPUClI", "video_id": "video11557", "start time": 251.85, "end time": 266.75, "split": "test", "id": 11557}, {"category": 5, "url": "https://www.youtube.com/watch?v=4hYVCodx_1g", "video_id": "video11552", "start time": 3.38, "end time": 18.27, "split": "test", "id": 11552}, {"category": 11, "url": "https://www.youtube.com/watch?v=NhMRTg_QIhY", "video_id": "video11375", "start time": 136.72, "end time": 157.04, "split": "test", "id": 11375}, {"category": 7, "url": "https://www.youtube.com/watch?v=0b75Smzw-JE", "video_id": "video11151", "start time": 5.82, "end time": 21.74, "split": "test", "id": 11151}, {"category": 10, "url": "https://www.youtube.com/watch?v=G1D2WB5tekQ", "video_id": "video12624", "start time": 278.13, "end time": 289.84, "split": "test", "id": 12624}, {"category": 7, "url": "https://www.youtube.com/watch?v=hdoapGpiFB4", "video_id": "video12305", "start time": 25.33, "end time": 36.69, "split": "test", "id": 12305}, {"category": 9, "url": "https://www.youtube.com/watch?v=qfdktvDuIlU", "video_id": "video11037", "start time": 41.49, "end time": 61.29, "split": "test", "id": 11037}, {"category": 13, "url": "https://www.youtube.com/watch?v=rqNxE_dyoPk", "video_id": "video11002", "start time": 336.53, "end time": 356.01, "split": "test", "id": 11002}, {"category": 8, "url": "https://www.youtube.com/watch?v=cI7U5TQor4U", "video_id": "video10925", "start time": 186.65, "end time": 202.13, "split": "test", "id": 10925}, {"category": 19, "url": "https://www.youtube.com/watch?v=1GlpUa4sYbk", "video_id": "video12782", "start time": 4.39, "end time": 15.15, "split": "test", "id": 12782}, {"category": 8, "url": "https://www.youtube.com/watch?v=0sQpbFnGHZ8", "video_id": "video11876", "start time": 34.81, "end time": 55.85, "split": "test", "id": 11876}, {"category": 4, "url": "https://www.youtube.com/watch?v=qSvNEl70xn8", "video_id": "video12651", "start time": 191.4, "end time": 216.32, "split": "test", "id": 12651}, {"category": 4, "url": "https://www.youtube.com/watch?v=3FHoSl8aVvU", "video_id": "video12388", "start time": 7.12, "end time": 29.64, "split": "test", "id": 12388}, {"category": 18, "url": "https://www.youtube.com/watch?v=Pc0eIQoNliE", "video_id": "video11400", "start time": 150.3, "end time": 165.48, "split": "test", "id": 11400}, {"category": 4, "url": "https://www.youtube.com/watch?v=Rk-AvAekwq0", "video_id": "video10022", "start time": 222.29, "end time": 232.33, "split": "test", "id": 10022}, {"category": 1, "url": "https://www.youtube.com/watch?v=fjb0dAxDHh4", "video_id": "video10612", "start time": 86.3, "end time": 99.65, "split": "test", "id": 10612}, {"category": 18, "url": "https://www.youtube.com/watch?v=eGfxG0bUSLk", "video_id": "video12439", "start time": 25.03, "end time": 51.22, "split": "test", "id": 12439}, {"category": 9, "url": "https://www.youtube.com/watch?v=OHfXDKTyN0A", "video_id": "video11005", "start time": 97.05, "end time": 108.31, "split": "test", "id": 11005}, {"category": 17, "url": "https://www.youtube.com/watch?v=6_bdRsWHMW0", "video_id": "video10459", "start time": 76.39, "end time": 95.31, "split": "test", "id": 10459}, {"category": 7, "url": "https://www.youtube.com/watch?v=AW-7_HE98PY", "video_id": "video10323", "start time": 10.01, "end time": 20.85, "split": "test", "id": 10323}, {"category": 13, "url": "https://www.youtube.com/watch?v=EwusOwxi3c0", "video_id": "video10020", "start time": 55.88, "end time": 66.11, "split": "test", "id": 10020}, {"category": 13, "url": "https://www.youtube.com/watch?v=h1cvQM4iw5A", "video_id": "video12382", "start time": 0.0, "end time": 10.19, "split": "test", "id": 12382}, {"category": 13, "url": "https://www.youtube.com/watch?v=g4McyhKcw10", "video_id": "video12616", "start time": 42.82, "end time": 56.5, "split": "test", "id": 12616}, {"category": 13, "url": "https://www.youtube.com/watch?v=GCLiAqfr03E", "video_id": "video11851", "start time": 40.89, "end time": 51.97, "split": "test", "id": 11851}, {"category": 9, "url": "https://www.youtube.com/watch?v=gceBgHjq_Oo", "video_id": "video12733", "start time": 204.5, "end time": 220.27, "split": "test", "id": 12733}, {"category": 11, "url": "https://www.youtube.com/watch?v=ONxHpMRFskk", "video_id": "video11947", "start time": 244.61, "end time": 261.05, "split": "test", "id": 11947}, {"category": 4, "url": "https://www.youtube.com/watch?v=FaBxR9P6n9U", "video_id": "video10724", "start time": 73.12, "end time": 89.14, "split": "test", "id": 10724}, {"category": 6, "url": "https://www.youtube.com/watch?v=KwGMcP1NDsE", "video_id": "video12372", "start time": 192.49, "end time": 205.05, "split": "test", "id": 12372}, {"category": 8, "url": "https://www.youtube.com/watch?v=73vZBN5-wNc", "video_id": "video12552", "start time": 173.29, "end time": 185.05, "split": "test", "id": 12552}, {"category": 18, "url": "https://www.youtube.com/watch?v=-b1vEXp-j8U", "video_id": "video11065", "start time": 32.06, "end time": 42.62, "split": "test", "id": 11065}, {"category": 1, "url": "https://www.youtube.com/watch?v=OMf7luKRwIU", "video_id": "video10355", "start time": 3.12, "end time": 14.3, "split": "test", "id": 10355}, {"category": 3, "url": "https://www.youtube.com/watch?v=BQ-gbEQFU0U", "video_id": "video12803", "start time": 305.15, "end time": 317.55, "split": "test", "id": 12803}, {"category": 16, "url": "https://www.youtube.com/watch?v=44uBq9J_3Ug", "video_id": "video12191", "start time": 15.73, "end time": 38.85, "split": "test", "id": 12191}, {"category": 3, "url": "https://www.youtube.com/watch?v=rDfUsSXZ8l8", "video_id": "video10258", "start time": 48.65, "end time": 64.11, "split": "test", "id": 10258}, {"category": 11, "url": "https://www.youtube.com/watch?v=oTnw9Q3WiaI", "video_id": "video10856", "start time": 0.0, "end time": 24.35, "split": "test", "id": 10856}, {"category": 3, "url": "https://www.youtube.com/watch?v=1lLKs4lDSEs", "video_id": "video11450", "start time": 192.01, "end time": 203.22, "split": "test", "id": 11450}, {"category": 18, "url": "https://www.youtube.com/watch?v=6lfqYa_FMTI", "video_id": "video11012", "start time": 204.53, "end time": 214.57, "split": "test", "id": 11012}, {"category": 13, "url": "https://www.youtube.com/watch?v=dgHRwscpPIA", "video_id": "video12032", "start time": 264.95, "end time": 284.68, "split": "test", "id": 12032}, {"category": 16, "url": "https://www.youtube.com/watch?v=i1djfV9uigc", "video_id": "video10521", "start time": 366.88, "end time": 376.89, "split": "test", "id": 10521}, {"category": 17, "url": "https://www.youtube.com/watch?v=gfVP7Nh20NA", "video_id": "video12997", "start time": 1060.77, "end time": 1082.01, "split": "test", "id": 12997}, {"category": 7, "url": "https://www.youtube.com/watch?v=KGgNTX2a8Ns", "video_id": "video12893", "start time": 205.09, "end time": 234.08, "split": "test", "id": 12893}, {"category": 16, "url": "https://www.youtube.com/watch?v=7qNd_ifm7Lo", "video_id": "video10018", "start time": 106.05, "end time": 120.1, "split": "test", "id": 10018}, {"category": 4, "url": "https://www.youtube.com/watch?v=oBG0KqQ6ltw", "video_id": "video10404", "start time": 18.88, "end time": 29.85, "split": "test", "id": 10404}, {"category": 18, "url": "https://www.youtube.com/watch?v=roQoTjypgLk", "video_id": "video10936", "start time": 245.29, "end time": 260.47, "split": "test", "id": 10936}, {"category": 9, "url": "https://www.youtube.com/watch?v=MjWngrYN5XI", "video_id": "video10358", "start time": 507.69, "end time": 523.57, "split": "test", "id": 10358}, {"category": 4, "url": "https://www.youtube.com/watch?v=okY3WVRnPng", "video_id": "video10347", "start time": 120.65, "end time": 139.89, "split": "test", "id": 10347}, {"category": 12, "url": "https://www.youtube.com/watch?v=Ax-AFjJzU3E", "video_id": "video12199", "start time": 14.93, "end time": 27.29, "split": "test", "id": 12199}, {"category": 3, "url": "https://www.youtube.com/watch?v=6Joup252fR0", "video_id": "video10496", "start time": 41.48, "end time": 52.81, "split": "test", "id": 10496}, {"category": 12, "url": "https://www.youtube.com/watch?v=aXer6u49AEY", "video_id": "video11024", "start time": 156.8, "end time": 184.63, "split": "test", "id": 11024}, {"category": 13, "url": "https://www.youtube.com/watch?v=-nJoLvDuA2Y", "video_id": "video11045", "start time": 287.85, "end time": 304.31, "split": "test", "id": 11045}, {"category": 7, "url": "https://www.youtube.com/watch?v=dg2XMwoTzrI", "video_id": "video12354", "start time": 47.72, "end time": 57.73, "split": "test", "id": 12354}, {"category": 3, "url": "https://www.youtube.com/watch?v=SDI-Ds4LBm0", "video_id": "video10633", "start time": 37.95, "end time": 49.7, "split": "test", "id": 10633}, {"category": 7, "url": "https://www.youtube.com/watch?v=hkQOfZqBfgI", "video_id": "video11623", "start time": 135.72, "end time": 151.27, "split": "test", "id": 11623}, {"category": 2, "url": "https://www.youtube.com/watch?v=S7vdTBqcX94", "video_id": "video10470", "start time": 0.0, "end time": 14.55, "split": "test", "id": 10470}, {"category": 16, "url": "https://www.youtube.com/watch?v=aPde98NbJ0s", "video_id": "video10764", "start time": 184.8, "end time": 202.68, "split": "test", "id": 10764}, {"category": 3, "url": "https://www.youtube.com/watch?v=nS7zokbmoHY", "video_id": "video12126", "start time": 17.15, "end time": 32.62, "split": "test", "id": 12126}, {"category": 4, "url": "https://www.youtube.com/watch?v=1VqMzvBJ3jo", "video_id": "video11201", "start time": 141.26, "end time": 154.6, "split": "test", "id": 11201}, {"category": 5, "url": "https://www.youtube.com/watch?v=owHF9iLyxic", "video_id": "video10472", "start time": 37.75, "end time": 58.9, "split": "test", "id": 10472}, {"category": 15, "url": "https://www.youtube.com/watch?v=AErUwYDXUmw", "video_id": "video12951", "start time": 292.45, "end time": 303.49, "split": "test", "id": 12951}, {"category": 3, "url": "https://www.youtube.com/watch?v=hdZhncX96UI", "video_id": "video11619", "start time": 314.93, "end time": 337.38, "split": "test", "id": 11619}, {"category": 11, "url": "https://www.youtube.com/watch?v=S7df0O2poLA", "video_id": "video12470", "start time": 173.57, "end time": 194.65, "split": "test", "id": 12470}, {"category": 17, "url": "https://www.youtube.com/watch?v=7Uhmb1J9xMA", "video_id": "video10333", "start time": 168.58, "end time": 182.7, "split": "test", "id": 10333}, {"category": 3, "url": "https://www.youtube.com/watch?v=0e7-mNDgIXw", "video_id": "video12186", "start time": 64.85, "end time": 87.29, "split": "test", "id": 12186}, {"category": 12, "url": "https://www.youtube.com/watch?v=1Qv8gXee8C0", "video_id": "video10145", "start time": 83.25, "end time": 111.88, "split": "test", "id": 10145}, {"category": 15, "url": "https://www.youtube.com/watch?v=j_f5kM6GCkQ", "video_id": "video11210", "start time": 59.19, "end time": 77.21, "split": "test", "id": 11210}, {"category": 18, "url": "https://www.youtube.com/watch?v=ogXWS40kFa0", "video_id": "video11687", "start time": 266.01, "end time": 280.13, "split": "test", "id": 11687}, {"category": 3, "url": "https://www.youtube.com/watch?v=oXcdqHpWqNE", "video_id": "video10732", "start time": 104.82, "end time": 127.47, "split": "test", "id": 10732}, {"category": 3, "url": "https://www.youtube.com/watch?v=84jbP04C2bA", "video_id": "video11109", "start time": 35.55, "end time": 61.41, "split": "test", "id": 11109}, {"category": 7, "url": "https://www.youtube.com/watch?v=j5LYhjhtahE", "video_id": "video10013", "start time": 124.64, "end time": 141.12, "split": "test", "id": 10013}, {"category": 3, "url": "https://www.youtube.com/watch?v=5wxlYIPgFBM", "video_id": "video10183", "start time": 31.05, "end time": 49.33, "split": "test", "id": 10183}, {"category": 18, "url": "https://www.youtube.com/watch?v=hOCXP-ckeGo", "video_id": "video11025", "start time": 134.68, "end time": 147.25, "split": "test", "id": 11025}, {"category": 9, "url": "https://www.youtube.com/watch?v=BpymMb2M4OE", "video_id": "video11946", "start time": 19.43, "end time": 46.03, "split": "test", "id": 11946}, {"category": 7, "url": "https://www.youtube.com/watch?v=DSpJQlBJCzA", "video_id": "video11291", "start time": 1.76, "end time": 19.11, "split": "test", "id": 11291}, {"category": 13, "url": "https://www.youtube.com/watch?v=E7p_Dlvymuo", "video_id": "video10976", "start time": 9.61, "end time": 33.25, "split": "test", "id": 10976}, {"category": 19, "url": "https://www.youtube.com/watch?v=02uiHmFuQaA", "video_id": "video12314", "start time": 26.44, "end time": 41.96, "split": "test", "id": 12314}, {"category": 13, "url": "https://www.youtube.com/watch?v=Pw1WTK5MNk4", "video_id": "video12433", "start time": 10.52, "end time": 25.77, "split": "test", "id": 12433}, {"category": 9, "url": "https://www.youtube.com/watch?v=pYMkTznrJb4", "video_id": "video12120", "start time": 361.21, "end time": 374.57, "split": "test", "id": 12120}, {"category": 18, "url": "https://www.youtube.com/watch?v=09h33_UTCEw", "video_id": "video10504", "start time": 20.18, "end time": 33.31, "split": "test", "id": 10504}, {"category": 13, "url": "https://www.youtube.com/watch?v=knN24APFUu4", "video_id": "video10350", "start time": 466.95, "end time": 482.43, "split": "test", "id": 10350}, {"category": 7, "url": "https://www.youtube.com/watch?v=LB1qCbyuLio", "video_id": "video12737", "start time": 104.14, "end time": 121.15, "split": "test", "id": 12737}, {"category": 16, "url": "https://www.youtube.com/watch?v=lT98A5vWpL4", "video_id": "video12897", "start time": 376.68, "end time": 399.05, "split": "test", "id": 12897}, {"category": 4, "url": "https://www.youtube.com/watch?v=1VqMzvBJ3jo", "video_id": "video11563", "start time": 7.12, "end time": 29.21, "split": "test", "id": 11563}, {"category": 3, "url": "https://www.youtube.com/watch?v=QuwmI4IdN-M", "video_id": "video12673", "start time": 9.72, "end time": 20.77, "split": "test", "id": 12673}, {"category": 12, "url": "https://www.youtube.com/watch?v=1U7Ba8JFdJA", "video_id": "video10458", "start time": 11.68, "end time": 27.87, "split": "test", "id": 10458}, {"category": 8, "url": "https://www.youtube.com/watch?v=HZe1HK_3NBc", "video_id": "video12318", "start time": 0.0, "end time": 15.9, "split": "test", "id": 12318}, {"category": 16, "url": "https://www.youtube.com/watch?v=l40GAubwU3E", "video_id": "video10211", "start time": 6.45, "end time": 25.04, "split": "test", "id": 10211}, {"category": 12, "url": "https://www.youtube.com/watch?v=AWJOJR8x4G0", "video_id": "video11129", "start time": 0.0, "end time": 15.77, "split": "test", "id": 11129}, {"category": 18, "url": "https://www.youtube.com/watch?v=4Nb_b9egiqo", "video_id": "video11707", "start time": 65.21, "end time": 94.78, "split": "test", "id": 11707}, {"category": 9, "url": "https://www.youtube.com/watch?v=1iaGrIcnxIM", "video_id": "video11827", "start time": 8.05, "end time": 23.91, "split": "test", "id": 11827}, {"category": 18, "url": "https://www.youtube.com/watch?v=IYqCG7zUHsM", "video_id": "video11346", "start time": 58.75, "end time": 72.31, "split": "test", "id": 11346}, {"category": 4, "url": "https://www.youtube.com/watch?v=PACH0XKozuU", "video_id": "video10487", "start time": 112.77, "end time": 127.01, "split": "test", "id": 10487}, {"category": 18, "url": "https://www.youtube.com/watch?v=Ia5BR0CdMBs", "video_id": "video11580", "start time": 8.01, "end time": 33.65, "split": "test", "id": 11580}, {"category": 17, "url": "https://www.youtube.com/watch?v=6tBXlictR8s", "video_id": "video10624", "start time": 21.3, "end time": 40.15, "split": "test", "id": 10624}, {"category": 3, "url": "https://www.youtube.com/watch?v=3KBYQrXVd-Q", "video_id": "video10921", "start time": 40.45, "end time": 51.17, "split": "test", "id": 10921}, {"category": 4, "url": "https://www.youtube.com/watch?v=AG0liXEXNmI", "video_id": "video10088", "start time": 41.37, "end time": 52.21, "split": "test", "id": 10088}, {"category": 10, "url": "https://www.youtube.com/watch?v=3Y4N1sHx8yk", "video_id": "video10720", "start time": 46.93, "end time": 70.35, "split": "test", "id": 10720}, {"category": 9, "url": "https://www.youtube.com/watch?v=IdBVGP4k1rg", "video_id": "video12220", "start time": 333.05, "end time": 347.65, "split": "test", "id": 12220}, {"category": 13, "url": "https://www.youtube.com/watch?v=7MwQYcY479o", "video_id": "video12980", "start time": 2.92, "end time": 12.93, "split": "test", "id": 12980}, {"category": 18, "url": "https://www.youtube.com/watch?v=0cXBEqgk1hc", "video_id": "video12020", "start time": 76.86, "end time": 95.34, "split": "test", "id": 12020}, {"category": 2, "url": "https://www.youtube.com/watch?v=JPKFjpna5Iw", "video_id": "video12711", "start time": 118.43, "end time": 139.29, "split": "test", "id": 12711}, {"category": 14, "url": "https://www.youtube.com/watch?v=4z7v_YLCgL4", "video_id": "video11163", "start time": 0.0, "end time": 28.34, "split": "test", "id": 11163}, {"category": 12, "url": "https://www.youtube.com/watch?v=4PgjLeqcopk", "video_id": "video11826", "start time": 36.33, "end time": 46.45, "split": "test", "id": 11826}, {"category": 16, "url": "https://www.youtube.com/watch?v=l40GAubwU3E", "video_id": "video12323", "start time": 25.04, "end time": 39.52, "split": "test", "id": 12323}, {"category": 4, "url": "https://www.youtube.com/watch?v=OATfuTGqJ_A", "video_id": "video12654", "start time": 151.69, "end time": 180.09, "split": "test", "id": 12654}, {"category": 3, "url": "https://www.youtube.com/watch?v=4jtQ3aXzjM8", "video_id": "video10314", "start time": 10.59, "end time": 22.07, "split": "test", "id": 10314}, {"category": 3, "url": "https://www.youtube.com/watch?v=8-Uey7xgcwg", "video_id": "video11242", "start time": 84.03, "end time": 95.21, "split": "test", "id": 11242}, {"category": 13, "url": "https://www.youtube.com/watch?v=k326_yiQG1s", "video_id": "video11371", "start time": 28.21, "end time": 39.02, "split": "test", "id": 11371}, {"category": 4, "url": "https://www.youtube.com/watch?v=9t9-2x4UggQ", "video_id": "video12645", "start time": 76.49, "end time": 88.17, "split": "test", "id": 12645}, {"category": 18, "url": "https://www.youtube.com/watch?v=46Z1EjmR5pM", "video_id": "video11711", "start time": 55.4, "end time": 75.26, "split": "test", "id": 11711}, {"category": 7, "url": "https://www.youtube.com/watch?v=3kh-pci_8Nw", "video_id": "video12664", "start time": 96.11, "end time": 115.06, "split": "test", "id": 12664}, {"category": 15, "url": "https://www.youtube.com/watch?v=4eKv3VLQvP8", "video_id": "video10716", "start time": 23.44, "end time": 48.13, "split": "test", "id": 10716}, {"category": 16, "url": "https://www.youtube.com/watch?v=EFv5mlII3zA", "video_id": "video11166", "start time": 60.54, "end time": 72.29, "split": "test", "id": 11166}, {"category": 8, "url": "https://www.youtube.com/watch?v=KW9fIKW6v4c", "video_id": "video10594", "start time": 95.21, "end time": 111.36, "split": "test", "id": 10594}, {"category": 0, "url": "https://www.youtube.com/watch?v=elueA2rofoo", "video_id": "video10251", "start time": 146.93, "end time": 158.97, "split": "test", "id": 10251}, {"category": 13, "url": "https://www.youtube.com/watch?v=BG-0Bpe0J34", "video_id": "video11344", "start time": 19.25, "end time": 38.41, "split": "test", "id": 11344}, {"category": 8, "url": "https://www.youtube.com/watch?v=fJ8KWzonmUU", "video_id": "video11006", "start time": 137.42, "end time": 151.77, "split": "test", "id": 11006}, {"category": 17, "url": "https://www.youtube.com/watch?v=S-umXMH5SKI", "video_id": "video11013", "start time": 211.93, "end time": 240.55, "split": "test", "id": 11013}, {"category": 4, "url": "https://www.youtube.com/watch?v=OHT9s4WgO0g", "video_id": "video10873", "start time": 6.81, "end time": 22.85, "split": "test", "id": 10873}, {"category": 13, "url": "https://www.youtube.com/watch?v=2mUBHsxoK7I", "video_id": "video10044", "start time": 2.53, "end time": 14.61, "split": "test", "id": 10044}, {"category": 7, "url": "https://www.youtube.com/watch?v=n7fYYt3Y_Fo", "video_id": "video11116", "start time": 732.01, "end time": 747.21, "split": "test", "id": 11116}, {"category": 9, "url": "https://www.youtube.com/watch?v=7NZ9X9A2efA", "video_id": "video10029", "start time": 277.13, "end time": 299.21, "split": "test", "id": 10029}, {"category": 10, "url": "https://www.youtube.com/watch?v=RuhroEh31i0", "video_id": "video10814", "start time": 2.45, "end time": 14.26, "split": "test", "id": 10814}, {"category": 10, "url": "https://www.youtube.com/watch?v=JvDC9djeJJo", "video_id": "video11703", "start time": 61.21, "end time": 71.29, "split": "test", "id": 11703}, {"category": 10, "url": "https://www.youtube.com/watch?v=JJyIOu1EPpQ", "video_id": "video10573", "start time": 4.85, "end time": 16.06, "split": "test", "id": 10573}, {"category": 4, "url": "https://www.youtube.com/watch?v=ozmboyx6q8s", "video_id": "video11104", "start time": 0.0, "end time": 13.45, "split": "test", "id": 11104}, {"category": 3, "url": "https://www.youtube.com/watch?v=NdZprADHGNE", "video_id": "video11357", "start time": 1.52, "end time": 16.43, "split": "test", "id": 11357}, {"category": 13, "url": "https://www.youtube.com/watch?v=JgN28Jj083A", "video_id": "video12569", "start time": 182.6, "end time": 203.65, "split": "test", "id": 12569}, {"category": 0, "url": "https://www.youtube.com/watch?v=JmZJexJ1bmM", "video_id": "video12833", "start time": 217.06, "end time": 243.16, "split": "test", "id": 12833}, {"category": 12, "url": "https://www.youtube.com/watch?v=B0nChez5Mtg", "video_id": "video11493", "start time": 41.25, "end time": 61.85, "split": "test", "id": 11493}, {"category": 16, "url": "https://www.youtube.com/watch?v=GtVnRuT03Mc", "video_id": "video10460", "start time": 194.65, "end time": 208.05, "split": "test", "id": 10460}, {"category": 13, "url": "https://www.youtube.com/watch?v=jKnEmP2FD-M", "video_id": "video11950", "start time": 777.68, "end time": 788.88, "split": "test", "id": 11950}, {"category": 8, "url": "https://www.youtube.com/watch?v=aF1L-g5nnXU", "video_id": "video10474", "start time": 178.16, "end time": 191.24, "split": "test", "id": 10474}, {"category": 16, "url": "https://www.youtube.com/watch?v=3dfOUUaw4Jc", "video_id": "video11114", "start time": 2.15, "end time": 31.38, "split": "test", "id": 11114}, {"category": 12, "url": "https://www.youtube.com/watch?v=5ijvC3g9Z4s", "video_id": "video10171", "start time": 154.0, "end time": 176.39, "split": "test", "id": 10171}, {"category": 3, "url": "https://www.youtube.com/watch?v=B4xrDBnVvVQ", "video_id": "video10411", "start time": 37.81, "end time": 56.93, "split": "test", "id": 10411}, {"category": 2, "url": "https://www.youtube.com/watch?v=8_NX0N1DO04", "video_id": "video12274", "start time": 3.52, "end time": 31.48, "split": "test", "id": 12274}, {"category": 17, "url": "https://www.youtube.com/watch?v=DLpTgMsYaHU", "video_id": "video12142", "start time": 144.69, "end time": 155.34, "split": "test", "id": 12142}, {"category": 7, "url": "https://www.youtube.com/watch?v=K-MsLgGTrDA", "video_id": "video11497", "start time": 68.82, "end time": 84.06, "split": "test", "id": 11497}, {"category": 11, "url": "https://www.youtube.com/watch?v=Hr6hDx4onYM", "video_id": "video10928", "start time": 173.72, "end time": 195.61, "split": "test", "id": 10928}, {"category": 16, "url": "https://www.youtube.com/watch?v=l40GAubwU3E", "video_id": "video12801", "start time": 221.07, "end time": 232.68, "split": "test", "id": 12801}, {"category": 7, "url": "https://www.youtube.com/watch?v=K73CYZiirUM", "video_id": "video11856", "start time": 45.01, "end time": 59.13, "split": "test", "id": 11856}, {"category": 7, "url": "https://www.youtube.com/watch?v=hhxPOtoh1Ss", "video_id": "video11183", "start time": 129.29, "end time": 147.73, "split": "test", "id": 11183}, {"category": 16, "url": "https://www.youtube.com/watch?v=ACcxafiDdZo", "video_id": "video11881", "start time": 14.73, "end time": 34.01, "split": "test", "id": 11881}, {"category": 18, "url": "https://www.youtube.com/watch?v=r62aBwHdYp0", "video_id": "video11991", "start time": 42.72, "end time": 54.03, "split": "test", "id": 11991}, {"category": 11, "url": "https://www.youtube.com/watch?v=QuchZjKUBj0", "video_id": "video11279", "start time": 104.99, "end time": 118.58, "split": "test", "id": 11279}, {"category": 18, "url": "https://www.youtube.com/watch?v=Q4TTE3MCOAg", "video_id": "video10740", "start time": 90.04, "end time": 100.31, "split": "test", "id": 10740}, {"category": 4, "url": "https://www.youtube.com/watch?v=RUf9nY88Od0", "video_id": "video10389", "start time": 58.14, "end time": 76.92, "split": "test", "id": 10389}, {"category": 1, "url": "https://www.youtube.com/watch?v=oCsW3rsVN74", "video_id": "video12073", "start time": 6.65, "end time": 21.8, "split": "test", "id": 12073}, {"category": 17, "url": "https://www.youtube.com/watch?v=OGhNNAZSgWs", "video_id": "video11305", "start time": 237.51, "end time": 258.58, "split": "test", "id": 11305}, {"category": 4, "url": "https://www.youtube.com/watch?v=L5sX5tjoI84", "video_id": "video12462", "start time": 47.36, "end time": 59.21, "split": "test", "id": 12462}, {"category": 6, "url": "https://www.youtube.com/watch?v=o6krIphPlvU", "video_id": "video11426", "start time": 212.66, "end time": 223.77, "split": "test", "id": 11426}, {"category": 19, "url": "https://www.youtube.com/watch?v=S565hk5T7SA", "video_id": "video10295", "start time": 100.57, "end time": 120.33, "split": "test", "id": 10295}, {"category": 0, "url": "https://www.youtube.com/watch?v=pt8VYOfr8To", "video_id": "video12964", "start time": 0.0, "end time": 17.44, "split": "test", "id": 12964}, {"category": 11, "url": "https://www.youtube.com/watch?v=iZ9Izbuj5UE", "video_id": "video11124", "start time": 81.56, "end time": 93.71, "split": "test", "id": 11124}, {"category": 6, "url": "https://www.youtube.com/watch?v=oN1qcBWW0rI", "video_id": "video10032", "start time": 141.02, "end time": 159.62, "split": "test", "id": 10032}, {"category": 2, "url": "https://www.youtube.com/watch?v=-zFUuRgMaPM", "video_id": "video11594", "start time": 287.1, "end time": 314.96, "split": "test", "id": 11594}, {"category": 4, "url": "https://www.youtube.com/watch?v=oWELeb575sE", "video_id": "video10510", "start time": 396.51, "end time": 409.31, "split": "test", "id": 10510}, {"category": 16, "url": "https://www.youtube.com/watch?v=46cJxguuUsM", "video_id": "video10076", "start time": 24.37, "end time": 49.66, "split": "test", "id": 10076}, {"category": 17, "url": "https://www.youtube.com/watch?v=3oA1ig5h5Js", "video_id": "video10361", "start time": 246.09, "end time": 270.33, "split": "test", "id": 10361}, {"category": 12, "url": "https://www.youtube.com/watch?v=Ad3-re37R3w", "video_id": "video10368", "start time": 100.49, "end time": 113.33, "split": "test", "id": 10368}, {"category": 11, "url": "https://www.youtube.com/watch?v=1jfws-Sr3E4", "video_id": "video11526", "start time": 102.75, "end time": 130.68, "split": "test", "id": 11526}, {"category": 13, "url": "https://www.youtube.com/watch?v=FA0Ae-SPi3E", "video_id": "video10818", "start time": 142.52, "end time": 156.44, "split": "test", "id": 10818}, {"category": 14, "url": "https://www.youtube.com/watch?v=RWttj0CYUvA", "video_id": "video10889", "start time": 0.0, "end time": 29.24, "split": "test", "id": 10889}, {"category": 2, "url": "https://www.youtube.com/watch?v=ho9HLdZeffQ", "video_id": "video10149", "start time": 224.0, "end time": 239.19, "split": "test", "id": 10149}, {"category": 16, "url": "https://www.youtube.com/watch?v=jitlk2VetuE", "video_id": "video11748", "start time": 157.16, "end time": 177.47, "split": "test", "id": 11748}, {"category": 16, "url": "https://www.youtube.com/watch?v=11UjWyYsKo0", "video_id": "video11706", "start time": 45.26, "end time": 67.08, "split": "test", "id": 11706}, {"category": 4, "url": "https://www.youtube.com/watch?v=GadAIwd_8cc", "video_id": "video10590", "start time": 12.09, "end time": 30.81, "split": "test", "id": 10590}, {"category": 4, "url": "https://www.youtube.com/watch?v=JI3rhKfJXQk", "video_id": "video12586", "start time": 2.42, "end time": 31.01, "split": "test", "id": 12586}, {"category": 7, "url": "https://www.youtube.com/watch?v=S-g93DD-2ZU", "video_id": "video10341", "start time": 126.77, "end time": 143.37, "split": "test", "id": 10341}, {"category": 16, "url": "https://www.youtube.com/watch?v=1khPJrE8Kis", "video_id": "video11676", "start time": 115.83, "end time": 125.94, "split": "test", "id": 11676}, {"category": 13, "url": "https://www.youtube.com/watch?v=S-J2n5m1QM4", "video_id": "video10445", "start time": 10.69, "end time": 30.08, "split": "test", "id": 10445}, {"category": 4, "url": "https://www.youtube.com/watch?v=-qbFfipzqBU", "video_id": "video10574", "start time": 424.97, "end time": 438.33, "split": "test", "id": 10574}, {"category": 7, "url": "https://www.youtube.com/watch?v=0Ti9YenqYMM", "video_id": "video11168", "start time": 0.0, "end time": 13.19, "split": "test", "id": 11168}, {"category": 9, "url": "https://www.youtube.com/watch?v=EJFKFn7zFzc", "video_id": "video11100", "start time": 667.11, "end time": 689.4, "split": "test", "id": 11100}, {"category": 19, "url": "https://www.youtube.com/watch?v=oofYDt_KFfY", "video_id": "video10190", "start time": 66.49, "end time": 77.71, "split": "test", "id": 10190}, {"category": 12, "url": "https://www.youtube.com/watch?v=kDu5ap0yIK4", "video_id": "video11354", "start time": 1074.65, "end time": 1099.57, "split": "test", "id": 11354}, {"category": 16, "url": "https://www.youtube.com/watch?v=lMz7gXYhhbY", "video_id": "video10962", "start time": 92.77, "end time": 103.45, "split": "test", "id": 10962}, {"category": 7, "url": "https://www.youtube.com/watch?v=p9keMBIyPnA", "video_id": "video11099", "start time": 33.54, "end time": 50.18, "split": "test", "id": 11099}, {"category": 13, "url": "https://www.youtube.com/watch?v=KteFdsLjWW0", "video_id": "video11902", "start time": 26.27, "end time": 40.05, "split": "test", "id": 11902}, {"category": 11, "url": "https://www.youtube.com/watch?v=L-VN995ejys", "video_id": "video10776", "start time": 719.6, "end time": 730.81, "split": "test", "id": 10776}, {"category": 8, "url": "https://www.youtube.com/watch?v=4u7TOC1UR50", "video_id": "video10297", "start time": 31.81, "end time": 51.85, "split": "test", "id": 10297}, {"category": 4, "url": "https://www.youtube.com/watch?v=s03nXScHbBU", "video_id": "video10704", "start time": 166.61, "end time": 183.33, "split": "test", "id": 10704}, {"category": 17, "url": "https://www.youtube.com/watch?v=bCSVrDtgMtE", "video_id": "video12653", "start time": 122.73, "end time": 145.89, "split": "test", "id": 12653}, {"category": 18, "url": "https://www.youtube.com/watch?v=37sG7YP5Ji4", "video_id": "video10188", "start time": 45.38, "end time": 67.7, "split": "test", "id": 10188}, {"category": 10, "url": "https://www.youtube.com/watch?v=3y5LAeYznUQ", "video_id": "video10141", "start time": 116.8, "end time": 143.69, "split": "test", "id": 10141}, {"category": 4, "url": "https://www.youtube.com/watch?v=rWIXDPvIWbE", "video_id": "video10213", "start time": 0.0, "end time": 25.07, "split": "test", "id": 10213}, {"category": 16, "url": "https://www.youtube.com/watch?v=Jzq1h9iLlVY", "video_id": "video12069", "start time": 124.05, "end time": 138.05, "split": "test", "id": 12069}, {"category": 3, "url": "https://www.youtube.com/watch?v=PKP0smMkNXM", "video_id": "video10363", "start time": 2.88, "end time": 16.83, "split": "test", "id": 10363}, {"category": 4, "url": "https://www.youtube.com/watch?v=khj1mrL9QKI", "video_id": "video12912", "start time": 9.19, "end time": 20.67, "split": "test", "id": 12912}, {"category": 7, "url": "https://www.youtube.com/watch?v=G_W2K5Onlx0", "video_id": "video10714", "start time": 39.75, "end time": 63.51, "split": "test", "id": 10714}, {"category": 16, "url": "https://www.youtube.com/watch?v=qMs4EaHa-AQ", "video_id": "video12734", "start time": 182.96, "end time": 193.41, "split": "test", "id": 12734}, {"category": 6, "url": "https://www.youtube.com/watch?v=S7pTC43gq8I", "video_id": "video10706", "start time": 500.61, "end time": 516.96, "split": "test", "id": 10706}, {"category": 6, "url": "https://www.youtube.com/watch?v=kmG4GM0cNuo", "video_id": "video12273", "start time": 4.05, "end time": 21.04, "split": "test", "id": 12273}, {"category": 18, "url": "https://www.youtube.com/watch?v=eY33IVG6qjU", "video_id": "video10654", "start time": 272.02, "end time": 297.24, "split": "test", "id": 10654}, {"category": 17, "url": "https://www.youtube.com/watch?v=QQH53HDKkYA", "video_id": "video11195", "start time": 17.4, "end time": 31.04, "split": "test", "id": 11195}, {"category": 12, "url": "https://www.youtube.com/watch?v=IzmUemone0A", "video_id": "video11185", "start time": 290.37, "end time": 313.69, "split": "test", "id": 11185}, {"category": 6, "url": "https://www.youtube.com/watch?v=599AzvrUqo0", "video_id": "video10495", "start time": 64.65, "end time": 74.77, "split": "test", "id": 10495}, {"category": 4, "url": "https://www.youtube.com/watch?v=KjhhqVPbbVU", "video_id": "video11480", "start time": 9.86, "end time": 23.64, "split": "test", "id": 11480}, {"category": 12, "url": "https://www.youtube.com/watch?v=5aODevcVmzI", "video_id": "video11235", "start time": 81.63, "end time": 99.19, "split": "test", "id": 11235}, {"category": 11, "url": "https://www.youtube.com/watch?v=QDGlcNqBwec", "video_id": "video12177", "start time": 116.71, "end time": 143.9, "split": "test", "id": 12177}, {"category": 17, "url": "https://www.youtube.com/watch?v=kyxEFj7bgHI", "video_id": "video11513", "start time": 4.95, "end time": 28.41, "split": "test", "id": 11513}, {"category": 11, "url": "https://www.youtube.com/watch?v=4TfMuej5LtQ", "video_id": "video11989", "start time": 194.33, "end time": 208.65, "split": "test", "id": 11989}, {"category": 17, "url": "https://www.youtube.com/watch?v=88hMZw4Whp4", "video_id": "video11120", "start time": 890.97, "end time": 907.93, "split": "test", "id": 11120}, {"category": 18, "url": "https://www.youtube.com/watch?v=K3kl-1amqvs", "video_id": "video11716", "start time": 72.58, "end time": 90.47, "split": "test", "id": 11716}, {"category": 6, "url": "https://www.youtube.com/watch?v=66HCtrTvXXM", "video_id": "video11394", "start time": 48.96, "end time": 61.68, "split": "test", "id": 11394}, {"category": 16, "url": "https://www.youtube.com/watch?v=oFEX9EVmnZA", "video_id": "video10983", "start time": 52.97, "end time": 75.85, "split": "test", "id": 10983}, {"category": 12, "url": "https://www.youtube.com/watch?v=h69TrQTseHA", "video_id": "video12626", "start time": 211.99, "end time": 226.87, "split": "test", "id": 12626}, {"category": 7, "url": "https://www.youtube.com/watch?v=5uJd6p1PZgE", "video_id": "video11096", "start time": 3.31, "end time": 16.28, "split": "test", "id": 11096}, {"category": 18, "url": "https://www.youtube.com/watch?v=8VqcEU3v-XE", "video_id": "video11730", "start time": 80.49, "end time": 104.28, "split": "test", "id": 11730}, {"category": 13, "url": "https://www.youtube.com/watch?v=FU7tWb23cLI", "video_id": "video10621", "start time": 0.0, "end time": 15.3, "split": "test", "id": 10621}, {"category": 4, "url": "https://www.youtube.com/watch?v=NTUHYGHBxzw", "video_id": "video11948", "start time": 5.25, "end time": 19.33, "split": "test", "id": 11948}, {"category": 4, "url": "https://www.youtube.com/watch?v=EUtaNveZCNw", "video_id": "video12867", "start time": 22.6, "end time": 40.49, "split": "test", "id": 12867}, {"category": 2, "url": "https://www.youtube.com/watch?v=A1Lvkn1HGWM", "video_id": "video12229", "start time": 131.78, "end time": 145.03, "split": "test", "id": 12229}, {"category": 12, "url": "https://www.youtube.com/watch?v=131FAH3OOH0", "video_id": "video10902", "start time": 151.28, "end time": 177.77, "split": "test", "id": 10902}, {"category": 12, "url": "https://www.youtube.com/watch?v=m7mV_zsubN4", "video_id": "video12272", "start time": 46.18, "end time": 57.65, "split": "test", "id": 12272}, {"category": 6, "url": "https://www.youtube.com/watch?v=R7ghDhpCLKM", "video_id": "video11154", "start time": 33.35, "end time": 50.8, "split": "test", "id": 11154}, {"category": 16, "url": "https://www.youtube.com/watch?v=RrFPURR2Teg", "video_id": "video10898", "start time": 382.55, "end time": 399.78, "split": "test", "id": 10898}, {"category": 17, "url": "https://www.youtube.com/watch?v=Bf8YTATPX4E", "video_id": "video10533", "start time": 61.85, "end time": 72.81, "split": "test", "id": 10533}, {"category": 16, "url": "https://www.youtube.com/watch?v=HGmVYwhJuRo", "video_id": "video12288", "start time": 384.11, "end time": 401.78, "split": "test", "id": 12288}, {"category": 11, "url": "https://www.youtube.com/watch?v=8v25bA7N5fI", "video_id": "video12398", "start time": 102.55, "end time": 113.18, "split": "test", "id": 12398}, {"category": 12, "url": "https://www.youtube.com/watch?v=KwFL_q2xxEA", "video_id": "video11479", "start time": 106.37, "end time": 123.77, "split": "test", "id": 11479}, {"category": 18, "url": "https://www.youtube.com/watch?v=JCMDwwl-rik", "video_id": "video12003", "start time": 64.21, "end time": 76.31, "split": "test", "id": 12003}, {"category": 18, "url": "https://www.youtube.com/watch?v=17n-9hZX6Xc", "video_id": "video10731", "start time": 408.42, "end time": 423.57, "split": "test", "id": 10731}, {"category": 4, "url": "https://www.youtube.com/watch?v=-yRTdjMjsyU", "video_id": "video12128", "start time": 79.65, "end time": 105.15, "split": "test", "id": 12128}, {"category": 16, "url": "https://www.youtube.com/watch?v=kDYr1rt4XYU", "video_id": "video11636", "start time": 17.23, "end time": 40.85, "split": "test", "id": 11636}, {"category": 10, "url": "https://www.youtube.com/watch?v=9mMhBD_Cr9Y", "video_id": "video12420", "start time": 130.05, "end time": 146.34, "split": "test", "id": 12420}, {"category": 9, "url": "https://www.youtube.com/watch?v=OUq44giOhBI", "video_id": "video12880", "start time": 162.96, "end time": 185.8, "split": "test", "id": 12880}, {"category": 3, "url": "https://www.youtube.com/watch?v=oN0dpQRq6fw", "video_id": "video10632", "start time": 43.89, "end time": 53.9, "split": "test", "id": 10632}, {"category": 3, "url": "https://www.youtube.com/watch?v=ahOyrV_zXKQ", "video_id": "video10090", "start time": 196.65, "end time": 209.73, "split": "test", "id": 10090}, {"category": 5, "url": "https://www.youtube.com/watch?v=pnMUF63rU2Q", "video_id": "video12994", "start time": 173.75, "end time": 190.07, "split": "test", "id": 12994}, {"category": 0, "url": "https://www.youtube.com/watch?v=MkGJk6XyLDg", "video_id": "video11147", "start time": 137.45, "end time": 161.69, "split": "test", "id": 11147}, {"category": 4, "url": "https://www.youtube.com/watch?v=MHD2k9Yv5dU", "video_id": "video11698", "start time": 14.25, "end time": 24.75, "split": "test", "id": 11698}, {"category": 2, "url": "https://www.youtube.com/watch?v=gyqwkNXXjYc", "video_id": "video10395", "start time": 176.25, "end time": 189.65, "split": "test", "id": 10395}, {"category": 13, "url": "https://www.youtube.com/watch?v=P7KcGivV0-I", "video_id": "video10050", "start time": 81.97, "end time": 101.45, "split": "test", "id": 10050}, {"category": 0, "url": "https://www.youtube.com/watch?v=k4YRWT_Aldo", "video_id": "video10866", "start time": 17.61, "end time": 32.12, "split": "test", "id": 10866}, {"category": 7, "url": "https://www.youtube.com/watch?v=3McFrN9HoPA", "video_id": "video11598", "start time": 32.91, "end time": 45.93, "split": "test", "id": 11598}, {"category": 7, "url": "https://www.youtube.com/watch?v=rn9V0cN4NWs", "video_id": "video11295", "start time": 90.85, "end time": 106.45, "split": "test", "id": 11295}, {"category": 4, "url": "https://www.youtube.com/watch?v=3Mgw67Ubho4", "video_id": "video11567", "start time": 95.91, "end time": 106.72, "split": "test", "id": 11567}, {"category": 12, "url": "https://www.youtube.com/watch?v=jMPpao4MfQ4", "video_id": "video12230", "start time": 249.65, "end time": 265.81, "split": "test", "id": 12230}, {"category": 4, "url": "https://www.youtube.com/watch?v=8s4NrpsuwTk", "video_id": "video10741", "start time": 44.46, "end time": 56.8, "split": "test", "id": 10741}, {"category": 3, "url": "https://www.youtube.com/watch?v=ogOrhXUgna0", "video_id": "video12149", "start time": 64.58, "end time": 78.45, "split": "test", "id": 12149}, {"category": 3, "url": "https://www.youtube.com/watch?v=9VoVfbwYcYo", "video_id": "video10842", "start time": 583.53, "end time": 594.93, "split": "test", "id": 10842}, {"category": 0, "url": "https://www.youtube.com/watch?v=AkKbjmUbRhk", "video_id": "video12355", "start time": 208.93, "end time": 219.21, "split": "test", "id": 12355}, {"category": 7, "url": "https://www.youtube.com/watch?v=H424aHLuJkw", "video_id": "video10605", "start time": 25.97, "end time": 51.37, "split": "test", "id": 10605}, {"category": 18, "url": "https://www.youtube.com/watch?v=rJGsCmiZRLA", "video_id": "video11754", "start time": 79.46, "end time": 92.93, "split": "test", "id": 11754}, {"category": 18, "url": "https://www.youtube.com/watch?v=gJaS1YKOqrs", "video_id": "video10033", "start time": 11.01, "end time": 30.97, "split": "test", "id": 10033}, {"category": 7, "url": "https://www.youtube.com/watch?v=21mVcunoq1c", "video_id": "video10105", "start time": 81.13, "end time": 91.64, "split": "test", "id": 10105}, {"category": 14, "url": "https://www.youtube.com/watch?v=pZsUOcUPEs4", "video_id": "video11019", "start time": 0.0, "end time": 10.25, "split": "test", "id": 11019}, {"category": 11, "url": "https://www.youtube.com/watch?v=4Bg1jyCtyAs", "video_id": "video12443", "start time": 37.62, "end time": 48.2, "split": "test", "id": 12443}, {"category": 5, "url": "https://www.youtube.com/watch?v=IPYeCltXpxw", "video_id": "video12154", "start time": 168.28, "end time": 197.88, "split": "test", "id": 12154}, {"category": 5, "url": "https://www.youtube.com/watch?v=AQ5vty8f9Xc", "video_id": "video10216", "start time": 128.3, "end time": 148.65, "split": "test", "id": 10216}, {"category": 13, "url": "https://www.youtube.com/watch?v=aIrNwzjZIoU", "video_id": "video12440", "start time": 575.06, "end time": 593.34, "split": "test", "id": 12440}, {"category": 4, "url": "https://www.youtube.com/watch?v=nhtJfhzM5iU", "video_id": "video12041", "start time": 4.05, "end time": 24.21, "split": "test", "id": 12041}, {"category": 15, "url": "https://www.youtube.com/watch?v=lMXJlUIQP94", "video_id": "video11541", "start time": 87.57, "end time": 113.66, "split": "test", "id": 11541}, {"category": 0, "url": "https://www.youtube.com/watch?v=0LdF9-7lBk8", "video_id": "video10275", "start time": 37.05, "end time": 49.37, "split": "test", "id": 10275}, {"category": 13, "url": "https://www.youtube.com/watch?v=Rj4D2JwRIxQ", "video_id": "video12140", "start time": 204.55, "end time": 231.05, "split": "test", "id": 12140}, {"category": 7, "url": "https://www.youtube.com/watch?v=-u_38ETT7CM", "video_id": "video11419", "start time": 529.97, "end time": 553.73, "split": "test", "id": 11419}, {"category": 4, "url": "https://www.youtube.com/watch?v=7wP0FvGrIik", "video_id": "video10364", "start time": 1.08, "end time": 28.11, "split": "test", "id": 10364}, {"category": 10, "url": "https://www.youtube.com/watch?v=ItlVgMyC6AA", "video_id": "video11039", "start time": 18.57, "end time": 31.13, "split": "test", "id": 11039}, {"category": 4, "url": "https://www.youtube.com/watch?v=9t9-2x4UggQ", "video_id": "video10885", "start time": 88.17, "end time": 104.41, "split": "test", "id": 10885}, {"category": 12, "url": "https://www.youtube.com/watch?v=HhxKWbruy8o", "video_id": "video11922", "start time": 38.05, "end time": 67.75, "split": "test", "id": 11922}, {"category": 5, "url": "https://www.youtube.com/watch?v=9B7Ix2VQEGo", "video_id": "video11056", "start time": 260.1, "end time": 277.41, "split": "test", "id": 11056}, {"category": 9, "url": "https://www.youtube.com/watch?v=s9gDv_jiMDs", "video_id": "video12989", "start time": 140.89, "end time": 152.03, "split": "test", "id": 12989}, {"category": 7, "url": "https://www.youtube.com/watch?v=HaOzdfn_FPQ", "video_id": "video10408", "start time": 201.03, "end time": 228.99, "split": "test", "id": 10408}, {"category": 7, "url": "https://www.youtube.com/watch?v=Q6By16h-pwA", "video_id": "video12550", "start time": 68.85, "end time": 80.53, "split": "test", "id": 12550}, {"category": 10, "url": "https://www.youtube.com/watch?v=DVKDDwhKnnM", "video_id": "video11858", "start time": 103.72, "end time": 118.3, "split": "test", "id": 11858}, {"category": 18, "url": "https://www.youtube.com/watch?v=ePmnAZUQlkM", "video_id": "video12218", "start time": 35.15, "end time": 48.66, "split": "test", "id": 12218}, {"category": 13, "url": "https://www.youtube.com/watch?v=gxExZWQMnFE", "video_id": "video10748", "start time": 122.07, "end time": 136.75, "split": "test", "id": 10748}, {"category": 2, "url": "https://www.youtube.com/watch?v=NtNraLWk83I", "video_id": "video11486", "start time": 0.0, "end time": 18.71, "split": "test", "id": 11486}, {"category": 9, "url": "https://www.youtube.com/watch?v=oE3XyTXUIxU", "video_id": "video10298", "start time": 2.08, "end time": 13.73, "split": "test", "id": 10298}, {"category": 3, "url": "https://www.youtube.com/watch?v=A5rqVuSzHlc", "video_id": "video11017", "start time": 196.11, "end time": 213.89, "split": "test", "id": 11017}, {"category": 15, "url": "https://www.youtube.com/watch?v=rxrffoW6L8Y", "video_id": "video10665", "start time": 38.5, "end time": 57.86, "split": "test", "id": 10665}, {"category": 13, "url": "https://www.youtube.com/watch?v=S1fbHQvAnlc", "video_id": "video11753", "start time": 0.0, "end time": 16.83, "split": "test", "id": 11753}, {"category": 3, "url": "https://www.youtube.com/watch?v=0F-EQ2b5C3o", "video_id": "video11500", "start time": 30.98, "end time": 59.11, "split": "test", "id": 11500}, {"category": 9, "url": "https://www.youtube.com/watch?v=O46E0gCF5os", "video_id": "video11457", "start time": 147.17, "end time": 164.61, "split": "test", "id": 11457}, {"category": 6, "url": "https://www.youtube.com/watch?v=04xwzbfM7z4", "video_id": "video10953", "start time": 34.68, "end time": 44.69, "split": "test", "id": 10953}, {"category": 4, "url": "https://www.youtube.com/watch?v=NJGeGbR1bG0", "video_id": "video11000", "start time": 257.05, "end time": 275.09, "split": "test", "id": 11000}, {"category": 12, "url": "https://www.youtube.com/watch?v=MjDJNwAANwA", "video_id": "video10054", "start time": 406.92, "end time": 419.5, "split": "test", "id": 10054}, {"category": 9, "url": "https://www.youtube.com/watch?v=GiE8tKygvrg", "video_id": "video12633", "start time": 331.71, "end time": 353.9, "split": "test", "id": 12633}, {"category": 16, "url": "https://www.youtube.com/watch?v=BAGawApySvo", "video_id": "video12935", "start time": 119.33, "end time": 139.09, "split": "test", "id": 12935}, {"category": 18, "url": "https://www.youtube.com/watch?v=OKTNCY72DXk", "video_id": "video12105", "start time": 45.49, "end time": 56.4, "split": "test", "id": 12105}, {"category": 6, "url": "https://www.youtube.com/watch?v=jeM5cneURIs", "video_id": "video12175", "start time": 130.04, "end time": 158.54, "split": "test", "id": 12175}, {"category": 16, "url": "https://www.youtube.com/watch?v=FyQyGe2KhAs", "video_id": "video12938", "start time": 134.92, "end time": 147.76, "split": "test", "id": 12938}, {"category": 16, "url": "https://www.youtube.com/watch?v=0xR2cC6Tea8", "video_id": "video10788", "start time": 8.14, "end time": 24.2, "split": "test", "id": 10788}, {"category": 16, "url": "https://www.youtube.com/watch?v=etSBfnJHqY0", "video_id": "video10586", "start time": 140.62, "end time": 157.74, "split": "test", "id": 10586}, {"category": 4, "url": "https://www.youtube.com/watch?v=f88rHsc1CYc", "video_id": "video12200", "start time": 116.46, "end time": 140.22, "split": "test", "id": 12200}, {"category": 11, "url": "https://www.youtube.com/watch?v=MP1dh-Qh6Ck", "video_id": "video10561", "start time": 7.49, "end time": 17.5, "split": "test", "id": 10561}, {"category": 9, "url": "https://www.youtube.com/watch?v=N7Qx3eD8XD4", "video_id": "video12983", "start time": 278.18, "end time": 289.85, "split": "test", "id": 12983}, {"category": 9, "url": "https://www.youtube.com/watch?v=4WqciefQsJQ", "video_id": "video10840", "start time": 21.14, "end time": 34.75, "split": "test", "id": 10840}, {"category": 12, "url": "https://www.youtube.com/watch?v=dMTN4EkSzdk", "video_id": "video11240", "start time": 17.85, "end time": 34.25, "split": "test", "id": 11240}, {"category": 13, "url": "https://www.youtube.com/watch?v=pqZdAQVHunQ", "video_id": "video10201", "start time": 148.13, "end time": 162.38, "split": "test", "id": 10201}, {"category": 17, "url": "https://www.youtube.com/watch?v=Ec3jxYwkg9I", "video_id": "video11632", "start time": 236.85, "end time": 257.14, "split": "test", "id": 11632}, {"category": 18, "url": "https://www.youtube.com/watch?v=7T_MH4D0Jjs", "video_id": "video11213", "start time": 250.49, "end time": 274.97, "split": "test", "id": 11213}, {"category": 12, "url": "https://www.youtube.com/watch?v=3CoEsiDSMHI", "video_id": "video12531", "start time": 31.75, "end time": 46.49, "split": "test", "id": 12531}, {"category": 5, "url": "https://www.youtube.com/watch?v=fXIeFJCqsPs", "video_id": "video12021", "start time": 697.48, "end time": 715.66, "split": "test", "id": 12021}, {"category": 12, "url": "https://www.youtube.com/watch?v=e0SRlPUQaZU", "video_id": "video10691", "start time": 211.71, "end time": 225.51, "split": "test", "id": 10691}, {"category": 12, "url": "https://www.youtube.com/watch?v=DVgU0ksxKGY", "video_id": "video12301", "start time": 78.13, "end time": 96.64, "split": "test", "id": 12301}, {"category": 11, "url": "https://www.youtube.com/watch?v=jJ7gEpsuxT0", "video_id": "video12815", "start time": 239.09, "end time": 259.05, "split": "test", "id": 12815}, {"category": 3, "url": "https://www.youtube.com/watch?v=6BU9_rBnzCM", "video_id": "video11690", "start time": 74.39, "end time": 87.13, "split": "test", "id": 11690}, {"category": 18, "url": "https://www.youtube.com/watch?v=8jGYCo6bWS8", "video_id": "video11029", "start time": 281.37, "end time": 298.85, "split": "test", "id": 11029}, {"category": 16, "url": "https://www.youtube.com/watch?v=oDIH0wHKkYo", "video_id": "video10135", "start time": 78.53, "end time": 93.64, "split": "test", "id": 10135}, {"category": 11, "url": "https://www.youtube.com/watch?v=4AMo-YLbLIo", "video_id": "video11177", "start time": 119.87, "end time": 130.34, "split": "test", "id": 11177}, {"category": 17, "url": "https://www.youtube.com/watch?v=B2bHgikq2Zo", "video_id": "video11634", "start time": 7.05, "end time": 30.71, "split": "test", "id": 11634}, {"category": 4, "url": "https://www.youtube.com/watch?v=QBAs13AL1Jg", "video_id": "video12484", "start time": 183.69, "end time": 202.65, "split": "test", "id": 12484}, {"category": 14, "url": "https://www.youtube.com/watch?v=4dZ6WidU8Ck", "video_id": "video11894", "start time": 0.0, "end time": 28.61, "split": "test", "id": 11894}, {"category": 5, "url": "https://www.youtube.com/watch?v=NPFzFRWsGLU", "video_id": "video12063", "start time": 0.0, "end time": 10.01, "split": "test", "id": 12063}, {"category": 7, "url": "https://www.youtube.com/watch?v=kWOaIRkympM", "video_id": "video10676", "start time": 302.31, "end time": 313.03, "split": "test", "id": 10676}, {"category": 18, "url": "https://www.youtube.com/watch?v=86za5iZeoNQ", "video_id": "video11409", "start time": 262.44, "end time": 278.49, "split": "test", "id": 11409}, {"category": 4, "url": "https://www.youtube.com/watch?v=BVlbzqTm8kY", "video_id": "video10309", "start time": 3.32, "end time": 23.7, "split": "test", "id": 10309}, {"category": 7, "url": "https://www.youtube.com/watch?v=BeJwdUwLLi8", "video_id": "video12943", "start time": 61.19, "end time": 71.41, "split": "test", "id": 12943}, {"category": 19, "url": "https://www.youtube.com/watch?v=870TqORDZSs", "video_id": "video11844", "start time": 268.08, "end time": 278.78, "split": "test", "id": 11844}, {"category": 3, "url": "https://www.youtube.com/watch?v=FZ3qmMN1C-0", "video_id": "video11566", "start time": 224.33, "end time": 239.45, "split": "test", "id": 11566}, {"category": 13, "url": "https://www.youtube.com/watch?v=DuHO2KcX6bI", "video_id": "video12855", "start time": 242.99, "end time": 259.44, "split": "test", "id": 12855}, {"category": 12, "url": "https://www.youtube.com/watch?v=K_K2YNG6ZbU", "video_id": "video10040", "start time": 328.33, "end time": 341.65, "split": "test", "id": 10040}, {"category": 16, "url": "https://www.youtube.com/watch?v=ho4a0OhitJs", "video_id": "video10126", "start time": 142.01, "end time": 167.85, "split": "test", "id": 10126}, {"category": 16, "url": "https://www.youtube.com/watch?v=6LFB_ojBksk", "video_id": "video11148", "start time": 172.45, "end time": 192.57, "split": "test", "id": 11148}, {"category": 3, "url": "https://www.youtube.com/watch?v=PWVJNZNz2e0", "video_id": "video10492", "start time": 298.84, "end time": 311.51, "split": "test", "id": 10492}, {"category": 0, "url": "https://www.youtube.com/watch?v=OURemOiHAgw", "video_id": "video11681", "start time": 73.65, "end time": 86.83, "split": "test", "id": 11681}, {"category": 7, "url": "https://www.youtube.com/watch?v=2PR8AJ3xBRg", "video_id": "video11040", "start time": 6.85, "end time": 31.45, "split": "test", "id": 11040}, {"category": 4, "url": "https://www.youtube.com/watch?v=OATfuTGqJ_A", "video_id": "video11956", "start time": 0.0, "end time": 17.13, "split": "test", "id": 11956}, {"category": 3, "url": "https://www.youtube.com/watch?v=gcFvtWpuqpI", "video_id": "video10489", "start time": 24.69, "end time": 47.77, "split": "test", "id": 10489}, {"category": 16, "url": "https://www.youtube.com/watch?v=oTPbSTnFcc0", "video_id": "video11156", "start time": 139.95, "end time": 153.87, "split": "test", "id": 11156}, {"category": 16, "url": "https://www.youtube.com/watch?v=j1K_ZK5hZ7U", "video_id": "video11369", "start time": 38.21, "end time": 61.78, "split": "test", "id": 11369}, {"category": 11, "url": "https://www.youtube.com/watch?v=i0KO35vTVlw", "video_id": "video11638", "start time": 244.0, "end time": 254.01, "split": "test", "id": 11638}, {"category": 0, "url": "https://www.youtube.com/watch?v=rOhkPoj9tJ4", "video_id": "video12682", "start time": 5.75, "end time": 35.68, "split": "test", "id": 12682}, {"category": 5, "url": "https://www.youtube.com/watch?v=My14mZa-eq8", "video_id": "video12449", "start time": 236.07, "end time": 255.05, "split": "test", "id": 12449}, {"category": 15, "url": "https://www.youtube.com/watch?v=M9eRNGsenjQ", "video_id": "video10001", "start time": 60.87, "end time": 78.36, "split": "test", "id": 10001}, {"category": 12, "url": "https://www.youtube.com/watch?v=767vco3jBkc", "video_id": "video12294", "start time": 170.05, "end time": 195.94, "split": "test", "id": 12294}, {"category": 11, "url": "https://www.youtube.com/watch?v=o4sbzb9F_Q8", "video_id": "video12849", "start time": 141.02, "end time": 151.03, "split": "test", "id": 12849}, {"category": 3, "url": "https://www.youtube.com/watch?v=980ZM2EeNBY", "video_id": "video10300", "start time": 32.81, "end time": 44.13, "split": "test", "id": 10300}, {"category": 18, "url": "https://www.youtube.com/watch?v=g5o3lXHrYqw", "video_id": "video10158", "start time": 405.09, "end time": 421.23, "split": "test", "id": 10158}, {"category": 8, "url": "https://www.youtube.com/watch?v=5xnQSLxJmMg", "video_id": "video11016", "start time": 740.13, "end time": 750.65, "split": "test", "id": 11016}, {"category": 5, "url": "https://www.youtube.com/watch?v=RRhjqqe750A", "video_id": "video10593", "start time": 246.67, "end time": 273.03, "split": "test", "id": 10593}, {"category": 3, "url": "https://www.youtube.com/watch?v=Ox15DOhjNH4", "video_id": "video10442", "start time": 37.12, "end time": 57.94, "split": "test", "id": 10442}, {"category": 6, "url": "https://www.youtube.com/watch?v=AyBNmSVr46E", "video_id": "video12337", "start time": 27.81, "end time": 39.95, "split": "test", "id": 12337}, {"category": 2, "url": "https://www.youtube.com/watch?v=HQho3pAbkJM", "video_id": "video11303", "start time": 37.85, "end time": 60.61, "split": "test", "id": 11303}, {"category": 17, "url": "https://www.youtube.com/watch?v=0r8zA-Ukq9A", "video_id": "video11811", "start time": 844.69, "end time": 864.38, "split": "test", "id": 11811}, {"category": 4, "url": "https://www.youtube.com/watch?v=9m1zyrpkItc", "video_id": "video10301", "start time": 246.41, "end time": 259.73, "split": "test", "id": 10301}, {"category": 12, "url": "https://www.youtube.com/watch?v=AKubEB4uzUg", "video_id": "video12557", "start time": 92.31, "end time": 102.55, "split": "test", "id": 12557}, {"category": 16, "url": "https://www.youtube.com/watch?v=HMLWvqlmN-U", "video_id": "video11705", "start time": 166.73, "end time": 184.41, "split": "test", "id": 11705}, {"category": 0, "url": "https://www.youtube.com/watch?v=5kn4svItfaI", "video_id": "video10964", "start time": 32.85, "end time": 47.41, "split": "test", "id": 10964}, {"category": 17, "url": "https://www.youtube.com/watch?v=rcz8j3GjGhE", "video_id": "video12459", "start time": 4.29, "end time": 18.09, "split": "test", "id": 12459}, {"category": 7, "url": "https://www.youtube.com/watch?v=rx5XWwi5EeA", "video_id": "video12450", "start time": 208.96, "end time": 228.14, "split": "test", "id": 12450}, {"category": 17, "url": "https://www.youtube.com/watch?v=9-0f6XhXkbo", "video_id": "video10026", "start time": 108.76, "end time": 135.15, "split": "test", "id": 10026}, {"category": 3, "url": "https://www.youtube.com/watch?v=Ne9LVpnYeFQ", "video_id": "video10540", "start time": 47.8, "end time": 66.38, "split": "test", "id": 10540}, {"category": 1, "url": "https://www.youtube.com/watch?v=1cXML1-EBP4", "video_id": "video10383", "start time": 82.4, "end time": 92.94, "split": "test", "id": 10383}, {"category": 14, "url": "https://www.youtube.com/watch?v=g9Qah25_yH0", "video_id": "video12007", "start time": 0.0, "end time": 22.97, "split": "test", "id": 12007}, {"category": 11, "url": "https://www.youtube.com/watch?v=hXAbPlRziRs", "video_id": "video11321", "start time": 16.13, "end time": 28.64, "split": "test", "id": 11321}, {"category": 9, "url": "https://www.youtube.com/watch?v=fT0mm5fqN8A", "video_id": "video12061", "start time": 94.64, "end time": 110.19, "split": "test", "id": 12061}, {"category": 4, "url": "https://www.youtube.com/watch?v=5ySZqpYnGj8", "video_id": "video12346", "start time": 232.45, "end time": 245.97, "split": "test", "id": 12346}, {"category": 9, "url": "https://www.youtube.com/watch?v=0HZF3Tch04M", "video_id": "video12124", "start time": 10.22, "end time": 31.81, "split": "test", "id": 12124}, {"category": 16, "url": "https://www.youtube.com/watch?v=NBaFbfdlZXU", "video_id": "video12104", "start time": 139.62, "end time": 152.7, "split": "test", "id": 12104}, {"category": 11, "url": "https://www.youtube.com/watch?v=KbtZfzxX44o", "video_id": "video11680", "start time": 1.77, "end time": 23.97, "split": "test", "id": 11680}, {"category": 12, "url": "https://www.youtube.com/watch?v=-EtBNEKMrd8", "video_id": "video11171", "start time": 49.56, "end time": 64.51, "split": "test", "id": 11171}, {"category": 12, "url": "https://www.youtube.com/watch?v=AnWwZJDu-S0", "video_id": "video11014", "start time": 457.01, "end time": 467.97, "split": "test", "id": 11014}, {"category": 4, "url": "https://www.youtube.com/watch?v=nJS0Q5Zy5xc", "video_id": "video10014", "start time": 56.85, "end time": 71.41, "split": "test", "id": 10014}, {"category": 16, "url": "https://www.youtube.com/watch?v=35W3DEOjQQA", "video_id": "video10281", "start time": 28.78, "end time": 50.97, "split": "test", "id": 10281}, {"category": 11, "url": "https://www.youtube.com/watch?v=9RMR4PauMvM", "video_id": "video10718", "start time": 298.01, "end time": 316.61, "split": "test", "id": 10718}, {"category": 16, "url": "https://www.youtube.com/watch?v=6-6Fi_2Z2IM", "video_id": "video10535", "start time": 210.25, "end time": 221.45, "split": "test", "id": 10535}, {"category": 4, "url": "https://www.youtube.com/watch?v=GkENK40GrNA", "video_id": "video10988", "start time": 20.97, "end time": 33.18, "split": "test", "id": 10988}, {"category": 11, "url": "https://www.youtube.com/watch?v=qjcML1Z9wgM", "video_id": "video10123", "start time": 55.66, "end time": 80.72, "split": "test", "id": 10123}, {"category": 6, "url": "https://www.youtube.com/watch?v=Io3qEXfuc2s", "video_id": "video11396", "start time": 105.67, "end time": 115.88, "split": "test", "id": 11396}, {"category": 12, "url": "https://www.youtube.com/watch?v=Bi5XY7yL0T4", "video_id": "video10854", "start time": 69.84, "end time": 86.93, "split": "test", "id": 10854}, {"category": 0, "url": "https://www.youtube.com/watch?v=8aRor905cCw", "video_id": "video12757", "start time": 159.42, "end time": 173.89, "split": "test", "id": 12757}, {"category": 17, "url": "https://www.youtube.com/watch?v=6niYZ3TptBw", "video_id": "video12922", "start time": 35.85, "end time": 57.37, "split": "test", "id": 12922}, {"category": 9, "url": "https://www.youtube.com/watch?v=gq5eQeFj4-8", "video_id": "video11920", "start time": 48.17, "end time": 62.13, "split": "test", "id": 11920}, {"category": 13, "url": "https://www.youtube.com/watch?v=kKxNqVrF1uI", "video_id": "video12850", "start time": 329.94, "end time": 349.06, "split": "test", "id": 12850}, {"category": 5, "url": "https://www.youtube.com/watch?v=B9bDZ5-zPtY", "video_id": "video11053", "start time": 774.01, "end time": 787.21, "split": "test", "id": 11053}, {"category": 16, "url": "https://www.youtube.com/watch?v=JzH_tGywJcc", "video_id": "video12863", "start time": 5.52, "end time": 24.0, "split": "test", "id": 12863}, {"category": 9, "url": "https://www.youtube.com/watch?v=1JCp7_JZT5c", "video_id": "video12940", "start time": 278.53, "end time": 296.81, "split": "test", "id": 12940}, {"category": 5, "url": "https://www.youtube.com/watch?v=a8LF7JEb0IA", "video_id": "video10299", "start time": 238.58, "end time": 256.64, "split": "test", "id": 10299}, {"category": 6, "url": "https://www.youtube.com/watch?v=rGlerRJ29rg", "video_id": "video10505", "start time": 65.81, "end time": 79.66, "split": "test", "id": 10505}, {"category": 3, "url": "https://www.youtube.com/watch?v=JgheyP7mJgc", "video_id": "video10943", "start time": 553.87, "end time": 566.35, "split": "test", "id": 10943}, {"category": 7, "url": "https://www.youtube.com/watch?v=0Wj_0BVXSHw", "video_id": "video11551", "start time": 9.93, "end time": 24.33, "split": "test", "id": 11551}, {"category": 19, "url": "https://www.youtube.com/watch?v=fGyZmAgy2C4", "video_id": "video11446", "start time": 13.57, "end time": 26.41, "split": "test", "id": 11446}, {"category": 4, "url": "https://www.youtube.com/watch?v=jmd94DqeoRA", "video_id": "video10077", "start time": 153.73, "end time": 164.45, "split": "test", "id": 10077}, {"category": 18, "url": "https://www.youtube.com/watch?v=MrTz5xjmso4", "video_id": "video12026", "start time": 89.8, "end time": 106.22, "split": "test", "id": 12026}, {"category": 4, "url": "https://www.youtube.com/watch?v=H6OTKm0M8vU", "video_id": "video11973", "start time": 68.55, "end time": 82.16, "split": "test", "id": 11973}, {"category": 3, "url": "https://www.youtube.com/watch?v=KImRxuGRX38", "video_id": "video12264", "start time": 100.97, "end time": 112.21, "split": "test", "id": 12264}, {"category": 16, "url": "https://www.youtube.com/watch?v=7ak4950FQX8", "video_id": "video12804", "start time": 15.83, "end time": 32.41, "split": "test", "id": 12804}, {"category": 7, "url": "https://www.youtube.com/watch?v=RTxxbCWw1mY", "video_id": "video11755", "start time": 105.62, "end time": 116.6, "split": "test", "id": 11755}, {"category": 16, "url": "https://www.youtube.com/watch?v=aLFq8DxiHD8", "video_id": "video12187", "start time": 90.7, "end time": 104.39, "split": "test", "id": 12187}, {"category": 12, "url": "https://www.youtube.com/watch?v=9q3oNzzX68g", "video_id": "video10637", "start time": 334.72, "end time": 358.03, "split": "test", "id": 10637}, {"category": 0, "url": "https://www.youtube.com/watch?v=heesxWQp9R4", "video_id": "video11174", "start time": 32.98, "end time": 46.69, "split": "test", "id": 11174}, {"category": 7, "url": "https://www.youtube.com/watch?v=4WuZapvSL0E", "video_id": "video10825", "start time": 42.01, "end time": 67.49, "split": "test", "id": 10825}, {"category": 8, "url": "https://www.youtube.com/watch?v=7kRPDdWXQ5w", "video_id": "video10815", "start time": 83.93, "end time": 101.98, "split": "test", "id": 10815}, {"category": 13, "url": "https://www.youtube.com/watch?v=0CY0tnSp5qY", "video_id": "video10552", "start time": 83.13, "end time": 103.21, "split": "test", "id": 10552}, {"category": 16, "url": "https://www.youtube.com/watch?v=aG01NLO-hjA", "video_id": "video10712", "start time": 0.0, "end time": 28.45, "split": "test", "id": 10712}, {"category": 0, "url": "https://www.youtube.com/watch?v=il-NdjTtUAI", "video_id": "video10372", "start time": 155.24, "end time": 173.22, "split": "test", "id": 10372}, {"category": 13, "url": "https://www.youtube.com/watch?v=a6avE6o6IQY", "video_id": "video11306", "start time": 55.52, "end time": 84.8, "split": "test", "id": 11306}, {"category": 4, "url": "https://www.youtube.com/watch?v=2KU4bCDi1kM", "video_id": "video11520", "start time": 119.7, "end time": 133.88, "split": "test", "id": 11520}, {"category": 4, "url": "https://www.youtube.com/watch?v=BEE_ZgcPR-k", "video_id": "video11341", "start time": 31.85, "end time": 57.37, "split": "test", "id": 11341}, {"category": 4, "url": "https://www.youtube.com/watch?v=R0YnfaWwxNs", "video_id": "video10178", "start time": 36.85, "end time": 51.18, "split": "test", "id": 10178}, {"category": 3, "url": "https://www.youtube.com/watch?v=EQMfmemBz1s", "video_id": "video11927", "start time": 458.55, "end time": 469.22, "split": "test", "id": 11927}, {"category": 14, "url": "https://www.youtube.com/watch?v=RlpPsQaH2GQ", "video_id": "video10627", "start time": 7.09, "end time": 30.68, "split": "test", "id": 10627}, {"category": 0, "url": "https://www.youtube.com/watch?v=IXmF4GbA86E", "video_id": "video12998", "start time": 0.0, "end time": 14.4, "split": "test", "id": 12998}, {"category": 19, "url": "https://www.youtube.com/watch?v=KwAPuVYJzSA", "video_id": "video11433", "start time": 228.24, "end time": 249.53, "split": "test", "id": 11433}, {"category": 16, "url": "https://www.youtube.com/watch?v=83clKgK_rJI", "video_id": "video11170", "start time": 54.97, "end time": 71.93, "split": "test", "id": 11170}, {"category": 16, "url": "https://www.youtube.com/watch?v=bhA5uNllOhM", "video_id": "video10289", "start time": 62.24, "end time": 76.12, "split": "test", "id": 10289}, {"category": 1, "url": "https://www.youtube.com/watch?v=Kohx3wjxD7E", "video_id": "video11573", "start time": 17.69, "end time": 30.24, "split": "test", "id": 11573}, {"category": 5, "url": "https://www.youtube.com/watch?v=B9bDZ5-zPtY", "video_id": "video10770", "start time": 342.71, "end time": 360.09, "split": "test", "id": 10770}, {"category": 18, "url": "https://www.youtube.com/watch?v=K3kl-1amqvs", "video_id": "video11646", "start time": 163.29, "end time": 178.23, "split": "test", "id": 11646}, {"category": 5, "url": "https://www.youtube.com/watch?v=4KbSRXP0wik", "video_id": "video12558", "start time": 118.29, "end time": 143.48, "split": "test", "id": 12558}, {"category": 7, "url": "https://www.youtube.com/watch?v=1LcwNgj_6T8", "video_id": "video10909", "start time": 48.53, "end time": 68.25, "split": "test", "id": 10909}, {"category": 13, "url": "https://www.youtube.com/watch?v=9Xx5JxzmkUc", "video_id": "video12454", "start time": 11.19, "end time": 27.01, "split": "test", "id": 12454}, {"category": 10, "url": "https://www.youtube.com/watch?v=1c_w2n-EOgs", "video_id": "video11554", "start time": 49.76, "end time": 70.28, "split": "test", "id": 11554}, {"category": 7, "url": "https://www.youtube.com/watch?v=fOgIljJK_lE", "video_id": "video10277", "start time": 7.52, "end time": 20.4, "split": "test", "id": 10277}, {"category": 16, "url": "https://www.youtube.com/watch?v=CkUd_8tPpi4", "video_id": "video11137", "start time": 51.57, "end time": 63.04, "split": "test", "id": 11137}, {"category": 5, "url": "https://www.youtube.com/watch?v=rb7TVW77ZCs", "video_id": "video11324", "start time": 73.2, "end time": 83.88, "split": "test", "id": 11324}, {"category": 2, "url": "https://www.youtube.com/watch?v=JL44dWbN5_o", "video_id": "video12643", "start time": 13.03, "end time": 33.48, "split": "test", "id": 12643}, {"category": 16, "url": "https://www.youtube.com/watch?v=B3Be0tpYbAw", "video_id": "video10175", "start time": 105.12, "end time": 117.5, "split": "test", "id": 10175}, {"category": 6, "url": "https://www.youtube.com/watch?v=KBuXSwkRMVk", "video_id": "video10670", "start time": 164.65, "end time": 187.2, "split": "test", "id": 10670}, {"category": 11, "url": "https://www.youtube.com/watch?v=Gaxb25LIiPw", "video_id": "video10009", "start time": 69.65, "end time": 84.63, "split": "test", "id": 10009}, {"category": 9, "url": "https://www.youtube.com/watch?v=3iD8cRuHmRc", "video_id": "video12315", "start time": 0.0, "end time": 18.73, "split": "test", "id": 12315}, {"category": 0, "url": "https://www.youtube.com/watch?v=kYtGl1dX5qI", "video_id": "video10784", "start time": 95.39, "end time": 109.07, "split": "test", "id": 10784}, {"category": 14, "url": "https://www.youtube.com/watch?v=g184laZneFE", "video_id": "video10116", "start time": 104.09, "end time": 119.01, "split": "test", "id": 10116}, {"category": 1, "url": "https://www.youtube.com/watch?v=KAncvaGZAn4", "video_id": "video11386", "start time": 36.92, "end time": 59.86, "split": "test", "id": 11386}, {"category": 10, "url": "https://www.youtube.com/watch?v=s8zf0emPPEw", "video_id": "video10530", "start time": 245.49, "end time": 258.71, "split": "test", "id": 10530}, {"category": 16, "url": "https://www.youtube.com/watch?v=6y-QSpF7mTs", "video_id": "video11075", "start time": 18.71, "end time": 43.18, "split": "test", "id": 11075}, {"category": 4, "url": "https://www.youtube.com/watch?v=mMXO6RA_EJ8", "video_id": "video11162", "start time": 7.58, "end time": 19.91, "split": "test", "id": 11162}, {"category": 3, "url": "https://www.youtube.com/watch?v=ccQ3zzW8sAY", "video_id": "video12613", "start time": 925.27, "end time": 940.99, "split": "test", "id": 12613}, {"category": 16, "url": "https://www.youtube.com/watch?v=5bIjDYEs6Qc", "video_id": "video11653", "start time": 71.85, "end time": 84.33, "split": "test", "id": 11653}, {"category": 13, "url": "https://www.youtube.com/watch?v=4diMrNfHliY", "video_id": "video10118", "start time": 137.02, "end time": 157.89, "split": "test", "id": 10118}, {"category": 11, "url": "https://www.youtube.com/watch?v=85rzzIusJEg", "video_id": "video11663", "start time": 289.05, "end time": 307.61, "split": "test", "id": 11663}, {"category": 1, "url": "https://www.youtube.com/watch?v=HM-nkUPPDjs", "video_id": "video10739", "start time": 33.04, "end time": 43.59, "split": "test", "id": 10739}, {"category": 16, "url": "https://www.youtube.com/watch?v=hK2pNakR8eg", "video_id": "video11618", "start time": 42.02, "end time": 60.51, "split": "test", "id": 11618}, {"category": 0, "url": "https://www.youtube.com/watch?v=9lD1gyRiBJw", "video_id": "video12351", "start time": 157.81, "end time": 178.83, "split": "test", "id": 12351}, {"category": 15, "url": "https://www.youtube.com/watch?v=Exn3M3-u_LI", "video_id": "video12670", "start time": 864.15, "end time": 885.98, "split": "test", "id": 12670}, {"category": 16, "url": "https://www.youtube.com/watch?v=Q-CBrJBFTF8", "video_id": "video11895", "start time": 317.36, "end time": 338.92, "split": "test", "id": 11895}, {"category": 3, "url": "https://www.youtube.com/watch?v=nLKJT2I_fn4", "video_id": "video12078", "start time": 4.33, "end time": 29.25, "split": "test", "id": 12078}, {"category": 12, "url": "https://www.youtube.com/watch?v=ooyHLq6Y9Io", "video_id": "video10352", "start time": 70.93, "end time": 81.25, "split": "test", "id": 10352}, {"category": 17, "url": "https://www.youtube.com/watch?v=kyxEFj7bgHI", "video_id": "video11850", "start time": 250.53, "end time": 263.94, "split": "test", "id": 11850}, {"category": 4, "url": "https://www.youtube.com/watch?v=fGTOLtb7B4g", "video_id": "video12822", "start time": 3.65, "end time": 18.71, "split": "test", "id": 12822}, {"category": 3, "url": "https://www.youtube.com/watch?v=178cn5SlB4o", "video_id": "video11644", "start time": 96.58, "end time": 112.93, "split": "test", "id": 11644}, {"category": 6, "url": "https://www.youtube.com/watch?v=mvvJr9R6LgQ", "video_id": "video12173", "start time": 3.42, "end time": 23.4, "split": "test", "id": 12173}, {"category": 11, "url": "https://www.youtube.com/watch?v=RGTpFM4zM9k", "video_id": "video10206", "start time": 34.71, "end time": 53.95, "split": "test", "id": 10206}, {"category": 4, "url": "https://www.youtube.com/watch?v=JI3rhKfJXQk", "video_id": "video12903", "start time": 173.65, "end time": 200.75, "split": "test", "id": 12903}, {"category": 16, "url": "https://www.youtube.com/watch?v=oJLnAh9O-n0", "video_id": "video12099", "start time": 45.34, "end time": 68.91, "split": "test", "id": 12099}, {"category": 15, "url": "https://www.youtube.com/watch?v=41jh2hnUZ8g", "video_id": "video11434", "start time": 10.01, "end time": 30.21, "split": "test", "id": 11434}, {"category": 10, "url": "https://www.youtube.com/watch?v=6fHW3Mq6CyU", "video_id": "video12183", "start time": 22.6, "end time": 35.82, "split": "test", "id": 12183}, {"category": 12, "url": "https://www.youtube.com/watch?v=bcVBqwlnmlM", "video_id": "video10514", "start time": 212.06, "end time": 236.98, "split": "test", "id": 10514}, {"category": 11, "url": "https://www.youtube.com/watch?v=175fCGNGOuY", "video_id": "video10900", "start time": 292.41, "end time": 319.11, "split": "test", "id": 10900}, {"category": 8, "url": "https://www.youtube.com/watch?v=5DxhuQn_Xoc", "video_id": "video10806", "start time": 14.7, "end time": 31.55, "split": "test", "id": 10806}, {"category": 7, "url": "https://www.youtube.com/watch?v=h5UuGcP5qE4", "video_id": "video11231", "start time": 194.48, "end time": 210.56, "split": "test", "id": 11231}, {"category": 14, "url": "https://www.youtube.com/watch?v=RzaBSUIMhpE", "video_id": "video11780", "start time": 58.94, "end time": 73.32, "split": "test", "id": 11780}, {"category": 19, "url": "https://www.youtube.com/watch?v=5D8tOG8GOFs", "video_id": "video12910", "start time": 194.75, "end time": 210.31, "split": "test", "id": 12910}, {"category": 3, "url": "https://www.youtube.com/watch?v=dnS1k0rssCo", "video_id": "video12738", "start time": 126.98, "end time": 142.11, "split": "test", "id": 12738}, {"category": 9, "url": "https://www.youtube.com/watch?v=oGeGaT5jvIU", "video_id": "video11217", "start time": 365.41, "end time": 390.17, "split": "test", "id": 11217}, {"category": 18, "url": "https://www.youtube.com/watch?v=kLZyIs_sn7Q", "video_id": "video11769", "start time": 110.19, "end time": 123.37, "split": "test", "id": 11769}, {"category": 17, "url": "https://www.youtube.com/watch?v=R06wOny6Uk8", "video_id": "video10222", "start time": 181.06, "end time": 202.05, "split": "test", "id": 10222}, {"category": 18, "url": "https://www.youtube.com/watch?v=F9zZ8hxns5I", "video_id": "video10417", "start time": 433.05, "end time": 460.25, "split": "test", "id": 10417}, {"category": 8, "url": "https://www.youtube.com/watch?v=NxSEb8AeIi4", "video_id": "video10545", "start time": 24.01, "end time": 34.41, "split": "test", "id": 10545}, {"category": 10, "url": "https://www.youtube.com/watch?v=NOVQkx4Y7zE", "video_id": "video12576", "start time": 100.71, "end time": 114.91, "split": "test", "id": 12576}, {"category": 16, "url": "https://www.youtube.com/watch?v=B4cptckK00w", "video_id": "video10060", "start time": 173.72, "end time": 185.77, "split": "test", "id": 10060}, {"category": 15, "url": "https://www.youtube.com/watch?v=-hYY16kgpmo", "video_id": "video10253", "start time": 33.48, "end time": 48.35, "split": "test", "id": 10253}, {"category": 1, "url": "https://www.youtube.com/watch?v=59Fm6qXSfFo", "video_id": "video10875", "start time": 19.46, "end time": 31.46, "split": "test", "id": 10875}, {"category": 16, "url": "https://www.youtube.com/watch?v=AHu6w_m_Udo", "video_id": "video10960", "start time": 20.15, "end time": 35.08, "split": "test", "id": 10960}, {"category": 4, "url": "https://www.youtube.com/watch?v=RNPjCXVUpNI", "video_id": "video12984", "start time": 181.77, "end time": 202.17, "split": "test", "id": 12984}, {"category": 3, "url": "https://www.youtube.com/watch?v=Nosf1FeO-pM", "video_id": "video10241", "start time": 47.89, "end time": 65.57, "split": "test", "id": 10241}, {"category": 18, "url": "https://www.youtube.com/watch?v=av6729Mm-Xw", "video_id": "video10284", "start time": 273.49, "end time": 290.01, "split": "test", "id": 10284}, {"category": 13, "url": "https://www.youtube.com/watch?v=G5OhzezhdQc", "video_id": "video10874", "start time": 185.65, "end time": 198.37, "split": "test", "id": 10874}, {"category": 6, "url": "https://www.youtube.com/watch?v=KiXQoxCGeDg", "video_id": "video12505", "start time": 9.55, "end time": 25.01, "split": "test", "id": 12505}, {"category": 12, "url": "https://www.youtube.com/watch?v=7BnEUdnxLt4", "video_id": "video12286", "start time": 286.53, "end time": 304.69, "split": "test", "id": 12286}, {"category": 14, "url": "https://www.youtube.com/watch?v=IdbHh3v0EJA", "video_id": "video10186", "start time": 553.4, "end time": 567.68, "split": "test", "id": 10186}, {"category": 17, "url": "https://www.youtube.com/watch?v=JPHSbT31o_c", "video_id": "video10228", "start time": 23.5, "end time": 40.45, "split": "test", "id": 10228}, {"category": 2, "url": "https://www.youtube.com/watch?v=gtY-hFB4wBo", "video_id": "video11721", "start time": 384.88, "end time": 401.15, "split": "test", "id": 11721}, {"category": 18, "url": "https://www.youtube.com/watch?v=FU37GnGYsOA", "video_id": "video11310", "start time": 47.83, "end time": 70.58, "split": "test", "id": 11310}, {"category": 11, "url": "https://www.youtube.com/watch?v=B1YuDlbzHWA", "video_id": "video12979", "start time": 151.11, "end time": 166.31, "split": "test", "id": 12979}, {"category": 16, "url": "https://www.youtube.com/watch?v=fSO83XlKcPI", "video_id": "video11142", "start time": 97.81, "end time": 112.01, "split": "test", "id": 11142}, {"category": 3, "url": "https://www.youtube.com/watch?v=P9dTP5UVl_4", "video_id": "video10414", "start time": 59.35, "end time": 73.88, "split": "test", "id": 10414}, {"category": 0, "url": "https://www.youtube.com/watch?v=b-3BI9AspYc", "video_id": "video10294", "start time": 16.06, "end time": 28.87, "split": "test", "id": 10294}, {"category": 11, "url": "https://www.youtube.com/watch?v=9kn3yRcDk2g", "video_id": "video10723", "start time": 150.29, "end time": 167.69, "split": "test", "id": 10723}, {"category": 16, "url": "https://www.youtube.com/watch?v=FBtTiqQ10pk", "video_id": "video10159", "start time": 295.68, "end time": 324.34, "split": "test", "id": 10159}, {"category": 6, "url": "https://www.youtube.com/watch?v=KkObGYzDeRo", "video_id": "video12719", "start time": 82.5, "end time": 103.44, "split": "test", "id": 12719}, {"category": 6, "url": "https://www.youtube.com/watch?v=4WfyhtwGimQ", "video_id": "video11139", "start time": 140.05, "end time": 162.38, "split": "test", "id": 11139}, {"category": 9, "url": "https://www.youtube.com/watch?v=iXS4Pts0R6c", "video_id": "video12608", "start time": 32.58, "end time": 60.74, "split": "test", "id": 12608}, {"category": 3, "url": "https://www.youtube.com/watch?v=kpA-FsKLA6A", "video_id": "video12523", "start time": 238.65, "end time": 254.74, "split": "test", "id": 12523}, {"category": 0, "url": "https://www.youtube.com/watch?v=dnru17nOZzM", "video_id": "video12595", "start time": 69.55, "end time": 84.53, "split": "test", "id": 12595}, {"category": 0, "url": "https://www.youtube.com/watch?v=Cf6ynsxmrXw", "video_id": "video12010", "start time": 35.37, "end time": 48.3, "split": "test", "id": 12010}, {"category": 16, "url": "https://www.youtube.com/watch?v=eCXP3IKWknY", "video_id": "video10376", "start time": 99.45, "end time": 122.73, "split": "test", "id": 10376}, {"category": 17, "url": "https://www.youtube.com/watch?v=k_hCwAJyrFM", "video_id": "video10845", "start time": 134.21, "end time": 148.3, "split": "test", "id": 10845}, {"category": 2, "url": "https://www.youtube.com/watch?v=7IOHdE0q5Ok", "video_id": "video10847", "start time": 430.81, "end time": 456.37, "split": "test", "id": 10847}, {"category": 17, "url": "https://www.youtube.com/watch?v=9bfeoW_2FuM", "video_id": "video11081", "start time": 33.91, "end time": 47.46, "split": "test", "id": 11081}, {"category": 5, "url": "https://www.youtube.com/watch?v=GAY5ICoVnA8", "video_id": "video11348", "start time": 5.15, "end time": 23.17, "split": "test", "id": 11348}, {"category": 9, "url": "https://www.youtube.com/watch?v=mAnBfGONwek", "video_id": "video12919", "start time": 114.29, "end time": 129.97, "split": "test", "id": 12919}, {"category": 18, "url": "https://www.youtube.com/watch?v=57J2bNiexM0", "video_id": "video12290", "start time": 74.2, "end time": 89.39, "split": "test", "id": 12290}, {"category": 17, "url": "https://www.youtube.com/watch?v=0kemdeI4w4E", "video_id": "video11007", "start time": 56.15, "end time": 67.48, "split": "test", "id": 11007}, {"category": 9, "url": "https://www.youtube.com/watch?v=s2QYzVvJIRM", "video_id": "video11509", "start time": 267.95, "end time": 297.11, "split": "test", "id": 11509}, {"category": 9, "url": "https://www.youtube.com/watch?v=4F_egHQJRZA", "video_id": "video12039", "start time": 85.6, "end time": 100.58, "split": "test", "id": 12039}, {"category": 17, "url": "https://www.youtube.com/watch?v=c8S3TxxkBuc", "video_id": "video12406", "start time": 106.99, "end time": 123.38, "split": "test", "id": 12406}, {"category": 17, "url": "https://www.youtube.com/watch?v=8UvpEiM-FM8", "video_id": "video11970", "start time": 169.84, "end time": 184.82, "split": "test", "id": 11970}, {"category": 9, "url": "https://www.youtube.com/watch?v=ohkAxbeMxVo", "video_id": "video11965", "start time": 141.85, "end time": 155.73, "split": "test", "id": 11965}, {"category": 16, "url": "https://www.youtube.com/watch?v=I-tAx1OH8J4", "video_id": "video11252", "start time": 9.06, "end time": 20.94, "split": "test", "id": 11252}, {"category": 10, "url": "https://www.youtube.com/watch?v=4w0V_yx4s60", "video_id": "video10563", "start time": 189.84, "end time": 206.42, "split": "test", "id": 10563}, {"category": 14, "url": "https://www.youtube.com/watch?v=jS3drFzu_TQ", "video_id": "video11605", "start time": 0.0, "end time": 16.65, "split": "test", "id": 11605}, {"category": 18, "url": "https://www.youtube.com/watch?v=qOzAchYub1I", "video_id": "video10689", "start time": 44.33, "end time": 56.17, "split": "test", "id": 10689}, {"category": 4, "url": "https://www.youtube.com/watch?v=LjP60nAnRa0", "video_id": "video11127", "start time": 299.91, "end time": 314.58, "split": "test", "id": 11127}, {"category": 13, "url": "https://www.youtube.com/watch?v=rCnRqZw4WiE", "video_id": "video11079", "start time": 42.32, "end time": 60.37, "split": "test", "id": 11079}, {"category": 14, "url": "https://www.youtube.com/watch?v=DKGxYLeu_1Y", "video_id": "video12393", "start time": 185.67, "end time": 198.55, "split": "test", "id": 12393}, {"category": 15, "url": "https://www.youtube.com/watch?v=9hzd_K5QdXQ", "video_id": "video12001", "start time": 10.67, "end time": 21.05, "split": "test", "id": 12001}, {"category": 10, "url": "https://www.youtube.com/watch?v=N_a-RQkPp8g", "video_id": "video12968", "start time": 28.09, "end time": 41.8, "split": "test", "id": 12968}, {"category": 9, "url": "https://www.youtube.com/watch?v=IrYs4PxT5X8", "video_id": "video10056", "start time": 89.74, "end time": 110.26, "split": "test", "id": 10056}, {"category": 7, "url": "https://www.youtube.com/watch?v=2WwKtzEhrt4", "video_id": "video12870", "start time": 37.95, "end time": 49.98, "split": "test", "id": 12870}, {"category": 8, "url": "https://www.youtube.com/watch?v=MYEmL0d0lZE", "video_id": "video12841", "start time": 201.29, "end time": 212.68, "split": "test", "id": 12841}, {"category": 16, "url": "https://www.youtube.com/watch?v=-dh_uGahzYo", "video_id": "video10334", "start time": 95.09, "end time": 105.65, "split": "test", "id": 10334}, {"category": 11, "url": "https://www.youtube.com/watch?v=dXkHsn9bxPk", "video_id": "video11488", "start time": 55.65, "end time": 66.01, "split": "test", "id": 11488}, {"category": 16, "url": "https://www.youtube.com/watch?v=5dxoqb_r1Nc", "video_id": "video10796", "start time": 37.95, "end time": 54.44, "split": "test", "id": 10796}, {"category": 4, "url": "https://www.youtube.com/watch?v=dVPF3SO0trU", "video_id": "video11645", "start time": 31.33, "end time": 58.73, "split": "test", "id": 11645}, {"category": 4, "url": "https://www.youtube.com/watch?v=dW3Ro2ZY094", "video_id": "video12114", "start time": 64.55, "end time": 88.77, "split": "test", "id": 12114}, {"category": 7, "url": "https://www.youtube.com/watch?v=bMeI7ieN0QQ", "video_id": "video11280", "start time": 32.92, "end time": 49.67, "split": "test", "id": 11280}, {"category": 3, "url": "https://www.youtube.com/watch?v=i-VlZZWf7pY", "video_id": "video10270", "start time": 76.36, "end time": 97.81, "split": "test", "id": 10270}, {"category": 3, "url": "https://www.youtube.com/watch?v=bBJ4M2sWAKk", "video_id": "video11718", "start time": 55.84, "end time": 73.39, "split": "test", "id": 11718}, {"category": 16, "url": "https://www.youtube.com/watch?v=j3hUACZbOvs", "video_id": "video12914", "start time": 108.29, "end time": 120.53, "split": "test", "id": 12914}, {"category": 10, "url": "https://www.youtube.com/watch?v=g9pnVzSmw5U", "video_id": "video10809", "start time": 28.91, "end time": 48.36, "split": "test", "id": 10809}, {"category": 10, "url": "https://www.youtube.com/watch?v=pNHqA6pGTKI", "video_id": "video10832", "start time": 66.98, "end time": 80.95, "split": "test", "id": 10832}, {"category": 5, "url": "https://www.youtube.com/watch?v=I4kz-C7GryY", "video_id": "video11141", "start time": 15.15, "end time": 36.38, "split": "test", "id": 11141}, {"category": 16, "url": "https://www.youtube.com/watch?v=mKodp-Z5AlA", "video_id": "video10127", "start time": 43.29, "end time": 57.73, "split": "test", "id": 10127}, {"category": 6, "url": "https://www.youtube.com/watch?v=QEKMsDAhfXg", "video_id": "video11884", "start time": 224.45, "end time": 243.17, "split": "test", "id": 11884}, {"category": 0, "url": "https://www.youtube.com/watch?v=fGFNmEOntFA", "video_id": "video10342", "start time": 29.08, "end time": 44.22, "split": "test", "id": 10342}, {"category": 9, "url": "https://www.youtube.com/watch?v=71pIvXrk0Lg", "video_id": "video12924", "start time": 63.41, "end time": 74.08, "split": "test", "id": 12924}, {"category": 13, "url": "https://www.youtube.com/watch?v=rOX6nibf1Wk", "video_id": "video10743", "start time": 102.25, "end time": 119.87, "split": "test", "id": 10743}, {"category": 17, "url": "https://www.youtube.com/watch?v=JSRJBsujpj4", "video_id": "video11225", "start time": 40.55, "end time": 59.55, "split": "test", "id": 11225}, {"category": 17, "url": "https://www.youtube.com/watch?v=e17xXSIJl1k", "video_id": "video12162", "start time": 829.69, "end time": 855.96, "split": "test", "id": 12162}, {"category": 17, "url": "https://www.youtube.com/watch?v=3vTJ6fSeUuA", "video_id": "video10906", "start time": 3.32, "end time": 28.51, "split": "test", "id": 10906}, {"category": 6, "url": "https://www.youtube.com/watch?v=dLpvD2qGlks", "video_id": "video12292", "start time": 184.45, "end time": 206.33, "split": "test", "id": 12292}, {"category": 13, "url": "https://www.youtube.com/watch?v=d8EBuJZuY7c", "video_id": "video10984", "start time": 213.66, "end time": 228.61, "split": "test", "id": 10984}, {"category": 9, "url": "https://www.youtube.com/watch?v=b8yq7SIwehM", "video_id": "video10980", "start time": 437.02, "end time": 463.71, "split": "test", "id": 10980}, {"category": 4, "url": "https://www.youtube.com/watch?v=3hijzP1zzLI", "video_id": "video12122", "start time": 564.05, "end time": 580.53, "split": "test", "id": 12122}, {"category": 17, "url": "https://www.youtube.com/watch?v=8Aj2Ka_e10M", "video_id": "video11027", "start time": 121.64, "end time": 134.58, "split": "test", "id": 11027}, {"category": 2, "url": "https://www.youtube.com/watch?v=9r1SwdhqS8E", "video_id": "video10396", "start time": 38.55, "end time": 48.83, "split": "test", "id": 10396}, {"category": 7, "url": "https://www.youtube.com/watch?v=hhxPOtoh1Ss", "video_id": "video12092", "start time": 11.09, "end time": 29.61, "split": "test", "id": 12092}, {"category": 11, "url": "https://www.youtube.com/watch?v=N6gwCgDldJw", "video_id": "video10600", "start time": 1.42, "end time": 14.66, "split": "test", "id": 10600}, {"category": 18, "url": "https://www.youtube.com/watch?v=1fmUl0cVs0o", "video_id": "video12004", "start time": 68.48, "end time": 79.09, "split": "test", "id": 12004}, {"category": 0, "url": "https://www.youtube.com/watch?v=qGfavh5XZ6Y", "video_id": "video10725", "start time": 0.0, "end time": 13.03, "split": "test", "id": 10725}, {"category": 3, "url": "https://www.youtube.com/watch?v=DsPZRfGS3TA", "video_id": "video11435", "start time": 17.21, "end time": 29.25, "split": "test", "id": 11435}, {"category": 13, "url": "https://www.youtube.com/watch?v=Qa46VRrzoV4", "video_id": "video10387", "start time": 97.08, "end time": 109.22, "split": "test", "id": 10387}, {"category": 16, "url": "https://www.youtube.com/watch?v=L3i8iEFBok0", "video_id": "video12864", "start time": 11.98, "end time": 36.21, "split": "test", "id": 12864}, {"category": 10, "url": "https://www.youtube.com/watch?v=JbwvBe3Zxr4", "video_id": "video11260", "start time": 277.02, "end time": 289.14, "split": "test", "id": 11260}, {"category": 18, "url": "https://www.youtube.com/watch?v=IkrNxOTMVyg", "video_id": "video11774", "start time": 79.73, "end time": 104.49, "split": "test", "id": 11774}, {"category": 4, "url": "https://www.youtube.com/watch?v=gLxgOZpp3vQ", "video_id": "video11339", "start time": 32.21, "end time": 42.85, "split": "test", "id": 11339}, {"category": 7, "url": "https://www.youtube.com/watch?v=JN41xGR2enM", "video_id": "video12157", "start time": 315.36, "end time": 341.43, "split": "test", "id": 12157}, {"category": 15, "url": "https://www.youtube.com/watch?v=r6AcLgl2zVM", "video_id": "video12763", "start time": 69.82, "end time": 97.41, "split": "test", "id": 12763}, {"category": 16, "url": "https://www.youtube.com/watch?v=gP8o-8zeabA", "video_id": "video12714", "start time": 26.29, "end time": 47.53, "split": "test", "id": 12714}, {"category": 18, "url": "https://www.youtube.com/watch?v=60qRpXj5c94", "video_id": "video11336", "start time": 33.81, "end time": 49.71, "split": "test", "id": 11336}, {"category": 3, "url": "https://www.youtube.com/watch?v=EYRobaD4zbc", "video_id": "video12477", "start time": 18.97, "end time": 34.97, "split": "test", "id": 12477}, {"category": 17, "url": "https://www.youtube.com/watch?v=lJMt11qgilA", "video_id": "video11286", "start time": 71.89, "end time": 91.77, "split": "test", "id": 11286}, {"category": 13, "url": "https://www.youtube.com/watch?v=gM0kGTLYw64", "video_id": "video11103", "start time": 73.95, "end time": 96.34, "split": "test", "id": 11103}, {"category": 18, "url": "https://www.youtube.com/watch?v=-n_hU0oIlfA", "video_id": "video12371", "start time": 0.0, "end time": 16.29, "split": "test", "id": 12371}, {"category": 6, "url": "https://www.youtube.com/watch?v=fF_h9fI3dQs", "video_id": "video10792", "start time": 321.4, "end time": 343.86, "split": "test", "id": 10792}, {"category": 2, "url": "https://www.youtube.com/watch?v=n5aY8Xnjcc0", "video_id": "video10924", "start time": 2.55, "end time": 21.3, "split": "test", "id": 10924}, {"category": 13, "url": "https://www.youtube.com/watch?v=jGxOK-bS4NM", "video_id": "video12556", "start time": 27.14, "end time": 37.92, "split": "test", "id": 12556}, {"category": 16, "url": "https://www.youtube.com/watch?v=EDqZ80PBbeQ", "video_id": "video10681", "start time": 208.37, "end time": 231.97, "split": "test", "id": 10681}, {"category": 3, "url": "https://www.youtube.com/watch?v=q1do5aInXHw", "video_id": "video10203", "start time": 279.51, "end time": 298.88, "split": "test", "id": 10203}, {"category": 15, "url": "https://www.youtube.com/watch?v=LNDE_LDWXW0", "video_id": "video10985", "start time": 44.76, "end time": 72.17, "split": "test", "id": 10985}, {"category": 18, "url": "https://www.youtube.com/watch?v=JL4GEbDenik", "video_id": "video12384", "start time": 224.24, "end time": 236.42, "split": "test", "id": 12384}, {"category": 3, "url": "https://www.youtube.com/watch?v=r0sstxte-QY", "video_id": "video10215", "start time": 79.09, "end time": 89.4, "split": "test", "id": 10215}, {"category": 3, "url": "https://www.youtube.com/watch?v=bcudCvg7CL8", "video_id": "video12640", "start time": 110.61, "end time": 127.77, "split": "test", "id": 12640}, {"category": 13, "url": "https://www.youtube.com/watch?v=7bOovTMyCiM", "video_id": "video11810", "start time": 0.0, "end time": 26.11, "split": "test", "id": 11810}, {"category": 10, "url": "https://www.youtube.com/watch?v=EPr9B97XeJA", "video_id": "video10480", "start time": 41.38, "end time": 55.15, "split": "test", "id": 10480}, {"category": 16, "url": "https://www.youtube.com/watch?v=oPhHdNAbkF8", "video_id": "video12179", "start time": 92.38, "end time": 103.96, "split": "test", "id": 12179}, {"category": 3, "url": "https://www.youtube.com/watch?v=OE2Jz_9eA0o", "video_id": "video10375", "start time": 0.0, "end time": 10.82, "split": "test", "id": 10375}, {"category": 16, "url": "https://www.youtube.com/watch?v=ohDFXDXak4Q", "video_id": "video11290", "start time": 196.38, "end time": 209.49, "split": "test", "id": 11290}, {"category": 16, "url": "https://www.youtube.com/watch?v=l3itgZerSPM", "video_id": "video10039", "start time": 90.27, "end time": 107.12, "split": "test", "id": 10039}, {"category": 14, "url": "https://www.youtube.com/watch?v=bi5hMbV7X_o", "video_id": "video12488", "start time": 38.21, "end time": 50.85, "split": "test", "id": 12488}, {"category": 16, "url": "https://www.youtube.com/watch?v=rf_mGLJPnDk", "video_id": "video10758", "start time": 160.65, "end time": 175.93, "split": "test", "id": 10758}, {"category": 3, "url": "https://www.youtube.com/watch?v=hS3lyaj63c8", "video_id": "video11340", "start time": 169.62, "end time": 187.37, "split": "test", "id": 11340}, {"category": 4, "url": "https://www.youtube.com/watch?v=o0G0Eub6YmY", "video_id": "video11821", "start time": 12.13, "end time": 41.73, "split": "test", "id": 11821}, {"category": 18, "url": "https://www.youtube.com/watch?v=DTqYERe02tM", "video_id": "video10520", "start time": 14.55, "end time": 37.21, "split": "test", "id": 10520}, {"category": 3, "url": "https://www.youtube.com/watch?v=ABIkNUWJNlA", "video_id": "video11031", "start time": 122.41, "end time": 147.65, "split": "test", "id": 11031}, {"category": 3, "url": "https://www.youtube.com/watch?v=oxBXiXt_o2E", "video_id": "video10526", "start time": 71.17, "end time": 89.93, "split": "test", "id": 10526}, {"category": 8, "url": "https://www.youtube.com/watch?v=KW9fIKW6v4c", "video_id": "video10904", "start time": 55.77, "end time": 75.12, "split": "test", "id": 10904}, {"category": 4, "url": "https://www.youtube.com/watch?v=kZDt9mQcOcA", "video_id": "video12780", "start time": 152.47, "end time": 173.25, "split": "test", "id": 12780}, {"category": 9, "url": "https://www.youtube.com/watch?v=-R7J9BIjNEw", "video_id": "video12482", "start time": 135.93, "end time": 157.33, "split": "test", "id": 12482}, {"category": 7, "url": "https://www.youtube.com/watch?v=QN4kRC08v38", "video_id": "video12293", "start time": 68.95, "end time": 83.56, "split": "test", "id": 12293}, {"category": 3, "url": "https://www.youtube.com/watch?v=93_KAelChxo", "video_id": "video12138", "start time": 99.94, "end time": 114.45, "split": "test", "id": 12138}, {"category": 13, "url": "https://www.youtube.com/watch?v=4KH4FWhY-YY", "video_id": "video11808", "start time": 10.18, "end time": 20.75, "split": "test", "id": 11808}, {"category": 5, "url": "https://www.youtube.com/watch?v=o69TvQqyGdg", "video_id": "video10423", "start time": 97.98, "end time": 116.46, "split": "test", "id": 10423}, {"category": 5, "url": "https://www.youtube.com/watch?v=c5VefGYYrXM", "video_id": "video10249", "start time": 432.18, "end time": 453.03, "split": "test", "id": 10249}, {"category": 9, "url": "https://www.youtube.com/watch?v=1i99apYO7n8", "video_id": "video11726", "start time": 82.96, "end time": 95.68, "split": "test", "id": 11726}, {"category": 8, "url": "https://www.youtube.com/watch?v=LPXsiL4EI9Q", "video_id": "video12308", "start time": 190.91, "end time": 201.11, "split": "test", "id": 12308}, {"category": 17, "url": "https://www.youtube.com/watch?v=BIeuEZxDFdQ", "video_id": "video10420", "start time": 181.55, "end time": 192.17, "split": "test", "id": 10420}, {"category": 12, "url": "https://www.youtube.com/watch?v=GLSPub4ydiM", "video_id": "video10761", "start time": 65.78, "end time": 84.53, "split": "test", "id": 10761}, {"category": 7, "url": "https://www.youtube.com/watch?v=2bH0OXsmsbQ", "video_id": "video12932", "start time": 67.33, "end time": 79.45, "split": "test", "id": 12932}, {"category": 4, "url": "https://www.youtube.com/watch?v=JIdMQ4n7LDc", "video_id": "video10892", "start time": 4.75, "end time": 21.81, "split": "test", "id": 10892}, {"category": 18, "url": "https://www.youtube.com/watch?v=JbM5884kdNA", "video_id": "video10163", "start time": 89.27, "end time": 99.98, "split": "test", "id": 10163}, {"category": 18, "url": "https://www.youtube.com/watch?v=GKSMnBZT6jg", "video_id": "video10565", "start time": 145.75, "end time": 157.75, "split": "test", "id": 10565}, {"category": 9, "url": "https://www.youtube.com/watch?v=OvmRcHB2XBU", "video_id": "video11662", "start time": 23.25, "end time": 42.61, "split": "test", "id": 11662}, {"category": 6, "url": "https://www.youtube.com/watch?v=QNOs9Ngabm4", "video_id": "video11060", "start time": 259.41, "end time": 278.28, "split": "test", "id": 11060}, {"category": 0, "url": "https://www.youtube.com/watch?v=nPvuNsRccVw", "video_id": "video11458", "start time": 83.36, "end time": 95.11, "split": "test", "id": 11458}, {"category": 17, "url": "https://www.youtube.com/watch?v=KQqwKKtORFc", "video_id": "video10082", "start time": 197.53, "end time": 208.49, "split": "test", "id": 10082}, {"category": 5, "url": "https://www.youtube.com/watch?v=IIlFd4ughik", "video_id": "video12025", "start time": 118.8, "end time": 132.38, "split": "test", "id": 12025}, {"category": 11, "url": "https://www.youtube.com/watch?v=rs7vlE74BPc", "video_id": "video11372", "start time": 159.51, "end time": 173.82, "split": "test", "id": 11372}, {"category": 8, "url": "https://www.youtube.com/watch?v=Ih-PTO6Ae-0", "video_id": "video11994", "start time": 68.95, "end time": 87.2, "split": "test", "id": 11994}, {"category": 13, "url": "https://www.youtube.com/watch?v=k5xnubhIOec", "video_id": "video10433", "start time": 79.89, "end time": 98.38, "split": "test", "id": 10433}, {"category": 4, "url": "https://www.youtube.com/watch?v=OpSMw9foMsA", "video_id": "video12083", "start time": 40.45, "end time": 53.93, "split": "test", "id": 12083}, {"category": 13, "url": "https://www.youtube.com/watch?v=Mk5TM4FLPKA", "video_id": "video11134", "start time": 470.98, "end time": 491.31, "split": "test", "id": 11134}, {"category": 2, "url": "https://www.youtube.com/watch?v=oaenSYvsMFQ", "video_id": "video10012", "start time": 8.09, "end time": 18.97, "split": "test", "id": 10012}, {"category": 3, "url": "https://www.youtube.com/watch?v=NEA65LkxHHE", "video_id": "video12012", "start time": 305.97, "end time": 319.25, "split": "test", "id": 12012}, {"category": 0, "url": "https://www.youtube.com/watch?v=AIXUgtNC4Kc", "video_id": "video10419", "start time": 217.85, "end time": 228.17, "split": "test", "id": 10419}, {"category": 18, "url": "https://www.youtube.com/watch?v=kzia_HzhRPQ", "video_id": "video12300", "start time": 575.09, "end time": 587.13, "split": "test", "id": 12300}, {"category": 13, "url": "https://www.youtube.com/watch?v=OMKH8Pyln2A", "video_id": "video12195", "start time": 189.44, "end time": 204.55, "split": "test", "id": 12195}, {"category": 7, "url": "https://www.youtube.com/watch?v=84cdtTOQ080", "video_id": "video11996", "start time": 169.68, "end time": 180.49, "split": "test", "id": 11996}, {"category": 17, "url": "https://www.youtube.com/watch?v=bsBrAkeaPJI", "video_id": "video10406", "start time": 218.08, "end time": 231.88, "split": "test", "id": 10406}, {"category": 5, "url": "https://www.youtube.com/watch?v=3ez10ADR_gM", "video_id": "video10148", "start time": 388.31, "end time": 403.87, "split": "test", "id": 10148}, {"category": 9, "url": "https://www.youtube.com/watch?v=2a802IdDV3g", "video_id": "video11105", "start time": 107.85, "end time": 132.95, "split": "test", "id": 11105}, {"category": 11, "url": "https://www.youtube.com/watch?v=kBVWWHC70Jo", "video_id": "video11802", "start time": 277.96, "end time": 294.34, "split": "test", "id": 11802}, {"category": 4, "url": "https://www.youtube.com/watch?v=4nHwMKETiV4", "video_id": "video12704", "start time": 242.2, "end time": 257.0, "split": "test", "id": 12704}, {"category": 4, "url": "https://www.youtube.com/watch?v=fYt2ImTyY5k", "video_id": "video11585", "start time": 90.67, "end time": 101.35, "split": "test", "id": 11585}, {"category": 8, "url": "https://www.youtube.com/watch?v=0qnOkXF2MzI", "video_id": "video12150", "start time": 142.22, "end time": 155.07, "split": "test", "id": 12150}, {"category": 9, "url": "https://www.youtube.com/watch?v=oXsLLK6mBAc", "video_id": "video10853", "start time": 20.3, "end time": 44.16, "split": "test", "id": 10853}, {"category": 8, "url": "https://www.youtube.com/watch?v=rlBc1T9eDWg", "video_id": "video11190", "start time": 246.39, "end time": 257.24, "split": "test", "id": 11190}, {"category": 6, "url": "https://www.youtube.com/watch?v=l0koZsVzxG4", "video_id": "video11888", "start time": 304.25, "end time": 331.65, "split": "test", "id": 11888}, {"category": 2, "url": "https://www.youtube.com/watch?v=MQLgnFTgQ5o", "video_id": "video10783", "start time": 167.58, "end time": 192.17, "split": "test", "id": 10783}, {"category": 12, "url": "https://www.youtube.com/watch?v=kUyuKqIfMN0", "video_id": "video11052", "start time": 39.62, "end time": 57.91, "split": "test", "id": 11052}, {"category": 3, "url": "https://www.youtube.com/watch?v=nm5wQvAuaVE", "video_id": "video10886", "start time": 93.29, "end time": 103.89, "split": "test", "id": 10886}, {"category": 15, "url": "https://www.youtube.com/watch?v=-8WIzEHxKAA", "video_id": "video11529", "start time": 58.36, "end time": 71.29, "split": "test", "id": 11529}, {"category": 18, "url": "https://www.youtube.com/watch?v=av6729Mm-Xw", "video_id": "video11572", "start time": 204.77, "end time": 223.33, "split": "test", "id": 11572}, {"category": 13, "url": "https://www.youtube.com/watch?v=RKBcs9tNWg8", "video_id": "video10392", "start time": 28.75, "end time": 48.35, "split": "test", "id": 10392}, {"category": 11, "url": "https://www.youtube.com/watch?v=eP4xEmAZ8wY", "video_id": "video12534", "start time": 117.37, "end time": 127.81, "split": "test", "id": 12534}, {"category": 17, "url": "https://www.youtube.com/watch?v=OOkL5d8t1sM", "video_id": "video10657", "start time": 27.78, "end time": 39.79, "split": "test", "id": 10657}, {"category": 7, "url": "https://www.youtube.com/watch?v=KbXpFLTv5Uc", "video_id": "video12235", "start time": 794.21, "end time": 817.81, "split": "test", "id": 12235}, {"category": 13, "url": "https://www.youtube.com/watch?v=AeV76hKvZdI", "video_id": "video10752", "start time": 11.13, "end time": 22.74, "split": "test", "id": 10752}, {"category": 16, "url": "https://www.youtube.com/watch?v=74aT_-lquQ4", "video_id": "video12885", "start time": 67.01, "end time": 85.5, "split": "test", "id": 12885}, {"category": 11, "url": "https://www.youtube.com/watch?v=jyv1kCZbGOk", "video_id": "video11292", "start time": 16.13, "end time": 31.59, "split": "test", "id": 11292}, {"category": 7, "url": "https://www.youtube.com/watch?v=4iUb29kG-oQ", "video_id": "video11048", "start time": 26.21, "end time": 47.26, "split": "test", "id": 11048}, {"category": 7, "url": "https://www.youtube.com/watch?v=5b0nd9gv1_I", "video_id": "video11611", "start time": 23.82, "end time": 38.0, "split": "test", "id": 11611}, {"category": 13, "url": "https://www.youtube.com/watch?v=7WZPysRdP8A", "video_id": "video10880", "start time": 0.0, "end time": 21.98, "split": "test", "id": 10880}, {"category": 16, "url": "https://www.youtube.com/watch?v=M2EwQDu-OGs", "video_id": "video10549", "start time": 212.13, "end time": 223.69, "split": "test", "id": 10549}, {"category": 18, "url": "https://www.youtube.com/watch?v=aFTIBnBqZ_k", "video_id": "video10881", "start time": 12.06, "end time": 24.07, "split": "test", "id": 10881}, {"category": 18, "url": "https://www.youtube.com/watch?v=OXDh36vIapI", "video_id": "video12622", "start time": 20.33, "end time": 43.73, "split": "test", "id": 12622}, {"category": 17, "url": "https://www.youtube.com/watch?v=6_bdRsWHMW0", "video_id": "video10121", "start time": 38.22, "end time": 55.54, "split": "test", "id": 10121}, {"category": 3, "url": "https://www.youtube.com/watch?v=RGOBxwk6lCQ", "video_id": "video12592", "start time": 377.69, "end time": 398.05, "split": "test", "id": 12592}, {"category": 9, "url": "https://www.youtube.com/watch?v=I_UoNrgPclw", "video_id": "video10668", "start time": 130.71, "end time": 148.55, "split": "test", "id": 10668}, {"category": 16, "url": "https://www.youtube.com/watch?v=AZr3HkxigSE", "video_id": "video11728", "start time": 55.81, "end time": 71.65, "split": "test", "id": 11728}, {"category": 13, "url": "https://www.youtube.com/watch?v=ozgcKw4MyvY", "video_id": "video10115", "start time": 15.97, "end time": 29.61, "split": "test", "id": 10115}, {"category": 13, "url": "https://www.youtube.com/watch?v=RSlh7V32nac", "video_id": "video11943", "start time": 0.0, "end time": 17.63, "split": "test", "id": 11943}, {"category": 16, "url": "https://www.youtube.com/watch?v=NluOpBC4ju0", "video_id": "video10438", "start time": 19.57, "end time": 46.77, "split": "test", "id": 10438}, {"category": 19, "url": "https://www.youtube.com/watch?v=azttKmT0rVc", "video_id": "video12184", "start time": 38.96, "end time": 53.96, "split": "test", "id": 12184}, {"category": 16, "url": "https://www.youtube.com/watch?v=KQc_tsc-o44", "video_id": "video11475", "start time": 211.53, "end time": 223.64, "split": "test", "id": 11475}, {"category": 3, "url": "https://www.youtube.com/watch?v=--RrD41ozMs", "video_id": "video12329", "start time": 4.68, "end time": 16.35, "split": "test", "id": 12329}, {"category": 12, "url": "https://www.youtube.com/watch?v=esvKp5H1Pws", "video_id": "video12573", "start time": 111.46, "end time": 124.81, "split": "test", "id": 12573}, {"category": 3, "url": "https://www.youtube.com/watch?v=8vU-m7HnpCg", "video_id": "video12349", "start time": 8.65, "end time": 22.05, "split": "test", "id": 12349}, {"category": 1, "url": "https://www.youtube.com/watch?v=GF_Di7TiG2o", "video_id": "video11561", "start time": 241.77, "end time": 254.05, "split": "test", "id": 11561}, {"category": 8, "url": "https://www.youtube.com/watch?v=A81hamnBGcw", "video_id": "video12740", "start time": 97.81, "end time": 111.93, "split": "test", "id": 12740}, {"category": 18, "url": "https://www.youtube.com/watch?v=iSjB2MYb0D4", "video_id": "video12385", "start time": 102.25, "end time": 122.38, "split": "test", "id": 12385}, {"category": 5, "url": "https://www.youtube.com/watch?v=P4UmUcmLbRk", "video_id": "video11484", "start time": 87.64, "end time": 98.15, "split": "test", "id": 11484}, {"category": 0, "url": "https://www.youtube.com/watch?v=0LdF9-7lBk8", "video_id": "video11608", "start time": 49.37, "end time": 62.13, "split": "test", "id": 11608}, {"category": 7, "url": "https://www.youtube.com/watch?v=rzQuqux9iEQ", "video_id": "video12320", "start time": 107.45, "end time": 125.37, "split": "test", "id": 12320}, {"category": 11, "url": "https://www.youtube.com/watch?v=AB8LBV5yef8", "video_id": "video10557", "start time": 256.31, "end time": 267.45, "split": "test", "id": 10557}, {"category": 15, "url": "https://www.youtube.com/watch?v=-8WIzEHxKAA", "video_id": "video11793", "start time": 13.31, "end time": 24.7, "split": "test", "id": 11793}, {"category": 4, "url": "https://www.youtube.com/watch?v=jSfrP5mDqew", "video_id": "video12641", "start time": 390.73, "end time": 400.85, "split": "test", "id": 12641}, {"category": 4, "url": "https://www.youtube.com/watch?v=8iqb5b2lGdE", "video_id": "video12448", "start time": 60.05, "end time": 71.13, "split": "test", "id": 12448}, {"category": 11, "url": "https://www.youtube.com/watch?v=at_4rJAziPw", "video_id": "video12861", "start time": 30.21, "end time": 43.56, "split": "test", "id": 12861}, {"category": 0, "url": "https://www.youtube.com/watch?v=OHXjxWaQs9o", "video_id": "video10080", "start time": 125.97, "end time": 137.85, "split": "test", "id": 10080}, {"category": 3, "url": "https://www.youtube.com/watch?v=nGl1X_3Vd1U", "video_id": "video10707", "start time": 72.55, "end time": 102.48, "split": "test", "id": 10707}, {"category": 11, "url": "https://www.youtube.com/watch?v=mK4FFvfwFVc", "video_id": "video11745", "start time": 85.05, "end time": 96.85, "split": "test", "id": 11745}, {"category": 16, "url": "https://www.youtube.com/watch?v=7emvnX9RT1A", "video_id": "video10374", "start time": 21.14, "end time": 34.55, "split": "test", "id": 10374}, {"category": 14, "url": "https://www.youtube.com/watch?v=EWu5pIAEfrw", "video_id": "video10596", "start time": 2.77, "end time": 27.05, "split": "test", "id": 10596}, {"category": 12, "url": "https://www.youtube.com/watch?v=qxrWn98cqdw", "video_id": "video12451", "start time": 25.41, "end time": 46.25, "split": "test", "id": 12451}, {"category": 16, "url": "https://www.youtube.com/watch?v=5Ceg1QN56p0", "video_id": "video12735", "start time": 428.34, "end time": 454.74, "split": "test", "id": 12735}, {"category": 19, "url": "https://www.youtube.com/watch?v=2LHv1FPd1Ec", "video_id": "video12151", "start time": 40.05, "end time": 68.35, "split": "test", "id": 12151}, {"category": 10, "url": "https://www.youtube.com/watch?v=HCter5SbzzM", "video_id": "video12517", "start time": 0.0, "end time": 17.06, "split": "test", "id": 12517}, {"category": 18, "url": "https://www.youtube.com/watch?v=9NDSmWiCHAo", "video_id": "video12181", "start time": 45.43, "end time": 71.19, "split": "test", "id": 12181}, {"category": 11, "url": "https://www.youtube.com/watch?v=KGz0H7D4fmM", "video_id": "video10227", "start time": 153.73, "end time": 166.38, "split": "test", "id": 10227}, {"category": 2, "url": "https://www.youtube.com/watch?v=RFe6PCQiAWA", "video_id": "video11812", "start time": 213.39, "end time": 228.51, "split": "test", "id": 11812}, {"category": 4, "url": "https://www.youtube.com/watch?v=9CaBhyKrYOE", "video_id": "video12852", "start time": 102.4, "end time": 113.09, "split": "test", "id": 12852}, {"category": 3, "url": "https://www.youtube.com/watch?v=0L4xhL47fjc", "video_id": "video11442", "start time": 85.61, "end time": 102.97, "split": "test", "id": 11442}, {"category": 16, "url": "https://www.youtube.com/watch?v=KHGydOdJNKY", "video_id": "video11686", "start time": 55.3, "end time": 71.32, "split": "test", "id": 11686}, {"category": 1, "url": "https://www.youtube.com/watch?v=6puL3WK1a5o", "video_id": "video10108", "start time": 2.33, "end time": 17.17, "split": "test", "id": 10108}, {"category": 11, "url": "https://www.youtube.com/watch?v=6UnKhBdbwv8", "video_id": "video11122", "start time": 86.17, "end time": 100.13, "split": "test", "id": 11122}, {"category": 12, "url": "https://www.youtube.com/watch?v=7cFl3PS-3n8", "video_id": "video12730", "start time": 106.77, "end time": 120.17, "split": "test", "id": 12730}, {"category": 13, "url": "https://www.youtube.com/watch?v=4y0JFiAAhjg", "video_id": "video11878", "start time": 126.97, "end time": 147.33, "split": "test", "id": 11878}, {"category": 18, "url": "https://www.youtube.com/watch?v=8a3wqHeJEig", "video_id": "video12902", "start time": 306.65, "end time": 322.34, "split": "test", "id": 12902}, {"category": 2, "url": "https://www.youtube.com/watch?v=P8vkS1UysUg", "video_id": "video10989", "start time": 95.88, "end time": 108.39, "split": "test", "id": 10989}, {"category": 3, "url": "https://www.youtube.com/watch?v=91sfUummGcA", "video_id": "video11414", "start time": 58.54, "end time": 72.55, "split": "test", "id": 11414}, {"category": 6, "url": "https://www.youtube.com/watch?v=iMz6B9-SpJY", "video_id": "video12751", "start time": 9.89, "end time": 26.95, "split": "test", "id": 12751}, {"category": 10, "url": "https://www.youtube.com/watch?v=D8A2-W17AME", "video_id": "video11110", "start time": 510.02, "end time": 524.24, "split": "test", "id": 11110}, {"category": 7, "url": "https://www.youtube.com/watch?v=FbgJkQVdZQU", "video_id": "video10991", "start time": 5.14, "end time": 26.57, "split": "test", "id": 10991}, {"category": 4, "url": "https://www.youtube.com/watch?v=A8-yqnJDvBo", "video_id": "video10833", "start time": 66.89, "end time": 91.57, "split": "test", "id": 10833}, {"category": 16, "url": "https://www.youtube.com/watch?v=HfMZUUZ7zng", "video_id": "video12109", "start time": 301.08, "end time": 320.2, "split": "test", "id": 12109}, {"category": 17, "url": "https://www.youtube.com/watch?v=KSk4oS20auQ", "video_id": "video11983", "start time": 443.59, "end time": 458.84, "split": "test", "id": 11983}, {"category": 7, "url": "https://www.youtube.com/watch?v=OJOrOLdDIZ8", "video_id": "video11451", "start time": 147.01, "end time": 158.81, "split": "test", "id": 11451}, {"category": 9, "url": "https://www.youtube.com/watch?v=3B9oMGWWBFQ", "video_id": "video11896", "start time": 96.77, "end time": 108.53, "split": "test", "id": 11896}, {"category": 7, "url": "https://www.youtube.com/watch?v=h8m69o_1PoQ", "video_id": "video12458", "start time": 129.13, "end time": 140.31, "split": "test", "id": 12458}, {"category": 3, "url": "https://www.youtube.com/watch?v=8ziu3X_BU1k", "video_id": "video11152", "start time": 1264.17, "end time": 1282.21, "split": "test", "id": 11152}, {"category": 0, "url": "https://www.youtube.com/watch?v=1kYwDK-K7nE", "video_id": "video12167", "start time": 51.65, "end time": 65.25, "split": "test", "id": 12167}, {"category": 12, "url": "https://www.youtube.com/watch?v=qOlBH4B8Vv4", "video_id": "video10169", "start time": 43.13, "end time": 63.53, "split": "test", "id": 10169}, {"category": 6, "url": "https://www.youtube.com/watch?v=9OUjjNrglOQ", "video_id": "video12102", "start time": 22.34, "end time": 33.51, "split": "test", "id": 12102}, {"category": 5, "url": "https://www.youtube.com/watch?v=4E1JiDFxFGk", "video_id": "video11440", "start time": 100.48, "end time": 110.82, "split": "test", "id": 11440}, {"category": 5, "url": "https://www.youtube.com/watch?v=00jbG_cfGuQ", "video_id": "video12055", "start time": 54.48, "end time": 69.58, "split": "test", "id": 12055}, {"category": 10, "url": "https://www.youtube.com/watch?v=pvCj6NB6lcI", "video_id": "video11768", "start time": 294.81, "end time": 316.83, "split": "test", "id": 11768}, {"category": 5, "url": "https://www.youtube.com/watch?v=RNftCCwAol0", "video_id": "video10291", "start time": 403.83, "end time": 433.31, "split": "test", "id": 10291}, {"category": 8, "url": "https://www.youtube.com/watch?v=dvs0E5Oep8Y", "video_id": "video12165", "start time": 20.76, "end time": 32.76, "split": "test", "id": 12165}, {"category": 11, "url": "https://www.youtube.com/watch?v=7Upfx8vwids", "video_id": "video11416", "start time": 16.97, "end time": 27.37, "split": "test", "id": 11416}, {"category": 0, "url": "https://www.youtube.com/watch?v=0habxsuXW4g", "video_id": "video11205", "start time": 75.71, "end time": 92.26, "split": "test", "id": 11205}, {"category": 3, "url": "https://www.youtube.com/watch?v=0aUXsgTClx0", "video_id": "video11658", "start time": 17.19, "end time": 36.96, "split": "test", "id": 11658}, {"category": 4, "url": "https://www.youtube.com/watch?v=3gCCorGwfyA", "video_id": "video10356", "start time": 9.06, "end time": 19.23, "split": "test", "id": 10356}, {"category": 3, "url": "https://www.youtube.com/watch?v=Pl2-ioxH_wA", "video_id": "video10221", "start time": 126.88, "end time": 153.75, "split": "test", "id": 10221}, {"category": 16, "url": "https://www.youtube.com/watch?v=Hljj7VQHDG4", "video_id": "video12547", "start time": 65.49, "end time": 87.49, "split": "test", "id": 12547}, {"category": 9, "url": "https://www.youtube.com/watch?v=m6GRDwpuoA8", "video_id": "video10951", "start time": 177.02, "end time": 199.38, "split": "test", "id": 10951}, {"category": 12, "url": "https://www.youtube.com/watch?v=-GgDZKGA89I", "video_id": "video10078", "start time": 455.97, "end time": 473.59, "split": "test", "id": 10078}, {"category": 3, "url": "https://www.youtube.com/watch?v=d9CYK-5ZxJ8", "video_id": "video11926", "start time": 140.69, "end time": 155.87, "split": "test", "id": 11926}, {"category": 6, "url": "https://www.youtube.com/watch?v=7y1xJAVZxXg", "video_id": "video12961", "start time": 4.18, "end time": 31.08, "split": "test", "id": 12961}, {"category": 16, "url": "https://www.youtube.com/watch?v=SadwkSLeigU", "video_id": "video11261", "start time": 284.16, "end time": 300.06, "split": "test", "id": 11261}, {"category": 9, "url": "https://www.youtube.com/watch?v=gNREBUzmn98", "video_id": "video11742", "start time": 300.29, "end time": 322.29, "split": "test", "id": 11742}, {"category": 16, "url": "https://www.youtube.com/watch?v=6_XgMFFQS8Q", "video_id": "video12250", "start time": 12.49, "end time": 25.44, "split": "test", "id": 12250}, {"category": 16, "url": "https://www.youtube.com/watch?v=AjziYjd2gpc", "video_id": "video11498", "start time": 70.62, "end time": 85.27, "split": "test", "id": 11498}, {"category": 11, "url": "https://www.youtube.com/watch?v=31HOMUOmF50", "video_id": "video11395", "start time": 59.02, "end time": 78.38, "split": "test", "id": 11395}, {"category": 4, "url": "https://www.youtube.com/watch?v=nwJLodaMajI", "video_id": "video10493", "start time": 88.47, "end time": 115.76, "split": "test", "id": 10493}, {"category": 18, "url": "https://www.youtube.com/watch?v=Fp0cscE48Tg", "video_id": "video12169", "start time": 295.93, "end time": 322.69, "split": "test", "id": 12169}, {"category": 3, "url": "https://www.youtube.com/watch?v=9Vsrs__-VYo", "video_id": "video12066", "start time": 111.74, "end time": 122.88, "split": "test", "id": 12066}, {"category": 7, "url": "https://www.youtube.com/watch?v=S7t4r2G2XCE", "video_id": "video11236", "start time": 10.89, "end time": 31.13, "split": "test", "id": 11236}, {"category": 4, "url": "https://www.youtube.com/watch?v=4nHwMKETiV4", "video_id": "video10225", "start time": 186.57, "end time": 212.34, "split": "test", "id": 10225}, {"category": 3, "url": "https://www.youtube.com/watch?v=2X_ZKjRnneM", "video_id": "video12676", "start time": 773.79, "end time": 793.31, "split": "test", "id": 12676}, {"category": 7, "url": "https://www.youtube.com/watch?v=OJI2XrpTJo4", "video_id": "video11872", "start time": 20.37, "end time": 33.33, "split": "test", "id": 11872}, {"category": 0, "url": "https://www.youtube.com/watch?v=7NrQei36fJk", "video_id": "video10429", "start time": 17.97, "end time": 45.09, "split": "test", "id": 10429}, {"category": 7, "url": "https://www.youtube.com/watch?v=qacgIJiDWUg", "video_id": "video10468", "start time": 3.53, "end time": 19.41, "split": "test", "id": 10468}, {"category": 13, "url": "https://www.youtube.com/watch?v=bq3Ry4X-TiA", "video_id": "video11935", "start time": 49.77, "end time": 71.89, "split": "test", "id": 11935}, {"category": 2, "url": "https://www.youtube.com/watch?v=h9Nuz_mFU8A", "video_id": "video10030", "start time": 321.5, "end time": 336.28, "split": "test", "id": 10030}, {"category": 3, "url": "https://www.youtube.com/watch?v=OpR--MpTqn4", "video_id": "video12248", "start time": 308.17, "end time": 335.55, "split": "test", "id": 12248}, {"category": 14, "url": "https://www.youtube.com/watch?v=eD686-RXQWQ", "video_id": "video10239", "start time": 125.59, "end time": 137.64, "split": "test", "id": 10239}, {"category": 14, "url": "https://www.youtube.com/watch?v=NmPdUaYuTZA", "video_id": "video12281", "start time": 935.98, "end time": 950.0, "split": "test", "id": 12281}, {"category": 4, "url": "https://www.youtube.com/watch?v=q1rTRCGcSjw", "video_id": "video10191", "start time": 111.86, "end time": 130.31, "split": "test", "id": 10191}, {"category": 8, "url": "https://www.youtube.com/watch?v=MTsHbaW15Q4", "video_id": "video11258", "start time": 7.41, "end time": 32.28, "split": "test", "id": 11258}, {"category": 1, "url": "https://www.youtube.com/watch?v=9NlBev23fns", "video_id": "video10658", "start time": 2.58, "end time": 25.65, "split": "test", "id": 10658}, {"category": 11, "url": "https://www.youtube.com/watch?v=nC6Nwwn1ddI", "video_id": "video11408", "start time": 340.65, "end time": 361.81, "split": "test", "id": 11408}, {"category": 10, "url": "https://www.youtube.com/watch?v=4w0V_yx4s60", "video_id": "video10501", "start time": 222.74, "end time": 247.36, "split": "test", "id": 10501}, {"category": 2, "url": "https://www.youtube.com/watch?v=gU34KOtBuC4", "video_id": "video11701", "start time": 130.81, "end time": 152.53, "split": "test", "id": 11701}, {"category": 13, "url": "https://www.youtube.com/watch?v=QGBMQUuQgdg", "video_id": "video12322", "start time": 0.0, "end time": 11.37, "split": "test", "id": 12322}, {"category": 7, "url": "https://www.youtube.com/watch?v=aWYKRAaMG4U", "video_id": "video12112", "start time": 12.64, "end time": 29.66, "split": "test", "id": 12112}, {"category": 9, "url": "https://www.youtube.com/watch?v=4GmHAxRAusI", "video_id": "video11739", "start time": 45.09, "end time": 57.54, "split": "test", "id": 11739}, {"category": 10, "url": "https://www.youtube.com/watch?v=QpJtLqlSjBI", "video_id": "video10000", "start time": 94.58, "end time": 106.48, "split": "test", "id": 10000}, {"category": 17, "url": "https://www.youtube.com/watch?v=rBong35pA48", "video_id": "video12712", "start time": 119.69, "end time": 144.77, "split": "test", "id": 12712}, {"category": 2, "url": "https://www.youtube.com/watch?v=F8q7da_pph4", "video_id": "video10266", "start time": 25.54, "end time": 43.29, "split": "test", "id": 10266}, {"category": 13, "url": "https://www.youtube.com/watch?v=q5HvE3jOLYA", "video_id": "video12812", "start time": 137.58, "end time": 158.81, "split": "test", "id": 12812}, {"category": 9, "url": "https://www.youtube.com/watch?v=iw1aT5c1Lus", "video_id": "video10182", "start time": 163.13, "end time": 173.33, "split": "test", "id": 10182}, {"category": 7, "url": "https://www.youtube.com/watch?v=MUFdYQxFARs", "video_id": "video11925", "start time": 94.37, "end time": 106.33, "split": "test", "id": 11925}, {"category": 16, "url": "https://www.youtube.com/watch?v=jwkccvsj6fc", "video_id": "video11265", "start time": 1.38, "end time": 28.01, "split": "test", "id": 11265}, {"category": 17, "url": "https://www.youtube.com/watch?v=hkPPn5ycsnc", "video_id": "video11315", "start time": 180.59, "end time": 192.04, "split": "test", "id": 11315}, {"category": 12, "url": "https://www.youtube.com/watch?v=MbPnc_3823A", "video_id": "video12929", "start time": 36.13, "end time": 50.56, "split": "test", "id": 12929}, {"category": 16, "url": "https://www.youtube.com/watch?v=31iQT8D8CIQ", "video_id": "video10042", "start time": 109.05, "end time": 135.77, "split": "test", "id": 10042}, {"category": 17, "url": "https://www.youtube.com/watch?v=CcI2F8UISlA", "video_id": "video10582", "start time": 94.04, "end time": 114.6, "split": "test", "id": 10582}, {"category": 7, "url": "https://www.youtube.com/watch?v=O6ebLWzQx5s", "video_id": "video12145", "start time": 12.49, "end time": 23.69, "split": "test", "id": 12145}, {"category": 9, "url": "https://www.youtube.com/watch?v=PsrSbVXJjmU", "video_id": "video10597", "start time": 298.26, "end time": 319.63, "split": "test", "id": 10597}, {"category": 15, "url": "https://www.youtube.com/watch?v=3td_funGfmI", "video_id": "video12019", "start time": 700.21, "end time": 715.49, "split": "test", "id": 12019}, {"category": 9, "url": "https://www.youtube.com/watch?v=JWiDfkk76xU", "video_id": "video10193", "start time": 346.86, "end time": 358.44, "split": "test", "id": 10193}, {"category": 13, "url": "https://www.youtube.com/watch?v=7wCcw158Zls", "video_id": "video11531", "start time": 70.92, "end time": 81.13, "split": "test", "id": 11531}, {"category": 16, "url": "https://www.youtube.com/watch?v=jayOUK3bid4", "video_id": "video10677", "start time": 99.35, "end time": 114.06, "split": "test", "id": 10677}, {"category": 12, "url": "https://www.youtube.com/watch?v=3Aqjbuy-8Gs", "video_id": "video12402", "start time": 187.48, "end time": 197.88, "split": "test", "id": 12402}, {"category": 13, "url": "https://www.youtube.com/watch?v=G23qZzxPrJA", "video_id": "video11304", "start time": 19.23, "end time": 30.37, "split": "test", "id": 11304}, {"category": 9, "url": "https://www.youtube.com/watch?v=CxflDjfBdoI", "video_id": "video10710", "start time": 413.61, "end time": 433.25, "split": "test", "id": 10710}, {"category": 7, "url": "https://www.youtube.com/watch?v=7b0gRzJbe8s", "video_id": "video10416", "start time": 11.53, "end time": 21.6, "split": "test", "id": 10416}, {"category": 7, "url": "https://www.youtube.com/watch?v=5WI6MHH7Y7I", "video_id": "video12892", "start time": 19.47, "end time": 42.59, "split": "test", "id": 12892}, {"category": 6, "url": "https://www.youtube.com/watch?v=bq4OnYUJQU8", "video_id": "video10913", "start time": 46.63, "end time": 69.35, "split": "test", "id": 10913}, {"category": 0, "url": "https://www.youtube.com/watch?v=HkxNvd_e4jc", "video_id": "video11515", "start time": 20.7, "end time": 50.16, "split": "test", "id": 11515}, {"category": 7, "url": "https://www.youtube.com/watch?v=8q4X2vDRfRk", "video_id": "video11476", "start time": 56.81, "end time": 70.66, "split": "test", "id": 11476}, {"category": 14, "url": "https://www.youtube.com/watch?v=iaDnv3jQvf8", "video_id": "video10685", "start time": 1139.6, "end time": 1161.17, "split": "test", "id": 10685}, {"category": 10, "url": "https://www.youtube.com/watch?v=4-PD48uGl4o", "video_id": "video10911", "start time": 66.91, "end time": 91.05, "split": "test", "id": 10911}, {"category": 16, "url": "https://www.youtube.com/watch?v=keXB09bvFOQ", "video_id": "video12669", "start time": 151.43, "end time": 170.88, "split": "test", "id": 12669}, {"category": 12, "url": "https://www.youtube.com/watch?v=mH4mjF9ONy8", "video_id": "video10362", "start time": 73.57, "end time": 95.65, "split": "test", "id": 10362}, {"category": 15, "url": "https://www.youtube.com/watch?v=oeF6rFN9org", "video_id": "video10162", "start time": 65.05, "end time": 86.5, "split": "test", "id": 10162}, {"category": 12, "url": "https://www.youtube.com/watch?v=5QBoB1MMi9g", "video_id": "video10655", "start time": 4.25, "end time": 24.51, "split": "test", "id": 10655}, {"category": 18, "url": "https://www.youtube.com/watch?v=RJ4lfjD1rfI", "video_id": "video12485", "start time": 186.33, "end time": 201.89, "split": "test", "id": 12485}, {"category": 9, "url": "https://www.youtube.com/watch?v=0Br0H1vbECo", "video_id": "video12400", "start time": 18.03, "end time": 30.11, "split": "test", "id": 12400}, {"category": 12, "url": "https://www.youtube.com/watch?v=2fA81JC_pPc", "video_id": "video11277", "start time": 70.25, "end time": 94.51, "split": "test", "id": 11277}, {"category": 13, "url": "https://www.youtube.com/watch?v=BM9ted5XiC8", "video_id": "video12088", "start time": 0.0, "end time": 17.85, "split": "test", "id": 12088}, {"category": 2, "url": "https://www.youtube.com/watch?v=N86PVMXi-fw", "video_id": "video10462", "start time": 89.15, "end time": 117.38, "split": "test", "id": 10462}, {"category": 11, "url": "https://www.youtube.com/watch?v=PSYraPvBV70", "video_id": "video11300", "start time": 224.93, "end time": 235.65, "split": "test", "id": 11300}, {"category": 7, "url": "https://www.youtube.com/watch?v=69-VM7IQ-h8", "video_id": "video10577", "start time": 205.99, "end time": 219.4, "split": "test", "id": 10577}, {"category": 3, "url": "https://www.youtube.com/watch?v=mub6yvfskvI", "video_id": "video10257", "start time": 89.37, "end time": 103.41, "split": "test", "id": 10257}, {"category": 0, "url": "https://www.youtube.com/watch?v=DyM5jb2ZABs", "video_id": "video10699", "start time": 135.65, "end time": 151.7, "split": "test", "id": 10699}, {"category": 19, "url": "https://www.youtube.com/watch?v=ofSh9LHCVuQ", "video_id": "video10613", "start time": 52.01, "end time": 65.63, "split": "test", "id": 10613}, {"category": 16, "url": "https://www.youtube.com/watch?v=FMiO4yOoFWs", "video_id": "video12091", "start time": 141.42, "end time": 163.68, "split": "test", "id": 12091}, {"category": 16, "url": "https://www.youtube.com/watch?v=rDXUGkByyQk", "video_id": "video12395", "start time": 62.57, "end time": 72.89, "split": "test", "id": 12395}, {"category": 16, "url": "https://www.youtube.com/watch?v=H2PbP0HPiHE", "video_id": "video12830", "start time": 47.09, "end time": 62.94, "split": "test", "id": 12830}, {"category": 4, "url": "https://www.youtube.com/watch?v=4IZoK7CJpbQ", "video_id": "video12190", "start time": 120.83, "end time": 132.91, "split": "test", "id": 12190}, {"category": 3, "url": "https://www.youtube.com/watch?v=1zcjEph9J30", "video_id": "video11118", "start time": 6.05, "end time": 16.89, "split": "test", "id": 11118}, {"category": 13, "url": "https://www.youtube.com/watch?v=R4-oce1tVHc", "video_id": "video10318", "start time": 436.95, "end time": 456.34, "split": "test", "id": 10318}, {"category": 18, "url": "https://www.youtube.com/watch?v=nafNmiUyG9k", "video_id": "video11732", "start time": 31.33, "end time": 56.85, "split": "test", "id": 11732}, {"category": 13, "url": "https://www.youtube.com/watch?v=aZ5M9tsoCAY", "video_id": "video10640", "start time": 0.0, "end time": 11.26, "split": "test", "id": 10640}, {"category": 11, "url": "https://www.youtube.com/watch?v=eneyl7mEmBk", "video_id": "video11090", "start time": 46.49, "end time": 57.17, "split": "test", "id": 11090}, {"category": 13, "url": "https://www.youtube.com/watch?v=O1KW3ZkLtuo", "video_id": "video12973", "start time": 140.25, "end time": 157.34, "split": "test", "id": 12973}, {"category": 9, "url": "https://www.youtube.com/watch?v=aQMEYY46OmM", "video_id": "video12447", "start time": 103.38, "end time": 124.71, "split": "test", "id": 12447}, {"category": 13, "url": "https://www.youtube.com/watch?v=FT8QIapHiqU", "video_id": "video10074", "start time": 0.0, "end time": 29.61, "split": "test", "id": 10074}, {"category": 15, "url": "https://www.youtube.com/watch?v=rc_QSyWl-GA", "video_id": "video12516", "start time": 123.56, "end time": 135.72, "split": "test", "id": 12516}, {"category": 3, "url": "https://www.youtube.com/watch?v=n--DBjOwjs4", "video_id": "video11459", "start time": 108.79, "end time": 120.0, "split": "test", "id": 11459}, {"category": 15, "url": "https://www.youtube.com/watch?v=82fS9C9koxU", "video_id": "video11749", "start time": 29.13, "end time": 44.97, "split": "test", "id": 11749}, {"category": 3, "url": "https://www.youtube.com/watch?v=0bI4TKH-iCE", "video_id": "video11281", "start time": 58.41, "end time": 72.73, "split": "test", "id": 11281}, {"category": 4, "url": "https://www.youtube.com/watch?v=2Qo1Cg6tqXo", "video_id": "video11758", "start time": 40.89, "end time": 57.73, "split": "test", "id": 11758}, {"category": 13, "url": "https://www.youtube.com/watch?v=iyDLpU5eZv0", "video_id": "video11841", "start time": 4.93, "end time": 29.37, "split": "test", "id": 11841}, {"category": 12, "url": "https://www.youtube.com/watch?v=kt3isHcI5P4", "video_id": "video12990", "start time": 246.23, "end time": 260.54, "split": "test", "id": 12990}, {"category": 17, "url": "https://www.youtube.com/watch?v=0ujrSualMbs", "video_id": "video12139", "start time": 218.2, "end time": 230.51, "split": "test", "id": 12139}, {"category": 3, "url": "https://www.youtube.com/watch?v=nANps0jY2pI", "video_id": "video11789", "start time": 52.13, "end time": 79.05, "split": "test", "id": 11789}, {"category": 12, "url": "https://www.youtube.com/watch?v=h7BKa-nQC4M", "video_id": "video12311", "start time": 87.75, "end time": 99.41, "split": "test", "id": 12311}, {"category": 3, "url": "https://www.youtube.com/watch?v=MJivUab5P-M", "video_id": "video11248", "start time": 276.59, "end time": 299.35, "split": "test", "id": 11248}, {"category": 19, "url": "https://www.youtube.com/watch?v=MUXALN0Lii0", "video_id": "video11144", "start time": 26.88, "end time": 37.17, "split": "test", "id": 11144}, {"category": 13, "url": "https://www.youtube.com/watch?v=fF8-dW42ipM", "video_id": "video10780", "start time": 87.82, "end time": 98.92, "split": "test", "id": 10780}, {"category": 7, "url": "https://www.youtube.com/watch?v=a5kYmrjongg", "video_id": "video12587", "start time": 38.29, "end time": 50.76, "split": "test", "id": 12587}, {"category": 3, "url": "https://www.youtube.com/watch?v=3m-j3gnOBrE", "video_id": "video11823", "start time": 116.23, "end time": 130.64, "split": "test", "id": 11823}, {"category": 0, "url": "https://www.youtube.com/watch?v=QoBCE9E5c_I", "video_id": "video11297", "start time": 62.89, "end time": 81.89, "split": "test", "id": 11297}, {"category": 16, "url": "https://www.youtube.com/watch?v=s6BPk-PNHmQ", "video_id": "video12920", "start time": 113.57, "end time": 124.29, "split": "test", "id": 12920}, {"category": 3, "url": "https://www.youtube.com/watch?v=LauxhHxbU98", "video_id": "video10147", "start time": 0.0, "end time": 21.09, "split": "test", "id": 10147}, {"category": 16, "url": "https://www.youtube.com/watch?v=4NpPRjknBPE", "video_id": "video11816", "start time": 8.17, "end time": 19.45, "split": "test", "id": 11816}, {"category": 7, "url": "https://www.youtube.com/watch?v=d3dZngCraqs", "video_id": "video11153", "start time": 186.65, "end time": 206.61, "split": "test", "id": 11153}, {"category": 3, "url": "https://www.youtube.com/watch?v=jmL4eXg3eOU", "video_id": "video10229", "start time": 25.01, "end time": 38.01, "split": "test", "id": 10229}, {"category": 10, "url": "https://www.youtube.com/watch?v=0oQHe1eYsnE", "video_id": "video11953", "start time": 9.45, "end time": 32.55, "split": "test", "id": 11953}, {"category": 16, "url": "https://www.youtube.com/watch?v=6Y83z88jlek", "video_id": "video11243", "start time": 85.93, "end time": 112.53, "split": "test", "id": 11243}, {"category": 7, "url": "https://www.youtube.com/watch?v=nfBU3igr2wA", "video_id": "video10891", "start time": 11.49, "end time": 21.5, "split": "test", "id": 10891}, {"category": 16, "url": "https://www.youtube.com/watch?v=MvXy73AADCs", "video_id": "video11285", "start time": 271.9, "end time": 295.68, "split": "test", "id": 11285}, {"category": 14, "url": "https://www.youtube.com/watch?v=o_oiThd71ac", "video_id": "video11592", "start time": 37.3, "end time": 47.51, "split": "test", "id": 11592}, {"category": 12, "url": "https://www.youtube.com/watch?v=oXbvnSmiAT0", "video_id": "video12119", "start time": 44.19, "end time": 60.51, "split": "test", "id": 12119}, {"category": 7, "url": "https://www.youtube.com/watch?v=1czvD3aVk8Y", "video_id": "video10240", "start time": 226.95, "end time": 240.25, "split": "test", "id": 10240}, {"category": 9, "url": "https://www.youtube.com/watch?v=psOTUsfn9jM", "video_id": "video12807", "start time": 118.07, "end time": 133.91, "split": "test", "id": 12807}, {"category": 9, "url": "https://www.youtube.com/watch?v=eKBGcQfp1DI", "video_id": "video12836", "start time": 36.85, "end time": 52.45, "split": "test", "id": 12836}, {"category": 9, "url": "https://www.youtube.com/watch?v=QJyAk8vDD3M", "video_id": "video10846", "start time": 35.42, "end time": 47.86, "split": "test", "id": 10846}, {"category": 1, "url": "https://www.youtube.com/watch?v=oaKoP5PiHto", "video_id": "video12137", "start time": 144.69, "end time": 171.69, "split": "test", "id": 12137}, {"category": 16, "url": "https://www.youtube.com/watch?v=rbq1snEclnE", "video_id": "video10081", "start time": 764.01, "end time": 780.85, "split": "test", "id": 10081}, {"category": 9, "url": "https://www.youtube.com/watch?v=3gAJorVqIC0", "video_id": "video11525", "start time": 964.51, "end time": 980.13, "split": "test", "id": 11525}, {"category": 3, "url": "https://www.youtube.com/watch?v=KleaWCx2d7Y", "video_id": "video11407", "start time": 30.73, "end time": 47.45, "split": "test", "id": 11407}, {"category": 3, "url": "https://www.youtube.com/watch?v=jsCXOiMVLRA", "video_id": "video12715", "start time": 251.93, "end time": 261.97, "split": "test", "id": 12715}, {"category": 13, "url": "https://www.youtube.com/watch?v=QFuae7fp0ck", "video_id": "video10469", "start time": 0.0, "end time": 26.91, "split": "test", "id": 10469}, {"category": 16, "url": "https://www.youtube.com/watch?v=AFYEIFOiarI", "video_id": "video11624", "start time": 0.0, "end time": 10.29, "split": "test", "id": 11624}, {"category": 3, "url": "https://www.youtube.com/watch?v=qbZwnH3GRlI", "video_id": "video12282", "start time": 253.13, "end time": 266.33, "split": "test", "id": 12282}, {"category": 12, "url": "https://www.youtube.com/watch?v=nT2k2zwMGdw", "video_id": "video12212", "start time": 102.18, "end time": 126.01, "split": "test", "id": 12212}, {"category": 18, "url": "https://www.youtube.com/watch?v=kAolSzH61C8", "video_id": "video11819", "start time": 573.29, "end time": 589.09, "split": "test", "id": 11819}, {"category": 10, "url": "https://www.youtube.com/watch?v=3OYcouFykRA", "video_id": "video12302", "start time": 15.33, "end time": 35.85, "split": "test", "id": 12302}, {"category": 5, "url": "https://www.youtube.com/watch?v=oPf27gAup9U", "video_id": "video11421", "start time": 218.14, "end time": 235.74, "split": "test", "id": 11421}, {"category": 8, "url": "https://www.youtube.com/watch?v=PTcLZLKPOtM", "video_id": "video10785", "start time": 0.0, "end time": 19.73, "split": "test", "id": 10785}, {"category": 11, "url": "https://www.youtube.com/watch?v=4Z5kovGw5RM", "video_id": "video11359", "start time": 18.6, "end time": 30.08, "split": "test", "id": 11359}, {"category": 7, "url": "https://www.youtube.com/watch?v=o0iuhJfjnQU", "video_id": "video12111", "start time": 133.76, "end time": 146.69, "split": "test", "id": 12111}, {"category": 16, "url": "https://www.youtube.com/watch?v=se-C0UUSJEQ", "video_id": "video10941", "start time": 269.35, "end time": 284.13, "split": "test", "id": 10941}, {"category": 10, "url": "https://www.youtube.com/watch?v=6qA4NmQ25MI", "video_id": "video10160", "start time": 141.93, "end time": 169.29, "split": "test", "id": 10160}, {"category": 18, "url": "https://www.youtube.com/watch?v=gepf4BkhjGA", "video_id": "video11038", "start time": 23.8, "end time": 44.63, "split": "test", "id": 11038}, {"category": 16, "url": "https://www.youtube.com/watch?v=CRURGwfCRiM", "video_id": "video11736", "start time": 81.73, "end time": 94.61, "split": "test", "id": 11736}, {"category": 16, "url": "https://www.youtube.com/watch?v=IfHwy2ViAS8", "video_id": "video11659", "start time": 49.51, "end time": 59.95, "split": "test", "id": 11659}, {"category": 13, "url": "https://www.youtube.com/watch?v=EbwvPYV1i8E", "video_id": "video11130", "start time": 164.71, "end time": 182.43, "split": "test", "id": 11130}, {"category": 9, "url": "https://www.youtube.com/watch?v=QT2wWYQg2I0", "video_id": "video10772", "start time": 293.61, "end time": 311.53, "split": "test", "id": 10772}, {"category": 6, "url": "https://www.youtube.com/watch?v=hsF8O-re4BA", "video_id": "video12438", "start time": 104.19, "end time": 131.35, "split": "test", "id": 12438}, {"category": 15, "url": "https://www.youtube.com/watch?v=JA6TLu1K7oM", "video_id": "video11891", "start time": 90.05, "end time": 108.92, "split": "test", "id": 11891}, {"category": 15, "url": "https://www.youtube.com/watch?v=pti8w-JP_1E", "video_id": "video12171", "start time": 161.34, "end time": 173.45, "split": "test", "id": 12171}, {"category": 16, "url": "https://www.youtube.com/watch?v=8kN2s5PiYhU", "video_id": "video10977", "start time": 139.92, "end time": 165.15, "split": "test", "id": 10977}, {"category": 9, "url": "https://www.youtube.com/watch?v=4RTQaphIMxw", "video_id": "video10407", "start time": 108.51, "end time": 130.85, "split": "test", "id": 10407}, {"category": 3, "url": "https://www.youtube.com/watch?v=6UYOzZQhGVM", "video_id": "video11062", "start time": 264.14, "end time": 280.69, "split": "test", "id": 11062}, {"category": 14, "url": "https://www.youtube.com/watch?v=5vhDG_q36VI", "video_id": "video12758", "start time": 0.0, "end time": 29.75, "split": "test", "id": 12758}, {"category": 18, "url": "https://www.youtube.com/watch?v=I1YEi7K1L7c", "video_id": "video11702", "start time": 536.65, "end time": 559.34, "split": "test", "id": 11702}, {"category": 9, "url": "https://www.youtube.com/watch?v=oSAt59uriPc", "video_id": "video10450", "start time": 41.88, "end time": 57.63, "split": "test", "id": 10450}, {"category": 4, "url": "https://www.youtube.com/watch?v=G4A2tNncJ3M", "video_id": "video10208", "start time": 10.96, "end time": 23.44, "split": "test", "id": 10208}, {"category": 18, "url": "https://www.youtube.com/watch?v=JN78Yz3-ZsE", "video_id": "video11616", "start time": 139.73, "end time": 160.17, "split": "test", "id": 11616}, {"category": 14, "url": "https://www.youtube.com/watch?v=-FPilslxdrw", "video_id": "video12225", "start time": 112.16, "end time": 122.67, "split": "test", "id": 12225}, {"category": 16, "url": "https://www.youtube.com/watch?v=pixR0Wsr5rU", "video_id": "video10065", "start time": 21.94, "end time": 40.09, "split": "test", "id": 10065}, {"category": 13, "url": "https://www.youtube.com/watch?v=JcjZWVDnuIA", "video_id": "video11537", "start time": 482.26, "end time": 511.16, "split": "test", "id": 11537}, {"category": 4, "url": "https://www.youtube.com/watch?v=PSUSsojUxHM", "video_id": "video10435", "start time": 86.57, "end time": 98.08, "split": "test", "id": 10435}, {"category": 0, "url": "https://www.youtube.com/watch?v=NGFSNE18Ywc", "video_id": "video12750", "start time": 24.67, "end time": 36.48, "split": "test", "id": 12750}, {"category": 18, "url": "https://www.youtube.com/watch?v=NhgXS0ONFK0", "video_id": "video10276", "start time": 19.89, "end time": 30.61, "split": "test", "id": 10276}, {"category": 18, "url": "https://www.youtube.com/watch?v=B0tu-P0mEH8", "video_id": "video10688", "start time": 183.2, "end time": 201.62, "split": "test", "id": 10688}, {"category": 15, "url": "https://www.youtube.com/watch?v=Q15oVJhBHLU", "video_id": "video11710", "start time": 1435.85, "end time": 1449.73, "split": "test", "id": 11710}, {"category": 11, "url": "https://www.youtube.com/watch?v=S5sEg9ZHc8w", "video_id": "video12164", "start time": 0.0, "end time": 27.85, "split": "test", "id": 12164}, {"category": 7, "url": "https://www.youtube.com/watch?v=fygUSgOC9Ak", "video_id": "video10696", "start time": 12.77, "end time": 27.25, "split": "test", "id": 10696}, {"category": 9, "url": "https://www.youtube.com/watch?v=9wvF0FrDpWo", "video_id": "video11447", "start time": 61.28, "end time": 74.86, "split": "test", "id": 11447}, {"category": 3, "url": "https://www.youtube.com/watch?v=fay3Z55l8rY", "video_id": "video11518", "start time": 27.84, "end time": 43.69, "split": "test", "id": 11518}, {"category": 15, "url": "https://www.youtube.com/watch?v=f0EchOPyvrA", "video_id": "video10140", "start time": 94.17, "end time": 104.45, "split": "test", "id": 10140}, {"category": 3, "url": "https://www.youtube.com/watch?v=6BU9_rBnzCM", "video_id": "video12208", "start time": 19.83, "end time": 30.34, "split": "test", "id": 12208}, {"category": 12, "url": "https://www.youtube.com/watch?v=131N3JFQ1nQ", "video_id": "video10344", "start time": 59.93, "end time": 79.69, "split": "test", "id": 10344}, {"category": 9, "url": "https://www.youtube.com/watch?v=qxgfFwEZjes", "video_id": "video11345", "start time": 159.81, "end time": 182.25, "split": "test", "id": 11345}, {"category": 9, "url": "https://www.youtube.com/watch?v=7UTlK18hmmo", "video_id": "video11186", "start time": 7.69, "end time": 34.57, "split": "test", "id": 11186}, {"category": 13, "url": "https://www.youtube.com/watch?v=5e_cr7tbc7w", "video_id": "video11677", "start time": 106.82, "end time": 122.57, "split": "test", "id": 11677}, {"category": 14, "url": "https://www.youtube.com/watch?v=rAgGggTu1zo", "video_id": "video12238", "start time": 0.0, "end time": 16.93, "split": "test", "id": 12238}, {"category": 12, "url": "https://www.youtube.com/watch?v=jbc30b3kDeA", "video_id": "video10996", "start time": 117.77, "end time": 137.55, "split": "test", "id": 10996}, {"category": 9, "url": "https://www.youtube.com/watch?v=E7UaX2HzSGU", "video_id": "video12916", "start time": 328.04, "end time": 340.32, "split": "test", "id": 12916}, {"category": 4, "url": "https://www.youtube.com/watch?v=6S5RdxzvhpI", "video_id": "video10969", "start time": 93.93, "end time": 106.57, "split": "test", "id": 10969}, {"category": 16, "url": "https://www.youtube.com/watch?v=aXNUL1-urg8", "video_id": "video10402", "start time": 24.27, "end time": 41.82, "split": "test", "id": 10402}, {"category": 18, "url": "https://www.youtube.com/watch?v=23-Uc09iINM", "video_id": "video11353", "start time": 139.05, "end time": 151.71, "split": "test", "id": 11353}, {"category": 4, "url": "https://www.youtube.com/watch?v=kAfPvmXS3ns", "video_id": "video10824", "start time": 9.86, "end time": 33.01, "split": "test", "id": 10824}, {"category": 2, "url": "https://www.youtube.com/watch?v=HiFUj5Dj8mk", "video_id": "video10967", "start time": 6.69, "end time": 18.83, "split": "test", "id": 10967}, {"category": 4, "url": "https://www.youtube.com/watch?v=QgCoPkfhqUg", "video_id": "video11972", "start time": 29.48, "end time": 45.81, "split": "test", "id": 11972}, {"category": 3, "url": "https://www.youtube.com/watch?v=opYj0XICHvQ", "video_id": "video11278", "start time": 41.69, "end time": 58.14, "split": "test", "id": 11278}, {"category": 18, "url": "https://www.youtube.com/watch?v=pHs__nVtJRA", "video_id": "video11775", "start time": 19.09, "end time": 35.09, "split": "test", "id": 11775}, {"category": 6, "url": "https://www.youtube.com/watch?v=3XCneDdt2rU", "video_id": "video10661", "start time": 60.81, "end time": 78.53, "split": "test", "id": 10661}, {"category": 7, "url": "https://www.youtube.com/watch?v=h7CACSBIplI", "video_id": "video12022", "start time": 409.67, "end time": 426.14, "split": "test", "id": 12022}, {"category": 3, "url": "https://www.youtube.com/watch?v=BT6nURagha8", "video_id": "video12947", "start time": 0.0, "end time": 24.51, "split": "test", "id": 12947}, {"category": 15, "url": "https://www.youtube.com/watch?v=5kQ8Pe1Au9w", "video_id": "video12720", "start time": 170.97, "end time": 189.45, "split": "test", "id": 12720}, {"category": 10, "url": "https://www.youtube.com/watch?v=-wGQIxv5ZTE", "video_id": "video11842", "start time": 75.5, "end time": 87.01, "split": "test", "id": 11842}, {"category": 0, "url": "https://www.youtube.com/watch?v=Bg59q4puhmg", "video_id": "video12955", "start time": 3.68, "end time": 21.8, "split": "test", "id": 12955}, {"category": 7, "url": "https://www.youtube.com/watch?v=l5zXX_2Gapo", "video_id": "video10106", "start time": 28.28, "end time": 43.92, "split": "test", "id": 10106}, {"category": 4, "url": "https://www.youtube.com/watch?v=0t70jZkxEu0", "video_id": "video11234", "start time": 202.09, "end time": 215.29, "split": "test", "id": 11234}, {"category": 17, "url": "https://www.youtube.com/watch?v=Ota1WNYWdEI", "video_id": "video10393", "start time": 398.95, "end time": 412.81, "split": "test", "id": 10393}, {"category": 12, "url": "https://www.youtube.com/watch?v=FL9Y0YvNjq8", "video_id": "video11009", "start time": 94.01, "end time": 106.22, "split": "test", "id": 11009}, {"category": 5, "url": "https://www.youtube.com/watch?v=rixyrCNVVGA", "video_id": "video12568", "start time": 430.39, "end time": 443.74, "split": "test", "id": 12568}, {"category": 7, "url": "https://www.youtube.com/watch?v=2quc-iQ96R0", "video_id": "video11366", "start time": 90.55, "end time": 107.82, "split": "test", "id": 11366}, {"category": 12, "url": "https://www.youtube.com/watch?v=AqyH4ioWrSk", "video_id": "video11942", "start time": 234.92, "end time": 263.46, "split": "test", "id": 11942}, {"category": 4, "url": "https://www.youtube.com/watch?v=B18iKVQYY7Q", "video_id": "video11784", "start time": 73.58, "end time": 94.18, "split": "test", "id": 11784}, {"category": 7, "url": "https://www.youtube.com/watch?v=6svWrN52Eug", "video_id": "video11737", "start time": 11.59, "end time": 30.01, "split": "test", "id": 11737}, {"category": 7, "url": "https://www.youtube.com/watch?v=qmk2ug7u6J4", "video_id": "video12991", "start time": 0.0, "end time": 25.84, "split": "test", "id": 12991}, {"category": 3, "url": "https://www.youtube.com/watch?v=bMcEr_jM_TA", "video_id": "video11445", "start time": 183.13, "end time": 198.29, "split": "test", "id": 11445}, {"category": 4, "url": "https://www.youtube.com/watch?v=L5sX5tjoI84", "video_id": "video10948", "start time": 22.54, "end time": 36.28, "split": "test", "id": 10948}, {"category": 16, "url": "https://www.youtube.com/watch?v=kEakYl5pDEM", "video_id": "video10371", "start time": 50.63, "end time": 75.39, "split": "test", "id": 10371}, {"category": 6, "url": "https://www.youtube.com/watch?v=J6d8Vf-wYaY", "video_id": "video10751", "start time": 8.56, "end time": 20.83, "split": "test", "id": 10751}, {"category": 3, "url": "https://www.youtube.com/watch?v=5uhZCZsGOMY", "video_id": "video10793", "start time": 160.31, "end time": 174.56, "split": "test", "id": 10793}, {"category": 3, "url": "https://www.youtube.com/watch?v=iJMe9A7mbY4", "video_id": "video11934", "start time": 402.71, "end time": 427.75, "split": "test", "id": 11934}, {"category": 13, "url": "https://www.youtube.com/watch?v=0SnEA-UqXKg", "video_id": "video12260", "start time": 0.0, "end time": 15.98, "split": "test", "id": 12260}, {"category": 6, "url": "https://www.youtube.com/watch?v=1PjEVQ3hlmc", "video_id": "video12744", "start time": 166.31, "end time": 189.41, "split": "test", "id": 12744}, {"category": 3, "url": "https://www.youtube.com/watch?v=K6IHqFwmnI4", "video_id": "video12818", "start time": 103.58, "end time": 114.25, "split": "test", "id": 12818}, {"category": 16, "url": "https://www.youtube.com/watch?v=p0H6cxkFxtU", "video_id": "video11857", "start time": 203.52, "end time": 232.05, "split": "test", "id": 11857}, {"category": 4, "url": "https://www.youtube.com/watch?v=bAs3Xpq9QBs", "video_id": "video10272", "start time": 6.69, "end time": 18.8, "split": "test", "id": 10272}, {"category": 18, "url": "https://www.youtube.com/watch?v=KKchS38Naaw", "video_id": "video10775", "start time": 632.21, "end time": 651.21, "split": "test", "id": 10775}, {"category": 6, "url": "https://www.youtube.com/watch?v=jTEiM1Xawgs", "video_id": "video10800", "start time": 7.01, "end time": 24.24, "split": "test", "id": 10800}, {"category": 16, "url": "https://www.youtube.com/watch?v=8rtkNKRDiUs", "video_id": "video11514", "start time": 123.84, "end time": 137.45, "split": "test", "id": 11514}, {"category": 18, "url": "https://www.youtube.com/watch?v=H2u02V8lox0", "video_id": "video12672", "start time": 19.67, "end time": 31.81, "split": "test", "id": 12672}, {"category": 4, "url": "https://www.youtube.com/watch?v=bq38ZNpj7Q4", "video_id": "video11022", "start time": 1.35, "end time": 21.4, "split": "test", "id": 11022}, {"category": 4, "url": "https://www.youtube.com/watch?v=o0G0Eub6YmY", "video_id": "video12374", "start time": 210.97, "end time": 227.85, "split": "test", "id": 12374}, {"category": 13, "url": "https://www.youtube.com/watch?v=2XmIwxCeBpg", "video_id": "video10987", "start time": 383.53, "end time": 405.69, "split": "test", "id": 10987}, {"category": 6, "url": "https://www.youtube.com/watch?v=eNwARV9tPUw", "video_id": "video12269", "start time": 180.77, "end time": 197.49, "split": "test", "id": 12269}, {"category": 11, "url": "https://www.youtube.com/watch?v=laU1FDL0mM0", "video_id": "video10766", "start time": 382.85, "end time": 407.61, "split": "test", "id": 10766}, {"category": 12, "url": "https://www.youtube.com/watch?v=0Bt6RPP2ANI", "video_id": "video11311", "start time": 14.8, "end time": 25.67, "split": "test", "id": 11311}, {"category": 1, "url": "https://www.youtube.com/watch?v=8viCMgv8wjE", "video_id": "video10067", "start time": 2.97, "end time": 16.73, "split": "test", "id": 10067}, {"category": 0, "url": "https://www.youtube.com/watch?v=ekzHIouo8Q4", "video_id": "video12285", "start time": 10.27, "end time": 27.12, "split": "test", "id": 12285}, {"category": 12, "url": "https://www.youtube.com/watch?v=DtosXFgP7C4", "video_id": "video12630", "start time": 34.28, "end time": 51.9, "split": "test", "id": 12630}, {"category": 9, "url": "https://www.youtube.com/watch?v=JSQHYQC6-u8", "video_id": "video10801", "start time": 11.65, "end time": 23.57, "split": "test", "id": 10801}, {"category": 7, "url": "https://www.youtube.com/watch?v=AqjgCYp8gh0", "video_id": "video11245", "start time": 0.0, "end time": 27.58, "split": "test", "id": 11245}, {"category": 13, "url": "https://www.youtube.com/watch?v=7rfGEtALHYs", "video_id": "video11660", "start time": 52.13, "end time": 71.96, "split": "test", "id": 11660}, {"category": 12, "url": "https://www.youtube.com/watch?v=K8ajsignV8w", "video_id": "video12828", "start time": 0.0, "end time": 15.13, "split": "test", "id": 12828}, {"category": 3, "url": "https://www.youtube.com/watch?v=21msI_4RGbs", "video_id": "video10130", "start time": 18.05, "end time": 30.29, "split": "test", "id": 10130}, {"category": 13, "url": "https://www.youtube.com/watch?v=3DGoZeoLfmg", "video_id": "video11523", "start time": 41.56, "end time": 53.17, "split": "test", "id": 11523}, {"category": 16, "url": "https://www.youtube.com/watch?v=ktaeJ1Yeh4g", "video_id": "video11779", "start time": 205.39, "end time": 227.54, "split": "test", "id": 11779}, {"category": 11, "url": "https://www.youtube.com/watch?v=KGz0H7D4fmM", "video_id": "video12779", "start time": 0.0, "end time": 14.83, "split": "test", "id": 12779}, {"category": 18, "url": "https://www.youtube.com/watch?v=ijVD6E1xi_o", "video_id": "video10199", "start time": 34.33, "end time": 54.27, "split": "test", "id": 10199}, {"category": 5, "url": "https://www.youtube.com/watch?v=ljRlB6TuMOU", "video_id": "video10978", "start time": 55.89, "end time": 74.37, "split": "test", "id": 10978}, {"category": 13, "url": "https://www.youtube.com/watch?v=PXfnsm_cYqE", "video_id": "video11194", "start time": 306.99, "end time": 317.5, "split": "test", "id": 11194}, {"category": 3, "url": "https://www.youtube.com/watch?v=1lLKs4lDSEs", "video_id": "video11584", "start time": 64.51, "end time": 89.57, "split": "test", "id": 11584}, {"category": 16, "url": "https://www.youtube.com/watch?v=j0zo1a_pFBc", "video_id": "video11349", "start time": 164.73, "end time": 184.37, "split": "test", "id": 11349}, {"category": 19, "url": "https://www.youtube.com/watch?v=5D8tOG8GOFs", "video_id": "video11367", "start time": 138.88, "end time": 149.75, "split": "test", "id": 11367}, {"category": 4, "url": "https://www.youtube.com/watch?v=aCODiRSZGzQ", "video_id": "video11494", "start time": 11.15, "end time": 25.25, "split": "test", "id": 11494}, {"category": 3, "url": "https://www.youtube.com/watch?v=3VXBSNjY2gY", "video_id": "video11992", "start time": 20.33, "end time": 47.49, "split": "test", "id": 11992}, {"category": 3, "url": "https://www.youtube.com/watch?v=rVaZbLl9nIU", "video_id": "video11847", "start time": 90.58, "end time": 103.25, "split": "test", "id": 11847}, {"category": 4, "url": "https://www.youtube.com/watch?v=9BaVMGnXQw4", "video_id": "video12215", "start time": 51.01, "end time": 77.49, "split": "test", "id": 12215}, {"category": 3, "url": "https://www.youtube.com/watch?v=qnpMfcri1A0", "video_id": "video12813", "start time": 0.0, "end time": 18.17, "split": "test", "id": 12813}, {"category": 16, "url": "https://www.youtube.com/watch?v=NX0XYT4q_2Q", "video_id": "video10053", "start time": 223.71, "end time": 235.01, "split": "test", "id": 10053}, {"category": 10, "url": "https://www.youtube.com/watch?v=JGGSjau9GAw", "video_id": "video11915", "start time": 41.26, "end time": 58.71, "split": "test", "id": 11915}, {"category": 9, "url": "https://www.youtube.com/watch?v=KfJjC5-0HvU", "video_id": "video12277", "start time": 227.91, "end time": 248.06, "split": "test", "id": 12277}, {"category": 0, "url": "https://www.youtube.com/watch?v=gEDCwVWT6T4", "video_id": "video11766", "start time": 22.01, "end time": 37.45, "split": "test", "id": 11766}, {"category": 13, "url": "https://www.youtube.com/watch?v=jMsIPmaAILo", "video_id": "video10189", "start time": 42.69, "end time": 53.77, "split": "test", "id": 10189}, {"category": 7, "url": "https://www.youtube.com/watch?v=RcjOxfGQg28", "video_id": "video12280", "start time": 509.49, "end time": 526.74, "split": "test", "id": 12280}, {"category": 16, "url": "https://www.youtube.com/watch?v=fETZCWvzkWM", "video_id": "video11760", "start time": 182.45, "end time": 193.77, "split": "test", "id": 11760}, {"category": 14, "url": "https://www.youtube.com/watch?v=AraTRkBHu28", "video_id": "video11597", "start time": 184.33, "end time": 197.28, "split": "test", "id": 11597}, {"category": 18, "url": "https://www.youtube.com/watch?v=rFoKGjryWwY", "video_id": "video10634", "start time": 235.78, "end time": 246.76, "split": "test", "id": 10634}, {"category": 11, "url": "https://www.youtube.com/watch?v=IdoqUsOzKho", "video_id": "video11398", "start time": 227.47, "end time": 246.66, "split": "test", "id": 11398}, {"category": 17, "url": "https://www.youtube.com/watch?v=N8w1Q-iY0VI", "video_id": "video12788", "start time": 87.0, "end time": 115.16, "split": "test", "id": 12788}, {"category": 4, "url": "https://www.youtube.com/watch?v=Q0hQEznnIlM", "video_id": "video12811", "start time": 235.35, "end time": 247.03, "split": "test", "id": 12811}, {"category": 3, "url": "https://www.youtube.com/watch?v=kMNxk7M284g", "video_id": "video12634", "start time": 51.13, "end time": 70.62, "split": "test", "id": 12634}, {"category": 12, "url": "https://www.youtube.com/watch?v=GgH8vmsvdxs", "video_id": "video11119", "start time": 15.76, "end time": 32.18, "split": "test", "id": 11119}, {"category": 4, "url": "https://www.youtube.com/watch?v=1z15t8JNO7U", "video_id": "video10486", "start time": 32.05, "end time": 45.55, "split": "test", "id": 10486}, {"category": 2, "url": "https://www.youtube.com/watch?v=BE-4YaFNC7M", "video_id": "video10052", "start time": 43.09, "end time": 58.67, "split": "test", "id": 10052}, {"category": 10, "url": "https://www.youtube.com/watch?v=jtwLshjCYzk", "video_id": "video10425", "start time": 97.91, "end time": 122.34, "split": "test", "id": 10425}, {"category": 6, "url": "https://www.youtube.com/watch?v=Qadyqbhlf1U", "video_id": "video12483", "start time": 152.73, "end time": 165.81, "split": "test", "id": 12483}, {"category": 4, "url": "https://www.youtube.com/watch?v=9t9-2x4UggQ", "video_id": "video12878", "start time": 4.89, "end time": 28.81, "split": "test", "id": 12878}, {"category": 9, "url": "https://www.youtube.com/watch?v=rE-iRE7GuFo", "video_id": "video10803", "start time": 1141.28, "end time": 1160.05, "split": "test", "id": 10803}, {"category": 3, "url": "https://www.youtube.com/watch?v=gm7eT0MGt2Y", "video_id": "video12542", "start time": 129.98, "end time": 141.36, "split": "test", "id": 12542}, {"category": 3, "url": "https://www.youtube.com/watch?v=MqF7Gk9dIKw", "video_id": "video11870", "start time": 7.72, "end time": 18.63, "split": "test", "id": 11870}, {"category": 11, "url": "https://www.youtube.com/watch?v=K7foZENOdUQ", "video_id": "video12178", "start time": 149.29, "end time": 160.65, "split": "test", "id": 12178}, {"category": 8, "url": "https://www.youtube.com/watch?v=4hbxKWPesBw", "video_id": "video11521", "start time": 35.32, "end time": 54.9, "split": "test", "id": 11521}, {"category": 3, "url": "https://www.youtube.com/watch?v=hS3lyaj63c8", "video_id": "video11713", "start time": 217.03, "end time": 233.75, "split": "test", "id": 11713}, {"category": 0, "url": "https://www.youtube.com/watch?v=3n71KUiWn1I", "video_id": "video10338", "start time": 154.74, "end time": 166.21, "split": "test", "id": 10338}, {"category": 17, "url": "https://www.youtube.com/watch?v=EPvDMC9K_hY", "video_id": "video11697", "start time": 58.58, "end time": 81.28, "split": "test", "id": 11697}, {"category": 7, "url": "https://www.youtube.com/watch?v=IrTelnGAK44", "video_id": "video11516", "start time": 1239.99, "end time": 1258.43, "split": "test", "id": 11516}, {"category": 12, "url": "https://www.youtube.com/watch?v=h6tptMBFkzI", "video_id": "video10274", "start time": 46.05, "end time": 57.08, "split": "test", "id": 10274}, {"category": 13, "url": "https://www.youtube.com/watch?v=QwlYfrvrQfI", "video_id": "video12166", "start time": 0.0, "end time": 21.98, "split": "test", "id": 12166}, {"category": 11, "url": "https://www.youtube.com/watch?v=nJ6A_bogo_g", "video_id": "video10069", "start time": 59.85, "end time": 77.05, "split": "test", "id": 10069}, {"category": 18, "url": "https://www.youtube.com/watch?v=mDlpuI86fXk", "video_id": "video10497", "start time": 25.14, "end time": 36.98, "split": "test", "id": 10497}, {"category": 13, "url": "https://www.youtube.com/watch?v=QgsbBCaiyLw", "video_id": "video10070", "start time": 265.52, "end time": 283.83, "split": "test", "id": 10070}, {"category": 3, "url": "https://www.youtube.com/watch?v=6Chg_5NpQJo", "video_id": "video10176", "start time": 0.0, "end time": 17.5, "split": "test", "id": 10176}, {"category": 9, "url": "https://www.youtube.com/watch?v=Ev6VNjFuNG0", "video_id": "video11221", "start time": 65.73, "end time": 94.21, "split": "test", "id": 11221}, {"category": 13, "url": "https://www.youtube.com/watch?v=FnukuqV8Snw", "video_id": "video11590", "start time": 0.0, "end time": 16.17, "split": "test", "id": 11590}, {"category": 3, "url": "https://www.youtube.com/watch?v=3D9VWKR-iFc", "video_id": "video12718", "start time": 89.53, "end time": 115.81, "split": "test", "id": 12718}, {"category": 9, "url": "https://www.youtube.com/watch?v=NgyqQ5Doe80", "video_id": "video12928", "start time": 25.81, "end time": 36.78, "split": "test", "id": 12928}, {"category": 0, "url": "https://www.youtube.com/watch?v=aV8NqiYjuIc", "video_id": "video11654", "start time": 174.32, "end time": 194.41, "split": "test", "id": 11654}, {"category": 9, "url": "https://www.youtube.com/watch?v=27VZ1KA0lHQ", "video_id": "video11197", "start time": 424.37, "end time": 448.56, "split": "test", "id": 11197}, {"category": 3, "url": "https://www.youtube.com/watch?v=KxzK9l0WBUA", "video_id": "video12857", "start time": 26.25, "end time": 50.48, "split": "test", "id": 12857}, {"category": 3, "url": "https://www.youtube.com/watch?v=0HSNbOUyBy4", "video_id": "video12901", "start time": 8.45, "end time": 28.25, "split": "test", "id": 12901}, {"category": 17, "url": "https://www.youtube.com/watch?v=5lR1G76irX4", "video_id": "video12049", "start time": 5.05, "end time": 15.66, "split": "test", "id": 12049}, {"category": 10, "url": "https://www.youtube.com/watch?v=i4b1NF9qFZU", "video_id": "video10498", "start time": 56.26, "end time": 67.55, "split": "test", "id": 10498}, {"category": 0, "url": "https://www.youtube.com/watch?v=AJWtLf4-WWs", "video_id": "video10628", "start time": 92.51, "end time": 103.88, "split": "test", "id": 10628}, {"category": 18, "url": "https://www.youtube.com/watch?v=hoMJHQr7fe8", "video_id": "video11309", "start time": 169.57, "end time": 182.21, "split": "test", "id": 11309}, {"category": 2, "url": "https://www.youtube.com/watch?v=S-cJ59YUX9g", "video_id": "video11316", "start time": 373.55, "end time": 392.94, "split": "test", "id": 11316}, {"category": 13, "url": "https://www.youtube.com/watch?v=fu7D0KKmZGM", "video_id": "video10129", "start time": 112.79, "end time": 124.64, "split": "test", "id": 10129}, {"category": 7, "url": "https://www.youtube.com/watch?v=M7hGbD4Tlfs", "video_id": "video11342", "start time": 33.71, "end time": 45.55, "split": "test", "id": 11342}, {"category": 16, "url": "https://www.youtube.com/watch?v=1i78dyHA2oI", "video_id": "video11227", "start time": 41.72, "end time": 57.64, "split": "test", "id": 11227}, {"category": 10, "url": "https://www.youtube.com/watch?v=35h7sAqlItc", "video_id": "video12629", "start time": 102.61, "end time": 122.49, "split": "test", "id": 12629}, {"category": 3, "url": "https://www.youtube.com/watch?v=QDBuWbi3OW4", "video_id": "video10370", "start time": 44.73, "end time": 65.91, "split": "test", "id": 10370}, {"category": 7, "url": "https://www.youtube.com/watch?v=q7QxVddVEW0", "video_id": "video11806", "start time": 73.04, "end time": 88.14, "split": "test", "id": 11806}, {"category": 16, "url": "https://www.youtube.com/watch?v=3qBjL_HGvco", "video_id": "video10153", "start time": 190.07, "end time": 200.41, "split": "test", "id": 10153}, {"category": 10, "url": "https://www.youtube.com/watch?v=MHOssKfprXY", "video_id": "video10918", "start time": 31.91, "end time": 43.65, "split": "test", "id": 10918}, {"category": 11, "url": "https://www.youtube.com/watch?v=0haGdf5fbpw", "video_id": "video11691", "start time": 10.29, "end time": 24.31, "split": "test", "id": 11691}, {"category": 3, "url": "https://www.youtube.com/watch?v=pTuz-FVnmvE", "video_id": "video12509", "start time": 34.01, "end time": 49.09, "split": "test", "id": 12509}, {"category": 10, "url": "https://www.youtube.com/watch?v=0naTpR0pLCs", "video_id": "video10138", "start time": 187.82, "end time": 204.63, "split": "test", "id": 10138}, {"category": 3, "url": "https://www.youtube.com/watch?v=Ahk48h7P4ts", "video_id": "video10388", "start time": 299.64, "end time": 313.4, "split": "test", "id": 10388}, {"category": 16, "url": "https://www.youtube.com/watch?v=Ma7nvz5rhDs", "video_id": "video11380", "start time": 103.77, "end time": 115.33, "split": "test", "id": 11380}, {"category": 16, "url": "https://www.youtube.com/watch?v=Kuw_z5JOVIo", "video_id": "video10101", "start time": 82.77, "end time": 111.97, "split": "test", "id": 10101}, {"category": 12, "url": "https://www.youtube.com/watch?v=07hqHmLQf2g", "video_id": "video12778", "start time": 77.33, "end time": 100.4, "split": "test", "id": 12778}, {"category": 7, "url": "https://www.youtube.com/watch?v=kE_zqVPr4HI", "video_id": "video10821", "start time": 40.52, "end time": 51.23, "split": "test", "id": 10821}, {"category": 19, "url": "https://www.youtube.com/watch?v=GVaQ5aeGiO0", "video_id": "video12172", "start time": 164.48, "end time": 191.11, "split": "test", "id": 12172}, {"category": 0, "url": "https://www.youtube.com/watch?v=i8q8fFs3kTM", "video_id": "video11063", "start time": 160.04, "end time": 171.34, "split": "test", "id": 11063}, {"category": 13, "url": "https://www.youtube.com/watch?v=LVoElgX2irI", "video_id": "video10702", "start time": 107.55, "end time": 117.6, "split": "test", "id": 10702}, {"category": 13, "url": "https://www.youtube.com/watch?v=4djkXvs-sdk", "video_id": "video12918", "start time": 61.11, "end time": 87.74, "split": "test", "id": 12918}, {"category": 16, "url": "https://www.youtube.com/watch?v=K_iS5O88ISk", "video_id": "video10226", "start time": 188.07, "end time": 206.42, "split": "test", "id": 10226}, {"category": 16, "url": "https://www.youtube.com/watch?v=mV3m2svj3XE", "video_id": "video10543", "start time": 87.97, "end time": 102.32, "split": "test", "id": 10543}, {"category": 9, "url": "https://www.youtube.com/watch?v=a_qMikzSxE0", "video_id": "video12536", "start time": 64.69, "end time": 87.57, "split": "test", "id": 12536}, {"category": 0, "url": "https://www.youtube.com/watch?v=OvIu5FzdIW4", "video_id": "video10340", "start time": 1.81, "end time": 13.31, "split": "test", "id": 10340}, {"category": 16, "url": "https://www.youtube.com/watch?v=93SQ9tr-50E", "video_id": "video11233", "start time": 49.21, "end time": 62.55, "split": "test", "id": 11233}, {"category": 5, "url": "https://www.youtube.com/watch?v=h9oDTMXM7M8", "video_id": "video10192", "start time": 599.6, "end time": 614.54, "split": "test", "id": 10192}, {"category": 8, "url": "https://www.youtube.com/watch?v=5l7bQzJqVYA", "video_id": "video10942", "start time": 300.08, "end time": 316.83, "split": "test", "id": 10942}, {"category": 3, "url": "https://www.youtube.com/watch?v=RFZJMW141qo", "video_id": "video10254", "start time": 1.52, "end time": 13.76, "split": "test", "id": 10254}, {"category": 15, "url": "https://www.youtube.com/watch?v=FhqD6dGSSMA", "video_id": "video11269", "start time": 69.13, "end time": 85.65, "split": "test", "id": 11269}, {"category": 3, "url": "https://www.youtube.com/watch?v=rRIxKJm6xw8", "video_id": "video12359", "start time": 160.07, "end time": 175.92, "split": "test", "id": 12359}, {"category": 7, "url": "https://www.youtube.com/watch?v=7gb__WuXcUk", "video_id": "video12276", "start time": 0.0, "end time": 24.11, "split": "test", "id": 12276}, {"category": 0, "url": "https://www.youtube.com/watch?v=PNu_-deVemE", "video_id": "video10461", "start time": 225.15, "end time": 236.91, "split": "test", "id": 10461}, {"category": 16, "url": "https://www.youtube.com/watch?v=QuYsnnCvPsc", "video_id": "video12783", "start time": 14.69, "end time": 27.17, "split": "test", "id": 12783}, {"category": 8, "url": "https://www.youtube.com/watch?v=PBr4CBL8xWA", "video_id": "video11971", "start time": 86.65, "end time": 101.35, "split": "test", "id": 11971}, {"category": 4, "url": "https://www.youtube.com/watch?v=s8b0SejbdVU", "video_id": "video11082", "start time": 0.0, "end time": 16.01, "split": "test", "id": 11082}, {"category": 16, "url": "https://www.youtube.com/watch?v=JcEQcE5f_0s", "video_id": "video11424", "start time": 504.22, "end time": 515.6, "split": "test", "id": 11424}, {"category": 10, "url": "https://www.youtube.com/watch?v=3vQwZzbhzXs", "video_id": "video12217", "start time": 186.87, "end time": 207.69, "split": "test", "id": 12217}, {"category": 0, "url": "https://www.youtube.com/watch?v=jXX4eW1aWms", "video_id": "video11939", "start time": 199.93, "end time": 227.21, "split": "test", "id": 11939}, {"category": 6, "url": "https://www.youtube.com/watch?v=ndCKo47Tndg", "video_id": "video10439", "start time": 313.35, "end time": 339.78, "split": "test", "id": 10439}, {"category": 0, "url": "https://www.youtube.com/watch?v=9b8erWuBA44", "video_id": "video12883", "start time": 166.8, "end time": 182.52, "split": "test", "id": 12883}, {"category": 9, "url": "https://www.youtube.com/watch?v=fEjuJyjQ8YI", "video_id": "video12479", "start time": 276.22, "end time": 293.44, "split": "test", "id": 12479}, {"category": 7, "url": "https://www.youtube.com/watch?v=6-mXKaigofQ", "video_id": "video12086", "start time": 36.52, "end time": 50.16, "split": "test", "id": 12086}, {"category": 12, "url": "https://www.youtube.com/watch?v=9OVf5z9f0G0", "video_id": "video12829", "start time": 138.73, "end time": 156.33, "split": "test", "id": 12829}, {"category": 16, "url": "https://www.youtube.com/watch?v=hGpo-pCYXiw", "video_id": "video11460", "start time": 3.14, "end time": 15.87, "split": "test", "id": 11460}, {"category": 17, "url": "https://www.youtube.com/watch?v=Q5D4WnNB7H4", "video_id": "video11087", "start time": 328.49, "end time": 339.89, "split": "test", "id": 11087}, {"category": 7, "url": "https://www.youtube.com/watch?v=hPCqnEGN-M0", "video_id": "video11257", "start time": 186.4, "end time": 210.66, "split": "test", "id": 11257}, {"category": 10, "url": "https://www.youtube.com/watch?v=mepa4rl5YIM", "video_id": "video12665", "start time": 270.28, "end time": 291.04, "split": "test", "id": 12665}, {"category": 2, "url": "https://www.youtube.com/watch?v=BDgzB26Dp9E", "video_id": "video12931", "start time": 103.92, "end time": 116.03, "split": "test", "id": 12931}, {"category": 15, "url": "https://www.youtube.com/watch?v=GpEx7pdp2-Q", "video_id": "video12791", "start time": 86.38, "end time": 104.71, "split": "test", "id": 12791}, {"category": 6, "url": "https://www.youtube.com/watch?v=-diC9ZouMpQ", "video_id": "video11411", "start time": 99.31, "end time": 128.41, "split": "test", "id": 11411}, {"category": 18, "url": "https://www.youtube.com/watch?v=-nLI-ryAssU", "video_id": "video10399", "start time": 71.31, "end time": 86.05, "split": "test", "id": 10399}, {"category": 5, "url": "https://www.youtube.com/watch?v=3ez10ADR_gM", "video_id": "video10064", "start time": 138.39, "end time": 150.32, "split": "test", "id": 10064}, {"category": 17, "url": "https://www.youtube.com/watch?v=Rhs86HPVU7E", "video_id": "video11132", "start time": 365.75, "end time": 391.41, "split": "test", "id": 11132}, {"category": 16, "url": "https://www.youtube.com/watch?v=FhOryk1gcWc", "video_id": "video11504", "start time": 389.75, "end time": 405.15, "split": "test", "id": 11504}, {"category": 9, "url": "https://www.youtube.com/watch?v=b2v0-OdN78g", "video_id": "video12271", "start time": 31.01, "end time": 48.25, "split": "test", "id": 12271}, {"category": 9, "url": "https://www.youtube.com/watch?v=R7BCPias5VU", "video_id": "video12661", "start time": 26.55, "end time": 39.08, "split": "test", "id": 12661}, {"category": 6, "url": "https://www.youtube.com/watch?v=mg5GNAXa5E8", "video_id": "video12794", "start time": 18.27, "end time": 31.45, "split": "test", "id": 12794}, {"category": 17, "url": "https://www.youtube.com/watch?v=QFDdyZFRV38", "video_id": "video11111", "start time": 299.65, "end time": 318.47, "split": "test", "id": 11111}, {"category": 7, "url": "https://www.youtube.com/watch?v=r_DqoOlLmFE", "video_id": "video11004", "start time": 6.65, "end time": 22.15, "split": "test", "id": 11004}, {"category": 16, "url": "https://www.youtube.com/watch?v=ISRWhyfp3wE", "video_id": "video11423", "start time": 230.45, "end time": 247.25, "split": "test", "id": 11423}, {"category": 4, "url": "https://www.youtube.com/watch?v=4GejeUr2AMs", "video_id": "video11782", "start time": 415.65, "end time": 435.17, "split": "test", "id": 11782}, {"category": 18, "url": "https://www.youtube.com/watch?v=4HTIyOoZxng", "video_id": "video10453", "start time": 88.69, "end time": 111.69, "split": "test", "id": 10453}, {"category": 11, "url": "https://www.youtube.com/watch?v=s74HJw2zG-c", "video_id": "video10645", "start time": 90.0, "end time": 107.99, "split": "test", "id": 10645}, {"category": 19, "url": "https://www.youtube.com/watch?v=DSndlgKtfOc", "video_id": "video11975", "start time": 400.69, "end time": 424.17, "split": "test", "id": 11975}, {"category": 16, "url": "https://www.youtube.com/watch?v=GfKUJsnWCp4", "video_id": "video12270", "start time": 683.66, "end time": 694.68, "split": "test", "id": 12270}, {"category": 4, "url": "https://www.youtube.com/watch?v=2J41ZyYYFiI", "video_id": "video11378", "start time": 36.15, "end time": 56.24, "split": "test", "id": 11378}, {"category": 15, "url": "https://www.youtube.com/watch?v=oJAbATJCugs", "video_id": "video11804", "start time": 41.69, "end time": 58.17, "split": "test", "id": 11804}, {"category": 4, "url": "https://www.youtube.com/watch?v=nwJLodaMajI", "video_id": "video12768", "start time": 7.12, "end time": 36.02, "split": "test", "id": 12768}, {"category": 13, "url": "https://www.youtube.com/watch?v=jroy7TitePk", "video_id": "video11910", "start time": 7.93, "end time": 37.73, "split": "test", "id": 11910}, {"category": 8, "url": "https://www.youtube.com/watch?v=i8P63CSeB8Y", "video_id": "video12548", "start time": 15.02, "end time": 35.21, "split": "test", "id": 12548}, {"category": 7, "url": "https://www.youtube.com/watch?v=MM5U2BTPs78", "video_id": "video10021", "start time": 332.45, "end time": 352.6, "split": "test", "id": 10021}, {"category": 7, "url": "https://www.youtube.com/watch?v=0us39nID1_Q", "video_id": "video12835", "start time": 30.28, "end time": 42.09, "split": "test", "id": 12835}, {"category": 16, "url": "https://www.youtube.com/watch?v=5Ceg1QN56p0", "video_id": "video12874", "start time": 3.48, "end time": 21.5, "split": "test", "id": 12874}, {"category": 9, "url": "https://www.youtube.com/watch?v=mofieqgQePU", "video_id": "video11849", "start time": 362.28, "end time": 373.58, "split": "test", "id": 11849}, {"category": 11, "url": "https://www.youtube.com/watch?v=0HI8hpIFQBw", "video_id": "video10916", "start time": 0.0, "end time": 27.85, "split": "test", "id": 10916}, {"category": 16, "url": "https://www.youtube.com/watch?v=n2jG2c_ENQ4", "video_id": "video11637", "start time": 21.69, "end time": 32.83, "split": "test", "id": 11637}, {"category": 4, "url": "https://www.youtube.com/watch?v=G3dwhgXE2TE", "video_id": "video12283", "start time": 23.05, "end time": 48.25, "split": "test", "id": 12283}, {"category": 17, "url": "https://www.youtube.com/watch?v=MdBCZXYYXaY", "video_id": "video10888", "start time": 460.58, "end time": 484.78, "split": "test", "id": 10888}, {"category": 3, "url": "https://www.youtube.com/watch?v=oN0dpQRq6fw", "video_id": "video12535", "start time": 117.83, "end time": 129.61, "split": "test", "id": 12535}, {"category": 3, "url": "https://www.youtube.com/watch?v=JiOFL9vNIEs", "video_id": "video11128", "start time": 117.81, "end time": 128.55, "split": "test", "id": 11128}, {"category": 8, "url": "https://www.youtube.com/watch?v=KiaeLQnk38c", "video_id": "video11263", "start time": 34.63, "end time": 49.63, "split": "test", "id": 11263}, {"category": 12, "url": "https://www.youtube.com/watch?v=m8mbGH6b2cg", "video_id": "video12068", "start time": 15.86, "end time": 29.34, "split": "test", "id": 12068}, {"category": 12, "url": "https://www.youtube.com/watch?v=pNLUXL9fYaU", "video_id": "video11756", "start time": 0.0, "end time": 26.21, "split": "test", "id": 11756}, {"category": 9, "url": "https://www.youtube.com/watch?v=b66WVrhhneE", "video_id": "video10836", "start time": 28.18, "end time": 40.45, "split": "test", "id": 10836}, {"category": 8, "url": "https://www.youtube.com/watch?v=nlLiRRbHp_I", "video_id": "video10907", "start time": 90.85, "end time": 108.05, "split": "test", "id": 10907}, {"category": 7, "url": "https://www.youtube.com/watch?v=8SH16TuCYyE", "video_id": "video10043", "start time": 220.67, "end time": 232.88, "split": "test", "id": 10043}, {"category": 14, "url": "https://www.youtube.com/watch?v=3MBNhbsMbyA", "video_id": "video11929", "start time": 24.54, "end time": 45.33, "split": "test", "id": 11929}, {"category": 3, "url": "https://www.youtube.com/watch?v=GYqI0DRZ258", "video_id": "video11262", "start time": 7.49, "end time": 23.57, "split": "test", "id": 11262}, {"category": 13, "url": "https://www.youtube.com/watch?v=eCxwqromUhI", "video_id": "video12594", "start time": 181.5, "end time": 192.54, "split": "test", "id": 12594}, {"category": 7, "url": "https://www.youtube.com/watch?v=P2efxouZZB0", "video_id": "video10353", "start time": 327.11, "end time": 340.38, "split": "test", "id": 10353}, {"category": 7, "url": "https://www.youtube.com/watch?v=byOw4AYd7-8", "video_id": "video12603", "start time": 2.73, "end time": 17.93, "split": "test", "id": 12603}, {"category": 16, "url": "https://www.youtube.com/watch?v=8pEntm2HDgg", "video_id": "video10232", "start time": 55.47, "end time": 66.88, "split": "test", "id": 10232}, {"category": 12, "url": "https://www.youtube.com/watch?v=2y6UG2SHV64", "video_id": "video10721", "start time": 1499.71, "end time": 1509.99, "split": "test", "id": 10721}, {"category": 14, "url": "https://www.youtube.com/watch?v=bk0erH6bQqI", "video_id": "video11765", "start time": 100.01, "end time": 122.95, "split": "test", "id": 11765}, {"category": 4, "url": "https://www.youtube.com/watch?v=kP97pREMx4Y", "video_id": "video10087", "start time": 1.82, "end time": 17.23, "split": "test", "id": 10087}, {"category": 3, "url": "https://www.youtube.com/watch?v=RNrOI94nSTw", "video_id": "video12127", "start time": 108.74, "end time": 124.17, "split": "test", "id": 12127}, {"category": 5, "url": "https://www.youtube.com/watch?v=GTpwYCt2nqk", "video_id": "video11264", "start time": 398.65, "end time": 420.28, "split": "test", "id": 11264}, {"category": 9, "url": "https://www.youtube.com/watch?v=Ow3UOBHq5wU", "video_id": "video11456", "start time": 13.86, "end time": 29.91, "split": "test", "id": 11456}, {"category": 0, "url": "https://www.youtube.com/watch?v=jZjD0zbCVG0", "video_id": "video10047", "start time": 212.01, "end time": 227.41, "split": "test", "id": 10047}, {"category": 17, "url": "https://www.youtube.com/watch?v=oAy21ymZz-8", "video_id": "video12211", "start time": 257.27, "end time": 281.03, "split": "test", "id": 12211}, {"category": 13, "url": "https://www.youtube.com/watch?v=s5qrrfrDAcM", "video_id": "video10568", "start time": 18.73, "end time": 32.35, "split": "test", "id": 10568}, {"category": 10, "url": "https://www.youtube.com/watch?v=5FX5H72B71k", "video_id": "video10641", "start time": 403.78, "end time": 422.8, "split": "test", "id": 10641}, {"category": 7, "url": "https://www.youtube.com/watch?v=4RnVz7ECat0", "video_id": "video11271", "start time": 30.34, "end time": 43.09, "split": "test", "id": 11271}, {"category": 13, "url": "https://www.youtube.com/watch?v=e2lnAxLfuvA", "video_id": "video10475", "start time": 39.97, "end time": 57.01, "split": "test", "id": 10475}, {"category": 18, "url": "https://www.youtube.com/watch?v=5mxu18u0-Mc", "video_id": "video11610", "start time": 24.85, "end time": 41.73, "split": "test", "id": 11610}, {"category": 3, "url": "https://www.youtube.com/watch?v=NfmPcpi4sfc", "video_id": "video11160", "start time": 7.25, "end time": 33.29, "split": "test", "id": 11160}, {"category": 16, "url": "https://www.youtube.com/watch?v=IQJTrU2ps18", "video_id": "video10769", "start time": 132.57, "end time": 143.93, "split": "test", "id": 10769}, {"category": 17, "url": "https://www.youtube.com/watch?v=8719aOUXxVM", "video_id": "video12610", "start time": 181.83, "end time": 194.91, "split": "test", "id": 12610}, {"category": 17, "url": "https://www.youtube.com/watch?v=aZdFSp-rsR4", "video_id": "video12332", "start time": 38.22, "end time": 50.3, "split": "test", "id": 12332}, {"category": 4, "url": "https://www.youtube.com/watch?v=BY_jtGXG5dI", "video_id": "video10837", "start time": 33.11, "end time": 43.82, "split": "test", "id": 10837}, {"category": 12, "url": "https://www.youtube.com/watch?v=l5Snh0K8yQM", "video_id": "video11064", "start time": 93.63, "end time": 117.13, "split": "test", "id": 11064}, {"category": 6, "url": "https://www.youtube.com/watch?v=6zM-h8-_egQ", "video_id": "video10859", "start time": 0.0, "end time": 14.09, "split": "test", "id": 10859}, {"category": 9, "url": "https://www.youtube.com/watch?v=aD82h6ca_uw", "video_id": "video11629", "start time": 0.0, "end time": 10.69, "split": "test", "id": 11629}, {"category": 0, "url": "https://www.youtube.com/watch?v=OPf0YbXqDm0", "video_id": "video10212", "start time": 113.62, "end time": 124.55, "split": "test", "id": 10212}, {"category": 16, "url": "https://www.youtube.com/watch?v=B3lAmzDrPCc", "video_id": "video11402", "start time": 202.58, "end time": 220.85, "split": "test", "id": 11402}, {"category": 17, "url": "https://www.youtube.com/watch?v=6_cnGT0T7uU", "video_id": "video12498", "start time": 25.57, "end time": 48.93, "split": "test", "id": 12498}, {"category": 17, "url": "https://www.youtube.com/watch?v=ip2-IinMpp0", "video_id": "video10286", "start time": 174.39, "end time": 186.8, "split": "test", "id": 10286}, {"category": 18, "url": "https://www.youtube.com/watch?v=KzTfGNf8jDg", "video_id": "video12380", "start time": 378.49, "end time": 407.81, "split": "test", "id": 12380}, {"category": 11, "url": "https://www.youtube.com/watch?v=NhMRTg_QIhY", "video_id": "video11097", "start time": 57.87, "end time": 71.85, "split": "test", "id": 11097}, {"category": 7, "url": "https://www.youtube.com/watch?v=OX8cTtOEEyI", "video_id": "video12538", "start time": 76.99, "end time": 90.74, "split": "test", "id": 12538}, {"category": 9, "url": "https://www.youtube.com/watch?v=RvBQOadJdKs", "video_id": "video11960", "start time": 102.35, "end time": 114.8, "split": "test", "id": 11960}, {"category": 11, "url": "https://www.youtube.com/watch?v=jPyYGw9Jn6w", "video_id": "video10198", "start time": 182.65, "end time": 194.53, "split": "test", "id": 10198}, {"category": 6, "url": "https://www.youtube.com/watch?v=6OnPxoctb6w", "video_id": "video11652", "start time": 90.29, "end time": 100.29, "split": "test", "id": 11652}, {"category": 7, "url": "https://www.youtube.com/watch?v=CZtQSN7WqfQ", "video_id": "video10884", "start time": 46.36, "end time": 56.87, "split": "test", "id": 10884}, {"category": 3, "url": "https://www.youtube.com/watch?v=CwJ4eBWalFo", "video_id": "video12312", "start time": 72.87, "end time": 88.39, "split": "test", "id": 12312}, {"category": 18, "url": "https://www.youtube.com/watch?v=B7LSdEndZ9k", "video_id": "video11764", "start time": 241.21, "end time": 257.65, "split": "test", "id": 11764}, {"category": 16, "url": "https://www.youtube.com/watch?v=nDcRxKimV4M", "video_id": "video10023", "start time": 92.71, "end time": 109.62, "split": "test", "id": 10023}, {"category": 4, "url": "https://www.youtube.com/watch?v=KEkEV0KsWdg", "video_id": "video10536", "start time": 0.0, "end time": 15.03, "split": "test", "id": 10536}, {"category": 16, "url": "https://www.youtube.com/watch?v=kZVYWH_visk", "video_id": "video12939", "start time": 393.09, "end time": 416.61, "split": "test", "id": 12939}, {"category": 2, "url": "https://www.youtube.com/watch?v=qC9jx3FcMoc", "video_id": "video12444", "start time": 636.92, "end time": 657.87, "split": "test", "id": 12444}, {"category": 12, "url": "https://www.youtube.com/watch?v=6xsvGYIxJok", "video_id": "video10827", "start time": 130.94, "end time": 145.76, "split": "test", "id": 10827}, {"category": 12, "url": "https://www.youtube.com/watch?v=9PUPcsEEoNE", "video_id": "video12197", "start time": 425.45, "end time": 445.05, "split": "test", "id": 12197}, {"category": 15, "url": "https://www.youtube.com/watch?v=rxr523hsp6g", "video_id": "video12060", "start time": 177.65, "end time": 193.45, "split": "test", "id": 12060}, {"category": 1, "url": "https://www.youtube.com/watch?v=8viCMgv8wjE", "video_id": "video11125", "start time": 25.93, "end time": 36.53, "split": "test", "id": 11125}, {"category": 6, "url": "https://www.youtube.com/watch?v=kpfG7vRt8bI", "video_id": "video10914", "start time": 59.27, "end time": 72.25, "split": "test", "id": 10914}, {"category": 16, "url": "https://www.youtube.com/watch?v=k2W20b13XzA", "video_id": "video11898", "start time": 158.78, "end time": 175.48, "split": "test", "id": 11898}, {"category": 0, "url": "https://www.youtube.com/watch?v=fRh_vgS2dFE", "video_id": "video12695", "start time": 76.92, "end time": 94.77, "split": "test", "id": 12695}, {"category": 13, "url": "https://www.youtube.com/watch?v=p0s9Wg4X3pE", "video_id": "video11722", "start time": 12.95, "end time": 40.28, "split": "test", "id": 11722}, {"category": 5, "url": "https://www.youtube.com/watch?v=L0k-enzoeOM", "video_id": "video11244", "start time": 330.04, "end time": 357.78, "split": "test", "id": 11244}, {"category": 16, "url": "https://www.youtube.com/watch?v=EUT98DDbxU0", "video_id": "video11859", "start time": 42.85, "end time": 56.41, "split": "test", "id": 11859}, {"category": 16, "url": "https://www.youtube.com/watch?v=AbxawhRMt_g", "video_id": "video11620", "start time": 114.95, "end time": 127.95, "split": "test", "id": 11620}, {"category": 16, "url": "https://www.youtube.com/watch?v=lk-PERKDAb0", "video_id": "video10119", "start time": 76.78, "end time": 92.61, "split": "test", "id": 10119}, {"category": 19, "url": "https://www.youtube.com/watch?v=RBX2Sab-6zs", "video_id": "video11715", "start time": 110.41, "end time": 125.05, "split": "test", "id": 11715}, {"category": 14, "url": "https://www.youtube.com/watch?v=FT-Q2y3AgJ0", "video_id": "video12772", "start time": 169.41, "end time": 189.49, "split": "test", "id": 12772}, {"category": 11, "url": "https://www.youtube.com/watch?v=QuchZjKUBj0", "video_id": "video10157", "start time": 62.23, "end time": 74.71, "split": "test", "id": 10157}, {"category": 12, "url": "https://www.youtube.com/watch?v=jG5NcJcVXok", "video_id": "video12487", "start time": 819.98, "end time": 833.11, "split": "test", "id": 12487}, {"category": 2, "url": "https://www.youtube.com/watch?v=gat4PR9tCzE", "video_id": "video11415", "start time": 552.11, "end time": 576.95, "split": "test", "id": 11415}, {"category": 7, "url": "https://www.youtube.com/watch?v=HaOzdfn_FPQ", "video_id": "video12798", "start time": 73.57, "end time": 85.39, "split": "test", "id": 12798}, {"category": 7, "url": "https://www.youtube.com/watch?v=gUdXcqA4aT8", "video_id": "video11223", "start time": 37.95, "end time": 62.71, "split": "test", "id": 11223}, {"category": 6, "url": "https://www.youtube.com/watch?v=mMySddOaxhU", "video_id": "video12161", "start time": 8.29, "end time": 18.57, "split": "test", "id": 12161}, {"category": 16, "url": "https://www.youtube.com/watch?v=5gBWb5k6V2w", "video_id": "video11997", "start time": 3.06, "end time": 25.68, "split": "test", "id": 11997}, {"category": 6, "url": "https://www.youtube.com/watch?v=k4oYQ_7oMXs", "video_id": "video11583", "start time": 47.89, "end time": 71.09, "split": "test", "id": 11583}, {"category": 16, "url": "https://www.youtube.com/watch?v=HoCPQurAWVE", "video_id": "video11751", "start time": 224.64, "end time": 245.73, "split": "test", "id": 11751}, {"category": 16, "url": "https://www.youtube.com/watch?v=44uBq9J_3Ug", "video_id": "video10544", "start time": 94.09, "end time": 117.21, "split": "test", "id": 10544}, {"category": 4, "url": "https://www.youtube.com/watch?v=PACH0XKozuU", "video_id": "video10767", "start time": 32.17, "end time": 49.53, "split": "test", "id": 10767}, {"category": 17, "url": "https://www.youtube.com/watch?v=5EeI529gzCI", "video_id": "video10789", "start time": 695.89, "end time": 721.25, "split": "test", "id": 10789}, {"category": 13, "url": "https://www.youtube.com/watch?v=3wU-mSfpVUY", "video_id": "video11325", "start time": 109.02, "end time": 130.28, "split": "test", "id": 11325}, {"category": 16, "url": "https://www.youtube.com/watch?v=6GE2gt-eKpU", "video_id": "video10611", "start time": 31.51, "end time": 48.8, "split": "test", "id": 10611}, {"category": 16, "url": "https://www.youtube.com/watch?v=17CSrovGOwk", "video_id": "video12044", "start time": 1.41, "end time": 15.05, "split": "test", "id": 12044}, {"category": 11, "url": "https://www.youtube.com/watch?v=9RMR4PauMvM", "video_id": "video11536", "start time": 46.37, "end time": 56.49, "split": "test", "id": 11536}, {"category": 4, "url": "https://www.youtube.com/watch?v=1IJ7ZBGSykA", "video_id": "video11073", "start time": 160.05, "end time": 180.05, "split": "test", "id": 11073}, {"category": 18, "url": "https://www.youtube.com/watch?v=NmiLhmP8774", "video_id": "video12504", "start time": 95.64, "end time": 107.22, "split": "test", "id": 12504}, {"category": 4, "url": "https://www.youtube.com/watch?v=ejwmepTZcDo", "video_id": "video12087", "start time": 0.0, "end time": 23.15, "split": "test", "id": 12087}, {"category": 11, "url": "https://www.youtube.com/watch?v=58iT2L4VQj4", "video_id": "video12571", "start time": 290.37, "end time": 306.52, "split": "test", "id": 12571}, {"category": 16, "url": "https://www.youtube.com/watch?v=9j5CvMaKu2s", "video_id": "video10006", "start time": 184.89, "end time": 206.37, "split": "test", "id": 10006}, {"category": 14, "url": "https://www.youtube.com/watch?v=39nmX3yZHcg", "video_id": "video10401", "start time": 136.52, "end time": 149.73, "split": "test", "id": 10401}, {"category": 6, "url": "https://www.youtube.com/watch?v=6dsw8cVFDlM", "video_id": "video12455", "start time": 10.96, "end time": 24.41, "split": "test", "id": 12455}, {"category": 12, "url": "https://www.youtube.com/watch?v=6TLAIokN71g", "video_id": "video11503", "start time": 137.06, "end time": 155.58, "split": "test", "id": 11503}, {"category": 3, "url": "https://www.youtube.com/watch?v=NXdLSohJhgQ", "video_id": "video10062", "start time": 132.91, "end time": 152.33, "split": "test", "id": 10062}, {"category": 18, "url": "https://www.youtube.com/watch?v=L1YYZLKvgsg", "video_id": "video11465", "start time": 62.44, "end time": 74.82, "split": "test", "id": 11465}, {"category": 3, "url": "https://www.youtube.com/watch?v=B2DzH35VP18", "video_id": "video11900", "start time": 71.52, "end time": 85.1, "split": "test", "id": 11900}, {"category": 3, "url": "https://www.youtube.com/watch?v=Gm4mVDDOZEU", "video_id": "video10851", "start time": 2.05, "end time": 29.77, "split": "test", "id": 10851}, {"category": 17, "url": "https://www.youtube.com/watch?v=DLjYCEseWUo", "video_id": "video12072", "start time": 28.34, "end time": 55.34, "split": "test", "id": 12072}, {"category": 13, "url": "https://www.youtube.com/watch?v=AW7PmjoU-rs", "video_id": "video11219", "start time": 126.31, "end time": 146.23, "split": "test", "id": 11219}, {"category": 7, "url": "https://www.youtube.com/watch?v=GtgP1HUdsCs", "video_id": "video10410", "start time": 23.07, "end time": 40.55, "split": "test", "id": 10410}, {"category": 18, "url": "https://www.youtube.com/watch?v=j-bwhrCtVzA", "video_id": "video11189", "start time": 455.81, "end time": 477.21, "split": "test", "id": 11189}, {"category": 12, "url": "https://www.youtube.com/watch?v=S1vFrz4NETg", "video_id": "video12834", "start time": 0.0, "end time": 10.52, "split": "test", "id": 12834}, {"category": 16, "url": "https://www.youtube.com/watch?v=HPNZi_WsUeY", "video_id": "video12890", "start time": 73.29, "end time": 98.29, "split": "test", "id": 12890}, {"category": 9, "url": "https://www.youtube.com/watch?v=oBB4t1mvdoE", "video_id": "video12677", "start time": 109.13, "end time": 122.53, "split": "test", "id": 12677}, {"category": 0, "url": "https://www.youtube.com/watch?v=iWGEwmaE55U", "video_id": "video10822", "start time": 2.25, "end time": 20.01, "split": "test", "id": 10822}, {"category": 16, "url": "https://www.youtube.com/watch?v=hKxlnzR67dg", "video_id": "video12404", "start time": 164.75, "end time": 181.15, "split": "test", "id": 12404}, {"category": 16, "url": "https://www.youtube.com/watch?v=1XB9RzpCW28", "video_id": "video11206", "start time": 227.61, "end time": 244.13, "split": "test", "id": 11206}, {"category": 7, "url": "https://www.youtube.com/watch?v=7aYqxCP6tX8", "video_id": "video11609", "start time": 51.72, "end time": 68.41, "split": "test", "id": 11609}, {"category": 11, "url": "https://www.youtube.com/watch?v=6BiEbyfQnw0", "video_id": "video12876", "start time": 91.29, "end time": 102.21, "split": "test", "id": 12876}, {"category": 3, "url": "https://www.youtube.com/watch?v=RyFeIA2rynA", "video_id": "video10663", "start time": 9.86, "end time": 24.2, "split": "test", "id": 10663}, {"category": 18, "url": "https://www.youtube.com/watch?v=bFrV3yCgqPY", "video_id": "video12525", "start time": 194.01, "end time": 205.81, "split": "test", "id": 12525}, {"category": 14, "url": "https://www.youtube.com/watch?v=qoQssWPRNR0", "video_id": "video11700", "start time": 30.54, "end time": 46.09, "split": "test", "id": 11700}, {"category": 17, "url": "https://www.youtube.com/watch?v=-yjNQndZJCs", "video_id": "video11276", "start time": 191.84, "end time": 209.46, "split": "test", "id": 11276}, {"category": 19, "url": "https://www.youtube.com/watch?v=3a4yM_wPvAo", "video_id": "video10103", "start time": 5.82, "end time": 29.24, "split": "test", "id": 10103}, {"category": 8, "url": "https://www.youtube.com/watch?v=OcpW6LFSLog", "video_id": "video11331", "start time": 109.42, "end time": 119.57, "split": "test", "id": 11331}, {"category": 11, "url": "https://www.youtube.com/watch?v=AA-knrlG36g", "video_id": "video12936", "start time": 125.76, "end time": 154.7, "split": "test", "id": 12936}, {"category": 3, "url": "https://www.youtube.com/watch?v=7r5u819B0Es", "video_id": "video11980", "start time": 37.22, "end time": 57.91, "split": "test", "id": 11980}, {"category": 13, "url": "https://www.youtube.com/watch?v=jcAPwsXQznU", "video_id": "video11932", "start time": 230.28, "end time": 257.68, "split": "test", "id": 11932}, {"category": 3, "url": "https://www.youtube.com/watch?v=FBXWY9YTd6o", "video_id": "video12348", "start time": 649.08, "end time": 674.08, "split": "test", "id": 12348}, {"category": 13, "url": "https://www.youtube.com/watch?v=HH8B5AuOSe0", "video_id": "video10865", "start time": 341.6, "end time": 366.87, "split": "test", "id": 10865}, {"category": 10, "url": "https://www.youtube.com/watch?v=KthjI2mMkFc", "video_id": "video11879", "start time": 14.4, "end time": 34.96, "split": "test", "id": 11879}, {"category": 11, "url": "https://www.youtube.com/watch?v=L-VN995ejys", "video_id": "video10432", "start time": 435.62, "end time": 455.2, "split": "test", "id": 10432}, {"category": 15, "url": "https://www.youtube.com/watch?v=HKiRlZEbnxg", "video_id": "video11952", "start time": 91.25, "end time": 115.21, "split": "test", "id": 11952}, {"category": 2, "url": "https://www.youtube.com/watch?v=pxKP0vn4sik", "video_id": "video10002", "start time": 643.12, "end time": 657.97, "split": "test", "id": 10002}, {"category": 5, "url": "https://www.youtube.com/watch?v=9UvlqAVCoqY", "video_id": "video10164", "start time": 304.35, "end time": 317.74, "split": "test", "id": 10164}, {"category": 4, "url": "https://www.youtube.com/watch?v=7fSPx-2il2I", "video_id": "video12486", "start time": 7.12, "end time": 23.5, "split": "test", "id": 12486}, {"category": 16, "url": "https://www.youtube.com/watch?v=eCrog2JWRh0", "video_id": "video12524", "start time": 103.97, "end time": 116.09, "split": "test", "id": 12524}, {"category": 4, "url": "https://www.youtube.com/watch?v=oWELeb575sE", "video_id": "video11352", "start time": 0.0, "end time": 26.65, "split": "test", "id": 11352}, {"category": 17, "url": "https://www.youtube.com/watch?v=5XhhujEih-A", "video_id": "video12460", "start time": 9.27, "end time": 23.07, "split": "test", "id": 12460}, {"category": 19, "url": "https://www.youtube.com/watch?v=DKL4X0PZz7M", "video_id": "video11365", "start time": 171.43, "end time": 181.52, "split": "test", "id": 11365}, {"category": 3, "url": "https://www.youtube.com/watch?v=RiiCp32F7nk", "video_id": "video11941", "start time": 89.09, "end time": 102.65, "split": "test", "id": 11941}, {"category": 0, "url": "https://www.youtube.com/watch?v=OmLNs6zQIHo", "video_id": "video10110", "start time": 73.97, "end time": 92.77, "split": "test", "id": 10110}, {"category": 17, "url": "https://www.youtube.com/watch?v=QUgiD6vdG9g", "video_id": "video10820", "start time": 138.75, "end time": 166.21, "split": "test", "id": 10820}, {"category": 12, "url": "https://www.youtube.com/watch?v=hVwBTWYwwsg", "video_id": "video12437", "start time": 43.0, "end time": 53.44, "split": "test", "id": 12437}, {"category": 18, "url": "https://www.youtube.com/watch?v=QLqfmNlY0Lk", "video_id": "video11044", "start time": 150.8, "end time": 166.51, "split": "test", "id": 11044}, {"category": 5, "url": "https://www.youtube.com/watch?v=3B_1itqCKHo", "video_id": "video11406", "start time": 231.88, "end time": 244.17, "split": "test", "id": 11406}, {"category": 17, "url": "https://www.youtube.com/watch?v=PVr3J3J4LYk", "video_id": "video12806", "start time": 15.66, "end time": 27.27, "split": "test", "id": 12806}, {"category": 3, "url": "https://www.youtube.com/watch?v=MhVh0KB3YVM", "video_id": "video10443", "start time": 23.67, "end time": 49.23, "split": "test", "id": 10443}, {"category": 13, "url": "https://www.youtube.com/watch?v=aIrNwzjZIoU", "video_id": "video11083", "start time": 13.49, "end time": 29.04, "split": "test", "id": 11083}, {"category": 18, "url": "https://www.youtube.com/watch?v=KWFWoHr89Tk", "video_id": "video10488", "start time": 42.99, "end time": 54.03, "split": "test", "id": 10488}, {"category": 4, "url": "https://www.youtube.com/watch?v=27FBUpokmIo", "video_id": "video10317", "start time": 85.01, "end time": 104.89, "split": "test", "id": 10317}, {"category": 16, "url": "https://www.youtube.com/watch?v=PtoXVkKxuSo", "video_id": "video12408", "start time": 0.0, "end time": 13.73, "split": "test", "id": 12408}, {"category": 10, "url": "https://www.youtube.com/watch?v=Hk9ll6YABGg", "video_id": "video12335", "start time": 288.77, "end time": 301.78, "split": "test", "id": 12335}, {"category": 12, "url": "https://www.youtube.com/watch?v=0eYbNYvZZoc", "video_id": "video12584", "start time": 22.17, "end time": 49.3, "split": "test", "id": 12584}, {"category": 18, "url": "https://www.youtube.com/watch?v=EuxdQu6wt5Y", "video_id": "video12526", "start time": 21.45, "end time": 36.29, "split": "test", "id": 12526}, {"category": 7, "url": "https://www.youtube.com/watch?v=5Uoy6xy5AFM", "video_id": "video10482", "start time": 2.58, "end time": 29.48, "split": "test", "id": 10482}, {"category": 2, "url": "https://www.youtube.com/watch?v=88UXRsEoE7c", "video_id": "video10609", "start time": 190.07, "end time": 210.19, "split": "test", "id": 10609}, {"category": 1, "url": "https://www.youtube.com/watch?v=k-pX5YJJnRE", "video_id": "video12766", "start time": 317.41, "end time": 328.71, "split": "test", "id": 12766}, {"category": 3, "url": "https://www.youtube.com/watch?v=BbEArJSqVdw", "video_id": "video11807", "start time": 177.89, "end time": 188.37, "split": "test", "id": 11807}, {"category": 5, "url": "https://www.youtube.com/watch?v=CHxhjDPKfbY", "video_id": "video10250", "start time": 331.42, "end time": 360.91, "split": "test", "id": 10250}, {"category": 7, "url": "https://www.youtube.com/watch?v=bywq8rdNBe8", "video_id": "video11571", "start time": 148.03, "end time": 165.88, "split": "test", "id": 11571}, {"category": 13, "url": "https://www.youtube.com/watch?v=JxxUJ-54PhQ", "video_id": "video12819", "start time": 0.0, "end time": 13.16, "split": "test", "id": 12819}, {"category": 13, "url": "https://www.youtube.com/watch?v=AeV76hKvZdI", "video_id": "video10008", "start time": 86.43, "end time": 99.11, "split": "test", "id": 10008}, {"category": 5, "url": "https://www.youtube.com/watch?v=e5Bp6pXSOVk", "video_id": "video11877", "start time": 25.51, "end time": 40.55, "split": "test", "id": 11877}, {"category": 0, "url": "https://www.youtube.com/watch?v=MqkdHsH49hE", "video_id": "video12957", "start time": 71.72, "end time": 92.97, "split": "test", "id": 12957}, {"category": 18, "url": "https://www.youtube.com/watch?v=R1hnqNvuY4c", "video_id": "video11717", "start time": 230.69, "end time": 241.61, "split": "test", "id": 11717}, {"category": 7, "url": "https://www.youtube.com/watch?v=5ViIDcb1QoY", "video_id": "video11255", "start time": 149.81, "end time": 163.81, "split": "test", "id": 11255}, {"category": 18, "url": "https://www.youtube.com/watch?v=PjlHAZoJ3t4", "video_id": "video10537", "start time": 97.38, "end time": 111.76, "split": "test", "id": 10537}, {"category": 7, "url": "https://www.youtube.com/watch?v=bJyTdkyo8R4", "video_id": "video11026", "start time": 208.55, "end time": 228.07, "split": "test", "id": 11026}, {"category": 17, "url": "https://www.youtube.com/watch?v=1N0CkxncLfM", "video_id": "video11562", "start time": 157.58, "end time": 172.34, "split": "test", "id": 11562}, {"category": 9, "url": "https://www.youtube.com/watch?v=FFeff8zjwyk", "video_id": "video11138", "start time": 274.05, "end time": 295.24, "split": "test", "id": 11138}, {"category": 16, "url": "https://www.youtube.com/watch?v=eCXP3IKWknY", "video_id": "video11533", "start time": 60.21, "end time": 74.65, "split": "test", "id": 11533}, {"category": 7, "url": "https://www.youtube.com/watch?v=2oBj6IK3DK0", "video_id": "video12453", "start time": 135.89, "end time": 148.61, "split": "test", "id": 12453}, {"category": 9, "url": "https://www.youtube.com/watch?v=EjnG3Tmo4UE", "video_id": "video11798", "start time": 49.05, "end time": 65.41, "split": "test", "id": 11798}, {"category": 3, "url": "https://www.youtube.com/watch?v=bSCakV5sASw", "video_id": "video10572", "start time": 44.63, "end time": 60.54, "split": "test", "id": 10572}, {"category": 12, "url": "https://www.youtube.com/watch?v=c9emsq6brQY", "video_id": "video10564", "start time": 0.0, "end time": 10.45, "split": "test", "id": 10564}, {"category": 0, "url": "https://www.youtube.com/watch?v=il-NdjTtUAI", "video_id": "video10373", "start time": 188.6, "end time": 207.79, "split": "test", "id": 10373}, {"category": 3, "url": "https://www.youtube.com/watch?v=rATcnHf7Plg", "video_id": "video11649", "start time": 132.85, "end time": 159.04, "split": "test", "id": 11649}, {"category": 18, "url": "https://www.youtube.com/watch?v=1z-uD3_uOFs", "video_id": "video10415", "start time": 22.77, "end time": 36.48, "split": "test", "id": 10415}, {"category": 7, "url": "https://www.youtube.com/watch?v=ahoYh_rxtX8", "video_id": "video10273", "start time": 83.92, "end time": 110.66, "split": "test", "id": 10273}, {"category": 8, "url": "https://www.youtube.com/watch?v=FV0UkVo0qI8", "video_id": "video10151", "start time": 40.45, "end time": 61.45, "split": "test", "id": 10151}, {"category": 17, "url": "https://www.youtube.com/watch?v=HRf_DHQR-Jk", "video_id": "video10745", "start time": 272.35, "end time": 290.47, "split": "test", "id": 10745}, {"category": 0, "url": "https://www.youtube.com/watch?v=PGc9n6BiWXA", "video_id": "video10187", "start time": 65.9, "end time": 81.17, "split": "test", "id": 10187}, {"category": 2, "url": "https://www.youtube.com/watch?v=qInNb52Mq9A", "video_id": "video11776", "start time": 4.75, "end time": 16.85, "split": "test", "id": 11776}, {"category": 11, "url": "https://www.youtube.com/watch?v=4AQVNVC8UPg", "video_id": "video12201", "start time": 0.0, "end time": 12.05, "split": "test", "id": 12201}, {"category": 12, "url": "https://www.youtube.com/watch?v=rUitWd5auWg", "video_id": "video11143", "start time": 58.05, "end time": 76.97, "split": "test", "id": 11143}, {"category": 7, "url": "https://www.youtube.com/watch?v=1sFbbFkTg00", "video_id": "video10798", "start time": 11.35, "end time": 23.78, "split": "test", "id": 10798}, {"category": 7, "url": "https://www.youtube.com/watch?v=-2cRY4p7KIk", "video_id": "video12373", "start time": 8.01, "end time": 25.49, "split": "test", "id": 12373}, {"category": 7, "url": "https://www.youtube.com/watch?v=bMeI7ieN0QQ", "video_id": "video10915", "start time": 56.26, "end time": 67.09, "split": "test", "id": 10915}, {"category": 14, "url": "https://www.youtube.com/watch?v=-oiqiYdWXiM", "video_id": "video10045", "start time": 93.31, "end time": 114.93, "split": "test", "id": 10045}, {"category": 2, "url": "https://www.youtube.com/watch?v=7SFvZ15CpcU", "video_id": "video12410", "start time": 39.02, "end time": 59.47, "split": "test", "id": 12410}, {"category": 13, "url": "https://www.youtube.com/watch?v=AfoDmzDvgTs", "video_id": "video10154", "start time": 287.51, "end time": 310.55, "split": "test", "id": 10154}, {"category": 6, "url": "https://www.youtube.com/watch?v=jjVCCFwfHF8", "video_id": "video11612", "start time": 5.85, "end time": 33.21, "split": "test", "id": 11612}, {"category": 15, "url": "https://www.youtube.com/watch?v=jeZ7QYq3tzs", "video_id": "video12223", "start time": 676.61, "end time": 691.97, "split": "test", "id": 12223}, {"category": 12, "url": "https://www.youtube.com/watch?v=ee1BOAGYUiw", "video_id": "video11159", "start time": 60.27, "end time": 71.35, "split": "test", "id": 11159}, {"category": 7, "url": "https://www.youtube.com/watch?v=nIewKn6EnAs", "video_id": "video10034", "start time": 77.54, "end time": 100.44, "split": "test", "id": 10034}, {"category": 9, "url": "https://www.youtube.com/watch?v=aby1mtejx7s", "video_id": "video10571", "start time": 77.71, "end time": 105.71, "split": "test", "id": 10571}, {"category": 12, "url": "https://www.youtube.com/watch?v=avtH7K_h-Rg", "video_id": "video12227", "start time": 705.49, "end time": 716.6, "split": "test", "id": 12227}, {"category": 18, "url": "https://www.youtube.com/watch?v=6dQiKx8PQHg", "video_id": "video11542", "start time": 67.3, "end time": 87.75, "split": "test", "id": 11542}, {"category": 3, "url": "https://www.youtube.com/watch?v=NlJvaMyGMoI", "video_id": "video12529", "start time": 35.48, "end time": 64.21, "split": "test", "id": 12529}, {"category": 3, "url": "https://www.youtube.com/watch?v=hFmwg31Kiw0", "video_id": "video10285", "start time": 91.81, "end time": 115.36, "split": "test", "id": 10285}, {"category": 12, "url": "https://www.youtube.com/watch?v=lsXG1xsinqc", "video_id": "video11880", "start time": 53.65, "end time": 75.89, "split": "test", "id": 11880}, {"category": 18, "url": "https://www.youtube.com/watch?v=F_pi5NXixUA", "video_id": "video12999", "start time": 135.38, "end time": 159.64, "split": "test", "id": 12999}, {"category": 7, "url": "https://www.youtube.com/watch?v=kmMPNJWJDek", "video_id": "video11595", "start time": 143.52, "end time": 160.57, "split": "test", "id": 11595}, {"category": 6, "url": "https://www.youtube.com/watch?v=dM3JgQ1iFdU", "video_id": "video12247", "start time": 200.81, "end time": 214.56, "split": "test", "id": 12247}, {"category": 7, "url": "https://www.youtube.com/watch?v=2DpApMCwSSU", "video_id": "video12326", "start time": 17.31, "end time": 30.08, "split": "test", "id": 12326}, {"category": 8, "url": "https://www.youtube.com/watch?v=BBpL2bQis3c", "video_id": "video11995", "start time": 0.0, "end time": 26.65, "split": "test", "id": 11995}, {"category": 12, "url": "https://www.youtube.com/watch?v=JuJ1y_rm5XY", "video_id": "video12875", "start time": 39.95, "end time": 50.73, "split": "test", "id": 12875}, {"category": 9, "url": "https://www.youtube.com/watch?v=4uI3uMw2EIg", "video_id": "video12387", "start time": 0.0, "end time": 20.46, "split": "test", "id": 12387}, {"category": 10, "url": "https://www.youtube.com/watch?v=PHpVkNHAXm8", "video_id": "video10112", "start time": 125.45, "end time": 153.45, "split": "test", "id": 10112}, {"category": 9, "url": "https://www.youtube.com/watch?v=dNFaAqS2f18", "video_id": "video11216", "start time": 12.51, "end time": 41.88, "split": "test", "id": 11216}, {"category": 16, "url": "https://www.youtube.com/watch?v=OEfzgobszUA", "video_id": "video12378", "start time": 127.78, "end time": 155.7, "split": "test", "id": 12378}, {"category": 1, "url": "https://www.youtube.com/watch?v=K0Ak4V2nB_4", "video_id": "video12113", "start time": 49.46, "end time": 63.54, "split": "test", "id": 12113}, {"category": 0, "url": "https://www.youtube.com/watch?v=bESGLojNYSo", "video_id": "video11432", "start time": 35.79, "end time": 57.23, "split": "test", "id": 11432}, {"category": 13, "url": "https://www.youtube.com/watch?v=ObsVd34i_7s", "video_id": "video10920", "start time": 199.21, "end time": 210.36, "split": "test", "id": 10920}, {"category": 1, "url": "https://www.youtube.com/watch?v=J6RBWJiI8kI", "video_id": "video12236", "start time": 297.17, "end time": 323.09, "split": "test", "id": 12236}, {"category": 3, "url": "https://www.youtube.com/watch?v=OpR--MpTqn4", "video_id": "video12328", "start time": 25.26, "end time": 43.71, "split": "test", "id": 12328}, {"category": 12, "url": "https://www.youtube.com/watch?v=4qV4WAf-oP4", "video_id": "video10861", "start time": 131.21, "end time": 142.58, "split": "test", "id": 10861}, {"category": 14, "url": "https://www.youtube.com/watch?v=6QEPrDBMqJ0", "video_id": "video12754", "start time": 156.4, "end time": 173.85, "split": "test", "id": 12754}, {"category": 16, "url": "https://www.youtube.com/watch?v=13qypfoWkak", "video_id": "video11790", "start time": 13.58, "end time": 29.28, "split": "test", "id": 11790}, {"category": 6, "url": "https://www.youtube.com/watch?v=gNsgnvZ68Jg", "video_id": "video12725", "start time": 26.97, "end time": 50.29, "split": "test", "id": 12725}, {"category": 6, "url": "https://www.youtube.com/watch?v=eTWCd0hrEek", "video_id": "video12011", "start time": 329.61, "end time": 346.36, "split": "test", "id": 12011}, {"category": 16, "url": "https://www.youtube.com/watch?v=Hycco0mmFaI", "video_id": "video12765", "start time": 158.33, "end time": 180.45, "split": "test", "id": 12765}, {"category": 18, "url": "https://www.youtube.com/watch?v=JqUfd8R_fXQ", "video_id": "video11633", "start time": 59.37, "end time": 72.95, "split": "test", "id": 11633}, {"category": 12, "url": "https://www.youtube.com/watch?v=nadpcadav1I", "video_id": "video10738", "start time": 193.84, "end time": 223.67, "split": "test", "id": 10738}, {"category": 2, "url": "https://www.youtube.com/watch?v=aP1OgNOkwYc", "video_id": "video12823", "start time": 267.77, "end time": 281.45, "split": "test", "id": 12823}, {"category": 16, "url": "https://www.youtube.com/watch?v=1CTbDVW14Uo", "video_id": "video12310", "start time": 150.97, "end time": 178.05, "split": "test", "id": 12310}, {"category": 9, "url": "https://www.youtube.com/watch?v=HoHFRCV4VxU", "video_id": "video12797", "start time": 492.88, "end time": 513.48, "split": "test", "id": 12797}, {"category": 13, "url": "https://www.youtube.com/watch?v=1urgPiu14UQ", "video_id": "video12814", "start time": 148.01, "end time": 162.73, "split": "test", "id": 12814}, {"category": 11, "url": "https://www.youtube.com/watch?v=aiUhI1VDfm8", "video_id": "video10782", "start time": 8.77, "end time": 27.29, "split": "test", "id": 10782}, {"category": 7, "url": "https://www.youtube.com/watch?v=N09q0Enrun0", "video_id": "video10598", "start time": 146.61, "end time": 160.71, "split": "test", "id": 10598}, {"category": 11, "url": "https://www.youtube.com/watch?v=RGTpFM4zM9k", "video_id": "video10703", "start time": 184.48, "end time": 199.51, "split": "test", "id": 10703}, {"category": 4, "url": "https://www.youtube.com/watch?v=qVbfMWorK2o", "video_id": "video10746", "start time": 103.13, "end time": 115.93, "split": "test", "id": 10746}, {"category": 7, "url": "https://www.youtube.com/watch?v=13Th0S1e2ag", "video_id": "video11146", "start time": 15.1, "end time": 37.33, "split": "test", "id": 11146}, {"category": 9, "url": "https://www.youtube.com/watch?v=P7_pPiDksI0", "video_id": "video10386", "start time": 42.79, "end time": 61.38, "split": "test", "id": 10386}, {"category": 19, "url": "https://www.youtube.com/watch?v=0vAL0tvt_OI", "video_id": "video12615", "start time": 109.46, "end time": 131.81, "split": "test", "id": 12615}, {"category": 12, "url": "https://www.youtube.com/watch?v=ae6NgziJVzk", "video_id": "video12942", "start time": 67.75, "end time": 77.91, "split": "test", "id": 12942}, {"category": 13, "url": "https://www.youtube.com/watch?v=0FJsyB9eW_g", "video_id": "video10075", "start time": 287.37, "end time": 305.79, "split": "test", "id": 10075}, {"category": 9, "url": "https://www.youtube.com/watch?v=2We7h4Oh6UM", "video_id": "video10465", "start time": 23.21, "end time": 37.17, "split": "test", "id": 10465}, {"category": 9, "url": "https://www.youtube.com/watch?v=nORCM9rMvBo", "video_id": "video12652", "start time": 170.81, "end time": 184.85, "split": "test", "id": 12652}, {"category": 16, "url": "https://www.youtube.com/watch?v=I2MOvV3IG90", "video_id": "video10247", "start time": 9.72, "end time": 23.47, "split": "test", "id": 10247}, {"category": 11, "url": "https://www.youtube.com/watch?v=-nHSm2sLFuo", "video_id": "video11852", "start time": 25.82, "end time": 45.84, "split": "test", "id": 11852}, {"category": 3, "url": "https://www.youtube.com/watch?v=F3RBn53CVSw", "video_id": "video10098", "start time": 101.98, "end time": 115.16, "split": "test", "id": 10098}, {"category": 7, "url": "https://www.youtube.com/watch?v=7o40za1wAlI", "video_id": "video11527", "start time": 95.14, "end time": 105.32, "split": "test", "id": 11527}, {"category": 3, "url": "https://www.youtube.com/watch?v=goGO2LPxXcI", "video_id": "video10339", "start time": 268.38, "end time": 282.96, "split": "test", "id": 10339}, {"category": 8, "url": "https://www.youtube.com/watch?v=FmoMOSDtUJc", "video_id": "video10534", "start time": 87.03, "end time": 103.78, "split": "test", "id": 10534}, {"category": 16, "url": "https://www.youtube.com/watch?v=fEDHuB1WnYw", "video_id": "video11568", "start time": 17.77, "end time": 34.78, "split": "test", "id": 11568}, {"category": 11, "url": "https://www.youtube.com/watch?v=CCjhVBqjlvw", "video_id": "video10366", "start time": 115.09, "end time": 125.57, "split": "test", "id": 10366}, {"category": 16, "url": "https://www.youtube.com/watch?v=nn99IisLHmk", "video_id": "video11047", "start time": 17.4, "end time": 30.2, "split": "test", "id": 11047}, {"category": 13, "url": "https://www.youtube.com/watch?v=AUDLfVD-G9k", "video_id": "video11958", "start time": 0.0, "end time": 26.01, "split": "test", "id": 11958}, {"category": 7, "url": "https://www.youtube.com/watch?v=5dlLPUdZQF0", "video_id": "video11661", "start time": 1046.89, "end time": 1072.39, "split": "test", "id": 11661}, {"category": 16, "url": "https://www.youtube.com/watch?v=1ev5v23ov50", "video_id": "video11887", "start time": 139.75, "end time": 153.97, "split": "test", "id": 11887}, {"category": 8, "url": "https://www.youtube.com/watch?v=Ih-PTO6Ae-0", "video_id": "video12416", "start time": 175.09, "end time": 188.9, "split": "test", "id": 12416}, {"category": 9, "url": "https://www.youtube.com/watch?v=5GBAekgjSgU", "video_id": "video11657", "start time": 139.52, "end time": 152.9, "split": "test", "id": 11657}, {"category": 16, "url": "https://www.youtube.com/watch?v=k89aq4jtiNM", "video_id": "video12668", "start time": 32.45, "end time": 53.73, "split": "test", "id": 12668}, {"category": 3, "url": "https://www.youtube.com/watch?v=b11zc2j4Ncc", "video_id": "video11957", "start time": 104.95, "end time": 115.68, "split": "test", "id": 11957}, {"category": 10, "url": "https://www.youtube.com/watch?v=3laHYUYR1ds", "video_id": "video10569", "start time": 52.98, "end time": 65.2, "split": "test", "id": 10569}, {"category": 10, "url": "https://www.youtube.com/watch?v=nkxqTzyEfJ8", "video_id": "video12331", "start time": 28.37, "end time": 44.81, "split": "test", "id": 12331}, {"category": 16, "url": "https://www.youtube.com/watch?v=6ZnTnKuiKsU", "video_id": "video11069", "start time": 16.29, "end time": 26.89, "split": "test", "id": 11069}, {"category": 3, "url": "https://www.youtube.com/watch?v=BijuW0eErhQ", "video_id": "video12065", "start time": 138.85, "end time": 159.53, "split": "test", "id": 12065}, {"category": 14, "url": "https://www.youtube.com/watch?v=biAjQta5xZM", "video_id": "video10683", "start time": 220.47, "end time": 250.13, "split": "test", "id": 10683}, {"category": 11, "url": "https://www.youtube.com/watch?v=qCzDV7xg7SI", "video_id": "video11337", "start time": 126.07, "end time": 147.09, "split": "test", "id": 11337}, {"category": 5, "url": "https://www.youtube.com/watch?v=Pm4BTbVeJFk", "video_id": "video11036", "start time": 40.67, "end time": 52.98, "split": "test", "id": 11036}, {"category": 13, "url": "https://www.youtube.com/watch?v=kKyHN_G5eLM", "video_id": "video10218", "start time": 83.48, "end time": 97.95, "split": "test", "id": 10218}, {"category": 18, "url": "https://www.youtube.com/watch?v=rS-7UtNPxpk", "video_id": "video12146", "start time": 91.27, "end time": 103.12, "split": "test", "id": 12146}, {"category": 18, "url": "https://www.youtube.com/watch?v=6T_EZHwzbnw", "video_id": "video11936", "start time": 197.2, "end time": 221.48, "split": "test", "id": 11936}, {"category": 3, "url": "https://www.youtube.com/watch?v=nmEzFhQAsrM", "video_id": "video11485", "start time": 328.15, "end time": 357.51, "split": "test", "id": 11485}, {"category": 7, "url": "https://www.youtube.com/watch?v=jUZKSYCREo8", "video_id": "video11155", "start time": 23.28, "end time": 37.84, "split": "test", "id": 11155}, {"category": 11, "url": "https://www.youtube.com/watch?v=dzQ69hJJA2k", "video_id": "video10878", "start time": 150.21, "end time": 165.89, "split": "test", "id": 10878}, {"category": 17, "url": "https://www.youtube.com/watch?v=Og_yhgqmiNE", "video_id": "video12431", "start time": 20.2, "end time": 33.01, "split": "test", "id": 12431}, {"category": 7, "url": "https://www.youtube.com/watch?v=4hDwqwiRdvM", "video_id": "video10614", "start time": 121.77, "end time": 132.08, "split": "test", "id": 10614}, {"category": 1, "url": "https://www.youtube.com/watch?v=Bml3fSU56NE", "video_id": "video11630", "start time": 202.08, "end time": 220.07, "split": "test", "id": 11630}, {"category": 18, "url": "https://www.youtube.com/watch?v=r7L7Z1preac", "video_id": "video11273", "start time": 323.04, "end time": 340.89, "split": "test", "id": 11273}, {"category": 14, "url": "https://www.youtube.com/watch?v=NoIk5nBd_fY", "video_id": "video11329", "start time": 3.88, "end time": 30.18, "split": "test", "id": 11329}, {"category": 3, "url": "https://www.youtube.com/watch?v=8YEm2PrqAlc", "video_id": "video12036", "start time": 170.35, "end time": 180.89, "split": "test", "id": 12036}, {"category": 1, "url": "https://www.youtube.com/watch?v=AOLcK_UF0pE", "video_id": "video12599", "start time": 42.56, "end time": 59.64, "split": "test", "id": 12599}, {"category": 9, "url": "https://www.youtube.com/watch?v=GL0rbxB9Lqg", "video_id": "video12478", "start time": 87.13, "end time": 97.71, "split": "test", "id": 12478}, {"category": 14, "url": "https://www.youtube.com/watch?v=5_5L24XLFCA", "video_id": "video10326", "start time": 209.12, "end time": 226.77, "split": "test", "id": 10326}, {"category": 9, "url": "https://www.youtube.com/watch?v=J9rBIKHJoaY", "video_id": "video12336", "start time": 211.29, "end time": 231.37, "split": "test", "id": 12336}, {"category": 14, "url": "https://www.youtube.com/watch?v=0RZMRSRCF0I", "video_id": "video12810", "start time": 53.57, "end time": 66.05, "split": "test", "id": 12810}, {"category": 9, "url": "https://www.youtube.com/watch?v=OgpfYBMqURw", "video_id": "video10161", "start time": 90.89, "end time": 112.61, "split": "test", "id": 10161}, {"category": 9, "url": "https://www.youtube.com/watch?v=4WqciefQsJQ", "video_id": "video10500", "start time": 219.67, "end time": 249.23, "split": "test", "id": 10500}, {"category": 18, "url": "https://www.youtube.com/watch?v=42UvjJNmglY", "video_id": "video11805", "start time": 58.74, "end time": 82.36, "split": "test", "id": 11805}, {"category": 5, "url": "https://www.youtube.com/watch?v=jxTvMaJBT3c", "video_id": "video10686", "start time": 271.15, "end time": 282.62, "split": "test", "id": 10686}, {"category": 5, "url": "https://www.youtube.com/watch?v=bCUv7vp8rjk", "video_id": "video12163", "start time": 46.58, "end time": 68.65, "split": "test", "id": 12163}, {"category": 5, "url": "https://www.youtube.com/watch?v=r161cLYzuDI", "video_id": "video12844", "start time": 69.28, "end time": 95.27, "split": "test", "id": 12844}, {"category": 8, "url": "https://www.youtube.com/watch?v=nQpDEPlonqo", "video_id": "video10551", "start time": 174.05, "end time": 186.07, "split": "test", "id": 10551}, {"category": 16, "url": "https://www.youtube.com/watch?v=3sxuCXovonM", "video_id": "video10639", "start time": 121.8, "end time": 132.28, "split": "test", "id": 10639}, {"category": 9, "url": "https://www.youtube.com/watch?v=9hYaoz-Dbs0", "video_id": "video11368", "start time": 273.65, "end time": 296.69, "split": "test", "id": 11368}, {"category": 5, "url": "https://www.youtube.com/watch?v=4mQzEHpGY7I", "video_id": "video12933", "start time": 25.64, "end time": 39.29, "split": "test", "id": 12933}, {"category": 4, "url": "https://www.youtube.com/watch?v=Dlp4WD1prFM", "video_id": "video10583", "start time": 38.13, "end time": 51.69, "split": "test", "id": 10583}, {"category": 6, "url": "https://www.youtube.com/watch?v=Ob7nx4BAJb0", "video_id": "video10971", "start time": 30.71, "end time": 45.88, "split": "test", "id": 10971}, {"category": 11, "url": "https://www.youtube.com/watch?v=qNL6wWj3sXk", "video_id": "video10965", "start time": 178.98, "end time": 198.75, "split": "test", "id": 10965}, {"category": 16, "url": "https://www.youtube.com/watch?v=97bgOOfyfeA", "video_id": "video12134", "start time": 171.49, "end time": 188.47, "split": "test", "id": 12134}, {"category": 5, "url": "https://www.youtube.com/watch?v=nosJVTuCHFk", "video_id": "video10817", "start time": 97.65, "end time": 119.92, "split": "test", "id": 10817}, {"category": 11, "url": "https://www.youtube.com/watch?v=0Uuaq-LeEK8", "video_id": "video10066", "start time": 66.13, "end time": 80.25, "split": "test", "id": 10066}, {"category": 13, "url": "https://www.youtube.com/watch?v=B-qdvO4-gW4", "video_id": "video12948", "start time": 3.34, "end time": 16.9, "split": "test", "id": 12948}, {"category": 10, "url": "https://www.youtube.com/watch?v=IDKJjDlCGhU", "video_id": "video10015", "start time": 242.05, "end time": 257.05, "split": "test", "id": 10015}, {"category": 16, "url": "https://www.youtube.com/watch?v=fZsxIGF_g-E", "video_id": "video11066", "start time": 58.14, "end time": 85.67, "split": "test", "id": 11066}, {"category": 16, "url": "https://www.youtube.com/watch?v=dxp0MFy-qpI", "video_id": "video10949", "start time": 116.08, "end time": 135.18, "split": "test", "id": 10949}, {"category": 3, "url": "https://www.youtube.com/watch?v=n2oDrGSo7XQ", "video_id": "video11735", "start time": 6.72, "end time": 21.57, "split": "test", "id": 11735}, {"category": 13, "url": "https://www.youtube.com/watch?v=knB9IZhnAXk", "video_id": "video10477", "start time": 209.08, "end time": 232.98, "split": "test", "id": 10477}, {"category": 7, "url": "https://www.youtube.com/watch?v=HUmXH4Snl_g", "video_id": "video10172", "start time": 16.53, "end time": 40.79, "split": "test", "id": 10172}, {"category": 12, "url": "https://www.youtube.com/watch?v=-Fu-P1n_NsY", "video_id": "video12706", "start time": 276.05, "end time": 293.49, "split": "test", "id": 12706}, {"category": 15, "url": "https://www.youtube.com/watch?v=OpvJgb7yJf4", "video_id": "video10528", "start time": 5.05, "end time": 15.05, "split": "test", "id": 10528}, {"category": 10, "url": "https://www.youtube.com/watch?v=3iqq2bKPfFI", "video_id": "video11725", "start time": 603.45, "end time": 615.58, "split": "test", "id": 11725}, {"category": 6, "url": "https://www.youtube.com/watch?v=0DiYuXuQUr8", "video_id": "video12582", "start time": 212.03, "end time": 225.27, "split": "test", "id": 12582}, {"category": 10, "url": "https://www.youtube.com/watch?v=R7D1MjqhfPg", "video_id": "video10692", "start time": 149.18, "end time": 166.45, "split": "test", "id": 10692}, {"category": 17, "url": "https://www.youtube.com/watch?v=PW_PTyvfXTs", "video_id": "video10093", "start time": 39.17, "end time": 66.69, "split": "test", "id": 10093}, {"category": 10, "url": "https://www.youtube.com/watch?v=0naTpR0pLCs", "video_id": "video10260", "start time": 912.0, "end time": 924.01, "split": "test", "id": 10260}, {"category": 9, "url": "https://www.youtube.com/watch?v=ru8HrBVQgtI", "video_id": "video11058", "start time": 179.86, "end time": 206.49, "split": "test", "id": 11058}, {"category": 12, "url": "https://www.youtube.com/watch?v=gRV-KDy4sHQ", "video_id": "video11462", "start time": 75.96, "end time": 91.04, "split": "test", "id": 11462}, {"category": 4, "url": "https://www.youtube.com/watch?v=H6OTKm0M8vU", "video_id": "video11150", "start time": 192.51, "end time": 208.26, "split": "test", "id": 11150}, {"category": 16, "url": "https://www.youtube.com/watch?v=iCFIuTWSmOs", "video_id": "video11731", "start time": 66.01, "end time": 76.68, "split": "test", "id": 11731}, {"category": 17, "url": "https://www.youtube.com/watch?v=8Ia10OMvJWM", "video_id": "video10059", "start time": 118.67, "end time": 140.95, "split": "test", "id": 10059}, {"category": 0, "url": "https://www.youtube.com/watch?v=RwjJpxXJApg", "video_id": "video11565", "start time": 160.74, "end time": 171.02, "split": "test", "id": 11565}, {"category": 12, "url": "https://www.youtube.com/watch?v=QysRsOuwyAo", "video_id": "video12585", "start time": 61.21, "end time": 81.93, "split": "test", "id": 12585}, {"category": 9, "url": "https://www.youtube.com/watch?v=gw8ntyRb7_8", "video_id": "video12246", "start time": 67.97, "end time": 92.89, "split": "test", "id": 12246}, {"category": 15, "url": "https://www.youtube.com/watch?v=hjnc1kHMDDo", "video_id": "video10055", "start time": 299.41, "end time": 313.16, "split": "test", "id": 10055}, {"category": 3, "url": "https://www.youtube.com/watch?v=KN7T3uHtiYM", "video_id": "video11801", "start time": 69.81, "end time": 98.15, "split": "test", "id": 11801}, {"category": 17, "url": "https://www.youtube.com/watch?v=gr3MGCmd03U", "video_id": "video11596", "start time": 32.49, "end time": 57.17, "split": "test", "id": 11596}, {"category": 3, "url": "https://www.youtube.com/watch?v=QtP_bh2lMXc", "video_id": "video12540", "start time": 55.37, "end time": 70.21, "split": "test", "id": 12540}, {"category": 18, "url": "https://www.youtube.com/watch?v=Pu0-R6lXCaM", "video_id": "video11762", "start time": 0.0, "end time": 11.33, "split": "test", "id": 11762}, {"category": 4, "url": "https://www.youtube.com/watch?v=4DNVe6AJU3U", "video_id": "video10576", "start time": 240.01, "end time": 258.11, "split": "test", "id": 10576}, {"category": 13, "url": "https://www.youtube.com/watch?v=8ZgpvnL9ZU8", "video_id": "video11018", "start time": 149.3, "end time": 159.38, "split": "test", "id": 11018}, {"category": 18, "url": "https://www.youtube.com/watch?v=ojh2-XE9urM", "video_id": "video10931", "start time": 11.61, "end time": 29.01, "split": "test", "id": 10931}, {"category": 4, "url": "https://www.youtube.com/watch?v=OxgwI-0Sozg", "video_id": "video12859", "start time": 154.05, "end time": 180.41, "split": "test", "id": 12859}, {"category": 12, "url": "https://www.youtube.com/watch?v=huUSF4EjAu8", "video_id": "video11796", "start time": 78.54, "end time": 90.47, "split": "test", "id": 11796}, {"category": 19, "url": "https://www.youtube.com/watch?v=9b9xFeQrPrs", "video_id": "video10791", "start time": 982.09, "end time": 995.57, "split": "test", "id": 10791}, {"category": 17, "url": "https://www.youtube.com/watch?v=AX0Fxv5V1Bs", "video_id": "video11477", "start time": 203.05, "end time": 228.85, "split": "test", "id": 11477}, {"category": 9, "url": "https://www.youtube.com/watch?v=91Q2ftNSQpY", "video_id": "video11918", "start time": 84.78, "end time": 96.68, "split": "test", "id": 11918}, {"category": 2, "url": "https://www.youtube.com/watch?v=qC9jx3FcMoc", "video_id": "video10279", "start time": 613.69, "end time": 628.07, "split": "test", "id": 10279}, {"category": 3, "url": "https://www.youtube.com/watch?v=ilRI4zKoBPo", "video_id": "video11837", "start time": 50.83, "end time": 68.85, "split": "test", "id": 11837}, {"category": 16, "url": "https://www.youtube.com/watch?v=J6UWB6ubSL0", "video_id": "video10071", "start time": 34.35, "end time": 50.1, "split": "test", "id": 10071}, {"category": 12, "url": "https://www.youtube.com/watch?v=j7d6RETP6PQ", "video_id": "video12969", "start time": 50.31, "end time": 63.48, "split": "test", "id": 12969}, {"category": 9, "url": "https://www.youtube.com/watch?v=1gL9WKs2n8M", "video_id": "video10219", "start time": 103.37, "end time": 115.97, "split": "test", "id": 10219}, {"category": 0, "url": "https://www.youtube.com/watch?v=p1xUfabBu8Q", "video_id": "video10369", "start time": 9.18, "end time": 21.85, "split": "test", "id": 10369}, {"category": 3, "url": "https://www.youtube.com/watch?v=e1tvE2XfAGQ", "video_id": "video11021", "start time": 43.99, "end time": 59.91, "split": "test", "id": 11021}, {"category": 9, "url": "https://www.youtube.com/watch?v=p8DICVkNITY", "video_id": "video12258", "start time": 440.59, "end time": 455.54, "split": "test", "id": 12258}, {"category": 17, "url": "https://www.youtube.com/watch?v=GWxNQaEtZ6I", "video_id": "video11834", "start time": 84.33, "end time": 94.57, "split": "test", "id": 11834}, {"category": 3, "url": "https://www.youtube.com/watch?v=B9oF9QR_mLk", "video_id": "video12249", "start time": 84.72, "end time": 100.81, "split": "test", "id": 12249}, {"category": 16, "url": "https://www.youtube.com/watch?v=kEakYl5pDEM", "video_id": "video10476", "start time": 174.72, "end time": 197.54, "split": "test", "id": 10476}, {"category": 13, "url": "https://www.youtube.com/watch?v=FelsVFcTz6k", "video_id": "video12174", "start time": 0.0, "end time": 15.0, "split": "test", "id": 12174}, {"category": 13, "url": "https://www.youtube.com/watch?v=7yGOgs_UlEc", "video_id": "video11647", "start time": 14.05, "end time": 37.33, "split": "test", "id": 11647}, {"category": 13, "url": "https://www.youtube.com/watch?v=HH8B5AuOSe0", "video_id": "video10894", "start time": 76.46, "end time": 87.51, "split": "test", "id": 10894}, {"category": 9, "url": "https://www.youtube.com/watch?v=PCSNCs7bwCw", "video_id": "video10144", "start time": 29.85, "end time": 52.49, "split": "test", "id": 10144}, {"category": 13, "url": "https://www.youtube.com/watch?v=6gxAPqYqCfA", "video_id": "video11720", "start time": 91.87, "end time": 105.49, "split": "test", "id": 11720}, {"category": 2, "url": "https://www.youtube.com/watch?v=MWxOiPyP85I", "video_id": "video11570", "start time": 47.53, "end time": 75.62, "split": "test", "id": 11570}, {"category": 5, "url": "https://www.youtube.com/watch?v=BpxVIwCbBK0", "video_id": "video10086", "start time": 4.71, "end time": 15.42, "split": "test", "id": 10086}, {"category": 18, "url": "https://www.youtube.com/watch?v=o8PMXt7tEFk", "video_id": "video10974", "start time": 55.58, "end time": 80.51, "split": "test", "id": 10974}, {"category": 8, "url": "https://www.youtube.com/watch?v=7sAZsCeDDh4", "video_id": "video12206", "start time": 108.89, "end time": 129.29, "split": "test", "id": 12206}, {"category": 18, "url": "https://www.youtube.com/watch?v=QTY-55yfEqo", "video_id": "video11641", "start time": 623.53, "end time": 651.21, "split": "test", "id": 11641}, {"category": 16, "url": "https://www.youtube.com/watch?v=RPGBMkN-_Ys", "video_id": "video12537", "start time": 136.13, "end time": 152.17, "split": "test", "id": 12537}, {"category": 9, "url": "https://www.youtube.com/watch?v=cQF7KCLS7mY", "video_id": "video10214", "start time": 15.86, "end time": 36.88, "split": "test", "id": 10214}, {"category": 7, "url": "https://www.youtube.com/watch?v=8oodg1tm8RA", "video_id": "video10330", "start time": 95.08, "end time": 114.86, "split": "test", "id": 10330}, {"category": 3, "url": "https://www.youtube.com/watch?v=bZlUZBAHxSQ", "video_id": "video12970", "start time": 101.95, "end time": 125.21, "split": "test", "id": 12970}, {"category": 7, "url": "https://www.youtube.com/watch?v=S1bXgvHknO8", "video_id": "video10180", "start time": 192.57, "end time": 213.39, "split": "test", "id": 10180}, {"category": 14, "url": "https://www.youtube.com/watch?v=QQykxHw2GIE", "video_id": "video10378", "start time": 19.45, "end time": 38.61, "split": "test", "id": 10378}, {"category": 3, "url": "https://www.youtube.com/watch?v=DmmE2IWVUiI", "video_id": "video10619", "start time": 24.68, "end time": 44.15, "split": "test", "id": 10619}, {"category": 9, "url": "https://www.youtube.com/watch?v=RVDGJqionI4", "video_id": "video10359", "start time": 66.75, "end time": 81.53, "split": "test", "id": 10359}, {"category": 13, "url": "https://www.youtube.com/watch?v=Ewsgwj-wM4w", "video_id": "video12491", "start time": 39.85, "end time": 49.86, "split": "test", "id": 12491}, {"category": 14, "url": "https://www.youtube.com/watch?v=mfXyMLUshX4", "video_id": "video10131", "start time": 784.76, "end time": 807.82, "split": "test", "id": 10131}, {"category": 12, "url": "https://www.youtube.com/watch?v=6yiTZm0y1YA", "video_id": "video10224", "start time": 3.65, "end time": 16.77, "split": "test", "id": 10224}, {"category": 9, "url": "https://www.youtube.com/watch?v=FvxuVGtiZB4", "video_id": "video10910", "start time": 266.81, "end time": 285.38, "split": "test", "id": 10910}, {"category": 16, "url": "https://www.youtube.com/watch?v=qT9aTKSDiy4", "video_id": "video10805", "start time": 19.81, "end time": 33.21, "split": "test", "id": 10805}, {"category": 12, "url": "https://www.youtube.com/watch?v=3LmsdnZWZN4", "video_id": "video11388", "start time": 200.98, "end time": 221.1, "split": "test", "id": 11388}, {"category": 18, "url": "https://www.youtube.com/watch?v=HCe7Xlm8fwo", "video_id": "video10167", "start time": 338.37, "end time": 349.85, "split": "test", "id": 10167}, {"category": 13, "url": "https://www.youtube.com/watch?v=4eft6D3PbHI", "video_id": "video10100", "start time": 24.1, "end time": 34.82, "split": "test", "id": 10100}, {"category": 16, "url": "https://www.youtube.com/watch?v=FNH2BU2LSQ0", "video_id": "video11030", "start time": 91.97, "end time": 103.68, "split": "test", "id": 11030}, {"category": 3, "url": "https://www.youtube.com/watch?v=Re4fMF1qfoc", "video_id": "video10332", "start time": 13.05, "end time": 37.08, "split": "test", "id": 10332}, {"category": 9, "url": "https://www.youtube.com/watch?v=mv3EAPKjRcQ", "video_id": "video11232", "start time": 0.0, "end time": 19.65, "split": "test", "id": 11232}, {"category": 12, "url": "https://www.youtube.com/watch?v=7TozcVwjcFg", "video_id": "video11043", "start time": 184.23, "end time": 204.38, "split": "test", "id": 11043}, {"category": 14, "url": "https://www.youtube.com/watch?v=81nkB2r3wgs", "video_id": "video11467", "start time": 0.0, "end time": 19.61, "split": "test", "id": 11467}, {"category": 2, "url": "https://www.youtube.com/watch?v=GtZgpEqfoaI", "video_id": "video10529", "start time": 309.09, "end time": 335.55, "split": "test", "id": 10529}, {"category": 11, "url": "https://www.youtube.com/watch?v=cACu0WEKQlg", "video_id": "video11714", "start time": 48.96, "end time": 73.85, "split": "test", "id": 11714}, {"category": 15, "url": "https://www.youtube.com/watch?v=jQK0Xbfel-M", "video_id": "video12159", "start time": 236.69, "end time": 247.37, "split": "test", "id": 12159}, {"category": 4, "url": "https://www.youtube.com/watch?v=9BaVMGnXQw4", "video_id": "video11379", "start time": 151.13, "end time": 161.69, "split": "test", "id": 11379}, {"category": 16, "url": "https://www.youtube.com/watch?v=CZu-pU2nrTg", "video_id": "video11050", "start time": 190.0, "end time": 209.26, "split": "test", "id": 11050}, {"category": 16, "url": "https://www.youtube.com/watch?v=9oTvGCfN8jM", "video_id": "video11534", "start time": 316.83, "end time": 343.69, "split": "test", "id": 11534}, {"category": 11, "url": "https://www.youtube.com/watch?v=4JMXwArVw3s", "video_id": "video11696", "start time": 433.15, "end time": 453.3, "split": "test", "id": 11696}, {"category": 3, "url": "https://www.youtube.com/watch?v=3D9VWKR-iFc", "video_id": "video11176", "start time": 7.57, "end time": 35.33, "split": "test", "id": 11176}, {"category": 4, "url": "https://www.youtube.com/watch?v=-x6UfYo5V6o", "video_id": "video10623", "start time": 8.75, "end time": 27.61, "split": "test", "id": 10623}, {"category": 16, "url": "https://www.youtube.com/watch?v=8wIQUx65ihc", "video_id": "video12975", "start time": 12.41, "end time": 36.93, "split": "test", "id": 12975}, {"category": 3, "url": "https://www.youtube.com/watch?v=1Xq1p7bVZxs", "video_id": "video11335", "start time": 70.29, "end time": 83.77, "split": "test", "id": 11335}, {"category": 16, "url": "https://www.youtube.com/watch?v=FBtTiqQ10pk", "video_id": "video12926", "start time": 351.23, "end time": 375.22, "split": "test", "id": 12926}, {"category": 9, "url": "https://www.youtube.com/watch?v=EbyQZBgMHkA", "video_id": "video10781", "start time": 109.55, "end time": 127.71, "split": "test", "id": 10781}, {"category": 10, "url": "https://www.youtube.com/watch?v=l3MxxCqB_7U", "video_id": "video11405", "start time": 141.19, "end time": 163.21, "split": "test", "id": 11405}, {"category": 11, "url": "https://www.youtube.com/watch?v=68EClNgxd_I", "video_id": "video10957", "start time": 635.88, "end time": 663.41, "split": "test", "id": 10957}, {"category": 16, "url": "https://www.youtube.com/watch?v=KFdJoS7sV4o", "video_id": "video11397", "start time": 23.33, "end time": 42.65, "split": "test", "id": 11397}, {"category": 5, "url": "https://www.youtube.com/watch?v=-A-Tv5bIqNI", "video_id": "video12481", "start time": 24.77, "end time": 35.62, "split": "test", "id": 12481}, {"category": 18, "url": "https://www.youtube.com/watch?v=KiiQTWaLmqo", "video_id": "video10479", "start time": 280.45, "end time": 304.35, "split": "test", "id": 10479}, {"category": 12, "url": "https://www.youtube.com/watch?v=dFcbCJVfaEU", "video_id": "video10995", "start time": 85.81, "end time": 114.49, "split": "test", "id": 10995}, {"category": 3, "url": "https://www.youtube.com/watch?v=nhaAx6nwtnw", "video_id": "video11389", "start time": 14.98, "end time": 33.62, "split": "test", "id": 11389}, {"category": 3, "url": "https://www.youtube.com/watch?v=Kbr-DqTP6Js", "video_id": "video10306", "start time": 466.35, "end time": 488.58, "split": "test", "id": 10306}, {"category": 9, "url": "https://www.youtube.com/watch?v=Ko9kzyqW-l8", "video_id": "video11438", "start time": 176.13, "end time": 195.41, "split": "test", "id": 11438}, {"category": 3, "url": "https://www.youtube.com/watch?v=kc-e129SBb4", "video_id": "video10958", "start time": 60.73, "end time": 82.85, "split": "test", "id": 10958}, {"category": 18, "url": "https://www.youtube.com/watch?v=3xPEW8YVfw0", "video_id": "video10548", "start time": 144.66, "end time": 158.21, "split": "test", "id": 10548}, {"category": 10, "url": "https://www.youtube.com/watch?v=bHP2nbJoQm0", "video_id": "video11296", "start time": 40.82, "end time": 53.7, "split": "test", "id": 11296}, {"category": 9, "url": "https://www.youtube.com/watch?v=mkpCzp0CmjY", "video_id": "video10631", "start time": 14.01, "end time": 30.93, "split": "test", "id": 10631}, {"category": 16, "url": "https://www.youtube.com/watch?v=dzuyEiDcbnQ", "video_id": "video12188", "start time": 145.03, "end time": 168.95, "split": "test", "id": 12188}, {"category": 3, "url": "https://www.youtube.com/watch?v=m7D-67xqwYE", "video_id": "video11601", "start time": 14.77, "end time": 27.41, "split": "test", "id": 11601}, {"category": 0, "url": "https://www.youtube.com/watch?v=rp4UwPZfRis", "video_id": "video12965", "start time": 0.0, "end time": 13.1, "split": "test", "id": 12965}, {"category": 6, "url": "https://www.youtube.com/watch?v=FjQ7R3tl1iU", "video_id": "video11042", "start time": 30.26, "end time": 50.38, "split": "test", "id": 11042}, {"category": 7, "url": "https://www.youtube.com/watch?v=r7GcAI2HMd8", "video_id": "video11984", "start time": 133.17, "end time": 150.33, "split": "test", "id": 11984}, {"category": 10, "url": "https://www.youtube.com/watch?v=1tvUhu9lwhw", "video_id": "video10354", "start time": 26.69, "end time": 55.77, "split": "test", "id": 10354}, {"category": 16, "url": "https://www.youtube.com/watch?v=r7U-gQO2yxg", "video_id": "video12956", "start time": 3.45, "end time": 16.65, "split": "test", "id": 12956}, {"category": 17, "url": "https://www.youtube.com/watch?v=L4ksqR-c3Sw", "video_id": "video10304", "start time": 30.75, "end time": 42.81, "split": "test", "id": 10304}, {"category": 13, "url": "https://www.youtube.com/watch?v=inR5_O7zIBU", "video_id": "video11436", "start time": 309.28, "end time": 338.01, "split": "test", "id": 11436}, {"category": 18, "url": "https://www.youtube.com/watch?v=24V8S8aUZcQ", "video_id": "video11135", "start time": 87.27, "end time": 99.88, "split": "test", "id": 11135}, {"category": 11, "url": "https://www.youtube.com/watch?v=ocvKecvs09I", "video_id": "video12156", "start time": 61.41, "end time": 80.03, "split": "test", "id": 12156}, {"category": 16, "url": "https://www.youtube.com/watch?v=MggSR2jN48I", "video_id": "video11985", "start time": 55.04, "end time": 70.22, "split": "test", "id": 11985}, {"category": 9, "url": "https://www.youtube.com/watch?v=4uI3uMw2EIg", "video_id": "video10049", "start time": 38.59, "end time": 54.92, "split": "test", "id": 10049}, {"category": 18, "url": "https://www.youtube.com/watch?v=-tiybMODrLk", "video_id": "video11091", "start time": 67.03, "end time": 79.92, "split": "test", "id": 11091}, {"category": 13, "url": "https://www.youtube.com/watch?v=LywgzuHcQVI", "video_id": "video10509", "start time": 229.18, "end time": 243.39, "split": "test", "id": 10509}, {"category": 3, "url": "https://www.youtube.com/watch?v=o9ZUoPWV7qE", "video_id": "video10643", "start time": 227.57, "end time": 238.15, "split": "test", "id": 10643}, {"category": 4, "url": "https://www.youtube.com/watch?v=4IZoK7CJpbQ", "video_id": "video11909", "start time": 5.09, "end time": 27.37, "split": "test", "id": 11909}, {"category": 18, "url": "https://www.youtube.com/watch?v=S-fb4Jai3Hk", "video_id": "video10939", "start time": 85.8, "end time": 102.65, "split": "test", "id": 10939}, {"category": 8, "url": "https://www.youtube.com/watch?v=67P_IdBmnmk", "video_id": "video10072", "start time": 283.88, "end time": 305.21, "split": "test", "id": 10072}, {"category": 15, "url": "https://www.youtube.com/watch?v=b-55UMUfTdY", "video_id": "video10862", "start time": 469.36, "end time": 480.41, "split": "test", "id": 10862}, {"category": 13, "url": "https://www.youtube.com/watch?v=1Kl4rNUTWCA", "video_id": "video11188", "start time": 18.03, "end time": 36.05, "split": "test", "id": 11188}, {"category": 9, "url": "https://www.youtube.com/watch?v=ewSKGs-ipC4", "video_id": "video12884", "start time": 24.09, "end time": 42.59, "split": "test", "id": 12884}, {"category": 14, "url": "https://www.youtube.com/watch?v=K3Sn5qdVVJI", "video_id": "video12074", "start time": 183.96, "end time": 204.52, "split": "test", "id": 12074}, {"category": 13, "url": "https://www.youtube.com/watch?v=79G28vMmpAM", "video_id": "video10876", "start time": 0.0, "end time": 13.76, "split": "test", "id": 10876}, {"category": 18, "url": "https://www.youtube.com/watch?v=b85n4AXHe2c", "video_id": "video10823", "start time": 7.88, "end time": 19.42, "split": "test", "id": 10823}, {"category": 0, "url": "https://www.youtube.com/watch?v=oyEuk8j8imI", "video_id": "video10912", "start time": 66.57, "end time": 84.67, "split": "test", "id": 10912}, {"category": 8, "url": "https://www.youtube.com/watch?v=2A-NHc_UsWg", "video_id": "video10872", "start time": 185.27, "end time": 197.81, "split": "test", "id": 10872}, {"category": 18, "url": "https://www.youtube.com/watch?v=7qxYEN2IRls", "video_id": "video10771", "start time": 72.42, "end time": 87.8, "split": "test", "id": 10771}, {"category": 13, "url": "https://www.youtube.com/watch?v=beH3hxV5KeM", "video_id": "video12906", "start time": 51.88, "end time": 72.55, "split": "test", "id": 12906}, {"category": 10, "url": "https://www.youtube.com/watch?v=GerfIb9Tzh0", "video_id": "video12289", "start time": 20.85, "end time": 35.49, "split": "test", "id": 12289}, {"category": 0, "url": "https://www.youtube.com/watch?v=4vvBAONkYwI", "video_id": "video11930", "start time": 100.81, "end time": 112.76, "split": "test", "id": 11930}, {"category": 13, "url": "https://www.youtube.com/watch?v=3DGoZeoLfmg", "video_id": "video11987", "start time": 101.15, "end time": 113.06, "split": "test", "id": 11987}, {"category": 16, "url": "https://www.youtube.com/watch?v=JqEw4BLL1fk", "video_id": "video12877", "start time": 166.25, "end time": 189.81, "split": "test", "id": 12877}, {"category": 11, "url": "https://www.youtube.com/watch?v=Nrn7tMneK1s", "video_id": "video12713", "start time": 3.95, "end time": 18.47, "split": "test", "id": 12713}, {"category": 11, "url": "https://www.youtube.com/watch?v=qCzDV7xg7SI", "video_id": "video11074", "start time": 226.11, "end time": 238.22, "split": "test", "id": 11074}, {"category": 12, "url": "https://www.youtube.com/watch?v=-xtUcTNTkj0", "video_id": "video12056", "start time": 95.58, "end time": 105.79, "split": "test", "id": 12056}, {"category": 18, "url": "https://www.youtube.com/watch?v=1l0BFwKN5S4", "video_id": "video12660", "start time": 124.51, "end time": 140.19, "split": "test", "id": 12660}, {"category": 3, "url": "https://www.youtube.com/watch?v=8IKbBy2niBo", "video_id": "video10607", "start time": 3.09, "end time": 28.33, "split": "test", "id": 10607}, {"category": 14, "url": "https://www.youtube.com/watch?v=8t5R_T-5ndU", "video_id": "video12297", "start time": 0.0, "end time": 19.43, "split": "test", "id": 12297}, {"category": 11, "url": "https://www.youtube.com/watch?v=68EClNgxd_I", "video_id": "video11326", "start time": 321.6, "end time": 333.61, "split": "test", "id": 11326}, {"category": 9, "url": "https://www.youtube.com/watch?v=DVDvn8EdK1U", "video_id": "video11628", "start time": 7.05, "end time": 18.37, "split": "test", "id": 11628}, {"category": 9, "url": "https://www.youtube.com/watch?v=KNRPzMiFrOg", "video_id": "video11028", "start time": 324.09, "end time": 348.73, "split": "test", "id": 11028}, {"category": 1, "url": "https://www.youtube.com/watch?v=7lwlPiEq--8", "video_id": "video10636", "start time": 277.41, "end time": 287.89, "split": "test", "id": 10636}, {"category": 4, "url": "https://www.youtube.com/watch?v=eSStJ8B_SQI", "video_id": "video12330", "start time": 3.28, "end time": 17.03, "split": "test", "id": 12330}, {"category": 9, "url": "https://www.youtube.com/watch?v=DUODzhIMfsg", "video_id": "video10554", "start time": 115.5, "end time": 127.13, "split": "test", "id": 10554}, {"category": 18, "url": "https://www.youtube.com/watch?v=QRdjFooNqj8", "video_id": "video12299", "start time": 547.41, "end time": 572.61, "split": "test", "id": 12299}, {"category": 6, "url": "https://www.youtube.com/watch?v=gc3SLFKoAJg", "video_id": "video10648", "start time": 51.63, "end time": 65.61, "split": "test", "id": 10648}, {"category": 9, "url": "https://www.youtube.com/watch?v=RxZ4ynElat8", "video_id": "video12649", "start time": 7.97, "end time": 22.17, "split": "test", "id": 12649}, {"category": 18, "url": "https://www.youtube.com/watch?v=0oleKaI_1-g", "video_id": "video12784", "start time": 390.44, "end time": 403.15, "split": "test", "id": 12784}, {"category": 9, "url": "https://www.youtube.com/watch?v=Om6fQaryNkA", "video_id": "video11685", "start time": 49.96, "end time": 69.18, "split": "test", "id": 11685}, {"category": 13, "url": "https://www.youtube.com/watch?v=7wKu13wmHog", "video_id": "video11175", "start time": 45.61, "end time": 60.25, "split": "test", "id": 11175}, {"category": 12, "url": "https://www.youtube.com/watch?v=jEZ7zeQibfw", "video_id": "video10223", "start time": 87.84, "end time": 100.05, "split": "test", "id": 10223}, {"category": 13, "url": "https://www.youtube.com/watch?v=kTA0QLuZ2_s", "video_id": "video12692", "start time": 14.94, "end time": 31.95, "split": "test", "id": 12692}, {"category": 4, "url": "https://www.youtube.com/watch?v=ev-tVd8CmF4", "video_id": "video12079", "start time": 0.0, "end time": 21.17, "split": "test", "id": 12079}, {"category": 15, "url": "https://www.youtube.com/watch?v=QdUGoFTfP7w", "video_id": "video10959", "start time": 12.41, "end time": 25.01, "split": "test", "id": 10959}, {"category": 7, "url": "https://www.youtube.com/watch?v=2DpApMCwSSU", "video_id": "video11360", "start time": 81.34, "end time": 94.43, "split": "test", "id": 11360}, {"category": 4, "url": "https://www.youtube.com/watch?v=abNHm1uusNE", "video_id": "video12685", "start time": 65.45, "end time": 86.2, "split": "test", "id": 12685}, {"category": 7, "url": "https://www.youtube.com/watch?v=2M9ZA8w_m8U", "video_id": "video11463", "start time": 72.75, "end time": 93.27, "split": "test", "id": 11463}, {"category": 3, "url": "https://www.youtube.com/watch?v=1j0PH2f7ZrU", "video_id": "video10264", "start time": 62.11, "end time": 82.26, "split": "test", "id": 10264}, {"category": 7, "url": "https://www.youtube.com/watch?v=aGUgaBAZ244", "video_id": "video11178", "start time": 230.29, "end time": 241.01, "split": "test", "id": 11178}, {"category": 8, "url": "https://www.youtube.com/watch?v=-oSHP4b0NLs", "video_id": "video12473", "start time": 22.34, "end time": 39.63, "split": "test", "id": 12473}, {"category": 8, "url": "https://www.youtube.com/watch?v=pL_letuUyQI", "video_id": "video11483", "start time": 348.88, "end time": 371.67, "split": "test", "id": 11483}, {"category": 8, "url": "https://www.youtube.com/watch?v=A7ZVJ91fxFQ", "video_id": "video11684", "start time": 119.9, "end time": 142.06, "split": "test", "id": 11684}, {"category": 16, "url": "https://www.youtube.com/watch?v=HZqNQ1RnEkc", "video_id": "video11270", "start time": 110.57, "end time": 123.41, "split": "test", "id": 11270}, {"category": 17, "url": "https://www.youtube.com/watch?v=KHEd__Axddk", "video_id": "video12050", "start time": 141.59, "end time": 159.27, "split": "test", "id": 12050}, {"category": 7, "url": "https://www.youtube.com/watch?v=G7tr7xcUCFA", "video_id": "video10945", "start time": 3.76, "end time": 14.1, "split": "test", "id": 10945}, {"category": 10, "url": "https://www.youtube.com/watch?v=CiBPrgE_VLU", "video_id": "video10267", "start time": 10.25, "end time": 25.01, "split": "test", "id": 10267}, {"category": 10, "url": "https://www.youtube.com/watch?v=AzES1m_Mqp8", "video_id": "video10325", "start time": 27.28, "end time": 43.26, "split": "test", "id": 10325}, {"category": 8, "url": "https://www.youtube.com/watch?v=KfFTKcXqlGQ", "video_id": "video12589", "start time": 90.39, "end time": 101.32, "split": "test", "id": 12589}, {"category": 3, "url": "https://www.youtube.com/watch?v=If7Hrcf04Dw", "video_id": "video10882", "start time": 133.71, "end time": 155.3, "split": "test", "id": 10882}, {"category": 12, "url": "https://www.youtube.com/watch?v=ooyHLq6Y9Io", "video_id": "video12324", "start time": 26.29, "end time": 45.77, "split": "test", "id": 12324}, {"category": 16, "url": "https://www.youtube.com/watch?v=8SGG2LH_eDY", "video_id": "video10139", "start time": 240.29, "end time": 255.65, "split": "test", "id": 10139}, {"category": 16, "url": "https://www.youtube.com/watch?v=n-QC-e8ZIdo", "video_id": "video11179", "start time": 131.48, "end time": 148.9, "split": "test", "id": 11179}, {"category": 3, "url": "https://www.youtube.com/watch?v=1i-eH1qbXRA", "video_id": "video11917", "start time": 196.03, "end time": 214.39, "split": "test", "id": 11917}, {"category": 18, "url": "https://www.youtube.com/watch?v=Am3v8CEP1a0", "video_id": "video11978", "start time": 142.36, "end time": 164.92, "split": "test", "id": 11978}, {"category": 11, "url": "https://www.youtube.com/watch?v=58BROsFhipc", "video_id": "video12067", "start time": 32.25, "end time": 60.57, "split": "test", "id": 12067}, {"category": 16, "url": "https://www.youtube.com/watch?v=hqRmf4I0dVI", "video_id": "video11750", "start time": 135.25, "end time": 150.69, "split": "test", "id": 11750}, {"category": 3, "url": "https://www.youtube.com/watch?v=j3oFFUyJb7c", "video_id": "video12667", "start time": 84.53, "end time": 101.78, "split": "test", "id": 12667}, {"category": 13, "url": "https://www.youtube.com/watch?v=pKzf7-NTzDc", "video_id": "video10457", "start time": 18.65, "end time": 34.96, "split": "test", "id": 10457}, {"category": 4, "url": "https://www.youtube.com/watch?v=Q4T13uOoF7Q", "video_id": "video11041", "start time": 35.81, "end time": 52.73, "split": "test", "id": 11041}, {"category": 5, "url": "https://www.youtube.com/watch?v=Om7lidJuPtc", "video_id": "video12925", "start time": 16.63, "end time": 36.75, "split": "test", "id": 12925}, {"category": 7, "url": "https://www.youtube.com/watch?v=hWnAqFyaQ5s", "video_id": "video12971", "start time": 83.46, "end time": 100.06, "split": "test", "id": 12971}, {"category": 16, "url": "https://www.youtube.com/watch?v=77mTZjLhy0o", "video_id": "video11468", "start time": 110.92, "end time": 132.31, "split": "test", "id": 11468}, {"category": 5, "url": "https://www.youtube.com/watch?v=FMJgZ4s2E3w", "video_id": "video10656", "start time": 78.46, "end time": 94.01, "split": "test", "id": 10656}, {"category": 3, "url": "https://www.youtube.com/watch?v=AE6fhTItrzM", "video_id": "video12627", "start time": 80.26, "end time": 91.64, "split": "test", "id": 12627}, {"category": 12, "url": "https://www.youtube.com/watch?v=6yiTZm0y1YA", "video_id": "video10599", "start time": 256.17, "end time": 267.37, "split": "test", "id": 10599}, {"category": 11, "url": "https://www.youtube.com/watch?v=S-BleT4VntA", "video_id": "video10028", "start time": 0.0, "end time": 20.47, "split": "test", "id": 10028}, {"category": 7, "url": "https://www.youtube.com/watch?v=bgSQsXR723w", "video_id": "video11682", "start time": 10.58, "end time": 26.78, "split": "test", "id": 11682}, {"category": 18, "url": "https://www.youtube.com/watch?v=-XhM0Yyej64", "video_id": "video11848", "start time": 203.18, "end time": 221.97, "split": "test", "id": 11848}, {"category": 4, "url": "https://www.youtube.com/watch?v=ESJ_lA0RJ8I", "video_id": "video10674", "start time": 35.05, "end time": 51.65, "split": "test", "id": 10674}, {"category": 16, "url": "https://www.youtube.com/watch?v=-vPfIFbe-cI", "video_id": "video12006", "start time": 427.61, "end time": 453.13, "split": "test", "id": 12006}, {"category": 15, "url": "https://www.youtube.com/watch?v=k0WbP2uLJPo", "video_id": "video11704", "start time": 64.96, "end time": 79.8, "split": "test", "id": 11704}, {"category": 4, "url": "https://www.youtube.com/watch?v=3mTynTZ5-Cc", "video_id": "video12403", "start time": 304.69, "end time": 328.09, "split": "test", "id": 12403}, {"category": 5, "url": "https://www.youtube.com/watch?v=0LsrkWDCvxg", "video_id": "video11478", "start time": 104.94, "end time": 121.25, "split": "test", "id": 11478}, {"category": 12, "url": "https://www.youtube.com/watch?v=Q6H5gFvfEaw", "video_id": "video11505", "start time": 110.28, "end time": 131.68, "split": "test", "id": 11505}, {"category": 7, "url": "https://www.youtube.com/watch?v=6T65MF70psw", "video_id": "video10390", "start time": 140.59, "end time": 166.95, "split": "test", "id": 10390}, {"category": 7, "url": "https://www.youtube.com/watch?v=2pbfkNI2d_A", "video_id": "video12566", "start time": 41.56, "end time": 61.24, "split": "test", "id": 12566}, {"category": 17, "url": "https://www.youtube.com/watch?v=P4OVod7oR7E", "video_id": "video11544", "start time": 41.46, "end time": 63.98, "split": "test", "id": 11544}, {"category": 18, "url": "https://www.youtube.com/watch?v=mcyTGXA1Yss", "video_id": "video10503", "start time": 449.01, "end time": 478.37, "split": "test", "id": 10503}, {"category": 12, "url": "https://www.youtube.com/watch?v=BSmA1mKwFyg", "video_id": "video12845", "start time": 372.18, "end time": 385.85, "split": "test", "id": 12845}, {"category": 16, "url": "https://www.youtube.com/watch?v=IfHwy2ViAS8", "video_id": "video10405", "start time": 6.61, "end time": 19.11, "split": "test", "id": 10405}, {"category": 3, "url": "https://www.youtube.com/watch?v=a9NatIdlWGE", "video_id": "video10305", "start time": 159.54, "end time": 188.0, "split": "test", "id": 10305}, {"category": 8, "url": "https://www.youtube.com/watch?v=2lrLODlOP5s", "video_id": "video11251", "start time": 489.9, "end time": 500.31, "split": "test", "id": 11251}, {"category": 11, "url": "https://www.youtube.com/watch?v=fdWnMDia8No", "video_id": "video11078", "start time": 7.97, "end time": 24.25, "split": "test", "id": 11078}, {"category": 17, "url": "https://www.youtube.com/watch?v=Ec3jxYwkg9I", "video_id": "video10575", "start time": 88.87, "end time": 104.39, "split": "test", "id": 10575}, {"category": 7, "url": "https://www.youtube.com/watch?v=2psDtECxFy0", "video_id": "video11979", "start time": 61.07, "end time": 73.2, "split": "test", "id": 11979}, {"category": 3, "url": "https://www.youtube.com/watch?v=aXCc7BIc0k0", "video_id": "video10923", "start time": 321.45, "end time": 347.25, "split": "test", "id": 10923}, {"category": 16, "url": "https://www.youtube.com/watch?v=bEHKhkPSUXg", "video_id": "video10312", "start time": 18.31, "end time": 37.25, "split": "test", "id": 10312}, {"category": 16, "url": "https://www.youtube.com/watch?v=jFc4lb1d-dM", "video_id": "video10587", "start time": 164.21, "end time": 190.9, "split": "test", "id": 10587}, {"category": 2, "url": "https://www.youtube.com/watch?v=aUXoekeDIW8", "video_id": "video11247", "start time": 123.51, "end time": 152.85, "split": "test", "id": 11247}, {"category": 16, "url": "https://www.youtube.com/watch?v=cwgoxX6ixCw", "video_id": "video10968", "start time": 370.08, "end time": 384.88, "split": "test", "id": 10968}, {"category": 18, "url": "https://www.youtube.com/watch?v=hD1yADytimE", "video_id": "video12009", "start time": 50.45, "end time": 61.57, "split": "test", "id": 12009}, {"category": 6, "url": "https://www.youtube.com/watch?v=5P5BGXwaLQs", "video_id": "video11180", "start time": 261.18, "end time": 287.5, "split": "test", "id": 11180}, {"category": 16, "url": "https://www.youtube.com/watch?v=RfoftJhzUVg", "video_id": "video11318", "start time": 67.95, "end time": 80.69, "split": "test", "id": 11318}, {"category": 13, "url": "https://www.youtube.com/watch?v=7abf2Vyesrs", "video_id": "video10005", "start time": 6.57, "end time": 17.65, "split": "test", "id": 10005}, {"category": 4, "url": "https://www.youtube.com/watch?v=dKPei6YV84E", "video_id": "video12170", "start time": 2.75, "end time": 32.68, "split": "test", "id": 12170}, {"category": 3, "url": "https://www.youtube.com/watch?v=nSbFFmtsZkQ", "video_id": "video12093", "start time": 27.51, "end time": 41.42, "split": "test", "id": 12093}, {"category": 3, "url": "https://www.youtube.com/watch?v=1Xq1p7bVZxs", "video_id": "video10308", "start time": 24.37, "end time": 34.69, "split": "test", "id": 10308}, {"category": 4, "url": "https://www.youtube.com/watch?v=HhUGn-GfQTw", "video_id": "video10063", "start time": 183.25, "end time": 201.97, "split": "test", "id": 10063}, {"category": 16, "url": "https://www.youtube.com/watch?v=L1TFnkm1TG8", "video_id": "video10868", "start time": 9.52, "end time": 20.1, "split": "test", "id": 10868}, {"category": 6, "url": "https://www.youtube.com/watch?v=A66ebijBXvM", "video_id": "video12941", "start time": 42.05, "end time": 63.9, "split": "test", "id": 12941}, {"category": 8, "url": "https://www.youtube.com/watch?v=7mqAZ06dwKU", "video_id": "video11428", "start time": 566.41, "end time": 579.89, "split": "test", "id": 11428}, {"category": 11, "url": "https://www.youtube.com/watch?v=RbXCwt6NbkQ", "video_id": "video12625", "start time": 40.05, "end time": 53.05, "split": "test", "id": 12625}, {"category": 3, "url": "https://www.youtube.com/watch?v=R8Y2vfShCzY", "video_id": "video11425", "start time": 261.84, "end time": 283.33, "split": "test", "id": 11425}, {"category": 13, "url": "https://www.youtube.com/watch?v=9gVEAhFBeHs", "video_id": "video10762", "start time": 85.27, "end time": 96.78, "split": "test", "id": 10762}, {"category": 17, "url": "https://www.youtube.com/watch?v=AjnuMJRANLw", "video_id": "video11871", "start time": 84.17, "end time": 97.53, "split": "test", "id": 11871}, {"category": 7, "url": "https://www.youtube.com/watch?v=1gev7vA3-a0", "video_id": "video12739", "start time": 34.04, "end time": 60.86, "split": "test", "id": 12739}, {"category": 17, "url": "https://www.youtube.com/watch?v=SEHzpN14wSU", "video_id": "video12559", "start time": 125.24, "end time": 144.83, "split": "test", "id": 12559}, {"category": 2, "url": "https://www.youtube.com/watch?v=3IahwK6dnuw", "video_id": "video11588", "start time": 203.52, "end time": 219.33, "split": "test", "id": 11588}, {"category": 18, "url": "https://www.youtube.com/watch?v=aN4YtEyuUQI", "video_id": "video10940", "start time": 174.01, "end time": 189.11, "split": "test", "id": 10940}, {"category": 0, "url": "https://www.youtube.com/watch?v=5NPBIwQyPWE", "video_id": "video11959", "start time": 38.62, "end time": 53.0, "split": "test", "id": 11959}, {"category": 12, "url": "https://www.youtube.com/watch?v=kwonnEGFjhY", "video_id": "video10647", "start time": 166.95, "end time": 184.13, "split": "test", "id": 10647}, {"category": 14, "url": "https://www.youtube.com/watch?v=5WsAZkF9lbc", "video_id": "video12503", "start time": 47.58, "end time": 64.75, "split": "test", "id": 12503}, {"category": 19, "url": "https://www.youtube.com/watch?v=7R2itrOePPA", "video_id": "video10165", "start time": 121.28, "end time": 138.35, "split": "test", "id": 10165}, {"category": 16, "url": "https://www.youtube.com/watch?v=Bd6-DWInJtI", "video_id": "video12115", "start time": 42.81, "end time": 64.45, "split": "test", "id": 12115}, {"category": 10, "url": "https://www.youtube.com/watch?v=-NNZuElZigk", "video_id": "video10248", "start time": 71.49, "end time": 89.14, "split": "test", "id": 10248}, {"category": 9, "url": "https://www.youtube.com/watch?v=juM3ZOIALa8", "video_id": "video10217", "start time": 106.99, "end time": 118.67, "split": "test", "id": 10217}, {"category": 8, "url": "https://www.youtube.com/watch?v=HVPLzeoVPX8", "video_id": "video10177", "start time": 2.3, "end time": 31.12, "split": "test", "id": 10177}, {"category": 9, "url": "https://www.youtube.com/watch?v=2apWN173D4A", "video_id": "video11191", "start time": 9.99, "end time": 33.55, "split": "test", "id": 11191}, {"category": 18, "url": "https://www.youtube.com/watch?v=rFR2NGPndtc", "video_id": "video12546", "start time": 3.01, "end time": 30.08, "split": "test", "id": 12546}, {"category": 16, "url": "https://www.youtube.com/watch?v=ohDFXDXak4Q", "video_id": "video12562", "start time": 178.79, "end time": 196.18, "split": "test", "id": 12562}, {"category": 12, "url": "https://www.youtube.com/watch?v=7KFwvBdEZHo", "video_id": "video11495", "start time": 37.51, "end time": 48.35, "split": "test", "id": 11495}, {"category": 0, "url": "https://www.youtube.com/watch?v=eVTXPUF4Oz4", "video_id": "video11049", "start time": 58.19, "end time": 71.83, "split": "test", "id": 11049}, {"category": 18, "url": "https://www.youtube.com/watch?v=4Qp3mDkuJMs", "video_id": "video10653", "start time": 25.51, "end time": 39.49, "split": "test", "id": 10653}, {"category": 18, "url": "https://www.youtube.com/watch?v=dKNJL-2rU2Y", "video_id": "video12321", "start time": 14.25, "end time": 27.19, "split": "test", "id": 12321}, {"category": 14, "url": "https://www.youtube.com/watch?v=h6Hlv98RFNY", "video_id": "video12023", "start time": 169.15, "end time": 179.33, "split": "test", "id": 12023}, {"category": 16, "url": "https://www.youtube.com/watch?v=FZr_eD8aXro", "video_id": "video12295", "start time": 57.84, "end time": 68.32, "split": "test", "id": 12295}, {"category": 6, "url": "https://www.youtube.com/watch?v=7BGvd6r2j_4", "video_id": "video10313", "start time": 116.1, "end time": 135.25, "split": "test", "id": 10313}, {"category": 3, "url": "https://www.youtube.com/watch?v=aGA-myGjMUc", "video_id": "video10736", "start time": 8.09, "end time": 18.17, "split": "test", "id": 10736}, {"category": 13, "url": "https://www.youtube.com/watch?v=7qhB_5oH-kI", "video_id": "video11431", "start time": 0.0, "end time": 21.05, "split": "test", "id": 11431}, {"category": 18, "url": "https://www.youtube.com/watch?v=aAAk8QPBH1k", "video_id": "video10944", "start time": 149.56, "end time": 173.82, "split": "test", "id": 10944}, {"category": 9, "url": "https://www.youtube.com/watch?v=81l_Juc0_tw", "video_id": "video12494", "start time": 193.57, "end time": 214.85, "split": "test", "id": 12494}, {"category": 13, "url": "https://www.youtube.com/watch?v=BBbB27698Ug", "video_id": "video12824", "start time": 135.18, "end time": 153.3, "split": "test", "id": 12824}, {"category": 9, "url": "https://www.youtube.com/watch?v=MfGnQB4Mjrs", "video_id": "video12231", "start time": 87.4, "end time": 114.73, "split": "test", "id": 12231}, {"category": 4, "url": "https://www.youtube.com/watch?v=gtbn-azrngk", "video_id": "video10293", "start time": 15.86, "end time": 43.22, "split": "test", "id": 10293}, {"category": 9, "url": "https://www.youtube.com/watch?v=kdSBeWMwZqY", "video_id": "video11131", "start time": 92.61, "end time": 117.73, "split": "test", "id": 11131}, {"category": 13, "url": "https://www.youtube.com/watch?v=N2_HkWs7OM0", "video_id": "video11410", "start time": 42.59, "end time": 59.47, "split": "test", "id": 11410}, {"category": 16, "url": "https://www.youtube.com/watch?v=bGMIsiKnTz4", "video_id": "video10620", "start time": 208.73, "end time": 223.01, "split": "test", "id": 10620}, {"category": 12, "url": "https://www.youtube.com/watch?v=7ksgMkDeLoM", "video_id": "video10864", "start time": 174.96, "end time": 187.8, "split": "test", "id": 10864}, {"category": 12, "url": "https://www.youtube.com/watch?v=4kz9HwXf1OE", "video_id": "video11651", "start time": 15.53, "end time": 31.25, "split": "test", "id": 11651}, {"category": 7, "url": "https://www.youtube.com/watch?v=08AxWyQmK58", "video_id": "video10795", "start time": 26.77, "end time": 43.36, "split": "test", "id": 10795}, {"category": 3, "url": "https://www.youtube.com/watch?v=ox7spKu7EOc", "video_id": "video10946", "start time": 62.29, "end time": 72.73, "split": "test", "id": 10946}, {"category": 0, "url": "https://www.youtube.com/watch?v=89ska2OGjYw", "video_id": "video12033", "start time": 106.2, "end time": 116.68, "split": "test", "id": 12033}, {"category": 10, "url": "https://www.youtube.com/watch?v=S648xZDK7b0", "video_id": "video10327", "start time": 182.76, "end time": 198.88, "split": "test", "id": 10327}, {"category": 10, "url": "https://www.youtube.com/watch?v=07C9Z5ZfXyg", "video_id": "video10899", "start time": 283.16, "end time": 294.84, "split": "test", "id": 10899}, {"category": 9, "url": "https://www.youtube.com/watch?v=P7_pPiDksI0", "video_id": "video12674", "start time": 186.43, "end time": 198.01, "split": "test", "id": 12674}, {"category": 12, "url": "https://www.youtube.com/watch?v=f4ntLJkeP7k", "video_id": "video10933", "start time": 91.57, "end time": 103.77, "split": "test", "id": 10933}, {"category": 7, "url": "https://www.youtube.com/watch?v=KKp2VyH7n_0", "video_id": "video10651", "start time": 113.49, "end time": 128.94, "split": "test", "id": 10651}, {"category": 16, "url": "https://www.youtube.com/watch?v=0smDhdzqXu8", "video_id": "video11869", "start time": 258.57, "end time": 282.33, "split": "test", "id": 11869}, {"category": 3, "url": "https://www.youtube.com/watch?v=Eq_ohATweHc", "video_id": "video10454", "start time": 12.36, "end time": 34.28, "split": "test", "id": 10454}, {"category": 3, "url": "https://www.youtube.com/watch?v=Og6YYIJ37vg", "video_id": "video11744", "start time": 96.21, "end time": 120.53, "split": "test", "id": 11744}, {"category": 16, "url": "https://www.youtube.com/watch?v=rlljPsT6Zeg", "video_id": "video11854", "start time": 360.44, "end time": 375.82, "split": "test", "id": 11854}, {"category": 7, "url": "https://www.youtube.com/watch?v=N09q0Enrun0", "video_id": "video12017", "start time": 76.75, "end time": 87.38, "split": "test", "id": 12017}, {"category": 18, "url": "https://www.youtube.com/watch?v=JYmPHZAQ69U", "video_id": "video10559", "start time": 276.85, "end time": 304.37, "split": "test", "id": 10559}, {"category": 3, "url": "https://www.youtube.com/watch?v=K6IHqFwmnI4", "video_id": "video10848", "start time": 181.11, "end time": 196.18, "split": "test", "id": 10848}, {"category": 18, "url": "https://www.youtube.com/watch?v=4U87nGH9XV8", "video_id": "video10672", "start time": 453.7, "end time": 470.82, "split": "test", "id": 10672}, {"category": 13, "url": "https://www.youtube.com/watch?v=m8RMv0tkwVk", "video_id": "video11919", "start time": 141.96, "end time": 164.34, "split": "test", "id": 11919}, {"category": 9, "url": "https://www.youtube.com/watch?v=8d3r2LNNiUA", "video_id": "video11115", "start time": 425.55, "end time": 454.28, "split": "test", "id": 11115}, {"category": 13, "url": "https://www.youtube.com/watch?v=d8EBuJZuY7c", "video_id": "video11788", "start time": 10.06, "end time": 27.78, "split": "test", "id": 11788}, {"category": 16, "url": "https://www.youtube.com/watch?v=mB6SCdnXFrE", "video_id": "video10452", "start time": 182.86, "end time": 194.94, "split": "test", "id": 10452}, {"category": 9, "url": "https://www.youtube.com/watch?v=JWiDfkk76xU", "video_id": "video11771", "start time": 193.41, "end time": 205.69, "split": "test", "id": 11771}, {"category": 7, "url": "https://www.youtube.com/watch?v=I_aK2TXFe5U", "video_id": "video11897", "start time": 91.71, "end time": 104.45, "split": "test", "id": 11897}, {"category": 5, "url": "https://www.youtube.com/watch?v=l64YwNl1wr0", "video_id": "video12412", "start time": 229.61, "end time": 240.2, "split": "test", "id": 12412}, {"category": 11, "url": "https://www.youtube.com/watch?v=ei627E7_j_o", "video_id": "video10113", "start time": 217.9, "end time": 235.82, "split": "test", "id": 10113}, {"category": 7, "url": "https://www.youtube.com/watch?v=ed9g87Rs9qk", "video_id": "video12256", "start time": 140.71, "end time": 160.13, "split": "test", "id": 12256}, {"category": 3, "url": "https://www.youtube.com/watch?v=-lGrARvsuD0", "video_id": "video10675", "start time": 90.17, "end time": 101.12, "split": "test", "id": 10675}, {"category": 7, "url": "https://www.youtube.com/watch?v=nTCj2_tK3XU", "video_id": "video12741", "start time": 116.41, "end time": 144.48, "split": "test", "id": 12741}, {"category": 4, "url": "https://www.youtube.com/watch?v=1ziw90qrWeM", "video_id": "video10642", "start time": 89.88, "end time": 103.91, "split": "test", "id": 10642}, {"category": 17, "url": "https://www.youtube.com/watch?v=QTQu2N5aK1A", "video_id": "video11237", "start time": 26.44, "end time": 41.76, "split": "test", "id": 11237}, {"category": 0, "url": "https://www.youtube.com/watch?v=IDvu1ehPq0g", "video_id": "video12064", "start time": 211.43, "end time": 225.23, "split": "test", "id": 12064}, {"category": 16, "url": "https://www.youtube.com/watch?v=1-3MqPagoso", "video_id": "video10722", "start time": 280.06, "end time": 301.88, "split": "test", "id": 10722}, {"category": 9, "url": "https://www.youtube.com/watch?v=4wM7WjzHB20", "video_id": "video10603", "start time": 62.71, "end time": 79.95, "split": "test", "id": 10603}, {"category": 7, "url": "https://www.youtube.com/watch?v=R54z0iaqpV4", "video_id": "video12427", "start time": 0.0, "end time": 20.21, "split": "test", "id": 12427}, {"category": 14, "url": "https://www.youtube.com/watch?v=b0UOwC7en9k", "video_id": "video10197", "start time": 10.65, "end time": 20.97, "split": "test", "id": 10197}, {"category": 15, "url": "https://www.youtube.com/watch?v=phhGhuTdrZo", "video_id": "video10729", "start time": 33.08, "end time": 43.69, "split": "test", "id": 10729}, {"category": 9, "url": "https://www.youtube.com/watch?v=NDEY8w00ABM", "video_id": "video11982", "start time": 20.2, "end time": 30.24, "split": "test", "id": 11982}, {"category": 17, "url": "https://www.youtube.com/watch?v=4XfeImJ6OFw", "video_id": "video10860", "start time": 98.61, "end time": 116.63, "split": "test", "id": 10860}, {"category": 11, "url": "https://www.youtube.com/watch?v=jO-7QIOKrKY", "video_id": "video11667", "start time": 340.09, "end time": 365.15, "split": "test", "id": 11667}, {"category": 18, "url": "https://www.youtube.com/watch?v=KG_zSnXssXk", "video_id": "video12422", "start time": 102.97, "end time": 113.65, "split": "test", "id": 12422}, {"category": 9, "url": "https://www.youtube.com/watch?v=1iGo-FIfoXo", "video_id": "video12937", "start time": 0.0, "end time": 12.08, "split": "test", "id": 12937}, {"category": 16, "url": "https://www.youtube.com/watch?v=ERYk69kPWxg", "video_id": "video12107", "start time": 13.45, "end time": 23.97, "split": "test", "id": 12107}, {"category": 7, "url": "https://www.youtube.com/watch?v=mH-4pjMUhqs", "video_id": "video11072", "start time": 5.01, "end time": 21.94, "split": "test", "id": 11072}, {"category": 16, "url": "https://www.youtube.com/watch?v=6uPD1VdHbxs", "video_id": "video11993", "start time": 56.64, "end time": 68.62, "split": "test", "id": 11993}, {"category": 9, "url": "https://www.youtube.com/watch?v=GqqOcR9JGdY", "video_id": "video10315", "start time": 84.13, "end time": 98.21, "split": "test", "id": 10315}, {"category": 0, "url": "https://www.youtube.com/watch?v=0put0_a--Ng", "video_id": "video10562", "start time": 37.89, "end time": 52.77, "split": "test", "id": 10562}, {"category": 14, "url": "https://www.youtube.com/watch?v=9vUs1ypeWhY", "video_id": "video12659", "start time": 90.73, "end time": 101.97, "split": "test", "id": 12659}, {"category": 18, "url": "https://www.youtube.com/watch?v=pmUGwdjWXaU", "video_id": "video12496", "start time": 40.09, "end time": 58.56, "split": "test", "id": 12496}, {"category": 18, "url": "https://www.youtube.com/watch?v=LnE7S8jTZUE", "video_id": "video11501", "start time": 43.05, "end time": 58.19, "split": "test", "id": 11501}, {"category": 11, "url": "https://www.youtube.com/watch?v=9TPpq7dTohI", "video_id": "video11553", "start time": 145.66, "end time": 158.04, "split": "test", "id": 11553}, {"category": 15, "url": "https://www.youtube.com/watch?v=a2VJqud3Ls8", "video_id": "video10391", "start time": 231.48, "end time": 260.81, "split": "test", "id": 10391}, {"category": 9, "url": "https://www.youtube.com/watch?v=gpxGzyO_yeU", "video_id": "video10615", "start time": 47.86, "end time": 60.84, "split": "test", "id": 10615}, {"category": 3, "url": "https://www.youtube.com/watch?v=DPtlwoQDb-E", "video_id": "video10512", "start time": 160.05, "end time": 185.11, "split": "test", "id": 10512}, {"category": 14, "url": "https://www.youtube.com/watch?v=N1pTZTHZF4E", "video_id": "video10024", "start time": 46.93, "end time": 68.52, "split": "test", "id": 10024}, {"category": 5, "url": "https://www.youtube.com/watch?v=IzXQVwWYFv4", "video_id": "video10970", "start time": 383.76, "end time": 399.65, "split": "test", "id": 10970}, {"category": 12, "url": "https://www.youtube.com/watch?v=DtOSoFFSXBo", "video_id": "video12621", "start time": 176.92, "end time": 187.77, "split": "test", "id": 12621}, {"category": 5, "url": "https://www.youtube.com/watch?v=18uDutylDa4", "video_id": "video12096", "start time": 427.44, "end time": 457.44, "split": "test", "id": 12096}, {"category": 0, "url": "https://www.youtube.com/watch?v=b8kaxiWc1Yk", "video_id": "video10174", "start time": 39.15, "end time": 50.1, "split": "test", "id": 10174}, {"category": 13, "url": "https://www.youtube.com/watch?v=815MslbpLLU", "video_id": "video12635", "start time": 44.83, "end time": 59.77, "split": "test", "id": 12635}, {"category": 16, "url": "https://www.youtube.com/watch?v=kaMsuaPaGoA", "video_id": "video12872", "start time": 100.45, "end time": 121.49, "split": "test", "id": 12872}, {"category": 13, "url": "https://www.youtube.com/watch?v=P5SUxmi3Qng", "video_id": "video11669", "start time": 170.05, "end time": 182.58, "split": "test", "id": 11669}, {"category": 14, "url": "https://www.youtube.com/watch?v=6JjcIiCJaDo", "video_id": "video10835", "start time": 185.6, "end time": 198.55, "split": "test", "id": 10835}, {"category": 13, "url": "https://www.youtube.com/watch?v=OMN_PAvCbV4", "video_id": "video12158", "start time": 236.08, "end time": 246.69, "split": "test", "id": 12158}, {"category": 11, "url": "https://www.youtube.com/watch?v=EPI4EFB744Y", "video_id": "video12077", "start time": 165.98, "end time": 181.46, "split": "test", "id": 12077}, {"category": 16, "url": "https://www.youtube.com/watch?v=qaJyQ_gOMA0", "video_id": "video10578", "start time": 61.98, "end time": 73.05, "split": "test", "id": 10578}, {"category": 12, "url": "https://www.youtube.com/watch?v=EdDccsbv5hA", "video_id": "video11472", "start time": 23.2, "end time": 36.02, "split": "test", "id": 11472}, {"category": 16, "url": "https://www.youtube.com/watch?v=iE_mlpUYq5k", "video_id": "video12168", "start time": 3.81, "end time": 33.05, "split": "test", "id": 12168}, {"category": 4, "url": "https://www.youtube.com/watch?v=QT3Q_nP8mcs", "video_id": "video12896", "start time": 3.21, "end time": 13.31, "split": "test", "id": 12896}, {"category": 14, "url": "https://www.youtube.com/watch?v=OQHfvKIqr1s", "video_id": "video11575", "start time": 194.19, "end time": 218.58, "split": "test", "id": 11575}, {"category": 0, "url": "https://www.youtube.com/watch?v=INe4CpgPECQ", "video_id": "video11868", "start time": 13.26, "end time": 27.98, "split": "test", "id": 11868}, {"category": 16, "url": "https://www.youtube.com/watch?v=B3Be0tpYbAw", "video_id": "video12575", "start time": 160.81, "end time": 175.76, "split": "test", "id": 12575}, {"category": 16, "url": "https://www.youtube.com/watch?v=5p30l0w6AC8", "video_id": "video10870", "start time": 8.66, "end time": 25.01, "split": "test", "id": 10870}, {"category": 16, "url": "https://www.youtube.com/watch?v=5vedDtQdHXo", "video_id": "video12699", "start time": 89.04, "end time": 103.38, "split": "test", "id": 12699}, {"category": 8, "url": "https://www.youtube.com/watch?v=kQBnovM3RH0", "video_id": "video12856", "start time": 91.94, "end time": 105.79, "split": "test", "id": 12856}, {"category": 4, "url": "https://www.youtube.com/watch?v=qtsgR6v79gc", "video_id": "video12492", "start time": 150.2, "end time": 173.12, "split": "test", "id": 12492}, {"category": 17, "url": "https://www.youtube.com/watch?v=aADYaPeTJBk", "video_id": "video10041", "start time": 690.38, "end time": 702.55, "split": "test", "id": 10041}, {"category": 8, "url": "https://www.youtube.com/watch?v=-f1RcRJ_CLo", "video_id": "video11061", "start time": 172.92, "end time": 184.6, "split": "test", "id": 11061}, {"category": 16, "url": "https://www.youtube.com/watch?v=097odNVaog4", "video_id": "video10155", "start time": 16.13, "end time": 36.82, "split": "test", "id": 10155}, {"category": 13, "url": "https://www.youtube.com/watch?v=ObsVd34i_7s", "video_id": "video10202", "start time": 172.65, "end time": 199.01, "split": "test", "id": 10202}, {"category": 3, "url": "https://www.youtube.com/watch?v=ASqtvCAV8GU", "video_id": "video10682", "start time": 10.81, "end time": 39.57, "split": "test", "id": 10682}, {"category": 13, "url": "https://www.youtube.com/watch?v=kxRX6LXDpWs", "video_id": "video10673", "start time": 0.0, "end time": 20.09, "split": "test", "id": 10673}, {"category": 17, "url": "https://www.youtube.com/watch?v=0yOA1WnlpWY", "video_id": "video12237", "start time": 262.14, "end time": 277.89, "split": "test", "id": 12237}, {"category": 5, "url": "https://www.youtube.com/watch?v=nowsS7pMApI", "video_id": "video12309", "start time": 330.84, "end time": 351.82, "split": "test", "id": 12309}, {"category": 15, "url": "https://www.youtube.com/watch?v=q_BYvUlDviM", "video_id": "video11464", "start time": 90.37, "end time": 113.65, "split": "test", "id": 11464}, {"category": 3, "url": "https://www.youtube.com/watch?v=jxyzN2Kt1TM", "video_id": "video10256", "start time": 140.29, "end time": 156.97, "split": "test", "id": 10256}, {"category": 12, "url": "https://www.youtube.com/watch?v=-EVpnGc2lNE", "video_id": "video11587", "start time": 37.71, "end time": 58.31, "split": "test", "id": 11587}, {"category": 4, "url": "https://www.youtube.com/watch?v=3Zpa9ExCaS8", "video_id": "video11051", "start time": 10.22, "end time": 23.54, "split": "test", "id": 11051}, {"category": 4, "url": "https://www.youtube.com/watch?v=AUYdqOG6KK4", "video_id": "video10467", "start time": 0.0, "end time": 26.01, "split": "test", "id": 10467}, {"category": 18, "url": "https://www.youtube.com/watch?v=3RKO3Zt7Ids", "video_id": "video12708", "start time": 33.01, "end time": 52.3, "split": "test", "id": 12708}, {"category": 10, "url": "https://www.youtube.com/watch?v=IalOpQ-6wfQ", "video_id": "video12445", "start time": 66.51, "end time": 83.34, "split": "test", "id": 12445}, {"category": 12, "url": "https://www.youtube.com/watch?v=EzUnY5jpkHg", "video_id": "video10283", "start time": 4.09, "end time": 24.81, "split": "test", "id": 10283}, {"category": 11, "url": "https://www.youtube.com/watch?v=Aoq60LGSH0k", "video_id": "video11373", "start time": 61.38, "end time": 77.32, "split": "test", "id": 11373}, {"category": 7, "url": "https://www.youtube.com/watch?v=2Lqy_ruopjw", "video_id": "video10532", "start time": 153.09, "end time": 164.71, "split": "test", "id": 10532}, {"category": 14, "url": "https://www.youtube.com/watch?v=p8I5fYjZV_E", "video_id": "video10735", "start time": 8.57, "end time": 20.65, "split": "test", "id": 10735}, {"category": 12, "url": "https://www.youtube.com/watch?v=glQ2NrnDHWc", "video_id": "video11481", "start time": 129.61, "end time": 151.29, "split": "test", "id": 11481}, {"category": 13, "url": "https://www.youtube.com/watch?v=6Nz2X0BWJXc", "video_id": "video11905", "start time": 443.16, "end time": 461.27, "split": "test", "id": 11905}, {"category": 11, "url": "https://www.youtube.com/watch?v=s1_39uNpe4k", "video_id": "video12666", "start time": 52.97, "end time": 76.46, "split": "test", "id": 12666}, {"category": 13, "url": "https://www.youtube.com/watch?v=gk5eywwPR88", "video_id": "video11256", "start time": 0.0, "end time": 13.14, "split": "test", "id": 11256}, {"category": 7, "url": "https://www.youtube.com/watch?v=fHcMT9-16UI", "video_id": "video10982", "start time": 103.33, "end time": 113.85, "split": "test", "id": 10982}, {"category": 18, "url": "https://www.youtube.com/watch?v=jdsPJO5Ip64", "video_id": "video11540", "start time": 988.01, "end time": 999.49, "split": "test", "id": 11540}, {"category": 2, "url": "https://www.youtube.com/watch?v=ELRdn1QFrWo", "video_id": "video10397", "start time": 82.83, "end time": 96.68, "split": "test", "id": 10397}, {"category": 5, "url": "https://www.youtube.com/watch?v=Q-mkVSasZIM", "video_id": "video11199", "start time": 528.24, "end time": 541.46, "split": "test", "id": 11199}, {"category": 11, "url": "https://www.youtube.com/watch?v=hJf6hJU_KoM", "video_id": "video12363", "start time": 144.78, "end time": 162.91, "split": "test", "id": 12363}, {"category": 5, "url": "https://www.youtube.com/watch?v=B9bDZ5-zPtY", "video_id": "video10638", "start time": 517.38, "end time": 540.88, "split": "test", "id": 10638}, {"category": 17, "url": "https://www.youtube.com/watch?v=RguOb1Qv_wU", "video_id": "video10555", "start time": 588.03, "end time": 606.25, "split": "test", "id": 10555}, {"category": 4, "url": "https://www.youtube.com/watch?v=GMn_u9oMazk", "video_id": "video12694", "start time": 185.47, "end time": 207.22, "split": "test", "id": 12694}, {"category": 14, "url": "https://www.youtube.com/watch?v=2qD-b4QbruA", "video_id": "video10061", "start time": 11.37, "end time": 33.97, "split": "test", "id": 10061}, {"category": 10, "url": "https://www.youtube.com/watch?v=nF6QypuW1fs", "video_id": "video10095", "start time": 60.24, "end time": 77.26, "split": "test", "id": 10095}, {"category": 18, "url": "https://www.youtube.com/watch?v=RJOCQRge7qE", "video_id": "video11089", "start time": 174.81, "end time": 185.73, "split": "test", "id": 11089}, {"category": 14, "url": "https://www.youtube.com/watch?v=OSPGOz2K0-U", "video_id": "video11001", "start time": 4.61, "end time": 18.81, "split": "test", "id": 11001}, {"category": 13, "url": "https://www.youtube.com/watch?v=JrvxGIDMGUM", "video_id": "video10035", "start time": 200.08, "end time": 218.77, "split": "test", "id": 10035}, {"category": 17, "url": "https://www.youtube.com/watch?v=46EgrAhUqnI", "video_id": "video12018", "start time": 564.77, "end time": 579.49, "split": "test", "id": 12018}, {"category": 19, "url": "https://www.youtube.com/watch?v=NE73kK5HK7w", "video_id": "video10491", "start time": 59.91, "end time": 88.98, "split": "test", "id": 10491}, {"category": 3, "url": "https://www.youtube.com/watch?v=PAFqJfwhNIM", "video_id": "video11599", "start time": 333.15, "end time": 344.59, "split": "test", "id": 11599}, {"category": 15, "url": "https://www.youtube.com/watch?v=ocCX9G9v9so", "video_id": "video10519", "start time": 5.05, "end time": 20.75, "split": "test", "id": 10519}, {"category": 12, "url": "https://www.youtube.com/watch?v=1DhEssy3NWw", "video_id": "video11911", "start time": 39.46, "end time": 54.77, "split": "test", "id": 11911}, {"category": 18, "url": "https://www.youtube.com/watch?v=3GxpHIIt-_w", "video_id": "video10717", "start time": 498.85, "end time": 522.17, "split": "test", "id": 10717}, {"category": 7, "url": "https://www.youtube.com/watch?v=5zK-b0INu1k", "video_id": "video11328", "start time": 153.2, "end time": 168.88, "split": "test", "id": 11328}, {"category": 5, "url": "https://www.youtube.com/watch?v=1wo2TLlMhiw", "video_id": "video10007", "start time": 0.0, "end time": 17.73, "split": "test", "id": 10007}, {"category": 11, "url": "https://www.youtube.com/watch?v=HXlJEgmtrMk", "video_id": "video10790", "start time": 26.75, "end time": 40.51, "split": "test", "id": 10790}, {"category": 9, "url": "https://www.youtube.com/watch?v=O22E8lXfjVg", "video_id": "video11558", "start time": 102.68, "end time": 117.36, "split": "test", "id": 11558}, {"category": 16, "url": "https://www.youtube.com/watch?v=9xPb8quQDB0", "video_id": "video10146", "start time": 103.25, "end time": 131.01, "split": "test", "id": 10146}, {"category": 16, "url": "https://www.youtube.com/watch?v=BBnkUSuK01Q", "video_id": "video12904", "start time": 44.05, "end time": 56.58, "split": "test", "id": 12904}, {"category": 8, "url": "https://www.youtube.com/watch?v=54HlXxua1fk", "video_id": "video11287", "start time": 37.42, "end time": 47.84, "split": "test", "id": 11287}, {"category": 7, "url": "https://www.youtube.com/watch?v=8H1sKGaaN1Q", "video_id": "video11606", "start time": 49.53, "end time": 60.27, "split": "test", "id": 11606}, {"category": 10, "url": "https://www.youtube.com/watch?v=r6Qlx7fKW08", "video_id": "video10998", "start time": 81.38, "end time": 96.56, "split": "test", "id": 10998}, {"category": 16, "url": "https://www.youtube.com/watch?v=1LYgUzQ0ung", "video_id": "video10114", "start time": 156.49, "end time": 175.49, "split": "test", "id": 10114}, {"category": 3, "url": "https://www.youtube.com/watch?v=sc4BACTTby8", "video_id": "video11140", "start time": 14.61, "end time": 40.08, "split": "test", "id": 11140}, {"category": 16, "url": "https://www.youtube.com/watch?v=hd-xKsgbmLI", "video_id": "video12579", "start time": 182.28, "end time": 209.45, "split": "test", "id": 12579}, {"category": 6, "url": "https://www.youtube.com/watch?v=JNUPn1rt3Ac", "video_id": "video10973", "start time": 2.63, "end time": 26.62, "split": "test", "id": 10973}, {"category": 4, "url": "https://www.youtube.com/watch?v=QswR7SHBvvA", "video_id": "video12457", "start time": 74.81, "end time": 90.37, "split": "test", "id": 12457}, {"category": 4, "url": "https://www.youtube.com/watch?v=kJ-PG53A9Ho", "video_id": "video11239", "start time": 40.55, "end time": 62.14, "split": "test", "id": 11239}, {"category": 3, "url": "https://www.youtube.com/watch?v=aWH1xdAI2eQ", "video_id": "video10768", "start time": 80.53, "end time": 91.21, "split": "test", "id": 10768}, {"category": 13, "url": "https://www.youtube.com/watch?v=GCLiAqfr03E", "video_id": "video11107", "start time": 7.86, "end time": 24.44, "split": "test", "id": 11107}, {"category": 14, "url": "https://www.youtube.com/watch?v=IrHxPA9fNIE", "video_id": "video12618", "start time": 429.84, "end time": 444.93, "split": "test", "id": 12618}, {"category": 16, "url": "https://www.youtube.com/watch?v=EDqZ80PBbeQ", "video_id": "video10966", "start time": 141.33, "end time": 159.49, "split": "test", "id": 10966}, {"category": 0, "url": "https://www.youtube.com/watch?v=L17hmM7OYVs", "video_id": "video11496", "start time": 102.15, "end time": 115.87, "split": "test", "id": 11496}, {"category": 17, "url": "https://www.youtube.com/watch?v=0Mz4NTozNXw", "video_id": "video12130", "start time": 0.0, "end time": 20.17, "split": "test", "id": 12130}, {"category": 11, "url": "https://www.youtube.com/watch?v=3aJdazaCMII", "video_id": "video12263", "start time": 76.29, "end time": 92.43, "split": "test", "id": 12263}, {"category": 2, "url": "https://www.youtube.com/watch?v=Gh6V5gRvXYA", "video_id": "video10511", "start time": 87.0, "end time": 107.12, "split": "test", "id": 10511}, {"category": 16, "url": "https://www.youtube.com/watch?v=iV38J_Ili-Y", "video_id": "video10444", "start time": 174.55, "end time": 189.25, "split": "test", "id": 10444}, {"category": 8, "url": "https://www.youtube.com/watch?v=IYLitw13qeg", "video_id": "video12617", "start time": 145.61, "end time": 157.91, "split": "test", "id": 12617}, {"category": 7, "url": "https://www.youtube.com/watch?v=PJlmYh27MHg", "video_id": "video12646", "start time": 42.3, "end time": 62.53, "split": "test", "id": 12646}, {"category": 17, "url": "https://www.youtube.com/watch?v=iT7VDX3XF4k", "video_id": "video12233", "start time": 5.05, "end time": 23.07, "split": "test", "id": 12233}, {"category": 11, "url": "https://www.youtube.com/watch?v=Mv-eBZbe_Wk", "video_id": "video10877", "start time": 166.38, "end time": 181.9, "split": "test", "id": 10877}, {"category": 4, "url": "https://www.youtube.com/watch?v=4Hi3GPRG8f8", "video_id": "video12976", "start time": 173.09, "end time": 191.07, "split": "test", "id": 12976}, {"category": 9, "url": "https://www.youtube.com/watch?v=7-6tcmdCPg0", "video_id": "video11034", "start time": 192.21, "end time": 204.89, "split": "test", "id": 11034}, {"category": 13, "url": "https://www.youtube.com/watch?v=dGinm6KIC4Q", "video_id": "video10351", "start time": 123.78, "end time": 141.78, "split": "test", "id": 10351}, {"category": 7, "url": "https://www.youtube.com/watch?v=46GwJbrMghQ", "video_id": "video12551", "start time": 3.58, "end time": 16.83, "split": "test", "id": 12551}, {"category": 9, "url": "https://www.youtube.com/watch?v=P7_pPiDksI0", "video_id": "video10947", "start time": 161.61, "end time": 172.02, "split": "test", "id": 10947}, {"category": 16, "url": "https://www.youtube.com/watch?v=1GMWn4IxVro", "video_id": "video11267", "start time": 160.73, "end time": 181.29, "split": "test", "id": 11267}, {"category": 13, "url": "https://www.youtube.com/watch?v=0f0QhFzdId8", "video_id": "video10003", "start time": 3.78, "end time": 23.88, "split": "test", "id": 10003}, {"category": 11, "url": "https://www.youtube.com/watch?v=6cs2s4GoQCM", "video_id": "video10109", "start time": 80.39, "end time": 92.21, "split": "test", "id": 10109}, {"category": 12, "url": "https://www.youtube.com/watch?v=0eYbNYvZZoc", "video_id": "video12663", "start time": 53.3, "end time": 76.76, "split": "test", "id": 12663}, {"category": 16, "url": "https://www.youtube.com/watch?v=s2_WVOVMs_g", "video_id": "video12334", "start time": 27.04, "end time": 37.55, "split": "test", "id": 12334}, {"category": 3, "url": "https://www.youtube.com/watch?v=kSqMTeaECPM", "video_id": "video10243", "start time": 135.45, "end time": 147.59, "split": "test", "id": 10243}, {"category": 5, "url": "https://www.youtube.com/watch?v=4YM0Cwy4Xbw", "video_id": "video12030", "start time": 564.31, "end time": 585.45, "split": "test", "id": 12030}, {"category": 7, "url": "https://www.youtube.com/watch?v=IJBnK2wNQSo", "video_id": "video10811", "start time": 18.51, "end time": 31.92, "split": "test", "id": 10811}, {"category": 16, "url": "https://www.youtube.com/watch?v=bdaqjBCabHw", "video_id": "video11867", "start time": 208.86, "end time": 234.01, "split": "test", "id": 11867}, {"category": 13, "url": "https://www.youtube.com/watch?v=BaST1DWWVjE", "video_id": "video12527", "start time": 101.85, "end time": 118.05, "split": "test", "id": 12527}, {"category": 7, "url": "https://www.youtube.com/watch?v=Mo1ylwW9abc", "video_id": "video11238", "start time": 214.9, "end time": 227.01, "split": "test", "id": 11238}, {"category": 19, "url": "https://www.youtube.com/watch?v=f0tEcxLDDd4", "video_id": "video10955", "start time": 65.24, "end time": 79.92, "split": "test", "id": 10955}, {"category": 13, "url": "https://www.youtube.com/watch?v=ffK9_14CYsM", "video_id": "video12506", "start time": 0.0, "end time": 17.69, "split": "test", "id": 12506}, {"category": 17, "url": "https://www.youtube.com/watch?v=RguOb1Qv_wU", "video_id": "video11275", "start time": 491.07, "end time": 506.15, "split": "test", "id": 11275}, {"category": 7, "url": "https://www.youtube.com/watch?v=r_DqoOlLmFE", "video_id": "video10742", "start time": 62.21, "end time": 74.31, "split": "test", "id": 10742}, {"category": 16, "url": "https://www.youtube.com/watch?v=AmkEdcnWhJI", "video_id": "video10849", "start time": 59.73, "end time": 74.17, "split": "test", "id": 10849}, {"category": 3, "url": "https://www.youtube.com/watch?v=rEjQeSNrO5I", "video_id": "video11517", "start time": 70.05, "end time": 83.26, "split": "test", "id": 11517}, {"category": 6, "url": "https://www.youtube.com/watch?v=rcnAY3XaVkM", "video_id": "video10220", "start time": 5.82, "end time": 22.97, "split": "test", "id": 10220}, {"category": 4, "url": "https://www.youtube.com/watch?v=P74mW0OM6Q8", "video_id": "video10132", "start time": 150.65, "end time": 169.89, "split": "test", "id": 10132}, {"category": 18, "url": "https://www.youtube.com/watch?v=muLRxJD5zaQ", "video_id": "video11246", "start time": 42.05, "end time": 53.73, "split": "test", "id": 11246}, {"category": 12, "url": "https://www.youtube.com/watch?v=jG5NcJcVXok", "video_id": "video11393", "start time": 559.98, "end time": 588.05, "split": "test", "id": 11393}, {"category": 16, "url": "https://www.youtube.com/watch?v=A8XDBo5c09o", "video_id": "video12377", "start time": 113.57, "end time": 126.57, "split": "test", "id": 12377}, {"category": 18, "url": "https://www.youtube.com/watch?v=HSN7qFZZxz0", "video_id": "video10262", "start time": 197.35, "end time": 222.25, "split": "test", "id": 10262}, {"category": 10, "url": "https://www.youtube.com/watch?v=JsFJQIUURLo", "video_id": "video11054", "start time": 96.94, "end time": 109.24, "split": "test", "id": 11054}, {"category": 12, "url": "https://www.youtube.com/watch?v=-dvPZ3H1Vm4", "video_id": "video10282", "start time": 107.21, "end time": 130.57, "split": "test", "id": 10282}, {"category": 7, "url": "https://www.youtube.com/watch?v=A8vp6AdjlY8", "video_id": "video12881", "start time": 124.09, "end time": 134.35, "split": "test", "id": 12881}, {"category": 6, "url": "https://www.youtube.com/watch?v=7erg9DT8-hw", "video_id": "video11990", "start time": 91.98, "end time": 118.11, "split": "test", "id": 11990}, {"category": 16, "url": "https://www.youtube.com/watch?v=ikmPrpgWQ5M", "video_id": "video11334", "start time": 108.42, "end time": 118.97, "split": "test", "id": 11334}, {"category": 7, "url": "https://www.youtube.com/watch?v=nUfhEHpeUww", "video_id": "video10986", "start time": 120.87, "end time": 134.08, "split": "test", "id": 10986}, {"category": 12, "url": "https://www.youtube.com/watch?v=7qkizPs2kdw", "video_id": "video12466", "start time": 54.23, "end time": 81.46, "split": "test", "id": 12466}, {"category": 9, "url": "https://www.youtube.com/watch?v=PCSNCs7bwCw", "video_id": "video12213", "start time": 97.21, "end time": 111.97, "split": "test", "id": 12213}, {"category": 10, "url": "https://www.youtube.com/watch?v=I6iG6zWuSdA", "video_id": "video12424", "start time": 218.57, "end time": 229.58, "split": "test", "id": 12424}, {"category": 12, "url": "https://www.youtube.com/watch?v=KIK2lBrbhQ8", "video_id": "video12344", "start time": 105.75, "end time": 117.4, "split": "test", "id": 12344}, {"category": 13, "url": "https://www.youtube.com/watch?v=dMCIVZqXYjQ", "video_id": "video10830", "start time": 147.16, "end time": 165.88, "split": "test", "id": 10830}, {"category": 16, "url": "https://www.youtube.com/watch?v=gjtctdmVoqo", "video_id": "video11778", "start time": 16.45, "end time": 36.77, "split": "test", "id": 11778}, {"category": 3, "url": "https://www.youtube.com/watch?v=8urj12twZMc", "video_id": "video12952", "start time": 35.15, "end time": 56.4, "split": "test", "id": 12952}, {"category": 7, "url": "https://www.youtube.com/watch?v=pAOi9HjLffc", "video_id": "video12426", "start time": 8.61, "end time": 26.45, "split": "test", "id": 12426}, {"category": 3, "url": "https://www.youtube.com/watch?v=HvH5WZk0f90", "video_id": "video10027", "start time": 78.49, "end time": 97.49, "split": "test", "id": 10027}, {"category": 8, "url": "https://www.youtube.com/watch?v=3Sw8-qIAzuU", "video_id": "video12267", "start time": 20.81, "end time": 35.77, "split": "test", "id": 12267}, {"category": 4, "url": "https://www.youtube.com/watch?v=0KgKkJXLsOo", "video_id": "video12383", "start time": 33.18, "end time": 61.08, "split": "test", "id": 12383}, {"category": 19, "url": "https://www.youtube.com/watch?v=JKtgSR8EWj4", "video_id": "video10871", "start time": 68.48, "end time": 81.31, "split": "test", "id": 10871}, {"category": 16, "url": "https://www.youtube.com/watch?v=p1RgI4R8VX4", "video_id": "video12992", "start time": 9.25, "end time": 33.69, "split": "test", "id": 12992}, {"category": 4, "url": "https://www.youtube.com/watch?v=Gf807TKOL80", "video_id": "video12521", "start time": 15.88, "end time": 37.21, "split": "test", "id": 12521}, {"category": 18, "url": "https://www.youtube.com/watch?v=kk-O2HmQpXQ", "video_id": "video11470", "start time": 95.21, "end time": 112.37, "split": "test", "id": 11470}, {"category": 18, "url": "https://www.youtube.com/watch?v=rFoKGjryWwY", "video_id": "video11506", "start time": 32.18, "end time": 56.4, "split": "test", "id": 11506}, {"category": 3, "url": "https://www.youtube.com/watch?v=jMAauMMVmBc", "video_id": "video12986", "start time": 344.59, "end time": 361.21, "split": "test", "id": 12986}, {"category": 12, "url": "https://www.youtube.com/watch?v=dfEf6st-6Po", "video_id": "video12570", "start time": 24.25, "end time": 46.74, "split": "test", "id": 12570}, {"category": 3, "url": "https://www.youtube.com/watch?v=K_oUoIFeiaU", "video_id": "video11794", "start time": 85.01, "end time": 95.61, "split": "test", "id": 11794}, {"category": 12, "url": "https://www.youtube.com/watch?v=7goVk549dCg", "video_id": "video12793", "start time": 4.09, "end time": 20.33, "split": "test", "id": 12793}, {"category": 3, "url": "https://www.youtube.com/watch?v=5bFT9IqTPV8", "video_id": "video12228", "start time": 86.01, "end time": 103.9, "split": "test", "id": 12228}, {"category": 3, "url": "https://www.youtube.com/watch?v=8kvhH0hroMc", "video_id": "video11098", "start time": 81.88, "end time": 101.9, "split": "test", "id": 11098}, {"category": 5, "url": "https://www.youtube.com/watch?v=3B_1itqCKHo", "video_id": "video10268", "start time": 12.13, "end time": 33.88, "split": "test", "id": 10268}, {"category": 7, "url": "https://www.youtube.com/watch?v=JeLCxIXyNX8", "video_id": "video11639", "start time": 14.17, "end time": 33.77, "split": "test", "id": 11639}, {"category": 16, "url": "https://www.youtube.com/watch?v=se-C0UUSJEQ", "video_id": "video10382", "start time": 0.0, "end time": 22.87, "split": "test", "id": 10382}, {"category": 12, "url": "https://www.youtube.com/watch?v=EzUnY5jpkHg", "video_id": "video12508", "start time": 335.49, "end time": 355.81, "split": "test", "id": 12508}, {"category": 2, "url": "https://www.youtube.com/watch?v=ExdXf9RIaVI", "video_id": "video10346", "start time": 635.85, "end time": 646.23, "split": "test", "id": 10346}, {"category": 7, "url": "https://www.youtube.com/watch?v=rz7sPiOoU7A", "video_id": "video11650", "start time": 42.62, "end time": 55.37, "split": "test", "id": 11650}, {"category": 3, "url": "https://www.youtube.com/watch?v=32crEYpLZu0", "video_id": "video12339", "start time": 215.61, "end time": 240.69, "split": "test", "id": 12339}, {"category": 19, "url": "https://www.youtube.com/watch?v=KDS27j5cXkM", "video_id": "video12839", "start time": 47.57, "end time": 64.37, "split": "test", "id": 12839}, {"category": 13, "url": "https://www.youtube.com/watch?v=Dp0Bt2cbcc8", "video_id": "video11772", "start time": 32.73, "end time": 44.25, "split": "test", "id": 11772}, {"category": 3, "url": "https://www.youtube.com/watch?v=fgXcUeJ9_gA", "video_id": "video12034", "start time": 12.21, "end time": 36.61, "split": "test", "id": 12034}, {"category": 6, "url": "https://www.youtube.com/watch?v=pLS5e925v7M", "video_id": "video10426", "start time": 159.37, "end time": 175.66, "split": "test", "id": 10426}, {"category": 16, "url": "https://www.youtube.com/watch?v=5cAgmgckdas", "video_id": "video12866", "start time": 267.01, "end time": 288.17, "split": "test", "id": 12866}, {"category": 4, "url": "https://www.youtube.com/watch?v=OLH678TVTYw", "video_id": "video10538", "start time": 12.21, "end time": 27.41, "split": "test", "id": 10538}, {"category": 1, "url": "https://www.youtube.com/watch?v=2vc5NBXsEYk", "video_id": "video12268", "start time": 0.0, "end time": 25.14, "split": "test", "id": 12268}, {"category": 7, "url": "https://www.youtube.com/watch?v=5dlLPUdZQF0", "video_id": "video12746", "start time": 776.39, "end time": 787.67, "split": "test", "id": 12746}, {"category": 2, "url": "https://www.youtube.com/watch?v=scy0IkABEq0", "video_id": "video12347", "start time": 45.53, "end time": 61.48, "split": "test", "id": 12347}, {"category": 18, "url": "https://www.youtube.com/watch?v=4HTIyOoZxng", "video_id": "video11906", "start time": 49.21, "end time": 64.09, "split": "test", "id": 11906}, {"category": 7, "url": "https://www.youtube.com/watch?v=8sCCr5dgVJ8", "video_id": "video10168", "start time": 0.0, "end time": 15.03, "split": "test", "id": 10168}, {"category": 11, "url": "https://www.youtube.com/watch?v=RI8ZWR9qY94", "video_id": "video12435", "start time": 0.0, "end time": 28.45, "split": "test", "id": 12435}, {"category": 12, "url": "https://www.youtube.com/watch?v=dRVfuL2hDhU", "video_id": "video11846", "start time": 91.85, "end time": 109.45, "split": "test", "id": 11846}, {"category": 5, "url": "https://www.youtube.com/watch?v=E8dkWQVFAoA", "video_id": "video10997", "start time": 45.43, "end time": 58.4, "split": "test", "id": 10997}, {"category": 9, "url": "https://www.youtube.com/watch?v=iQNZXN3OyQc", "video_id": "video11383", "start time": 133.85, "end time": 148.93, "split": "test", "id": 11383}, {"category": 10, "url": "https://www.youtube.com/watch?v=IysShLIaosk", "video_id": "video10515", "start time": 4.75, "end time": 34.65, "split": "test", "id": 10515}, {"category": 13, "url": "https://www.youtube.com/watch?v=s23q9Rd753w", "video_id": "video12541", "start time": 0.0, "end time": 11.55, "split": "test", "id": 12541}, {"category": 18, "url": "https://www.youtube.com/watch?v=qHs_3Jlv6LQ", "video_id": "video12472", "start time": 96.25, "end time": 115.21, "split": "test", "id": 12472}, {"category": 12, "url": "https://www.youtube.com/watch?v=4S_mOlRaVEg", "video_id": "video10765", "start time": 32.75, "end time": 54.08, "split": "test", "id": 10765}, {"category": 6, "url": "https://www.youtube.com/watch?v=JTItwyaaQMA", "video_id": "video10037", "start time": 97.98, "end time": 121.77, "split": "test", "id": 10037}, {"category": 16, "url": "https://www.youtube.com/watch?v=P7kQsLAaxt4", "video_id": "video11003", "start time": 18.19, "end time": 29.79, "split": "test", "id": 11003}, {"category": 4, "url": "https://www.youtube.com/watch?v=5LDIGX9Ifig", "video_id": "video10727", "start time": 0.0, "end time": 20.45, "split": "test", "id": 10727}, {"category": 7, "url": "https://www.youtube.com/watch?v=inth8W4JmuM", "video_id": "video10813", "start time": 16.65, "end time": 46.05, "split": "test", "id": 10813}, {"category": 15, "url": "https://www.youtube.com/watch?v=ecy3I9Fd0Pg", "video_id": "video12242", "start time": 1.12, "end time": 25.99, "split": "test", "id": 12242}, {"category": 11, "url": "https://www.youtube.com/watch?v=-zRBMNhvfi0", "video_id": "video12117", "start time": 137.81, "end time": 148.28, "split": "test", "id": 12117}, {"category": 14, "url": "https://www.youtube.com/watch?v=6gBbfjDA5Uw", "video_id": "video11101", "start time": 15.2, "end time": 26.24, "split": "test", "id": 11101}, {"category": 14, "url": "https://www.youtube.com/watch?v=6gBbfjDA5Uw", "video_id": "video12013", "start time": 75.52, "end time": 90.67, "split": "test", "id": 12013}, {"category": 16, "url": "https://www.youtube.com/watch?v=F_ydTGyKr20", "video_id": "video10883", "start time": 367.37, "end time": 386.97, "split": "test", "id": 10883}, {"category": 18, "url": "https://www.youtube.com/watch?v=JXgUcRz6-u8", "video_id": "video10608", "start time": 274.96, "end time": 297.08, "split": "test", "id": 10608}, {"category": 9, "url": "https://www.youtube.com/watch?v=2tXC4W7TnvY", "video_id": "video10589", "start time": 211.51, "end time": 231.41, "split": "test", "id": 10589}, {"category": 17, "url": "https://www.youtube.com/watch?v=m8WACcHLeeQ", "video_id": "video11795", "start time": 43.81, "end time": 54.61, "split": "test", "id": 11795}, {"category": 16, "url": "https://www.youtube.com/watch?v=4S4XmIpOT4E", "video_id": "video12553", "start time": 14.26, "end time": 36.08, "split": "test", "id": 12553}, {"category": 18, "url": "https://www.youtube.com/watch?v=q-St7rMxyN4", "video_id": "video10099", "start time": 6.14, "end time": 18.48, "split": "test", "id": 10099}, {"category": 12, "url": "https://www.youtube.com/watch?v=Flr481fL174", "video_id": "video12909", "start time": 79.86, "end time": 102.25, "split": "test", "id": 12909}, {"category": 13, "url": "https://www.youtube.com/watch?v=GF60Iuh643I", "video_id": "video10797", "start time": 97.85, "end time": 111.11, "split": "test", "id": 10797}, {"category": 18, "url": "https://www.youtube.com/watch?v=f7au0jx5Qqc", "video_id": "video11668", "start time": 76.69, "end time": 99.45, "split": "test", "id": 11668}, {"category": 10, "url": "https://www.youtube.com/watch?v=A5xXYaSECvI", "video_id": "video11671", "start time": 123.9, "end time": 147.9, "split": "test", "id": 11671}, {"category": 9, "url": "https://www.youtube.com/watch?v=qXzm7lIypxc", "video_id": "video11370", "start time": 30.09, "end time": 46.85, "split": "test", "id": 11370}, {"category": 18, "url": "https://www.youtube.com/watch?v=eGfxG0bUSLk", "video_id": "video12411", "start time": 73.12, "end time": 87.18, "split": "test", "id": 12411}, {"category": 0, "url": "https://www.youtube.com/watch?v=MIgKHiFfB0k", "video_id": "video10975", "start time": 237.02, "end time": 248.53, "split": "test", "id": 10975}, {"category": 4, "url": "https://www.youtube.com/watch?v=oBG0KqQ6ltw", "video_id": "video11218", "start time": 53.08, "end time": 63.91, "split": "test", "id": 11218}, {"category": 15, "url": "https://www.youtube.com/watch?v=kJuRubcOgRY", "video_id": "video12495", "start time": 3.82, "end time": 23.64, "split": "test", "id": 12495}, {"category": 3, "url": "https://www.youtube.com/watch?v=0tMwErDzTgw", "video_id": "video10757", "start time": 143.32, "end time": 167.65, "split": "test", "id": 10757}, {"category": 18, "url": "https://www.youtube.com/watch?v=BI31FgtJX0g", "video_id": "video12853", "start time": 189.18, "end time": 213.11, "split": "test", "id": 12853}, {"category": 11, "url": "https://www.youtube.com/watch?v=KxzhCV56fzM", "video_id": "video10447", "start time": 17.57, "end time": 33.91, "split": "test", "id": 10447}, {"category": 3, "url": "https://www.youtube.com/watch?v=q1D9k_WGaUM", "video_id": "video10895", "start time": 818.93, "end time": 839.29, "split": "test", "id": 10895}, {"category": 13, "url": "https://www.youtube.com/watch?v=-wuk0L_-mGo", "video_id": "video11913", "start time": 67.62, "end time": 80.56, "split": "test", "id": 11913}, {"category": 12, "url": "https://www.youtube.com/watch?v=kqf-PRdUz_g", "video_id": "video10669", "start time": 11.71, "end time": 24.75, "split": "test", "id": 10669}, {"category": 3, "url": "https://www.youtube.com/watch?v=9pD09OzZskI", "video_id": "video10185", "start time": 131.05, "end time": 146.28, "split": "test", "id": 10185}, {"category": 18, "url": "https://www.youtube.com/watch?v=P4yOsNz75H4", "video_id": "video11413", "start time": 20.37, "end time": 31.15, "split": "test", "id": 11413}, {"category": 6, "url": "https://www.youtube.com/watch?v=JgQR2XvJI2Y", "video_id": "video11307", "start time": 2.72, "end time": 15.23, "split": "test", "id": 11307}, {"category": 14, "url": "https://www.youtube.com/watch?v=8zq5HiT28RQ", "video_id": "video10679", "start time": 21.55, "end time": 45.05, "split": "test", "id": 10679}, {"category": 16, "url": "https://www.youtube.com/watch?v=JqEw4BLL1fk", "video_id": "video11317", "start time": 330.13, "end time": 352.81, "split": "test", "id": 11317}, {"category": 8, "url": "https://www.youtube.com/watch?v=KKxN7ggPU_k", "video_id": "video11399", "start time": 201.45, "end time": 212.65, "split": "test", "id": 11399}, {"category": 3, "url": "https://www.youtube.com/watch?v=GOCil_KKh3k", "video_id": "video10807", "start time": 56.48, "end time": 81.21, "split": "test", "id": 10807}, {"category": 7, "url": "https://www.youtube.com/watch?v=RnSQKiqgHMg", "video_id": "video12275", "start time": 37.62, "end time": 55.27, "split": "test", "id": 12275}, {"category": 7, "url": "https://www.youtube.com/watch?v=ROh8wVyv2_s", "video_id": "video10011", "start time": 2.15, "end time": 21.07, "split": "test", "id": 10011}, {"category": 3, "url": "https://www.youtube.com/watch?v=n_h_uwEVRBQ", "video_id": "video10424", "start time": 160.09, "end time": 182.21, "split": "test", "id": 10424}, {"category": 7, "url": "https://www.youtube.com/watch?v=jAi52h19Bok", "video_id": "video11986", "start time": 142.39, "end time": 164.28, "split": "test", "id": 11986}, {"category": 3, "url": "https://www.youtube.com/watch?v=Nosf1FeO-pM", "video_id": "video11283", "start time": 6.93, "end time": 35.53, "split": "test", "id": 11283}, {"category": 2, "url": "https://www.youtube.com/watch?v=H5cIo7Ss_84", "video_id": "video10694", "start time": 851.75, "end time": 862.31, "split": "test", "id": 10694}, {"category": 13, "url": "https://www.youtube.com/watch?v=KJjM4j6CBi8", "video_id": "video10930", "start time": 255.8, "end time": 285.4, "split": "test", "id": 10930}, {"category": 15, "url": "https://www.youtube.com/watch?v=ebOVuRwWIrI", "video_id": "video11391", "start time": 254.5, "end time": 268.62, "split": "test", "id": 11391}, {"category": 17, "url": "https://www.youtube.com/watch?v=86uZTPGRpno", "video_id": "video10296", "start time": 233.33, "end time": 252.73, "split": "test", "id": 10296}, {"category": 16, "url": "https://www.youtube.com/watch?v=Rr19TKWRb60", "video_id": "video12895", "start time": 102.58, "end time": 118.47, "split": "test", "id": 12895}, {"category": 12, "url": "https://www.youtube.com/watch?v=nY7if15hWcs", "video_id": "video11057", "start time": 35.48, "end time": 56.2, "split": "test", "id": 11057}, {"category": 5, "url": "https://www.youtube.com/watch?v=9jRkACywckE", "video_id": "video12776", "start time": 235.55, "end time": 257.59, "split": "test", "id": 12776}, {"category": 11, "url": "https://www.youtube.com/watch?v=O5ZVwO0dul8", "video_id": "video11555", "start time": 16.18, "end time": 34.05, "split": "test", "id": 11555}, {"category": 10, "url": "https://www.youtube.com/watch?v=c1u4TP2GTNQ", "video_id": "video10089", "start time": 354.7, "end time": 377.93, "split": "test", "id": 10089}, {"category": 4, "url": "https://www.youtube.com/watch?v=AQ5PQEao7x8", "video_id": "video12366", "start time": 80.49, "end time": 90.54, "split": "test", "id": 12366}, {"category": 13, "url": "https://www.youtube.com/watch?v=o94YZZLJkRM", "video_id": "video10292", "start time": 22.3, "end time": 33.55, "split": "test", "id": 10292}, {"category": 4, "url": "https://www.youtube.com/watch?v=2iiBLuhRi7U", "video_id": "video11439", "start time": 237.65, "end time": 263.21, "split": "test", "id": 11439}, {"category": 2, "url": "https://www.youtube.com/watch?v=esn1s5N2JS4", "video_id": "video10829", "start time": 1143.65, "end time": 1155.18, "split": "test", "id": 10829}, {"category": 10, "url": "https://www.youtube.com/watch?v=pvCj6NB6lcI", "video_id": "video11614", "start time": 526.51, "end time": 537.95, "split": "test", "id": 11614}, {"category": 2, "url": "https://www.youtube.com/watch?v=S1grkhO6okQ", "video_id": "video10905", "start time": 6.25, "end time": 32.75, "split": "test", "id": 10905}, {"category": 0, "url": "https://www.youtube.com/watch?v=EAc4zHEDd7o", "video_id": "video10091", "start time": 20.33, "end time": 32.21, "split": "test", "id": 10091}, {"category": 7, "url": "https://www.youtube.com/watch?v=18lsxFcDrjo", "video_id": "video10756", "start time": 229.28, "end time": 249.96, "split": "test", "id": 10756}, {"category": 11, "url": "https://www.youtube.com/watch?v=FdOcl_wDP_E", "video_id": "video12703", "start time": 0.0, "end time": 19.05, "split": "test", "id": 12703}, {"category": 10, "url": "https://www.youtube.com/watch?v=4w0V_yx4s60", "video_id": "video11482", "start time": 206.42, "end time": 222.74, "split": "test", "id": 11482}, {"category": 9, "url": "https://www.youtube.com/watch?v=2kLlmxUAB5A", "video_id": "video11220", "start time": 205.89, "end time": 216.41, "split": "test", "id": 11220}, {"category": 7, "url": "https://www.youtube.com/watch?v=0_H3rHQC0vE", "video_id": "video10893", "start time": 87.31, "end time": 100.88, "split": "test", "id": 10893}, {"category": 13, "url": "https://www.youtube.com/watch?v=6gxAPqYqCfA", "video_id": "video12029", "start time": 262.04, "end time": 288.47, "split": "test", "id": 12029}, {"category": 4, "url": "https://www.youtube.com/watch?v=pYq1O2M0iSc", "video_id": "video12100", "start time": 346.53, "end time": 357.61, "split": "test", "id": 12100}, {"category": 9, "url": "https://www.youtube.com/watch?v=7gndbowpAKQ", "video_id": "video10449", "start time": 18.95, "end time": 31.28, "split": "test", "id": 10449}, {"category": 4, "url": "https://www.youtube.com/watch?v=6padsIOUX8k", "video_id": "video10753", "start time": 0.0, "end time": 13.93, "split": "test", "id": 10753}, {"category": 13, "url": "https://www.youtube.com/watch?v=7CzzUrZ7myI", "video_id": "video11511", "start time": 187.65, "end time": 212.05, "split": "test", "id": 11511}, {"category": 11, "url": "https://www.youtube.com/watch?v=egCTEb84i7M", "video_id": "video11954", "start time": 35.02, "end time": 45.63, "split": "test", "id": 11954}, {"category": 7, "url": "https://www.youtube.com/watch?v=8GMDgsikax4", "video_id": "video12792", "start time": 77.58, "end time": 93.58, "split": "test", "id": 12792}, {"category": 10, "url": "https://www.youtube.com/watch?v=grsv866IeCU", "video_id": "video11893", "start time": 36.89, "end time": 48.85, "split": "test", "id": 11893}, {"category": 5, "url": "https://www.youtube.com/watch?v=nO8eU3uts0o", "video_id": "video11330", "start time": 0.0, "end time": 24.91, "split": "test", "id": 11330}, {"category": 4, "url": "https://www.youtube.com/watch?v=rGfaJZAdfNE", "video_id": "video10379", "start time": 176.16, "end time": 189.44, "split": "test", "id": 10379}, {"category": 9, "url": "https://www.youtube.com/watch?v=3B51NAOghtw", "video_id": "video12598", "start time": 59.71, "end time": 73.25, "split": "test", "id": 12598}, {"category": 13, "url": "https://www.youtube.com/watch?v=jQ7EP8oM1pM", "video_id": "video11094", "start time": 89.34, "end time": 108.66, "split": "test", "id": 11094}, {"category": 9, "url": "https://www.youtube.com/watch?v=cL4s44v2KuY", "video_id": "video10747", "start time": 172.22, "end time": 184.63, "split": "test", "id": 10747}, {"category": 13, "url": "https://www.youtube.com/watch?v=1wnEkpHD64U", "video_id": "video11299", "start time": 125.98, "end time": 137.05, "split": "test", "id": 11299}, {"category": 13, "url": "https://www.youtube.com/watch?v=6Y3fmsULu_U", "video_id": "video12681", "start time": 0.0, "end time": 28.75, "split": "test", "id": 12681}, {"category": 11, "url": "https://www.youtube.com/watch?v=mG_IGmdxvsU", "video_id": "video10659", "start time": 108.65, "end time": 125.13, "split": "test", "id": 10659}, {"category": 16, "url": "https://www.youtube.com/watch?v=RMdkMsov9W0", "video_id": "video11664", "start time": 189.93, "end time": 207.25, "split": "test", "id": 11664}, {"category": 3, "url": "https://www.youtube.com/watch?v=segVgjfKMuA", "video_id": "video12572", "start time": 592.45, "end time": 604.25, "split": "test", "id": 12572}, {"category": 15, "url": "https://www.youtube.com/watch?v=6uPoi0p7Po0", "video_id": "video12502", "start time": 1093.01, "end time": 1110.51, "split": "test", "id": 12502}, {"category": 9, "url": "https://www.youtube.com/watch?v=kUZfKfib7SM", "video_id": "video11600", "start time": 144.71, "end time": 161.01, "split": "test", "id": 11600}, {"category": 13, "url": "https://www.youtube.com/watch?v=O1KW3ZkLtuo", "video_id": "video12619", "start time": 174.15, "end time": 199.48, "split": "test", "id": 12619}, {"category": 2, "url": "https://www.youtube.com/watch?v=s1u3l9EnieY", "video_id": "video11548", "start time": 0.0, "end time": 25.47, "split": "test", "id": 11548}, {"category": 15, "url": "https://www.youtube.com/watch?v=NFTaiWInZ44", "video_id": "video12774", "start time": 163.11, "end time": 175.96, "split": "test", "id": 12774}, {"category": 4, "url": "https://www.youtube.com/watch?v=HbdT5V1WITM", "video_id": "video10855", "start time": 82.56, "end time": 95.28, "split": "test", "id": 10855}, {"category": 9, "url": "https://www.youtube.com/watch?v=Ko9kzyqW-l8", "video_id": "video11356", "start time": 26.73, "end time": 43.49, "split": "test", "id": 11356}, {"category": 11, "url": "https://www.youtube.com/watch?v=AUXviiTVsFo", "video_id": "video10038", "start time": 0.0, "end time": 22.07, "split": "test", "id": 10038}, {"category": 4, "url": "https://www.youtube.com/watch?v=HBoHafH1FUE", "video_id": "video11157", "start time": 29.89, "end time": 42.69, "split": "test", "id": 11157}, {"category": 4, "url": "https://www.youtube.com/watch?v=NTUHYGHBxzw", "video_id": "video12436", "start time": 64.81, "end time": 82.53, "split": "test", "id": 12436}, {"category": 19, "url": "https://www.youtube.com/watch?v=IkOQw96cfyE", "video_id": "video12967", "start time": 30.87, "end time": 43.17, "split": "test", "id": 12967}, {"category": 17, "url": "https://www.youtube.com/watch?v=QKOla0-aW5o", "video_id": "video12209", "start time": 95.14, "end time": 110.42, "split": "test", "id": 12209}, {"category": 7, "url": "https://www.youtube.com/watch?v=FJoBWii2lNM", "video_id": "video12244", "start time": 18.81, "end time": 29.25, "split": "test", "id": 12244}, {"category": 18, "url": "https://www.youtube.com/watch?v=8C1TnpaF9CI", "video_id": "video10490", "start time": 48.86, "end time": 61.81, "split": "test", "id": 10490}, {"category": 15, "url": "https://www.youtube.com/watch?v=aGlwWHzxhkc", "video_id": "video12996", "start time": 576.09, "end time": 596.37, "split": "test", "id": 12996}, {"category": 16, "url": "https://www.youtube.com/watch?v=7qNd_ifm7Lo", "video_id": "video12368", "start time": 203.95, "end time": 215.06, "split": "test", "id": 12368}, {"category": 18, "url": "https://www.youtube.com/watch?v=8FJQovP7jwI", "video_id": "video12848", "start time": 102.28, "end time": 122.54, "split": "test", "id": 12848}, {"category": 16, "url": "https://www.youtube.com/watch?v=5L94LwnqPFo", "video_id": "video11422", "start time": 244.96, "end time": 255.6, "split": "test", "id": 11422}, {"category": 12, "url": "https://www.youtube.com/watch?v=oVK7u6CK0KQ", "video_id": "video12607", "start time": 4.25, "end time": 15.41, "split": "test", "id": 12607}, {"category": 16, "url": "https://www.youtube.com/watch?v=hYs3rIC6d4U", "video_id": "video11102", "start time": 66.58, "end time": 81.13, "split": "test", "id": 11102}, {"category": 13, "url": "https://www.youtube.com/watch?v=pTfZ8J-0gAk", "video_id": "video12747", "start time": 533.11, "end time": 554.53, "split": "test", "id": 12747}, {"category": 12, "url": "https://www.youtube.com/watch?v=1tJ2CWvTVGM", "video_id": "video11164", "start time": 2.85, "end time": 16.51, "split": "test", "id": 11164}, {"category": 8, "url": "https://www.youtube.com/watch?v=BhgQziHJcsA", "video_id": "video12887", "start time": 26.45, "end time": 47.05, "split": "test", "id": 12887}, {"category": 14, "url": "https://www.youtube.com/watch?v=dFbwydevo2o", "video_id": "video11268", "start time": 166.11, "end time": 193.17, "split": "test", "id": 11268}, {"category": 4, "url": "https://www.youtube.com/watch?v=-GbQWmFzVdY", "video_id": "video12446", "start time": 78.85, "end time": 90.01, "split": "test", "id": 12446}, {"category": 9, "url": "https://www.youtube.com/watch?v=N7fz-ZPWM24", "video_id": "video10626", "start time": 168.49, "end time": 191.77, "split": "test", "id": 10626}, {"category": 7, "url": "https://www.youtube.com/watch?v=lpwrDEfCESg", "video_id": "video12193", "start time": 7.81, "end time": 29.2, "split": "test", "id": 12193}, {"category": 18, "url": "https://www.youtube.com/watch?v=-XhM0Yyej64", "video_id": "video10922", "start time": 8.06, "end time": 25.67, "split": "test", "id": 10922}, {"category": 9, "url": "https://www.youtube.com/watch?v=McHViMSzQdI", "video_id": "video12097", "start time": 254.49, "end time": 267.85, "split": "test", "id": 12097}, {"category": 3, "url": "https://www.youtube.com/watch?v=4RpXtHWrt-A", "video_id": "video12944", "start time": 0.0, "end time": 10.2, "split": "test", "id": 12944}, {"category": 6, "url": "https://www.youtube.com/watch?v=28UIrIjNL_U", "video_id": "video10934", "start time": 82.6, "end time": 93.94, "split": "test", "id": 10934}, {"category": 14, "url": "https://www.youtube.com/watch?v=RcJFt7ycOh4", "video_id": "video12204", "start time": 138.89, "end time": 161.14, "split": "test", "id": 12204}, {"category": 7, "url": "https://www.youtube.com/watch?v=qgzZyeGeDAE", "video_id": "video12858", "start time": 24.0, "end time": 49.56, "split": "test", "id": 12858}, {"category": 0, "url": "https://www.youtube.com/watch?v=FWKoEBe9Kss", "video_id": "video11757", "start time": 13.45, "end time": 27.89, "split": "test", "id": 11757}, {"category": 6, "url": "https://www.youtube.com/watch?v=o6krIphPlvU", "video_id": "video11741", "start time": 161.31, "end time": 181.6, "split": "test", "id": 11741}, {"category": 14, "url": "https://www.youtube.com/watch?v=biAjQta5xZM", "video_id": "video12729", "start time": 98.15, "end time": 118.0, "split": "test", "id": 12729}, {"category": 7, "url": "https://www.youtube.com/watch?v=hFBYhxqFeOU", "video_id": "video10506", "start time": 99.27, "end time": 125.13, "split": "test", "id": 10506}, {"category": 3, "url": "https://www.youtube.com/watch?v=BSSpw5BTXQw", "video_id": "video12891", "start time": 115.53, "end time": 132.65, "split": "test", "id": 12891}, {"category": 14, "url": "https://www.youtube.com/watch?v=46RRG1Tw-9k", "video_id": "video10979", "start time": 9.05, "end time": 25.78, "split": "test", "id": 10979}, {"category": 18, "url": "https://www.youtube.com/watch?v=AUaQLyQJV-A", "video_id": "video12879", "start time": 4.61, "end time": 14.61, "split": "test", "id": 12879}, {"category": 10, "url": "https://www.youtube.com/watch?v=B9wXD7VFu44", "video_id": "video12631", "start time": 163.28, "end time": 173.99, "split": "test", "id": 12631}, {"category": 16, "url": "https://www.youtube.com/watch?v=kDYr1rt4XYU", "video_id": "video11158", "start time": 100.38, "end time": 117.8, "split": "test", "id": 11158}, {"category": 13, "url": "https://www.youtube.com/watch?v=E__F5a2pQco", "video_id": "video11840", "start time": 74.15, "end time": 97.38, "split": "test", "id": 11840}, {"category": 12, "url": "https://www.youtube.com/watch?v=-MmWeZHsQzs", "video_id": "video10348", "start time": 397.51, "end time": 420.93, "split": "test", "id": 10348}, {"category": 13, "url": "https://www.youtube.com/watch?v=KlIhadU4Q_M", "video_id": "video11184", "start time": 4.25, "end time": 15.05, "split": "test", "id": 11184}, {"category": 16, "url": "https://www.youtube.com/watch?v=A252nk2Q-t8", "video_id": "video12949", "start time": 105.52, "end time": 120.83, "split": "test", "id": 12949}, {"category": 18, "url": "https://www.youtube.com/watch?v=KOCbeKRYQqg", "video_id": "video11106", "start time": 476.57, "end time": 496.13, "split": "test", "id": 11106}, {"category": 13, "url": "https://www.youtube.com/watch?v=PHo_aKIwR5Q", "video_id": "video11549", "start time": 51.0, "end time": 61.01, "split": "test", "id": 11549}, {"category": 15, "url": "https://www.youtube.com/watch?v=RaqMBFu54E0", "video_id": "video11230", "start time": 45.89, "end time": 68.42, "split": "test", "id": 11230}, {"category": 11, "url": "https://www.youtube.com/watch?v=GhAyfiGSztQ", "video_id": "video10553", "start time": 135.82, "end time": 150.63, "split": "test", "id": 10553}, {"category": 16, "url": "https://www.youtube.com/watch?v=-7uFqDDN3-k", "video_id": "video12770", "start time": 313.96, "end time": 339.12, "split": "test", "id": 12770}, {"category": 12, "url": "https://www.youtube.com/watch?v=6wYDznIOCpI", "video_id": "video11912", "start time": 29.08, "end time": 41.49, "split": "test", "id": 11912}, {"category": 18, "url": "https://www.youtube.com/watch?v=QARBwiA4FwU", "video_id": "video12917", "start time": 256.65, "end time": 275.97, "split": "test", "id": 12917}, {"category": 16, "url": "https://www.youtube.com/watch?v=OeDY2RPZWOc", "video_id": "video11550", "start time": 329.05, "end time": 351.76, "split": "test", "id": 11550}, {"category": 15, "url": "https://www.youtube.com/watch?v=KpRHRh9PaRU", "video_id": "video12379", "start time": 512.35, "end time": 532.85, "split": "test", "id": 12379}, {"category": 13, "url": "https://www.youtube.com/watch?v=ODvNbFOwCKo", "video_id": "video12094", "start time": 44.02, "end time": 55.34, "split": "test", "id": 12094}, {"category": 12, "url": "https://www.youtube.com/watch?v=adKyCeLOiXs", "video_id": "video11203", "start time": 6.35, "end time": 32.18, "split": "test", "id": 11203}, {"category": 2, "url": "https://www.youtube.com/watch?v=6u_EWzmvI8E", "video_id": "video10737", "start time": 50.23, "end time": 78.39, "split": "test", "id": 10737}, {"category": 16, "url": "https://www.youtube.com/watch?v=mCc1T7zOKjA", "video_id": "video11332", "start time": 188.15, "end time": 198.5, "split": "test", "id": 11332}, {"category": 12, "url": "https://www.youtube.com/watch?v=767vco3jBkc", "video_id": "video12520", "start time": 27.21, "end time": 52.9, "split": "test", "id": 12520}, {"category": 13, "url": "https://www.youtube.com/watch?v=B3NbPUTD5qA", "video_id": "video10508", "start time": 0.0, "end time": 12.91, "split": "test", "id": 10508}, {"category": 12, "url": "https://www.youtube.com/watch?v=s6rQI7t9XM4", "video_id": "video11679", "start time": 6.79, "end time": 30.88, "split": "test", "id": 11679}, {"category": 2, "url": "https://www.youtube.com/watch?v=Ag1osdX98WU", "video_id": "video12515", "start time": 259.6, "end time": 275.07, "split": "test", "id": 12515}, {"category": 10, "url": "https://www.youtube.com/watch?v=BK7Zo9i4ghk", "video_id": "video10484", "start time": 120.05, "end time": 134.45, "split": "test", "id": 10484}, {"category": 7, "url": "https://www.youtube.com/watch?v=IJ8KGoIQc4o", "video_id": "video10546", "start time": 93.29, "end time": 109.21, "split": "test", "id": 10546}, {"category": 13, "url": "https://www.youtube.com/watch?v=M75Z0VrtpMo", "video_id": "video12593", "start time": 17.33, "end time": 35.89, "split": "test", "id": 12593}, {"category": 18, "url": "https://www.youtube.com/watch?v=o59TXUTs708", "video_id": "video12471", "start time": 109.59, "end time": 124.77, "split": "test", "id": 12471}, {"category": 18, "url": "https://www.youtube.com/watch?v=9BicoK_1JyQ", "video_id": "video11209", "start time": 83.86, "end time": 103.88, "split": "test", "id": 11209}, {"category": 3, "url": "https://www.youtube.com/watch?v=sc4BACTTby8", "video_id": "video10896", "start time": 94.45, "end time": 106.75, "split": "test", "id": 10896}, {"category": 19, "url": "https://www.youtube.com/watch?v=3EOAXrTrsOE", "video_id": "video10560", "start time": 23.77, "end time": 37.38, "split": "test", "id": 10560}, {"category": 3, "url": "https://www.youtube.com/watch?v=aZFEV0pqZfk", "video_id": "video10680", "start time": 101.62, "end time": 113.33, "split": "test", "id": 10680}, {"category": 3, "url": "https://www.youtube.com/watch?v=IZ-_3Ug3wqU", "video_id": "video12802", "start time": 4.18, "end time": 23.64, "split": "test", "id": 12802}, {"category": 17, "url": "https://www.youtube.com/watch?v=ptiFsI0rF4Q", "video_id": "video12185", "start time": 337.97, "end time": 353.97, "split": "test", "id": 12185}, {"category": 5, "url": "https://www.youtube.com/watch?v=L0k-enzoeOM", "video_id": "video10858", "start time": 243.08, "end time": 253.76, "split": "test", "id": 10858}, {"category": 16, "url": "https://www.youtube.com/watch?v=o80_SvmXmI0", "video_id": "video10499", "start time": 76.69, "end time": 98.88, "split": "test", "id": 10499}, {"category": 12, "url": "https://www.youtube.com/watch?v=neeP9v_x3os", "video_id": "video12982", "start time": 18.73, "end time": 30.25, "split": "test", "id": 12982}, {"category": 3, "url": "https://www.youtube.com/watch?v=0aOqrSm_6XQ", "video_id": "video12413", "start time": 11.43, "end time": 26.17, "split": "test", "id": 12413}, {"category": 5, "url": "https://www.youtube.com/watch?v=Ks-_Mh1QhMc", "video_id": "video12155", "start time": 309.81, "end time": 322.53, "split": "test", "id": 12155}, {"category": 17, "url": "https://www.youtube.com/watch?v=dmT-QUgqLkc", "video_id": "video10207", "start time": 282.33, "end time": 301.55, "split": "test", "id": 10207}, {"category": 19, "url": "https://www.youtube.com/watch?v=EWYaJII3a4c", "video_id": "video12710", "start time": 214.36, "end time": 232.21, "split": "test", "id": 12710}, {"category": 7, "url": "https://www.youtube.com/watch?v=463GJoYjGmY", "video_id": "video10585", "start time": 141.36, "end time": 160.87, "split": "test", "id": 10585}, {"category": 16, "url": "https://www.youtube.com/watch?v=2l-j6IsNiL0", "video_id": "video10252", "start time": 69.93, "end time": 80.93, "split": "test", "id": 10252}, {"category": 3, "url": "https://www.youtube.com/watch?v=oE3LsJ0RRNI", "video_id": "video10412", "start time": 231.11, "end time": 241.69, "split": "test", "id": 10412}, {"category": 13, "url": "https://www.youtube.com/watch?v=8vSPUtmbEe0", "video_id": "video12842", "start time": 193.51, "end time": 218.78, "split": "test", "id": 12842}, {"category": 16, "url": "https://www.youtube.com/watch?v=HoCPQurAWVE", "video_id": "video11564", "start time": 112.16, "end time": 134.31, "split": "test", "id": 11564}, {"category": 10, "url": "https://www.youtube.com/watch?v=qleLIyVGbgU", "video_id": "video10755", "start time": 114.9, "end time": 125.61, "split": "test", "id": 10755}, {"category": 17, "url": "https://www.youtube.com/watch?v=NLhUk9DZw2s", "video_id": "video10816", "start time": 16.69, "end time": 26.85, "split": "test", "id": 10816}, {"category": 9, "url": "https://www.youtube.com/watch?v=OeZ3GpPxCQw", "video_id": "video12392", "start time": 261.44, "end time": 271.62, "split": "test", "id": 12392}, {"category": 7, "url": "https://www.youtube.com/watch?v=hdoapGpiFB4", "video_id": "video11392", "start time": 272.17, "end time": 302.13, "split": "test", "id": 11392}, {"category": 7, "url": "https://www.youtube.com/watch?v=Qt4_V9Ln-_E", "video_id": "video11149", "start time": 50.41, "end time": 74.29, "split": "test", "id": 11149}, {"category": 11, "url": "https://www.youtube.com/watch?v=maSow1iZloc", "video_id": "video10403", "start time": 73.41, "end time": 93.13, "split": "test", "id": 10403}, {"category": 16, "url": "https://www.youtube.com/watch?v=Kn0thTFoAz4", "video_id": "video12628", "start time": 99.41, "end time": 118.78, "split": "test", "id": 12628}, {"category": 18, "url": "https://www.youtube.com/watch?v=6tXN9qePKNA", "video_id": "video10278", "start time": 851.05, "end time": 876.09, "split": "test", "id": 10278}, {"category": 9, "url": "https://www.youtube.com/watch?v=9QmCoaLnmbU", "video_id": "video11302", "start time": 62.61, "end time": 78.29, "split": "test", "id": 11302}, {"category": 9, "url": "https://www.youtube.com/watch?v=mT3CiIc766Y", "video_id": "video10834", "start time": 36.88, "end time": 57.17, "split": "test", "id": 10834}, {"category": 9, "url": "https://www.youtube.com/watch?v=7KyNjcdd5pA", "video_id": "video11374", "start time": 5.95, "end time": 35.25, "split": "test", "id": 11374}, {"category": 16, "url": "https://www.youtube.com/watch?v=eEn7EUjdul8", "video_id": "video10961", "start time": 34.08, "end time": 60.04, "split": "test", "id": 10961}, {"category": 4, "url": "https://www.youtube.com/watch?v=CkE1ij84Pnc", "video_id": "video10384", "start time": 45.05, "end time": 69.13, "split": "test", "id": 10384}, {"category": 16, "url": "https://www.youtube.com/watch?v=ANrL2vdx59E", "video_id": "video10711", "start time": 12.43, "end time": 22.94, "split": "test", "id": 10711}, {"category": 8, "url": "https://www.youtube.com/watch?v=eq-taJrF8BI", "video_id": "video12058", "start time": 91.38, "end time": 105.71, "split": "test", "id": 12058}, {"category": 1, "url": "https://www.youtube.com/watch?v=ar3zOCUesDI", "video_id": "video12846", "start time": 1156.05, "end time": 1182.49, "split": "test", "id": 12846}, {"category": 3, "url": "https://www.youtube.com/watch?v=K4K5XB8OYjA", "video_id": "video12658", "start time": 115.6, "end time": 133.48, "split": "test", "id": 12658}, {"category": 13, "url": "https://www.youtube.com/watch?v=0CY0tnSp5qY", "video_id": "video11543", "start time": 103.21, "end time": 121.01, "split": "test", "id": 11543}, {"category": 13, "url": "https://www.youtube.com/watch?v=nAhvLnbNmr8", "video_id": "video11874", "start time": 415.43, "end time": 429.71, "split": "test", "id": 11874}, {"category": 7, "url": "https://www.youtube.com/watch?v=4nPuZ9chE7s", "video_id": "video12076", "start time": 130.31, "end time": 158.07, "split": "test", "id": 12076}, {"category": 16, "url": "https://www.youtube.com/watch?v=QvB5_G-DOFY", "video_id": "video12414", "start time": 100.18, "end time": 122.14, "split": "test", "id": 12414}, {"category": 18, "url": "https://www.youtube.com/watch?v=j-nyMWRKZE4", "video_id": "video11907", "start time": 6.8, "end time": 29.24, "split": "test", "id": 11907}, {"category": 18, "url": "https://www.youtube.com/watch?v=IIdIPnNm_LI", "video_id": "video11200", "start time": 366.25, "end time": 392.64, "split": "test", "id": 11200}, {"category": 3, "url": "https://www.youtube.com/watch?v=fAQgvI82Uas", "video_id": "video11862", "start time": 678.93, "end time": 704.97, "split": "test", "id": 11862}, {"category": 3, "url": "https://www.youtube.com/watch?v=pB3Fvc0qbTI", "video_id": "video11944", "start time": 56.04, "end time": 67.62, "split": "test", "id": 11944}, {"category": 5, "url": "https://www.youtube.com/watch?v=roNmeOOJCDY", "video_id": "video10430", "start time": 32.45, "end time": 45.34, "split": "test", "id": 10430}, {"category": 3, "url": "https://www.youtube.com/watch?v=n61AH2_C_H0", "video_id": "video11377", "start time": 35.01, "end time": 48.81, "split": "test", "id": 11377}, {"category": 3, "url": "https://www.youtube.com/watch?v=6n7srMBjRoI", "video_id": "video12425", "start time": 50.58, "end time": 61.08, "split": "test", "id": 12425}, {"category": 18, "url": "https://www.youtube.com/watch?v=J1WX5MzawOU", "video_id": "video12657", "start time": 192.73, "end time": 220.05, "split": "test", "id": 12657}, {"category": 19, "url": "https://www.youtube.com/watch?v=gCMzjJjuxQI", "video_id": "video12497", "start time": 15.9, "end time": 37.18, "split": "test", "id": 12497}, {"category": 0, "url": "https://www.youtube.com/watch?v=0TFmncOtzcE", "video_id": "video11873", "start time": 0.0, "end time": 16.08, "split": "test", "id": 11873}, {"category": 16, "url": "https://www.youtube.com/watch?v=A252nk2Q-t8", "video_id": "video11020", "start time": 135.25, "end time": 147.8, "split": "test", "id": 11020}, {"category": 16, "url": "https://www.youtube.com/watch?v=Njp7aynB4tw", "video_id": "video12789", "start time": 363.81, "end time": 386.73, "split": "test", "id": 12789}, {"category": 10, "url": "https://www.youtube.com/watch?v=2_c0LI-gr64", "video_id": "video11010", "start time": 327.74, "end time": 351.67, "split": "test", "id": 11010}, {"category": 13, "url": "https://www.youtube.com/watch?v=mKxRe0hAQmg", "video_id": "video10539", "start time": 0.0, "end time": 16.61, "split": "test", "id": 10539}, {"category": 18, "url": "https://www.youtube.com/watch?v=NTttuFRJPrw", "video_id": "video11833", "start time": 125.61, "end time": 136.72, "split": "test", "id": 11833}, {"category": 11, "url": "https://www.youtube.com/watch?v=GJ7QXaImmDo", "video_id": "video10111", "start time": 107.99, "end time": 123.87, "split": "test", "id": 10111}, {"category": 4, "url": "https://www.youtube.com/watch?v=MXG9YG_Trbk", "video_id": "video12257", "start time": 198.65, "end time": 227.07, "split": "test", "id": 12257}, {"category": 6, "url": "https://www.youtube.com/watch?v=2Nzm2CidMpM", "video_id": "video11864", "start time": 810.44, "end time": 840.05, "split": "test", "id": 11864}, {"category": 3, "url": "https://www.youtube.com/watch?v=e2wXn5mUw50", "video_id": "video10322", "start time": 10.97, "end time": 28.21, "split": "test", "id": 10322}, {"category": 9, "url": "https://www.youtube.com/watch?v=gz8TnKylOG4", "video_id": "video11427", "start time": 145.13, "end time": 164.28, "split": "test", "id": 11427}, {"category": 13, "url": "https://www.youtube.com/watch?v=5e_cr7tbc7w", "video_id": "video12098", "start time": 89.74, "end time": 106.62, "split": "test", "id": 12098}, {"category": 0, "url": "https://www.youtube.com/watch?v=q-gLRp5bSpw", "video_id": "video11967", "start time": 31.49, "end time": 59.41, "split": "test", "id": 11967}, {"category": 18, "url": "https://www.youtube.com/watch?v=KpCU0droMxw", "video_id": "video11786", "start time": 121.61, "end time": 131.61, "split": "test", "id": 11786}, {"category": 16, "url": "https://www.youtube.com/watch?v=QdpcIcPiz84", "video_id": "video11695", "start time": 153.77, "end time": 175.46, "split": "test", "id": 11695}, {"category": 18, "url": "https://www.youtube.com/watch?v=IO7bQYHCRKE", "video_id": "video11254", "start time": 29.77, "end time": 40.89, "split": "test", "id": 11254}, {"category": 16, "url": "https://www.youtube.com/watch?v=9c90mXTjvTQ", "video_id": "video12581", "start time": 126.78, "end time": 150.68, "split": "test", "id": 12581}, {"category": 12, "url": "https://www.youtube.com/watch?v=9TjGBpELBiQ", "video_id": "video12545", "start time": 46.46, "end time": 56.87, "split": "test", "id": 12545}, {"category": 12, "url": "https://www.youtube.com/watch?v=-0hKTzLam0I", "video_id": "video12008", "start time": 0.0, "end time": 25.57, "split": "test", "id": 12008}, {"category": 11, "url": "https://www.youtube.com/watch?v=A6dgxlE3dkg", "video_id": "video10812", "start time": 249.5, "end time": 261.21, "split": "test", "id": 10812}, {"category": 9, "url": "https://www.youtube.com/watch?v=8nRbRdyVljc", "video_id": "video10331", "start time": 109.46, "end time": 128.61, "split": "test", "id": 10331}, {"category": 16, "url": "https://www.youtube.com/watch?v=PJLjf_EKbO0", "video_id": "video12071", "start time": 295.05, "end time": 307.89, "split": "test", "id": 12071}, {"category": 12, "url": "https://www.youtube.com/watch?v=LNeCbbrRQak", "video_id": "video10513", "start time": 0.0, "end time": 10.29, "split": "test", "id": 10513}, {"category": 18, "url": "https://www.youtube.com/watch?v=D2GIP5jRNPg", "video_id": "video10819", "start time": 527.59, "end time": 540.42, "split": "test", "id": 10819}, {"category": 18, "url": "https://www.youtube.com/watch?v=Gl0iGA1z9LM", "video_id": "video12082", "start time": 96.91, "end time": 108.62, "split": "test", "id": 12082}, {"category": 7, "url": "https://www.youtube.com/watch?v=kH0oznQIaoM", "video_id": "video10205", "start time": 73.62, "end time": 91.51, "split": "test", "id": 10205}, {"category": 16, "url": "https://www.youtube.com/watch?v=O5kW4_FJNpE", "video_id": "video11998", "start time": 23.34, "end time": 39.92, "split": "test", "id": 11998}, {"category": 9, "url": "https://www.youtube.com/watch?v=g7JynYvVMo0", "video_id": "video11538", "start time": 253.3, "end time": 268.52, "split": "test", "id": 11538}, {"category": 4, "url": "https://www.youtube.com/watch?v=mDPFY3hjcPY", "video_id": "video12442", "start time": 152.8, "end time": 176.56, "split": "test", "id": 12442}, {"category": 4, "url": "https://www.youtube.com/watch?v=jIvMqCgS6CQ", "video_id": "video11825", "start time": 33.01, "end time": 51.2, "split": "test", "id": 11825}, {"category": 16, "url": "https://www.youtube.com/watch?v=QS0I7mLQIgc", "video_id": "video12116", "start time": 4.45, "end time": 26.24, "split": "test", "id": 12116}, {"category": 16, "url": "https://www.youtube.com/watch?v=b931kkLHXe0", "video_id": "video10730", "start time": 287.63, "end time": 311.36, "split": "test", "id": 10730}, {"category": 7, "url": "https://www.youtube.com/watch?v=QUYa5aTdjfI", "video_id": "video12224", "start time": 0.0, "end time": 11.29, "split": "test", "id": 12224}, {"category": 17, "url": "https://www.youtube.com/watch?v=hBMMEP67dQA", "video_id": "video12480", "start time": 41.81, "end time": 71.55, "split": "test", "id": 12480}, {"category": 18, "url": "https://www.youtube.com/watch?v=jv3s5vteVKE", "video_id": "video10750", "start time": 177.46, "end time": 207.32, "split": "test", "id": 10750}, {"category": 16, "url": "https://www.youtube.com/watch?v=0CPzL95wpjo", "video_id": "video11818", "start time": 26.97, "end time": 38.49, "split": "test", "id": 11818}, {"category": 15, "url": "https://www.youtube.com/watch?v=p9KoDgQU--o", "video_id": "video10107", "start time": 54.89, "end time": 64.89, "split": "test", "id": 10107}, {"category": 3, "url": "https://www.youtube.com/watch?v=697ULdzFt-s", "video_id": "video12317", "start time": 143.48, "end time": 157.04, "split": "test", "id": 12317}, {"category": 18, "url": "https://www.youtube.com/watch?v=k7k2jNtH_V0", "video_id": "video11035", "start time": 446.76, "end time": 470.38, "split": "test", "id": 11035}, {"category": 18, "url": "https://www.youtube.com/watch?v=l0GcJKWp-6g", "video_id": "video11781", "start time": 62.21, "end time": 77.46, "split": "test", "id": 11781}, {"category": 6, "url": "https://www.youtube.com/watch?v=jzPK2O-BUG4", "video_id": "video12800", "start time": 151.93, "end time": 175.97, "split": "test", "id": 12800}, {"category": 18, "url": "https://www.youtube.com/watch?v=bGNZzpLfT94", "video_id": "video11761", "start time": 72.59, "end time": 82.88, "split": "test", "id": 11761}, {"category": 7, "url": "https://www.youtube.com/watch?v=5CXXtoulzbk", "video_id": "video11822", "start time": 50.69, "end time": 72.57, "split": "test", "id": 11822}, {"category": 7, "url": "https://www.youtube.com/watch?v=46GwJbrMghQ", "video_id": "video10713", "start time": 53.27, "end time": 67.82, "split": "test", "id": 10713}, {"category": 17, "url": "https://www.youtube.com/watch?v=ET3CSjw_KoA", "video_id": "video10434", "start time": 140.77, "end time": 155.49, "split": "test", "id": 10434}, {"category": 18, "url": "https://www.youtube.com/watch?v=KWOkmPA2CfY", "video_id": "video12945", "start time": 117.0, "end time": 137.79, "split": "test", "id": 12945}, {"category": 17, "url": "https://www.youtube.com/watch?v=4mDN6arnaKs", "video_id": "video10950", "start time": 29.77, "end time": 46.49, "split": "test", "id": 10950}, {"category": 4, "url": "https://www.youtube.com/watch?v=icpFvBwsNpU", "video_id": "video12736", "start time": 48.73, "end time": 74.97, "split": "test", "id": 12736}, {"category": 7, "url": "https://www.youtube.com/watch?v=ekW3eJfXQ3I", "video_id": "video11284", "start time": 67.62, "end time": 77.88, "split": "test", "id": 11284}, {"category": 4, "url": "https://www.youtube.com/watch?v=rHF9aAzCVmk", "video_id": "video11787", "start time": 6.55, "end time": 34.75, "split": "test", "id": 11787}, {"category": 7, "url": "https://www.youtube.com/watch?v=r1yTDJKx66o", "video_id": "video10394", "start time": 143.12, "end time": 172.95, "split": "test", "id": 10394}, {"category": 13, "url": "https://www.youtube.com/watch?v=cX3sgZN7HUs", "video_id": "video11333", "start time": 56.05, "end time": 70.05, "split": "test", "id": 11333}, {"category": 18, "url": "https://www.youtube.com/watch?v=qkZbGKRfOJo", "video_id": "video10660", "start time": 120.33, "end time": 140.35, "split": "test", "id": 10660}, {"category": 9, "url": "https://www.youtube.com/watch?v=-R7J9BIjNEw", "video_id": "video12662", "start time": 31.57, "end time": 42.29, "split": "test", "id": 12662}, {"category": 18, "url": "https://www.youtube.com/watch?v=oZZPGPv0EAI", "video_id": "video10678", "start time": 0.0, "end time": 27.09, "split": "test", "id": 10678}, {"category": 1, "url": "https://www.youtube.com/watch?v=4ZRXsE2g_Ko", "video_id": "video10048", "start time": 1.42, "end time": 14.86, "split": "test", "id": 10048}, {"category": 9, "url": "https://www.youtube.com/watch?v=JezYme7AEoo", "video_id": "video12081", "start time": 126.34, "end time": 148.1, "split": "test", "id": 12081}, {"category": 9, "url": "https://www.youtube.com/watch?v=6hgi0nBN9R8", "video_id": "video10494", "start time": 119.85, "end time": 136.81, "split": "test", "id": 10494}, {"category": 18, "url": "https://www.youtube.com/watch?v=KAuLB0jOlHI", "video_id": "video10937", "start time": 512.56, "end time": 539.02, "split": "test", "id": 10937}, {"category": 1, "url": "https://www.youtube.com/watch?v=kk2reqds6C8", "video_id": "video11355", "start time": 30.83, "end time": 47.85, "split": "test", "id": 11355}, {"category": 2, "url": "https://www.youtube.com/watch?v=otOlyWMo9I8", "video_id": "video12623", "start time": 478.55, "end time": 491.05, "split": "test", "id": 12623}, {"category": 4, "url": "https://www.youtube.com/watch?v=HFnb5GWltBc", "video_id": "video10726", "start time": 146.49, "end time": 158.41, "split": "test", "id": 10726}, {"category": 6, "url": "https://www.youtube.com/watch?v=3GDx5whNHuA", "video_id": "video10431", "start time": 263.61, "end time": 288.04, "split": "test", "id": 10431}, {"category": 17, "url": "https://www.youtube.com/watch?v=Kn5t9lhNqxg", "video_id": "video11635", "start time": 262.61, "end time": 274.29, "split": "test", "id": 11635}, {"category": 7, "url": "https://www.youtube.com/watch?v=OGRBqL5_smE", "video_id": "video12953", "start time": 95.39, "end time": 105.4, "split": "test", "id": 12953}, {"category": 7, "url": "https://www.youtube.com/watch?v=4UfD3ffZq-o", "video_id": "video12016", "start time": 22.05, "end time": 32.29, "split": "test", "id": 12016}, {"category": 7, "url": "https://www.youtube.com/watch?v=Psxktpxkc6o", "video_id": "video12604", "start time": 128.93, "end time": 139.61, "split": "test", "id": 12604}, {"category": 18, "url": "https://www.youtube.com/watch?v=bMWjyZbzY-k", "video_id": "video10196", "start time": 159.64, "end time": 171.85, "split": "test", "id": 10196}, {"category": 6, "url": "https://www.youtube.com/watch?v=QqMe6pwSfIE", "video_id": "video10010", "start time": 42.92, "end time": 60.91, "split": "test", "id": 10010}, {"category": 8, "url": "https://www.youtube.com/watch?v=ADBKTtvsc9U", "video_id": "video11382", "start time": 85.73, "end time": 98.25, "split": "test", "id": 11382}, {"category": 18, "url": "https://www.youtube.com/watch?v=71q8SbE0YUE", "video_id": "video11474", "start time": 140.29, "end time": 163.01, "split": "test", "id": 11474}, {"category": 18, "url": "https://www.youtube.com/watch?v=AUaQLyQJV-A", "video_id": "video11473", "start time": 24.85, "end time": 39.61, "split": "test", "id": 11473}, {"category": 9, "url": "https://www.youtube.com/watch?v=-NpJXjm5K6A", "video_id": "video10617", "start time": 416.06, "end time": 443.86, "split": "test", "id": 10617}, {"category": 1, "url": "https://www.youtube.com/watch?v=Bsu84iQXkTg", "video_id": "video12974", "start time": 97.48, "end time": 110.57, "split": "test", "id": 12974}, {"category": 5, "url": "https://www.youtube.com/watch?v=jUenTEk3mEs", "video_id": "video12838", "start time": 30.38, "end time": 55.38, "split": "test", "id": 12838}, {"category": 16, "url": "https://www.youtube.com/watch?v=j_S6vGF8g3w", "video_id": "video11839", "start time": 199.88, "end time": 213.61, "split": "test", "id": 11839}, {"category": 14, "url": "https://www.youtube.com/watch?v=r9x6hSdRAvI", "video_id": "video10345", "start time": 193.77, "end time": 216.25, "split": "test", "id": 10345}, {"category": 12, "url": "https://www.youtube.com/watch?v=ho-jS-pGxLc", "video_id": "video10527", "start time": 140.17, "end time": 154.45, "split": "test", "id": 10527}, {"category": 7, "url": "https://www.youtube.com/watch?v=iMSt22zYjsg", "video_id": "video10142", "start time": 213.26, "end time": 227.71, "split": "test", "id": 10142}, {"category": 7, "url": "https://www.youtube.com/watch?v=73v6FQJ7BZM", "video_id": "video12307", "start time": 126.63, "end time": 144.78, "split": "test", "id": 12307}, {"category": 10, "url": "https://www.youtube.com/watch?v=aL1hKzmrRJk", "video_id": "video11581", "start time": 7.76, "end time": 28.81, "split": "test", "id": 11581}, {"category": 4, "url": "https://www.youtube.com/watch?v=DHzMFOh1IRs", "video_id": "video10518", "start time": 173.29, "end time": 200.17, "split": "test", "id": 10518}, {"category": 13, "url": "https://www.youtube.com/watch?v=OQh19oOVhHY", "video_id": "video11008", "start time": 0.0, "end time": 23.34, "split": "test", "id": 11008}, {"category": 16, "url": "https://www.youtube.com/watch?v=Q6xc2IM6KVE", "video_id": "video10255", "start time": 198.81, "end time": 227.47, "split": "test", "id": 10255}, {"category": 19, "url": "https://www.youtube.com/watch?v=B1DNoole3Wo", "video_id": "video11955", "start time": 4.79, "end time": 16.33, "split": "test", "id": 11955}, {"category": 18, "url": "https://www.youtube.com/watch?v=QHm9KLOEcvM", "video_id": "video11126", "start time": 9.59, "end time": 31.05, "split": "test", "id": 11126}, {"category": 9, "url": "https://www.youtube.com/watch?v=KTrgRYa2wbI", "video_id": "video11181", "start time": 248.63, "end time": 259.31, "split": "test", "id": 11181}, {"category": 13, "url": "https://www.youtube.com/watch?v=gKpQanid194", "video_id": "video11308", "start time": 105.05, "end time": 122.64, "split": "test", "id": 11308}, {"category": 6, "url": "https://www.youtube.com/watch?v=bq4OnYUJQU8", "video_id": "video11108", "start time": 69.35, "end time": 83.46, "split": "test", "id": 11108}, {"category": 5, "url": "https://www.youtube.com/watch?v=IvtZBUSplr4", "video_id": "video11055", "start time": 186.3, "end time": 197.68, "split": "test", "id": 11055}, {"category": 9, "url": "https://www.youtube.com/watch?v=8d3r2LNNiUA", "video_id": "video10993", "start time": 492.55, "end time": 510.18, "split": "test", "id": 10993}, {"category": 7, "url": "https://www.youtube.com/watch?v=2_9J71U9cXQ", "video_id": "video11121", "start time": 72.65, "end time": 85.73, "split": "test", "id": 11121}, {"category": 12, "url": "https://www.youtube.com/watch?v=Eh0kyhEa8g8", "video_id": "video12930", "start time": 118.41, "end time": 143.31, "split": "test", "id": 12930}, {"category": 18, "url": "https://www.youtube.com/watch?v=I6w7MVkhlp4", "video_id": "video11289", "start time": 95.35, "end time": 106.24, "split": "test", "id": 11289}, {"category": 3, "url": "https://www.youtube.com/watch?v=KaAMtA6Q2bw", "video_id": "video11759", "start time": 64.49, "end time": 79.21, "split": "test", "id": 11759}, {"category": 17, "url": "https://www.youtube.com/watch?v=8tQ3X2v3z3c", "video_id": "video10261", "start time": 122.07, "end time": 143.06, "split": "test", "id": 10261}, {"category": 16, "url": "https://www.youtube.com/watch?v=hKDznJofnBE", "video_id": "video12419", "start time": 209.09, "end time": 221.1, "split": "test", "id": 12419}, {"category": 6, "url": "https://www.youtube.com/watch?v=9KjiAEJgG5I", "video_id": "video12795", "start time": 249.51, "end time": 263.92, "split": "test", "id": 12795}, {"category": 3, "url": "https://www.youtube.com/watch?v=QJ0bAAA-QQU", "video_id": "video11845", "start time": 492.01, "end time": 506.46, "split": "test", "id": 11845}, {"category": 17, "url": "https://www.youtube.com/watch?v=nUHPZXFU1gY", "video_id": "video12680", "start time": 26.37, "end time": 44.83, "split": "test", "id": 12680}, {"category": 0, "url": "https://www.youtube.com/watch?v=gUk6obbYXUA", "video_id": "video10579", "start time": 59.25, "end time": 69.25, "split": "test", "id": 10579}, {"category": 15, "url": "https://www.youtube.com/watch?v=KsAiKk7w9sE", "video_id": "video11338", "start time": 955.54, "end time": 982.4, "split": "test", "id": 11338}, {"category": 7, "url": "https://www.youtube.com/watch?v=S1nb2P242Zk", "video_id": "video12394", "start time": 96.65, "end time": 118.41, "split": "test", "id": 12394}, {"category": 9, "url": "https://www.youtube.com/watch?v=n23ewyll7cQ", "video_id": "video11319", "start time": 755.67, "end time": 768.05, "split": "test", "id": 11319}, {"category": 6, "url": "https://www.youtube.com/watch?v=Ru7l1HIzdJc", "video_id": "video11560", "start time": 166.81, "end time": 182.16, "split": "test", "id": 11560}, {"category": 6, "url": "https://www.youtube.com/watch?v=B-MXYJUO_OU", "video_id": "video11817", "start time": 154.71, "end time": 172.55, "split": "test", "id": 11817}, {"category": 3, "url": "https://www.youtube.com/watch?v=RTT_hr6N2yo", "video_id": "video12687", "start time": 204.18, "end time": 218.41, "split": "test", "id": 12687}, {"category": 11, "url": "https://www.youtube.com/watch?v=ISdVnVY4pXA", "video_id": "video12954", "start time": 222.93, "end time": 235.69, "split": "test", "id": 12954}, {"category": 14, "url": "https://www.youtube.com/watch?v=2WExSCqcghU", "video_id": "video12381", "start time": 6.05, "end time": 20.53, "split": "test", "id": 12381}, {"category": 7, "url": "https://www.youtube.com/watch?v=5MB3Ea6L-gw", "video_id": "video12361", "start time": 109.57, "end time": 129.18, "split": "test", "id": 12361}, {"category": 17, "url": "https://www.youtube.com/watch?v=atCfBuLmTxo", "video_id": "video10550", "start time": 187.5, "end time": 205.09, "split": "test", "id": 10550}, {"category": 4, "url": "https://www.youtube.com/watch?v=FZxJScawIzg", "video_id": "video10481", "start time": 139.79, "end time": 154.4, "split": "test", "id": 10481}, {"category": 16, "url": "https://www.youtube.com/watch?v=p00Ggjvjcxc", "video_id": "video10236", "start time": 3.05, "end time": 23.17, "split": "test", "id": 10236}, {"category": 17, "url": "https://www.youtube.com/watch?v=prh3Q3FD9v0", "video_id": "video11259", "start time": 25.97, "end time": 40.29, "split": "test", "id": 11259}, {"category": 12, "url": "https://www.youtube.com/watch?v=MjDJNwAANwA", "video_id": "video12357", "start time": 396.04, "end time": 406.92, "split": "test", "id": 12357}, {"category": 18, "url": "https://www.youtube.com/watch?v=Idx2TFu5scs", "video_id": "video11165", "start time": 194.53, "end time": 204.57, "split": "test", "id": 11165}, {"category": 5, "url": "https://www.youtube.com/watch?v=QV7CanyzhZg", "video_id": "video11607", "start time": 19.02, "end time": 41.51, "split": "test", "id": 11607}, {"category": 12, "url": "https://www.youtube.com/watch?v=9ST5OPd_BR0", "video_id": "video10179", "start time": 21.65, "end time": 49.25, "split": "test", "id": 10179}, {"category": 16, "url": "https://www.youtube.com/watch?v=Dl89lQqfqBk", "video_id": "video11886", "start time": 18.96, "end time": 38.88, "split": "test", "id": 11886}, {"category": 13, "url": "https://www.youtube.com/watch?v=-Wfql5O8MVs", "video_id": "video10377", "start time": 336.25, "end time": 349.38, "split": "test", "id": 10377}, {"category": 18, "url": "https://www.youtube.com/watch?v=E9nFkJRMOEM", "video_id": "video12143", "start time": 32.09, "end time": 44.85, "split": "test", "id": 12143}, {"category": 13, "url": "https://www.youtube.com/watch?v=EBAI32aTmP4", "video_id": "video12981", "start time": 102.22, "end time": 118.87, "split": "test", "id": 12981}, {"category": 12, "url": "https://www.youtube.com/watch?v=ljwjEyJJtJA", "video_id": "video12291", "start time": 639.45, "end time": 651.58, "split": "test", "id": 12291}, {"category": 17, "url": "https://www.youtube.com/watch?v=IqsDPVVFglg", "video_id": "video11272", "start time": 117.13, "end time": 130.89, "split": "test", "id": 11272}, {"category": 8, "url": "https://www.youtube.com/watch?v=iuwDK3a_j0M", "video_id": "video12205", "start time": 93.34, "end time": 105.75, "split": "test", "id": 12205}, {"category": 15, "url": "https://www.youtube.com/watch?v=Nvbdex_nijM", "video_id": "video11202", "start time": 784.65, "end time": 811.81, "split": "test", "id": 11202}, {"category": 9, "url": "https://www.youtube.com/watch?v=S78WeKi9MVg", "video_id": "video12748", "start time": 138.77, "end time": 160.13, "split": "test", "id": 12748}, {"category": 12, "url": "https://www.youtube.com/watch?v=qXabyrYvNaA", "video_id": "video12278", "start time": 181.86, "end time": 203.65, "split": "test", "id": 12278}, {"category": 10, "url": "https://www.youtube.com/watch?v=o3WA2Y8Jvrc", "video_id": "video11312", "start time": 179.41, "end time": 201.77, "split": "test", "id": 11312}, {"category": 4, "url": "https://www.youtube.com/watch?v=2mF4RT56xhY", "video_id": "video11666", "start time": 327.58, "end time": 341.35, "split": "test", "id": 11666}, {"category": 9, "url": "https://www.youtube.com/watch?v=a2X7EC-1QZo", "video_id": "video10542", "start time": 40.19, "end time": 50.83, "split": "test", "id": 10542}, {"category": 2, "url": "https://www.youtube.com/watch?v=Hg-d_vIsLmU", "video_id": "video10935", "start time": 9.72, "end time": 24.47, "split": "test", "id": 10935}, {"category": 18, "url": "https://www.youtube.com/watch?v=4J_ufHdCc70", "video_id": "video10556", "start time": 320.37, "end time": 340.68, "split": "test", "id": 10556}, {"category": 3, "url": "https://www.youtube.com/watch?v=KelqRvBudYo", "video_id": "video11492", "start time": 200.28, "end time": 218.93, "split": "test", "id": 11492}, {"category": 8, "url": "https://www.youtube.com/watch?v=7mqAZ06dwKU", "video_id": "video10709", "start time": 242.61, "end time": 256.21, "split": "test", "id": 10709}, {"category": 4, "url": "https://www.youtube.com/watch?v=NZjAjJ__gsU", "video_id": "video10990", "start time": 6.05, "end time": 19.65, "split": "test", "id": 10990}, {"category": 16, "url": "https://www.youtube.com/watch?v=IK2_3les4NU", "video_id": "video11489", "start time": 143.82, "end time": 161.34, "split": "test", "id": 11489}, {"category": 17, "url": "https://www.youtube.com/watch?v=46hD7VyyO3w", "video_id": "video11625", "start time": 169.85, "end time": 195.54, "split": "test", "id": 11625}, {"category": 18, "url": "https://www.youtube.com/watch?v=I6w7MVkhlp4", "video_id": "video10068", "start time": 2.34, "end time": 19.65, "split": "test", "id": 10068}, {"category": 4, "url": "https://www.youtube.com/watch?v=OG8qtg6_buM", "video_id": "video11843", "start time": 123.75, "end time": 134.05, "split": "test", "id": 11843}, {"category": 11, "url": "https://www.youtube.com/watch?v=1Tbhx0VjrEI", "video_id": "video11417", "start time": 116.85, "end time": 127.65, "split": "test", "id": 11417}, {"category": 9, "url": "https://www.youtube.com/watch?v=pKcJ-0bAHB4", "video_id": "video10365", "start time": 68.81, "end time": 79.49, "split": "test", "id": 10365}, {"category": 14, "url": "https://www.youtube.com/watch?v=kgdHS_8r8GM", "video_id": "video10409", "start time": 299.25, "end time": 324.37, "split": "test", "id": 10409}, {"category": 16, "url": "https://www.youtube.com/watch?v=p0UxRkGH6B0", "video_id": "video11123", "start time": 26.81, "end time": 39.65, "split": "test", "id": 11123}, {"category": 0, "url": "https://www.youtube.com/watch?v=EHkozMIXZ8w", "video_id": "video10629", "start time": 149.15, "end time": 175.93, "split": "test", "id": 10629}, {"category": 15, "url": "https://www.youtube.com/watch?v=NKkRDMil0bw", "video_id": "video12620", "start time": 158.79, "end time": 170.38, "split": "test", "id": 12620}, {"category": 10, "url": "https://www.youtube.com/watch?v=fmUhnEhSaj4", "video_id": "video12035", "start time": 98.35, "end time": 114.13, "split": "test", "id": 12035}, {"category": 13, "url": "https://www.youtube.com/watch?v=r_ocOhdraiE", "video_id": "video11390", "start time": 12.04, "end time": 24.11, "split": "test", "id": 11390}, {"category": 4, "url": "https://www.youtube.com/watch?v=p-dg2y0bL3U", "video_id": "video11250", "start time": 0.0, "end time": 19.43, "split": "test", "id": 11250}, {"category": 3, "url": "https://www.youtube.com/watch?v=gm7eT0MGt2Y", "video_id": "video10733", "start time": 45.69, "end time": 60.64, "split": "test", "id": 10733}, {"category": 4, "url": "https://www.youtube.com/watch?v=bBmrSx9CKcA", "video_id": "video12461", "start time": 22.93, "end time": 44.29, "split": "test", "id": 12461}, {"category": 11, "url": "https://www.youtube.com/watch?v=Qn-c9irPgyU", "video_id": "video11420", "start time": 72.65, "end time": 84.65, "split": "test", "id": 11420}, {"category": 16, "url": "https://www.youtube.com/watch?v=a3L1qZp3_DA", "video_id": "video11626", "start time": 51.33, "end time": 70.05, "split": "test", "id": 11626}, {"category": 18, "url": "https://www.youtube.com/watch?v=gumSJ-OY298", "video_id": "video10644", "start time": 45.33, "end time": 55.7, "split": "test", "id": 10644}, {"category": 10, "url": "https://www.youtube.com/watch?v=-jXAYt1BVqM", "video_id": "video11777", "start time": 116.41, "end time": 127.31, "split": "test", "id": 11777}, {"category": 12, "url": "https://www.youtube.com/watch?v=fyrVc460bas", "video_id": "video10897", "start time": 70.45, "end time": 82.46, "split": "test", "id": 10897}, {"category": 8, "url": "https://www.youtube.com/watch?v=Q_iJgMf2EKI", "video_id": "video10602", "start time": 0.0, "end time": 22.13, "split": "test", "id": 10602}, {"category": 0, "url": "https://www.youtube.com/watch?v=2KiEsXjncpY", "video_id": "video12048", "start time": 104.85, "end time": 117.56, "split": "test", "id": 12048}, {"category": 14, "url": "https://www.youtube.com/watch?v=aRP1bCg_Bcw", "video_id": "video12133", "start time": 528.78, "end time": 547.64, "split": "test", "id": 12133}, {"category": 9, "url": "https://www.youtube.com/watch?v=3W7pLkFkVjg", "video_id": "video10084", "start time": 281.09, "end time": 291.21, "split": "test", "id": 10084}, {"category": 12, "url": "https://www.youtube.com/watch?v=h_-tARMPqeI", "video_id": "video10867", "start time": 14.19, "end time": 25.24, "split": "test", "id": 10867}, {"category": 4, "url": "https://www.youtube.com/watch?v=amZjPJNvZ7M", "video_id": "video10128", "start time": 24.89, "end time": 47.53, "split": "test", "id": 10128}, {"category": 12, "url": "https://www.youtube.com/watch?v=8PWGXyb67XI", "video_id": "video12362", "start time": 192.04, "end time": 209.29, "split": "test", "id": 12362}, {"category": 16, "url": "https://www.youtube.com/watch?v=6wWvq8gBy0Q", "video_id": "video11937", "start time": 123.21, "end time": 145.36, "split": "test", "id": 11937}, {"category": 13, "url": "https://www.youtube.com/watch?v=kOAFnSQW1Aw", "video_id": "video12821", "start time": 278.36, "end time": 292.14, "split": "test", "id": 12821}, {"category": 12, "url": "https://www.youtube.com/watch?v=KIFiudLMpMw", "video_id": "video12732", "start time": 68.12, "end time": 78.33, "split": "test", "id": 12732}, {"category": 9, "url": "https://www.youtube.com/watch?v=bEtK8VkcpWE", "video_id": "video11578", "start time": 101.62, "end time": 117.0, "split": "test", "id": 11578}, {"category": 5, "url": "https://www.youtube.com/watch?v=GAY5ICoVnA8", "video_id": "video11746", "start time": 71.22, "end time": 82.03, "split": "test", "id": 11746}, {"category": 18, "url": "https://www.youtube.com/watch?v=ja2u-kvkIzQ", "video_id": "video12761", "start time": 346.43, "end time": 368.78, "split": "test", "id": 12761}, {"category": 11, "url": "https://www.youtube.com/watch?v=jO-7QIOKrKY", "video_id": "video10446", "start time": 293.94, "end time": 309.42, "split": "test", "id": 10446}, {"category": 9, "url": "https://www.youtube.com/watch?v=MQKPbmb-7Fo", "video_id": "video11752", "start time": 39.29, "end time": 50.94, "split": "test", "id": 11752}, {"category": 12, "url": "https://www.youtube.com/watch?v=mO6GWUn1FoI", "video_id": "video12456", "start time": 119.12, "end time": 131.18, "split": "test", "id": 12456}, {"category": 3, "url": "https://www.youtube.com/watch?v=9cwGMKXNcko", "video_id": "video12352", "start time": 206.25, "end time": 224.74, "split": "test", "id": 12352}, {"category": 17, "url": "https://www.youtube.com/watch?v=AwHRHj2ZZj0", "video_id": "video11524", "start time": 32.35, "end time": 44.61, "split": "test", "id": 11524}, {"category": 4, "url": "https://www.youtube.com/watch?v=iiFvO7FWcN0", "video_id": "video12152", "start time": 452.07, "end time": 462.84, "split": "test", "id": 12152}, {"category": 16, "url": "https://www.youtube.com/watch?v=rLMQx4XDlOI", "video_id": "video12369", "start time": 55.07, "end time": 67.68, "split": "test", "id": 12369}, {"category": 11, "url": "https://www.youtube.com/watch?v=3UBiR9gn_Dw", "video_id": "video10525", "start time": 114.85, "end time": 131.91, "split": "test", "id": 10525}, {"category": 5, "url": "https://www.youtube.com/watch?v=qMXqg2PKJZU", "video_id": "video10058", "start time": 0.0, "end time": 20.94, "split": "test", "id": 10058}, {"category": 16, "url": "https://www.youtube.com/watch?v=Rgxm1GJtU3Y", "video_id": "video10625", "start time": 455.09, "end time": 482.53, "split": "test", "id": 10625}, {"category": 7, "url": "https://www.youtube.com/watch?v=S1bXgvHknO8", "video_id": "video12397", "start time": 287.03, "end time": 297.31, "split": "test", "id": 12397}, {"category": 16, "url": "https://www.youtube.com/watch?v=NcVoInGsEHo", "video_id": "video12216", "start time": 86.17, "end time": 100.49, "split": "test", "id": 12216}, {"category": 15, "url": "https://www.youtube.com/watch?v=jOgCP5LIUOQ", "video_id": "video10828", "start time": 129.59, "end time": 149.41, "split": "test", "id": 10828}, {"category": 12, "url": "https://www.youtube.com/watch?v=1tJ2CWvTVGM", "video_id": "video10335", "start time": 88.71, "end time": 101.41, "split": "test", "id": 10335}, {"category": 1, "url": "https://www.youtube.com/watch?v=5AAuGh4Jm2E", "video_id": "video11430", "start time": 7.21, "end time": 19.18, "split": "test", "id": 11430}, {"category": 16, "url": "https://www.youtube.com/watch?v=gAE5OcTfIVQ", "video_id": "video10831", "start time": 45.05, "end time": 65.77, "split": "test", "id": 10831}, {"category": 16, "url": "https://www.youtube.com/watch?v=90Ctcown1xg", "video_id": "video11169", "start time": 157.57, "end time": 173.75, "split": "test", "id": 11169}, {"category": 12, "url": "https://www.youtube.com/watch?v=HgtbwMU4siM", "video_id": "video10981", "start time": 198.78, "end time": 211.78, "split": "test", "id": 10981}, {"category": 16, "url": "https://www.youtube.com/watch?v=cwhaqttNeBY", "video_id": "video11322", "start time": 13.93, "end time": 29.09, "split": "test", "id": 11322}, {"category": 15, "url": "https://www.youtube.com/watch?v=KFlkQAb5IqU", "video_id": "video10808", "start time": 25.73, "end time": 42.57, "split": "test", "id": 10808}, {"category": 8, "url": "https://www.youtube.com/watch?v=9lSJVbkBlTM", "video_id": "video10092", "start time": 0.0, "end time": 21.95, "split": "test", "id": 10092}, {"category": 3, "url": "https://www.youtube.com/watch?v=PF2T2tJG0ig", "video_id": "video11032", "start time": 73.49, "end time": 93.34, "split": "test", "id": 11032}, {"category": 14, "url": "https://www.youtube.com/watch?v=jiPIwdSFW2Q", "video_id": "video10517", "start time": 239.55, "end time": 256.66, "split": "test", "id": 10517}, {"category": 16, "url": "https://www.youtube.com/watch?v=K_GsdmlB9Jk", "video_id": "video10418", "start time": 186.15, "end time": 215.3, "split": "test", "id": 10418}, {"category": 7, "url": "https://www.youtube.com/watch?v=1czvD3aVk8Y", "video_id": "video11376", "start time": 0.0, "end time": 14.25, "split": "test", "id": 11376}, {"category": 0, "url": "https://www.youtube.com/watch?v=Oe4Ic7fHWf8", "video_id": "video12101", "start time": 43.71, "end time": 63.21, "split": "test", "id": 12101}, {"category": 18, "url": "https://www.youtube.com/watch?v=8L21Vm3abMg", "video_id": "video12865", "start time": 499.77, "end time": 521.53, "split": "test", "id": 12865}, {"category": 7, "url": "https://www.youtube.com/watch?v=pYQb2iKeki4", "video_id": "video10349", "start time": 41.32, "end time": 52.97, "split": "test", "id": 10349}, {"category": 7, "url": "https://www.youtube.com/watch?v=rren-FA3z8U", "video_id": "video10271", "start time": 3.47, "end time": 18.9, "split": "test", "id": 10271}, {"category": 8, "url": "https://www.youtube.com/watch?v=ckUdDhs6lvY", "video_id": "video10096", "start time": 0.0, "end time": 12.38, "split": "test", "id": 10096}, {"category": 18, "url": "https://www.youtube.com/watch?v=NS7rgs1e-U0", "video_id": "video12799", "start time": 10.91, "end time": 20.91, "split": "test", "id": 12799}, {"category": 12, "url": "https://www.youtube.com/watch?v=2aqDScoXOwA", "video_id": "video10734", "start time": 177.17, "end time": 193.34, "split": "test", "id": 10734}, {"category": 10, "url": "https://www.youtube.com/watch?v=jZTZjX7-R0I", "video_id": "video11729", "start time": 378.86, "end time": 390.44, "split": "test", "id": 11729}, {"category": 17, "url": "https://www.youtube.com/watch?v=RR4K6Ma3Sc4", "video_id": "video12560", "start time": 10.61, "end time": 25.89, "split": "test", "id": 12560}, {"category": 18, "url": "https://www.youtube.com/watch?v=KpCU0droMxw", "video_id": "video12047", "start time": 410.29, "end time": 436.57, "split": "test", "id": 12047}, {"category": 4, "url": "https://www.youtube.com/watch?v=a9KUPYwVHAc", "video_id": "video11655", "start time": 166.01, "end time": 176.99, "split": "test", "id": 11655}, {"category": 15, "url": "https://www.youtube.com/watch?v=PN_CP4SuoTU", "video_id": "video11665", "start time": 39.62, "end time": 52.4, "split": "test", "id": 11665}, {"category": 18, "url": "https://www.youtube.com/watch?v=EVjs0IUaL7I", "video_id": "video12333", "start time": 95.01, "end time": 115.57, "split": "test", "id": 12333}, {"category": 11, "url": "https://www.youtube.com/watch?v=ixKiDRrOG_E", "video_id": "video12596", "start time": 300.25, "end time": 321.89, "split": "test", "id": 12596}, {"category": 4, "url": "https://www.youtube.com/watch?v=MbdVsivLpGU", "video_id": "video12519", "start time": 35.21, "end time": 49.93, "split": "test", "id": 12519}, {"category": 13, "url": "https://www.youtube.com/watch?v=B2Je1CEPkUM", "video_id": "video12588", "start time": 151.51, "end time": 172.11, "split": "test", "id": 12588}, {"category": 17, "url": "https://www.youtube.com/watch?v=rzPlQ_qrahE", "video_id": "video11173", "start time": 173.55, "end time": 185.97, "split": "test", "id": 11173}, {"category": 17, "url": "https://www.youtube.com/watch?v=5EeI529gzCI", "video_id": "video10421", "start time": 757.69, "end time": 783.85, "split": "test", "id": 10421}, {"category": 0, "url": "https://www.youtube.com/watch?v=qkBv3vvNlEw", "video_id": "video12894", "start time": 42.81, "end time": 60.17, "split": "test", "id": 12894}, {"category": 2, "url": "https://www.youtube.com/watch?v=EW_nEz25CHY", "video_id": "video10693", "start time": 236.49, "end time": 252.57, "split": "test", "id": 10693}, {"category": 13, "url": "https://www.youtube.com/watch?v=cL07FrhrYhk", "video_id": "video12898", "start time": 38.91, "end time": 64.61, "split": "test", "id": 12898}, {"category": 16, "url": "https://www.youtube.com/watch?v=hK2pNakR8eg", "video_id": "video11085", "start time": 139.95, "end time": 162.28, "split": "test", "id": 11085}, {"category": 12, "url": "https://www.youtube.com/watch?v=H5frI7f9WEQ", "video_id": "video10749", "start time": 12.43, "end time": 41.36, "split": "test", "id": 10749}, {"category": 14, "url": "https://www.youtube.com/watch?v=5RyRS3hBtYg", "video_id": "video12493", "start time": 3.42, "end time": 24.61, "split": "test", "id": 12493}, {"category": 17, "url": "https://www.youtube.com/watch?v=II2gnuhe0NY", "video_id": "video12752", "start time": 134.52, "end time": 156.8, "split": "test", "id": 12752}, {"category": 18, "url": "https://www.youtube.com/watch?v=OO9BcpEuIqo", "video_id": "video11086", "start time": 109.78, "end time": 128.18, "split": "test", "id": 11086}, {"category": 9, "url": "https://www.youtube.com/watch?v=2hWoRl1sjyo", "video_id": "video12367", "start time": 555.85, "end time": 575.01, "split": "test", "id": 12367}, {"category": 0, "url": "https://www.youtube.com/watch?v=-t_hLnhg_YY", "video_id": "video10547", "start time": 130.18, "end time": 147.91, "split": "test", "id": 10547}, {"category": 3, "url": "https://www.youtube.com/watch?v=5wxlYIPgFBM", "video_id": "video11212", "start time": 4.81, "end time": 29.81, "split": "test", "id": 11212}, {"category": 7, "url": "https://www.youtube.com/watch?v=n2X6D_JDJ90", "video_id": "video10302", "start time": 293.17, "end time": 305.82, "split": "test", "id": 10302}, {"category": 8, "url": "https://www.youtube.com/watch?v=m9D3hKHS9K0", "video_id": "video12121", "start time": 399.88, "end time": 427.84, "split": "test", "id": 12121}, {"category": 16, "url": "https://www.youtube.com/watch?v=eYPOqDxvs-g", "video_id": "video11453", "start time": 59.38, "end time": 86.05, "split": "test", "id": 11453}, {"category": 18, "url": "https://www.youtube.com/watch?v=fGq2XhbzUHM", "video_id": "video12241", "start time": 49.0, "end time": 59.14, "split": "test", "id": 12241}, {"category": 13, "url": "https://www.youtube.com/watch?v=-MUwiXY19jM", "video_id": "video11507", "start time": 152.83, "end time": 176.56, "split": "test", "id": 11507}, {"category": 10, "url": "https://www.youtube.com/watch?v=9uUpgFdzMOc", "video_id": "video11672", "start time": 161.37, "end time": 171.41, "split": "test", "id": 11672}, {"category": 16, "url": "https://www.youtube.com/watch?v=AZ_ayu08vrM", "video_id": "video10413", "start time": 81.97, "end time": 93.09, "split": "test", "id": 10413}, {"category": 11, "url": "https://www.youtube.com/watch?v=7txTHiyPin4", "video_id": "video10280", "start time": 142.05, "end time": 160.33, "split": "test", "id": 10280}, {"category": 2, "url": "https://www.youtube.com/watch?v=ebHMLe7VWIo", "video_id": "video11192", "start time": 9.11, "end time": 25.28, "split": "test", "id": 11192}, {"category": 18, "url": "https://www.youtube.com/watch?v=mu3zAc0LpHw", "video_id": "video12647", "start time": 0.0, "end time": 25.71, "split": "test", "id": 12647}, {"category": 3, "url": "https://www.youtube.com/watch?v=2EWJkUuMovg", "video_id": "video12000", "start time": 224.57, "end time": 244.61, "split": "test", "id": 12000}, {"category": 8, "url": "https://www.youtube.com/watch?v=kQBnovM3RH0", "video_id": "video10437", "start time": 274.22, "end time": 289.97, "split": "test", "id": 10437}, {"category": 5, "url": "https://www.youtube.com/watch?v=P2AUat93a8Q", "video_id": "video12298", "start time": 420.88, "end time": 433.42, "split": "test", "id": 12298}, {"category": 6, "url": "https://www.youtube.com/watch?v=PAu4FPR8tTA", "video_id": "video10150", "start time": 33.75, "end time": 44.93, "split": "test", "id": 10150}, {"category": 3, "url": "https://www.youtube.com/watch?v=j5AnRnTYtRo", "video_id": "video10456", "start time": 42.69, "end time": 59.51, "split": "test", "id": 10456}, {"category": 5, "url": "https://www.youtube.com/watch?v=QnQe0xW_JY4", "video_id": "video12251", "start time": 0.0, "end time": 19.32, "split": "test", "id": 12251}, {"category": 6, "url": "https://www.youtube.com/watch?v=ERBRhl-OtUg", "video_id": "video12240", "start time": 12.86, "end time": 24.17, "split": "test", "id": 12240}, {"category": 18, "url": "https://www.youtube.com/watch?v=Rp8SvTrcH90", "video_id": "video11499", "start time": 100.25, "end time": 125.81, "split": "test", "id": 11499}, {"category": 13, "url": "https://www.youtube.com/watch?v=jbYBGKSxyac", "video_id": "video10581", "start time": 1.45, "end time": 20.81, "split": "test", "id": 10581}, {"category": 6, "url": "https://www.youtube.com/watch?v=4q0ziUlvGbg", "video_id": "video11385", "start time": 5.85, "end time": 16.76, "split": "test", "id": 11385}, {"category": 11, "url": "https://www.youtube.com/watch?v=rfCOaSI7OsY", "video_id": "video12399", "start time": 3.93, "end time": 19.02, "split": "test", "id": 12399}, {"category": 13, "url": "https://www.youtube.com/watch?v=IOrUfqOcATE", "video_id": "video11076", "start time": 206.45, "end time": 230.89, "split": "test", "id": 11076}, {"category": 13, "url": "https://www.youtube.com/watch?v=7SHaCaI9FWg", "video_id": "video12345", "start time": 292.26, "end time": 311.23, "split": "test", "id": 12345}, {"category": 7, "url": "https://www.youtube.com/watch?v=pT_QRKfv8H4", "video_id": "video10209", "start time": 8.32, "end time": 27.31, "split": "test", "id": 10209}, {"category": 3, "url": "https://www.youtube.com/watch?v=ARRtSDFcupo", "video_id": "video12837", "start time": 212.09, "end time": 223.94, "split": "test", "id": 12837}, {"category": 6, "url": "https://www.youtube.com/watch?v=ChsAk3wGC0Y", "video_id": "video11589", "start time": 179.73, "end time": 201.05, "split": "test", "id": 11589}, {"category": 2, "url": "https://www.youtube.com/watch?v=nf-Hsxgk-6c", "video_id": "video10687", "start time": 361.91, "end time": 372.19, "split": "test", "id": 10687}, {"category": 16, "url": "https://www.youtube.com/watch?v=6YANk7LQvfA", "video_id": "video11901", "start time": 70.89, "end time": 88.29, "split": "test", "id": 11901}, {"category": 9, "url": "https://www.youtube.com/watch?v=QlvoF5VF_MI", "video_id": "video12760", "start time": 50.37, "end time": 68.97, "split": "test", "id": 12760}, {"category": 4, "url": "https://www.youtube.com/watch?v=a9KUPYwVHAc", "video_id": "video10337", "start time": 118.43, "end time": 132.18, "split": "test", "id": 10337}, {"category": 12, "url": "https://www.youtube.com/watch?v=4_0sCB_csRI", "video_id": "video12202", "start time": 30.11, "end time": 45.76, "split": "test", "id": 12202}, {"category": 0, "url": "https://www.youtube.com/watch?v=s0OO22w6Imw", "video_id": "video10588", "start time": 113.21, "end time": 138.34, "split": "test", "id": 10588}, {"category": 9, "url": "https://www.youtube.com/watch?v=eJnWPhSQjPs", "video_id": "video12868", "start time": 98.65, "end time": 118.61, "split": "test", "id": 12868}, {"category": 3, "url": "https://www.youtube.com/watch?v=Ox15DOhjNH4", "video_id": "video10287", "start time": 177.83, "end time": 195.94, "split": "test", "id": 10287}, {"category": 7, "url": "https://www.youtube.com/watch?v=-YVt8NcpKcU", "video_id": "video12386", "start time": 50.4, "end time": 68.42, "split": "test", "id": 12386}, {"category": 18, "url": "https://www.youtube.com/watch?v=saZhRZPxUYc", "video_id": "video10604", "start time": 108.07, "end time": 118.92, "split": "test", "id": 10604}, {"category": 16, "url": "https://www.youtube.com/watch?v=5gBWb5k6V2w", "video_id": "video10104", "start time": 91.18, "end time": 109.23, "split": "test", "id": 10104}, {"category": 13, "url": "https://www.youtube.com/watch?v=bhzno48tciw", "video_id": "video12632", "start time": 194.04, "end time": 208.46, "split": "test", "id": 12632}, {"category": 15, "url": "https://www.youtube.com/watch?v=pzwU9KYsPfs", "video_id": "video10336", "start time": 8.38, "end time": 23.17, "split": "test", "id": 10336}, {"category": 5, "url": "https://www.youtube.com/watch?v=pnMUF63rU2Q", "video_id": "video12418", "start time": 46.06, "end time": 66.15, "split": "test", "id": 12418}, {"category": 17, "url": "https://www.youtube.com/watch?v=sDXEdI6W2lc", "video_id": "video11899", "start time": 8.92, "end time": 21.3, "split": "test", "id": 11899}, {"category": 12, "url": "https://www.youtube.com/watch?v=IY3mfgbe-0c", "video_id": "video10584", "start time": 14.95, "end time": 26.05, "split": "test", "id": 10584}, {"category": 10, "url": "https://www.youtube.com/watch?v=5W6JFXgqc5g", "video_id": "video12306", "start time": 218.5, "end time": 240.72, "split": "test", "id": 12306}, {"category": 13, "url": "https://www.youtube.com/watch?v=-arhCVZnjU0", "video_id": "video12900", "start time": 125.09, "end time": 139.23, "split": "test", "id": 12900}, {"category": 4, "url": "https://www.youtube.com/watch?v=FssTAFvJ-wE", "video_id": "video12358", "start time": 69.35, "end time": 88.37, "split": "test", "id": 12358}, {"category": 7, "url": "https://www.youtube.com/watch?v=QbTt8nbUzzg", "video_id": "video11719", "start time": 95.28, "end time": 112.09, "split": "test", "id": 11719}, {"category": 7, "url": "https://www.youtube.com/watch?v=674ZMiXHg7o", "video_id": "video12325", "start time": 141.49, "end time": 153.49, "split": "test", "id": 12325}, {"category": 12, "url": "https://www.youtube.com/watch?v=ScOd3ExKFM8", "video_id": "video12432", "start time": 6.55, "end time": 32.28, "split": "test", "id": 12432}, {"category": 7, "url": "https://www.youtube.com/watch?v=O5s3Oj2cPgc", "video_id": "video10265", "start time": 101.27, "end time": 117.54, "split": "test", "id": 10265}, {"category": 9, "url": "https://www.youtube.com/watch?v=gCJpWzDMVnE", "video_id": "video11282", "start time": 109.17, "end time": 119.61, "split": "test", "id": 11282}, {"category": 17, "url": "https://www.youtube.com/watch?v=IqsDPVVFglg", "video_id": "video10994", "start time": 374.25, "end time": 396.05, "split": "test", "id": 10994}, {"category": 16, "url": "https://www.youtube.com/watch?v=keXB09bvFOQ", "video_id": "video12671", "start time": 394.11, "end time": 414.7, "split": "test", "id": 12671}, {"category": 3, "url": "https://www.youtube.com/watch?v=mfTIfaPvnmA", "video_id": "video12773", "start time": 67.58, "end time": 82.66, "split": "test", "id": 12773}, {"category": 10, "url": "https://www.youtube.com/watch?v=scWRboQxOHs", "video_id": "video12564", "start time": 502.76, "end time": 518.07, "split": "test", "id": 12564}, {"category": 13, "url": "https://www.youtube.com/watch?v=7aF_GaEvHg8", "video_id": "video10522", "start time": 0.0, "end time": 25.54, "split": "test", "id": 10522}, {"category": 3, "url": "https://www.youtube.com/watch?v=Lz6DfePUfIU", "video_id": "video10204", "start time": 134.18, "end time": 154.7, "split": "test", "id": 10204}, {"category": 9, "url": "https://www.youtube.com/watch?v=91R6u_RIzDQ", "video_id": "video10787", "start time": 219.63, "end time": 240.69, "split": "test", "id": 10787}, {"category": 12, "url": "https://www.youtube.com/watch?v=AIS7My2Tsnw", "video_id": "video12110", "start time": 144.39, "end time": 161.08, "split": "test", "id": 12110}, {"category": 18, "url": "https://www.youtube.com/watch?v=0ZhF0-CE4U0", "video_id": "video12554", "start time": 0.0, "end time": 29.79, "split": "test", "id": 12554}, {"category": 11, "url": "https://www.youtube.com/watch?v=mTXGk4vy9S4", "video_id": "video10471", "start time": 983.15, "end time": 1000.42, "split": "test", "id": 10471}, {"category": 0, "url": "https://www.youtube.com/watch?v=8g40VC2I-0I", "video_id": "video12709", "start time": 9.21, "end time": 25.96, "split": "test", "id": 12709}, {"category": 18, "url": "https://www.youtube.com/watch?v=5uyruRwsdNs", "video_id": "video12396", "start time": 88.07, "end time": 100.08, "split": "test", "id": 12396}, {"category": 7, "url": "https://www.youtube.com/watch?v=mp4DCaayrPU", "video_id": "video12696", "start time": 125.53, "end time": 153.33, "split": "test", "id": 12696}, {"category": 16, "url": "https://www.youtube.com/watch?v=6RuhMkAHoDs", "video_id": "video11683", "start time": 12.19, "end time": 22.94, "split": "test", "id": 11683}, {"category": 19, "url": "https://www.youtube.com/watch?v=Iy1rumvo9xc", "video_id": "video11692", "start time": 71.04, "end time": 82.3, "split": "test", "id": 11692}, {"category": 9, "url": "https://www.youtube.com/watch?v=JdajiYGYbvI", "video_id": "video12717", "start time": 0.0, "end time": 20.83, "split": "test", "id": 12717}, {"category": 9, "url": "https://www.youtube.com/watch?v=ihAXemLvfJ8", "video_id": "video10901", "start time": 423.94, "end time": 436.72, "split": "test", "id": 10901}, {"category": 9, "url": "https://www.youtube.com/watch?v=OL_eIZjiLUk", "video_id": "video12873", "start time": 79.85, "end time": 91.09, "split": "test", "id": 12873}, {"category": 9, "url": "https://www.youtube.com/watch?v=K05NgDMz2r4", "video_id": "video12972", "start time": 312.65, "end time": 339.05, "split": "test", "id": 12972}, {"category": 7, "url": "https://www.youtube.com/watch?v=1gwxDRMy2lE", "video_id": "video10863", "start time": 9.79, "end time": 33.18, "split": "test", "id": 10863}, {"category": 11, "url": "https://www.youtube.com/watch?v=pMJr2uy9f78", "video_id": "video10321", "start time": 73.15, "end time": 93.55, "split": "test", "id": 10321}, {"category": 2, "url": "https://www.youtube.com/watch?v=BE4cOQ-WYoY", "video_id": "video11229", "start time": 30.88, "end time": 60.45, "split": "test", "id": 11229}, {"category": 16, "url": "https://www.youtube.com/watch?v=nglAeYrDszM", "video_id": "video10794", "start time": 380.76, "end time": 409.8, "split": "test", "id": 10794}, {"category": 3, "url": "https://www.youtube.com/watch?v=7YyxKbZvT2w", "video_id": "video11591", "start time": 14.93, "end time": 31.05, "split": "test", "id": 11591}, {"category": 4, "url": "https://www.youtube.com/watch?v=7cWXN728-jc", "video_id": "video10328", "start time": 63.53, "end time": 81.65, "split": "test", "id": 10328}, {"category": 7, "url": "https://www.youtube.com/watch?v=ABpeiNlMOHU", "video_id": "video12762", "start time": 35.17, "end time": 50.76, "split": "test", "id": 12762}, {"category": 1, "url": "https://www.youtube.com/watch?v=PYy1yg1nbcs", "video_id": "video12963", "start time": 21.89, "end time": 37.49, "split": "test", "id": 12963}, {"category": 9, "url": "https://www.youtube.com/watch?v=1HWDcMzO_2g", "video_id": "video12002", "start time": 111.63, "end time": 124.37, "split": "test", "id": 12002}, {"category": 3, "url": "https://www.youtube.com/watch?v=MxllVkioAr4", "video_id": "video10097", "start time": 100.65, "end time": 128.34, "split": "test", "id": 10097}, {"category": 3, "url": "https://www.youtube.com/watch?v=Do3G-AEvJfY", "video_id": "video12147", "start time": 21.71, "end time": 37.41, "split": "test", "id": 12147}, {"category": 16, "url": "https://www.youtube.com/watch?v=RJxVjLa__Qk", "video_id": "video12809", "start time": 353.9, "end time": 375.66, "split": "test", "id": 12809}, {"category": 9, "url": "https://www.youtube.com/watch?v=ke6KhHyyLys", "video_id": "video10057", "start time": 25.14, "end time": 40.15, "split": "test", "id": 10057}, {"category": 3, "url": "https://www.youtube.com/watch?v=CN32W0MnUGI", "video_id": "video11963", "start time": 23.53, "end time": 44.69, "split": "test", "id": 11963}, {"category": 9, "url": "https://www.youtube.com/watch?v=qR5iYNWSxKY", "video_id": "video12985", "start time": 60.89, "end time": 73.09, "split": "test", "id": 12985}, {"category": 7, "url": "https://www.youtube.com/watch?v=pWgyy_rlmag", "video_id": "video10719", "start time": 7.02, "end time": 35.25, "split": "test", "id": 10719}, {"category": 11, "url": "https://www.youtube.com/watch?v=0lKBTu9BBhg", "video_id": "video12135", "start time": 140.97, "end time": 157.09, "split": "test", "id": 12135}, {"category": 7, "url": "https://www.youtube.com/watch?v=Ixyf7DCpMns", "video_id": "video12959", "start time": 31.37, "end time": 48.93, "split": "test", "id": 12959}, {"category": 7, "url": "https://www.youtube.com/watch?v=4fcxkKspq0c", "video_id": "video12057", "start time": 68.24, "end time": 82.13, "split": "test", "id": 12057}, {"category": 7, "url": "https://www.youtube.com/watch?v=n2X6D_JDJ90", "video_id": "video10760", "start time": 130.51, "end time": 156.8, "split": "test", "id": 10760}, {"category": 15, "url": "https://www.youtube.com/watch?v=ocCX9G9v9so", "video_id": "video10999", "start time": 63.88, "end time": 84.11, "split": "test", "id": 10999}, {"category": 14, "url": "https://www.youtube.com/watch?v=dxuRQSa9WNw", "video_id": "video11968", "start time": 40.92, "end time": 59.47, "split": "test", "id": 11968}, {"category": 6, "url": "https://www.youtube.com/watch?v=h3BngYT3B1c", "video_id": "video12921", "start time": 40.09, "end time": 55.04, "split": "test", "id": 12921}, {"category": 18, "url": "https://www.youtube.com/watch?v=gusuT78Sj5E", "video_id": "video11070", "start time": 43.61, "end time": 59.37, "split": "test", "id": 11070}, {"category": 18, "url": "https://www.youtube.com/watch?v=64yR8Q67McA", "video_id": "video12500", "start time": 30.93, "end time": 42.93, "split": "test", "id": 12500}, {"category": 6, "url": "https://www.youtube.com/watch?v=r8LumJCrDVI", "video_id": "video10234", "start time": 110.69, "end time": 123.5, "split": "test", "id": 10234}, {"category": 5, "url": "https://www.youtube.com/watch?v=l5Tw0PGcyN0", "video_id": "video11241", "start time": 71.35, "end time": 82.51, "split": "test", "id": 11241}, {"category": 18, "url": "https://www.youtube.com/watch?v=6GMNBLZBk-8", "video_id": "video12693", "start time": 259.58, "end time": 275.61, "split": "test", "id": 12693}, {"category": 16, "url": "https://www.youtube.com/watch?v=eHk6NSLGAkc", "video_id": "video11449", "start time": 11.09, "end time": 23.64, "split": "test", "id": 11449}, {"category": 4, "url": "https://www.youtube.com/watch?v=MWOV_M0t9M4", "video_id": "video12409", "start time": 10.06, "end time": 30.91, "split": "test", "id": 12409}, {"category": 3, "url": "https://www.youtube.com/watch?v=pOk3DlFQA0U", "video_id": "video10238", "start time": 574.12, "end time": 600.05, "split": "test", "id": 10238}, {"category": 2, "url": "https://www.youtube.com/watch?v=fJyAF9Tgz7A", "video_id": "video12851", "start time": 56.34, "end time": 70.32, "split": "test", "id": 12851}, {"category": 13, "url": "https://www.youtube.com/watch?v=KKmNvP3Ip1s", "video_id": "video11490", "start time": 22.4, "end time": 32.98, "split": "test", "id": 11490}, {"category": 17, "url": "https://www.youtube.com/watch?v=bC4sblLkgmg", "video_id": "video10932", "start time": 227.35, "end time": 244.28, "split": "test", "id": 10932}, {"category": 3, "url": "https://www.youtube.com/watch?v=0pqjvH9Y3Tg", "video_id": "video12966", "start time": 17.06, "end time": 30.95, "split": "test", "id": 12966}, {"category": 5, "url": "https://www.youtube.com/watch?v=ir0URpI9nKQ", "video_id": "video10244", "start time": 62.44, "end time": 74.75, "split": "test", "id": 10244}, {"category": 15, "url": "https://www.youtube.com/watch?v=kkbmijuAvlM", "video_id": "video12528", "start time": 313.45, "end time": 324.17, "split": "test", "id": 12528}, {"category": 15, "url": "https://www.youtube.com/watch?v=IxPRlhGqJ5o", "video_id": "video12042", "start time": 372.13, "end time": 386.09, "split": "test", "id": 12042}, {"category": 2, "url": "https://www.youtube.com/watch?v=s0imJ8_eGbI", "video_id": "video10381", "start time": 109.72, "end time": 128.24, "split": "test", "id": 10381}, {"category": 3, "url": "https://www.youtube.com/watch?v=kaSI2UbUeng", "video_id": "video10839", "start time": 131.08, "end time": 147.8, "split": "test", "id": 10839}, {"category": 16, "url": "https://www.youtube.com/watch?v=65BECN_bets", "video_id": "video10516", "start time": 23.8, "end time": 48.0, "split": "test", "id": 10516}, {"category": 16, "url": "https://www.youtube.com/watch?v=L1THvfX5LTM", "video_id": "video12463", "start time": 175.35, "end time": 200.16, "split": "test", "id": 12463}, {"category": 14, "url": "https://www.youtube.com/watch?v=r9x6hSdRAvI", "video_id": "video10963", "start time": 50.17, "end time": 62.09, "split": "test", "id": 10963}, {"category": 5, "url": "https://www.youtube.com/watch?v=c5VefGYYrXM", "video_id": "video10422", "start time": 748.73, "end time": 761.94, "split": "test", "id": 10422}, {"category": 16, "url": "https://www.youtube.com/watch?v=eulAf3guuo4", "video_id": "video10778", "start time": 176.48, "end time": 192.68, "split": "test", "id": 10778}, {"category": 14, "url": "https://www.youtube.com/watch?v=2sgpwTBnuLo", "video_id": "video12222", "start time": 1.42, "end time": 11.6, "split": "test", "id": 12222}, {"category": 7, "url": "https://www.youtube.com/watch?v=P65PERHkiao", "video_id": "video12755", "start time": 290.38, "end time": 312.01, "split": "test", "id": 12755}, {"category": 4, "url": "https://www.youtube.com/watch?v=ovu9yexDYSg", "video_id": "video10380", "start time": 264.21, "end time": 276.17, "split": "test", "id": 10380}, {"category": 13, "url": "https://www.youtube.com/watch?v=5NuxRq1ppp4", "video_id": "video10774", "start time": 180.96, "end time": 192.51, "split": "test", "id": 10774}, {"category": 13, "url": "https://www.youtube.com/watch?v=6kG2v_vaOqA", "video_id": "video11011", "start time": 0.0, "end time": 12.92, "split": "test", "id": 11011}, {"category": 9, "url": "https://www.youtube.com/watch?v=2SvPWZvrOS8", "video_id": "video10616", "start time": 463.53, "end time": 479.77, "split": "test", "id": 10616}, {"category": 7, "url": "https://www.youtube.com/watch?v=8q4X2vDRfRk", "video_id": "video11033", "start time": 169.01, "end time": 182.48, "split": "test", "id": 11033}, {"category": 3, "url": "https://www.youtube.com/watch?v=RZe3ZElMZ0w", "video_id": "video10428", "start time": 104.12, "end time": 118.13, "split": "test", "id": 10428}, {"category": 2, "url": "https://www.youtube.com/watch?v=qsbIy_7CK2c", "video_id": "video12683", "start time": 374.62, "end time": 395.38, "split": "test", "id": 12683}, {"category": 7, "url": "https://www.youtube.com/watch?v=oJnB_BkHwWQ", "video_id": "video10143", "start time": 10.15, "end time": 38.55, "split": "test", "id": 10143}, {"category": 3, "url": "https://www.youtube.com/watch?v=GC3mNay28LI", "video_id": "video11208", "start time": 141.71, "end time": 161.71, "split": "test", "id": 11208}, {"category": 16, "url": "https://www.youtube.com/watch?v=hzOl74x0Hj8", "video_id": "video11622", "start time": 61.9, "end time": 79.79, "split": "test", "id": 11622}, {"category": 13, "url": "https://www.youtube.com/watch?v=9gVEAhFBeHs", "video_id": "video12637", "start time": 35.82, "end time": 57.54, "split": "test", "id": 12637}, {"category": 16, "url": "https://www.youtube.com/watch?v=JmDBjEElEUg", "video_id": "video11361", "start time": 178.89, "end time": 193.54, "split": "test", "id": 11361}, {"category": 13, "url": "https://www.youtube.com/watch?v=7p4T8HA8pRE", "video_id": "video11351", "start time": 95.04, "end time": 107.89, "split": "test", "id": 11351}, {"category": 9, "url": "https://www.youtube.com/watch?v=aUO5Z6R7nDk", "video_id": "video10879", "start time": 213.45, "end time": 225.89, "split": "test", "id": 10879}, {"category": 0, "url": "https://www.youtube.com/watch?v=79YoLFS8Y-A", "video_id": "video11582", "start time": 177.74, "end time": 188.97, "split": "test", "id": 11582}, {"category": 11, "url": "https://www.youtube.com/watch?v=0Uuaq-LeEK8", "video_id": "video11437", "start time": 13.97, "end time": 43.53, "split": "test", "id": 11437}, {"category": 16, "url": "https://www.youtube.com/watch?v=J-yIuziyK_M", "video_id": "video12353", "start time": 150.13, "end time": 162.77, "split": "test", "id": 12353}, {"category": 3, "url": "https://www.youtube.com/watch?v=IBGIA3BNEHk", "video_id": "video11077", "start time": 79.86, "end time": 97.78, "split": "test", "id": 11077}, {"category": 12, "url": "https://www.youtube.com/watch?v=NkyEOrQiGMQ", "video_id": "video12805", "start time": 104.21, "end time": 116.77, "split": "test", "id": 12805}, {"category": 18, "url": "https://www.youtube.com/watch?v=qZYm6EYsmPI", "video_id": "video12037", "start time": 0.0, "end time": 28.1, "split": "test", "id": 12037}, {"category": 16, "url": "https://www.youtube.com/watch?v=1pOEXBrLs3Y", "video_id": "video12255", "start time": 0.0, "end time": 23.49, "split": "test", "id": 12255}, {"category": 7, "url": "https://www.youtube.com/watch?v=5zK-b0INu1k", "video_id": "video10592", "start time": 114.41, "end time": 128.93, "split": "test", "id": 10592}, {"category": 14, "url": "https://www.youtube.com/watch?v=RntoTUPuWMc", "video_id": "video10502", "start time": 190.61, "end time": 219.18, "split": "test", "id": 10502}, {"category": 19, "url": "https://www.youtube.com/watch?v=JeoBUUgh6BA", "video_id": "video12642", "start time": 76.0, "end time": 88.22, "split": "test", "id": 12642}, {"category": 3, "url": "https://www.youtube.com/watch?v=6eGqQvdevYA", "video_id": "video11924", "start time": 131.44, "end time": 145.15, "split": "test", "id": 11924}, {"category": 4, "url": "https://www.youtube.com/watch?v=iBEbByGplks", "video_id": "video10025", "start time": 44.29, "end time": 58.89, "split": "test", "id": 10025}, {"category": 4, "url": "https://www.youtube.com/watch?v=kagjl0uBxX4", "video_id": "video12085", "start time": 74.05, "end time": 89.85, "split": "test", "id": 12085}, {"category": 1, "url": "https://www.youtube.com/watch?v=Bml3fSU56NE", "video_id": "video11358", "start time": 229.08, "end time": 247.06, "split": "test", "id": 11358}, {"category": 13, "url": "https://www.youtube.com/watch?v=L3MtFGWRXAA", "video_id": "video10972", "start time": 186.4, "end time": 200.46, "split": "test", "id": 10972}, {"category": 9, "url": "https://www.youtube.com/watch?v=F1MOIr9Bq6k", "video_id": "video12210", "start time": 63.08, "end time": 86.83, "split": "test", "id": 12210}, {"category": 16, "url": "https://www.youtube.com/watch?v=Omv8FKQ8cAY", "video_id": "video10927", "start time": 344.48, "end time": 355.95, "split": "test", "id": 10927}, {"category": 7, "url": "https://www.youtube.com/watch?v=hRthOg9q6Vw", "video_id": "video12831", "start time": 0.0, "end time": 11.43, "split": "test", "id": 12831}, {"category": 3, "url": "https://www.youtube.com/watch?v=aU1wHJ1CHj0", "video_id": "video12103", "start time": 224.81, "end time": 251.3, "split": "test", "id": 12103}, {"category": 11, "url": "https://www.youtube.com/watch?v=QhahEGLZ6O4", "video_id": "video11113", "start time": 155.4, "end time": 168.88, "split": "test", "id": 11113}, {"category": 14, "url": "https://www.youtube.com/watch?v=QimEVRh1rTE", "video_id": "video11831", "start time": 0.0, "end time": 21.27, "split": "test", "id": 11831}, {"category": 10, "url": "https://www.youtube.com/watch?v=A_w5esx445w", "video_id": "video10290", "start time": 172.69, "end time": 186.17, "split": "test", "id": 10290}, {"category": 19, "url": "https://www.youtube.com/watch?v=6Cf7IL_eZ38", "video_id": "video12070", "start time": 36.63, "end time": 54.23, "split": "test", "id": 12070}, {"category": 16, "url": "https://www.youtube.com/watch?v=noUchPuDYRg", "video_id": "video10125", "start time": 31.49, "end time": 58.97, "split": "test", "id": 10125}, {"category": 16, "url": "https://www.youtube.com/watch?v=jvylkdWN33M", "video_id": "video11384", "start time": 28.21, "end time": 45.69, "split": "test", "id": 11384}, {"category": 11, "url": "https://www.youtube.com/watch?v=S-BleT4VntA", "video_id": "video11471", "start time": 70.25, "end time": 84.87, "split": "test", "id": 11471}, {"category": 8, "url": "https://www.youtube.com/watch?v=A81hamnBGcw", "video_id": "video11522", "start time": 19.3, "end time": 40.09, "split": "test", "id": 11522}, {"category": 12, "url": "https://www.youtube.com/watch?v=qBR0FkOH4U4", "video_id": "video11866", "start time": 43.62, "end time": 54.27, "split": "test", "id": 11866}, {"category": 0, "url": "https://www.youtube.com/watch?v=nhBorPm6JjQ", "video_id": "video11613", "start time": 29.49, "end time": 51.27, "split": "test", "id": 11613}, {"category": 9, "url": "https://www.youtube.com/watch?v=i4OAuw6oQ7w", "video_id": "video11678", "start time": 86.95, "end time": 97.68, "split": "test", "id": 11678}, {"category": 6, "url": "https://www.youtube.com/watch?v=DWV-Dk3537M", "video_id": "video11921", "start time": 58.85, "end time": 75.65, "split": "test", "id": 11921}, {"category": 10, "url": "https://www.youtube.com/watch?v=AbldexGclbw", "video_id": "video10744", "start time": 41.05, "end time": 56.69, "split": "test", "id": 10744}, {"category": 16, "url": "https://www.youtube.com/watch?v=nDcRxKimV4M", "video_id": "video10715", "start time": 66.95, "end time": 92.51, "split": "test", "id": 10715}, {"category": 11, "url": "https://www.youtube.com/watch?v=pI9aP4btw4o", "video_id": "video12198", "start time": 147.73, "end time": 159.21, "split": "test", "id": 12198}, {"category": 6, "url": "https://www.youtube.com/watch?v=3pDYY-IvONc", "video_id": "video11528", "start time": 332.61, "end time": 343.39, "split": "test", "id": 11528}, {"category": 8, "url": "https://www.youtube.com/watch?v=KKxN7ggPU_k", "video_id": "video11327", "start time": 138.11, "end time": 150.85, "split": "test", "id": 11327}, {"category": 9, "url": "https://www.youtube.com/watch?v=l35sUu0u8bk", "video_id": "video12816", "start time": 190.37, "end time": 206.61, "split": "test", "id": 12816}, {"category": 3, "url": "https://www.youtube.com/watch?v=icdS6BjnKlA", "video_id": "video12262", "start time": 30.18, "end time": 58.48, "split": "test", "id": 12262}, {"category": 11, "url": "https://www.youtube.com/watch?v=6cVtiS3DTng", "video_id": "video12756", "start time": 4.09, "end time": 21.81, "split": "test", "id": 12756}, {"category": 0, "url": "https://www.youtube.com/watch?v=6KIwX9DOpMM", "video_id": "video12827", "start time": 14.4, "end time": 38.45, "split": "test", "id": 12827}, {"category": 7, "url": "https://www.youtube.com/watch?v=Ehq3ZUEwJvs", "video_id": "video11298", "start time": 9.75, "end time": 26.3, "split": "test", "id": 11298}, {"category": 13, "url": "https://www.youtube.com/watch?v=G3WL6Cz4oKA", "video_id": "video12090", "start time": 230.28, "end time": 241.66, "split": "test", "id": 12090}, {"category": 12, "url": "https://www.youtube.com/watch?v=h_-tARMPqeI", "video_id": "video11294", "start time": 33.65, "end time": 43.89, "split": "test", "id": 11294}, {"category": 16, "url": "https://www.youtube.com/watch?v=bMV-3e3BYQc", "video_id": "video11977", "start time": 113.33, "end time": 127.57, "split": "test", "id": 11977}, {"category": 9, "url": "https://www.youtube.com/watch?v=J8Mcn2_ZyRk", "video_id": "video11444", "start time": 13.26, "end time": 30.41, "split": "test", "id": 11444}, {"category": 5, "url": "https://www.youtube.com/watch?v=KlWpFLfLFBI", "video_id": "video12464", "start time": 235.28, "end time": 246.67, "split": "test", "id": 12464}, {"category": 11, "url": "https://www.youtube.com/watch?v=Fgoa5wI5_IE", "video_id": "video10385", "start time": 174.39, "end time": 201.38, "split": "test", "id": 10385}, {"category": 6, "url": "https://www.youtube.com/watch?v=qjz8qeG1_gE", "video_id": "video11815", "start time": 199.46, "end time": 210.84, "split": "test", "id": 11815}, {"category": 15, "url": "https://www.youtube.com/watch?v=3n4kt-hOpzc", "video_id": "video12489", "start time": 585.23, "end time": 600.35, "split": "test", "id": 12489}, {"category": 16, "url": "https://www.youtube.com/watch?v=l1NQPVcws98", "video_id": "video12053", "start time": 36.01, "end time": 49.81, "split": "test", "id": 12053}, {"category": 3, "url": "https://www.youtube.com/watch?v=pgN0KseR3kw", "video_id": "video10700", "start time": 61.21, "end time": 78.26, "split": "test", "id": 10700}, {"category": 16, "url": "https://www.youtube.com/watch?v=dQzAVO9_QsU", "video_id": "video11863", "start time": 66.11, "end time": 84.06, "split": "test", "id": 11863}, {"category": 9, "url": "https://www.youtube.com/watch?v=giozXkHIWnY", "video_id": "video12365", "start time": 138.89, "end time": 152.03, "split": "test", "id": 12365}, {"category": 4, "url": "https://www.youtube.com/watch?v=4YmoGaIQ-4U", "video_id": "video12609", "start time": 443.01, "end time": 458.73, "split": "test", "id": 12609}, {"category": 16, "url": "https://www.youtube.com/watch?v=nUKSwrR3_3o", "video_id": "video11586", "start time": 16.77, "end time": 44.93, "split": "test", "id": 11586}, {"category": 19, "url": "https://www.youtube.com/watch?v=hxRqKgjD3vY", "video_id": "video10478", "start time": 189.64, "end time": 211.43, "split": "test", "id": 10478}, {"category": 18, "url": "https://www.youtube.com/watch?v=OAQmGthw0f0", "video_id": "video12648", "start time": 107.76, "end time": 121.64, "split": "test", "id": 12648}, {"category": 7, "url": "https://www.youtube.com/watch?v=Psxktpxkc6o", "video_id": "video12574", "start time": 8.41, "end time": 20.73, "split": "test", "id": 12574}, {"category": 6, "url": "https://www.youtube.com/watch?v=5jhYMlfuVNI", "video_id": "video12389", "start time": 11.33, "end time": 37.25, "split": "test", "id": 12389}, {"category": 3, "url": "https://www.youtube.com/watch?v=fxXHsZhXysc", "video_id": "video12724", "start time": 20.5, "end time": 37.12, "split": "test", "id": 12724}, {"category": 5, "url": "https://www.youtube.com/watch?v=OPXvnOeTuYc", "video_id": "video11883", "start time": 77.06, "end time": 87.6, "split": "test", "id": 11883}, {"category": 0, "url": "https://www.youtube.com/watch?v=QeWBS0JBNzQ", "video_id": "video12192", "start time": 267.82, "end time": 284.54, "split": "test", "id": 12192}, {"category": 9, "url": "https://www.youtube.com/watch?v=nka7LZoGdzw", "video_id": "video11709", "start time": 33.38, "end time": 50.26, "split": "test", "id": 11709}, {"category": 18, "url": "https://www.youtube.com/watch?v=17n-9hZX6Xc", "video_id": "video10591", "start time": 190.77, "end time": 216.9, "split": "test", "id": 10591}, {"category": 16, "url": "https://www.youtube.com/watch?v=DYju2MySBDc", "video_id": "video12106", "start time": 64.09, "end time": 82.73, "split": "test", "id": 12106}, {"category": 3, "url": "https://www.youtube.com/watch?v=b8MhLGJg-Os", "video_id": "video10320", "start time": 18.65, "end time": 31.68, "split": "test", "id": 10320}, {"category": 12, "url": "https://www.youtube.com/watch?v=mBEAQs7eQ4w", "video_id": "video11381", "start time": 233.11, "end time": 245.73, "split": "test", "id": 11381}, {"category": 16, "url": "https://www.youtube.com/watch?v=KNOc7iqKzcU", "video_id": "video10473", "start time": 580.26, "end time": 605.22, "split": "test", "id": 10473}, {"category": 18, "url": "https://www.youtube.com/watch?v=5mxu18u0-Mc", "video_id": "video12254", "start time": 8.93, "end time": 24.85, "split": "test", "id": 12254}, {"category": 13, "url": "https://www.youtube.com/watch?v=17dXjh9iY7g", "video_id": "video10802", "start time": 11.86, "end time": 22.44, "split": "test", "id": 10802}, {"category": 16, "url": "https://www.youtube.com/watch?v=kcwbYD0wPpg", "video_id": "video12511", "start time": 366.41, "end time": 381.76, "split": "test", "id": 12511}, {"category": 7, "url": "https://www.youtube.com/watch?v=mA_CRgnHuqg", "video_id": "video11928", "start time": 251.23, "end time": 264.31, "split": "test", "id": 11928}, {"category": 11, "url": "https://www.youtube.com/watch?v=ei627E7_j_o", "video_id": "video11404", "start time": 240.45, "end time": 269.55, "split": "test", "id": 11404}, {"category": 7, "url": "https://www.youtube.com/watch?v=rx5XWwi5EeA", "video_id": "video12600", "start time": 284.93, "end time": 303.72, "split": "test", "id": 12600}, {"category": 3, "url": "https://www.youtube.com/watch?v=aVPU3HSIw5g", "video_id": "video12583", "start time": 42.89, "end time": 66.28, "split": "test", "id": 12583}, {"category": 7, "url": "https://www.youtube.com/watch?v=qS8-q40kVV4", "video_id": "video12721", "start time": 30.96, "end time": 50.63, "split": "test", "id": 12721}, {"category": 18, "url": "https://www.youtube.com/watch?v=r7L7Z1preac", "video_id": "video12214", "start time": 86.3, "end time": 113.69, "split": "test", "id": 12214}, {"category": 5, "url": "https://www.youtube.com/watch?v=O96fE1E-rf8", "video_id": "video11865", "start time": 311.83, "end time": 323.8, "split": "test", "id": 11865}, {"category": 4, "url": "https://www.youtube.com/watch?v=iHWvx7PKijE", "video_id": "video12726", "start time": 17.51, "end time": 38.51, "split": "test", "id": 12726}, {"category": 7, "url": "https://www.youtube.com/watch?v=6_vgZIylOU0", "video_id": "video12684", "start time": 572.17, "end time": 589.73, "split": "test", "id": 12684}, {"category": 0, "url": "https://www.youtube.com/watch?v=D1Xr-JFLxik", "video_id": "video11084", "start time": 20.53, "end time": 44.17, "split": "test", "id": 11084}, {"category": 3, "url": "https://www.youtube.com/watch?v=7YyxKbZvT2w", "video_id": "video11023", "start time": 78.73, "end time": 94.61, "split": "test", "id": 11023}, {"category": 13, "url": "https://www.youtube.com/watch?v=9S6RDUqJ0fY", "video_id": "video11350", "start time": 99.38, "end time": 110.82, "split": "test", "id": 11350}, {"category": 3, "url": "https://www.youtube.com/watch?v=PWVJNZNz2e0", "video_id": "video12518", "start time": 6.34, "end time": 18.63, "split": "test", "id": 12518}, {"category": 16, "url": "https://www.youtube.com/watch?v=0SCMs-xIu2U", "video_id": "video12650", "start time": 113.81, "end time": 136.97, "split": "test", "id": 12650}, {"category": 10, "url": "https://www.youtube.com/watch?v=JJb7hIB0jkg", "video_id": "video11249", "start time": 168.68, "end time": 186.17, "split": "test", "id": 11249}, {"category": 9, "url": "https://www.youtube.com/watch?v=BG04ZkLq3qo", "video_id": "video11253", "start time": 28.14, "end time": 38.42, "split": "test", "id": 11253}, {"category": 16, "url": "https://www.youtube.com/watch?v=bg-mDasZuEM", "video_id": "video11820", "start time": 212.81, "end time": 231.33, "split": "test", "id": 11820}, {"category": 3, "url": "https://www.youtube.com/watch?v=Kt0w0_HYGS8", "video_id": "video12364", "start time": 252.73, "end time": 268.32, "split": "test", "id": 12364}, {"category": 0, "url": "https://www.youtube.com/watch?v=HAfFfqiYLp0", "video_id": "video12767", "start time": 178.96, "end time": 192.17, "split": "test", "id": 12767}, {"category": 13, "url": "https://www.youtube.com/watch?v=RJuln2md-EU", "video_id": "video10455", "start time": 0.0, "end time": 26.95, "split": "test", "id": 10455}, {"category": 8, "url": "https://www.youtube.com/watch?v=oDuPUeGfTNk", "video_id": "video12597", "start time": 70.98, "end time": 81.98, "split": "test", "id": 12597}, {"category": 12, "url": "https://www.youtube.com/watch?v=IgTWICaqVdY", "video_id": "video11740", "start time": 88.04, "end time": 104.55, "split": "test", "id": 11740}, {"category": 15, "url": "https://www.youtube.com/watch?v=S-WLR8F0B50", "video_id": "video12005", "start time": 28.64, "end time": 52.0, "split": "test", "id": 12005}, {"category": 4, "url": "https://www.youtube.com/watch?v=FssTAFvJ-wE", "video_id": "video10601", "start time": 178.69, "end time": 201.05, "split": "test", "id": 10601}, {"category": 13, "url": "https://www.youtube.com/watch?v=9e21vfDJAa0", "video_id": "video10233", "start time": 207.35, "end time": 220.2, "split": "test", "id": 10233}, {"category": 5, "url": "https://www.youtube.com/watch?v=fzKY0ybobWY", "video_id": "video11556", "start time": 34.01, "end time": 45.83, "split": "test", "id": 11556}, {"category": 9, "url": "https://www.youtube.com/watch?v=qqpcBpSsj1A", "video_id": "video10630", "start time": 79.35, "end time": 93.88, "split": "test", "id": 10630}, {"category": 0, "url": "https://www.youtube.com/watch?v=0Q4hcroBFDg", "video_id": "video10558", "start time": 94.73, "end time": 113.73, "split": "test", "id": 10558}, {"category": 18, "url": "https://www.youtube.com/watch?v=QHm9KLOEcvM", "video_id": "video12499", "start time": 74.89, "end time": 90.27, "split": "test", "id": 12499}, {"category": 5, "url": "https://www.youtube.com/watch?v=Q16OZkgSXfM", "video_id": "video12532", "start time": 505.01, "end time": 528.78, "split": "test", "id": 12532}, {"category": 6, "url": "https://www.youtube.com/watch?v=iC7YKqzEcYw", "video_id": "video10463", "start time": 21.94, "end time": 36.88, "split": "test", "id": 10463}, {"category": 13, "url": "https://www.youtube.com/watch?v=kTA0QLuZ2_s", "video_id": "video10779", "start time": 216.72, "end time": 236.12, "split": "test", "id": 10779}, {"category": 9, "url": "https://www.youtube.com/watch?v=eGjPG57ue0M", "video_id": "video12028", "start time": 228.98, "end time": 250.85, "split": "test", "id": 12028}, {"category": 3, "url": "https://www.youtube.com/watch?v=O2vrVwjqktg", "video_id": "video11161", "start time": 117.2, "end time": 145.36, "split": "test", "id": 11161}, {"category": 10, "url": "https://www.youtube.com/watch?v=k57tpew1F_g", "video_id": "video10441", "start time": 55.0, "end time": 75.32, "split": "test", "id": 10441}, {"category": 3, "url": "https://www.youtube.com/watch?v=O4W-atkzU6E", "video_id": "video11889", "start time": 29.48, "end time": 42.75, "split": "test", "id": 11889}, {"category": 10, "url": "https://www.youtube.com/watch?v=089QnOjBatg", "video_id": "video11215", "start time": 42.26, "end time": 54.39, "split": "test", "id": 11215}, {"category": 17, "url": "https://www.youtube.com/watch?v=MvqXPkgka9c", "video_id": "video11187", "start time": 177.66, "end time": 191.21, "split": "test", "id": 11187}, {"category": 16, "url": "https://www.youtube.com/watch?v=EjvY9EDLcZ8", "video_id": "video11964", "start time": 255.07, "end time": 270.88, "split": "test", "id": 11964}, {"category": 16, "url": "https://www.youtube.com/watch?v=h3jkcmcCQ04", "video_id": "video11767", "start time": 212.26, "end time": 225.41, "split": "test", "id": 11767}, {"category": 6, "url": "https://www.youtube.com/watch?v=jjVCCFwfHF8", "video_id": "video11401", "start time": 518.47, "end time": 546.39, "split": "test", "id": 11401}, {"category": 4, "url": "https://www.youtube.com/watch?v=S-75FihV10w", "video_id": "video12226", "start time": 195.13, "end time": 213.05, "split": "test", "id": 12226}, {"category": 2, "url": "https://www.youtube.com/watch?v=Qp11uN1syag", "video_id": "video10690", "start time": 343.49, "end time": 365.85, "split": "test", "id": 10690}, {"category": 16, "url": "https://www.youtube.com/watch?v=kn1c0rzVkRI", "video_id": "video12452", "start time": 8.65, "end time": 30.53, "split": "test", "id": 12452}, {"category": 16, "url": "https://www.youtube.com/watch?v=l0gmOesRvgk", "video_id": "video12245", "start time": 142.13, "end time": 155.85, "split": "test", "id": 12245}, {"category": 18, "url": "https://www.youtube.com/watch?v=mBKxUmhpeOo", "video_id": "video12958", "start time": 4.77, "end time": 16.45, "split": "test", "id": 12958}, {"category": 7, "url": "https://www.youtube.com/watch?v=KnRwfEflKxg", "video_id": "video11222", "start time": 21.65, "end time": 51.14, "split": "test", "id": 11222}, {"category": 9, "url": "https://www.youtube.com/watch?v=DmALmLjWIN4", "video_id": "video10017", "start time": 117.3, "end time": 145.83, "split": "test", "id": 10017}, {"category": 9, "url": "https://www.youtube.com/watch?v=s26DIJnQUH0", "video_id": "video11080", "start time": 776.24, "end time": 793.01, "split": "test", "id": 11080}, {"category": 12, "url": "https://www.youtube.com/watch?v=qt2u8RH47lk", "video_id": "video12194", "start time": 9.82, "end time": 30.78, "split": "test", "id": 12194}, {"category": 13, "url": "https://www.youtube.com/watch?v=9Xx5JxzmkUc", "video_id": "video11861", "start time": 143.32, "end time": 159.71, "split": "test", "id": 11861}, {"category": 8, "url": "https://www.youtube.com/watch?v=KwD1rwkrSK4", "video_id": "video12698", "start time": 13.93, "end time": 40.25, "split": "test", "id": 12698}, {"category": 11, "url": "https://www.youtube.com/watch?v=iaMpGRJoMFM", "video_id": "video12530", "start time": 79.93, "end time": 99.33, "split": "test", "id": 12530}, {"category": 6, "url": "https://www.youtube.com/watch?v=MTOkOCKjLxc", "video_id": "video11579", "start time": 185.03, "end time": 195.14, "split": "test", "id": 11579}, {"category": 17, "url": "https://www.youtube.com/watch?v=RrRNPstq_ns", "video_id": "video10259", "start time": 40.82, "end time": 54.13, "split": "test", "id": 10259}, {"category": 1, "url": "https://www.youtube.com/watch?v=ACm8LZrUAmU", "video_id": "video10120", "start time": 15.66, "end time": 44.96, "split": "test", "id": 10120}, {"category": 16, "url": "https://www.youtube.com/watch?v=rgV2dTnG488", "video_id": "video10464", "start time": 205.72, "end time": 219.13, "split": "test", "id": 10464}, {"category": 13, "url": "https://www.youtube.com/watch?v=nq4yEPcdf4U", "video_id": "video10850", "start time": 105.45, "end time": 120.67, "split": "test", "id": 10850}, {"category": 3, "url": "https://www.youtube.com/watch?v=-dm-ds5rRaM", "video_id": "video11875", "start time": 71.62, "end time": 85.67, "split": "test", "id": 11875}, {"category": 12, "url": "https://www.youtube.com/watch?v=65MRaMgjGQA", "video_id": "video11604", "start time": 545.57, "end time": 557.53, "split": "test", "id": 11604}, {"category": 7, "url": "https://www.youtube.com/watch?v=NZWf1iWEMQc", "video_id": "video12636", "start time": 25.53, "end time": 52.6, "split": "test", "id": 12636}, {"category": 16, "url": "https://www.youtube.com/watch?v=aPde98NbJ0s", "video_id": "video10567", "start time": 237.68, "end time": 261.94, "split": "test", "id": 10567}, {"category": 17, "url": "https://www.youtube.com/watch?v=BDVg0u2YQ7Q", "video_id": "video11491", "start time": 16.7, "end time": 31.98, "split": "test", "id": 11491}, {"category": 12, "url": "https://www.youtube.com/watch?v=DovunOxlY1k", "video_id": "video10031", "start time": 5.84, "end time": 25.67, "split": "test", "id": 10031}, {"category": 12, "url": "https://www.youtube.com/watch?v=AKubEB4uzUg", "video_id": "video11712", "start time": 71.49, "end time": 82.43, "split": "test", "id": 11712}, {"category": 5, "url": "https://www.youtube.com/watch?v=QAkW_i0bDpQ", "video_id": "video10102", "start time": 114.5, "end time": 127.88, "split": "test", "id": 10102}, {"category": 16, "url": "https://www.youtube.com/watch?v=rbkSBkiMVZw", "video_id": "video11067", "start time": 3.38, "end time": 27.95, "split": "test", "id": 11067}, {"category": 13, "url": "https://www.youtube.com/watch?v=b3WN-igvTUg", "video_id": "video12675", "start time": 0.0, "end time": 22.31, "split": "test", "id": 12675}, {"category": 4, "url": "https://www.youtube.com/watch?v=0ENGP5KS8ww", "video_id": "video11966", "start time": 58.65, "end time": 81.91, "split": "test", "id": 11966}, {"category": 2, "url": "https://www.youtube.com/watch?v=OkLeaEX82TE", "video_id": "video10804", "start time": 272.28, "end time": 282.45, "split": "test", "id": 10804}, {"category": 12, "url": "https://www.youtube.com/watch?v=pAsxflfMXtg", "video_id": "video12565", "start time": 189.21, "end time": 213.95, "split": "test", "id": 12565}, {"category": 2, "url": "https://www.youtube.com/watch?v=F3XPpc8qRsw", "video_id": "video11429", "start time": 40.97, "end time": 52.25, "split": "test", "id": 11429}, {"category": 0, "url": "https://www.youtube.com/watch?v=6M6samPEMpM", "video_id": "video11923", "start time": 210.76, "end time": 225.61, "split": "test", "id": 11923}, {"category": 3, "url": "https://www.youtube.com/watch?v=opYj0XICHvQ", "video_id": "video11059", "start time": 24.1, "end time": 41.49, "split": "test", "id": 11059}, {"category": 0, "url": "https://www.youtube.com/watch?v=FHp2KgyQUFk", "video_id": "video11908", "start time": 1.42, "end time": 12.85, "split": "test", "id": 11908}, {"category": 10, "url": "https://www.youtube.com/watch?v=0icUprLYFcU", "video_id": "video11412", "start time": 13.13, "end time": 27.67, "split": "test", "id": 11412}, {"category": 18, "url": "https://www.youtube.com/watch?v=duz1bhuw6h8", "video_id": "video10288", "start time": 15.53, "end time": 37.73, "split": "test", "id": 10288}, {"category": 12, "url": "https://www.youtube.com/watch?v=-4O3lWpr06M", "video_id": "video12176", "start time": 1063.41, "end time": 1091.7, "split": "test", "id": 12176}, {"category": 17, "url": "https://www.youtube.com/watch?v=9GIJii4uBhk", "video_id": "video12475", "start time": 700.58, "end time": 725.94, "split": "test", "id": 12475}, {"category": 13, "url": "https://www.youtube.com/watch?v=p336IIjZCl8", "video_id": "video11799", "start time": 111.48, "end time": 136.51, "split": "test", "id": 11799}, {"category": 10, "url": "https://www.youtube.com/watch?v=KkcitRA_61M", "video_id": "video11362", "start time": 8.62, "end time": 19.53, "split": "test", "id": 11362}, {"category": 16, "url": "https://www.youtube.com/watch?v=5oy9qWkDXkk", "video_id": "video11288", "start time": 9.01, "end time": 36.13, "split": "test", "id": 11288}, {"category": 3, "url": "https://www.youtube.com/watch?v=8zQ0ykIGAlI", "video_id": "video12340", "start time": 182.89, "end time": 194.29, "split": "test", "id": 12340}, {"category": 11, "url": "https://www.youtube.com/watch?v=0FzNhMHQEhE", "video_id": "video11914", "start time": 212.89, "end time": 235.08, "split": "test", "id": 11914}, {"category": 16, "url": "https://www.youtube.com/watch?v=egt4UMjDGRM", "video_id": "video11933", "start time": 100.68, "end time": 110.79, "split": "test", "id": 11933}, {"category": 12, "url": "https://www.youtube.com/watch?v=52syziq1yEA", "video_id": "video12441", "start time": 362.69, "end time": 378.85, "split": "test", "id": 12441}, {"category": 17, "url": "https://www.youtube.com/watch?v=45WXFbSyGm4", "video_id": "video12252", "start time": 77.22, "end time": 100.88, "split": "test", "id": 12252}, {"category": 9, "url": "https://www.youtube.com/watch?v=7e7R3y-qwZ0", "video_id": "video12316", "start time": 137.33, "end time": 149.97, "split": "test", "id": 12316}, {"category": 7, "url": "https://www.youtube.com/watch?v=b6W4uOvL8wk", "video_id": "video12934", "start time": 48.39, "end time": 64.07, "split": "test", "id": 12934}, {"category": 2, "url": "https://www.youtube.com/watch?v=rh0RpeRBN-0", "video_id": "video12423", "start time": 128.89, "end time": 155.57, "split": "test", "id": 12423}, {"category": 9, "url": "https://www.youtube.com/watch?v=2leA_tEEdk8", "video_id": "video12474", "start time": 116.51, "end time": 135.95, "split": "test", "id": 12474}, {"category": 3, "url": "https://www.youtube.com/watch?v=ScOzMeAwRmg", "video_id": "video12908", "start time": 19.48, "end time": 31.58, "split": "test", "id": 12908}, {"category": 18, "url": "https://www.youtube.com/watch?v=ny_rIArdodc", "video_id": "video12080", "start time": 15.57, "end time": 41.17, "split": "test", "id": 12080}, {"category": 13, "url": "https://www.youtube.com/watch?v=6RJBIo6RUXE", "video_id": "video12084", "start time": 7.28, "end time": 25.98, "split": "test", "id": 12084}, {"category": 3, "url": "https://www.youtube.com/watch?v=MfQqN8JspVg", "video_id": "video11266", "start time": 72.68, "end time": 99.11, "split": "test", "id": 11266}, {"category": 13, "url": "https://www.youtube.com/watch?v=4MOdS_XGZOk", "video_id": "video10398", "start time": 6.08, "end time": 27.85, "split": "test", "id": 10398}, {"category": 16, "url": "https://www.youtube.com/watch?v=17cwX59Rt1I", "video_id": "video10440", "start time": 281.46, "end time": 305.69, "split": "test", "id": 10440}, {"category": 18, "url": "https://www.youtube.com/watch?v=roQoTjypgLk", "video_id": "video10343", "start time": 18.4, "end time": 29.51, "split": "test", "id": 10343}, {"category": 19, "url": "https://www.youtube.com/watch?v=pahEqt8npI8", "video_id": "video10310", "start time": 0.0, "end time": 20.05, "split": "test", "id": 10310}, {"category": 9, "url": "https://www.youtube.com/watch?v=J5abgZApwGA", "video_id": "video12614", "start time": 1277.82, "end time": 1300.01, "split": "test", "id": 12614}, {"category": 4, "url": "https://www.youtube.com/watch?v=aDN45TFM5ws", "video_id": "video10754", "start time": 308.16, "end time": 318.53, "split": "test", "id": 10754}, {"category": 9, "url": "https://www.youtube.com/watch?v=EiK-_w8yBvw", "video_id": "video12563", "start time": 115.46, "end time": 128.51, "split": "test", "id": 12563}, {"category": 18, "url": "https://www.youtube.com/watch?v=3UeqVFwVg80", "video_id": "video12678", "start time": 418.76, "end time": 433.4, "split": "test", "id": 12678}, {"category": 7, "url": "https://www.youtube.com/watch?v=FaWOCbUfVCk", "video_id": "video12993", "start time": 18.6, "end time": 29.58, "split": "test", "id": 12993}, {"category": 18, "url": "https://www.youtube.com/watch?v=seteoAQf2VM", "video_id": "video12182", "start time": 0.0, "end time": 28.68, "split": "test", "id": 12182}, {"category": 16, "url": "https://www.youtube.com/watch?v=kDfW-B6Iv2k", "video_id": "video12686", "start time": 544.57, "end time": 568.81, "split": "test", "id": 12686}, {"category": 18, "url": "https://www.youtube.com/watch?v=ft8E1JYS6fk", "video_id": "video12549", "start time": 89.77, "end time": 104.4, "split": "test", "id": 12549}, {"category": 0, "url": "https://www.youtube.com/watch?v=2RlA3pvjEE8", "video_id": "video10319", "start time": 81.3, "end time": 92.01, "split": "test", "id": 10319}, {"category": 13, "url": "https://www.youtube.com/watch?v=17dXjh9iY7g", "video_id": "video12679", "start time": 45.26, "end time": 61.71, "split": "test", "id": 12679}, {"category": 18, "url": "https://www.youtube.com/watch?v=oy-pk3_x2S0", "video_id": "video12304", "start time": 68.28, "end time": 96.35, "split": "test", "id": 12304}, {"category": 0, "url": "https://www.youtube.com/watch?v=PCo9v5sCaRQ", "video_id": "video10843", "start time": 35.15, "end time": 45.58, "split": "test", "id": 10843}, {"category": 13, "url": "https://www.youtube.com/watch?v=B7n7M_9OVTg", "video_id": "video10051", "start time": 0.0, "end time": 19.1, "split": "test", "id": 10051}, {"category": 15, "url": "https://www.youtube.com/watch?v=9hzd_K5QdXQ", "video_id": "video12376", "start time": 21.05, "end time": 32.55, "split": "test", "id": 12376}, {"category": 4, "url": "https://www.youtube.com/watch?v=532fdaBmPSM", "video_id": "video11940", "start time": 43.41, "end time": 59.08, "split": "test", "id": 11940}, {"category": 5, "url": "https://www.youtube.com/watch?v=8Nn5uqE3C9w", "video_id": "video12196", "start time": 0.0, "end time": 15.73, "split": "test", "id": 12196}, {"category": 14, "url": "https://www.youtube.com/watch?v=3cDit9ef3MU", "video_id": "video12591", "start time": 213.69, "end time": 225.21, "split": "test", "id": 12591}, {"category": 18, "url": "https://www.youtube.com/watch?v=8a3wqHeJEig", "video_id": "video10763", "start time": 191.0, "end time": 201.65, "split": "test", "id": 10763}, {"category": 17, "url": "https://www.youtube.com/watch?v=aAQxVYWtbXM", "video_id": "video11621", "start time": 146.53, "end time": 159.65, "split": "test", "id": 11621}, {"category": 7, "url": "https://www.youtube.com/watch?v=nHaA0DQRlks", "video_id": "video11469", "start time": 65.21, "end time": 80.29, "split": "test", "id": 11469}, {"category": 7, "url": "https://www.youtube.com/watch?v=P2efxouZZB0", "video_id": "video11112", "start time": 140.21, "end time": 150.25, "split": "test", "id": 11112}, {"category": 9, "url": "https://www.youtube.com/watch?v=1cNgwOpve58", "video_id": "video11792", "start time": 155.41, "end time": 182.88, "split": "test", "id": 11792}, {"category": 3, "url": "https://www.youtube.com/watch?v=KsJX8lZDfo0", "video_id": "video12882", "start time": 633.15, "end time": 646.09, "split": "test", "id": 12882}, {"category": 7, "url": "https://www.youtube.com/watch?v=J3hrMbaspT4", "video_id": "video12129", "start time": 124.97, "end time": 150.96, "split": "test", "id": 12129}, {"category": 11, "url": "https://www.youtube.com/watch?v=RxApqqc0UDg", "video_id": "video12777", "start time": 194.88, "end time": 218.81, "split": "test", "id": 12777}, {"category": 7, "url": "https://www.youtube.com/watch?v=67lsl-tL9N8", "video_id": "video12796", "start time": 163.24, "end time": 175.79, "split": "test", "id": 12796}, {"category": 11, "url": "https://www.youtube.com/watch?v=IiU6E0BXSiU", "video_id": "video10367", "start time": 123.14, "end time": 134.85, "split": "test", "id": 10367}, {"category": 9, "url": "https://www.youtube.com/watch?v=cL4s44v2KuY", "video_id": "video10810", "start time": 267.98, "end time": 290.5, "split": "test", "id": 10810}, {"category": 7, "url": "https://www.youtube.com/watch?v=1csr0dxalpI", "video_id": "video12862", "start time": 0.0, "end time": 19.98, "split": "test", "id": 12862}, {"category": 17, "url": "https://www.youtube.com/watch?v=1BV0KqmJJVE", "video_id": "video10869", "start time": 28.71, "end time": 43.86, "split": "test", "id": 10869}, {"category": 3, "url": "https://www.youtube.com/watch?v=2GbuBF0jWyA", "video_id": "video11903", "start time": 157.6, "end time": 167.65, "split": "test", "id": 11903}, {"category": 18, "url": "https://www.youtube.com/watch?v=8GBH4IhAeB0", "video_id": "video11228", "start time": 11.1, "end time": 41.05, "split": "test", "id": 11228}, {"category": 10, "url": "https://www.youtube.com/watch?v=nEievEOuLx0", "video_id": "video12027", "start time": 238.22, "end time": 252.67, "split": "test", "id": 12027}, {"category": 0, "url": "https://www.youtube.com/watch?v=QPTXUfs8Nng", "video_id": "video12722", "start time": 121.5, "end time": 138.39, "split": "test", "id": 12722}, {"category": 6, "url": "https://www.youtube.com/watch?v=0DiYuXuQUr8", "video_id": "video10246", "start time": 178.53, "end time": 206.29, "split": "test", "id": 10246}, {"category": 4, "url": "https://www.youtube.com/watch?v=72_pHdcoogI", "video_id": "video11088", "start time": 17.13, "end time": 29.57, "split": "test", "id": 11088}, {"category": 17, "url": "https://www.youtube.com/watch?v=RgtdGbpoKpA", "video_id": "video12727", "start time": 80.65, "end time": 94.53, "split": "test", "id": 12727}, {"category": 13, "url": "https://www.youtube.com/watch?v=hLPV-n127aE", "video_id": "video10507", "start time": 1215.26, "end time": 1240.15, "split": "test", "id": 10507}, {"category": 17, "url": "https://www.youtube.com/watch?v=Q2rLPq8oYCc", "video_id": "video12701", "start time": 291.67, "end time": 303.18, "split": "test", "id": 12701}, {"category": 9, "url": "https://www.youtube.com/watch?v=3iD8cRuHmRc", "video_id": "video12927", "start time": 18.93, "end time": 42.29, "split": "test", "id": 12927}, {"category": 4, "url": "https://www.youtube.com/watch?v=SE8zW4vI2Dk", "video_id": "video11519", "start time": 0.0, "end time": 18.31, "split": "test", "id": 11519}, {"category": 16, "url": "https://www.youtube.com/watch?v=I-LoJUkhK7A", "video_id": "video10194", "start time": 167.75, "end time": 191.45, "split": "test", "id": 10194}, {"category": 0, "url": "https://www.youtube.com/watch?v=nEDPgAq66X0", "video_id": "video12031", "start time": 59.14, "end time": 74.19, "split": "test", "id": 12031}, {"category": 6, "url": "https://www.youtube.com/watch?v=7Yc-RQhzAug", "video_id": "video10777", "start time": 93.65, "end time": 119.48, "split": "test", "id": 10777}, {"category": 9, "url": "https://www.youtube.com/watch?v=7-IW6lVDO6Y", "video_id": "video11951", "start time": 3.72, "end time": 15.94, "split": "test", "id": 11951}, {"category": 13, "url": "https://www.youtube.com/watch?v=kKQkFABH3bQ", "video_id": "video11510", "start time": 51.19, "end time": 69.5, "split": "test", "id": 11510}, {"category": 12, "url": "https://www.youtube.com/watch?v=k8YtroKjVxo", "video_id": "video10531", "start time": 144.73, "end time": 173.09, "split": "test", "id": 10531}, {"category": 19, "url": "https://www.youtube.com/watch?v=cl0IlD4qLUM", "video_id": "video11226", "start time": 87.65, "end time": 98.73, "split": "test", "id": 11226}, {"category": 5, "url": "https://www.youtube.com/watch?v=MS4jk5kavy4", "video_id": "video12580", "start time": 0.0, "end time": 20.4, "split": "test", "id": 12580}, {"category": 1, "url": "https://www.youtube.com/watch?v=PA7z9rLsrto", "video_id": "video12644", "start time": 223.97, "end time": 238.95, "split": "test", "id": 12644}, {"category": 6, "url": "https://www.youtube.com/watch?v=pj8yq_urL5c", "video_id": "video12259", "start time": 197.73, "end time": 213.29, "split": "test", "id": 12259}, {"category": 4, "url": "https://www.youtube.com/watch?v=PmkRwJ2f8z0", "video_id": "video11988", "start time": 53.48, "end time": 68.78, "split": "test", "id": 11988}, {"category": 3, "url": "https://www.youtube.com/watch?v=dtfuJfqJtEA", "video_id": "video11727", "start time": 92.84, "end time": 117.06, "split": "test", "id": 11727}, {"category": 19, "url": "https://www.youtube.com/watch?v=aAYw69hU2Yc", "video_id": "video10952", "start time": 8.39, "end time": 19.53, "split": "test", "id": 10952}, {"category": 16, "url": "https://www.youtube.com/watch?v=j3hUACZbOvs", "video_id": "video11763", "start time": 168.81, "end time": 180.93, "split": "test", "id": 11763}, {"category": 9, "url": "https://www.youtube.com/watch?v=OL_eIZjiLUk", "video_id": "video11512", "start time": 132.85, "end time": 144.85, "split": "test", "id": 11512}, {"category": 9, "url": "https://www.youtube.com/watch?v=qoi-87Yi4gw", "video_id": "video11224", "start time": 53.37, "end time": 73.02, "split": "test", "id": 11224}, {"category": 7, "url": "https://www.youtube.com/watch?v=4Y1iErgBrDQ", "video_id": "video11092", "start time": 35.32, "end time": 45.99, "split": "test", "id": 11092}, {"category": 11, "url": "https://www.youtube.com/watch?v=O5ZVwO0dul8", "video_id": "video11814", "start time": 118.58, "end time": 136.05, "split": "test", "id": 11814}, {"category": 15, "url": "https://www.youtube.com/watch?v=41jh2hnUZ8g", "video_id": "video12655", "start time": 67.65, "end time": 80.41, "split": "test", "id": 12655}, {"category": 12, "url": "https://www.youtube.com/watch?v=Q9zA-rCOFUc", "video_id": "video10929", "start time": 70.78, "end time": 87.37, "split": "test", "id": 10929}, {"category": 19, "url": "https://www.youtube.com/watch?v=9b9xFeQrPrs", "video_id": "video10728", "start time": 600.93, "end time": 614.29, "split": "test", "id": 10728}, {"category": 2, "url": "https://www.youtube.com/watch?v=8QZC2bzjGqk", "video_id": "video11452", "start time": 86.65, "end time": 114.65, "split": "test", "id": 11452}, {"category": 6, "url": "https://www.youtube.com/watch?v=3XCneDdt2rU", "video_id": "video12612", "start time": 27.64, "end time": 38.65, "split": "test", "id": 12612}, {"category": 9, "url": "https://www.youtube.com/watch?v=abA7rhxJ-q0", "video_id": "video10466", "start time": 622.84, "end time": 647.53, "split": "test", "id": 10466}, {"category": 3, "url": "https://www.youtube.com/watch?v=Kb1HgqrtwuM", "video_id": "video11617", "start time": 61.41, "end time": 81.9, "split": "test", "id": 11617}, {"category": 6, "url": "https://www.youtube.com/watch?v=9W35VzNaw-Y", "video_id": "video10618", "start time": 386.18, "end time": 406.95, "split": "test", "id": 10618}, {"category": 7, "url": "https://www.youtube.com/watch?v=pDT-unOhrOA", "video_id": "video10036", "start time": 176.02, "end time": 187.84, "split": "test", "id": 10036}, {"category": 15, "url": "https://www.youtube.com/watch?v=K4iBGI4O2Ck", "video_id": "video12510", "start time": 191.66, "end time": 205.92, "split": "test", "id": 12510}, {"category": 10, "url": "https://www.youtube.com/watch?v=KlBb81zaeak", "video_id": "video12543", "start time": 24.94, "end time": 47.26, "split": "test", "id": 12543}, {"category": 12, "url": "https://www.youtube.com/watch?v=2KjENariv_w", "video_id": "video10483", "start time": 29.24, "end time": 40.82, "split": "test", "id": 10483}, {"category": 10, "url": "https://www.youtube.com/watch?v=-La6xy5jV88", "video_id": "video11545", "start time": 212.26, "end time": 231.01, "split": "test", "id": 11545}, {"category": 17, "url": "https://www.youtube.com/watch?v=s9r-CxnCXkg", "video_id": "video11559", "start time": 49.37, "end time": 59.45, "split": "test", "id": 11559}, {"category": 17, "url": "https://www.youtube.com/watch?v=jBPYopcoeqs", "video_id": "video10235", "start time": 24.47, "end time": 37.65, "split": "test", "id": 10235}, {"category": 19, "url": "https://www.youtube.com/watch?v=Hq2SlCja3zo", "video_id": "video12024", "start time": 270.85, "end time": 281.3, "split": "test", "id": 12024}, {"category": 6, "url": "https://www.youtube.com/watch?v=3kEpZWGgJks", "video_id": "video10954", "start time": 96.18, "end time": 125.24, "split": "test", "id": 10954}, {"category": 2, "url": "https://www.youtube.com/watch?v=699vFOtavnw", "video_id": "video10903", "start time": 220.47, "end time": 246.03, "split": "test", "id": 10903}, {"category": 3, "url": "https://www.youtube.com/watch?v=4ffiy1IQWuI", "video_id": "video12118", "start time": 88.5, "end time": 110.79, "split": "test", "id": 12118}, {"category": 16, "url": "https://www.youtube.com/watch?v=9VZc6EpFKRc", "video_id": "video11274", "start time": 301.55, "end time": 316.01, "split": "test", "id": 11274}, {"category": 7, "url": "https://www.youtube.com/watch?v=MzYx0XHTOYc", "video_id": "video10799", "start time": 766.71, "end time": 777.62, "split": "test", "id": 10799}, {"category": 7, "url": "https://www.youtube.com/watch?v=73JG2pKKtpA", "video_id": "video12421", "start time": 60.71, "end time": 70.88, "split": "test", "id": 12421}, {"category": 9, "url": "https://www.youtube.com/watch?v=HdvJnYnRF64", "video_id": "video11532", "start time": 143.09, "end time": 153.93, "split": "test", "id": 11532}, {"category": 0, "url": "https://www.youtube.com/watch?v=nyQEepJ0VKg", "video_id": "video11770", "start time": 34.69, "end time": 44.97, "split": "test", "id": 11770}, {"category": 18, "url": "https://www.youtube.com/watch?v=nB5wGATDbjY", "video_id": "video11938", "start time": 134.81, "end time": 154.55, "split": "test", "id": 11938}, {"category": 18, "url": "https://www.youtube.com/watch?v=q57UbjigjIU", "video_id": "video10094", "start time": 291.05, "end time": 316.29, "split": "test", "id": 10094}, {"category": 7, "url": "https://www.youtube.com/watch?v=64K5q8wFqAY", "video_id": "video10156", "start time": 442.42, "end time": 456.7, "split": "test", "id": 10156}, {"category": 9, "url": "https://www.youtube.com/watch?v=9Dxy1vwn9dw", "video_id": "video11890", "start time": 13.97, "end time": 43.77, "split": "test", "id": 11890}, {"category": 0, "url": "https://www.youtube.com/watch?v=72SULg7Xy2Q", "video_id": "video10917", "start time": 71.41, "end time": 83.09, "split": "test", "id": 10917}, {"category": 17, "url": "https://www.youtube.com/watch?v=9ir3fkYxpZ0", "video_id": "video11838", "start time": 132.05, "end time": 152.2, "split": "test", "id": 11838}, {"category": 5, "url": "https://www.youtube.com/watch?v=MRYzW3BSj0I", "video_id": "video12899", "start time": 391.06, "end time": 402.7, "split": "test", "id": 12899}, {"category": 4, "url": "https://www.youtube.com/watch?v=fgZCcMZIm5g", "video_id": "video12232", "start time": 10.62, "end time": 34.08, "split": "test", "id": 12232}, {"category": 18, "url": "https://www.youtube.com/watch?v=42UvjJNmglY", "video_id": "video11800", "start time": 43.99, "end time": 58.74, "split": "test", "id": 11800}, {"category": 15, "url": "https://www.youtube.com/watch?v=qETOgeWYtDY", "video_id": "video10134", "start time": 88.22, "end time": 98.77, "split": "test", "id": 10134}, {"category": 16, "url": "https://www.youtube.com/watch?v=gBQvgTUy2x4", "video_id": "video12234", "start time": 12.29, "end time": 26.67, "split": "test", "id": 12234}, {"category": 3, "url": "https://www.youtube.com/watch?v=S7X5E-rtjjA", "video_id": "video11860", "start time": 56.67, "end time": 69.02, "split": "test", "id": 11860}, {"category": 7, "url": "https://www.youtube.com/watch?v=b292sv45jqg", "video_id": "video11642", "start time": 29.91, "end time": 51.73, "split": "test", "id": 11642}, {"category": 2, "url": "https://www.youtube.com/watch?v=POcbditRBho", "video_id": "video12907", "start time": 161.41, "end time": 174.05, "split": "test", "id": 12907}, {"category": 14, "url": "https://www.youtube.com/watch?v=8wymteUkngI", "video_id": "video10926", "start time": 0.0, "end time": 17.45, "split": "test", "id": 10926}, {"category": 17, "url": "https://www.youtube.com/watch?v=DFrELUVdnuA", "video_id": "video12468", "start time": 152.27, "end time": 168.32, "split": "test", "id": 12468}, {"category": 3, "url": "https://www.youtube.com/watch?v=qcN36qNGmEg", "video_id": "video10992", "start time": 34.72, "end time": 49.4, "split": "test", "id": 10992}, {"category": 13, "url": "https://www.youtube.com/watch?v=OFjlF7zQF_g", "video_id": "video12405", "start time": 43.3, "end time": 53.63, "split": "test", "id": 12405}, {"category": 4, "url": "https://www.youtube.com/watch?v=SE8zW4vI2Dk", "video_id": "video11855", "start time": 62.05, "end time": 86.15, "split": "test", "id": 11855}, {"category": 16, "url": "https://www.youtube.com/watch?v=PASXZQvd6EE", "video_id": "video11688", "start time": 82.6, "end time": 100.38, "split": "test", "id": 11688}, {"category": 4, "url": "https://www.youtube.com/watch?v=Pgw5wDID1q8", "video_id": "video11961", "start time": 29.05, "end time": 49.71, "split": "test", "id": 11961}, {"category": 18, "url": "https://www.youtube.com/watch?v=Q9RjqCo8JJQ", "video_id": "video12313", "start time": 115.85, "end time": 132.91, "split": "test", "id": 12313}, {"category": 7, "url": "https://www.youtube.com/watch?v=7MqPkWZxmMQ", "video_id": "video10427", "start time": 10.72, "end time": 28.64, "split": "test", "id": 10427}, {"category": 4, "url": "https://www.youtube.com/watch?v=-yRTdjMjsyU", "video_id": "video12219", "start time": 34.85, "end time": 52.75, "split": "test", "id": 12219}, {"category": 17, "url": "https://www.youtube.com/watch?v=nlMctUp34Ms", "video_id": "video12825", "start time": 98.01, "end time": 121.17, "split": "test", "id": 12825}, {"category": 18, "url": "https://www.youtube.com/watch?v=I5EBKoo6pXE", "video_id": "video11648", "start time": 66.59, "end time": 89.05, "split": "test", "id": 11648}, {"category": 3, "url": "https://www.youtube.com/watch?v=jl_ihY3WdlQ", "video_id": "video12601", "start time": 128.26, "end time": 156.7, "split": "test", "id": 12601}, {"category": 4, "url": "https://www.youtube.com/watch?v=6EzybCFxHUw", "video_id": "video10890", "start time": 57.85, "end time": 74.73, "split": "test", "id": 10890}, {"category": 1, "url": "https://www.youtube.com/watch?v=N-3d1e29-vg", "video_id": "video12602", "start time": 0.0, "end time": 26.91, "split": "test", "id": 12602}, {"category": 4, "url": "https://www.youtube.com/watch?v=hgLFntzJp1o", "video_id": "video10085", "start time": 53.05, "end time": 71.13, "split": "test", "id": 10085}, {"category": 17, "url": "https://www.youtube.com/watch?v=hkPPn5ycsnc", "video_id": "video12051", "start time": 418.2, "end time": 432.81, "split": "test", "id": 12051}, {"category": 12, "url": "https://www.youtube.com/watch?v=RugwoWhMDyw", "video_id": "video11502", "start time": 193.41, "end time": 218.0, "split": "test", "id": 11502}, {"category": 2, "url": "https://www.youtube.com/watch?v=RFe6PCQiAWA", "video_id": "video12153", "start time": 118.67, "end time": 134.11, "split": "test", "id": 12153}, {"category": 1, "url": "https://www.youtube.com/watch?v=rjG0TiXF2EE", "video_id": "video12507", "start time": 233.18, "end time": 246.88, "split": "test", "id": 12507}, {"category": 15, "url": "https://www.youtube.com/watch?v=7DsCtm027nw", "video_id": "video11734", "start time": 2.91, "end time": 13.31, "split": "test", "id": 11734}, {"category": 17, "url": "https://www.youtube.com/watch?v=mzQDzYXDD08", "video_id": "video10705", "start time": 29.61, "end time": 55.07, "split": "test", "id": 10705}, {"category": 12, "url": "https://www.youtube.com/watch?v=1990Q6zduXI", "video_id": "video12338", "start time": 282.53, "end time": 307.73, "split": "test", "id": 12338}, {"category": 12, "url": "https://www.youtube.com/watch?v=ReUbbY13dvw", "video_id": "video12132", "start time": 4.89, "end time": 16.16, "split": "test", "id": 12132}, {"category": 13, "url": "https://www.youtube.com/watch?v=qrfcTxLP7lw", "video_id": "video11631", "start time": 5.05, "end time": 32.71, "split": "test", "id": 11631}, {"category": 9, "url": "https://www.youtube.com/watch?v=bf7q8lWEd-o", "video_id": "video12428", "start time": 371.33, "end time": 383.29, "split": "test", "id": 12428}, {"category": 12, "url": "https://www.youtube.com/watch?v=MJPDg78yRZ8", "video_id": "video11824", "start time": 79.19, "end time": 94.17, "split": "test", "id": 11824}, {"category": 13, "url": "https://www.youtube.com/watch?v=E6tyBlx-Y-4", "video_id": "video12189", "start time": 19.01, "end time": 29.35, "split": "test", "id": 12189}, {"category": 13, "url": "https://www.youtube.com/watch?v=BHDjlPwwnkE", "video_id": "video10360", "start time": 302.81, "end time": 318.16, "split": "test", "id": 10360}, {"category": 1, "url": "https://www.youtube.com/watch?v=7qJAPLypDnE", "video_id": "video12988", "start time": 68.02, "end time": 87.64, "split": "test", "id": 12988}, {"category": 16, "url": "https://www.youtube.com/watch?v=kecU9qHaWic", "video_id": "video12731", "start time": 123.17, "end time": 152.07, "split": "test", "id": 12731}, {"category": 8, "url": "https://www.youtube.com/watch?v=1qPX8eXjedQ", "video_id": "video12490", "start time": 74.12, "end time": 90.34, "split": "test", "id": 12490}, {"category": 7, "url": "https://www.youtube.com/watch?v=4ed8uCj-loY", "video_id": "video12689", "start time": 44.36, "end time": 60.91, "split": "test", "id": 12689}, {"category": 7, "url": "https://www.youtube.com/watch?v=7aYqxCP6tX8", "video_id": "video12764", "start time": 178.93, "end time": 189.99, "split": "test", "id": 12764}, {"category": 16, "url": "https://www.youtube.com/watch?v=Kn0thTFoAz4", "video_id": "video12787", "start time": 69.05, "end time": 89.45, "split": "test", "id": 12787}, {"category": 16, "url": "https://www.youtube.com/watch?v=HR49obNsmfI", "video_id": "video12769", "start time": 363.38, "end time": 376.89, "split": "test", "id": 12769}, {"category": 7, "url": "https://www.youtube.com/watch?v=F2zTd_YwTvo", "video_id": "video12125", "start time": 44.93, "end time": 55.64, "split": "test", "id": 12125}, {"category": 6, "url": "https://www.youtube.com/watch?v=l6dZxCHU5u8", "video_id": "video12771", "start time": 279.21, "end time": 294.65, "split": "test", "id": 12771}, {"category": 10, "url": "https://www.youtube.com/watch?v=B-TIpPcrpPM", "video_id": "video12605", "start time": 18.21, "end time": 34.45, "split": "test", "id": 12605}, {"category": 9, "url": "https://www.youtube.com/watch?v=po-53KbY1CU", "video_id": "video10311", "start time": 62.68, "end time": 78.59, "split": "test", "id": 10311}, {"category": 16, "url": "https://www.youtube.com/watch?v=GtVnRuT03Mc", "video_id": "video11974", "start time": 148.89, "end time": 168.05, "split": "test", "id": 11974}, {"category": 6, "url": "https://www.youtube.com/watch?v=nCsnbNGWR0o", "video_id": "video12375", "start time": 36.13, "end time": 46.89, "split": "test", "id": 12375}, {"category": 3, "url": "https://www.youtube.com/watch?v=5aJbRjhXbJc", "video_id": "video10019", "start time": 104.39, "end time": 116.16, "split": "test", "id": 10019}, {"category": 14, "url": "https://www.youtube.com/watch?v=FUm4WhBouNo", "video_id": "video12847", "start time": 13.49, "end time": 34.82, "split": "test", "id": 12847}, {"category": 16, "url": "https://www.youtube.com/watch?v=hFdTLz4HW78", "video_id": "video10595", "start time": 153.6, "end time": 179.16, "split": "test", "id": 10595}, {"category": 7, "url": "https://www.youtube.com/watch?v=apR5KRWvL0c", "video_id": "video10073", "start time": 58.94, "end time": 70.53, "split": "test", "id": 10073}, {"category": 4, "url": "https://www.youtube.com/watch?v=5PkSsrB9ftw", "video_id": "video12555", "start time": 102.29, "end time": 115.81, "split": "test", "id": 12555}, {"category": 16, "url": "https://www.youtube.com/watch?v=IT-k_Z262jA", "video_id": "video12180", "start time": 291.89, "end time": 304.33, "split": "test", "id": 12180}, {"category": 7, "url": "https://www.youtube.com/watch?v=M9D42yCefVI", "video_id": "video10230", "start time": 73.89, "end time": 84.26, "split": "test", "id": 10230}, {"category": 16, "url": "https://www.youtube.com/watch?v=8q9pWzNMz88", "video_id": "video10316", "start time": 359.37, "end time": 383.56, "split": "test", "id": 10316}, {"category": 12, "url": "https://www.youtube.com/watch?v=jLZshifnyT4", "video_id": "video12417", "start time": 71.45, "end time": 90.28, "split": "test", "id": 12417}, {"category": 10, "url": "https://www.youtube.com/watch?v=9pbUoNa5tyY", "video_id": "video12279", "start time": 561.31, "end time": 571.71, "split": "test", "id": 12279}, {"category": 16, "url": "https://www.youtube.com/watch?v=13qypfoWkak", "video_id": "video12430", "start time": 374.68, "end time": 398.25, "split": "test", "id": 12430}, {"category": 6, "url": "https://www.youtube.com/watch?v=A66ebijBXvM", "video_id": "video12775", "start time": 111.95, "end time": 128.13, "split": "test", "id": 12775}, {"category": 16, "url": "https://www.youtube.com/watch?v=p8RHkyy9GEo", "video_id": "video12905", "start time": 50.9, "end time": 68.15, "split": "test", "id": 12905}, {"category": 5, "url": "https://www.youtube.com/watch?v=7uN4I1wEOXE", "video_id": "video11593", "start time": 304.09, "end time": 319.92, "split": "test", "id": 11593}, {"category": 12, "url": "https://www.youtube.com/watch?v=0KduhFWdOfk", "video_id": "video12690", "start time": 46.33, "end time": 58.65, "split": "test", "id": 12690}, {"category": 9, "url": "https://www.youtube.com/watch?v=a0bQgeT4SFE", "video_id": "video10786", "start time": 21.54, "end time": 34.32, "split": "test", "id": 10786}, {"category": 5, "url": "https://www.youtube.com/watch?v=kgZRZmEc9j4", "video_id": "video12578", "start time": 126.59, "end time": 148.99, "split": "test", "id": 12578}, {"category": 9, "url": "https://www.youtube.com/watch?v=gz8TnKylOG4", "video_id": "video12544", "start time": 25.64, "end time": 54.8, "split": "test", "id": 12544}, {"category": 12, "url": "https://www.youtube.com/watch?v=DoxuzPPstXc", "video_id": "video12716", "start time": 497.79, "end time": 525.07, "split": "test", "id": 12716}, {"category": 16, "url": "https://www.youtube.com/watch?v=40szNyHbB7g", "video_id": "video12514", "start time": 123.17, "end time": 140.25, "split": "test", "id": 12514}, {"category": 5, "url": "https://www.youtube.com/watch?v=IWwY9hwhDxg", "video_id": "video12745", "start time": 1141.09, "end time": 1153.9, "split": "test", "id": 12745}, {"category": 7, "url": "https://www.youtube.com/watch?v=G255fHPals4", "video_id": "video12062", "start time": 13.98, "end time": 25.49, "split": "test", "id": 12062}, {"category": 5, "url": "https://www.youtube.com/watch?v=Eytc9ZaNWyc", "video_id": "video12590", "start time": 374.13, "end time": 393.02, "split": "test", "id": 12590}, {"category": 12, "url": "https://www.youtube.com/watch?v=qOlBH4B8Vv4", "video_id": "video10646", "start time": 2.93, "end time": 18.29, "split": "test", "id": 10646}, {"category": 17, "url": "https://www.youtube.com/watch?v=OngKoqXOVXU", "video_id": "video11136", "start time": 102.61, "end time": 123.05, "split": "test", "id": 11136}, {"category": 3, "url": "https://www.youtube.com/watch?v=FW50fQC1IR8", "video_id": "video11830", "start time": 117.81, "end time": 130.05, "split": "test", "id": 11830}, {"category": 13, "url": "https://www.youtube.com/watch?v=p336IIjZCl8", "video_id": "video10938", "start time": 29.61, "end time": 54.58, "split": "test", "id": 10938}, {"category": 3, "url": "https://www.youtube.com/watch?v=ScOzMeAwRmg", "video_id": "video12759", "start time": 0.0, "end time": 19.28, "split": "test", "id": 12759}, {"category": 11, "url": "https://www.youtube.com/watch?v=mzviCKUw2mk", "video_id": "video11627", "start time": 494.45, "end time": 519.77, "split": "test", "id": 11627}, {"category": 12, "url": "https://www.youtube.com/watch?v=kkpy8ZpgL4o", "video_id": "video11699", "start time": 316.05, "end time": 326.8, "split": "test", "id": 11699}, {"category": 4, "url": "https://www.youtube.com/watch?v=MUo9bz32u6U", "video_id": "video12342", "start time": 0.0, "end time": 10.89, "split": "test", "id": 12342}, {"category": 9, "url": "https://www.youtube.com/watch?v=HQkGb2lrs_A", "video_id": "video12707", "start time": 0.0, "end time": 10.63, "split": "test", "id": 12707}, {"category": 10, "url": "https://www.youtube.com/watch?v=NDwZcLGekE8", "video_id": "video12832", "start time": 32.97, "end time": 49.81, "split": "test", "id": 12832}, {"category": 0, "url": "https://www.youtube.com/watch?v=0QEYme-LW20", "video_id": "video11675", "start time": 108.68, "end time": 128.61, "split": "test", "id": 11675}, {"category": 11, "url": "https://www.youtube.com/watch?v=mVg0L4rH_tg", "video_id": "video12753", "start time": 8.12, "end time": 19.37, "split": "test", "id": 12753}, {"category": 18, "url": "https://www.youtube.com/watch?v=4Tdl6brtX48", "video_id": "video11949", "start time": 91.97, "end time": 102.97, "split": "test", "id": 11949}, {"category": 8, "url": "https://www.youtube.com/watch?v=3Qb5sEV1uU4", "video_id": "video11547", "start time": 233.45, "end time": 244.12, "split": "test", "id": 11547}, {"category": 7, "url": "https://www.youtube.com/watch?v=lpxWMjQaCqw", "video_id": "video11724", "start time": 85.84, "end time": 98.02, "split": "test", "id": 11724}, {"category": 16, "url": "https://www.youtube.com/watch?v=6-6Fi_2Z2IM", "video_id": "video11530", "start time": 221.45, "end time": 245.95, "split": "test", "id": 11530}, {"category": 4, "url": "https://www.youtube.com/watch?v=OBKjeXwKZ1M", "video_id": "video12639", "start time": 61.89, "end time": 75.73, "split": "test", "id": 12639}, {"category": 17, "url": "https://www.youtube.com/watch?v=1BV0KqmJJVE", "video_id": "video11689", "start time": 63.78, "end time": 85.57, "split": "test", "id": 11689}, {"category": 7, "url": "https://www.youtube.com/watch?v=GgVIlrJu3ro", "video_id": "video12606", "start time": 133.01, "end time": 154.2, "split": "test", "id": 12606}, {"category": 14, "url": "https://www.youtube.com/watch?v=8s2WPJzNUL0", "video_id": "video11694", "start time": 24.74, "end time": 35.75, "split": "test", "id": 11694}, {"category": 5, "url": "https://www.youtube.com/watch?v=5vKGU3aEGss", "video_id": "video10919", "start time": 464.89, "end time": 490.83, "split": "test", "id": 10919}, {"category": 9, "url": "https://www.youtube.com/watch?v=I7g08nwEmyY", "video_id": "video11945", "start time": 332.41, "end time": 344.61, "split": "test", "id": 11945}, {"category": 18, "url": "https://www.youtube.com/watch?v=SCcVrLcGD7k", "video_id": "video12911", "start time": 31.12, "end time": 50.43, "split": "test", "id": 12911}, {"category": 14, "url": "https://www.youtube.com/watch?v=6Y76gIt9o9I", "video_id": "video10697", "start time": 133.71, "end time": 145.16, "split": "test", "id": 10697}, {"category": 10, "url": "https://www.youtube.com/watch?v=N_a-RQkPp8g", "video_id": "video11454", "start time": 171.55, "end time": 197.17, "split": "test", "id": 11454}, {"category": 3, "url": "https://www.youtube.com/watch?v=JZsVcO1HUsY", "video_id": "video11487", "start time": 0.0, "end time": 12.26, "split": "test", "id": 11487}, {"category": 6, "url": "https://www.youtube.com/watch?v=feuID7qXO_c", "video_id": "video11443", "start time": 102.51, "end time": 120.38, "split": "test", "id": 11443}, {"category": 9, "url": "https://www.youtube.com/watch?v=aVDKztQ-n1U", "video_id": "video12296", "start time": 217.33, "end time": 236.45, "split": "test", "id": 12296}, {"category": 7, "url": "https://www.youtube.com/watch?v=RPnsvvB1B1I", "video_id": "video11301", "start time": 74.58, "end time": 85.3, "split": "test", "id": 11301}, {"category": 7, "url": "https://www.youtube.com/watch?v=D7q-YXbs1oc", "video_id": "video12038", "start time": 81.84, "end time": 101.11, "split": "test", "id": 12038}, {"category": 2, "url": "https://www.youtube.com/watch?v=h3rPsaFX19Q", "video_id": "video12638", "start time": 46.68, "end time": 57.31, "split": "test", "id": 12638}, {"category": 7, "url": "https://www.youtube.com/watch?v=49EN9EOSn1E", "video_id": "video12577", "start time": 82.81, "end time": 95.01, "split": "test", "id": 12577}, {"category": 7, "url": "https://www.youtube.com/watch?v=9l_U2xXb9VI", "video_id": "video10857", "start time": 58.86, "end time": 86.63, "split": "test", "id": 10857}, {"category": 9, "url": "https://www.youtube.com/watch?v=f7LdZqfYD3s", "video_id": "video12390", "start time": 144.17, "end time": 167.01, "split": "test", "id": 12390}, {"category": 17, "url": "https://www.youtube.com/watch?v=F5duQ_57TC4", "video_id": "video11969", "start time": 417.26, "end time": 444.89, "split": "test", "id": 11969}, {"category": 13, "url": "https://www.youtube.com/watch?v=QV-36hZraoY", "video_id": "video10485", "start time": 42.18, "end time": 60.58, "split": "test", "id": 10485}, {"category": 4, "url": "https://www.youtube.com/watch?v=0ebh_1O7iT0", "video_id": "video12987", "start time": 9.19, "end time": 30.64, "split": "test", "id": 12987}, {"category": 7, "url": "https://www.youtube.com/watch?v=rg_WiTUUHUw", "video_id": "video10773", "start time": 95.68, "end time": 110.39, "split": "test", "id": 10773}, {"category": 3, "url": "https://www.youtube.com/watch?v=quLXhSPTuRM", "video_id": "video11068", "start time": 38.75, "end time": 52.5, "split": "test", "id": 11068}, {"category": 17, "url": "https://www.youtube.com/watch?v=jxckLJdWTvo", "video_id": "video12742", "start time": 157.5, "end time": 172.95, "split": "test", "id": 12742}, {"category": 9, "url": "https://www.youtube.com/watch?v=LtCc8Y4GZzM", "video_id": "video12108", "start time": 10.49, "end time": 37.85, "split": "test", "id": 12108}, {"category": 16, "url": "https://www.youtube.com/watch?v=5Y41Ngr6KCM", "video_id": "video11046", "start time": 66.21, "end time": 76.49, "split": "test", "id": 11046}, {"category": 4, "url": "https://www.youtube.com/watch?v=9_jOtnUGbes", "video_id": "video11448", "start time": 117.23, "end time": 133.91, "split": "test", "id": 11448}, {"category": 13, "url": "https://www.youtube.com/watch?v=AzIKZP-iIcM", "video_id": "video12977", "start time": 180.66, "end time": 200.35, "split": "test", "id": 12977}, {"category": 16, "url": "https://www.youtube.com/watch?v=-bAp4GuA-JU", "video_id": "video12341", "start time": 245.25, "end time": 256.43, "split": "test", "id": 12341}, {"category": 12, "url": "https://www.youtube.com/watch?v=-Fu-P1n_NsY", "video_id": "video12059", "start time": 293.49, "end time": 306.93, "split": "test", "id": 12059}, {"category": 0, "url": "https://www.youtube.com/watch?v=nPvuNsRccVw", "video_id": "video11403", "start time": 8.16, "end time": 21.44, "split": "test", "id": 11403}, {"category": 17, "url": "https://www.youtube.com/watch?v=hFjYJjTohM0", "video_id": "video12253", "start time": 145.01, "end time": 156.29, "split": "test", "id": 12253}, {"category": 7, "url": "https://www.youtube.com/watch?v=Nr6lk0-6hlw", "video_id": "video12913", "start time": 213.09, "end time": 240.77, "split": "test", "id": 12913}, {"category": 4, "url": "https://www.youtube.com/watch?v=qSvNEl70xn8", "video_id": "video11797", "start time": 287.76, "end time": 298.76, "split": "test", "id": 11797}, {"category": 11, "url": "https://www.youtube.com/watch?v=jmDRE1o7qPI", "video_id": "video10166", "start time": 98.89, "end time": 111.49, "split": "test", "id": 10166}, {"category": 2, "url": "https://www.youtube.com/watch?v=2xdzl6atl1s", "video_id": "video12889", "start time": 155.04, "end time": 169.82, "split": "test", "id": 12889}, {"category": 16, "url": "https://www.youtube.com/watch?v=p0H6cxkFxtU", "video_id": "video11747", "start time": 47.23, "end time": 59.71, "split": "test", "id": 11747}, {"category": 2, "url": "https://www.youtube.com/watch?v=joS6CCNnfxM", "video_id": "video11828", "start time": 111.17, "end time": 131.29, "split": "test", "id": 11828}, {"category": 3, "url": "https://www.youtube.com/watch?v=JMw7TSlP6V8", "video_id": "video10841", "start time": 28.48, "end time": 52.73, "split": "test", "id": 10841}, {"category": 17, "url": "https://www.youtube.com/watch?v=rkkJp1iflIA", "video_id": "video11904", "start time": 583.88, "end time": 604.59, "split": "test", "id": 11904}, {"category": 17, "url": "https://www.youtube.com/watch?v=Q5uAcmdAlBw", "video_id": "video12052", "start time": 86.57, "end time": 104.89, "split": "test", "id": 12052}, {"category": 17, "url": "https://www.youtube.com/watch?v=7_2iKovNS2s", "video_id": "video12261", "start time": 140.45, "end time": 153.2, "split": "test", "id": 12261}, {"category": 5, "url": "https://www.youtube.com/watch?v=4d6Cf82LRtM", "video_id": "video11576", "start time": 29.57, "end time": 40.37, "split": "test", "id": 11576}, {"category": 12, "url": "https://www.youtube.com/watch?v=1p3ztJc9Qtk", "video_id": "video12656", "start time": 35.01, "end time": 57.89, "split": "test", "id": 12656}, {"category": 7, "url": "https://www.youtube.com/watch?v=iMSt22zYjsg", "video_id": "video11602", "start time": 124.26, "end time": 147.38, "split": "test", "id": 11602}, {"category": 17, "url": "https://www.youtube.com/watch?v=mXwvW4vsPF0", "video_id": "video12749", "start time": 619.17, "end time": 643.49, "split": "test", "id": 12749}, {"category": 9, "url": "https://www.youtube.com/watch?v=NaD8_3Yty4s", "video_id": "video12045", "start time": 161.91, "end time": 172.12, "split": "test", "id": 12045}, {"category": 16, "url": "https://www.youtube.com/watch?v=13u4oUiPjXQ", "video_id": "video11455", "start time": 115.16, "end time": 133.18, "split": "test", "id": 11455}, {"category": 11, "url": "https://www.youtube.com/watch?v=iajt4GFHEi0", "video_id": "video12370", "start time": 296.94, "end time": 315.93, "split": "test", "id": 12370}, {"category": 16, "url": "https://www.youtube.com/watch?v=Pci6do0XEC0", "video_id": "video10684", "start time": 11.62, "end time": 22.57, "split": "test", "id": 10684}, {"category": 5, "url": "https://www.youtube.com/watch?v=IzXQVwWYFv4", "video_id": "video12148", "start time": 2.85, "end time": 15.1, "split": "test", "id": 12148}, {"category": 3, "url": "https://www.youtube.com/watch?v=2CootBb9PlU", "video_id": "video11674", "start time": 70.32, "end time": 80.63, "split": "test", "id": 11674}, {"category": 6, "url": "https://www.youtube.com/watch?v=kBtT08QuuZw", "video_id": "video10649", "start time": 110.57, "end time": 123.13, "split": "test", "id": 10649}, {"category": 10, "url": "https://www.youtube.com/watch?v=JKi0xQUwCDg", "video_id": "video12040", "start time": 136.33, "end time": 149.33, "split": "test", "id": 12040}, {"category": 14, "url": "https://www.youtube.com/watch?v=Kbhh6iT9XOY", "video_id": "video12790", "start time": 641.29, "end time": 656.29, "split": "test", "id": 12790}, {"category": 5, "url": "https://www.youtube.com/watch?v=6E9WU9TGrec", "video_id": "video12691", "start time": 0.0, "end time": 25.7, "split": "test", "id": 12691}, {"category": 12, "url": "https://www.youtube.com/watch?v=8QOfjtOAxoA", "video_id": "video11670", "start time": 231.05, "end time": 242.58, "split": "test", "id": 11670}, {"category": 18, "url": "https://www.youtube.com/watch?v=Kzq5mENVP8c", "video_id": "video12688", "start time": 0.0, "end time": 13.58, "split": "test", "id": 12688}, {"category": 12, "url": "https://www.youtube.com/watch?v=cteuRGZcRBE", "video_id": "video11293", "start time": 47.29, "end time": 60.98, "split": "test", "id": 11293}, {"category": 7, "url": "https://www.youtube.com/watch?v=o9mwe3TJDk0", "video_id": "video11466", "start time": 20.81, "end time": 38.41, "split": "test", "id": 11466}, {"category": 13, "url": "https://www.youtube.com/watch?v=AW7PmjoU-rs", "video_id": "video12434", "start time": 152.33, "end time": 173.49, "split": "test", "id": 12434}, {"category": 3, "url": "https://www.youtube.com/watch?v=EybDhqe28SU", "video_id": "video12465", "start time": 8.06, "end time": 26.67, "split": "test", "id": 12465}, {"category": 12, "url": "https://www.youtube.com/watch?v=7RcwF5oyxNs", "video_id": "video12946", "start time": 29.18, "end time": 39.58, "split": "test", "id": 12946}, {"category": 2, "url": "https://www.youtube.com/watch?v=-yfDKAyC7ew", "video_id": "video11832", "start time": 147.88, "end time": 159.92, "split": "test", "id": 11832}, {"category": 3, "url": "https://www.youtube.com/watch?v=8VwTZFY-fvw", "video_id": "video10698", "start time": 176.46, "end time": 187.59, "split": "test", "id": 10698}, {"category": 12, "url": "https://www.youtube.com/watch?v=MiaJnA1ptg0", "video_id": "video10451", "start time": 33.95, "end time": 44.73, "split": "test", "id": 10451}, {"category": 5, "url": "https://www.youtube.com/watch?v=RcGyVTAoXEU", "video_id": "video12350", "start time": 689.53, "end time": 705.01, "split": "test", "id": 12350}, {"category": 3, "url": "https://www.youtube.com/watch?v=mmqPLRW-bbU", "video_id": "video12123", "start time": 524.81, "end time": 547.79, "split": "test", "id": 12123}, {"category": 16, "url": "https://www.youtube.com/watch?v=17azTj1GFV4", "video_id": "video10152", "start time": 18.49, "end time": 37.69, "split": "test", "id": 10152}, {"category": 6, "url": "https://www.youtube.com/watch?v=46ls8ivsXII", "video_id": "video12915", "start time": 25.37, "end time": 38.29, "split": "test", "id": 12915}, {"category": 13, "url": "https://www.youtube.com/watch?v=7byOi7iQ_C0", "video_id": "video12203", "start time": 144.78, "end time": 157.91, "split": "test", "id": 12203}, {"category": 12, "url": "https://www.youtube.com/watch?v=767vco3jBkc", "video_id": "video12265", "start time": 195.94, "end time": 220.23, "split": "test", "id": 12265}, {"category": 0, "url": "https://www.youtube.com/watch?v=oM-XJD4J36U", "video_id": "video12869", "start time": 70.41, "end time": 85.42, "split": "test", "id": 12869}, {"category": 2, "url": "https://www.youtube.com/watch?v=24wALw2yyvw", "video_id": "video12327", "start time": 293.47, "end time": 314.46, "split": "test", "id": 12327}, {"category": 1, "url": "https://www.youtube.com/watch?v=5kC86zpkUG0", "video_id": "video11853", "start time": 0.0, "end time": 23.73, "split": "test", "id": 11853}, {"category": 12, "url": "https://www.youtube.com/watch?v=NkyEOrQiGMQ", "video_id": "video12287", "start time": 88.73, "end time": 104.21, "split": "test", "id": 12287}, {"category": 2, "url": "https://www.youtube.com/watch?v=-yfDKAyC7ew", "video_id": "video11931", "start time": 159.92, "end time": 182.21, "split": "test", "id": 11931}, {"category": 9, "url": "https://www.youtube.com/watch?v=81l_Juc0_tw", "video_id": "video12962", "start time": 214.85, "end time": 230.25, "split": "test", "id": 12962}, {"category": 0, "url": "https://www.youtube.com/watch?v=-Edv8Onsrgg", "video_id": "video11441", "start time": 100.69, "end time": 130.57, "split": "test", "id": 11441}, {"category": 1, "url": "https://www.youtube.com/watch?v=5jvskakN1_8", "video_id": "video10662", "start time": 425.01, "end time": 445.93, "split": "test", "id": 10662}, {"category": 11, "url": "https://www.youtube.com/watch?v=8lCxfDyASDs", "video_id": "video11546", "start time": 31.55, "end time": 60.24, "split": "test", "id": 11546}, {"category": 3, "url": "https://www.youtube.com/watch?v=MJivUab5P-M", "video_id": "video10606", "start time": 184.7, "end time": 214.43, "split": "test", "id": 10606}, {"category": 11, "url": "https://www.youtube.com/watch?v=mTXGk4vy9S4", "video_id": "video12360", "start time": 465.6, "end time": 490.29, "split": "test", "id": 12360}, {"category": 16, "url": "https://www.youtube.com/watch?v=120PfcjTBXI", "video_id": "video12702", "start time": 84.09, "end time": 111.41, "split": "test", "id": 12702}, {"category": 18, "url": "https://www.youtube.com/watch?v=qL297sJOQp4", "video_id": "video12407", "start time": 40.03, "end time": 55.05, "split": "test", "id": 12407}, {"category": 3, "url": "https://www.youtube.com/watch?v=ObEFOe3wdBM", "video_id": "video10541", "start time": 8.01, "end time": 34.58, "split": "test", "id": 10541}, {"category": 16, "url": "https://www.youtube.com/watch?v=NX0XYT4q_2Q", "video_id": "video12978", "start time": 210.05, "end time": 223.48, "split": "test", "id": 12978}, {"category": 18, "url": "https://www.youtube.com/watch?v=KzTfGNf8jDg", "video_id": "video12131", "start time": 699.85, "end time": 720.65, "split": "test", "id": 12131}, {"category": 17, "url": "https://www.youtube.com/watch?v=8O_aVaTZ1nI", "video_id": "video11640", "start time": 114.8, "end time": 126.51, "split": "test", "id": 11640}, {"category": 18, "url": "https://www.youtube.com/watch?v=mLZ0Cf0uU9M", "video_id": "video12469", "start time": 49.06, "end time": 74.15, "split": "test", "id": 12469}, {"category": 13, "url": "https://www.youtube.com/watch?v=gZh000R_ZRw", "video_id": "video12808", "start time": 0.0, "end time": 22.37, "split": "test", "id": 12808}, {"category": 3, "url": "https://www.youtube.com/watch?v=cQPADhqTQAE", "video_id": "video12923", "start time": 0.0, "end time": 16.98, "split": "test", "id": 12923}, {"category": 16, "url": "https://www.youtube.com/watch?v=FZr_eD8aXro", "video_id": "video12854", "start time": 14.09, "end time": 29.64, "split": "test", "id": 12854}, {"category": 4, "url": "https://www.youtube.com/watch?v=A_KFCMgJ92g", "video_id": "video11999", "start time": 58.49, "end time": 69.12, "split": "test", "id": 11999}, {"category": 9, "url": "https://www.youtube.com/watch?v=HdvJnYnRF64", "video_id": "video12089", "start time": 107.29, "end time": 129.09, "split": "test", "id": 12089}, {"category": 9, "url": "https://www.youtube.com/watch?v=MQCKgf8gTnw", "video_id": "video12391", "start time": 49.05, "end time": 61.78, "split": "test", "id": 12391}], "sentences": [{"caption": "a man who gives a review about driving the bmw i8", "video_id": "video12387", "sen_id": 200000}, {"caption": "a man is standing in front of a car with the doors open", "video_id": "video12387", "sen_id": 200001}, {"caption": "a man does a test drive of a car and does a review of the car", "video_id": "video12387", "sen_id": 200002}, {"caption": "the words recombu are displayed and a man shows off the i8 a bmw hybrid sports car", "video_id": "video12387", "sen_id": 200003}, {"caption": "a man driving and standing with a white bmw i8 sports car", "video_id": "video12387", "sen_id": 200004}, {"caption": "a young man standing outside of a car", "video_id": "video12387", "sen_id": 200005}, {"caption": "a large man standing outside and then sitting in an expensive car", "video_id": "video12387", "sen_id": 200006}, {"caption": "the man walks out from beside the car while clips of him driving flash on screen", "video_id": "video12387", "sen_id": 200007}, {"caption": "rory reid standing next to a luxury sports car with the wing doors open and then he is driving the car", "video_id": "video12387", "sen_id": 200008}, {"caption": "a man shows off bmw's new hybrid sports car", "video_id": "video12387", "sen_id": 200009}, {"caption": "a man is talking about the bmw i8", "video_id": "video12387", "sen_id": 200010}, {"caption": "a man is giving a review of a bmx recombu and is shown driving the recombu", "video_id": "video12387", "sen_id": 200011}, {"caption": "a man presents a review of the new bmw i8 both driving and simply standing next to the car", "video_id": "video12387", "sen_id": 200012}, {"caption": "a guy standing by a silver sports car with its doors open", "video_id": "video12387", "sen_id": 200013}, {"caption": "a young man reviews and drives a bmw hybrid car", "video_id": "video12387", "sen_id": 200014}, {"caption": "a man is walking around a sports car and is explaining its specifications", "video_id": "video12387", "sen_id": 200015}, {"caption": "a men explainging car is displayed with its features", "video_id": "video12387", "sen_id": 200016}, {"caption": "the man talks about the gray sports car", "video_id": "video12387", "sen_id": 200017}, {"caption": "an african man talks about his test drive of a fancy hybrid sports car", "video_id": "video12387", "sen_id": 200018}, {"caption": "the person is very happy to drive bmw the brand new sports car", "video_id": "video12387", "sen_id": 200019}, {"caption": "a man driving a ferarri in a race court", "video_id": "video12336", "sen_id": 200020}, {"caption": "a man is driving a car very fast on a race track", "video_id": "video12336", "sen_id": 200021}, {"caption": "a man is wearing a helmet and is trying to race a car", "video_id": "video12336", "sen_id": 200022}, {"caption": "a helmeted man is racing a red car around a track", "video_id": "video12336", "sen_id": 200023}, {"caption": "a man with a helmet driving a very nice red sports car on a track", "video_id": "video12336", "sen_id": 200024}, {"caption": "this shows a race where a man breaks down", "video_id": "video12336", "sen_id": 200025}, {"caption": "a man races a luxury car on a track against a ferrari", "video_id": "video12336", "sen_id": 200026}, {"caption": "a clip from top gear about an orange ferrari", "video_id": "video12336", "sen_id": 200027}, {"caption": "a man describes a sports car that he is test driving on a race course", "video_id": "video12336", "sen_id": 200028}, {"caption": "man is racing a red car trying to beat a ferrari car", "video_id": "video12336", "sen_id": 200029}, {"caption": "man says they will have to try harder to beat the ferari and him driving a race car", "video_id": "video12336", "sen_id": 200030}, {"caption": "a television clip of a show called top gear about cars", "video_id": "video12336", "sen_id": 200031}, {"caption": "a man is going to try to race a ferrari", "video_id": "video12336", "sen_id": 200032}, {"caption": "older man is demonstrating driving a race car on a track", "video_id": "video12336", "sen_id": 200033}, {"caption": "man in racecar is trying to beat a ferri on a racetrack", "video_id": "video12336", "sen_id": 200034}, {"caption": "a man talks about a sports car he is test riving on a closed race track", "video_id": "video12336", "sen_id": 200035}, {"caption": "a man is sitting in a race car and talking into a radio", "video_id": "video12336", "sen_id": 200036}, {"caption": "a long beautiful car is being driven fast on the road by a man wearing helmet", "video_id": "video12336", "sen_id": 200037}, {"caption": "two men race cars on a closed-track one of the cars is a ferrari", "video_id": "video12336", "sen_id": 200038}, {"caption": "a guy saying that we will need to try harder to beat the ferrari", "video_id": "video12336", "sen_id": 200039}, {"caption": "a ping pong ball bounces in slow motion across the deep blue surface of a table with an inverted red semicircular base", "video_id": "video11161", "sen_id": 200040}, {"caption": "a guide on how to play ping pong", "video_id": "video11161", "sen_id": 200041}, {"caption": "a slow motion video of a ping pong ball bouncing over a ping pong table", "video_id": "video11161", "sen_id": 200042}, {"caption": "the rules and etiquette of ping pong or table tennis are being discussed", "video_id": "video11161", "sen_id": 200043}, {"caption": "the rules and explanations of the game ping pong", "video_id": "video11161", "sen_id": 200044}, {"caption": "a ping pong ball is bouncing over a ping pong table", "video_id": "video11161", "sen_id": 200045}, {"caption": "table tennis techniques are discussed and demonstrated by a person", "video_id": "video11161", "sen_id": 200046}, {"caption": "a ping pong ball goes across the table", "video_id": "video11161", "sen_id": 200047}, {"caption": "a man describes and demonstrates techniques for playing high level table tennis", "video_id": "video11161", "sen_id": 200048}, {"caption": "slow motion footage of a ping pong ball bouncing on a table is shown", "video_id": "video11161", "sen_id": 200049}, {"caption": "a ball is going across of the ping pong table", "video_id": "video11161", "sen_id": 200050}, {"caption": "a bouncing ball on a ping pong table in the dark", "video_id": "video11161", "sen_id": 200051}, {"caption": "a ping pong ball flies across the ping pong table", "video_id": "video11161", "sen_id": 200052}, {"caption": "an announces describes slow motion movement of ping pong ball across a table", "video_id": "video11161", "sen_id": 200053}, {"caption": "a ball goes across the top of a blue table tennis table", "video_id": "video11161", "sen_id": 200054}, {"caption": "a tutorial on how to serve a table tennis ball", "video_id": "video11161", "sen_id": 200055}, {"caption": "a man talks about terms relating to ping pong while showing a video of said terms", "video_id": "video11161", "sen_id": 200056}, {"caption": "a man describes the tactics and trajectories used in ping pong", "video_id": "video11161", "sen_id": 200057}, {"caption": "a man talking about different ball terminology in the game of ping pong", "video_id": "video11161", "sen_id": 200058}, {"caption": "a ball bouncing on a ping pong table from left to right", "video_id": "video11161", "sen_id": 200059}, {"caption": "a fighter pointing a rifle walks through a warehouse and entertainment arcade and aims at a gumball machine topped with an animal head", "video_id": "video10441", "sen_id": 200060}, {"caption": "a game is going through different passages and showing powers", "video_id": "video10441", "sen_id": 200061}, {"caption": "a person demonstrates and describes a video game that they are playing", "video_id": "video10441", "sen_id": 200062}, {"caption": "there is a piece of gum giving power to a player in a game", "video_id": "video10441", "sen_id": 200063}, {"caption": "a female is playing a video game", "video_id": "video10441", "sen_id": 200064}, {"caption": "a video game gun getting gumballs and traveling through a building", "video_id": "video10441", "sen_id": 200065}, {"caption": "a person describes and demonstrates a video game that they are playing", "video_id": "video10441", "sen_id": 200066}, {"caption": "a person is playing a video game and in the game they are shooting things with a gun", "video_id": "video10441", "sen_id": 200067}, {"caption": "a video game character collects bubblegum and runs around", "video_id": "video10441", "sen_id": 200068}, {"caption": "a woman off camera talks as we watch a scene from a video game", "video_id": "video10441", "sen_id": 200069}, {"caption": "a person demonstrates and describes a video game that they are playing", "video_id": "video10441", "sen_id": 200070}, {"caption": "a gun shooting a gumball machine and getting a gumball", "video_id": "video10441", "sen_id": 200071}, {"caption": "a person gets a gobble gum out of a gumball machine and eats it before crafting something at a table in a first person shooter game", "video_id": "video10441", "sen_id": 200072}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video10441", "sen_id": 200073}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video10441", "sen_id": 200074}, {"caption": "a person is adventuring around in a first person shooter video game", "video_id": "video10441", "sen_id": 200075}, {"caption": "a video game is played while a narrator provides commentary", "video_id": "video10441", "sen_id": 200076}, {"caption": "a person playing a video game with missions and weapons in it", "video_id": "video10441", "sen_id": 200077}, {"caption": "a gunman walks around in a game shooting at various objects", "video_id": "video10441", "sen_id": 200078}, {"caption": "a first person shooter experts shows ways to acquire ammunition from unconventional sources", "video_id": "video10441", "sen_id": 200079}, {"caption": "video of surgery and talking about high tec programs", "video_id": "video11354", "sen_id": 200080}, {"caption": "lasers being able to map the earth correctly", "video_id": "video11354", "sen_id": 200081}, {"caption": "a laser cutting surgery is helping people and also making maps", "video_id": "video11354", "sen_id": 200082}, {"caption": "a metal object explodes a large mass on top of pink flesh", "video_id": "video11354", "sen_id": 200083}, {"caption": "light flashes as a laser burns away a substance in a fish eye lens before the surgeon speaks to the camera", "video_id": "video11354", "sen_id": 200084}, {"caption": "a view of the inside of a surgery inside of a person", "video_id": "video11354", "sen_id": 200085}, {"caption": "a laser is being fired into some object and then a doctor is talking through a mask", "video_id": "video11354", "sen_id": 200086}, {"caption": "surgeons work with new technology while operating on a person", "video_id": "video11354", "sen_id": 200087}, {"caption": "surgeons show off new technology in a hospital", "video_id": "video11354", "sen_id": 200088}, {"caption": "a doctor uses laser beams to blow up kidney stones in a patient", "video_id": "video11354", "sen_id": 200089}, {"caption": "a doctor is performing laporoscopic surgery and then talking about it", "video_id": "video11354", "sen_id": 200090}, {"caption": "there is a doctor talking about a decease", "video_id": "video11354", "sen_id": 200091}, {"caption": "a surgeon is using a tool inside a patient s body to break apart masses", "video_id": "video11354", "sen_id": 200092}, {"caption": "doctors are performing an operation with a very small canera", "video_id": "video11354", "sen_id": 200093}, {"caption": "there is a doctor talking about a major decease", "video_id": "video11354", "sen_id": 200094}, {"caption": "footage from cameras that go inside of the body during surgery", "video_id": "video11354", "sen_id": 200095}, {"caption": "a white nozzle inside of a dark fluid filled tube", "video_id": "video11354", "sen_id": 200096}, {"caption": "a piece of machinery cuts away while guided by a laser", "video_id": "video11354", "sen_id": 200097}, {"caption": "a person is showing the surgery being done using the camera", "video_id": "video11354", "sen_id": 200098}, {"caption": "a doctor is showing how a laser surgery device works", "video_id": "video11354", "sen_id": 200099}, {"caption": "a laughing driver in a car with a tree on the roof pulls a large van on a lane next to a large box truck on a highway", "video_id": "video12785", "sen_id": 200100}, {"caption": "a man in a blue striped shirt drives while he talks into a walkie talkie", "video_id": "video12785", "sen_id": 200101}, {"caption": "a man in a blue stripped is driving a vehicle at high speed and drives next to a 18 wheeler", "video_id": "video12785", "sen_id": 200102}, {"caption": "a man in a blue stripe shirt races a man in an orange shirt", "video_id": "video12785", "sen_id": 200103}, {"caption": "a clip from the bbc movie top gear", "video_id": "video12785", "sen_id": 200104}, {"caption": "a man is pulling a large trailer with a very small car", "video_id": "video12785", "sen_id": 200105}, {"caption": "a man driving a car with a tall tree pulling behind it", "video_id": "video12785", "sen_id": 200106}, {"caption": "a man is driving talking on a walkie-talkie to someone", "video_id": "video12785", "sen_id": 200107}, {"caption": "a man wearing a blue coat driving a car", "video_id": "video12785", "sen_id": 200108}, {"caption": "a large truck passes a small car pulling a large trailer", "video_id": "video12785", "sen_id": 200109}, {"caption": "a truck is driving down a highway beside a car with top heavy cargo and a man in a car is communicating over a radio", "video_id": "video12785", "sen_id": 200110}, {"caption": "a guy in an orange jacket driving a truck with a tree on it and a guy in a blue shirt following behind him in another car talking on a radio", "video_id": "video12785", "sen_id": 200111}, {"caption": "a man nervously drives a large vehicle while the man driving behind mocks him", "video_id": "video12785", "sen_id": 200112}, {"caption": "a man in blue t-shirt is excitedly saying something on mobile phone while driving a car", "video_id": "video12785", "sen_id": 200113}, {"caption": "crazy british guys ride down the highway having fun", "video_id": "video12785", "sen_id": 200114}, {"caption": "two men ride in cars on the highway and laugh", "video_id": "video12785", "sen_id": 200115}, {"caption": "there is a tshirt man driving a car", "video_id": "video12785", "sen_id": 200116}, {"caption": "a man pulling a very large trailer with a small car", "video_id": "video12785", "sen_id": 200117}, {"caption": "a an excerpt from the britsh show top gear shows the drivers pulling a mock trailer with a large green plant beside a semi on the highway", "video_id": "video12785", "sen_id": 200118}, {"caption": "a man with blue striped t-shirt yells with happiness telling about the entertainment he had", "video_id": "video12785", "sen_id": 200119}, {"caption": "a man with long hair wears a local tee shirt in front of a blue red and yellow flag with a backdrop of a fortified city called cartagena", "video_id": "video11437", "sen_id": 200120}, {"caption": "a young man with long hair stands near a flag with the city behind him", "video_id": "video11437", "sen_id": 200121}, {"caption": "a man stands speaking under a waving flag over looking a hill before the city and a cannon are shown", "video_id": "video11437", "sen_id": 200122}, {"caption": "a man is standing in front of a columbian flag and talking", "video_id": "video11437", "sen_id": 200123}, {"caption": "a man with long hair is describing the beautiful scenery", "video_id": "video11437", "sen_id": 200124}, {"caption": "long haired man speaking spanish talking about cartagena de indias", "video_id": "video11437", "sen_id": 200125}, {"caption": "a spanish video of scenes of columbia", "video_id": "video11437", "sen_id": 200126}, {"caption": "a tourist visits a set of historic sites on his trip through a city", "video_id": "video11437", "sen_id": 200127}, {"caption": "a yellow blue and red striped flag flows in a breeze while a man with long hair and wearing a white shirt stands under then a series of landscapes canbe seen", "video_id": "video11437", "sen_id": 200128}, {"caption": "a long haired man talking besides a colombian flag some ruins of a castle", "video_id": "video11437", "sen_id": 200129}, {"caption": "a man standing under a columbian flag and talking in a foregin language", "video_id": "video11437", "sen_id": 200130}, {"caption": "footage of an old style fort with a man talking about it", "video_id": "video11437", "sen_id": 200131}, {"caption": "a man is talking about different areas in spanish", "video_id": "video11437", "sen_id": 200132}, {"caption": "a man is speaking about columbia in a spanish language they are showcasing the environment he is speaking on", "video_id": "video11437", "sen_id": 200133}, {"caption": "a man talking in spanish talks by a large flowing flag", "video_id": "video11437", "sen_id": 200134}, {"caption": "a man wearing a white shirt standing in a dirt field under a flag", "video_id": "video11437", "sen_id": 200135}, {"caption": "a man in a white shirt is talking in a foreign language about columbia", "video_id": "video11437", "sen_id": 200136}, {"caption": "a man is tallkng about a countries and shown natures", "video_id": "video11437", "sen_id": 200137}, {"caption": "a guy in a white shirt hangs out in cartagena colombia", "video_id": "video11437", "sen_id": 200138}, {"caption": "the young man in white dress is giving a great speech about flags", "video_id": "video11437", "sen_id": 200139}, {"caption": "a white cat nods with the music beat a large cat falls while jumping toward a window a young man talks about a purchase and a cat sings with ears pulled back", "video_id": "video10051", "sen_id": 200140}, {"caption": "a large white cat bobs back and forth as if he were dancing to music", "video_id": "video10051", "sen_id": 200141}, {"caption": "a white cat is bobbing its head to music", "video_id": "video10051", "sen_id": 200142}, {"caption": "cats making people laugh in a few clips", "video_id": "video10051", "sen_id": 200143}, {"caption": "clips of cats dancing to music falling and making crazy sounds", "video_id": "video10051", "sen_id": 200144}, {"caption": "cats doing weird things in a few short clips", "video_id": "video10051", "sen_id": 200145}, {"caption": "this video depicts cats doing funny things in the first scene a white cat bops its head to music in the second a cat attempts to jump into a window but fails the last cat makes an odd noise", "video_id": "video10051", "sen_id": 200146}, {"caption": "different scenes of cats doing silly things and a man talking", "video_id": "video10051", "sen_id": 200147}, {"caption": "cats are dancing jumping and singing in this adorable clip", "video_id": "video10051", "sen_id": 200148}, {"caption": "the video shows three different cats being silly", "video_id": "video10051", "sen_id": 200149}, {"caption": "a cat bobs its head to music another cat attempts and fails to make a jump a man talks about buying crocs and finally a cat makes a loud repetitive noise", "video_id": "video10051", "sen_id": 200150}, {"caption": "a cat bobbing his head a cat missing a leap and a cat that that looks like it's talking", "video_id": "video10051", "sen_id": 200151}, {"caption": "a white cat bobs its head to music an orange can falls off a window and another cat makes a silly noise", "video_id": "video10051", "sen_id": 200152}, {"caption": "the cat see the food and jump the window side", "video_id": "video10051", "sen_id": 200153}, {"caption": "lots of cats doing funny and silly things", "video_id": "video10051", "sen_id": 200154}, {"caption": "a white cat bobs its head to what is love as if it s dancing a yellow and white cat is seen attempting to jump", "video_id": "video10051", "sen_id": 200155}, {"caption": "there is a wight cat and cat is dancing", "video_id": "video10051", "sen_id": 200156}, {"caption": "a white cat nodding its head to a song followed by an orange cat missing a jump and a cat yelling", "video_id": "video10051", "sen_id": 200157}, {"caption": "a white color cat is shaking her neck and a brown cat jumps over", "video_id": "video10051", "sen_id": 200158}, {"caption": "a white cat is listening to the music and dancing and a cat giving a funny comedy", "video_id": "video10051", "sen_id": 200159}, {"caption": "on stage several women model sparkling outfits", "video_id": "video11773", "sen_id": 200160}, {"caption": "taylor swift performing at an awards show singing one of her songs", "video_id": "video11773", "sen_id": 200161}, {"caption": "women dancing a singing to a song on stage", "video_id": "video11773", "sen_id": 200162}, {"caption": "taylor swift singing while models walk a runway", "video_id": "video11773", "sen_id": 200163}, {"caption": "models are wearing snow white costumes and taylor swift is singing", "video_id": "video11773", "sen_id": 200164}, {"caption": "a woman in a silver mini-dress sings into a microphone while models walk on a snowy runway wearing white underwear and body stockings decorated with flowers snowflakes feathers and glitter", "video_id": "video11773", "sen_id": 200165}, {"caption": "a woman is singing during an upscale fashion show and models are walking the runway", "video_id": "video11773", "sen_id": 200166}, {"caption": "a group of models wearing underwear march along a runway at a fashion show", "video_id": "video11773", "sen_id": 200167}, {"caption": "a woman singing as models in lingerie walk on a glittered runway", "video_id": "video11773", "sen_id": 200168}, {"caption": "women wearing revealing outfits are walking down a catwalk", "video_id": "video11773", "sen_id": 200169}, {"caption": "a woman in sparkling sequence sings mid-stage as models walk the runway wearing fantastic outfits with snow falling around them", "video_id": "video11773", "sen_id": 200170}, {"caption": "the modelling girls play the song and make the ramp walk on the stage", "video_id": "video11773", "sen_id": 200171}, {"caption": "a girl is singing on a stage at a fashion show while other models are displaying their garments", "video_id": "video11773", "sen_id": 200172}, {"caption": "women model elaborate fashions while taylor swift sings", "video_id": "video11773", "sen_id": 200173}, {"caption": "an pop singer taylor swift on the live event in an fashion show during the new launch of the modern cloths", "video_id": "video11773", "sen_id": 200174}, {"caption": "women wearing highly decorative underwear walk up and down a runway as a woman stands at the front of the runway and sings", "video_id": "video11773", "sen_id": 200175}, {"caption": "a song and dance performance with models on stage", "video_id": "video11773", "sen_id": 200176}, {"caption": "taylor swift is dancing and singing in a dress beside strangely dressed models", "video_id": "video11773", "sen_id": 200177}, {"caption": "a beauty girls are dressed well and walking in the fashion show", "video_id": "video11773", "sen_id": 200178}, {"caption": "a beautifully styled victoria s secert angels concert with taylor swift", "video_id": "video11773", "sen_id": 200179}, {"caption": "a man creating art by slicing a cantaloupe", "video_id": "video10016", "sen_id": 200180}, {"caption": "chefs in a kitchen carving melons into amazing figures", "video_id": "video10016", "sen_id": 200181}, {"caption": "a chef is putting the finishing touches on a fruit carving in a commercial kitchen", "video_id": "video10016", "sen_id": 200182}, {"caption": "check cutting up fruit into an intricate design in the back of a kitchen", "video_id": "video10016", "sen_id": 200183}, {"caption": "a chef in a commercial kitchen carves a cantaloupe into a beautiful flower design", "video_id": "video10016", "sen_id": 200184}, {"caption": "a chef skillfully carves various large fruits into intricate beautiful edible sculptures in a restaurant kitchen", "video_id": "video10016", "sen_id": 200185}, {"caption": "a chef decoratively cuts a cantaloupe", "video_id": "video10016", "sen_id": 200186}, {"caption": "a chef is cutting open the fruit and carving it", "video_id": "video10016", "sen_id": 200187}, {"caption": "a chef makes ornate flowers and art out of melons", "video_id": "video10016", "sen_id": 200188}, {"caption": "a cook prepares fruit in the shape of a flower for guests", "video_id": "video10016", "sen_id": 200189}, {"caption": "a man in white carefully cutting a big fruit", "video_id": "video10016", "sen_id": 200190}, {"caption": "a man sliceing up a coconut on a table with a knife", "video_id": "video10016", "sen_id": 200191}, {"caption": "someone is decoratively carving a melon in a kitchen", "video_id": "video10016", "sen_id": 200192}, {"caption": "a man in white cap is preparing food in kitchen", "video_id": "video10016", "sen_id": 200193}, {"caption": " in a commercial kitchen is artfully cutting a green melon into a yellow flower with layers of petals near a display of finished projects in the shapes of a toad", "video_id": "video10016", "sen_id": 200194}, {"caption": "a chef is garnish with a vegetables and placing on table", "video_id": "video10016", "sen_id": 200195}, {"caption": "a chef in the kitchen doing some thing craft work in the pumpkin", "video_id": "video10016", "sen_id": 200196}, {"caption": "there is a man in white dressing making a dish", "video_id": "video10016", "sen_id": 200197}, {"caption": "a man is slicing a piece of fruit to look like a large flower", "video_id": "video10016", "sen_id": 200198}, {"caption": "a chef is carving a piece of fruit artfully", "video_id": "video10016", "sen_id": 200199}, {"caption": "a man who is stirring the shrimp and stew around in a pan", "video_id": "video11577", "sen_id": 200200}, {"caption": "people discussing how to cook the meal correctly", "video_id": "video11577", "sen_id": 200201}, {"caption": "a person cooking shrimp in a thin tomato sauce in a black pan", "video_id": "video11577", "sen_id": 200202}, {"caption": "a person cooking shrimp in sauce in a black pan", "video_id": "video11577", "sen_id": 200203}, {"caption": "a chef demonstrates a recipe by stirring shrimp in a small skillet", "video_id": "video11577", "sen_id": 200204}, {"caption": "a chef makes a stew by stirring shrimp in a sauce", "video_id": "video11577", "sen_id": 200205}, {"caption": "a male voiceover a spoon and frying pan explain a red sauce while striring and talking to a female voiceover", "video_id": "video11577", "sen_id": 200206}, {"caption": "a person stirring shrimp and sauce in a pan", "video_id": "video11577", "sen_id": 200207}, {"caption": "a hand stirs a shrimp and tomato stew as a man and a woman discuss it", "video_id": "video11577", "sen_id": 200208}, {"caption": "a man cooking and stirring some shrimp in a skillet with a sauce", "video_id": "video11577", "sen_id": 200209}, {"caption": "a woman is cooking some spicy food and she is stringing with a spoon", "video_id": "video11577", "sen_id": 200210}, {"caption": "a dish is prepared by two hands stir a large skillet with shrimp vegetables and sauce in it", "video_id": "video11577", "sen_id": 200211}, {"caption": "the man is cooking shrimp and the sauce is getting thicker and becoming a stew", "video_id": "video11577", "sen_id": 200212}, {"caption": "a man in a kitchen stirring a red sauce with shrimp in it", "video_id": "video11577", "sen_id": 200213}, {"caption": "the man is showing how to cook shrimp allowing the sauce to permeate the shrimp", "video_id": "video11577", "sen_id": 200214}, {"caption": "a man is cooking large shrimp in a red sauce he continues to to stir the food in a black pan", "video_id": "video11577", "sen_id": 200215}, {"caption": "a man demonstrates and speaks about a recipe for shrimps in sauce he is stirring a large saucepan or wok", "video_id": "video11577", "sen_id": 200216}, {"caption": "a cook explains how the tomato sauce will premeate the shrimp used in his stew dish", "video_id": "video11577", "sen_id": 200217}, {"caption": "a man is carefully cooking seafood on the stove", "video_id": "video11577", "sen_id": 200218}, {"caption": "a man stirring shrimp in a red sauce in a skillet", "video_id": "video11577", "sen_id": 200219}, {"caption": "a scared woman looks at a man transforming into a vampire a horrified man looks at a woman on the floor a man wearing a matador outfit explains and a woman consoles a girl with facial wounds", "video_id": "video11401", "sen_id": 200220}, {"caption": "clips of different tv shows being played in succession", "video_id": "video11401", "sen_id": 200221}, {"caption": "a woman is shown being scared of the monster", "video_id": "video11401", "sen_id": 200222}, {"caption": "a few pairs of actors and actresses perform in separate scenes", "video_id": "video11401", "sen_id": 200223}, {"caption": "a man morphs into a monster and tries to kiss a scared blond woman", "video_id": "video11401", "sen_id": 200224}, {"caption": "a vampire trying to suck someone's blood", "video_id": "video11401", "sen_id": 200225}, {"caption": "a man wearing a red shirt and talking to a woman", "video_id": "video11401", "sen_id": 200226}, {"caption": "honorable mentions angel once upon a time and touched by an angel", "video_id": "video11401", "sen_id": 200227}, {"caption": "a man talking to a woman and his face turning into a monster another man finding a dead woman some people talking", "video_id": "video11401", "sen_id": 200228}, {"caption": "a woman talks about her top picks for vampire based entertainment on television", "video_id": "video11401", "sen_id": 200229}, {"caption": "a woman states that these are their honorable mentions before their top pick and then a few short clips of tv shows comes on", "video_id": "video11401", "sen_id": 200230}, {"caption": "extract of the movies angel and once upon a time in a review", "video_id": "video11401", "sen_id": 200231}, {"caption": "a monster pulls a woman by her head and bites her neck and then a man appears shocked as he sees a woman lying lifeless on the floor", "video_id": "video11401", "sen_id": 200232}, {"caption": "a vampire biting a woman a man talking to a woman and a sick girl in bed talking to a woman", "video_id": "video11401", "sen_id": 200233}, {"caption": "multiple movie scenes with men and woman talking to one another", "video_id": "video11401", "sen_id": 200234}, {"caption": "several television shows are being advertised on a channel called mojo", "video_id": "video11401", "sen_id": 200235}, {"caption": "a lady bitten by man who is teeth is long", "video_id": "video11401", "sen_id": 200236}, {"caption": "a lady giving review about the horror movies", "video_id": "video11401", "sen_id": 200237}, {"caption": "a mans face turns into a monster adn he tries to kiss a scared woman", "video_id": "video11401", "sen_id": 200238}, {"caption": "short clips of honorable mentions from tv shows including angel touched by an angel and once upon a time", "video_id": "video11401", "sen_id": 200239}, {"caption": "a baby lays on top of their mom and wakes her up by farting in her face", "video_id": "video12781", "sen_id": 200240}, {"caption": "a mother spending time with her daughter in the bed", "video_id": "video12781", "sen_id": 200241}, {"caption": "a baby in a red stripped onsie playing on top of a sleeping woman", "video_id": "video12781", "sen_id": 200242}, {"caption": "a baby quirms and babbles while lying across its mother", "video_id": "video12781", "sen_id": 200243}, {"caption": "a woman wearing a grey teeshirt with a baby wearing a pink and white striped onesie who is laying across her and passes gas into the woman's face", "video_id": "video12781", "sen_id": 200244}, {"caption": "an adorable baby girl speaking baby talk while laying across her mom suddenly farts in moms face", "video_id": "video12781", "sen_id": 200245}, {"caption": "a baby lays across her sleeping mother and farts in her face", "video_id": "video12781", "sen_id": 200246}, {"caption": "baby laying across mommas face and fartingpooting", "video_id": "video12781", "sen_id": 200247}, {"caption": "a baby climbs over her sleeping mom and has flatulence in the moms face", "video_id": "video12781", "sen_id": 200248}, {"caption": "a woman is lying down with a baby lying across her neck", "video_id": "video12781", "sen_id": 200249}, {"caption": "a woman with a baby in a pink and white striped onesie", "video_id": "video12781", "sen_id": 200250}, {"caption": "a baby is laying on her mother giggling and making noises", "video_id": "video12781", "sen_id": 200251}, {"caption": "a women in blue t-shirt is enjoying playing with her kid", "video_id": "video12781", "sen_id": 200252}, {"caption": "a woman plays with a baby on a bed", "video_id": "video12781", "sen_id": 200253}, {"caption": "a baby wearing a pink and white stripped onsie is laying across a women s chest and then the baby lets off some gas", "video_id": "video12781", "sen_id": 200254}, {"caption": "a little baby lays on top of her momma", "video_id": "video12781", "sen_id": 200255}, {"caption": "a baby is playing with her father by sitting side of him", "video_id": "video12781", "sen_id": 200256}, {"caption": "a baby and her mother play on a bed and the baby farts in the mother s face", "video_id": "video12781", "sen_id": 200257}, {"caption": "a woman is sleeping and a baby is playing", "video_id": "video12781", "sen_id": 200258}, {"caption": "a baby in pink dress and woman sleeping shaking legs displaying on screen", "video_id": "video12781", "sen_id": 200259}, {"caption": "a man is", "video_id": "video12738", "sen_id": 200260}, {"caption": "a man in a white t-shirt is talking through a megaphone", "video_id": "video12738", "sen_id": 200261}, {"caption": "a runner from australia is recognized for winning a race in america an australian runner is honored after winning a race in america a runner wearing a green track suit is honored after winning a race", "video_id": "video12738", "sen_id": 200262}, {"caption": "a man giving out trophies at a race", "video_id": "video12738", "sen_id": 200263}, {"caption": "man in a white t-shirt standing on a chair calling out people's run times", "video_id": "video12738", "sen_id": 200264}, {"caption": "a man is annoucing stats for a runner", "video_id": "video12738", "sen_id": 200265}, {"caption": "a large group of people gather to watch an outdoor awards ceremony", "video_id": "video12738", "sen_id": 200266}, {"caption": "a big man with a white shirt talking to people", "video_id": "video12738", "sen_id": 200267}, {"caption": "a white man in a white t-shirt is talking through a megaphone", "video_id": "video12738", "sen_id": 200268}, {"caption": "a man is speaking in a speaker announcing first place", "video_id": "video12738", "sen_id": 200269}, {"caption": "a man with a megaphone announces the winner of a running competition", "video_id": "video12738", "sen_id": 200270}, {"caption": "a man in white t-shirt announcing the winners name", "video_id": "video12738", "sen_id": 200271}, {"caption": "a man announcing the winner of a race through a megaphone", "video_id": "video12738", "sen_id": 200272}, {"caption": "a man in a park announcing the names of the winner and people here and there around him", "video_id": "video12738", "sen_id": 200273}, {"caption": "people gathered outside are having fun time", "video_id": "video12738", "sen_id": 200274}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12738", "sen_id": 200275}, {"caption": "a man announcing the first place marathon winner from australia who has won many awards in the new york area that summer", "video_id": "video12738", "sen_id": 200276}, {"caption": "a man is speaking through a megaphone introducing a runner from australia", "video_id": "video12738", "sen_id": 200277}, {"caption": "a man in white tshirt talking to public", "video_id": "video12738", "sen_id": 200278}, {"caption": "standing on the meadow a man is announcing the winner of an event took place where a lot of people assembled", "video_id": "video12738", "sen_id": 200279}, {"caption": "a couple of men walking on a runway", "video_id": "video10284", "sen_id": 200280}, {"caption": "men walking a fashiion runway in casual clothing", "video_id": "video10284", "sen_id": 200281}, {"caption": "runway models are showing off the latest fashion trends", "video_id": "video10284", "sen_id": 200282}, {"caption": "runway models are showing off the latest fashion trends", "video_id": "video10284", "sen_id": 200283}, {"caption": "men walk the runway in a fashion show", "video_id": "video10284", "sen_id": 200284}, {"caption": "a male fashion show with modern outfits", "video_id": "video10284", "sen_id": 200285}, {"caption": "men are walking down a fashion walkway in different outfits", "video_id": "video10284", "sen_id": 200286}, {"caption": "men walking crossing runways at a fashion show", "video_id": "video10284", "sen_id": 200287}, {"caption": "a group of young men dressed in fashionable outfits walk a runway in a show", "video_id": "video10284", "sen_id": 200288}, {"caption": "many men cross paths while walking in a runway show", "video_id": "video10284", "sen_id": 200289}, {"caption": "male models walk the runway to showcase fashion", "video_id": "video10284", "sen_id": 200290}, {"caption": "male models are walking on a runway during a fashion show in various colored outfits", "video_id": "video10284", "sen_id": 200291}, {"caption": "it s a fashion show where a guy in the red suit with specs on is walking the ramp", "video_id": "video10284", "sen_id": 200292}, {"caption": "models walk on an perpendicular and crisscrossing runway a man wears a hat pulled down over his ears and a man wears two-toned wing tipped shoes", "video_id": "video10284", "sen_id": 200293}, {"caption": "on a men fashion show different people with different dress walking on the ramp", "video_id": "video10284", "sen_id": 200294}, {"caption": "the handsome man in red suit is walking through the ramp along with other models", "video_id": "video10284", "sen_id": 200295}, {"caption": "many young boys participating in fashion show competition", "video_id": "video10284", "sen_id": 200296}, {"caption": "men are walking on several runways in front of a crowd", "video_id": "video10284", "sen_id": 200297}, {"caption": "male models walking on a catwalk at a fashion show", "video_id": "video10284", "sen_id": 200298}, {"caption": "a man wearing a yellow shirt is walked down a runway", "video_id": "video10284", "sen_id": 200299}, {"caption": "a parrot hides inside a pet carrier placed on an examination table while a veterinary assistant slowly approaches with a towel", "video_id": "video10780", "sen_id": 200300}, {"caption": "tips are given for how to handle parrots approach the parrot calmly and quietly keep the towel out of sight until you are ready to begin", "video_id": "video10780", "sen_id": 200301}, {"caption": "a woman gets ready to take a bird out of a plastic cage", "video_id": "video10780", "sen_id": 200302}, {"caption": "a woman is talking about how to approach a bird in a cage", "video_id": "video10780", "sen_id": 200303}, {"caption": "a lady in a vets office opens a cage with a scared cat inside", "video_id": "video10780", "sen_id": 200304}, {"caption": "a female veterinarian attempts to coax an animal out of a small cage", "video_id": "video10780", "sen_id": 200305}, {"caption": "a veterinary assistant shows how to calm approach a parrot", "video_id": "video10780", "sen_id": 200306}, {"caption": "how to remove a parrot from a kennelcage safety tips for removing a parrot from a cagekennel", "video_id": "video10780", "sen_id": 200307}, {"caption": "a woman demonstrates how to safely get a parrot out of a pet carrier", "video_id": "video10780", "sen_id": 200308}, {"caption": "a woman begins to remove a bird from a pet carrier", "video_id": "video10780", "sen_id": 200309}, {"caption": "a girl looking into a cage with an animal in it", "video_id": "video10780", "sen_id": 200310}, {"caption": "there is a women operating a machine on the table", "video_id": "video10780", "sen_id": 200311}, {"caption": "one beautiful and lovely women had towel in hand", "video_id": "video10780", "sen_id": 200312}, {"caption": "a color cloth and a blue dress girl wearing cloth brown cloth in her hand opening mesh type box displaying on screen", "video_id": "video10780", "sen_id": 200313}, {"caption": "a women in blue top is working on some machine", "video_id": "video10780", "sen_id": 200314}, {"caption": "a veterinarian demonstrates how to remove a parrot from a carrying box for an examination", "video_id": "video10780", "sen_id": 200315}, {"caption": "3 towels in different color the girl opens the cage with the towel in the hand", "video_id": "video10780", "sen_id": 200316}, {"caption": "a person is seeing a oven on the table", "video_id": "video10780", "sen_id": 200317}, {"caption": "a person explaing on how to catch a bird from its cage using a towel", "video_id": "video10780", "sen_id": 200318}, {"caption": "some clothes are folded and kept and a machine is on the table", "video_id": "video10780", "sen_id": 200319}, {"caption": "a women singing while many people are grabbing her", "video_id": "video10047", "sen_id": 200320}, {"caption": "a music video of some girl being stripped by people", "video_id": "video10047", "sen_id": 200321}, {"caption": "a woman with multiple men groping her while she sings", "video_id": "video10047", "sen_id": 200322}, {"caption": "a clip from a music video about eating a woman", "video_id": "video10047", "sen_id": 200323}, {"caption": "a woman in a white dress is grabbed by other people", "video_id": "video10047", "sen_id": 200324}, {"caption": "a women singing while people are grabbing her", "video_id": "video10047", "sen_id": 200325}, {"caption": "a blonde woman is shown being grabbed many men", "video_id": "video10047", "sen_id": 200326}, {"caption": "a woman is trying to wrestle her way out of some people", "video_id": "video10047", "sen_id": 200327}, {"caption": "a women in a white dress is being molested by many men", "video_id": "video10047", "sen_id": 200328}, {"caption": "a blond women is being molested by many men", "video_id": "video10047", "sen_id": 200329}, {"caption": "a person is singing to lady gaga's monster in a music video", "video_id": "video10047", "sen_id": 200330}, {"caption": "a woman wearing a white shirt is being stripped and groped by several men", "video_id": "video10047", "sen_id": 200331}, {"caption": "a pop singer singing song and she is molested by other guys", "video_id": "video10047", "sen_id": 200332}, {"caption": "a terrific song by a lady and hot scenes accompany", "video_id": "video10047", "sen_id": 200333}, {"caption": "music video with women and men dancing in a sexual manner", "video_id": "video10047", "sen_id": 200334}, {"caption": "a woman is singing the song with very feeling in her voice", "video_id": "video10047", "sen_id": 200335}, {"caption": "a woman is being molested by some people", "video_id": "video10047", "sen_id": 200336}, {"caption": "there is a woman is singing and acting with other guise", "video_id": "video10047", "sen_id": 200337}, {"caption": "a man and lady is hugging each othr", "video_id": "video10047", "sen_id": 200338}, {"caption": "a woman dances and sings a song in the middle of some shirtless men", "video_id": "video10047", "sen_id": 200339}, {"caption": "different angle views of crescent bay point park", "video_id": "video10446", "sen_id": 200340}, {"caption": "a park that has a beach and a great view", "video_id": "video10446", "sen_id": 200341}, {"caption": "bright beach scenery in an open wooded park on a sunny day", "video_id": "video10446", "sen_id": 200342}, {"caption": "an overall view of crescent bay point park from above", "video_id": "video10446", "sen_id": 200343}, {"caption": "real estate description of an oceanside park next to a row of houses", "video_id": "video10446", "sen_id": 200344}, {"caption": "a beautiful beach view is shown with the waves crashing", "video_id": "video10446", "sen_id": 200345}, {"caption": "the side view of a shore line near a town", "video_id": "video10446", "sen_id": 200346}, {"caption": "a bay shoreline and beach on a sunny day", "video_id": "video10446", "sen_id": 200347}, {"caption": "footage of a bay and the ocean is shown while a woman describes the location", "video_id": "video10446", "sen_id": 200348}, {"caption": "i view of the ocean overlooking a small town", "video_id": "video10446", "sen_id": 200349}, {"caption": "a line of white waves laps a curved stretch of beach in front of a coastal town surrounded with lush growth and mountains", "video_id": "video10446", "sen_id": 200350}, {"caption": "the camera pans over cresent bay as the waves come in", "video_id": "video10446", "sen_id": 200351}, {"caption": "a person describes a park near a large river where the views are famous", "video_id": "video10446", "sen_id": 200352}, {"caption": "there are some people walking on the hill side of the sea shore", "video_id": "video10446", "sen_id": 200353}, {"caption": "a beautiful view of a beach and the ocean", "video_id": "video10446", "sen_id": 200354}, {"caption": "a beautiful bay is displayed with calm soozing waters", "video_id": "video10446", "sen_id": 200355}, {"caption": "a person showing beach and mountains with clear sky", "video_id": "video10446", "sen_id": 200356}, {"caption": "a video of the scenery of crescent point bay park", "video_id": "video10446", "sen_id": 200357}, {"caption": "a woman explain about a crescent bay park", "video_id": "video10446", "sen_id": 200358}, {"caption": "a historical natural nice scene adventures place to look grass land with water", "video_id": "video10446", "sen_id": 200359}, {"caption": "a pan with brown sugar water and honey in it", "video_id": "video12261", "sen_id": 200360}, {"caption": "a person is demonstrating a recipe with brown sugar water and honey", "video_id": "video12261", "sen_id": 200361}, {"caption": "man cooking and putting sugar honey and water into a bowl to stir", "video_id": "video12261", "sen_id": 200362}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video12261", "sen_id": 200363}, {"caption": "brown sugar water and honey is added into a pan", "video_id": "video12261", "sen_id": 200364}, {"caption": "a man is adding sugar and water into a bowl", "video_id": "video12261", "sen_id": 200365}, {"caption": "cooking ingredients being placed into a small silver saucepan", "video_id": "video12261", "sen_id": 200366}, {"caption": "an instructional cooking video which combines water brown sugar and honey", "video_id": "video12261", "sen_id": 200367}, {"caption": "a man cooking syrup in a silver pan", "video_id": "video12261", "sen_id": 200368}, {"caption": "a metal mixing bowl contains oil when a person dumps in brown sugar pours in water and drizzles in honey", "video_id": "video12261", "sen_id": 200369}, {"caption": "brown sugar water and honey are dumped into a mixing bowl", "video_id": "video12261", "sen_id": 200370}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12261", "sen_id": 200371}, {"caption": "the guy added some brown sugar water and some honey into the pan and giving it a stir", "video_id": "video12261", "sen_id": 200372}, {"caption": "a man is mixing honey sugar and water in a bowl", "video_id": "video12261", "sen_id": 200373}, {"caption": "a person adding ingredients to a silver bowl then stirring", "video_id": "video12261", "sen_id": 200374}, {"caption": "some brown liquid is being poured in a bowl", "video_id": "video12261", "sen_id": 200375}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12261", "sen_id": 200376}, {"caption": "a man is showing basic of cooking using a pan", "video_id": "video12261", "sen_id": 200377}, {"caption": "a chef makes a glaze in a small pan with four ingredients", "video_id": "video12261", "sen_id": 200378}, {"caption": "a person adding brown sugar water and some honey on a steel bowl", "video_id": "video12261", "sen_id": 200379}, {"caption": "a man who is enjoying his time snowboarding", "video_id": "video12352", "sen_id": 200380}, {"caption": "a man skiing down a mountain while doing tricks", "video_id": "video12352", "sen_id": 200381}, {"caption": "a skier careens down a slope at a rapid pace before diving off a small cliff", "video_id": "video12352", "sen_id": 200382}, {"caption": "a man rides his skis through clouds of fluffy white snow", "video_id": "video12352", "sen_id": 200383}, {"caption": "a skiier is going down a large mountain with snow behind him", "video_id": "video12352", "sen_id": 200384}, {"caption": "a skiier is going right down the mountain by themself", "video_id": "video12352", "sen_id": 200385}, {"caption": "numerous shots of a person in red pants and a black jacket downhill skiing", "video_id": "video12352", "sen_id": 200386}, {"caption": "a skiier jumps while skiing down a snowy mountain side", "video_id": "video12352", "sen_id": 200387}, {"caption": "a skier does some tricks while plowing through some powdery snow", "video_id": "video12352", "sen_id": 200388}, {"caption": "a man skieing down the snow covered mountain", "video_id": "video12352", "sen_id": 200389}, {"caption": "a woman snow sledding in the on the hills", "video_id": "video12352", "sen_id": 200390}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video12352", "sen_id": 200391}, {"caption": "a person is skiig down a hill and kicking up a snow spray", "video_id": "video12352", "sen_id": 200392}, {"caption": "guy doing dangerous snow skiing", "video_id": "video12352", "sen_id": 200393}, {"caption": "a person skiing on a snow covered land", "video_id": "video12352", "sen_id": 200394}, {"caption": "this is a skier on a snowy slope winding around trees", "video_id": "video12352", "sen_id": 200395}, {"caption": "a skier slides down a mountain with lots of snow flying up in the air", "video_id": "video12352", "sen_id": 200396}, {"caption": "an adventurer in red ski pants and a black jacket is traversing down a very steep snow covered mountain", "video_id": "video12352", "sen_id": 200397}, {"caption": "an professional skier makes daring jumps over rock faces while downhill skiing", "video_id": "video12352", "sen_id": 200398}, {"caption": "a snow skating man jumping from up towards down in snow land displaying on screen", "video_id": "video12352", "sen_id": 200399}, {"caption": "world champion tennis player making life decisions", "video_id": "video10923", "sen_id": 200400}, {"caption": "a woman in commenting while sets of people play a game of badminton", "video_id": "video10923", "sen_id": 200401}, {"caption": "four men on two teams are playing tennis", "video_id": "video10923", "sen_id": 200402}, {"caption": "two indonesian badminton players are shown winning against different opponents", "video_id": "video10923", "sen_id": 200403}, {"caption": "a man serves the birdie and plays badminton in a competition with another team and the usa flag waves in the sky outside", "video_id": "video10923", "sen_id": 200404}, {"caption": "a couple of men playing doubles tennis match", "video_id": "video10923", "sen_id": 200405}, {"caption": "there are four men playing badminton and one of their names is tony", "video_id": "video10923", "sen_id": 200406}, {"caption": "two men in red shirts are playing tennis with two men in white shirts", "video_id": "video10923", "sen_id": 200407}, {"caption": "a doubles racquetball match is being played against two different countries", "video_id": "video10923", "sen_id": 200408}, {"caption": "a woman is pronouncing a group of athletic men on a court competing in a game of badminton", "video_id": "video10923", "sen_id": 200409}, {"caption": "four men play doubles tennis one team is in red and the other team is in white", "video_id": "video10923", "sen_id": 200410}, {"caption": "two men playing tennins inside with two other men", "video_id": "video10923", "sen_id": 200411}, {"caption": "two men s doubles badminton teams plays a match", "video_id": "video10923", "sen_id": 200412}, {"caption": "all persons are playing badmintion game each other on a stadium", "video_id": "video10923", "sen_id": 200413}, {"caption": "a badminton doubles pair in red shirts and black shorts share their side of the green court with one player standing in back of the other", "video_id": "video10923", "sen_id": 200414}, {"caption": "a group of athletic men are in a court competing a tennis game the players are determined to win", "video_id": "video10923", "sen_id": 200415}, {"caption": "four people match up on the indoor tennis courts", "video_id": "video10923", "sen_id": 200416}, {"caption": "two teams were playing a match on the stadium", "video_id": "video10923", "sen_id": 200417}, {"caption": "all person are playing badminton game on a court", "video_id": "video10923", "sen_id": 200418}, {"caption": "badminton double is taking place in the ground and the flag of usa dangles", "video_id": "video10923", "sen_id": 200419}, {"caption": "a flank or skirt steak recipe served with rice", "video_id": "video12854", "sen_id": 200420}, {"caption": "a person examines the skirt steak on the board", "video_id": "video12854", "sen_id": 200421}, {"caption": "woman giving details about cooking and quality of steak", "video_id": "video12854", "sen_id": 200422}, {"caption": "a chef talks about a piece of meat that she is preparing to use in a dish she will be cooking", "video_id": "video12854", "sen_id": 200423}, {"caption": "a female chef discusses a piece of meat she is preparing to use in a recipe", "video_id": "video12854", "sen_id": 200424}, {"caption": "a piece of uncooked steak on a plate being turned around and touched", "video_id": "video12854", "sen_id": 200425}, {"caption": "a person holds a steak and turns it over to show the bottom half", "video_id": "video12854", "sen_id": 200426}, {"caption": "a person prepares a piece of meat for consumption", "video_id": "video12854", "sen_id": 200427}, {"caption": "a woman hands holding a piece of steak a sharp knife is beside the steak", "video_id": "video12854", "sen_id": 200428}, {"caption": "a woman is talking about a steak on a cutting board", "video_id": "video12854", "sen_id": 200429}, {"caption": "a woman demonstrates how to prepared skirt steak to maximize flavor", "video_id": "video12854", "sen_id": 200430}, {"caption": "a piece of meat is on a white cutting board next to a knife", "video_id": "video12854", "sen_id": 200431}, {"caption": "a woman is showing and describing the qualities of a flank steak on a cutting board", "video_id": "video12854", "sen_id": 200432}, {"caption": "an inhome chef discusses a piece of flank steak that she is using in a recipe", "video_id": "video12854", "sen_id": 200433}, {"caption": "the woman examines the meat she is about to slice with the knife", "video_id": "video12854", "sen_id": 200434}, {"caption": "on white board meat is placedthen she takes in hand and rotates itthen knife is placed", "video_id": "video12854", "sen_id": 200435}, {"caption": "the woman talks about the flank steak she is about to cut", "video_id": "video12854", "sen_id": 200436}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12854", "sen_id": 200437}, {"caption": "a person is prepared to prepare a skirt steak with a knife", "video_id": "video12854", "sen_id": 200438}, {"caption": "the woman is showing a video on how to season and cook a delicious steak", "video_id": "video12854", "sen_id": 200439}, {"caption": "violent incidents in a humid forest village with men and women includes slapping abduction bombing and fighting", "video_id": "video11284", "sen_id": 200440}, {"caption": "all the action scenes from an action packed movie", "video_id": "video11284", "sen_id": 200441}, {"caption": "a man in a green shirt is holding a gun and running", "video_id": "video11284", "sen_id": 200442}, {"caption": "there is dangerous action in the jungle", "video_id": "video11284", "sen_id": 200443}, {"caption": "white man with blonde hair fighting with a machine gun in africa", "video_id": "video11284", "sen_id": 200444}, {"caption": "a man is getting slapped followed by guns being drawn someone screaming and the original man running away from a blast with a gun in his hand", "video_id": "video11284", "sen_id": 200445}, {"caption": "a group of people are dancing together outside", "video_id": "video11284", "sen_id": 200446}, {"caption": "leonardo decaprio starring in an action movie runs across the screen with a rifle and then explosions are shown behind him", "video_id": "video11284", "sen_id": 200447}, {"caption": "there are two men that are shown in a few different scenes of this movie one is of african decent and the other looks white this looks like the scenes of an action movie probably the movie blood diamond", "video_id": "video11284", "sen_id": 200448}, {"caption": "two men run around while trying to avoid getting shot at", "video_id": "video11284", "sen_id": 200449}, {"caption": "various scenes of men in the desert fighting", "video_id": "video11284", "sen_id": 200450}, {"caption": "there are many people fighting with each other", "video_id": "video11284", "sen_id": 200451}, {"caption": "there is a man running with a gun", "video_id": "video11284", "sen_id": 200452}, {"caption": "leonardo dicaprio is featured in several action movie clips", "video_id": "video11284", "sen_id": 200453}, {"caption": "a man looks down at men and a boy who are at the base of a green slope behind round gray boulders", "video_id": "video11284", "sen_id": 200454}, {"caption": "man is surrounded with his opponents and must kill them", "video_id": "video11284", "sen_id": 200455}, {"caption": "all persons are fighting each other in a hollywood movie", "video_id": "video11284", "sen_id": 200456}, {"caption": "a person is shooting with gun in his hand", "video_id": "video11284", "sen_id": 200457}, {"caption": "numerous men and a few women in a jungle setting interacting in various ways", "video_id": "video11284", "sen_id": 200458}, {"caption": "an action hero with a gun is navigating the dangers in a violent jungle environment", "video_id": "video11284", "sen_id": 200459}, {"caption": "resting my head on a man's shoulder in the store", "video_id": "video11430", "sen_id": 200460}, {"caption": "two men are sitting together and one leans towards the other and smiles", "video_id": "video11430", "sen_id": 200461}, {"caption": "a young man in a hat flirts and smiles at the camera as he sits next to an older bald man", "video_id": "video11430", "sen_id": 200462}, {"caption": "a young man with a black hat lays on an unsuspecting bald man with a red shirt", "video_id": "video11430", "sen_id": 200463}, {"caption": "two men are sitting together and waving at the camera", "video_id": "video11430", "sen_id": 200464}, {"caption": "a strange young man takes a selfie with a total stranger", "video_id": "video11430", "sen_id": 200465}, {"caption": "a young guy records a prank on an unsuspecting person", "video_id": "video11430", "sen_id": 200466}, {"caption": "a young man leaning against another man and smiling", "video_id": "video11430", "sen_id": 200467}, {"caption": "a young man resting his head on anothers shoulder", "video_id": "video11430", "sen_id": 200468}, {"caption": "a guy resting his head on a mans shoulder", "video_id": "video11430", "sen_id": 200469}, {"caption": "a male wearing a shirt with arabic characters looks and smiles at someone off camera while another man looks annoyed", "video_id": "video11430", "sen_id": 200470}, {"caption": "a man leans back against another man while smiling and taking a selfie video", "video_id": "video11430", "sen_id": 200471}, {"caption": "a young boy in a white t-shirt and black cap rests his head on a bald guy", "video_id": "video11430", "sen_id": 200472}, {"caption": "two men are standing looking at the camera and one greets", "video_id": "video11430", "sen_id": 200473}, {"caption": "an odd teenager puts his head on a total strangers shoulder", "video_id": "video11430", "sen_id": 200474}, {"caption": "a boy wearing red and white dress black hat sitting and smiling waving hand", "video_id": "video11430", "sen_id": 200475}, {"caption": "a guy sitting near a tonsured man with spike is posing for a snap", "video_id": "video11430", "sen_id": 200476}, {"caption": "a man is resting his head on another man s shoulder and waving at the camera", "video_id": "video11430", "sen_id": 200477}, {"caption": "a young man wearing white t-shirt and black cap is leaning on another man s shoulder", "video_id": "video11430", "sen_id": 200478}, {"caption": "two men in white and red dresses are staring and waving at the camera", "video_id": "video11430", "sen_id": 200479}, {"caption": "a women on the wall being slapped by a supernatural force", "video_id": "video10394", "sen_id": 200480}, {"caption": "a person is stuck on a wall possessed and being slapped", "video_id": "video10394", "sen_id": 200481}, {"caption": "woman hanging from a wall in a dirty room getting slapped by something not seen", "video_id": "video10394", "sen_id": 200482}, {"caption": "a woman is chained to the wall and slapped by an invisble creature", "video_id": "video10394", "sen_id": 200483}, {"caption": "a woman pinned against a wall in a room with light shining on her", "video_id": "video10394", "sen_id": 200484}, {"caption": "a young female positioned mid way up a wall", "video_id": "video10394", "sen_id": 200485}, {"caption": "a woman that is chained to a wall yanks back and forth in what looks like pain", "video_id": "video10394", "sen_id": 200486}, {"caption": "a wmoan stuck to a wall half way up it", "video_id": "video10394", "sen_id": 200487}, {"caption": "woman appears to be hanging on a wall and appears to be slapped by an evil sprit", "video_id": "video10394", "sen_id": 200488}, {"caption": "a woman is hanging from the wall and is being slapped by invisible being", "video_id": "video10394", "sen_id": 200489}, {"caption": "a woman is trapped on a wall and is being slapped by an invisible force then passes out", "video_id": "video10394", "sen_id": 200490}, {"caption": "a woman is suspended in the air against a wall getting slapped in the face by nothing", "video_id": "video10394", "sen_id": 200491}, {"caption": "a woman with long hair twitches violently against a wall twice before the sun rises and brightens up the room", "video_id": "video10394", "sen_id": 200492}, {"caption": "a woman is suspended against a wall and physically abused", "video_id": "video10394", "sen_id": 200493}, {"caption": "a woman in a white tank top with denim shorts is chained to the middle of a wall in a dirty room and is being tortured by an invisable assailant", "video_id": "video10394", "sen_id": 200494}, {"caption": "a ghost movie where a lady is hung to a wall and beat by someone", "video_id": "video10394", "sen_id": 200495}, {"caption": "a woman on a big screen is standing still", "video_id": "video10394", "sen_id": 200496}, {"caption": "a scene where an actors is hanging on a wall and is tortured by an unseen force", "video_id": "video10394", "sen_id": 200497}, {"caption": "a girl was hanging in the wall while some ghost beating her", "video_id": "video10394", "sen_id": 200498}, {"caption": "woman in black shorts and yellow top is repeatedly smacked in the face", "video_id": "video10394", "sen_id": 200499}, {"caption": "the different types of views from an airplane window", "video_id": "video11553", "sen_id": 200500}, {"caption": "a man is dancing and birds are flying overhead", "video_id": "video11553", "sen_id": 200501}, {"caption": "a view of the city of dubai first from a plane then from one of its canals", "video_id": "video11553", "sen_id": 200502}, {"caption": "airplanes line up around a terminal at a major airport", "video_id": "video11553", "sen_id": 200503}, {"caption": "scenery rushes by out the window of a plane followed by airport vistas", "video_id": "video11553", "sen_id": 200504}, {"caption": "a story of scenes showing a flight into and travel around dubai", "video_id": "video11553", "sen_id": 200505}, {"caption": "the view through the window of an airplane that lands in dubai", "video_id": "video11553", "sen_id": 200506}, {"caption": "a cluster of airplanes and boats being shown", "video_id": "video11553", "sen_id": 200507}, {"caption": "the man is throwing bird food to a flock of seagulls flying around the city", "video_id": "video11553", "sen_id": 200508}, {"caption": "the view from outside a plane window then various planes and people throwing food at birds", "video_id": "video11553", "sen_id": 200509}, {"caption": "an airplane passenger takes pictures out the window of the plan of mountains", "video_id": "video11553", "sen_id": 200510}, {"caption": "looking out a window while flying on an airplane then seeing other planes at an airport", "video_id": "video11553", "sen_id": 200511}, {"caption": "views outside of airplane windows and then vistas from dubai", "video_id": "video11553", "sen_id": 200512}, {"caption": "see through aeroplane large city peoples in dubai", "video_id": "video11553", "sen_id": 200513}, {"caption": "aerial view of several locations in a city", "video_id": "video11553", "sen_id": 200514}, {"caption": "a city appears out of the plane window and airplanes traffic across the tarmac in dubai", "video_id": "video11553", "sen_id": 200515}, {"caption": "the amazing scenes of dubai from airplane the lakes there etc", "video_id": "video11553", "sen_id": 200516}, {"caption": "a city can he seen through an airplane window and a man throws food at birds in dubai", "video_id": "video11553", "sen_id": 200517}, {"caption": "a presentation of dubai aiport and a bhai is feeding all birds near water", "video_id": "video11553", "sen_id": 200518}, {"caption": "a man singing a song and showing the pictures of the aeroplane and the ship on the water", "video_id": "video11553", "sen_id": 200519}, {"caption": "a selfie stick box on yhe", "video_id": "video11355", "sen_id": 200520}, {"caption": "an off-camera man describes a box for a selfie stick", "video_id": "video11355", "sen_id": 200521}, {"caption": "a selfie stick is being promoted as an ad", "video_id": "video11355", "sen_id": 200522}, {"caption": "a man is showcasing a selfie stick that works across multiple platforms including android and ios", "video_id": "video11355", "sen_id": 200523}, {"caption": "guy explains about a selfie stick he got and video is shown of the selfie stick", "video_id": "video11355", "sen_id": 200524}, {"caption": "a poster with information about a selfie stick", "video_id": "video11355", "sen_id": 200525}, {"caption": "a young man explaining a selfie stick hanging on a wall", "video_id": "video11355", "sen_id": 200526}, {"caption": "a product review of an black selfie stick", "video_id": "video11355", "sen_id": 200527}, {"caption": "a product review of an black selfie stick", "video_id": "video11355", "sen_id": 200528}, {"caption": "a poster advertisement of a selfie stick shows the many features of the product", "video_id": "video11355", "sen_id": 200529}, {"caption": "a package for a selfie stick is shown up close", "video_id": "video11355", "sen_id": 200530}, {"caption": "a younger male talking about this selfie stick box and its features", "video_id": "video11355", "sen_id": 200531}, {"caption": "nowadays an advertisement for selfie clicking are rapidly increasing", "video_id": "video11355", "sen_id": 200532}, {"caption": "a person is telling about a selfie stand", "video_id": "video11355", "sen_id": 200533}, {"caption": "a man is giving a review on a selfie stick", "video_id": "video11355", "sen_id": 200534}, {"caption": "a bar stick like displaying on screen explaining about it", "video_id": "video11355", "sen_id": 200535}, {"caption": "advertisement about the selfie stick along with the phone compatible to it", "video_id": "video11355", "sen_id": 200536}, {"caption": "a person is describing about the use of selfie stick here", "video_id": "video11355", "sen_id": 200537}, {"caption": "the selfie photograph on the cell phone shows three men on their stomachs at the beach with others on their backs", "video_id": "video11355", "sen_id": 200538}, {"caption": "a selfie stick was placed and it is ready to use good looking black colour", "video_id": "video11355", "sen_id": 200539}, {"caption": "a woman walking on a stage modeling a bathing suit", "video_id": "video11474", "sen_id": 200540}, {"caption": "a large black woman in a swimsuit struts around a stage in a performance", "video_id": "video11474", "sen_id": 200541}, {"caption": "a woman in a two piece bathing suit and a large sun hat is walking in a fashion show", "video_id": "video11474", "sen_id": 200542}, {"caption": "a woman walks around a stage wearing a bathing suit and a large hat", "video_id": "video11474", "sen_id": 200543}, {"caption": "a woman in a hat models swimwear on a stage", "video_id": "video11474", "sen_id": 200544}, {"caption": "a woman walks across a state wearing a bikini high heels and a large hat", "video_id": "video11474", "sen_id": 200545}, {"caption": "an overweight woman in a bathing suit and heels walks out onto a stage", "video_id": "video11474", "sen_id": 200546}, {"caption": "a woman struts around on the stage in a bikini", "video_id": "video11474", "sen_id": 200547}, {"caption": "a person dressed in black and white with a big hat walking on a stage", "video_id": "video11474", "sen_id": 200548}, {"caption": "a black woman is modeling a white two piece swimsuit", "video_id": "video11474", "sen_id": 200549}, {"caption": "a female model is walking across a stage", "video_id": "video11474", "sen_id": 200550}, {"caption": "a women in two piece is walking ramp in a fashion show", "video_id": "video11474", "sen_id": 200551}, {"caption": "a woman is walking on a stage with a bikini on", "video_id": "video11474", "sen_id": 200552}, {"caption": "a heavy set african woman walks around on a stage in a revealing swimsuit", "video_id": "video11474", "sen_id": 200553}, {"caption": "a lady wearing hat removing hat walking on stage other man taking photo shot", "video_id": "video11474", "sen_id": 200554}, {"caption": "a fat ass woman is strutting on a stage", "video_id": "video11474", "sen_id": 200555}, {"caption": "there is a fatty lady on the ramp", "video_id": "video11474", "sen_id": 200556}, {"caption": "a woman in a bathing suit and a floppy hat walks on a stage while loud music plays", "video_id": "video11474", "sen_id": 200557}, {"caption": "a black lady wearing bikini and having hat on the head walking on the stage", "video_id": "video11474", "sen_id": 200558}, {"caption": "chubby model walking down the ramp in bikini during fashion show", "video_id": "video11474", "sen_id": 200559}, {"caption": "two cars race against each other on wet lanes in the country while spectators and sponsors watch from the back and sides", "video_id": "video11532", "sen_id": 200560}, {"caption": "two white cars racing on a wet track of road", "video_id": "video11532", "sen_id": 200561}, {"caption": "two cars going head to head in a drag race", "video_id": "video11532", "sen_id": 200562}, {"caption": "a clip of two expensive cars racing at high speeds", "video_id": "video11532", "sen_id": 200563}, {"caption": "a white and a grey car are racing across the rain soaked road the white vehicle is able to overtake the grey car there are many spectators viewing this event", "video_id": "video11532", "sen_id": 200564}, {"caption": "two cars racing one silver and one white at the end of the video it appears that the white bmw was winning", "video_id": "video11532", "sen_id": 200565}, {"caption": "an animated graphic showing spectators and two white cars racing on a black road in an open air tree lined field", "video_id": "video11532", "sen_id": 200566}, {"caption": "a luxury sports car racing a high end sports car", "video_id": "video11532", "sen_id": 200567}, {"caption": "two cars race each other on a wet track", "video_id": "video11532", "sen_id": 200568}, {"caption": "a gray car and a white car are racing on a track", "video_id": "video11532", "sen_id": 200569}, {"caption": "two white sports cars racing on a straight road", "video_id": "video11532", "sen_id": 200570}, {"caption": "there two cars going very fast one is with light", "video_id": "video11532", "sen_id": 200571}, {"caption": "two cars racing down a wet empty street where the white car is in the lead", "video_id": "video11532", "sen_id": 200572}, {"caption": "a car race against a silver sports car and a standard car taking place in the rain", "video_id": "video11532", "sen_id": 200573}, {"caption": "two cars racing the quarter mile on a strip track", "video_id": "video11532", "sen_id": 200574}, {"caption": "2 cars are racing side by side on a rainy day with several spectators watching", "video_id": "video11532", "sen_id": 200575}, {"caption": "two white cars with signs on their windows racing on a wet black road in the rain", "video_id": "video11532", "sen_id": 200576}, {"caption": "two sports car race on a strip of asphalt", "video_id": "video11532", "sen_id": 200577}, {"caption": "a mercedes and a silver sports car are competing in a drag race", "video_id": "video11532", "sen_id": 200578}, {"caption": "bunch of cars in the racing track trying to win the race", "video_id": "video11532", "sen_id": 200579}, {"caption": "a man who likes to make his outfits with a 30s and 40s style and who would also like to meet a man that wears the same syle", "video_id": "video12485", "sen_id": 200580}, {"caption": "a young man wearing stylish clothes is interviewed outside a large metropilan building", "video_id": "video12485", "sen_id": 200581}, {"caption": "a man is speaking in a foreign language about clothes from the 30s and 40s", "video_id": "video12485", "sen_id": 200582}, {"caption": "a man wearing glasses is talking about his fashion sense", "video_id": "video12485", "sen_id": 200583}, {"caption": "young asian man describing how to dress when going out to clubs", "video_id": "video12485", "sen_id": 200584}, {"caption": "a man stands in the road and talks about the clothes he likes", "video_id": "video12485", "sen_id": 200585}, {"caption": "a man is standing outside a building and shows us what he is wearing", "video_id": "video12485", "sen_id": 200586}, {"caption": "a guy in a leather shirts talks about what he is looking for in a man", "video_id": "video12485", "sen_id": 200587}, {"caption": "two men talk to each other outside of a large white building", "video_id": "video12485", "sen_id": 200588}, {"caption": "a man wearing glasses talks about making his own clothing", "video_id": "video12485", "sen_id": 200589}, {"caption": "a man wearing a leather jacket and a brown vest talks about the type of fashion he likes", "video_id": "video12485", "sen_id": 200590}, {"caption": "a male fashion designer with glasses describes his style as vintage american", "video_id": "video12485", "sen_id": 200591}, {"caption": "a man wearing a black shirt saying that he likes to make his own outfits", "video_id": "video12485", "sen_id": 200592}, {"caption": "young men tell about how they like vintage suits", "video_id": "video12485", "sen_id": 200593}, {"caption": "two men are speaking outside next to red ropes speaking about fashion", "video_id": "video12485", "sen_id": 200594}, {"caption": "a man is talking about his clothing style preferences", "video_id": "video12485", "sen_id": 200595}, {"caption": "a young asian man with glasses is discussing fashion and clothes in an interview", "video_id": "video12485", "sen_id": 200596}, {"caption": "a chinese person is explaining about his likes very well", "video_id": "video12485", "sen_id": 200597}, {"caption": "a boy in black dress wearing cloth standing speaking with other boy removing cloth displaying on screen", "video_id": "video12485", "sen_id": 200598}, {"caption": "a man is talking about style and shoes", "video_id": "video12485", "sen_id": 200599}, {"caption": "ocean waves slam against the remains of damaged buildings and two men aim rifles upward in an indoor parking lot while one shoots", "video_id": "video12307", "sen_id": 200600}, {"caption": "two men carrying guns stop to speak to one another in a large open area", "video_id": "video12307", "sen_id": 200601}, {"caption": "one man gives another man a demonstration in shooting", "video_id": "video12307", "sen_id": 200602}, {"caption": "in a basement 2 men with guns pointing at something", "video_id": "video12307", "sen_id": 200603}, {"caption": "a man wearing a black shirt holding a gun", "video_id": "video12307", "sen_id": 200604}, {"caption": "this is from a movie a clip from inception the film", "video_id": "video12307", "sen_id": 200605}, {"caption": "a man in a brown leather jacket is aiming a gun", "video_id": "video12307", "sen_id": 200606}, {"caption": "a man wearing a black suit and shooting a gun", "video_id": "video12307", "sen_id": 200607}, {"caption": "buildings are falling into the water and interception flashes across the screen as a male begins to talk", "video_id": "video12307", "sen_id": 200608}, {"caption": "a movie trailer for interception with men and guns and will be releasing on july 16", "video_id": "video12307", "sen_id": 200609}, {"caption": "a man in a leather jacket looks on as another man next to him takes aim high with a rifle", "video_id": "video12307", "sen_id": 200610}, {"caption": "there is a suit man talking to his girlfriend", "video_id": "video12307", "sen_id": 200611}, {"caption": "trailor of warner brothers mega movie inception releasing july 16", "video_id": "video12307", "sen_id": 200612}, {"caption": "two men in suits are talking one of them is holding a large gun", "video_id": "video12307", "sen_id": 200613}, {"caption": "a trailer for a movie that shows footage of men entering combat", "video_id": "video12307", "sen_id": 200614}, {"caption": "guy in suit and tie firing with the gun in movie", "video_id": "video12307", "sen_id": 200615}, {"caption": "its a video clips from a english movie", "video_id": "video12307", "sen_id": 200616}, {"caption": "we can see a guy pointing his gun on the air and then another guy comes to him and says something and fires a bullet in the air", "video_id": "video12307", "sen_id": 200617}, {"caption": "a young man talks to another man about having bigger dreams", "video_id": "video12307", "sen_id": 200618}, {"caption": "part of the trailer for inception showcasing joseph gordon levitt as well as the title card", "video_id": "video12307", "sen_id": 200619}, {"caption": "a distinguished man wearing a suit with bright pink tie stands on a round stage and tells a risqu story while smoothing his moustache", "video_id": "video12160", "sen_id": 200620}, {"caption": "an older man in a suit with a mustache telling a story about meeting a woman", "video_id": "video12160", "sen_id": 200621}, {"caption": "a man in a suit is telling a story from his past", "video_id": "video12160", "sen_id": 200622}, {"caption": "charles eugster gives a talk in front of a crowd of people", "video_id": "video12160", "sen_id": 200623}, {"caption": "a man with a dark suit and a pink tie is giving a speech", "video_id": "video12160", "sen_id": 200624}, {"caption": "an elderly man wearing a pink tie gives a verbal presentation to a large crowd", "video_id": "video12160", "sen_id": 200625}, {"caption": "a man in a gray suit and pink tie is speaking at a ted conference in zurich", "video_id": "video12160", "sen_id": 200626}, {"caption": "a man in a dark suit and pink tie tells a joke to a crowd of people", "video_id": "video12160", "sen_id": 200627}, {"caption": "an old man slightly balding wearing glasses and a suite with a microphone piece begins telling a story", "video_id": "video12160", "sen_id": 200628}, {"caption": "an older man in a pink tie begins to tell a story on stage", "video_id": "video12160", "sen_id": 200629}, {"caption": "a older man gives a presentation in front of a large group of people", "video_id": "video12160", "sen_id": 200630}, {"caption": "a man in a suit with a pink tie is telling a story about a woman he met at a bar", "video_id": "video12160", "sen_id": 200631}, {"caption": "a man is standing on stage delivering a speech", "video_id": "video12160", "sen_id": 200632}, {"caption": "a man with a suit and pink tie hosts a tedtalk", "video_id": "video12160", "sen_id": 200633}, {"caption": "an older man with a british accent is telling a story to an audience", "video_id": "video12160", "sen_id": 200634}, {"caption": "there is a man in a black suit with a pink tie and pocket square speaking at a podium on a red stage to an an audience", "video_id": "video12160", "sen_id": 200635}, {"caption": "a man tells a brief story while of stage to an audience", "video_id": "video12160", "sen_id": 200636}, {"caption": "some one is explaining about some thing seriously by looking others which are not visible in this", "video_id": "video12160", "sen_id": 200637}, {"caption": "an old man in a pink tie telling a funny story that happened to him", "video_id": "video12160", "sen_id": 200638}, {"caption": "man tells a amusing story about meeting a woman in a tight area", "video_id": "video12160", "sen_id": 200639}, {"caption": "a tutorial on how to get plumped full luscious lips", "video_id": "video11581", "sen_id": 200640}, {"caption": "a man is discussing how to get plump lips", "video_id": "video11581", "sen_id": 200641}, {"caption": "a human mouth is talking about lips and pink lipstick", "video_id": "video11581", "sen_id": 200642}, {"caption": "a person with really glossy pink lips speaking", "video_id": "video11581", "sen_id": 200643}, {"caption": "a person with shiny pink lipstick is taking about lipstick and lips", "video_id": "video11581", "sen_id": 200644}, {"caption": "a dramatic presentation of full plum colored lips a man displaying very full thick lips", "video_id": "video11581", "sen_id": 200645}, {"caption": "a women showing her very pretty pink lips", "video_id": "video11581", "sen_id": 200646}, {"caption": "a video of a man with lipstick on is talking", "video_id": "video11581", "sen_id": 200647}, {"caption": "a woman talking about how her lipstick does not smear or come off all day", "video_id": "video11581", "sen_id": 200648}, {"caption": "a person with shiny lips is talking about how to apply lip makeup", "video_id": "video11581", "sen_id": 200649}, {"caption": "a woman with luscious pink lips talks while turning her head left and right", "video_id": "video11581", "sen_id": 200650}, {"caption": "a gender ambiguous discusses some shiny pink lipstick", "video_id": "video11581", "sen_id": 200651}, {"caption": "a mouth with shiny pink lined lips and white teeth is speaking", "video_id": "video11581", "sen_id": 200652}, {"caption": " with straight and pearly teeth speaks with lips covered in a shiny pinkish-nude color and outlined in a darker hue", "video_id": "video11581", "sen_id": 200653}, {"caption": "a person speaks with bright pink lips stick", "video_id": "video11581", "sen_id": 200654}, {"caption": "woman with nice lips and teeth talking in front of camera", "video_id": "video11581", "sen_id": 200655}, {"caption": "there is a person showing off their plump lip makeup", "video_id": "video11581", "sen_id": 200656}, {"caption": "a lady talking with her lips its glowing", "video_id": "video11581", "sen_id": 200657}, {"caption": "a man explaining about the celebrities and lips and its movements", "video_id": "video11581", "sen_id": 200658}, {"caption": "a person with pink limps talking about plumping lips", "video_id": "video11581", "sen_id": 200659}, {"caption": "outside laid different types of cooked foods such as barbeque chicken on a stick and whole fried chickens", "video_id": "video11663", "sen_id": 200660}, {"caption": "barbeque meat is cooking over the open flame in the camp", "video_id": "video11663", "sen_id": 200661}, {"caption": "a variety of poultry is being cooked in woks as they rest above the fire underneath them", "video_id": "video11663", "sen_id": 200662}, {"caption": "a grill outside is used to make grilled chickens and ducks that are being sold", "video_id": "video11663", "sen_id": 200663}, {"caption": "people outside cooking food such as chicken shrimp and turkey", "video_id": "video11663", "sen_id": 200664}, {"caption": "a couple of pots cooking on an outdoor fire next to a bufett of foods", "video_id": "video11663", "sen_id": 200665}, {"caption": "people are cooking several different kinds of meat outdoors", "video_id": "video11663", "sen_id": 200666}, {"caption": "some are cooking delicious different varieties of non-veg items", "video_id": "video11663", "sen_id": 200667}, {"caption": "some food on platters on a table outside and food being cooked on the ground in a pot", "video_id": "video11663", "sen_id": 200668}, {"caption": "food is being fried in a small wok on an open flame in a heavily populated area", "video_id": "video11663", "sen_id": 200669}, {"caption": "pictures of different dishes of food outside on the ground in big bowls", "video_id": "video11663", "sen_id": 200670}, {"caption": "some one frying chicken in a bowl under the tree", "video_id": "video11663", "sen_id": 200671}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11663", "sen_id": 200672}, {"caption": "a person is explaining some non-vegetable cooling process", "video_id": "video11663", "sen_id": 200673}, {"caption": "a person fries various small animals in hot oil in a wok on the ground", "video_id": "video11663", "sen_id": 200674}, {"caption": "a man is cooking and frying chicken in outdoor location", "video_id": "video11663", "sen_id": 200675}, {"caption": "there are some people frying chicken in a pan", "video_id": "video11663", "sen_id": 200676}, {"caption": "display of different kind of spicy and delicious food items cooked in open space", "video_id": "video11663", "sen_id": 200677}, {"caption": "making recipe in the road sides chicken is frying in the kadai", "video_id": "video11663", "sen_id": 200678}, {"caption": "a dishes on the plate frying meat chicken pieces frying oil many dishes beside preparing to eat", "video_id": "video11663", "sen_id": 200679}, {"caption": "someone chooses a salad made with fresh greens curved purple onion slices dots of yellow corn plump tortellini and creamy dressing", "video_id": "video11835", "sen_id": 200680}, {"caption": "seafoods being grilled and a salad with corn onions and dressing", "video_id": "video11835", "sen_id": 200681}, {"caption": "a salad with carrots onions and other ingredients is being zoomed in on", "video_id": "video11835", "sen_id": 200682}, {"caption": "a salad made with red onions yellow corn and green lettuce is scooped up", "video_id": "video11835", "sen_id": 200683}, {"caption": "a delicious salad is being shown up close", "video_id": "video11835", "sen_id": 200684}, {"caption": "a recipe is shown and demonstrated while music plays", "video_id": "video11835", "sen_id": 200685}, {"caption": "a salad is served with green leaves red onions and orange carrots", "video_id": "video11835", "sen_id": 200686}, {"caption": "a chef shows a completed recipe and prepares to serve it up", "video_id": "video11835", "sen_id": 200687}, {"caption": "a salad features lettuce corn onions and carrots", "video_id": "video11835", "sen_id": 200688}, {"caption": "food is shown cooking on a grill and sitting on lettuce leafs", "video_id": "video11835", "sen_id": 200689}, {"caption": "a woman sings as we look at salads", "video_id": "video11835", "sen_id": 200690}, {"caption": "wire racks are sitting on top of an open flame and food is cooking on them a salad can then be seen with multiple ingredients on it", "video_id": "video11835", "sen_id": 200691}, {"caption": "an upclose view of a food mixture being eaten on", "video_id": "video11835", "sen_id": 200692}, {"caption": "a salad with green leaves carrots and red onions is tossed", "video_id": "video11835", "sen_id": 200693}, {"caption": "a fresh salad is shown among other foods then a scoop is taken from it", "video_id": "video11835", "sen_id": 200694}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11835", "sen_id": 200695}, {"caption": "closeups of seafood and salads that have been put out to eat", "video_id": "video11835", "sen_id": 200696}, {"caption": "a woman is singing in the background and the video shows some food items like green salad and sea food", "video_id": "video11835", "sen_id": 200697}, {"caption": "music plays while seafood and salad are eaten", "video_id": "video11835", "sen_id": 200698}, {"caption": "music plays while the camera zooms in on a salad", "video_id": "video11835", "sen_id": 200699}, {"caption": "a cook is stir frying spicy chopped vegetables and meat at a high temperature", "video_id": "video12700", "sen_id": 200700}, {"caption": "someone is stir frying a mixture of vegetables and cubed meat in a black wok with a spatula", "video_id": "video12700", "sen_id": 200701}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video12700", "sen_id": 200702}, {"caption": "a person is stirring meat and vegetables in a wok on a stove", "video_id": "video12700", "sen_id": 200703}, {"caption": "a person stirs a wok full of veggies and meat with a wooden spoon", "video_id": "video12700", "sen_id": 200704}, {"caption": "a person stirs chicken and vegetables in a wok", "video_id": "video12700", "sen_id": 200705}, {"caption": "a chef finishes a stir fry recipe by tossing the wok ingredients around", "video_id": "video12700", "sen_id": 200706}, {"caption": "a person is stirring a skillet full of vegetables with a wooden spoon", "video_id": "video12700", "sen_id": 200707}, {"caption": "a person is stirring some vegetable in a black wok", "video_id": "video12700", "sen_id": 200708}, {"caption": "a chef prepares a stir fry by stirring the food in a large black wok", "video_id": "video12700", "sen_id": 200709}, {"caption": "brightly color peppers are frying in a bowl while someone stirs them", "video_id": "video12700", "sen_id": 200710}, {"caption": "a person is using a wooden spatula to move chunks of food around in a hot wok", "video_id": "video12700", "sen_id": 200711}, {"caption": "learn the secrets of the professionals and become your own professional chef at foodcom", "video_id": "video12700", "sen_id": 200712}, {"caption": "a man is cooking stir-fry in a wok pan", "video_id": "video12700", "sen_id": 200713}, {"caption": "a person is cooking a stir-fry dish in a wok pan", "video_id": "video12700", "sen_id": 200714}, {"caption": "someone cooks a fair amount of meat and veggies in a relatively large wok", "video_id": "video12700", "sen_id": 200715}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12700", "sen_id": 200716}, {"caption": "a chef stirs ingredients in a cast iron pan with a wooden spoon", "video_id": "video12700", "sen_id": 200717}, {"caption": "an inhome chef works on a stir fry recipe in her kitchen at home", "video_id": "video12700", "sen_id": 200718}, {"caption": "one man cooking the vegetables in the pan at the kitchen", "video_id": "video12700", "sen_id": 200719}, {"caption": "shrimp is being scooped out from a pot", "video_id": "video12404", "sen_id": 200720}, {"caption": "a cook cooking some shellfish with some lemon", "video_id": "video12404", "sen_id": 200721}, {"caption": "a woman discusses the process of cooking shrimp for a meal", "video_id": "video12404", "sen_id": 200722}, {"caption": "a woman is showing how to remove shrimp from a cooking pot that also has lemons in it", "video_id": "video12404", "sen_id": 200723}, {"caption": "a person stirs shellfish in a pot with some lemon", "video_id": "video12404", "sen_id": 200724}, {"caption": "a receipt video about cooking delicious shrimp", "video_id": "video12404", "sen_id": 200725}, {"caption": "this person is taking boiled shrimp out of the pot", "video_id": "video12404", "sen_id": 200726}, {"caption": "an in-home chef works on a recipe by removing shrimp from boiling water", "video_id": "video12404", "sen_id": 200727}, {"caption": "a chef prepares a dish by removing shrimp from a pot of boiling water", "video_id": "video12404", "sen_id": 200728}, {"caption": "a man cooking shrimp and moving the cooked shrimp into a bowl", "video_id": "video12404", "sen_id": 200729}, {"caption": "someone is teaching cooking shrimps with lemons and is showing the process of separating shrimps from lemon in the soup and puting shrimps in the strainer", "video_id": "video12404", "sen_id": 200730}, {"caption": "a female voiceover graphic with hands removing shrimp from a pot and showing how to prepare a shrimp and lemon dish in a pot", "video_id": "video12404", "sen_id": 200731}, {"caption": "a person is removing boiled shrimp from a pot that also has lemons in it", "video_id": "video12404", "sen_id": 200732}, {"caption": "insect poiled in a container deeply and taken out", "video_id": "video12404", "sen_id": 200733}, {"caption": "some prawns is made to boil in the water bowl along with lemon", "video_id": "video12404", "sen_id": 200734}, {"caption": "in a kitchen person is putting the food in the dishes", "video_id": "video12404", "sen_id": 200735}, {"caption": "a person spoons out food that was cooking in a bowl", "video_id": "video12404", "sen_id": 200736}, {"caption": "tawa insects are seperated by a spoon", "video_id": "video12404", "sen_id": 200737}, {"caption": "a person is showing the cooking process of prawn", "video_id": "video12404", "sen_id": 200738}, {"caption": "a walkthough video where there is pot of water with cooked shrimp and an individual takes the shrimp out and places them into a strainer", "video_id": "video12404", "sen_id": 200739}, {"caption": "a women showing out her outfit with her platforms", "video_id": "video11289", "sen_id": 200740}, {"caption": "a women is modeling a pair flatforms that seem to be casual comfortable and a stylish kick to a young ladies wear", "video_id": "video11289", "sen_id": 200741}, {"caption": "a woman is modeling a pair of shorts and shoes on the sand by the water and a cliff", "video_id": "video11289", "sen_id": 200742}, {"caption": "a woman modeling an all pink outfit for blurstorecom", "video_id": "video11289", "sen_id": 200743}, {"caption": "a woman models a pair of shorts and platform shoes on the beach", "video_id": "video11289", "sen_id": 200744}, {"caption": "a lady stands in the sand on a beach showing off her platform sandals", "video_id": "video11289", "sen_id": 200745}, {"caption": "model is wearing summer clothes and shows he shoes as well", "video_id": "video11289", "sen_id": 200746}, {"caption": "a young woman models flat bottomed sandals on a deserted beach", "video_id": "video11289", "sen_id": 200747}, {"caption": "a young lady is showing a cute and comfortable white sandal to go with her short", "video_id": "video11289", "sen_id": 200748}, {"caption": "a woman on a beach is modeling an outfit and shoes", "video_id": "video11289", "sen_id": 200749}, {"caption": "an ad with a girl modeling denim shorts and platform shoes", "video_id": "video11289", "sen_id": 200750}, {"caption": "a woman with long brown hair models pink shorts and a pink vest on a sunny beach setting", "video_id": "video11289", "sen_id": 200751}, {"caption": "a woman showing her fasion infront of a beach", "video_id": "video11289", "sen_id": 200752}, {"caption": "a lady wearing pink color dres is shaking", "video_id": "video11289", "sen_id": 200753}, {"caption": "a woman is telling about a denim shorts", "video_id": "video11289", "sen_id": 200754}, {"caption": "the girl in pink design dress is posing in the beach wearing flat forms", "video_id": "video11289", "sen_id": 200755}, {"caption": "the woman wore a nice outfit and platform shoes", "video_id": "video11289", "sen_id": 200756}, {"caption": "a woman in pink shorts is posing for the camera", "video_id": "video11289", "sen_id": 200757}, {"caption": "a lady is modeling in flatform shoes she is also wearing a pink dress", "video_id": "video11289", "sen_id": 200758}, {"caption": "brunette woman in pink shorts having photo session on the beach", "video_id": "video11289", "sen_id": 200759}, {"caption": "two men competing each other to see who eats the pile of food in front of them the fastest", "video_id": "video11133", "sen_id": 200760}, {"caption": "a couple of men eating four plates of food at a restaurant", "video_id": "video11133", "sen_id": 200761}, {"caption": "two men are sitting eating a meal together", "video_id": "video11133", "sen_id": 200762}, {"caption": "two men sitting at a wooden table eating off of round plates", "video_id": "video11133", "sen_id": 200763}, {"caption": "two men enjoy a rather large meal together in a restaurant", "video_id": "video11133", "sen_id": 200764}, {"caption": "two young men begin eating a meal together in a large restaurant", "video_id": "video11133", "sen_id": 200765}, {"caption": "two guys having a contest on who can eat the fastest", "video_id": "video11133", "sen_id": 200766}, {"caption": "two men have a very large dinner in front of them they are eating it", "video_id": "video11133", "sen_id": 200767}, {"caption": "two men wearing blue shirts and ties are eating while sitting at a table", "video_id": "video11133", "sen_id": 200768}, {"caption": "two young men enjoy two rather large plates of food in a restaurant", "video_id": "video11133", "sen_id": 200769}, {"caption": "a couple of men eating four plates of food at a restaurant", "video_id": "video11133", "sen_id": 200770}, {"caption": "two men in business attire are having lunch in a restaurant", "video_id": "video11133", "sen_id": 200771}, {"caption": "2 men are eating large amounts of food and competing against each other", "video_id": "video11133", "sen_id": 200772}, {"caption": "two men are eating large plates of food and seem to be competing against each other", "video_id": "video11133", "sen_id": 200773}, {"caption": "a timer is set on a phone and two men begin eating", "video_id": "video11133", "sen_id": 200774}, {"caption": "two men eating a large meat very quickly", "video_id": "video11133", "sen_id": 200775}, {"caption": "two persons are eating a food on a table", "video_id": "video11133", "sen_id": 200776}, {"caption": "two greedy persons are fast at finishing the food on the table", "video_id": "video11133", "sen_id": 200777}, {"caption": "eating contest arranged between two hungry gentlemen", "video_id": "video11133", "sen_id": 200778}, {"caption": "two boys are having a blast eating food", "video_id": "video11133", "sen_id": 200779}, {"caption": "an easy recipe of pizza that includes beets", "video_id": "video12680", "sen_id": 200780}, {"caption": "ingredients are shown for making a recipe containing beets", "video_id": "video12680", "sen_id": 200781}, {"caption": "kids describing what type of ingredients and how much of each ingredient is needed to make something", "video_id": "video12680", "sen_id": 200782}, {"caption": "ingredients in glass bowls and measuring spoons are placed on a wooden counter next to beets with green leaves", "video_id": "video12680", "sen_id": 200783}, {"caption": "two kids listing off the ingredients of a recipe while showing them on a table", "video_id": "video12680", "sen_id": 200784}, {"caption": "a list of ingredients are laid out on a brown wooden table", "video_id": "video12680", "sen_id": 200785}, {"caption": "ingredients for a dish are introduces as a child narrates", "video_id": "video12680", "sen_id": 200786}, {"caption": "two girls have their arms raised in a kitchen followed by a picture of dry ingredients and beets", "video_id": "video12680", "sen_id": 200787}, {"caption": "kids are teaching how to do bakery and are introducing the required ingredients one by one and the final one is beets", "video_id": "video12680", "sen_id": 200788}, {"caption": "different sized containers appear on a table filled with ingredients", "video_id": "video12680", "sen_id": 200789}, {"caption": "an animated graphic listing ingredients like beets cheese flour baking powder milk salt and margerine", "video_id": "video12680", "sen_id": 200790}, {"caption": "there is a kid talking about a simple recipe", "video_id": "video12680", "sen_id": 200791}, {"caption": "girls talking about how to bake a dish with the needed ingredients", "video_id": "video12680", "sen_id": 200792}, {"caption": "a chef talks about the right spices to use for a meal", "video_id": "video12680", "sen_id": 200793}, {"caption": "two girls are telling the ingredients for their recipe", "video_id": "video12680", "sen_id": 200794}, {"caption": "people saying different ingredients aloud to a recipe", "video_id": "video12680", "sen_id": 200795}, {"caption": "eight ingredients of a recipe are separated and laid out on a wooden tabletop", "video_id": "video12680", "sen_id": 200796}, {"caption": "liquid and solid ingredients appear one by one on a wooden table in glass bowls along with round and pointy beets with long and curved green leaves", "video_id": "video12680", "sen_id": 200797}, {"caption": "a young girl and an older woman narrate the required ingredients and amounts for a recipe as they appear on screen", "video_id": "video12680", "sen_id": 200798}, {"caption": "a blue dress color girl and kid beside bowl dishes vegetables inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12680", "sen_id": 200799}, {"caption": "highlights of men's ping pong games are shown", "video_id": "video12640", "sen_id": 200800}, {"caption": "two table tennis pros playing ping pong against each other", "video_id": "video12640", "sen_id": 200801}, {"caption": "men are in a ping pong tournament intensely running and hitting the ball with the paddle across the table", "video_id": "video12640", "sen_id": 200802}, {"caption": "people are playing professional ping pong in the singles and doubles categories", "video_id": "video12640", "sen_id": 200803}, {"caption": "group of asian men in uniform play ping pong professionally together", "video_id": "video12640", "sen_id": 200804}, {"caption": "four men in red and blue outfits playing in a world tour ping pong tournament", "video_id": "video12640", "sen_id": 200805}, {"caption": "four guys playing a game of ping pong", "video_id": "video12640", "sen_id": 200806}, {"caption": "several games of pingpong is shown first was a doubles match where the game was won with an amazing curve shot and the second was a singles match where the game was won by the man in black", "video_id": "video12640", "sen_id": 200807}, {"caption": "two men are competing in a table tennis championship and one scored a point", "video_id": "video12640", "sen_id": 200808}, {"caption": "teams are facing off in games of table tennis", "video_id": "video12640", "sen_id": 200809}, {"caption": "a team is playing doubles ping pong on a red court surface", "video_id": "video12640", "sen_id": 200810}, {"caption": "there are some persons playing table tennis in a court", "video_id": "video12640", "sen_id": 200811}, {"caption": "two men are playing tenice against each othet", "video_id": "video12640", "sen_id": 200812}, {"caption": "a doubles table tennis game is playing", "video_id": "video12640", "sen_id": 200813}, {"caption": "a game of professional ping pong being played red versus blue teams", "video_id": "video12640", "sen_id": 200814}, {"caption": "a black and red color dress wearing boys playing table tennis game audience watching displaying on screen", "video_id": "video12640", "sen_id": 200815}, {"caption": "an excited man recapping a ping pong game", "video_id": "video12640", "sen_id": 200816}, {"caption": "two players playing table tennis very interesting to watch", "video_id": "video12640", "sen_id": 200817}, {"caption": "an announcer is avidly describing what is taking place in a ping pong game", "video_id": "video12640", "sen_id": 200818}, {"caption": "four table tennis players playing match on the court", "video_id": "video12640", "sen_id": 200819}, {"caption": "a colorful kitchen is assembled piece by piece to produce a compact and efficient work space with refrigerator stove sink and accessories", "video_id": "video11136", "sen_id": 200820}, {"caption": "animation video of kitchen appliances appearing", "video_id": "video11136", "sen_id": 200821}, {"caption": "parts of a cgi kitchen assemble themselves to wacky music", "video_id": "video11136", "sen_id": 200822}, {"caption": "a small kitchen area has a series of accessories used for cooking", "video_id": "video11136", "sen_id": 200823}, {"caption": "cartoon generation of a kitchen with a refrigerator sink and microwave", "video_id": "video11136", "sen_id": 200824}, {"caption": "a kitchen is animated with appliances flying into place and arranging themselves", "video_id": "video11136", "sen_id": 200825}, {"caption": "a pink play kitchen is shown in animation", "video_id": "video11136", "sen_id": 200826}, {"caption": "a play kitchen is displayed as a prototype", "video_id": "video11136", "sen_id": 200827}, {"caption": "an animated toy kitchen is put together as parts fall from the sky", "video_id": "video11136", "sen_id": 200828}, {"caption": "a kitchenette features a series of modern appliances", "video_id": "video11136", "sen_id": 200829}, {"caption": "bright multicolored digitally animated appliances are falling out from a blue sky onto a green grass", "video_id": "video11136", "sen_id": 200830}, {"caption": "an animated kitchen is coming together", "video_id": "video11136", "sen_id": 200831}, {"caption": "animated kitchen with stove refrigerator cabinet and sink", "video_id": "video11136", "sen_id": 200832}, {"caption": "a digital kitchen is coming together starting with a periwinkle microwave then an oven a sink and a hanging light fixture", "video_id": "video11136", "sen_id": 200833}, {"caption": "kitchen appliances were falling out of the sky and assembling themselves", "video_id": "video11136", "sen_id": 200834}, {"caption": "pieces of a toy kitchen falling together in the right place", "video_id": "video11136", "sen_id": 200835}, {"caption": "an animated clip of a kitchen top assembling itself", "video_id": "video11136", "sen_id": 200836}, {"caption": "a couple of animated items dropping down on a pink counter", "video_id": "video11136", "sen_id": 200837}, {"caption": "this is computer animation of a cartoon-like kitchen being put together piece by piece while cheery music plays in the background", "video_id": "video11136", "sen_id": 200838}, {"caption": "parts of a kitchen come together as zany noises play", "video_id": "video11136", "sen_id": 200839}, {"caption": "a woman working in an office cubicle goes outside when a ring of flames descends on her and a man runs through her standing body", "video_id": "video11888", "sen_id": 200840}, {"caption": "the voice of a woman is talking about a movie called dead like me", "video_id": "video11888", "sen_id": 200841}, {"caption": "a count down showing clips for the show dead like me", "video_id": "video11888", "sen_id": 200842}, {"caption": "a clip from an old watch mojo video about tv", "video_id": "video11888", "sen_id": 200843}, {"caption": "a woman is shown looking curious and a man sits by her", "video_id": "video11888", "sen_id": 200844}, {"caption": "a show about a girl who's killed and became a grim-reaper is showcased", "video_id": "video11888", "sen_id": 200845}, {"caption": "a young girl in a tv show is hit by an asteroid which explodes", "video_id": "video11888", "sen_id": 200846}, {"caption": "a young woman sets at a desk in an office while wearing headphones", "video_id": "video11888", "sen_id": 200847}, {"caption": "a young girl with blonde hair is sitting on a bench", "video_id": "video11888", "sen_id": 200848}, {"caption": "discussion of the show dead like me where a girl gets the new job as being the grim reaper", "video_id": "video11888", "sen_id": 200849}, {"caption": "a woman is outside and looking up and then at one point disappears and reappears", "video_id": "video11888", "sen_id": 200850}, {"caption": "people are busy working in computers in an office", "video_id": "video11888", "sen_id": 200851}, {"caption": "a man talking with a girl", "video_id": "video11888", "sen_id": 200852}, {"caption": "a woman talking about a television shows second season", "video_id": "video11888", "sen_id": 200853}, {"caption": "it is a girl in a suit laying in the ground", "video_id": "video11888", "sen_id": 200854}, {"caption": " dead like me with a young girl who dies and returns as a grim reaper it s a shame it was only one two seasons", "video_id": "video11888", "sen_id": 200855}, {"caption": "there is a woman working in front of a computer", "video_id": "video11888", "sen_id": 200856}, {"caption": "a woman is talking about different tv show previews", "video_id": "video11888", "sen_id": 200857}, {"caption": "a young woman sets in a cubicle at a place of business", "video_id": "video11888", "sen_id": 200858}, {"caption": "a woman with brown hair is looking at something and getting shock", "video_id": "video11888", "sen_id": 200859}, {"caption": "a makeup tutorial on how to put on eye shadow", "video_id": "video12143", "sen_id": 200860}, {"caption": "a makeup tutorial of a woman putting makeup on her eyes", "video_id": "video12143", "sen_id": 200861}, {"caption": "a woman trying on some waterproof primer", "video_id": "video12143", "sen_id": 200862}, {"caption": "a woman is rubbing a nyx product on her eyelids", "video_id": "video12143", "sen_id": 200863}, {"caption": "woman applies cosmetics to her eye discusses eyeshadow", "video_id": "video12143", "sen_id": 200864}, {"caption": "a lady is rubbing eyeshadow on her eye lid with her finger", "video_id": "video12143", "sen_id": 200865}, {"caption": "there is a lady applying shadow base to her eyes with her finger tips", "video_id": "video12143", "sen_id": 200866}, {"caption": "a woman applying make up on her eyes", "video_id": "video12143", "sen_id": 200867}, {"caption": "a woman with red fingernails applies eye makeup", "video_id": "video12143", "sen_id": 200868}, {"caption": "a woman wearing maroon nail polish rubs her eyelids and lower eyebrows with her middle finger and her eyes looking down", "video_id": "video12143", "sen_id": 200869}, {"caption": "a woman applies makeup on to her eyelids", "video_id": "video12143", "sen_id": 200870}, {"caption": "a girl is applying a make up primer to her eyelids", "video_id": "video12143", "sen_id": 200871}, {"caption": "a woman with brown hair is applying makeup around her eyes", "video_id": "video12143", "sen_id": 200872}, {"caption": "there is a women applying makeup by herself", "video_id": "video12143", "sen_id": 200873}, {"caption": "a woman praises a product she loves to use which is waterproof and keeps the eyeshadow in place", "video_id": "video12143", "sen_id": 200874}, {"caption": "a woman is putting a eye shadow her own", "video_id": "video12143", "sen_id": 200875}, {"caption": "a young woman explains and demonstrates makeup tips", "video_id": "video12143", "sen_id": 200876}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video12143", "sen_id": 200877}, {"caption": "the woman puts make up her eye lids", "video_id": "video12143", "sen_id": 200878}, {"caption": "a woman is seen placing eye shadow on her eye lids while she explains what she is doing", "video_id": "video12143", "sen_id": 200879}, {"caption": "a man wearing a knit cap raps in the street while having a nightmare of confinement behind metal grating and falling between buildings", "video_id": "video10629", "sen_id": 200880}, {"caption": "eminem raps in his music video for one of his hit songs", "video_id": "video10629", "sen_id": 200881}, {"caption": "an eminem song is playing in the background as eminem raps to the lyrics", "video_id": "video10629", "sen_id": 200882}, {"caption": "eminem is rapping in multiple situations", "video_id": "video10629", "sen_id": 200883}, {"caption": "eminem raps in front of an 8 mile mobile court sign while wearing a stocking cap", "video_id": "video10629", "sen_id": 200884}, {"caption": "a man raps sways to the beat and gestures with his hands near a yellow neon sign at night while imagining himself in a dangerous situation", "video_id": "video10629", "sen_id": 200885}, {"caption": "eminem is rapping about 'seizing the moment'", "video_id": "video10629", "sen_id": 200886}, {"caption": "a person rapping and wearing a brown shirt", "video_id": "video10629", "sen_id": 200887}, {"caption": "a young white male rapper delivers a rap scene during a movie", "video_id": "video10629", "sen_id": 200888}, {"caption": "a man is singing with his hands on either side of his mouth", "video_id": "video10629", "sen_id": 200889}, {"caption": "a white man in a gray hat sings and dances in an outdoor setting", "video_id": "video10629", "sen_id": 200890}, {"caption": "there is a tshirt man dancing on the street", "video_id": "video10629", "sen_id": 200891}, {"caption": "a tip from a song scene by the eminem guy", "video_id": "video10629", "sen_id": 200892}, {"caption": "the rapper eminem is rapping and in several different scenes while talking about how he feels", "video_id": "video10629", "sen_id": 200893}, {"caption": "eminem appears wearing a black suit behind what appears to be diamon shape bars or an old elevator doo the video then shifts to eminem dancing a singing wearing a grey beanie hat and grey shirt with an 8 mile rd sign of what appears to be a motel behind him", "video_id": "video10629", "sen_id": 200894}, {"caption": "a white man is rapping while being filmed", "video_id": "video10629", "sen_id": 200895}, {"caption": " a white male is shown rapping in a parking lot and an elevator eminem is also rapping while he is showing falling through the air", "video_id": "video10629", "sen_id": 200896}, {"caption": "in the night the black tshirt men making the best chicken item in simply method", "video_id": "video10629", "sen_id": 200897}, {"caption": "white boy tries to rap gets caught by some sort of dark malevolent force", "video_id": "video10629", "sen_id": 200898}, {"caption": "the award winning rap artist eminem is performing in a music video", "video_id": "video10629", "sen_id": 200899}, {"caption": "a woman with dark hair and light makeup blinks into the camera", "video_id": "video10922", "sen_id": 200900}, {"caption": "a makeup tutorial to get that ariana grande look", "video_id": "video10922", "sen_id": 200901}, {"caption": "a woman is looking at the screen blinking while a narrator speaks", "video_id": "video10922", "sen_id": 200902}, {"caption": "a girl is giving a makeup tutorial inspired by ariana grande", "video_id": "video10922", "sen_id": 200903}, {"caption": "a women wearing heavy makeup talks about how much she likes ariana grande", "video_id": "video10922", "sen_id": 200904}, {"caption": "a woman with an oval face long black hair long eyelashes curved eyebrows black eyeliner and pink lipstick looks down looks up and blinks", "video_id": "video10922", "sen_id": 200905}, {"caption": "a girl is teaching how to do pretty hair and makeup inspired by a celebrity", "video_id": "video10922", "sen_id": 200906}, {"caption": "a makeup tutorial with a woman putting stuff on her face", "video_id": "video10922", "sen_id": 200907}, {"caption": "a woman looks at you and then away multiple times", "video_id": "video10922", "sen_id": 200908}, {"caption": "a lady speaks about and shows a make up style that celebrity singer ariana grande used on television", "video_id": "video10922", "sen_id": 200909}, {"caption": "girl doing a make up tutorial about an ariana grande look", "video_id": "video10922", "sen_id": 200910}, {"caption": "a woman is talking about a pop singer's makeup", "video_id": "video10922", "sen_id": 200911}, {"caption": "a woman with dark hair models a makeup look inspired by arianna grande", "video_id": "video10922", "sen_id": 200912}, {"caption": "a girl in makeup is speaking about her arianna grande look", "video_id": "video10922", "sen_id": 200913}, {"caption": "a woman talking and blushing into the camera", "video_id": "video10922", "sen_id": 200914}, {"caption": "a model wearing makeup looks at camera with a look", "video_id": "video10922", "sen_id": 200915}, {"caption": "a woman is being filmed and blinking her eyes", "video_id": "video10922", "sen_id": 200916}, {"caption": "there is a women with beautiful eyes and lips", "video_id": "video10922", "sen_id": 200917}, {"caption": "a lady fluttering her eyelahes and a lady just adoring the make up of the eye to explain how beautiful it looks", "video_id": "video10922", "sen_id": 200918}, {"caption": "a young woman describes and demonstrates her method of applying makeup to her face", "video_id": "video10922", "sen_id": 200919}, {"caption": "a pile of cooked orange shrimp with heads and shells attached curls on top of a bright white plate", "video_id": "video11816", "sen_id": 200920}, {"caption": "a beautiful presentation of perfectly cooked shrimp on an immaculate white plate", "video_id": "video11816", "sen_id": 200921}, {"caption": "a cooked dish containing shrimp seen on a white platter", "video_id": "video11816", "sen_id": 200922}, {"caption": "a white plate with large cooked prawns and a garnish", "video_id": "video11816", "sen_id": 200923}, {"caption": "a chef shows a shrimp recipe that they have just finished preparing", "video_id": "video11816", "sen_id": 200924}, {"caption": "a fancy plate of shrimp advertising a website for filipino cooking", "video_id": "video11816", "sen_id": 200925}, {"caption": "a display of shrimp piled up on a small dish", "video_id": "video11816", "sen_id": 200926}, {"caption": "a promotional ad showing a plate of shrimp", "video_id": "video11816", "sen_id": 200927}, {"caption": "a chef shows off a shrimp recipe that they have recently completed", "video_id": "video11816", "sen_id": 200928}, {"caption": "some cooked prawns on a plate with some garnish", "video_id": "video11816", "sen_id": 200929}, {"caption": "a delicious looking plate of shrimp on a table", "video_id": "video11816", "sen_id": 200930}, {"caption": "some cooked shrimp are on a white plate and does not move", "video_id": "video11816", "sen_id": 200931}, {"caption": "prawns is placed in plate kept on the table", "video_id": "video11816", "sen_id": 200932}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video11816", "sen_id": 200933}, {"caption": "a white dish with several pieces of shrimp and garnish", "video_id": "video11816", "sen_id": 200934}, {"caption": "a chef displays a shrimp recipe that he prepared in his restaurant", "video_id": "video11816", "sen_id": 200935}, {"caption": "a prawn dish is kept decoratevely in a plate", "video_id": "video11816", "sen_id": 200936}, {"caption": "there is a dish prawnlooking delicious on the table", "video_id": "video11816", "sen_id": 200937}, {"caption": "a pile of cooked prawns centered on a white round plate", "video_id": "video11816", "sen_id": 200938}, {"caption": "cook n share prawn food is prepared in plate", "video_id": "video11816", "sen_id": 200939}, {"caption": "letters of a logo transform into a theme as the planet rotates in front a of a partially dark and cloudy atmosphere", "video_id": "video10602", "sen_id": 200940}, {"caption": "a movie intro is alluding to the evolution of earth", "video_id": "video10602", "sen_id": 200941}, {"caption": "a logo of a company has writing that changes the writing in front of it", "video_id": "video10602", "sen_id": 200942}, {"caption": "a computer generated image of a globe with the words rev media those words turn into evolution as the globe spins", "video_id": "video10602", "sen_id": 200943}, {"caption": "a grapic of a rotating earth falling letters and white clouds showing against a black background", "video_id": "video10602", "sen_id": 200944}, {"caption": "revmedia introduction video with booming bass sound and a turning globe", "video_id": "video10602", "sen_id": 200945}, {"caption": "loud noises play while text on the screen falls apart in front of a planet", "video_id": "video10602", "sen_id": 200946}, {"caption": "a logo on a rotating earth above a cloudy atmosphere", "video_id": "video10602", "sen_id": 200947}, {"caption": "a globe rotating over a cloudy atmosphere in space", "video_id": "video10602", "sen_id": 200948}, {"caption": "a picture of the globe is spinning on the scree", "video_id": "video10602", "sen_id": 200949}, {"caption": "letters on a screen with a globe spinning behind them", "video_id": "video10602", "sen_id": 200950}, {"caption": "opening credits for the production company rev media", "video_id": "video10602", "sen_id": 200951}, {"caption": "a globe with shows some evolution and the globe rotates in the galaxy", "video_id": "video10602", "sen_id": 200952}, {"caption": "a globe image is animated where the logo alphabets are scrambling", "video_id": "video10602", "sen_id": 200953}, {"caption": "animation of planet and words scrolling by", "video_id": "video10602", "sen_id": 200954}, {"caption": "starting credits for a movie rolls as the earth revolves in the back", "video_id": "video10602", "sen_id": 200955}, {"caption": "the logo rev media is written over an image of the earth the name then falls away to reveal the word evolution", "video_id": "video10602", "sen_id": 200956}, {"caption": "an advertisement of the rev media evolution", "video_id": "video10602", "sen_id": 200957}, {"caption": "here is showing a picture of searocks and depicts evolution", "video_id": "video10602", "sen_id": 200958}, {"caption": "the vedio start with a globe like object rotate one which the wording rev then the letter r is falling down and media get goes and the wording evolution appeared", "video_id": "video10602", "sen_id": 200959}, {"caption": "helicopter blades spin and blow ripples through a grassy field while a helmeted soldier wearing a thick vest approaches the door", "video_id": "video12097", "sen_id": 200960}, {"caption": "helicopters getting ready to take off in a big field", "video_id": "video12097", "sen_id": 200961}, {"caption": "a man wearing a white helmet walking through a field towards a running helicopter", "video_id": "video12097", "sen_id": 200962}, {"caption": "a clip from the tv show top gear", "video_id": "video12097", "sen_id": 200963}, {"caption": "a man walks across a field to a large helicopter while it warms up", "video_id": "video12097", "sen_id": 200964}, {"caption": "a helicopter blade rotating and a helicopter landed on a wheat field", "video_id": "video12097", "sen_id": 200965}, {"caption": "this is a clip from a tv show and there is a helicopter", "video_id": "video12097", "sen_id": 200966}, {"caption": "helicopter blades spin around a man with a white helmet approaches the helicopter", "video_id": "video12097", "sen_id": 200967}, {"caption": "a man in a helmet walking through the field of grain", "video_id": "video12097", "sen_id": 200968}, {"caption": "a helicopter prepares to take off in a wheat field", "video_id": "video12097", "sen_id": 200969}, {"caption": "a panning view of the rotor blades of a helicopter followed by blowing grass being buffeted by the wind created by the chopper somebody in a full body suit and helmet crosses the field toward the helicoter they get in and you see various parts of the exterior and interior of the helicopter", "video_id": "video12097", "sen_id": 200970}, {"caption": "a helicopter in the middle of a field getting ready to take off", "video_id": "video12097", "sen_id": 200971}, {"caption": "a dramatic scene of a man walking to a helicopter that is about to take off", "video_id": "video12097", "sen_id": 200972}, {"caption": "helicopter rotors are spinning the grass is blowing and a man walks across the field and gets in the helicopter", "video_id": "video12097", "sen_id": 200973}, {"caption": "a helicopter in a field wet as a man walked towards it", "video_id": "video12097", "sen_id": 200974}, {"caption": "a man being picked up by a helicopter in a field", "video_id": "video12097", "sen_id": 200975}, {"caption": "a man walking towards a helicopter ready to take off in an open outfield", "video_id": "video12097", "sen_id": 200976}, {"caption": "a video of a helicopter propeller rotating at high speeds", "video_id": "video12097", "sen_id": 200977}, {"caption": "a man walking and getting in the helicopter", "video_id": "video12097", "sen_id": 200978}, {"caption": "a helicopter with pilot and other staffs in a corn field", "video_id": "video12097", "sen_id": 200979}, {"caption": "a man that prefers barn organic or free range eggs and hates facorey eggs", "video_id": "video11559", "sen_id": 200980}, {"caption": "a british man is talking about which eggs to use in a recipe", "video_id": "video11559", "sen_id": 200981}, {"caption": "a man explaining what type of egg is best to use and which eggs he prefers to using while cooking", "video_id": "video11559", "sen_id": 200982}, {"caption": "a chef is showing us a way to cook an egg", "video_id": "video11559", "sen_id": 200983}, {"caption": "jamie oliver talks about his preferences in eggs", "video_id": "video11559", "sen_id": 200984}, {"caption": "the chef jamie oliver cooking with eggs", "video_id": "video11559", "sen_id": 200985}, {"caption": "a man in blue is explaining how to cook in a kitchen", "video_id": "video11559", "sen_id": 200986}, {"caption": "a chef prepares a dish by talking about the ingredients he will use", "video_id": "video11559", "sen_id": 200987}, {"caption": "a chef in blue puts a bowl down picks up an egg and speaks about food", "video_id": "video11559", "sen_id": 200988}, {"caption": "a man in a blue shirt holding a brown egg", "video_id": "video11559", "sen_id": 200989}, {"caption": "a man in grey is holding an egg in the kitchen", "video_id": "video11559", "sen_id": 200990}, {"caption": "jamie oliver discusses his preference to free range eggs and factory eggs", "video_id": "video11559", "sen_id": 200991}, {"caption": "a male chef is holding an egg and clapped his hands", "video_id": "video11559", "sen_id": 200992}, {"caption": "a man in a blue shirt is holding an egg talking about a recipe", "video_id": "video11559", "sen_id": 200993}, {"caption": "a man in blue cooking discussing eggs", "video_id": "video11559", "sen_id": 200994}, {"caption": "a cook in casual clothes in kitchen discusses egg choice", "video_id": "video11559", "sen_id": 200995}, {"caption": "a person in blue dress a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11559", "sen_id": 200996}, {"caption": "a person is showing an egg in their kitchen", "video_id": "video11559", "sen_id": 200997}, {"caption": "a guy is holding some eggs and going to prepare meal or desert", "video_id": "video11559", "sen_id": 200998}, {"caption": "person in the kitchen talking about eggs", "video_id": "video11559", "sen_id": 200999}, {"caption": "a chef features a live squid while prepping his food", "video_id": "video11158", "sen_id": 201000}, {"caption": "in a kitchen a chef uses a knife to prepar squid", "video_id": "video11158", "sen_id": 201001}, {"caption": "an octopus legs moving with its head cut off", "video_id": "video11158", "sen_id": 201002}, {"caption": "a chef prepares a meal with live squid being cut in front of the customer", "video_id": "video11158", "sen_id": 201003}, {"caption": "a man at the market is cutting squid open and one is still alive on table", "video_id": "video11158", "sen_id": 201004}, {"caption": "a man cutting a live squid in front of customers", "video_id": "video11158", "sen_id": 201005}, {"caption": "a chef prepares to use a live squid in a recipe he is preparing", "video_id": "video11158", "sen_id": 201006}, {"caption": "a chef uses parts of a live squid to prepare a seafood recipe", "video_id": "video11158", "sen_id": 201007}, {"caption": "a chef preps a piece of squid that he is going to use in a recipe", "video_id": "video11158", "sen_id": 201008}, {"caption": "man cutting a squid while there is a live octopus beside him on a cutting board", "video_id": "video11158", "sen_id": 201009}, {"caption": "a chef prepares fresh squid and octopus on a white countertop while the animals are still alive", "video_id": "video11158", "sen_id": 201010}, {"caption": "seafood being cut on a board near a live baby octopus", "video_id": "video11158", "sen_id": 201011}, {"caption": "there is a man preparing a dish with octopus", "video_id": "video11158", "sen_id": 201012}, {"caption": "star fish is shown in a table a man touching it", "video_id": "video11158", "sen_id": 201013}, {"caption": "a man is using a cutting board with a live squid sitting on it", "video_id": "video11158", "sen_id": 201014}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11158", "sen_id": 201015}, {"caption": "several people watch a man cut up a squid while they laugh", "video_id": "video11158", "sen_id": 201016}, {"caption": "a cook in a black shirt and latex gloves making sushi by cutting up a live squid", "video_id": "video11158", "sen_id": 201017}, {"caption": "people laughing at a man who is capturing an octopus on video being prepared for eating", "video_id": "video11158", "sen_id": 201018}, {"caption": "squid is cut up in front of customers who laugh as the legs continue to move despite being cut away from the rest of the squid", "video_id": "video11158", "sen_id": 201019}, {"caption": "chef ramsey cutting some carrots and chopping celery", "video_id": "video12575", "sen_id": 201020}, {"caption": "a man in the kitchen cutting up veggies and putting oil in a pot", "video_id": "video12575", "sen_id": 201021}, {"caption": "a chef chops vegetables that he is using to prepare a roasted meat dish", "video_id": "video12575", "sen_id": 201022}, {"caption": "gordon ramsey working with celery carrots onions and olive oil", "video_id": "video12575", "sen_id": 201023}, {"caption": "a professional chef describes a cooking recipe during a tv show", "video_id": "video12575", "sen_id": 201024}, {"caption": "famous chef gordon ramsay wearing casual clothing that includes dark shorts and flip-flops gives an on-camera cooking lesson that includes carrots and celery in the recipe", "video_id": "video12575", "sen_id": 201025}, {"caption": "a man in his kitchen chops vegetables at the counter then turns to the stove and pours oil in a stainless steel baking pan", "video_id": "video12575", "sen_id": 201026}, {"caption": "a man is cutting vegetables and then pours oil in a pan", "video_id": "video12575", "sen_id": 201027}, {"caption": "chef gordon ramsey prepares vegetables to be cooked in a dish", "video_id": "video12575", "sen_id": 201028}, {"caption": "a chef chops vegetables to be used in a dish that he is getting ready to prepare", "video_id": "video12575", "sen_id": 201029}, {"caption": "a male cook illustrates and explains how to prepare a dish using aluminum pans oil and carrots on a heated stove", "video_id": "video12575", "sen_id": 201030}, {"caption": "a man is beginning his salmon meal while describing his actions", "video_id": "video12575", "sen_id": 201031}, {"caption": "in the kitchen a blue tshirt man pouring some oil to a pan", "video_id": "video12575", "sen_id": 201032}, {"caption": "a middle aged man with unkempt hair and casual attire was in the kitchen beginning preperations for a meal to be cooked on the kitchen", "video_id": "video12575", "sen_id": 201033}, {"caption": "a man explain and how is prepare the food", "video_id": "video12575", "sen_id": 201034}, {"caption": "man preparing the ingredients in the kitchen for the lunch", "video_id": "video12575", "sen_id": 201035}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12575", "sen_id": 201036}, {"caption": "in a kitche a person is slicing a carrots carefully with other vegetables on the desk", "video_id": "video12575", "sen_id": 201037}, {"caption": "the man is cutting vegetables on the table in the kitchen", "video_id": "video12575", "sen_id": 201038}, {"caption": "gordon ramsey is cutting several vegetables with a knife in his kitchen", "video_id": "video12575", "sen_id": 201039}, {"caption": "three different type of suv jeep models being shown", "video_id": "video11752", "sen_id": 201040}, {"caption": "a sports utility vehicle is on display and going through transitions", "video_id": "video11752", "sen_id": 201041}, {"caption": "many different styles of jeeps that are very decked out and buffy", "video_id": "video11752", "sen_id": 201042}, {"caption": "two images are shown of concept off road vehicles", "video_id": "video11752", "sen_id": 201043}, {"caption": "a series of dune buggies are sitting on a show room floor", "video_id": "video11752", "sen_id": 201044}, {"caption": "various off road type vehicles are presented in a powerpoint fashion", "video_id": "video11752", "sen_id": 201045}, {"caption": "a picture of different types of jeeeps", "video_id": "video11752", "sen_id": 201046}, {"caption": "there are dark colored trucks mostly black similar to a jeep in appearance with with huge and robust looking dirt tires", "video_id": "video11752", "sen_id": 201047}, {"caption": "a man is driving an orange truck followed by a white truck and a black truck", "video_id": "video11752", "sen_id": 201048}, {"caption": "three images of vehicles appear without any background sound", "video_id": "video11752", "sen_id": 201049}, {"caption": "there is a black car that is missing windows and has large tires", "video_id": "video11752", "sen_id": 201050}, {"caption": "there is a stylish jeep on the floor", "video_id": "video11752", "sen_id": 201051}, {"caption": "jacked up jeeps used for rock climbing contests", "video_id": "video11752", "sen_id": 201052}, {"caption": "a different type of toy cars are scrolling", "video_id": "video11752", "sen_id": 201053}, {"caption": "a few off road cars with big wheels", "video_id": "video11752", "sen_id": 201054}, {"caption": "a different types of jeep is being shown and the jeep design is really awsome and colour also", "video_id": "video11752", "sen_id": 201055}, {"caption": "various models of modified jeeps one equipped as a dune buggy the other in all black metal", "video_id": "video11752", "sen_id": 201056}, {"caption": "a silent video showing several types of jeep style vehicles", "video_id": "video11752", "sen_id": 201057}, {"caption": "two or three custom jeeps black and white and black", "video_id": "video11752", "sen_id": 201058}, {"caption": "a new jeeps with new features and style are on display", "video_id": "video11752", "sen_id": 201059}, {"caption": "a scientist wearing rubber gloves touches the inner workings of an open component in a laboratory and then explains her work near other equipment", "video_id": "video12456", "sen_id": 201060}, {"caption": "a woman in a lab uses lab equipment and talks to the camera", "video_id": "video12456", "sen_id": 201061}, {"caption": "a foreign young woman is speaking about a machine process", "video_id": "video12456", "sen_id": 201062}, {"caption": "a woman in a red jacket and green gloves is talking about what she is doing in the lab", "video_id": "video12456", "sen_id": 201063}, {"caption": "a woman is loading an object into a large machine afterward she speaks about the process", "video_id": "video12456", "sen_id": 201064}, {"caption": "a young female scientist performs an experiemnt in an indoor laboratory", "video_id": "video12456", "sen_id": 201065}, {"caption": "a lady puts something into a lab machine before talking to the camera", "video_id": "video12456", "sen_id": 201066}, {"caption": "scientist uses a machine and speaks about the use of it", "video_id": "video12456", "sen_id": 201067}, {"caption": "a young female conducts an experiment in a modern laboratory", "video_id": "video12456", "sen_id": 201068}, {"caption": "a woman in a red lab coat is talking while handling and standing next to advanced equipment", "video_id": "video12456", "sen_id": 201069}, {"caption": "a women in a red lab coat is operation a machine", "video_id": "video12456", "sen_id": 201070}, {"caption": "a woman wearing a red shirt is talking in a foreign language", "video_id": "video12456", "sen_id": 201071}, {"caption": "a pretty female scientist explains what she is doing with her equipment", "video_id": "video12456", "sen_id": 201072}, {"caption": "a women doing some work in the laboratory", "video_id": "video12456", "sen_id": 201073}, {"caption": "a lady wearing red color dress talking", "video_id": "video12456", "sen_id": 201074}, {"caption": "a woman in red uses a bitotech disposable bioreactor", "video_id": "video12456", "sen_id": 201075}, {"caption": "a lady is a red jacket is working in a lab", "video_id": "video12456", "sen_id": 201076}, {"caption": "a woman in a red shirt is in a building", "video_id": "video12456", "sen_id": 201077}, {"caption": "a woman is operating and explaining a factory equipment", "video_id": "video12456", "sen_id": 201078}, {"caption": "a lady in red shirts standing in front of some type of equipment", "video_id": "video12456", "sen_id": 201079}, {"caption": "a woman who is applying eye shadow making sure it blends in", "video_id": "video11106", "sen_id": 201080}, {"caption": "makeup being applied on an older woman with a black device", "video_id": "video11106", "sen_id": 201081}, {"caption": "a person demonstrates on a women how to put on eye shadow properly and make it look subtle", "video_id": "video11106", "sen_id": 201082}, {"caption": "a white women is having purple eyeshadow applied to her eyes", "video_id": "video11106", "sen_id": 201083}, {"caption": "a woman has some eye make up put on her", "video_id": "video11106", "sen_id": 201084}, {"caption": "a guy is giving an old woman some eyeshadow", "video_id": "video11106", "sen_id": 201085}, {"caption": "a middle aged woman with blond hair is doing her eye make-up with a black brush in subtle shading", "video_id": "video11106", "sen_id": 201086}, {"caption": "a woman putting make up on her eye", "video_id": "video11106", "sen_id": 201087}, {"caption": "a makeup artist putting eyeshadow on a womans eyelids", "video_id": "video11106", "sen_id": 201088}, {"caption": "a woman demonstrates and explains why it is imporatant to thoroughly blend eye shadows", "video_id": "video11106", "sen_id": 201089}, {"caption": "a woman with blonde hair keeps her eyes closed while another person applies a tan-and-purple eyeshadow with a small black brush and blends the colors", "video_id": "video11106", "sen_id": 201090}, {"caption": "a woman is showing us a demo how to apply a eye shadow in make up", "video_id": "video11106", "sen_id": 201091}, {"caption": "a demonstration of eyeshadow application on a blonde female model", "video_id": "video11106", "sen_id": 201092}, {"caption": "a woman is seated with eye shadow makeup being applied by another with broad brush", "video_id": "video11106", "sen_id": 201093}, {"caption": "a woman applies brown eyeshadow on another woman", "video_id": "video11106", "sen_id": 201094}, {"caption": "person is applying makeup to a womans face", "video_id": "video11106", "sen_id": 201095}, {"caption": "a lady is applying eye shadow on her eye lids with brush", "video_id": "video11106", "sen_id": 201096}, {"caption": "a woman is coloring her eye lid and make up", "video_id": "video11106", "sen_id": 201097}, {"caption": "a lady is doing her eye makeup with a brush", "video_id": "video11106", "sen_id": 201098}, {"caption": "a girl a pencil in her hand brush for make up beauty facial look displaying on screen", "video_id": "video11106", "sen_id": 201099}, {"caption": "the audience is enveloped in a stirring crescendo while an orchestra plays and a chorus sings as the earth rotates in front of them", "video_id": "video10737", "sen_id": 201100}, {"caption": "an orchestra of various instruments is performing a song", "video_id": "video10737", "sen_id": 201101}, {"caption": "a group of people playing instruments and singing a song", "video_id": "video10737", "sen_id": 201102}, {"caption": "a symphony plays music with space imagery in the background", "video_id": "video10737", "sen_id": 201103}, {"caption": "an auditorium filled with persons playing musical instruments", "video_id": "video10737", "sen_id": 201104}, {"caption": "a large symphony and a choir perform in front of a large audience", "video_id": "video10737", "sen_id": 201105}, {"caption": "orchestra is shown playing a song while a group of people dressed in blue sing", "video_id": "video10737", "sen_id": 201106}, {"caption": "a large band is playing for many people in an audience", "video_id": "video10737", "sen_id": 201107}, {"caption": "a chorus choir and band is playing an orchestrated song on a stage", "video_id": "video10737", "sen_id": 201108}, {"caption": "a chorus sings in latin accompanied by a full orchestra", "video_id": "video10737", "sen_id": 201109}, {"caption": "{}", "video_id": "video10737", "sen_id": 201110}, {"caption": "there are so many peoples with suits and learning with musical instrument guitar", "video_id": "video10737", "sen_id": 201111}, {"caption": "a large band and choir are performing a song", "video_id": "video10737", "sen_id": 201112}, {"caption": "a group dance a with a song in a concert", "video_id": "video10737", "sen_id": 201113}, {"caption": "a gray globe rotates on a wide blue screen behind an orchestra and a chorus bathed in blue light", "video_id": "video10737", "sen_id": 201114}, {"caption": "a group of people play instruments while people on stage holding books", "video_id": "video10737", "sen_id": 201115}, {"caption": "here a large number of musicians are playing violin and the orchestra is enjoyed by all", "video_id": "video10737", "sen_id": 201116}, {"caption": "some people in an audience are watching a performance", "video_id": "video10737", "sen_id": 201117}, {"caption": "earth is moving round and round all rivers are shown", "video_id": "video10737", "sen_id": 201118}, {"caption": "civilization iv live man crowds are making music and sings", "video_id": "video10737", "sen_id": 201119}, {"caption": "a baby playing on the bed while laying next to his daddy", "video_id": "video10517", "sen_id": 201120}, {"caption": "there is a baby rolling around in bed and laughing with his father", "video_id": "video10517", "sen_id": 201121}, {"caption": "a man lays on a bed with his infant son", "video_id": "video10517", "sen_id": 201122}, {"caption": "a man appears to sleep on a bed while a baby in only a diaper rolls around cooing", "video_id": "video10517", "sen_id": 201123}, {"caption": "a toddler playfully tugging on a chain around the neck of a guy", "video_id": "video10517", "sen_id": 201124}, {"caption": "the babies are rolling on the mat with the man", "video_id": "video10517", "sen_id": 201125}, {"caption": "a man is playing with a baby on a bed", "video_id": "video10517", "sen_id": 201126}, {"caption": "a baby on a bed rolling over and touching a mans face", "video_id": "video10517", "sen_id": 201127}, {"caption": "a baby on a bed smiling and touching their sleeping dad", "video_id": "video10517", "sen_id": 201128}, {"caption": "a baby lying in bed with a man plays and rolls around while laughing to himself", "video_id": "video10517", "sen_id": 201129}, {"caption": "a baby waking up and rolling on a bed then touching its dad", "video_id": "video10517", "sen_id": 201130}, {"caption": "there is a man sleeping nearby his baby", "video_id": "video10517", "sen_id": 201131}, {"caption": "a kid sleeping near its father and pulling the chain then laughs", "video_id": "video10517", "sen_id": 201132}, {"caption": "a baby laughs and rolls on a large bed on a sunny day", "video_id": "video10517", "sen_id": 201133}, {"caption": "a short haired woman lays on bed with small child", "video_id": "video10517", "sen_id": 201134}, {"caption": "a baby lies on the bed and giggles for the camera", "video_id": "video10517", "sen_id": 201135}, {"caption": "a man and baby are laying on a hospital gurney the baby wiggles around happily", "video_id": "video10517", "sen_id": 201136}, {"caption": "a small baby playing with father while he sleeping", "video_id": "video10517", "sen_id": 201137}, {"caption": "father and baby laying on a bed when baby rolls over and smiles", "video_id": "video10517", "sen_id": 201138}, {"caption": "a baby sleeping on bed beside a man sleeping in blue dress displaying on screen", "video_id": "video10517", "sen_id": 201139}, {"caption": "a man in a white sh", "video_id": "video10773", "sen_id": 201140}, {"caption": "blow hard talking random crud about animated movies", "video_id": "video10773", "sen_id": 201141}, {"caption": "a man describing a movie scene from the king's speech", "video_id": "video10773", "sen_id": 201142}, {"caption": "a youtube video about an employee from amc talking about movies", "video_id": "video10773", "sen_id": 201143}, {"caption": "a man with dark hair wearing a white polo shirt speaks into a microphone by red and blue draperies while lifting his arms to shoulder height to emphasize his movie review", "video_id": "video10773", "sen_id": 201144}, {"caption": "a man talks into a microphone about a scene from the movie the king's speech", "video_id": "video10773", "sen_id": 201145}, {"caption": "a man on amc movie talk is talking about movies", "video_id": "video10773", "sen_id": 201146}, {"caption": "a man in a white t-shirt talks into a very large microphone", "video_id": "video10773", "sen_id": 201147}, {"caption": "a man in a white shirt is discussing a scene in a movie", "video_id": "video10773", "sen_id": 201148}, {"caption": "a man speaks into a microphoned about a video were two men sit in a room and talk", "video_id": "video10773", "sen_id": 201149}, {"caption": "a man in a white shirt describes a riveting scene in a movie", "video_id": "video10773", "sen_id": 201150}, {"caption": "a man in a white shirt praising a particular scene in a movie", "video_id": "video10773", "sen_id": 201151}, {"caption": "a man in a white collared polo shirt is speaking into a large microphone", "video_id": "video10773", "sen_id": 201152}, {"caption": "a man in a white shirt discusses a scene from the movie the king s speech", "video_id": "video10773", "sen_id": 201153}, {"caption": "a man in a white polo shirt talking into a microphone", "video_id": "video10773", "sen_id": 201154}, {"caption": "a man in a white shirt is speaking into a mic", "video_id": "video10773", "sen_id": 201155}, {"caption": "a man talks about about a movie scene where two persons sitting opposite each other and talking to each other for about five minutes", "video_id": "video10773", "sen_id": 201156}, {"caption": "a man is talking into a microphone about a movie", "video_id": "video10773", "sen_id": 201157}, {"caption": "a man in white shirt is speaking in the mic", "video_id": "video10773", "sen_id": 201158}, {"caption": "a man is discussing a movie scene while talking into a large microphone", "video_id": "video10773", "sen_id": 201159}, {"caption": "a man fishes on a boat and wishes to catch a fish using live bait", "video_id": "video12434", "sen_id": 201160}, {"caption": "a man in a long light blue shirt is fishing", "video_id": "video12434", "sen_id": 201161}, {"caption": "a man uses live bait to fish from a small kayak", "video_id": "video12434", "sen_id": 201162}, {"caption": "a man in a boat baits a hook on a fishing rod and casts out for a fish", "video_id": "video12434", "sen_id": 201163}, {"caption": "a man in blue is fishing with a small fish as bait", "video_id": "video12434", "sen_id": 201164}, {"caption": "a man who is fishing shows himself using live bait", "video_id": "video12434", "sen_id": 201165}, {"caption": "a fisherman uses live bait to fish in an ocean channel", "video_id": "video12434", "sen_id": 201166}, {"caption": "a man standing in a slim fishing boat holds a moving gray fish between two fingers lifts the fish with a hook through its back positions the fishing rod parallel to the water surface and stands to reel in his catch", "video_id": "video12434", "sen_id": 201167}, {"caption": "a man who is in a boat and is wearing a white shirt and black hat displays a small live fish that he uses for bait and casts his reel", "video_id": "video12434", "sen_id": 201168}, {"caption": "a man in a boat fishes with live bait", "video_id": "video12434", "sen_id": 201169}, {"caption": "a man with long hair wearing a hat talking about catching a fish", "video_id": "video12434", "sen_id": 201170}, {"caption": "four mens in are fishing in the ship and looking each other", "video_id": "video12434", "sen_id": 201171}, {"caption": "a man go to the boat and seeing sight seen", "video_id": "video12434", "sen_id": 201172}, {"caption": "a fishermen casts his line out into the ocean", "video_id": "video12434", "sen_id": 201173}, {"caption": "someone in blue jacket is fishing from the boat in a river", "video_id": "video12434", "sen_id": 201174}, {"caption": "a person with black colour dress is catching fish in a pond", "video_id": "video12434", "sen_id": 201175}, {"caption": "a man taking a fish from a water", "video_id": "video12434", "sen_id": 201176}, {"caption": "a man in a small boat fishes with a small minnow on his hook", "video_id": "video12434", "sen_id": 201177}, {"caption": "a fishermen reel in a big cath in shallow waters", "video_id": "video12434", "sen_id": 201178}, {"caption": "a man attaches a live minnow to his hook before tossing out his fishing line", "video_id": "video12434", "sen_id": 201179}, {"caption": "two women sitting aside each other on a couch having conversation", "video_id": "video12047", "sen_id": 201180}, {"caption": "two women have a conversation on a couch", "video_id": "video12047", "sen_id": 201181}, {"caption": "two women lounge on a sofa and talk quietly about a relationship which causes one woman to become weepy", "video_id": "video12047", "sen_id": 201182}, {"caption": "two women on a couch talking sentimentally", "video_id": "video12047", "sen_id": 201183}, {"caption": "two women are sitting on a sofa talking and looking at each other", "video_id": "video12047", "sen_id": 201184}, {"caption": "two women discuss various topics while they set together on a couch", "video_id": "video12047", "sen_id": 201185}, {"caption": "two women are sitting on a print sofa having a calm conversation", "video_id": "video12047", "sen_id": 201186}, {"caption": "a girl in white capris sits with another girl in a striped shirt on a sofa", "video_id": "video12047", "sen_id": 201187}, {"caption": "two woman are sitting in the couch speaking when one of them confesses that her girlfriend is the girl in the cafe", "video_id": "video12047", "sen_id": 201188}, {"caption": "2 ladies talking in a beige couch the two ladies have ponytails one is red haired and the other one is brunette", "video_id": "video12047", "sen_id": 201189}, {"caption": "two women sitting on a couch talking to each other", "video_id": "video12047", "sen_id": 201190}, {"caption": "women on a couch sitting close and having a back and forth conversation", "video_id": "video12047", "sen_id": 201191}, {"caption": "two ladies sit on a coach and discuss things", "video_id": "video12047", "sen_id": 201192}, {"caption": "two women sitting inside a living room and talking", "video_id": "video12047", "sen_id": 201193}, {"caption": "two womens are sitting on a sofa and they both are talking to each other", "video_id": "video12047", "sen_id": 201194}, {"caption": "two women were sitting in the sofa and talking some thing", "video_id": "video12047", "sen_id": 201195}, {"caption": "two womwn on a couch conducting an intimate conversation", "video_id": "video12047", "sen_id": 201196}, {"caption": "two women having a very in depth discussion about a topic", "video_id": "video12047", "sen_id": 201197}, {"caption": "two women have a serious discussion together on a sofa indoors", "video_id": "video12047", "sen_id": 201198}, {"caption": "two women is sitting in hall and talking something", "video_id": "video12047", "sen_id": 201199}, {"caption": "an older man wearing glasses and a gray sweater is making a point about food during a television interview", "video_id": "video11655", "sen_id": 201200}, {"caption": "this is a clip of a man named tam fry talking on a bbc newscast", "video_id": "video11655", "sen_id": 201201}, {"caption": "a man talking about what sounds like an obesity study", "video_id": "video11655", "sen_id": 201202}, {"caption": "with the trending battle of obesity uk forum tom fry is giving a national food and beverage perspective", "video_id": "video11655", "sen_id": 201203}, {"caption": "there is a man in a grey sweater giving an interview to a person", "video_id": "video11655", "sen_id": 201204}, {"caption": "the man is talking about a battle on the news channel", "video_id": "video11655", "sen_id": 201205}, {"caption": "a man in glasses is talking on a news show", "video_id": "video11655", "sen_id": 201206}, {"caption": "an older man in a gray sweater and glasses answers questions", "video_id": "video11655", "sen_id": 201207}, {"caption": "tam fry speaks on bbc world news wearing a grey sweater and glasses", "video_id": "video11655", "sen_id": 201208}, {"caption": "a male with balding hair and wearing a gray sweater talks shop with someone who is not visible on the screen", "video_id": "video11655", "sen_id": 201209}, {"caption": "a man in a grey sweater is being interviewed on television", "video_id": "video11655", "sen_id": 201210}, {"caption": "a old man with specs talking from a studio", "video_id": "video11655", "sen_id": 201211}, {"caption": "the man wearing eye glasses and the gray sweater talks", "video_id": "video11655", "sen_id": 201212}, {"caption": "an old man is talking in the tv channel", "video_id": "video11655", "sen_id": 201213}, {"caption": "an old man is looking some where in his spex and talking about that", "video_id": "video11655", "sen_id": 201214}, {"caption": "a man with glasses is being interviewed on bbc", "video_id": "video11655", "sen_id": 201215}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video11655", "sen_id": 201216}, {"caption": "bbc world news one old man talks about", "video_id": "video11655", "sen_id": 201217}, {"caption": "a man discusses the impending obesity epidemic in a world forum", "video_id": "video11655", "sen_id": 201218}, {"caption": "a man is on bbc world news talking", "video_id": "video11655", "sen_id": 201219}, {"caption": "soccer teammates become emotional when a player is unresponsive on the ground and moved into an ambulance", "video_id": "video10606", "sen_id": 201220}, {"caption": "a soccer game is being played and a guy is injured so an ambulance comes on the field to get him", "video_id": "video10606", "sen_id": 201221}, {"caption": "a few different scenes from soccer in which people are hurt or sad", "video_id": "video10606", "sen_id": 201222}, {"caption": "a man is hurt during a football game and is taken from the field by ambulance", "video_id": "video10606", "sen_id": 201223}, {"caption": "a soccerclip depicting an italian player going into cardiac arrest", "video_id": "video10606", "sen_id": 201224}, {"caption": "a serious injury foul is committed on the soccer field that required the ambulance to drive on the field", "video_id": "video10606", "sen_id": 201225}, {"caption": "an injured soccer player leaving the field in an ambulance", "video_id": "video10606", "sen_id": 201226}, {"caption": "a man gets injured during a soccer game and carted off the field", "video_id": "video10606", "sen_id": 201227}, {"caption": "the soccer players are playing soccer in the field", "video_id": "video10606", "sen_id": 201228}, {"caption": "a number of men are playing soccer and one gets injured causing an ambulance to pick him up", "video_id": "video10606", "sen_id": 201229}, {"caption": "soccer players console each other when a player collapses and is wheeled on a gurney to a waiting ambulance", "video_id": "video10606", "sen_id": 201230}, {"caption": "a bunch of people dressed in red and white playing soccer and one person gets hurt", "video_id": "video10606", "sen_id": 201231}, {"caption": "a player is injured during a soccer game", "video_id": "video10606", "sen_id": 201232}, {"caption": "players are busy here playing a football match", "video_id": "video10606", "sen_id": 201233}, {"caption": "in foot ball match one player got injured and ambulance has came to take him to hospital", "video_id": "video10606", "sen_id": 201234}, {"caption": "men playing soccer before hugging each other while a man is evacuated from the field", "video_id": "video10606", "sen_id": 201235}, {"caption": "a soccer match that was halted when a player had a heart attack then was taken off the field by paramedics", "video_id": "video10606", "sen_id": 201236}, {"caption": "two teams play soccer in a stadium one player lays injured on the ground", "video_id": "video10606", "sen_id": 201237}, {"caption": "football match in which a player gone unconsious and doctors checking him then ambulance comes in", "video_id": "video10606", "sen_id": 201238}, {"caption": "a crowded stadium surrounding two teams playing a game of foot ball", "video_id": "video10606", "sen_id": 201239}, {"caption": "a man is training a monkey to put an empty water bottle in a bucket", "video_id": "video12898", "sen_id": 201240}, {"caption": "a man training a monkey in his home", "video_id": "video12898", "sen_id": 201241}, {"caption": "a man trains a small monkey to put trash into a bucket", "video_id": "video12898", "sen_id": 201242}, {"caption": "a little monkey in a diaper takes throws away an empty water bottle and gets a treat", "video_id": "video12898", "sen_id": 201243}, {"caption": "a man trains a small monkey to put trash in a bucket", "video_id": "video12898", "sen_id": 201244}, {"caption": "a man in black trains his monkey to take bottles to the recycling bin", "video_id": "video12898", "sen_id": 201245}, {"caption": "a money wearing a diaper is in a room with a person and the monkey is bringing things to the person from an orange bucket", "video_id": "video12898", "sen_id": 201246}, {"caption": "a monkey wearing a white diaper throws away a plastic bottle", "video_id": "video12898", "sen_id": 201247}, {"caption": "a man in dark clothing is giving things like a bottle to a monkey to place inside an orange bucket", "video_id": "video12898", "sen_id": 201248}, {"caption": "a monkey wearing a diaper throws away object in the trash", "video_id": "video12898", "sen_id": 201249}, {"caption": "a small monkey wearing a diaper plays around in an apartment", "video_id": "video12898", "sen_id": 201250}, {"caption": "a monkey taking orders and getting rewarded for it", "video_id": "video12898", "sen_id": 201251}, {"caption": "a man is training a small monkey in a diaper how to fetch", "video_id": "video12898", "sen_id": 201252}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video12898", "sen_id": 201253}, {"caption": "a man works on training his pet monkey to do tricks", "video_id": "video12898", "sen_id": 201254}, {"caption": "a baby monkey in a man teaching him how to pick up a bottle in throw into a trash can", "video_id": "video12898", "sen_id": 201255}, {"caption": "a person is showing monkey wearing a diaper", "video_id": "video12898", "sen_id": 201256}, {"caption": "a monkey standing in a room and putting items in a orange bucket", "video_id": "video12898", "sen_id": 201257}, {"caption": "a small monkey wearing a diaper is putting items in a bucket", "video_id": "video12898", "sen_id": 201258}, {"caption": "a man is teaching a monkey how to throw a bottle in the trash can", "video_id": "video12898", "sen_id": 201259}, {"caption": "two women laying in bed together where one starts to caress the other", "video_id": "video11149", "sen_id": 201260}, {"caption": "one woman initiates sex in bed as she moves her hand up past the hem of the other woman's gold dress", "video_id": "video11149", "sen_id": 201261}, {"caption": "two women completely dressed performing sexual foreplay", "video_id": "video11149", "sen_id": 201262}, {"caption": "two women having a sexual experience in a bed", "video_id": "video11149", "sen_id": 201263}, {"caption": "some woman feeling up another woman's dress while she moans", "video_id": "video11149", "sen_id": 201264}, {"caption": "the woman slides her had up the dress of the woman laying next to her", "video_id": "video11149", "sen_id": 201265}, {"caption": "the two women are cuddling in bed together and seem to be affectionate", "video_id": "video11149", "sen_id": 201266}, {"caption": "a girl tries to hit on and feel up another girl that is partially awake", "video_id": "video11149", "sen_id": 201267}, {"caption": "seductive type music and moaning is playing while one woman in a pink dress is rubbing and getting on top of another woman in a gold dress", "video_id": "video11149", "sen_id": 201268}, {"caption": "a woman is rubbing herself over another woman who is sleeping", "video_id": "video11149", "sen_id": 201269}, {"caption": "two woman in parties dresses enageing in foreplay", "video_id": "video11149", "sen_id": 201270}, {"caption": "two white women with brown hair make out on a bed with blue striped bed linens", "video_id": "video11149", "sen_id": 201271}, {"caption": "a woman slides her hand up another woman s dress and kisses her neck", "video_id": "video11149", "sen_id": 201272}, {"caption": "a woman running her hand up another woman s leg and kissing her", "video_id": "video11149", "sen_id": 201273}, {"caption": "a woman in a sequined dress lies on a bed as another women crawls on top of her and kisses her neck", "video_id": "video11149", "sen_id": 201274}, {"caption": "there is a woman in a gold dress caressing another woman on a bed", "video_id": "video11149", "sen_id": 201275}, {"caption": "a lady touching a girl by her hand", "video_id": "video11149", "sen_id": 201276}, {"caption": "a woman in a gold dress lays in bed and is held by woman in pink dress", "video_id": "video11149", "sen_id": 201277}, {"caption": "two ladies in beautiful dresses are having nice time together", "video_id": "video11149", "sen_id": 201278}, {"caption": "two women are getting romantic and sexual in a private moment", "video_id": "video11149", "sen_id": 201279}, {"caption": "a soup recipe that consisted of mushrooms and sliced pork", "video_id": "video12628", "sen_id": 201280}, {"caption": "person adding several different ingredients to a chicken broth", "video_id": "video12628", "sen_id": 201281}, {"caption": "a person is preparing mushroom and pork soup while directions are displayed", "video_id": "video12628", "sen_id": 201282}, {"caption": "a chef works on a dish by adding ingredients to a pot on their stove", "video_id": "video12628", "sen_id": 201283}, {"caption": "a person adds sliced pork and mushrooms to a boiling pot", "video_id": "video12628", "sen_id": 201284}, {"caption": "a person is adding sliced pork and mushrooms to boiling chicken broth", "video_id": "video12628", "sen_id": 201285}, {"caption": "a pot is on the stove while a hand picks up plates of ingredients dumps them is the pot and stirs it", "video_id": "video12628", "sen_id": 201286}, {"caption": "a person making food and sliding some food from a plate into a pot", "video_id": "video12628", "sen_id": 201287}, {"caption": "a pot of boiling liquid on a stove and a person adding ingredients to it", "video_id": "video12628", "sen_id": 201288}, {"caption": "a person is adding sliced pork and mushrooms to boiling chicken broth", "video_id": "video12628", "sen_id": 201289}, {"caption": "a graphic showing hands stirring pouring and preparing a soup like dish using carrotsonions and mushroom in a silver pot on a white stovetop", "video_id": "video12628", "sen_id": 201290}, {"caption": "instructions for how to prepare a soup are displayed on screen while the process is demonstrated", "video_id": "video12628", "sen_id": 201291}, {"caption": "a woman is boiling a water and adding a ingredient to it", "video_id": "video12628", "sen_id": 201292}, {"caption": "a person adding sliced pork and chopped mushrooms into a sauce pan of chicken broth", "video_id": "video12628", "sen_id": 201293}, {"caption": "a cook shows how to make a chicken broth based soup by adding pork and sauteed mushrooms", "video_id": "video12628", "sen_id": 201294}, {"caption": "a person in a kitchen demonstrating how to prepare a dish", "video_id": "video12628", "sen_id": 201295}, {"caption": "in a kitchen someone pork and mushroom put in a steel pot", "video_id": "video12628", "sen_id": 201296}, {"caption": "chicken broth and pork are stirred into a mushroom dish", "video_id": "video12628", "sen_id": 201297}, {"caption": "cooking a mouth watering pork and mushrooms dish in the kitchen", "video_id": "video12628", "sen_id": 201298}, {"caption": "chicken broth comes to boil as sliced pork is added", "video_id": "video12628", "sen_id": 201299}, {"caption": "a recipe that includes pork fish sauce garlic egg or wheat noodles", "video_id": "video10961", "sen_id": 201300}, {"caption": "five ingredients on a bamboo mate while words scroll along the bottom", "video_id": "video10961", "sen_id": 201301}, {"caption": "a still shot of several asian looking ingredients of food", "video_id": "video10961", "sen_id": 201302}, {"caption": "meat garlic noodles and soy sauce are in 5 images as cooking instructions scroll across the bottom of the screen", "video_id": "video10961", "sen_id": 201303}, {"caption": "there is five sections each containing different things (soy sauce meats noodles and a vegetable)", "video_id": "video10961", "sen_id": 201304}, {"caption": "ingredients such as noodles meat sauce and garlic are shown", "video_id": "video10961", "sen_id": 201305}, {"caption": "there is a picture of meat followed by another picture of meat next to soy sauce next to ramen", "video_id": "video10961", "sen_id": 201306}, {"caption": "a chef shows the ingredients they will be using to create a recipe", "video_id": "video10961", "sen_id": 201307}, {"caption": "pictures of ingreditants needed to make a certain dish", "video_id": "video10961", "sen_id": 201308}, {"caption": "piano music is playing while the screen is cut into five sections with different ingredients in each such as sauce meat chopped up meat the description of what all you need scrolls along the very bottom of the screen", "video_id": "video10961", "sen_id": 201309}, {"caption": "a tutorial style video explains how one would prepare to cook up a particular meal", "video_id": "video10961", "sen_id": 201310}, {"caption": "five picture display asian food products in different windows", "video_id": "video10961", "sen_id": 201311}, {"caption": "there are five ingredients for a dish with instructions captioning the bottom", "video_id": "video10961", "sen_id": 201312}, {"caption": "there is some verity dish served for dinner", "video_id": "video10961", "sen_id": 201313}, {"caption": "making the best mutton item in the world with the receipes are showing the secssion", "video_id": "video10961", "sen_id": 201314}, {"caption": "on the wooden cutter sauce bottle meat and the noodles packet is placed", "video_id": "video10961", "sen_id": 201315}, {"caption": "a women is cooking in the kitchen with ingredients", "video_id": "video10961", "sen_id": 201316}, {"caption": " slice pork and sauce for a recipe", "video_id": "video10961", "sen_id": 201317}, {"caption": "a recipe that calls for garlic soy sauce and vegetables is readied", "video_id": "video10961", "sen_id": 201318}, {"caption": "piano plays over a tutorial on cooking an asian beef and noodle recipe", "video_id": "video10961", "sen_id": 201319}, {"caption": "a recipe that includes chicken but recommends using a mortat and pestle for a fine authentic taste", "video_id": "video10413", "sen_id": 201320}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video10413", "sen_id": 201321}, {"caption": "the video shows how to make a paste from scratch", "video_id": "video10413", "sen_id": 201322}, {"caption": "someone mashing ingredients in a large stone bowl", "video_id": "video10413", "sen_id": 201323}, {"caption": "there is chicken pieces in a colander and instructions on how to grind up the ingredientsthen pound the green vegetables into a fine paste using a pestle and mortar", "video_id": "video10413", "sen_id": 201324}, {"caption": "someone is preparing chicken by washing it and smashing ingredients with a mortar and pestle", "video_id": "video10413", "sen_id": 201325}, {"caption": "a recipe for a chicken dish is being shown while it is being prepared", "video_id": "video10413", "sen_id": 201326}, {"caption": "raw chicken in a colander then recipe directions followed by someone hand-grinding ingredients using a mortar and pestle", "video_id": "video10413", "sen_id": 201327}, {"caption": "someone mashing up ingredients in a small grey bowl", "video_id": "video10413", "sen_id": 201328}, {"caption": "someone mixing ingredients in a grey bowl", "video_id": "video10413", "sen_id": 201329}, {"caption": "someone mixing ingredients in a grey bowl", "video_id": "video10413", "sen_id": 201330}, {"caption": "there is someone making a chicken recipe", "video_id": "video10413", "sen_id": 201331}, {"caption": "more letter are displayed on a black back ground gigner mixed", "video_id": "video10413", "sen_id": 201332}, {"caption": "importance of the use of spice paste ground in a mortar and pestle being highlighted for this recipe", "video_id": "video10413", "sen_id": 201333}, {"caption": "raw chicken waits in a bowl as spices are tediously prepared", "video_id": "video10413", "sen_id": 201334}, {"caption": "some text is talking about making food", "video_id": "video10413", "sen_id": 201335}, {"caption": "there is a man cooking food and also mixing ingredients an chicken", "video_id": "video10413", "sen_id": 201336}, {"caption": "a person is using a pistol and mortar to grind ingredients into a paste", "video_id": "video10413", "sen_id": 201337}, {"caption": "instructions on how to cook meat and how to grind", "video_id": "video10413", "sen_id": 201338}, {"caption": "a written description of a recipe being created", "video_id": "video10413", "sen_id": 201339}, {"caption": "a cook is stirring up a pot of vegetables describing what the dish is and its influences", "video_id": "video10711", "sen_id": 201340}, {"caption": "food which is a soup or a atew that is in a pot that has a spanish style to it", "video_id": "video10711", "sen_id": 201341}, {"caption": "someone stirring a pot of beans and potatoes with a large metal ladle", "video_id": "video10711", "sen_id": 201342}, {"caption": "how to prepare beef stew in your own kitchen", "video_id": "video10711", "sen_id": 201343}, {"caption": "a hot soup made with potatoes carrots and other ingredients is stirred in a pan", "video_id": "video10711", "sen_id": 201344}, {"caption": "a chef discusses the origins of a recipe he has finished preparing", "video_id": "video10711", "sen_id": 201345}, {"caption": "a person stirs the vegetable stew together in the pot", "video_id": "video10711", "sen_id": 201346}, {"caption": "a man stirs his stew in a pot on the stove", "video_id": "video10711", "sen_id": 201347}, {"caption": "a guy talking about his spanish influenced dish", "video_id": "video10711", "sen_id": 201348}, {"caption": "video of a pot of soup plays while the cook talks about the dish", "video_id": "video10711", "sen_id": 201349}, {"caption": "a man stirs a dish discussing whether it is a stew or a soup", "video_id": "video10711", "sen_id": 201350}, {"caption": "a ladel is scooping up and dropping a food mixture containing potatoes carrots and some type of beans", "video_id": "video10711", "sen_id": 201351}, {"caption": "a ladle is stirring a beef and potato dish in a pot as the narrator talks about it", "video_id": "video10711", "sen_id": 201352}, {"caption": "an animated graphic with a male voiceover explain how a dish with lentils affects the body", "video_id": "video10711", "sen_id": 201353}, {"caption": "a person cooking all vegetables in a bowl", "video_id": "video10711", "sen_id": 201354}, {"caption": "a man speaks as he mixes a spanish stew in a pot", "video_id": "video10711", "sen_id": 201355}, {"caption": "a man cooking a dish which he describes between a soup and stew which has a spanish influence", "video_id": "video10711", "sen_id": 201356}, {"caption": "a person is making a stew in a pot", "video_id": "video10711", "sen_id": 201357}, {"caption": "someone is mixing the food kept in the pot on the gas", "video_id": "video10711", "sen_id": 201358}, {"caption": "a man explain and how is prepare the food", "video_id": "video10711", "sen_id": 201359}, {"caption": "people capturing different views while riding on trains", "video_id": "video10280", "sen_id": 201360}, {"caption": "a train traveling through a valley and people looking at the scenery", "video_id": "video10280", "sen_id": 201361}, {"caption": "a group of people are sightseeing on the trains", "video_id": "video10280", "sen_id": 201362}, {"caption": "people are riding in a train and viewing through the beautiful windows of the train the country", "video_id": "video10280", "sen_id": 201363}, {"caption": "people ride a a train through the countryside and look out windows", "video_id": "video10280", "sen_id": 201364}, {"caption": "passenger take photographs from a train car with panoramic windows as the red train passes through lush mountainous countryside quaint villages and stone elevated tracks", "video_id": "video10280", "sen_id": 201365}, {"caption": "a train drives down a rural countryside and through a village as people take photos on board", "video_id": "video10280", "sen_id": 201366}, {"caption": "a train is travelling through the countryside is seen from the air tourist aboard the train are seen taking photos of the countryside", "video_id": "video10280", "sen_id": 201367}, {"caption": "a beautiful landscape is seen through aerial views and glass windows", "video_id": "video10280", "sen_id": 201368}, {"caption": "a train moves on tracks through tranquil scenery while a passenger takes photos", "video_id": "video10280", "sen_id": 201369}, {"caption": "people travel through scenic views on a train with large windows", "video_id": "video10280", "sen_id": 201370}, {"caption": "a train passes through a valley full of foliage as passengers stare in awe", "video_id": "video10280", "sen_id": 201371}, {"caption": "people travelling by train are enjoying the nature all around", "video_id": "video10280", "sen_id": 201372}, {"caption": "peoples travelling in a train and see the natural", "video_id": "video10280", "sen_id": 201373}, {"caption": "a man and a woman are on a plane and looking at the veiw from their windows", "video_id": "video10280", "sen_id": 201374}, {"caption": "a long line of red railcars passes through a wooded mountain landscape", "video_id": "video10280", "sen_id": 201375}, {"caption": "a train is passing through mountain and bridges and people recording video of nature", "video_id": "video10280", "sen_id": 201376}, {"caption": "a train is passing by the mountain railway people clicking photo", "video_id": "video10280", "sen_id": 201377}, {"caption": "a man is shooting a naturals while he travelling from train", "video_id": "video10280", "sen_id": 201378}, {"caption": "a long train traveling on a track suspended over green landscape", "video_id": "video10280", "sen_id": 201379}, {"caption": "fighters shoot high-powered rifles at enemies outside stone buildings and inside a modern building", "video_id": "video11192", "sen_id": 201380}, {"caption": "a man going over an article from the xbox live magazine", "video_id": "video11192", "sen_id": 201381}, {"caption": "the shooting of the gun is faster on the xbox aiming directly at the pointer", "video_id": "video11192", "sen_id": 201382}, {"caption": "a video game demo shows characters walking around and shooting others with various guns", "video_id": "video11192", "sen_id": 201383}, {"caption": "a man shoots a gun and a sniper rifle in a first person shooter game", "video_id": "video11192", "sen_id": 201384}, {"caption": "the man is showing his screen as he plays a shooting game with his girlfriend", "video_id": "video11192", "sen_id": 201385}, {"caption": "someone is shooting a hand gun and then another man ran up next to him while shooting and then someone is shooting a large machine gun", "video_id": "video11192", "sen_id": 201386}, {"caption": "xbox game is discussed while a rifle is shooting", "video_id": "video11192", "sen_id": 201387}, {"caption": "a man demonstrates and describes a video game he is playing", "video_id": "video11192", "sen_id": 201388}, {"caption": "a man playing a first person shooting game while talking about xbox live", "video_id": "video11192", "sen_id": 201389}, {"caption": "a guy plays a first person shooter as he discusses the game", "video_id": "video11192", "sen_id": 201390}, {"caption": "there is a commando attacking with a gun", "video_id": "video11192", "sen_id": 201391}, {"caption": "the man shoots the gun in the video game", "video_id": "video11192", "sen_id": 201392}, {"caption": "a young man demonstrates and describes a video game that he is playing", "video_id": "video11192", "sen_id": 201393}, {"caption": "a gamer is showing a demostration of a game they are playing", "video_id": "video11192", "sen_id": 201394}, {"caption": "a man is shooting others in counter strike - the video game as the narrator promoted his youtube channel", "video_id": "video11192", "sen_id": 201395}, {"caption": "a man running through hall ways and pathways shooting people with a gun", "video_id": "video11192", "sen_id": 201396}, {"caption": "a animation game gun moves on and shoots the targeted enemies", "video_id": "video11192", "sen_id": 201397}, {"caption": "gun shot game in which the person try to shot the person standing behind the wall", "video_id": "video11192", "sen_id": 201398}, {"caption": "a man with a gun shoots at people inside and outside", "video_id": "video11192", "sen_id": 201399}, {"caption": "a women getting undressed to join a man in the shower", "video_id": "video11598", "sen_id": 201400}, {"caption": "a nude man stands in the shower while a woman undresses and joins him", "video_id": "video11598", "sen_id": 201401}, {"caption": "a woman prepares to shower naked with a man", "video_id": "video11598", "sen_id": 201402}, {"caption": "a woman undresses and gets in the shower with a man", "video_id": "video11598", "sen_id": 201403}, {"caption": "a woman takes her clothes off for her man in the bathroom", "video_id": "video11598", "sen_id": 201404}, {"caption": "a woman undresses and enters a shower where a man is waiting on her", "video_id": "video11598", "sen_id": 201405}, {"caption": "a woman removes her clothes and enters a shower where a man is waiting on her", "video_id": "video11598", "sen_id": 201406}, {"caption": "a lady takes off her dress and gets into a shower with a man", "video_id": "video11598", "sen_id": 201407}, {"caption": "woman undresses and goes into shower with a man while music is playing", "video_id": "video11598", "sen_id": 201408}, {"caption": "a young couple standing in the shower and removing their clothes", "video_id": "video11598", "sen_id": 201409}, {"caption": "a man and woman are getting naked in the shower together", "video_id": "video11598", "sen_id": 201410}, {"caption": "a man and woman are getting into the shower together", "video_id": "video11598", "sen_id": 201411}, {"caption": "a business woman is shown inside and then we see the woman taking off her clothes in the shower with a man", "video_id": "video11598", "sen_id": 201412}, {"caption": "a women undresses herself as she looks at her man in the same room", "video_id": "video11598", "sen_id": 201413}, {"caption": "there is young couple having sex in side the bathroom", "video_id": "video11598", "sen_id": 201414}, {"caption": "one women removes her dress offs and bath with man", "video_id": "video11598", "sen_id": 201415}, {"caption": "a girl and boy were in romantic mood and removing the dress", "video_id": "video11598", "sen_id": 201416}, {"caption": "a woman is getting naked in a shower", "video_id": "video11598", "sen_id": 201417}, {"caption": "a lady removing her dress and going for bath", "video_id": "video11598", "sen_id": 201418}, {"caption": "a men and women are getting undressed in wash room for bath", "video_id": "video11598", "sen_id": 201419}, {"caption": "a blog with black and white lettering introduces a beach scene dotted with sunbathers between a grassy area and the blue ocean", "video_id": "video12888", "sen_id": 201420}, {"caption": "a kjaggerscom video blog on a friday at myrtle beach", "video_id": "video12888", "sen_id": 201421}, {"caption": "a woman tlaks about her experiences on vacation in south carolina", "video_id": "video12888", "sen_id": 201422}, {"caption": "people enjoy time on the beach at myrtle beach", "video_id": "video12888", "sen_id": 201423}, {"caption": "beach with people laying out in the sun overlooking a blue ocean", "video_id": "video12888", "sen_id": 201424}, {"caption": "a myrtle beach travel blog and photos of the beach", "video_id": "video12888", "sen_id": 201425}, {"caption": "a sign gets bigger and then there is a view of a beach", "video_id": "video12888", "sen_id": 201426}, {"caption": "relaxing music introduced a myrtle beach travel vlog before a woman begins talking about the beach", "video_id": "video12888", "sen_id": 201427}, {"caption": "a woman talking on her myrtle beach vlog", "video_id": "video12888", "sen_id": 201428}, {"caption": "a woman is describing her experience on a beach", "video_id": "video12888", "sen_id": 201429}, {"caption": "a woman videos here beach vacation to mrtlye beach", "video_id": "video12888", "sen_id": 201430}, {"caption": "a woman says good morning from myrtle beach south carolina", "video_id": "video12888", "sen_id": 201431}, {"caption": "there is sea shore many people taking rest", "video_id": "video12888", "sen_id": 201432}, {"caption": "a video of a beach by a travel blogger", "video_id": "video12888", "sen_id": 201433}, {"caption": "a beautiful beach where people are enjoying the breeze", "video_id": "video12888", "sen_id": 201434}, {"caption": "a water scene many persons near beach lying down sitting beside water displaying on screen", "video_id": "video12888", "sen_id": 201435}, {"caption": "a group of people are sitting on a beach", "video_id": "video12888", "sen_id": 201436}, {"caption": "a person talking about something while you see a beach", "video_id": "video12888", "sen_id": 201437}, {"caption": "a video blog a boutique vacation at the beach", "video_id": "video12888", "sen_id": 201438}, {"caption": "a person is looking over the beach talking", "video_id": "video12888", "sen_id": 201439}, {"caption": "a woman poses on a busy plaza with short hair fringe shoulder bag platform laced shoes and black-and-white coat", "video_id": "video12708", "sen_id": 201440}, {"caption": "a woman is standing on a street speaking about the style of her hair and clothing choices", "video_id": "video12708", "sen_id": 201441}, {"caption": "a woman talking about her fashion choices to the news", "video_id": "video12708", "sen_id": 201442}, {"caption": "a young asian woman models a designer outfit in the middle of a large train station", "video_id": "video12708", "sen_id": 201443}, {"caption": "a woman wearing bold types of fashion", "video_id": "video12708", "sen_id": 201444}, {"caption": "a young asian woman talks about her hairstyle and fashion choices", "video_id": "video12708", "sen_id": 201445}, {"caption": "woman speaks in asian language while her outfit is being shown on camera her purse and her shoes are showcased", "video_id": "video12708", "sen_id": 201446}, {"caption": "a lady in a stylish outfits stands on the street in a city discussing her hair and fashion philosophy", "video_id": "video12708", "sen_id": 201447}, {"caption": "a woman is talking in a foreign language about clothes", "video_id": "video12708", "sen_id": 201448}, {"caption": "a woman is talking in a foreign language about clothes", "video_id": "video12708", "sen_id": 201449}, {"caption": "a woman standing in a busy street describes how she dyes her and coordinates it with her clothing", "video_id": "video12708", "sen_id": 201450}, {"caption": "a woman in a black jacket and white shoes stands outside", "video_id": "video12708", "sen_id": 201451}, {"caption": "a women in black over coat is standing in the road as others walk by", "video_id": "video12708", "sen_id": 201452}, {"caption": "a woman standing on the sidewalk while people walking by", "video_id": "video12708", "sen_id": 201453}, {"caption": "the woman with a dress and a handbag and whit shoes is talking on the street", "video_id": "video12708", "sen_id": 201454}, {"caption": "a woman in black coat is talking about something in different language", "video_id": "video12708", "sen_id": 201455}, {"caption": "a women is telling about her dressing sense that when her hair colour is getting light she wears a light coloured clothes", "video_id": "video12708", "sen_id": 201456}, {"caption": "there is a suit women talking from the street", "video_id": "video12708", "sen_id": 201457}, {"caption": "there is a women standing in the crowed", "video_id": "video12708", "sen_id": 201458}, {"caption": "a woman is standing in the middle of a street talking", "video_id": "video12708", "sen_id": 201459}, {"caption": "a hamster exits a plastic tube toward a bowl of fruit and nuts and stuffs his expanding cheeks using tiny paws", "video_id": "video10581", "sen_id": 201460}, {"caption": "a hamster is eating pieces of an orange and a nut", "video_id": "video10581", "sen_id": 201461}, {"caption": "a hamster eats nuts and fruits from a small bowl", "video_id": "video10581", "sen_id": 201462}, {"caption": "a pet rodent stuffs food into its cheek pouches", "video_id": "video10581", "sen_id": 201463}, {"caption": "a hamster puts food in its cheeks while standing in a small cage", "video_id": "video10581", "sen_id": 201464}, {"caption": "a hamster exits a tube so it can nibble on some assorted slices of fruit", "video_id": "video10581", "sen_id": 201465}, {"caption": "a hamster crawls out from a tube and beings stuffing food into its mouth", "video_id": "video10581", "sen_id": 201466}, {"caption": "a hamster comes down his tube and eats almonds and oranges", "video_id": "video10581", "sen_id": 201467}, {"caption": "a hamster comes down his tube and eats almonds and oranges", "video_id": "video10581", "sen_id": 201468}, {"caption": "a tan hamster feeds from a round bowl of fruit and nuts with the hamster's cheeks getting fatter as the bowl becomes more empty", "video_id": "video10581", "sen_id": 201469}, {"caption": "a hamster stuffing it's cheeks with food", "video_id": "video10581", "sen_id": 201470}, {"caption": "there is a mouse eating food on the table", "video_id": "video10581", "sen_id": 201471}, {"caption": "a rat comes out and eats some nuts kept on the bowl", "video_id": "video10581", "sen_id": 201472}, {"caption": "the hamster hurriedly stuffs its cheek with food it has got which it eats later in a worry that it may lose it", "video_id": "video10581", "sen_id": 201473}, {"caption": "a brown color rat eating friuts displaying on screen", "video_id": "video10581", "sen_id": 201474}, {"caption": "a hamster that stuffs surplus food into his cheek pouches", "video_id": "video10581", "sen_id": 201475}, {"caption": "a hamster is eating a large amount of food on the plate", "video_id": "video10581", "sen_id": 201476}, {"caption": "there is a kind of rate is so nice with yellowwhite and gray color combination is stuffed a lot of food item without swallowing", "video_id": "video10581", "sen_id": 201477}, {"caption": "a small animal crawled down a shoot and ate food from a bowl", "video_id": "video10581", "sen_id": 201478}, {"caption": "a man talks about a rodent while it eats food", "video_id": "video10581", "sen_id": 201479}, {"caption": "a young woman with wavy brown hair looks over her right shoulder while wearing an olive-green tee shirt with star graphic", "video_id": "video11385", "sen_id": 201480}, {"caption": "music plays while a the camera zooms in on a still photo of a woman", "video_id": "video11385", "sen_id": 201481}, {"caption": "a young woman looks to her side with her face ringed with wavy hair as her t-shirt makes a comment on how she hopes she looks", "video_id": "video11385", "sen_id": 201482}, {"caption": "actress alison pill is shown wearing an olive drab shirt that says hot on it she has curly light brown hair with bangs", "video_id": "video11385", "sen_id": 201483}, {"caption": "a woman in a green shirt believed to be named allison", "video_id": "video11385", "sen_id": 201484}, {"caption": "a clip which lists different pretty female actresses", "video_id": "video11385", "sen_id": 201485}, {"caption": "alison pill wearing a green shirt that has a star on the front", "video_id": "video11385", "sen_id": 201486}, {"caption": "a slideshow and picture of a young woman wearing a green shirt", "video_id": "video11385", "sen_id": 201487}, {"caption": "a picture of alison pill wearing a green t-shirt is shown while music plays in the background", "video_id": "video11385", "sen_id": 201488}, {"caption": "a still photo of a teenage girl with shoulder length brown curly hair and wearing an olive drab shirt", "video_id": "video11385", "sen_id": 201489}, {"caption": "a young woman stands against a gray beam looks to her right side has her mouth open shows her top front teeth and wears a green t-shirt with a word inside a multi-pointed star", "video_id": "video11385", "sen_id": 201490}, {"caption": "a woman in green tshirt looking to someone", "video_id": "video11385", "sen_id": 201491}, {"caption": "a girl in a green t-shirt is name alison pill", "video_id": "video11385", "sen_id": 201492}, {"caption": "a countdown of a variety of pictures of women", "video_id": "video11385", "sen_id": 201493}, {"caption": "a lady in a green tee and blonde hair looks to her right", "video_id": "video11385", "sen_id": 201494}, {"caption": "the beautiful girl is been shown with big booms looking very sexy", "video_id": "video11385", "sen_id": 201495}, {"caption": "a girl in green top pose for photo", "video_id": "video11385", "sen_id": 201496}, {"caption": "a young woman woman with curly hair wearing a olive green shirt with hot displayed on the chest", "video_id": "video11385", "sen_id": 201497}, {"caption": "a cute girl is watching some thing in the scene", "video_id": "video11385", "sen_id": 201498}, {"caption": "a girl still picture shown displaying on screen", "video_id": "video11385", "sen_id": 201499}, {"caption": "a women giving tips on how to apply makeup", "video_id": "video11010", "sen_id": 201500}, {"caption": "young woman with red hair showing how to put on make up", "video_id": "video11010", "sen_id": 201501}, {"caption": "a girl wearing red and yellow eye shadow demonstrates how to put on false lashes", "video_id": "video11010", "sen_id": 201502}, {"caption": "the girl talks to the camera while discussing her eye makeup", "video_id": "video11010", "sen_id": 201503}, {"caption": "a girl with pink orange and yellow eye shadow gives tips on applying and removing false eyelashes", "video_id": "video11010", "sen_id": 201504}, {"caption": "applying eye makeup and eyelashes and how to remove them", "video_id": "video11010", "sen_id": 201505}, {"caption": "a girl with red hair talks about applying makeup", "video_id": "video11010", "sen_id": 201506}, {"caption": "a lady with red and yellow eye shadow is discussing her fake eyelashes", "video_id": "video11010", "sen_id": 201507}, {"caption": "a young woman with pink hair and heavy eye makeup talks while sitting in a room", "video_id": "video11010", "sen_id": 201508}, {"caption": "a girl with very colorful make up talks about it", "video_id": "video11010", "sen_id": 201509}, {"caption": "a girl with bright colorful make up talks about what she's wearing", "video_id": "video11010", "sen_id": 201510}, {"caption": "there is a close up of a girl with dyed hair talking into the camera", "video_id": "video11010", "sen_id": 201511}, {"caption": "a woman showing her eyebrows and explaining about that", "video_id": "video11010", "sen_id": 201512}, {"caption": "beautician showing how to apply eye lids and liner in your eyes", "video_id": "video11010", "sen_id": 201513}, {"caption": "a young woman describes and demonstrates a unique method of applying eye makeup", "video_id": "video11010", "sen_id": 201514}, {"caption": "sexy red hair with heavy eye makeup talking to the camera", "video_id": "video11010", "sen_id": 201515}, {"caption": "a lady is explaining how to make face more beautiful with make up", "video_id": "video11010", "sen_id": 201516}, {"caption": "one women is makeup with mascara in his eyes", "video_id": "video11010", "sen_id": 201517}, {"caption": "a young woman describes and demonstrates her method of applying eye makeup", "video_id": "video11010", "sen_id": 201518}, {"caption": "a young woman wearing vivid yellow and orange eye shadow shows off her press-on lashes and explains how to apply them", "video_id": "video11010", "sen_id": 201519}, {"caption": "an armed man wearing a gas mask and black outfit is threatening a disbelieving man in a cafe", "video_id": "video12386", "sen_id": 201520}, {"caption": "a man with a gas mask on in comes into a restaurant with a gun", "video_id": "video12386", "sen_id": 201521}, {"caption": "a man pointing a gun at the coffee guy", "video_id": "video12386", "sen_id": 201522}, {"caption": "a man speaks through a black gas mask and aims a weapon at an unbelieving man standing in front of him at a coffee bar", "video_id": "video12386", "sen_id": 201523}, {"caption": "a man in a mask is shown talking to someone", "video_id": "video12386", "sen_id": 201524}, {"caption": "a man in an army helmet and a full face mask robs a coffee shop", "video_id": "video12386", "sen_id": 201525}, {"caption": "a person in riot gear orders a man to leave or be shot", "video_id": "video12386", "sen_id": 201526}, {"caption": "a man in a dark helmet demands that another man get out of the building", "video_id": "video12386", "sen_id": 201527}, {"caption": "man in black suit with black helmet is holding a gun and pointing it toward another man dressed in white", "video_id": "video12386", "sen_id": 201528}, {"caption": "a man in tactical gear is committing an armed robbery", "video_id": "video12386", "sen_id": 201529}, {"caption": "a man in a black outfit and black mask witha gun is robbing a store", "video_id": "video12386", "sen_id": 201530}, {"caption": "there is a man with a helmet talking to his friend", "video_id": "video12386", "sen_id": 201531}, {"caption": "a man in black combat armor confronting a man with a gun", "video_id": "video12386", "sen_id": 201532}, {"caption": "a man in tactical armor threatens man in restaurant", "video_id": "video12386", "sen_id": 201533}, {"caption": "a man in a black mask is talking to another man", "video_id": "video12386", "sen_id": 201534}, {"caption": "a soldier in black gear instructs a civilian to leave the building", "video_id": "video12386", "sen_id": 201535}, {"caption": "there is a men wearing mask and talking to his friend", "video_id": "video12386", "sen_id": 201536}, {"caption": "a man in a full mask and helmet threatens another man in a store", "video_id": "video12386", "sen_id": 201537}, {"caption": "a masked man shows a gun and threatens another person", "video_id": "video12386", "sen_id": 201538}, {"caption": "a black dress wearing helmet and other man standing beside speaking", "video_id": "video12386", "sen_id": 201539}, {"caption": "tigers are roaming around freely in an empty terrain area", "video_id": "video12632", "sen_id": 201540}, {"caption": "two [jaguars] are walking past another one on an open plain", "video_id": "video12632", "sen_id": 201541}, {"caption": "three tigers are in a dry open area and two of them are walking", "video_id": "video12632", "sen_id": 201542}, {"caption": "two tigers roaming around in the dry lands", "video_id": "video12632", "sen_id": 201543}, {"caption": "some tigers are meandering around and a guy is playing acoustic guitar and singing in the background", "video_id": "video12632", "sen_id": 201544}, {"caption": "three large tigers move together over a dry sandy area of scrub grass", "video_id": "video12632", "sen_id": 201545}, {"caption": "a group of bright orange tigers walking together", "video_id": "video12632", "sen_id": 201546}, {"caption": "two tigers walk past a third tiger in the wild", "video_id": "video12632", "sen_id": 201547}, {"caption": "a pack of tigers are roaming around in a field", "video_id": "video12632", "sen_id": 201548}, {"caption": "two tigers walking in the plains of africa", "video_id": "video12632", "sen_id": 201549}, {"caption": "a couple of wild tigers lurk on a plain in the sun", "video_id": "video12632", "sen_id": 201550}, {"caption": "three tigers are walking in the savannah with country music playing", "video_id": "video12632", "sen_id": 201551}, {"caption": "two animals are fighting in a movie scene", "video_id": "video12632", "sen_id": 201552}, {"caption": "three tigers are hiking inside a huge hot field on a hot day in the wilderness", "video_id": "video12632", "sen_id": 201553}, {"caption": "three tigers move slowly through some browned out grass lands", "video_id": "video12632", "sen_id": 201554}, {"caption": "two tigers are walking across the plain together", "video_id": "video12632", "sen_id": 201555}, {"caption": "a pride of tigers are walking through a barren savannah", "video_id": "video12632", "sen_id": 201556}, {"caption": "there are some tigers walking around in the park", "video_id": "video12632", "sen_id": 201557}, {"caption": "two tigers are walking along and another tiger is watching them", "video_id": "video12632", "sen_id": 201558}, {"caption": "two tiger walking on forest while other tiger looking it", "video_id": "video12632", "sen_id": 201559}, {"caption": "a tutorial on how to make hawaiian masubi", "video_id": "video11899", "sen_id": 201560}, {"caption": "a lady is getting ready to make a delicious hawaiian recipie named musubi", "video_id": "video11899", "sen_id": 201561}, {"caption": "a woman standing in a tropical location talks about the ingredients needed for a hawaiian recipe", "video_id": "video11899", "sen_id": 201562}, {"caption": "a lady stands in the shade in a yard talking about making spam sushi", "video_id": "video11899", "sen_id": 201563}, {"caption": "a woman stands outside and talks about the ingredients needed to make a hawaiian recipe", "video_id": "video11899", "sen_id": 201564}, {"caption": "a lady is introducing a recipe from hawaii and is ready to prepare", "video_id": "video11899", "sen_id": 201565}, {"caption": "a hawaiian chef works on a recipe using spam", "video_id": "video11899", "sen_id": 201566}, {"caption": "a woman in a floral shirt is outside talking about cooking", "video_id": "video11899", "sen_id": 201567}, {"caption": "a woman describes that she will be cooking a delicious hawaiian recipe", "video_id": "video11899", "sen_id": 201568}, {"caption": "a female chef talks about a spam recipe she is getting ready to prepare", "video_id": "video11899", "sen_id": 201569}, {"caption": "chef mai introduces the recipe she will be making on her tv show the hawaiian masubi", "video_id": "video11899", "sen_id": 201570}, {"caption": "a woman describes a recipe that she will be demonstrating", "video_id": "video11899", "sen_id": 201571}, {"caption": "there is a mature woman talking about a recipe", "video_id": "video11899", "sen_id": 201572}, {"caption": "a woman is talking about making sushi in hawaii", "video_id": "video11899", "sen_id": 201573}, {"caption": "a woman introduces the dish that she is going to cook", "video_id": "video11899", "sen_id": 201574}, {"caption": "meat is tied to a block of cooked rice before a woman stands in a yard with many flowering plants", "video_id": "video11899", "sen_id": 201575}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11899", "sen_id": 201576}, {"caption": "a flat piece of black seaweed is wrapped vertically over an oblong piece of pink meat on a white-rice foundation with seasonings", "video_id": "video11899", "sen_id": 201577}, {"caption": "a girl introduces herself and explains that she will demonstrate how to prepare a hawaiian recipe called musubi", "video_id": "video11899", "sen_id": 201578}, {"caption": "a woman is outside under a cover and surrounded by decorative plants and instruments showing how to make a recipe on the outdoor grill", "video_id": "video11899", "sen_id": 201579}, {"caption": "two beautiful women making out in a bedroom", "video_id": "video11800", "sen_id": 201580}, {"caption": "a brunette and a blonde woman seated and facing each other while passionately kissing", "video_id": "video11800", "sen_id": 201581}, {"caption": "two young women kiss passionately", "video_id": "video11800", "sen_id": 201582}, {"caption": "two young women are passionately kissing each other", "video_id": "video11800", "sen_id": 201583}, {"caption": "two women kiss each other with tongues and open mouths", "video_id": "video11800", "sen_id": 201584}, {"caption": "two gay women expressing love for each other with passionate kissing", "video_id": "video11800", "sen_id": 201585}, {"caption": "two girls are making out grabbing one another hair", "video_id": "video11800", "sen_id": 201586}, {"caption": "two women are making out in front of a window", "video_id": "video11800", "sen_id": 201587}, {"caption": "two women kiss each other passionately in a tv studio", "video_id": "video11800", "sen_id": 201588}, {"caption": "two women kissing and making out with each other", "video_id": "video11800", "sen_id": 201589}, {"caption": "a blonde woman in a blue shirt passionately kisses and caresses a brown haired woman in a light coloured tank top", "video_id": "video11800", "sen_id": 201590}, {"caption": "a blonde woman in a blue t-shirt is kissing a brunette woman who is wearing a tan tank top", "video_id": "video11800", "sen_id": 201591}, {"caption": "a female in blue dress is making love with another female", "video_id": "video11800", "sen_id": 201592}, {"caption": "two women kissing each other in a room", "video_id": "video11800", "sen_id": 201593}, {"caption": "two girl are lip locking passionately its looking very hot", "video_id": "video11800", "sen_id": 201594}, {"caption": "these lesbian girls are kissing each other and they are going to make love", "video_id": "video11800", "sen_id": 201595}, {"caption": "a blonde woman and a brunette woman are kissing passionately while the blonde runs her fingers through the others hair", "video_id": "video11800", "sen_id": 201596}, {"caption": "two lesbian women kissing each other lips moving their hands into other hair", "video_id": "video11800", "sen_id": 201597}, {"caption": "two woman sit and makeout passionatly on the couch", "video_id": "video11800", "sen_id": 201598}, {"caption": "a blue dressed woman and a pink dressed woman are kissing", "video_id": "video11800", "sen_id": 201599}, {"caption": "an exclusive discount code for those who seen this channel that can be used at 40% off for essential oils at treasurescentscom", "video_id": "video12110", "sen_id": 201600}, {"caption": "this is a coupon code for fragrances and essential oils on a popular website", "video_id": "video12110", "sen_id": 201601}, {"caption": "a coupon code video giving customers 40% off their purchase", "video_id": "video12110", "sen_id": 201602}, {"caption": "there is an ad advertising a business and offering a coupon", "video_id": "video12110", "sen_id": 201603}, {"caption": "music plays while an advertisement for treasure scents is displayed", "video_id": "video12110", "sen_id": 201604}, {"caption": "an advertisement for treasurescentscom offers a coupon code for 40% off", "video_id": "video12110", "sen_id": 201605}, {"caption": "viewers are advised to enter a coupon code on a website to save on products", "video_id": "video12110", "sen_id": 201606}, {"caption": "a white screen with black text flashes up to advertise perfume oils", "video_id": "video12110", "sen_id": 201607}, {"caption": "a group of ingredients used to make a fragrance set together on a white table", "video_id": "video12110", "sen_id": 201608}, {"caption": "a group of ingredients that go into fragrant oils set together on a white table", "video_id": "video12110", "sen_id": 201609}, {"caption": "coupon code is displayed for an essential oil product", "video_id": "video12110", "sen_id": 201610}, {"caption": "an add for perfume is shown in the presentation", "video_id": "video12110", "sen_id": 201611}, {"caption": "a coupon code worth 40% off is shown with some brown bottles", "video_id": "video12110", "sen_id": 201612}, {"caption": "an advertisement for a website that sells fragrances and a forty percent off coupon code", "video_id": "video12110", "sen_id": 201613}, {"caption": "there are some oil making products and oil on the table", "video_id": "video12110", "sen_id": 201614}, {"caption": "information displaying on the screen", "video_id": "video12110", "sen_id": 201615}, {"caption": "a small amber-colored bottle with a black cap is next to wooden dishes holding herbal strands and twigs", "video_id": "video12110", "sen_id": 201616}, {"caption": "two bowls sit on a white table and prefume", "video_id": "video12110", "sen_id": 201617}, {"caption": "web ad on saving at treaurescenes to save 40% off", "video_id": "video12110", "sen_id": 201618}, {"caption": "the words appear on the screen of the presentation", "video_id": "video12110", "sen_id": 201619}, {"caption": "a man in a gray shirt and glasses sits next to a woman in a white shirt", "video_id": "video12554", "sen_id": 201620}, {"caption": "a man and a women are talking on a couch", "video_id": "video12554", "sen_id": 201621}, {"caption": "a young woman and young man sitting together addressing the netizens of the world", "video_id": "video12554", "sen_id": 201622}, {"caption": "a woman leads a discussion with a man about their previous and future filming experiences", "video_id": "video12554", "sen_id": 201623}, {"caption": "a lady and a man sit on a couch talking with clothes behind them", "video_id": "video12554", "sen_id": 201624}, {"caption": "a man and a woman talk while sitting on a couch", "video_id": "video12554", "sen_id": 201625}, {"caption": "a black haired male and browned haired female speak on camera while sitting on a white couch in front of a clothes rack", "video_id": "video12554", "sen_id": 201626}, {"caption": "a woman in a white shirt and a man in a blue shirt sit next to each other on a sofa and talk", "video_id": "video12554", "sen_id": 201627}, {"caption": "a man and a woman sitting on a couch introducing themselves", "video_id": "video12554", "sen_id": 201628}, {"caption": "two people are narrating a talk show while sitting on a couch", "video_id": "video12554", "sen_id": 201629}, {"caption": "a man and woman sit on a white couch discuss making videos together", "video_id": "video12554", "sen_id": 201630}, {"caption": "a man and a woman introducing themselves before a webshow", "video_id": "video12554", "sen_id": 201631}, {"caption": "a woman is talking to a man about the last time they made a video together", "video_id": "video12554", "sen_id": 201632}, {"caption": "two young people talk to the camera about updating their channel", "video_id": "video12554", "sen_id": 201633}, {"caption": "a person is talking about something in a place with lot of dresses", "video_id": "video12554", "sen_id": 201634}, {"caption": "a man and woman are talking next to a horse", "video_id": "video12554", "sen_id": 201635}, {"caption": "a man in a blue shirt and a woman in a white shirt create a video", "video_id": "video12554", "sen_id": 201636}, {"caption": "two young people talk about fashion and styles of the day", "video_id": "video12554", "sen_id": 201637}, {"caption": "a woman and a man sit on a couch and talk about how often the film videos together", "video_id": "video12554", "sen_id": 201638}, {"caption": "sexy blonde with guy in glass talking to the camera", "video_id": "video12554", "sen_id": 201639}, {"caption": "at a track outdoors a silver car prepares for a race", "video_id": "video11538", "sen_id": 201640}, {"caption": "a racecourse is shown with people gathered in one spot behind a car on the track", "video_id": "video11538", "sen_id": 201641}, {"caption": "a car race is about to happen in germany and a car is at that the starting point", "video_id": "video11538", "sen_id": 201642}, {"caption": "a car is being shown on a race track next to a german flag", "video_id": "video11538", "sen_id": 201643}, {"caption": "a race track scene with no cars on it followed by a clip of a car at the start with a crowd behind it", "video_id": "video11538", "sen_id": 201644}, {"caption": "a races course is seen on a street before we see the car prepare to race as a crowd watches behind the car", "video_id": "video11538", "sen_id": 201645}, {"caption": "a race is about to begin", "video_id": "video11538", "sen_id": 201646}, {"caption": "a race track is readied for a grand prix race in a european country", "video_id": "video11538", "sen_id": 201647}, {"caption": "there is a yellow and red race track followed by a car in front of a crowd of people", "video_id": "video11538", "sen_id": 201648}, {"caption": "a race track with a single car and numerous persons standing around it", "video_id": "video11538", "sen_id": 201649}, {"caption": "a race track with red and yellow checkered sidelines", "video_id": "video11538", "sen_id": 201650}, {"caption": "an announcer talks about a sunday race at the belgum run three", "video_id": "video11538", "sen_id": 201651}, {"caption": "a gray colored care is about to race on a racetrack on a dreary day", "video_id": "video11538", "sen_id": 201652}, {"caption": "a car sits in the middle of a racetrack with a crowd of people standing behind it", "video_id": "video11538", "sen_id": 201653}, {"caption": "a racing road with car standing many person standing watching to start the race displaying on screen", "video_id": "video11538", "sen_id": 201654}, {"caption": "a race car is driving around on a track", "video_id": "video11538", "sen_id": 201655}, {"caption": "a ready car for a race through the resort", "video_id": "video11538", "sen_id": 201656}, {"caption": "we see the race track before the race starts", "video_id": "video11538", "sen_id": 201657}, {"caption": "a road with red and yellow lines then a crowd of people standing behind a gray car", "video_id": "video11538", "sen_id": 201658}, {"caption": "car race to be started announcement in progress", "video_id": "video11538", "sen_id": 201659}, {"caption": "a man rides around on a luggage cart in a hotel lobby", "video_id": "video10471", "sen_id": 201660}, {"caption": "man rides on a piece of motel equipment and a worker threatens to fine him", "video_id": "video10471", "sen_id": 201661}, {"caption": "a young woman pushes her male friend around on a luggage cart in a hotel", "video_id": "video10471", "sen_id": 201662}, {"caption": "a group of boys messing with the hotel staff", "video_id": "video10471", "sen_id": 201663}, {"caption": "a man rides a luggage trolley in a hotel lobby and get confronted by security", "video_id": "video10471", "sen_id": 201664}, {"caption": "a man gets a ride from a woman in a luggage cart then an employee pushing a full luggage cart confronts them", "video_id": "video10471", "sen_id": 201665}, {"caption": "adults playing on the luggage carrier in a hotel", "video_id": "video10471", "sen_id": 201666}, {"caption": "a man riding in a luggage cart when another man comes to take it away", "video_id": "video10471", "sen_id": 201667}, {"caption": "a guy is riding in a luggage cart and gets cough by the bell hop", "video_id": "video10471", "sen_id": 201668}, {"caption": "a man rides a luggage carrier through the hotel lobby and an employee objects", "video_id": "video10471", "sen_id": 201669}, {"caption": "a woman in black is pushing a man in green in a luggage cart at a hotel", "video_id": "video10471", "sen_id": 201670}, {"caption": "a woman pushes a man on a hotel luggage cart then the man speaks with a hotel employee", "video_id": "video10471", "sen_id": 201671}, {"caption": "a woman in black pushes a man in a green shirt around in a hotel luggage cart", "video_id": "video10471", "sen_id": 201672}, {"caption": "a man rides on a bellman s cart in a hotel and gets scolded by a bellhop", "video_id": "video10471", "sen_id": 201673}, {"caption": "guy sitting in a four wheel closet and going around", "video_id": "video10471", "sen_id": 201674}, {"caption": "in a hotel lobby a young bald man and his friends get into trouble by hotel staff for riding on a luggage cart", "video_id": "video10471", "sen_id": 201675}, {"caption": "there are some people playing on the floor", "video_id": "video10471", "sen_id": 201676}, {"caption": "a man rides in a luggage cart with curved metal rails while holding onto the top bar until he is stopped by a hotel employee", "video_id": "video10471", "sen_id": 201677}, {"caption": "a bald man working out in a bag storage and gets caught by the hotel worker", "video_id": "video10471", "sen_id": 201678}, {"caption": "a man and women are playing with a hotel luggage cart in a lobby", "video_id": "video10471", "sen_id": 201679}, {"caption": "a man who is playing the guitar and singing while outdoors", "video_id": "video12709", "sen_id": 201680}, {"caption": "a man playing a guitar and singing hello by adele while outdoors", "video_id": "video12709", "sen_id": 201681}, {"caption": "a man is playing guitar and singing to a song", "video_id": "video12709", "sen_id": 201682}, {"caption": "male guitarist sitting above the countryside playing and singing a song", "video_id": "video12709", "sen_id": 201683}, {"caption": "a man plays the guitar outside above the city he's singing the acoustic version of hello by adele", "video_id": "video12709", "sen_id": 201684}, {"caption": "a male musician plays a guitar and sings while seated on a ridge overlooking a valley filled with buildings and encircled by mountains", "video_id": "video12709", "sen_id": 201685}, {"caption": "a man is playing guitar and singing at a beach with trees in the background", "video_id": "video12709", "sen_id": 201686}, {"caption": "a man with a guitar singing with a view of a town below him", "video_id": "video12709", "sen_id": 201687}, {"caption": "a man sits atop a hill with his guitar and sings a poignant love song", "video_id": "video12709", "sen_id": 201688}, {"caption": "a white man with long hair plays a guitar outside in this black and white graphic", "video_id": "video12709", "sen_id": 201689}, {"caption": "a man is playing a guitar and singing", "video_id": "video12709", "sen_id": 201690}, {"caption": "a young man strums his guitar and sings on a tall hill overlooking the town below", "video_id": "video12709", "sen_id": 201691}, {"caption": "a boy is playing guitar and singing a song on mic", "video_id": "video12709", "sen_id": 201692}, {"caption": "a man playing a song with a giter", "video_id": "video12709", "sen_id": 201693}, {"caption": "one man singing about a beautiful and nicely music", "video_id": "video12709", "sen_id": 201694}, {"caption": "a person in black shirt siting on the top of the building and playing guitar", "video_id": "video12709", "sen_id": 201695}, {"caption": "a man in black and white is on a beach", "video_id": "video12709", "sen_id": 201696}, {"caption": "a men is playing guitar and singing song", "video_id": "video12709", "sen_id": 201697}, {"caption": "a man is playing guitar overlooking a city while singing", "video_id": "video12709", "sen_id": 201698}, {"caption": "a man plays his guitar on the roof covering adele s single hello", "video_id": "video12709", "sen_id": 201699}, {"caption": "a pot of water is set to boil", "video_id": "video12480", "sen_id": 201700}, {"caption": "a woman in a blue top puts food into a boiling pot of water", "video_id": "video12480", "sen_id": 201701}, {"caption": "a pot on a gas burning stove and someone pointing to the pot", "video_id": "video12480", "sen_id": 201702}, {"caption": "a pot of water boils on a stove while a young girl describes how to boil lettuce", "video_id": "video12480", "sen_id": 201703}, {"caption": "a young child works on a science experiement in the kitchen in her home", "video_id": "video12480", "sen_id": 201704}, {"caption": "a girl is conducting a cooking vlog from home", "video_id": "video12480", "sen_id": 201705}, {"caption": "someone cooking food on a gas stove with a large silver pot", "video_id": "video12480", "sen_id": 201706}, {"caption": "a pot and a kettle are on top of a gas stove", "video_id": "video12480", "sen_id": 201707}, {"caption": "a woman gives directions on the proper cooking procedures for cooking lettuce in a boiling pot of water", "video_id": "video12480", "sen_id": 201708}, {"caption": "a woman gives instructions on how to boil lettuce", "video_id": "video12480", "sen_id": 201709}, {"caption": "in a kitchen somone is boiling lettuce for 10 to 15 minutes", "video_id": "video12480", "sen_id": 201710}, {"caption": "a pot on a stove is shown and instructions are being given", "video_id": "video12480", "sen_id": 201711}, {"caption": "a woman in a kitchen adding a piece of lettuce to boiling water on a stove", "video_id": "video12480", "sen_id": 201712}, {"caption": "water is being boiled in a pan while someone instructs and music plays", "video_id": "video12480", "sen_id": 201713}, {"caption": "a lady is boiling lettuce in a pot of water", "video_id": "video12480", "sen_id": 201714}, {"caption": "a silver bowl is being cooked on a stove", "video_id": "video12480", "sen_id": 201715}, {"caption": "a pot is cooking on the stove and a person comes to turn it off", "video_id": "video12480", "sen_id": 201716}, {"caption": "a silver pot on a stove boiling lettuce a woman is narrating the correct way to prepare the lettuce", "video_id": "video12480", "sen_id": 201717}, {"caption": "a metal pot on a flame stove top and a girl turning off the heat", "video_id": "video12480", "sen_id": 201718}, {"caption": "a child instructs how to cook in a pot on the stove", "video_id": "video12480", "sen_id": 201719}, {"caption": "a tutorial on how to make a beaded bracelet", "video_id": "video10750", "sen_id": 201720}, {"caption": "woman using materials to demonstrate how to make a necklace", "video_id": "video10750", "sen_id": 201721}, {"caption": "woman showing how to put pieces together to make a necklace", "video_id": "video10750", "sen_id": 201722}, {"caption": "a woman making a pink toy necklace by tying out the ends of the clasps with a triple knot", "video_id": "video10750", "sen_id": 201723}, {"caption": "a woman explaining and demonstrating how to tying a knot", "video_id": "video10750", "sen_id": 201724}, {"caption": "a woman is talking about and demonstrating adding a clasp to a necklace that is pink in color with a disney princess on a bead piece", "video_id": "video10750", "sen_id": 201725}, {"caption": "a lady is making a beaded piece of jewelry and making a knot to keep the beads on the string", "video_id": "video10750", "sen_id": 201726}, {"caption": "a young female crafting with her hands", "video_id": "video10750", "sen_id": 201727}, {"caption": "a young woman picking beads off of a necklace", "video_id": "video10750", "sen_id": 201728}, {"caption": "a lady is demonstrating how to make a beaded necklace", "video_id": "video10750", "sen_id": 201729}, {"caption": "a young woman making a loop in a string", "video_id": "video10750", "sen_id": 201730}, {"caption": "a young woman talks about the techniques she uses to construct handmade jewelry", "video_id": "video10750", "sen_id": 201731}, {"caption": "a do it yourself video showing how to create an necklace", "video_id": "video10750", "sen_id": 201732}, {"caption": "two hands and a female voiceover explain how to make a knot in a handmade arm bracelet", "video_id": "video10750", "sen_id": 201733}, {"caption": "someone is preparing an ornament with beads of pink color", "video_id": "video10750", "sen_id": 201734}, {"caption": "a woman is making a loop to make jewlery", "video_id": "video10750", "sen_id": 201735}, {"caption": "someone is embroidering plastic decorations and beads together to make a piece of jewelry", "video_id": "video10750", "sen_id": 201736}, {"caption": "a woman is showing us how to make a beaded necklace using pink beads and a larger disney princess bead", "video_id": "video10750", "sen_id": 201737}, {"caption": "someone is showing how to make the nickles using a thread", "video_id": "video10750", "sen_id": 201738}, {"caption": "a woman is demonstrating how to make a necklace out of pink beads", "video_id": "video10750", "sen_id": 201739}, {"caption": "a white pickup truck on top of a frame supporting large black wheels drives through a commercial street with an american flag flying from the tailgate", "video_id": "video12717", "sen_id": 201740}, {"caption": "a truck driving down the road with an american flag on it", "video_id": "video12717", "sen_id": 201741}, {"caption": "a large truck with a flag in the back driving down the road", "video_id": "video12717", "sen_id": 201742}, {"caption": "large white truck with a lift kit on it driving with a flag on the back", "video_id": "video12717", "sen_id": 201743}, {"caption": "an elevated white pickup truck has horseshoes on the front bumper a star symbol on the driver's door a railing around the cargo bed and an american flag on a pole attached to the tailgate", "video_id": "video12717", "sen_id": 201744}, {"caption": "a man drives his white truck down the road with a flaag waving behind him", "video_id": "video12717", "sen_id": 201745}, {"caption": "a white pickup truck on large tires speeds down a road with an american flag waving behind it", "video_id": "video12717", "sen_id": 201746}, {"caption": "a beige pickup with oversized tires drives down the road while flying an american flag", "video_id": "video12717", "sen_id": 201747}, {"caption": "a beige truck with big tires and american flag flying from the back is driving down the road", "video_id": "video12717", "sen_id": 201748}, {"caption": "a white truck is moving with an american flag waving behind", "video_id": "video12717", "sen_id": 201749}, {"caption": "a large truck with an american flag being driven down the road", "video_id": "video12717", "sen_id": 201750}, {"caption": "a big truck with two exhausts placed at the two sides driven around the neighborhood with an american flag at the back", "video_id": "video12717", "sen_id": 201751}, {"caption": "a white pick up truck with an american flag drives down the street acoustic rock music plays in the background", "video_id": "video12717", "sen_id": 201752}, {"caption": "a truck is driving along the road it has an american flag on the back", "video_id": "video12717", "sen_id": 201753}, {"caption": "a white truck with monster tires and a flag waving in the back drives down the street", "video_id": "video12717", "sen_id": 201754}, {"caption": "interesting vehicle with usa flag and big wheels driving on the road", "video_id": "video12717", "sen_id": 201755}, {"caption": "the truck has an american flag waving at the back", "video_id": "video12717", "sen_id": 201756}, {"caption": "a man is driving by in a big pick up truck waiving the american flag", "video_id": "video12717", "sen_id": 201757}, {"caption": "a truck is moving in the road and a flag is in the back of vehicle", "video_id": "video12717", "sen_id": 201758}, {"caption": "a truck drives down the street with a flag on the back", "video_id": "video12717", "sen_id": 201759}, {"caption": "two young men with their gear on the floor are inside an empty and modern school gym by rows of seats folded down", "video_id": "video12317", "sen_id": 201760}, {"caption": "two guys are preparing a video segment in a high school basketball gymnasium", "video_id": "video12317", "sen_id": 201761}, {"caption": "two guys are preparing a video segment in a high school basketball gymnasium", "video_id": "video12317", "sen_id": 201762}, {"caption": "two guys are setting up a movie set", "video_id": "video12317", "sen_id": 201763}, {"caption": "two high school aged boys standing in a gym talking to each other", "video_id": "video12317", "sen_id": 201764}, {"caption": "some teens talking and packing up their gear", "video_id": "video12317", "sen_id": 201765}, {"caption": "two young men talking to each other on a basketball court", "video_id": "video12317", "sen_id": 201766}, {"caption": "two young kids in the gymnasium of a high school", "video_id": "video12317", "sen_id": 201767}, {"caption": "two young men are in a school gym shooting a video of themselves", "video_id": "video12317", "sen_id": 201768}, {"caption": "two teenage guys film inside what appears to be a basketball court one of the teenagers is holding the camera while he explains that he has a cooler set now", "video_id": "video12317", "sen_id": 201769}, {"caption": "two kids talking to each other in a nearly empty gym", "video_id": "video12317", "sen_id": 201770}, {"caption": "two teenage boys dresses warmly are inside an empty blue-and-white gymnasium with the outlines of a basketball court on the polished and reflective floor", "video_id": "video12317", "sen_id": 201771}, {"caption": "a guy showing a empty basketball court and his friend", "video_id": "video12317", "sen_id": 201772}, {"caption": "men opening his bags and talking something loudly", "video_id": "video12317", "sen_id": 201773}, {"caption": "two men are preparing to do something in a gymnasium", "video_id": "video12317", "sen_id": 201774}, {"caption": "a man in black shirt talking about the playing stadium", "video_id": "video12317", "sen_id": 201775}, {"caption": "two players are get ready for playing both are in black jacket", "video_id": "video12317", "sen_id": 201776}, {"caption": "two young men speak to each other at a sports court", "video_id": "video12317", "sen_id": 201777}, {"caption": "one boy in the inner stadium talking something", "video_id": "video12317", "sen_id": 201778}, {"caption": "a black dress boy speaking inside stadium bending down with other guy", "video_id": "video12317", "sen_id": 201779}, {"caption": "a man singing while other people around him dance", "video_id": "video12026", "sen_id": 201780}, {"caption": "a teenage boy sings about loving a girl who is too beautiful to love while other teenagers dance in the background teenagers dance while a boy sings about a girl who is too pretty to love", "video_id": "video12026", "sen_id": 201781}, {"caption": "a man sings in the middle of a group of teens dancing in a diner", "video_id": "video12026", "sen_id": 201782}, {"caption": "man singing in a music video with people dancing", "video_id": "video12026", "sen_id": 201783}, {"caption": "a man is singing about how beautiful a girl is while high schoolers dance in the background", "video_id": "video12026", "sen_id": 201784}, {"caption": "a young man sings as dancers dressed in grease era clothing gather around him", "video_id": "video12026", "sen_id": 201785}, {"caption": "a man in a green and yellow varsity jacket is singing", "video_id": "video12026", "sen_id": 201786}, {"caption": "a young black man sings as a group of young people dance around him", "video_id": "video12026", "sen_id": 201787}, {"caption": "a music video with a young man rapping in a school", "video_id": "video12026", "sen_id": 201788}, {"caption": "teenager are in a restaurant dancing while one of them sings", "video_id": "video12026", "sen_id": 201789}, {"caption": "a large african american man sings wearing a green and white jacket while women dance around him", "video_id": "video12026", "sen_id": 201790}, {"caption": "there are many young people enjoy dancing in the pub", "video_id": "video12026", "sen_id": 201791}, {"caption": "a group of people are dancing to a song being sung in a music video", "video_id": "video12026", "sen_id": 201792}, {"caption": "a person singing in a party", "video_id": "video12026", "sen_id": 201793}, {"caption": "a man in a green jacket is singing while other people dance along", "video_id": "video12026", "sen_id": 201794}, {"caption": "a pop song which was sung and enjoyed by office collegues", "video_id": "video12026", "sen_id": 201795}, {"caption": "a high schooler in a green letter jacket sings as other teenagers dance", "video_id": "video12026", "sen_id": 201796}, {"caption": "at the night party all the people are drink the liquer and dancing in very well", "video_id": "video12026", "sen_id": 201797}, {"caption": "a heavy set young african male sings a song", "video_id": "video12026", "sen_id": 201798}, {"caption": "a club dance where ladies and gents are merrily dancing to step of music", "video_id": "video12026", "sen_id": 201799}, {"caption": "there is a man who is videoing himself snowboarding", "video_id": "video10097", "sen_id": 201800}, {"caption": "a man is recording his skiing path", "video_id": "video10097", "sen_id": 201801}, {"caption": "someone descends a snowy area while using their skiis", "video_id": "video10097", "sen_id": 201802}, {"caption": "skier is shown going downhill as he skies a front view", "video_id": "video10097", "sen_id": 201803}, {"caption": "shot from the point of view of a skier someone is heading down a snowy slope", "video_id": "video10097", "sen_id": 201804}, {"caption": "a man skis down a heavily forested slope", "video_id": "video10097", "sen_id": 201805}, {"caption": "a skier with a point of view of them skiing down a mountain", "video_id": "video10097", "sen_id": 201806}, {"caption": "phil collins in the air tonight plays in the background as a ski follows a tame path downward", "video_id": "video10097", "sen_id": 201807}, {"caption": "a person in yellow is shown followed by him skiing down a mountain", "video_id": "video10097", "sen_id": 201808}, {"caption": "someone is skiing in the snow with a phil collins song in the background", "video_id": "video10097", "sen_id": 201809}, {"caption": "a skier going doing a hill between trees", "video_id": "video10097", "sen_id": 201810}, {"caption": "someone is skiing down a snow covered hill", "video_id": "video10097", "sen_id": 201811}, {"caption": "a man going on the snow", "video_id": "video10097", "sen_id": 201812}, {"caption": "someone is skiing down a snow covered hill with lots of trees", "video_id": "video10097", "sen_id": 201813}, {"caption": "a guy skis through the snow as the music of phil collins plays in the background", "video_id": "video10097", "sen_id": 201814}, {"caption": "it is a beautiful sight to see mountaineers skiing and surfing in the snow in mountains", "video_id": "video10097", "sen_id": 201815}, {"caption": "in a snow forest a person is skating amidst the snow", "video_id": "video10097", "sen_id": 201816}, {"caption": "someone is walking through a snowy terrain with trees", "video_id": "video10097", "sen_id": 201817}, {"caption": "a phil collins song playing during a video of a person in a yellow jacket skiing down what appears to be a dangerous ski path", "video_id": "video10097", "sen_id": 201818}, {"caption": "a person skiing down a high snowy hill", "video_id": "video10097", "sen_id": 201819}, {"caption": "a group of men completing the run for the olympics", "video_id": "video12147", "sen_id": 201820}, {"caption": "men run around a track in a 1500 meter race", "video_id": "video12147", "sen_id": 201821}, {"caption": "a man is narrating during an important track trace", "video_id": "video12147", "sen_id": 201822}, {"caption": "a group of male racers rounds a curve on an outdoor track and appears to separate briefly before they huddle onto the two lanes closest to the center", "video_id": "video12147", "sen_id": 201823}, {"caption": "group of runners race at the 2012 olympics while an announcer speaks", "video_id": "video12147", "sen_id": 201824}, {"caption": "a group of people running a race on an outdoor track", "video_id": "video12147", "sen_id": 201825}, {"caption": "men running around a track for olympic trials in the 1500 meter", "video_id": "video12147", "sen_id": 201826}, {"caption": "several men are running a race on a track", "video_id": "video12147", "sen_id": 201827}, {"caption": "male runners running a race on a olympic track", "video_id": "video12147", "sen_id": 201828}, {"caption": "a track race between several runners is taking place", "video_id": "video12147", "sen_id": 201829}, {"caption": "several guys take part in a race on a track outside in front of a crowd", "video_id": "video12147", "sen_id": 201830}, {"caption": "during the olympic trials for the 1500 meters a group of runners circles the track in a tight pack", "video_id": "video12147", "sen_id": 201831}, {"caption": "a group of men run around in a track during a race", "video_id": "video12147", "sen_id": 201832}, {"caption": "many men in athletic clothing are competing in a 1400 meter race", "video_id": "video12147", "sen_id": 201833}, {"caption": "running race is going on in a red matted ground", "video_id": "video12147", "sen_id": 201834}, {"caption": "some participants are showing their pewrformance of racing in a sport event", "video_id": "video12147", "sen_id": 201835}, {"caption": "a professional track meet is being shown on a tv channel", "video_id": "video12147", "sen_id": 201836}, {"caption": "a group of men start running a 1500 meter race", "video_id": "video12147", "sen_id": 201837}, {"caption": "athlete players are in running race and runs fast", "video_id": "video12147", "sen_id": 201838}, {"caption": "a group of people are racing and announcers are talking about the runners", "video_id": "video12147", "sen_id": 201839}, {"caption": "adding a pinch of salt in a pan with vegetables in it", "video_id": "video12809", "sen_id": 201840}, {"caption": "a cook uses a metal spoon to cook and season food in a black skillet placed by a marble-tiled ledge below cabinets", "video_id": "video12809", "sen_id": 201841}, {"caption": "vegetables are being cooked in a black pan with salt added to it", "video_id": "video12809", "sen_id": 201842}, {"caption": "someone is cooking in a black frying pan and adding salt a", "video_id": "video12809", "sen_id": 201843}, {"caption": "a cook stirs sliced green white and orange vegetables with a metal spoon in a black skillet and adds spoonsful of liquid seasoning in a kitchen with gray tiles", "video_id": "video12809", "sen_id": 201844}, {"caption": "vegetables are being grilled on a stove in a sauce pan", "video_id": "video12809", "sen_id": 201845}, {"caption": "a woman stirs vegetables in a pan on the stove", "video_id": "video12809", "sen_id": 201846}, {"caption": "a person stirs vegetables in a sauce pan", "video_id": "video12809", "sen_id": 201847}, {"caption": "a sauce pan filled with vegetables are being cooked on a stove", "video_id": "video12809", "sen_id": 201848}, {"caption": "some julianed vegetables frying in a pan on a stove", "video_id": "video12809", "sen_id": 201849}, {"caption": "a woman adds salt to vegetables cooking in the frying pan", "video_id": "video12809", "sen_id": 201850}, {"caption": "a person prepares food in a large skillet adding ingredients and stirring with a spatula", "video_id": "video12809", "sen_id": 201851}, {"caption": "in a kitchen a person is sauteing the vegetables in a pan and then adds salt to it", "video_id": "video12809", "sen_id": 201852}, {"caption": "a woman is teaching some cooking process by cooking herself", "video_id": "video12809", "sen_id": 201853}, {"caption": "women stirring vegetable dish with steel spoon", "video_id": "video12809", "sen_id": 201854}, {"caption": "a girl a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12809", "sen_id": 201855}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12809", "sen_id": 201856}, {"caption": "a woman is adding spoonfuls of salt to a pan of vegetables in a kitchen", "video_id": "video12809", "sen_id": 201857}, {"caption": "person in the kitchen cooking and talking", "video_id": "video12809", "sen_id": 201858}, {"caption": "a woman cooks in a frying pan chopped vegetables and adds salt in kitchen", "video_id": "video12809", "sen_id": 201859}, {"caption": "a sports car race on curved tracks and city streets leads to a number of crashes and spinouts against walls", "video_id": "video12081", "sen_id": 201860}, {"caption": "cars crashing on a track on a video game", "video_id": "video12081", "sen_id": 201861}, {"caption": "a car racing losing control and crashing then just cars racing", "video_id": "video12081", "sen_id": 201862}, {"caption": "two small race cars crash and we see other cars drive then crash in a racing game", "video_id": "video12081", "sen_id": 201863}, {"caption": "a formula one video game clip showing crashes", "video_id": "video12081", "sen_id": 201864}, {"caption": "many race cars are racing each other on the track", "video_id": "video12081", "sen_id": 201865}, {"caption": "during a road race video game several race cars spin out of control and crash", "video_id": "video12081", "sen_id": 201866}, {"caption": "several race cars drive down a track on a cloudy day and several of them spin out and crash both on and off the track", "video_id": "video12081", "sen_id": 201867}, {"caption": "a video game shows race cars speeding down the track", "video_id": "video12081", "sen_id": 201868}, {"caption": "two formula one race cars crash shown from multiple camera angles", "video_id": "video12081", "sen_id": 201869}, {"caption": "different race cars slamming into the side of the tracks and going off course", "video_id": "video12081", "sen_id": 201870}, {"caption": "formula one racing cars are being blown away in accident on the racing tracks", "video_id": "video12081", "sen_id": 201871}, {"caption": "many cars are drag racing accross a course a collision occurs", "video_id": "video12081", "sen_id": 201872}, {"caption": "formula 1 race cars racing and crashing while music plays", "video_id": "video12081", "sen_id": 201873}, {"caption": "sports cars are racing at a great speed that one crashed one another", "video_id": "video12081", "sen_id": 201874}, {"caption": "a trailer for an f1 racing video game showing gameplay", "video_id": "video12081", "sen_id": 201875}, {"caption": "alot of cars racing on the road while cousing accidents", "video_id": "video12081", "sen_id": 201876}, {"caption": "f1 race in which few cars gets accident and cars where thrown away", "video_id": "video12081", "sen_id": 201877}, {"caption": "race cars on a race course are involved in wild crashes", "video_id": "video12081", "sen_id": 201878}, {"caption": "video game images of a car race between a multitude of colorful cars slamming into each other and into walls", "video_id": "video12081", "sen_id": 201879}, {"caption": "engineers designing and building giant trucks", "video_id": "video10494", "sen_id": 201880}, {"caption": "trucks are shown before a white haired old man speaks while sitting on a bench and we see an exhibit hall", "video_id": "video10494", "sen_id": 201881}, {"caption": "a man sitting on a couch with a newpaper in his hands", "video_id": "video10494", "sen_id": 201882}, {"caption": "a man discusses his experience with constructing very large dump trucks", "video_id": "video10494", "sen_id": 201883}, {"caption": "an older man sits in a suit outside in a park in a partial concrete block enclosure in the shade a rectangular yellow-and-blue structure with stairs sits inside a large white warehouse surrounded by some workers", "video_id": "video10494", "sen_id": 201884}, {"caption": "a male voice translates an old man talking about the making of huge trucks", "video_id": "video10494", "sen_id": 201885}, {"caption": "a old man talks about gathering large trucks", "video_id": "video10494", "sen_id": 201886}, {"caption": "a man in a suit is talking the camera", "video_id": "video10494", "sen_id": 201887}, {"caption": "an old man in a suit talking about a factory", "video_id": "video10494", "sen_id": 201888}, {"caption": "nicholas krutykh sitting and talking about assembling giant trucks", "video_id": "video10494", "sen_id": 201889}, {"caption": "a man wanted to assemble trucks they display a man sitting down then a factory with machinery", "video_id": "video10494", "sen_id": 201890}, {"caption": "a man talks about building multi-ton trucks in the past", "video_id": "video10494", "sen_id": 201891}, {"caption": "a is man narrating an industrial commercial ad", "video_id": "video10494", "sen_id": 201892}, {"caption": "a man speaking a foreign language talking about how dependable and great his company is", "video_id": "video10494", "sen_id": 201893}, {"caption": "a man wearing black color coat talking and container taking packs", "video_id": "video10494", "sen_id": 201894}, {"caption": "an old man in a black suit talks about building truck", "video_id": "video10494", "sen_id": 201895}, {"caption": "a company informative page where company demands that it can supply a truck which is worth to take a load of 40 ton or more", "video_id": "video10494", "sen_id": 201896}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10494", "sen_id": 201897}, {"caption": "an old man discussed the assembly of trucks", "video_id": "video10494", "sen_id": 201898}, {"caption": "an old man wearing suit and holding a book and telling something", "video_id": "video10494", "sen_id": 201899}, {"caption": "a man compares dance moves to another man in a living room by stepping side to side and giving attitude with lifted head and arms", "video_id": "video12932", "sen_id": 201900}, {"caption": "two men in a studio apartment practicing how to go about dancing", "video_id": "video12932", "sen_id": 201901}, {"caption": "two men discuss dancing as one of the men instructs the other one", "video_id": "video12932", "sen_id": 201902}, {"caption": "a man with a green shirt teaching another man in a blue shirt to dance to hip hop music", "video_id": "video12932", "sen_id": 201903}, {"caption": "two men one black man teaching a larger white man to dance", "video_id": "video12932", "sen_id": 201904}, {"caption": "two men discuss the proper way to dance in public", "video_id": "video12932", "sen_id": 201905}, {"caption": "two men work together on learning how to dance", "video_id": "video12932", "sen_id": 201906}, {"caption": "will smith is teaching a guy a dance move", "video_id": "video12932", "sen_id": 201907}, {"caption": "a black man in a green shirt and a fat white guy are talking", "video_id": "video12932", "sen_id": 201908}, {"caption": "a friend coaches another friend on the best dance moves for him", "video_id": "video12932", "sen_id": 201909}, {"caption": "a tall man teaching a chubby man to dance", "video_id": "video12932", "sen_id": 201910}, {"caption": "two men are in an apartment and one of them is dancing", "video_id": "video12932", "sen_id": 201911}, {"caption": "a man showing another man how to dance", "video_id": "video12932", "sen_id": 201912}, {"caption": "both man lead body talking with another man with dancing", "video_id": "video12932", "sen_id": 201913}, {"caption": "a son is talking to his father by dancing and the background music is hearing", "video_id": "video12932", "sen_id": 201914}, {"caption": "a couple of men are talking to each other", "video_id": "video12932", "sen_id": 201915}, {"caption": "two men talking one man is dancing around", "video_id": "video12932", "sen_id": 201916}, {"caption": "the man in the green shirt talks to the other man in the blue shirt", "video_id": "video12932", "sen_id": 201917}, {"caption": "will smith dances inside his office with another man", "video_id": "video12932", "sen_id": 201918}, {"caption": "will smith shows kevin james how to dance at a party", "video_id": "video12932", "sen_id": 201919}, {"caption": "a man holding a gun looking at the edge of a cliff with high streaming water at the bottom", "video_id": "video12016", "sen_id": 201920}, {"caption": "a man is runs up to the edge of bolder above a body of water below", "video_id": "video12016", "sen_id": 201921}, {"caption": "a man contemplating if he should jump or not", "video_id": "video12016", "sen_id": 201922}, {"caption": "a man runs to the edge of a waterfall with a gun in his hands", "video_id": "video12016", "sen_id": 201923}, {"caption": "a man holding a gun is standing on the edge of stone cliff", "video_id": "video12016", "sen_id": 201924}, {"caption": "a man with a machine gun runs to the edge of a large water fall", "video_id": "video12016", "sen_id": 201925}, {"caption": "a man with a gn runs to the top edge of a waterfall", "video_id": "video12016", "sen_id": 201926}, {"caption": "a man is stand at the top of a waterfall and looking down", "video_id": "video12016", "sen_id": 201927}, {"caption": "there is a man in black running on top of rocks in a forest setting and looking down to a long drop into the water", "video_id": "video12016", "sen_id": 201928}, {"caption": "a man runs to the edge of a waterfall with a gun in his hands", "video_id": "video12016", "sen_id": 201929}, {"caption": "a man with a gun runs onto a large rock cliff and looks down at a moving river", "video_id": "video12016", "sen_id": 201930}, {"caption": "a man trying to find his way over to the other side of the river", "video_id": "video12016", "sen_id": 201931}, {"caption": "a man frantically runs to the edge of a cliff with a gun and sees that there is a huge waterfall", "video_id": "video12016", "sen_id": 201932}, {"caption": "a man runs with a gun in his hand and finds himself standing on the rock and a waterfall run by", "video_id": "video12016", "sen_id": 201933}, {"caption": "a man with a gun is standing on a cliff overlooking a waterfall", "video_id": "video12016", "sen_id": 201934}, {"caption": "a guy runs with the machine gun towards a waterfall to search someone", "video_id": "video12016", "sen_id": 201935}, {"caption": "earth is moving round and round all rivers are shown", "video_id": "video12016", "sen_id": 201936}, {"caption": "a man black color dressed going near to water", "video_id": "video12016", "sen_id": 201937}, {"caption": "a man with a gun runs to a rock ledge and looks over it at a pool of water", "video_id": "video12016", "sen_id": 201938}, {"caption": "a man is running on a rock holding a gun", "video_id": "video12016", "sen_id": 201939}, {"caption": "brittney spears singing and dancing in music video", "video_id": "video10275", "sen_id": 201940}, {"caption": "britney spears dances provocatively in a one-piece bathing suit in a scene from a music video", "video_id": "video10275", "sen_id": 201941}, {"caption": "a woman that is blonde is dancing and being provocative", "video_id": "video10275", "sen_id": 201942}, {"caption": "britney spear is singing and swinging with white swim suit in a mtv", "video_id": "video10275", "sen_id": 201943}, {"caption": "britney spears and her dancers performing a video", "video_id": "video10275", "sen_id": 201944}, {"caption": "britney spears singing and dancing in a white swimsuit", "video_id": "video10275", "sen_id": 201945}, {"caption": "brittany spears singing a song while dancing", "video_id": "video10275", "sen_id": 201946}, {"caption": "blonde woman in a white dress dancing around a stage while singing", "video_id": "video10275", "sen_id": 201947}, {"caption": "brittney spears is dancing in a white outfit and singing", "video_id": "video10275", "sen_id": 201948}, {"caption": "a blonde pop star sings and dances during a music video", "video_id": "video10275", "sen_id": 201949}, {"caption": "a young woman with blonde hair singing and dancing", "video_id": "video10275", "sen_id": 201950}, {"caption": "a fair and beautiful women singing and dancing to music", "video_id": "video10275", "sen_id": 201951}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10275", "sen_id": 201952}, {"caption": "five ladies are standing in line with a lady in the middle singing and doing some dance steps", "video_id": "video10275", "sen_id": 201953}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video10275", "sen_id": 201954}, {"caption": "a girl dancing shaking her hairs and singing displaying on screen", "video_id": "video10275", "sen_id": 201955}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video10275", "sen_id": 201956}, {"caption": "a lady playing and dancing and four other girls too", "video_id": "video10275", "sen_id": 201957}, {"caption": "the western models is apperaing on the super dress their perfoamnce is amazing", "video_id": "video10275", "sen_id": 201958}, {"caption": "women dancing for a song", "video_id": "video10275", "sen_id": 201959}, {"caption": "a big soup on a table with big favor", "video_id": "video11449", "sen_id": 201960}, {"caption": "a bowl of soup with noodles and bread being zoomed in on with narration", "video_id": "video11449", "sen_id": 201961}, {"caption": "a bowl of soup is being displayed with some bread", "video_id": "video11449", "sen_id": 201962}, {"caption": "a man explains his method for making a soup", "video_id": "video11449", "sen_id": 201963}, {"caption": "a soup of some sort is the focal point", "video_id": "video11449", "sen_id": 201964}, {"caption": "a large bowl of soup has greens tomato and round noodles", "video_id": "video11449", "sen_id": 201965}, {"caption": "a man describes a kind of soup as that soup grows closer and closer", "video_id": "video11449", "sen_id": 201966}, {"caption": "a tomato soup with pasta in a bowl with a piece of bread", "video_id": "video11449", "sen_id": 201967}, {"caption": "there is a big bowl of soup that is slowly being zoomed in on", "video_id": "video11449", "sen_id": 201968}, {"caption": "a man talking about a soup with noodles and sauce", "video_id": "video11449", "sen_id": 201969}, {"caption": "voice over narraration over a picture of tomato soup", "video_id": "video11449", "sen_id": 201970}, {"caption": "a delicious and healthy tomato based soup with pasta is described by the cook", "video_id": "video11449", "sen_id": 201971}, {"caption": "in the kitchen a man explains about a dish", "video_id": "video11449", "sen_id": 201972}, {"caption": "the pasta sits in the red sauce in a big pot", "video_id": "video11449", "sen_id": 201973}, {"caption": "a white bowl with a tomato based sauce soup", "video_id": "video11449", "sen_id": 201974}, {"caption": "a chef describes a soup recipe he makes for his own family", "video_id": "video11449", "sen_id": 201975}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11449", "sen_id": 201976}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11449", "sen_id": 201977}, {"caption": "a white bowl contains a soup with a red tomato broth surrounding rings of pasta leafy greens diced onion", "video_id": "video11449", "sen_id": 201978}, {"caption": "a man is describing how he makes a delicious tasty soup", "video_id": "video11449", "sen_id": 201979}, {"caption": "a split screen shows two separate politicians wearing black suits white shirts and red ties during a televised debate where one talks and the other drinks water", "video_id": "video12409", "sen_id": 201980}, {"caption": "two men are speaking about awful terrorist attacks that happend in california", "video_id": "video12409", "sen_id": 201981}, {"caption": "rubio is debating and rand paul is also up on the screen", "video_id": "video12409", "sen_id": 201982}, {"caption": "we have a video within a video of a candidate talking at the republican presidential debate", "video_id": "video12409", "sen_id": 201983}, {"caption": "candidates involved in a political debate take their turns at speaking", "video_id": "video12409", "sen_id": 201984}, {"caption": "two presidential candidates argue during a presidential debate", "video_id": "video12409", "sen_id": 201985}, {"caption": "two men on cnn both in a black suit with red tie the man on the right starts speaking against the man on the right", "video_id": "video12409", "sen_id": 201986}, {"caption": "two men on the cnn stage is discussing terrorism and having a debate", "video_id": "video12409", "sen_id": 201987}, {"caption": "a clip of a debate from the last election of marco rubio", "video_id": "video12409", "sen_id": 201988}, {"caption": "a man in a dark suit and red tie is arguing on cnn", "video_id": "video12409", "sen_id": 201989}, {"caption": "two american presidential candidates argue during a presidental debate", "video_id": "video12409", "sen_id": 201990}, {"caption": "a black suit man talking in a program", "video_id": "video12409", "sen_id": 201991}, {"caption": "the cnn fox news is going on he speaks about the terrorist coming from taiwan as a tourist", "video_id": "video12409", "sen_id": 201992}, {"caption": "two politicians verbally spar in an organized debate during a campaign for office", "video_id": "video12409", "sen_id": 201993}, {"caption": "united states presidential candidates in this case two men stand next to each and debate", "video_id": "video12409", "sen_id": 201994}, {"caption": "a person interview the another parson in cnn news show", "video_id": "video12409", "sen_id": 201995}, {"caption": "cnn shows a dialogue of the republican debate", "video_id": "video12409", "sen_id": 201996}, {"caption": "a man answering for another man questions in the media", "video_id": "video12409", "sen_id": 201997}, {"caption": "two businessmen arguing about the terrorist attacks on cnn television", "video_id": "video12409", "sen_id": 201998}, {"caption": "a man in white shirt color wearing cloth standing and speaking on television screen images displaying on screen", "video_id": "video12409", "sen_id": 201999}, {"caption": "food that is being cooked in a pan on a stove top", "video_id": "video11839", "sen_id": 202000}, {"caption": "a person stirs vegetables in tomato sauce that is cooking in a frying pan on the stove top", "video_id": "video11839", "sen_id": 202001}, {"caption": "a person stirring and cooking vegetables in a large pan", "video_id": "video11839", "sen_id": 202002}, {"caption": "a silver pan with red sauce and peas are stirred on a stoptop by a spoon", "video_id": "video11839", "sen_id": 202003}, {"caption": "a sauce with green peas and carrots is stirred in a large silver wok", "video_id": "video11839", "sen_id": 202004}, {"caption": "a person stirring an orange sauce with vegetables on a stove", "video_id": "video11839", "sen_id": 202005}, {"caption": "a person is stirring food in a large wok pan over a stove top", "video_id": "video11839", "sen_id": 202006}, {"caption": "a red sauce reduction being stirred in a pan with a large metal spoon", "video_id": "video11839", "sen_id": 202007}, {"caption": "a person cooks a red sauce in a pan on top of a stove while stirring it frequently", "video_id": "video11839", "sen_id": 202008}, {"caption": "a pot of boiling liquid being stirred up", "video_id": "video11839", "sen_id": 202009}, {"caption": "a person cooks some soupy food on a large pan on a stove", "video_id": "video11839", "sen_id": 202010}, {"caption": "a cook simmers a thick red sauce with peas in a skillet", "video_id": "video11839", "sen_id": 202011}, {"caption": "in a pan someone making a dish", "video_id": "video11839", "sen_id": 202012}, {"caption": "a large skillet with sauce full of chunks of peas and other vegetables somebody is continuously stirring the sauce", "video_id": "video11839", "sen_id": 202013}, {"caption": "someone is stirring an orange sauce that has green peas and carrots in it", "video_id": "video11839", "sen_id": 202014}, {"caption": "in a kitchen man is mixing the soup in grey dish", "video_id": "video11839", "sen_id": 202015}, {"caption": "someone is stirring a sauce in a frying pan on the stove", "video_id": "video11839", "sen_id": 202016}, {"caption": "a saucy dish is being heated and stirred in a pan", "video_id": "video11839", "sen_id": 202017}, {"caption": "a man is cooking a stew in a pan on a stove", "video_id": "video11839", "sen_id": 202018}, {"caption": "a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11839", "sen_id": 202019}, {"caption": "a woman prepares to give her baby a bath", "video_id": "video10926", "sen_id": 202020}, {"caption": "a women who is carrying a baby in the bathroom", "video_id": "video10926", "sen_id": 202021}, {"caption": "a baby farts as he is being held in his mothers arms as she records a video of them in the mirror", "video_id": "video10926", "sen_id": 202022}, {"caption": "a woman holding a caucasian baby in her right arm looking into a mirror", "video_id": "video10926", "sen_id": 202023}, {"caption": "a mother holding her naked baby before a bath", "video_id": "video10926", "sen_id": 202024}, {"caption": "a very small baby in a womans arms prepares for a bath", "video_id": "video10926", "sen_id": 202025}, {"caption": "a baby pooping while its mother is holding it in her hands", "video_id": "video10926", "sen_id": 202026}, {"caption": "a woman in a gray shirt holds her baby and takes a selfie", "video_id": "video10926", "sen_id": 202027}, {"caption": "a woman taking a picture of her nude baby before a bath", "video_id": "video10926", "sen_id": 202028}, {"caption": "a woman in a green t-shirt holds a naked baby and try's to take his picture with a cell phone", "video_id": "video10926", "sen_id": 202029}, {"caption": "a naked little baby is shown his reflection in the mirror and has flatulence", "video_id": "video10926", "sen_id": 202030}, {"caption": "a mom is getting her baby ready to take a bath", "video_id": "video10926", "sen_id": 202031}, {"caption": "a women in t-shirt holding a baby in one hand and mobile in another hand", "video_id": "video10926", "sen_id": 202032}, {"caption": "there is a father talking to his baby and the baby is crying", "video_id": "video10926", "sen_id": 202033}, {"caption": "a mother with her baby girl getting ready for bath time looking in a mirror", "video_id": "video10926", "sen_id": 202034}, {"caption": "a mom is standing in the bathroom holding her infant taking a selfie picture using a cellphone", "video_id": "video10926", "sen_id": 202035}, {"caption": "a women in gray t shirtjeans holding a small baby and taking video in her mobile", "video_id": "video10926", "sen_id": 202036}, {"caption": "there is a women with her baby inside a room", "video_id": "video10926", "sen_id": 202037}, {"caption": "the mother and the infant baby is taking to ready to the selfie", "video_id": "video10926", "sen_id": 202038}, {"caption": "one cut boy is in his mothers hand and she take", "video_id": "video10926", "sen_id": 202039}, {"caption": "a plate of curled shrimp with pointed tails is covered with grated white cheese and sits in a buttery sauce on a white plate", "video_id": "video11767", "sen_id": 202040}, {"caption": "dishes on display from a website called favediets", "video_id": "video11767", "sen_id": 202041}, {"caption": "a plat with shrimp and grated cheese on top in a sauce", "video_id": "video11767", "sen_id": 202042}, {"caption": "seafood and various other ingredients on a plate being portrayed at various angles", "video_id": "video11767", "sen_id": 202043}, {"caption": "various zooming shots of a shrimp dish with sauce and cheese", "video_id": "video11767", "sen_id": 202044}, {"caption": "a shrimp dish covered in cheese is displayed on a white plate", "video_id": "video11767", "sen_id": 202045}, {"caption": "a delicious looking shrimp dish with butter shredded cheese and spices", "video_id": "video11767", "sen_id": 202046}, {"caption": "an online diet website shows a shrimp and angel hair pasta dish", "video_id": "video11767", "sen_id": 202047}, {"caption": "a shrimp and cheese dish is being discussed and shown in various shots", "video_id": "video11767", "sen_id": 202048}, {"caption": "shrimp with white sprinkle cheese on it on a plate", "video_id": "video11767", "sen_id": 202049}, {"caption": "a chef talks about a shrimp and cheese dish that they have recently completed", "video_id": "video11767", "sen_id": 202050}, {"caption": "there is a prawn dish in a white plate on the table", "video_id": "video11767", "sen_id": 202051}, {"caption": "a large pile of shrimp with shredded cheese and sauce is displayed on a plate", "video_id": "video11767", "sen_id": 202052}, {"caption": "there is a plate of food made with shrimp", "video_id": "video11767", "sen_id": 202053}, {"caption": "its from favedietsthe food looks yummycheese is added to top", "video_id": "video11767", "sen_id": 202054}, {"caption": "fave diets showing a dish with shrimp and parmesan cheese shredded on top", "video_id": "video11767", "sen_id": 202055}, {"caption": "a low calorie seafood dish covered with cheese", "video_id": "video11767", "sen_id": 202056}, {"caption": "a plate of of shrimp with sauce and cheese is served on a white plate", "video_id": "video11767", "sen_id": 202057}, {"caption": "buttery garlic shrimp topped off with cheese for dinner", "video_id": "video11767", "sen_id": 202058}, {"caption": "it is a video of food shrimp with cheese", "video_id": "video11767", "sen_id": 202059}, {"caption": "a person mixes baking powder and flour together", "video_id": "video10932", "sen_id": 202060}, {"caption": "a woman giving a cooking demonstration showing her adding ingredients into a white bowl and mixing ingredients", "video_id": "video10932", "sen_id": 202061}, {"caption": "a person is mixing the dry ingredients together", "video_id": "video10932", "sen_id": 202062}, {"caption": "a woman is mixing flour baking powder and sugar together into a bowl", "video_id": "video10932", "sen_id": 202063}, {"caption": "the person is mixing ingredients in a bowl", "video_id": "video10932", "sen_id": 202064}, {"caption": "in the kitchen mixing up a delicious desert", "video_id": "video10932", "sen_id": 202065}, {"caption": "a woman narrates while mixing dry ingredients in a white bowl", "video_id": "video10932", "sen_id": 202066}, {"caption": "a lady in a kitchen mixes baking powder and sugar into a large bowl of flour", "video_id": "video10932", "sen_id": 202067}, {"caption": "a person mixes baking powder and sugar in a bowl as a part of a tutorial", "video_id": "video10932", "sen_id": 202068}, {"caption": "dry ingredients are being mixed in a bowl", "video_id": "video10932", "sen_id": 202069}, {"caption": "someone mixing a bowl of flour and other dry ingredients", "video_id": "video10932", "sen_id": 202070}, {"caption": "a lady is add baking soda and sugar in with the flour and stirring it with a green spatula", "video_id": "video10932", "sen_id": 202071}, {"caption": "a woman mixes baking powder and sugar into a bowl", "video_id": "video10932", "sen_id": 202072}, {"caption": " add the baking powder and mix well", "video_id": "video10932", "sen_id": 202073}, {"caption": "a girl inside kitchen mixing pouder adding sugar to prepare to serve to eat dish displaying on screen", "video_id": "video10932", "sen_id": 202074}, {"caption": "a women is making some receipe with the powder andding some water to the bowl and binding them together", "video_id": "video10932", "sen_id": 202075}, {"caption": "there is a women cooking food in untensil", "video_id": "video10932", "sen_id": 202076}, {"caption": "the person stir in the ingredients in the big white bowl", "video_id": "video10932", "sen_id": 202077}, {"caption": "a woman is mixing a flour in the bowl", "video_id": "video10932", "sen_id": 202078}, {"caption": "using a green-tipped spatula a woman stirs her mix before adding sugar", "video_id": "video10932", "sen_id": 202079}, {"caption": "a man in a green shirt and glasses talks while showing pictures", "video_id": "video10244", "sen_id": 202080}, {"caption": "the harlem renaissance being described by a narrator", "video_id": "video10244", "sen_id": 202081}, {"caption": "vintage media showing both black and white photos of people and buildings during the harlem renaissance", "video_id": "video10244", "sen_id": 202082}, {"caption": "a man talks over a slideshow talking about economics and history", "video_id": "video10244", "sen_id": 202083}, {"caption": "a video of a man starting to talk then interrupted by talk of poor people", "video_id": "video10244", "sen_id": 202084}, {"caption": "a man wearing a green shirt speaks about history covering soldiers marching through a wide avenue in front of spectators people waiting on a line during hard times and classic buildings in venice", "video_id": "video10244", "sen_id": 202085}, {"caption": "a man talking about the world war and the great depression", "video_id": "video10244", "sen_id": 202086}, {"caption": "men standing in line and a painting of a city", "video_id": "video10244", "sen_id": 202087}, {"caption": "a line of men leaning against a wall", "video_id": "video10244", "sen_id": 202088}, {"caption": "a man showing images of scenes from the early 20th century and discussing the importance of money for having a renaissance", "video_id": "video10244", "sen_id": 202089}, {"caption": "two men are talking about the rennaissance and the great depression", "video_id": "video10244", "sen_id": 202090}, {"caption": "the man in the green t-shirt talk about one historical event", "video_id": "video10244", "sen_id": 202091}, {"caption": "a man discusses the harlem renaissance while images of men in line are shown", "video_id": "video10244", "sen_id": 202092}, {"caption": "there are clips of buildings and people from the a renaissance period", "video_id": "video10244", "sen_id": 202093}, {"caption": "soldiers lined up in formation and buildings around a water way", "video_id": "video10244", "sen_id": 202094}, {"caption": "a person with green colour dress is explaining about something", "video_id": "video10244", "sen_id": 202095}, {"caption": "a person explaining a concept in a show about olden days people", "video_id": "video10244", "sen_id": 202096}, {"caption": "more peoples and a amn aimage is displayed", "video_id": "video10244", "sen_id": 202097}, {"caption": "a set of still images in black and white shows people marching and waiting in line", "video_id": "video10244", "sen_id": 202098}, {"caption": "focus on a new renaissance that happen between the eand of ww i and the great depression", "video_id": "video10244", "sen_id": 202099}, {"caption": "a man with a suit sitting on a chair with a cup in one hand and a magazine on his lap", "video_id": "video11126", "sen_id": 202100}, {"caption": "a suit wearing man drinks coffee and looks through a magazine in an art gallery", "video_id": "video11126", "sen_id": 202101}, {"caption": "a man is drinking coffee and reading a magazine", "video_id": "video11126", "sen_id": 202102}, {"caption": "a man in a nice tailored suit is reading a magazine and drinking a cup of coffee", "video_id": "video11126", "sen_id": 202103}, {"caption": "a man in a suit and tie reading a magazine", "video_id": "video11126", "sen_id": 202104}, {"caption": "a man in a suit reads a magazine and holds a small coffee cup in a museum", "video_id": "video11126", "sen_id": 202105}, {"caption": "a man wearing a suit is reading a magazine while drinking his coffee", "video_id": "video11126", "sen_id": 202106}, {"caption": "a man reads a magazine while sitting in chair drinking a cup of coffee", "video_id": "video11126", "sen_id": 202107}, {"caption": "a man wearing a suit is sitting in a chair holding a delicate cup and a magazine on his lap", "video_id": "video11126", "sen_id": 202108}, {"caption": "there is a man in a suit is reading a magazine while sitting in a chair in a large white room while holding a coffee mug", "video_id": "video11126", "sen_id": 202109}, {"caption": "a man in black coat is sitting alone on the chair in room and reading a book and drinking coffee", "video_id": "video11126", "sen_id": 202110}, {"caption": "a man wearing black suit and shoes sitting on the chair and reading some magazine", "video_id": "video11126", "sen_id": 202111}, {"caption": "a man wearing a suit is sitting with his leg crossed looking at a magazine and drinking from a mug", "video_id": "video11126", "sen_id": 202112}, {"caption": "a man takes a seat in a chair reading a magazine", "video_id": "video11126", "sen_id": 202113}, {"caption": "a well dressed man flips through a magazine as he sits with a cup of coffee", "video_id": "video11126", "sen_id": 202114}, {"caption": "a man in a suit is sitting down and reading", "video_id": "video11126", "sen_id": 202115}, {"caption": "a person wearing a black shirt and sitting on a chair", "video_id": "video11126", "sen_id": 202116}, {"caption": "a man sitting in a chair with a cup of tea relaxing and reading something", "video_id": "video11126", "sen_id": 202117}, {"caption": "a man in a suit is sitting in a chair in an art gallery drinking coffee and reading a magazine", "video_id": "video11126", "sen_id": 202118}, {"caption": "a business man is having a cup of coffee while reading newspaper", "video_id": "video11126", "sen_id": 202119}, {"caption": "a women standing in the kitchen giving a recipe", "video_id": "video12419", "sen_id": 202120}, {"caption": "woman in blue dress describing how to prepare a dish in a kitchen", "video_id": "video12419", "sen_id": 202121}, {"caption": "a woman wearing a sweater is giving instructions to prepare noodles with or without onions while standing in a kitchen with her prepped ingredients", "video_id": "video12419", "sen_id": 202122}, {"caption": "a woman is in a kitchen with a skillet and is getting ready to cook", "video_id": "video12419", "sen_id": 202123}, {"caption": "a woman is shown frying onions and noodles in a pan on the stove", "video_id": "video12419", "sen_id": 202124}, {"caption": "a woman in a striped shirt standing in a kitchen", "video_id": "video12419", "sen_id": 202125}, {"caption": "a female chef describes a recipe that she is getting ready to prepare", "video_id": "video12419", "sen_id": 202126}, {"caption": "a woman is standing behind a stove with a number of ingredients in front of her", "video_id": "video12419", "sen_id": 202127}, {"caption": "there are raw ingredients on a black countertop and there is a woman in grey in the kitchen speaking about the food", "video_id": "video12419", "sen_id": 202128}, {"caption": "an indian woman discusses various food items as she cooks", "video_id": "video12419", "sen_id": 202129}, {"caption": "a woman standing in he kitchen with cut up vegetables ready to cook", "video_id": "video12419", "sen_id": 202130}, {"caption": "a woman is giving cooking instructions on using onions for the dish optionally about when and how much", "video_id": "video12419", "sen_id": 202131}, {"caption": "a women in her kitchen preparing some snacks using noodles", "video_id": "video12419", "sen_id": 202132}, {"caption": "an indian woman is explaining how to make a dish involving onions", "video_id": "video12419", "sen_id": 202133}, {"caption": "a woman in a kitchen showing how to cook noodles in hindi language and english subtitles at the bottom of the video", "video_id": "video12419", "sen_id": 202134}, {"caption": "a woman demonstrates preparing noodles on the stove with english subtitles", "video_id": "video12419", "sen_id": 202135}, {"caption": "there is a woman talking about a new recipe", "video_id": "video12419", "sen_id": 202136}, {"caption": "a woman is talking in a foreign language about how she is cooking a meal", "video_id": "video12419", "sen_id": 202137}, {"caption": "a woman is in a kitchen and talking about how to cook", "video_id": "video12419", "sen_id": 202138}, {"caption": "a woman and a bowl dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12419", "sen_id": 202139}, {"caption": "two boys sitting on a porch and one is lip syncing to a song", "video_id": "video10579", "sen_id": 202140}, {"caption": "two guys impersonating a classic song by nysnc", "video_id": "video10579", "sen_id": 202141}, {"caption": "two boys are sitting outside wearing jackets and lip syncing to a song", "video_id": "video10579", "sen_id": 202142}, {"caption": "two boys sit in front of a building while one sings a popular pop song", "video_id": "video10579", "sen_id": 202143}, {"caption": "a person wearing a sweatshirt is singing to the person next to them", "video_id": "video10579", "sen_id": 202144}, {"caption": "two kids are sitting down and lip syncing backstreet boys", "video_id": "video10579", "sen_id": 202145}, {"caption": "two teenagers are lip-syncing the backstreet boys' song i want it that way", "video_id": "video10579", "sen_id": 202146}, {"caption": "a boy in a dark gray hoodie is singing to a blonde haired boy", "video_id": "video10579", "sen_id": 202147}, {"caption": "two boys sitting on a bench and one is singing a song to the other", "video_id": "video10579", "sen_id": 202148}, {"caption": "two boys are sitting on a bench and one is doing a lip sync dub", "video_id": "video10579", "sen_id": 202149}, {"caption": "two young men sit on a bench and one of them lip syncs to a song", "video_id": "video10579", "sen_id": 202150}, {"caption": "two boys sing a backstreet boys song outside", "video_id": "video10579", "sen_id": 202151}, {"caption": "the man on the left sings and makes hand gestures to a popular boy song while the other man looks on in annoyance", "video_id": "video10579", "sen_id": 202152}, {"caption": "two young men sit on a wooden bench outside home lip syncing song", "video_id": "video10579", "sen_id": 202153}, {"caption": "a young guy lip syncing nsync song to his friend", "video_id": "video10579", "sen_id": 202154}, {"caption": "two young people sit by a wall and sing along to a song", "video_id": "video10579", "sen_id": 202155}, {"caption": "two youngsters sitting on the floor and one sings", "video_id": "video10579", "sen_id": 202156}, {"caption": "the young boy looking stylish singing a song aloudthrough the song he advised his friend", "video_id": "video10579", "sen_id": 202157}, {"caption": "two teenage boys are sitting down and one is ironically lip syncing to a backstreet boys song", "video_id": "video10579", "sen_id": 202158}, {"caption": "a boy blue dress color wearing cloth sitting beside other guy singing shaking hand displaying on screen", "video_id": "video10579", "sen_id": 202159}, {"caption": "tech talk about usb hardware", "video_id": "video12265", "sen_id": 202160}, {"caption": "image of a computer board and a discussion of usb 30 support how usb 3o is implemented in the pictured computer board", "video_id": "video12265", "sen_id": 202161}, {"caption": "a male voice talks about a motherboard as we gaze at its picture", "video_id": "video12265", "sen_id": 202162}, {"caption": "a scientist talks about a new kind of computer mother-board that he has helped design", "video_id": "video12265", "sen_id": 202163}, {"caption": "a black and neon green motherboard is talked about", "video_id": "video12265", "sen_id": 202164}, {"caption": "a man describes a mother board computer part", "video_id": "video12265", "sen_id": 202165}, {"caption": "computer motherboards are examined a man explains how to keep your computer running faster", "video_id": "video12265", "sen_id": 202166}, {"caption": "a male voice over describes how a piece of technology works", "video_id": "video12265", "sen_id": 202167}, {"caption": "a man shares computer tips and tricks and discusses new computer parts", "video_id": "video12265", "sen_id": 202168}, {"caption": "several motherboards are being shown and the narrator is describing the usb 30 connectors", "video_id": "video12265", "sen_id": 202169}, {"caption": "a male voice describes usb drives and how they are supported", "video_id": "video12265", "sen_id": 202170}, {"caption": "a black and neon green motherboard is talked about", "video_id": "video12265", "sen_id": 202171}, {"caption": "a colorful graphic showing a computer motherboard with a male voiceover explaining the ins and outs of computer motherboards", "video_id": "video12265", "sen_id": 202172}, {"caption": "there is some machine parts and clear explanations", "video_id": "video12265", "sen_id": 202173}, {"caption": "a picture of a computer motherboard while a man discusses usb capabilities", "video_id": "video12265", "sen_id": 202174}, {"caption": "a chip and a board with multiple connectionsit has some green color materials as well", "video_id": "video12265", "sen_id": 202175}, {"caption": "a pc motherboard is being shown for sale", "video_id": "video12265", "sen_id": 202176}, {"caption": "a company displays it motherboard of make ddr4x99", "video_id": "video12265", "sen_id": 202177}, {"caption": "various computer parts are displayed while a man explains their attributes", "video_id": "video12265", "sen_id": 202178}, {"caption": "a man is explain about mother board of a computer", "video_id": "video12265", "sen_id": 202179}, {"caption": "a bald man wearing a blue shirt talks from a studio set in front of a background panorama of a flat city", "video_id": "video10481", "sen_id": 202180}, {"caption": "news cast interviewing a man who is talking about growing a product", "video_id": "video10481", "sen_id": 202181}, {"caption": "a man describing the difference in his product compared to others", "video_id": "video10481", "sen_id": 202182}, {"caption": "a man is discussing the benefits of using real cola", "video_id": "video10481", "sen_id": 202183}, {"caption": "a bald man wearing a blue shirt holds a cola nut in one hand during a television interview where he sits in front of a cityscape", "video_id": "video10481", "sen_id": 202184}, {"caption": "a bald man representing an organization discusses his company's cola", "video_id": "video10481", "sen_id": 202185}, {"caption": "a man in a blue shirt talks while on a news program", "video_id": "video10481", "sen_id": 202186}, {"caption": "in this video a man in a blue shirt is discussing a topic of rainforest", "video_id": "video10481", "sen_id": 202187}, {"caption": "simon cooley talking about his new zealand business", "video_id": "video10481", "sen_id": 202188}, {"caption": "there are two men and a woman talking around a table", "video_id": "video10481", "sen_id": 202189}, {"caption": "a news anchor interviews a man in a blue shirt", "video_id": "video10481", "sen_id": 202190}, {"caption": "a news show in which a bald man in a blue shirt discusses the rain forest", "video_id": "video10481", "sen_id": 202191}, {"caption": "two men and woman are talking in the tv channel", "video_id": "video10481", "sen_id": 202192}, {"caption": "simon coley explains what makes his cola source special", "video_id": "video10481", "sen_id": 202193}, {"caption": "a old man in blue color dress speaking sitting beside peoples around on chair on topic discusing displaying on screen", "video_id": "video10481", "sen_id": 202194}, {"caption": "they are discussing in bbc world news channel about business", "video_id": "video10481", "sen_id": 202195}, {"caption": "a bald man in a blue shirt is being interviewed on a news program", "video_id": "video10481", "sen_id": 202196}, {"caption": "a bald man wearing a blue buttoned shirt is speaking in front of a cityscape backdrop while a ticker tape scrolls across the bottom", "video_id": "video10481", "sen_id": 202197}, {"caption": "a person was speaking about the incident happened inside track in bbc world news channel", "video_id": "video10481", "sen_id": 202198}, {"caption": "a bald man gives an interview about his business", "video_id": "video10481", "sen_id": 202199}, {"caption": "a red and white outfit it being sewn", "video_id": "video11165", "sen_id": 202200}, {"caption": "under the light of a sewing machine a woman sews a white and red garment", "video_id": "video11165", "sen_id": 202201}, {"caption": "a woman is sewing something with red and white fabric", "video_id": "video11165", "sen_id": 202202}, {"caption": "a woman uses a sewing machine to construct a costume", "video_id": "video11165", "sen_id": 202203}, {"caption": "a woman uses a sewing machine to put together a costume in her home", "video_id": "video11165", "sen_id": 202204}, {"caption": "a woman uses a sewing machine to put together an outfit", "video_id": "video11165", "sen_id": 202205}, {"caption": "a small dress for a child is being sewn together", "video_id": "video11165", "sen_id": 202206}, {"caption": "red and white fabric is being sewed together to make clothing", "video_id": "video11165", "sen_id": 202207}, {"caption": "a person in black wearing a watch is sewing a red and white garment on a sewing machine", "video_id": "video11165", "sen_id": 202208}, {"caption": "a woman is using a sewing machine to sew a garment of clothing", "video_id": "video11165", "sen_id": 202209}, {"caption": "some one stitching a dress in red and white combination", "video_id": "video11165", "sen_id": 202210}, {"caption": "someone is using a sewing machine on a red and white fabric", "video_id": "video11165", "sen_id": 202211}, {"caption": "a woman is using a sewing machine to sew up a white piece of fabric", "video_id": "video11165", "sen_id": 202212}, {"caption": "a white and red piece of fabric is being sown together by a sewing machine a woman with a watch on her wrist is seen working the sewing machine", "video_id": "video11165", "sen_id": 202213}, {"caption": "a person uses a sewing machine on some white and red fabric", "video_id": "video11165", "sen_id": 202214}, {"caption": "a woman using a sewing machine makes a christmas baby dress", "video_id": "video11165", "sen_id": 202215}, {"caption": "the lady sews an inner garment on the red dress with a sewing machine", "video_id": "video11165", "sen_id": 202216}, {"caption": "a woman is sewing a red and white outfit on a sewing machine", "video_id": "video11165", "sen_id": 202217}, {"caption": "a woman sews red and white fabric on table with sewing machine", "video_id": "video11165", "sen_id": 202218}, {"caption": "woman is decorating a dress which is white with red", "video_id": "video11165", "sen_id": 202219}, {"caption": "a dashcam video that is recorded where a truck hits a car from the back", "video_id": "video10951", "sen_id": 202220}, {"caption": "cars moving lanes in traffic and then one car gets hit by a truck", "video_id": "video10951", "sen_id": 202221}, {"caption": "cars pass and merge on a large busy highway until one car is hit by a truck", "video_id": "video10951", "sen_id": 202222}, {"caption": "a traffic jam on a freeway just before an overpass", "video_id": "video10951", "sen_id": 202223}, {"caption": "a clip of a car that in an accident in traffic", "video_id": "video10951", "sen_id": 202224}, {"caption": "a car unsuccessfully navigates it's way from the slow lane into a fast lane and gets side swiped by the traffic in the fast lane", "video_id": "video10951", "sen_id": 202225}, {"caption": "a driver moves through very heavy traffic on a suburban street", "video_id": "video10951", "sen_id": 202226}, {"caption": "a car with a front video camera taking video of traffic some trucks and cars appear in the video", "video_id": "video10951", "sen_id": 202227}, {"caption": "congested traffic on a busy freeway causes a car to be bumped by a truck", "video_id": "video10951", "sen_id": 202228}, {"caption": "a car goes down a highway with a video game overlay", "video_id": "video10951", "sen_id": 202229}, {"caption": "cars and trucks are driving down a busy highway while a car driving along behind them records the traffic", "video_id": "video10951", "sen_id": 202230}, {"caption": "video of a truck stopped in the middle of the road that a car tries to go around and almost gets into an accident", "video_id": "video10951", "sen_id": 202231}, {"caption": "there is a truck moving in front of a yellow car", "video_id": "video10951", "sen_id": 202232}, {"caption": "a congested freeway and car tries to change lanes and get side swiped by a truck", "video_id": "video10951", "sen_id": 202233}, {"caption": "a person dashcam showing just how dangerous traffic is in their city", "video_id": "video10951", "sen_id": 202234}, {"caption": "the yellow car is following the black car and all other vehicles o side by side on the road", "video_id": "video10951", "sen_id": 202235}, {"caption": "some trucks and cars are in a traffic jam", "video_id": "video10951", "sen_id": 202236}, {"caption": "there is a yellow color car moving on the road", "video_id": "video10951", "sen_id": 202237}, {"caption": "a dash cam catches a truck hitting a car that pulls out in front of him", "video_id": "video10951", "sen_id": 202238}, {"caption": "vehicles that are in traffic are trying to move around another vehicle", "video_id": "video10951", "sen_id": 202239}, {"caption": "a tutorial on how to make sauce with fish sauce and other ingredients", "video_id": "video11625", "sen_id": 202240}, {"caption": "a woman talking about how to make a special sauce for taco reciepe", "video_id": "video11625", "sen_id": 202241}, {"caption": "a cook prepares a sauce with various ingredients and a pot", "video_id": "video11625", "sen_id": 202242}, {"caption": "a person is preparing and describing a recipe for a sauce", "video_id": "video11625", "sen_id": 202243}, {"caption": "a pot with water is shown and a woman begins to describe the steps to make her sauce recipe", "video_id": "video11625", "sen_id": 202244}, {"caption": "a chef discusses a sauce that she is getting ready to prepare", "video_id": "video11625", "sen_id": 202245}, {"caption": "spices and a pot with water sit on a stove", "video_id": "video11625", "sen_id": 202246}, {"caption": "in a kitchen someone is showing how to season food in a pot which already contains water", "video_id": "video11625", "sen_id": 202247}, {"caption": "a woman explains how to make a sauce for a recipe", "video_id": "video11625", "sen_id": 202248}, {"caption": "a person prepares a recipe that they explain and go over", "video_id": "video11625", "sen_id": 202249}, {"caption": "a person demonstrates how to make a certain type of sauce", "video_id": "video11625", "sen_id": 202250}, {"caption": "there is one cup of clear water at the bottom of a stainless steel pan sitting on a burner", "video_id": "video11625", "sen_id": 202251}, {"caption": "in the kitchen there is a woman cooking with a pan", "video_id": "video11625", "sen_id": 202252}, {"caption": "a lady showing how to make sauce using a sauce pan", "video_id": "video11625", "sen_id": 202253}, {"caption": "a gray pot filled with one cup of water", "video_id": "video11625", "sen_id": 202254}, {"caption": "some water is boiling in a silver pot", "video_id": "video11625", "sen_id": 202255}, {"caption": "men is cooking in the utensil with water in it", "video_id": "video11625", "sen_id": 202256}, {"caption": "a container having boiled water", "video_id": "video11625", "sen_id": 202257}, {"caption": "in a kitchen ingredients are being measuring into a pan on the stove", "video_id": "video11625", "sen_id": 202258}, {"caption": "a woman giving detailed instructions on making sauce", "video_id": "video11625", "sen_id": 202259}, {"caption": "oil is being poured into a cooking pan", "video_id": "video11977", "sen_id": 202260}, {"caption": "a chef demonstrates a recipe by putting oil in a hot skillet", "video_id": "video11977", "sen_id": 202261}, {"caption": "a person is dripping oil in a skillet for cooking purposes", "video_id": "video11977", "sen_id": 202262}, {"caption": "some guy oiling a pan speaking in a language that isn't english", "video_id": "video11977", "sen_id": 202263}, {"caption": "adding some tablespoons of cooking oil to a pan", "video_id": "video11977", "sen_id": 202264}, {"caption": "oil being squirted in a pot in slow increments", "video_id": "video11977", "sen_id": 202265}, {"caption": "a chef is preparing some special food in kitchen", "video_id": "video11977", "sen_id": 202266}, {"caption": "a man pours oil liberally into a saute pan", "video_id": "video11977", "sen_id": 202267}, {"caption": "a chef is pour oil in to the pan for fry", "video_id": "video11977", "sen_id": 202268}, {"caption": "in an extreme close up a male chef speaks in a foreign language while he dumps a little liquid into a pan with a spoon", "video_id": "video11977", "sen_id": 202269}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11977", "sen_id": 202270}, {"caption": "the cheff placing some oil on the pan", "video_id": "video11977", "sen_id": 202271}, {"caption": "a cooking person poring oil in frying pan and telling the procedure to cook", "video_id": "video11977", "sen_id": 202272}, {"caption": "a man starts a recipe by pouring oil in the saucepan and putting it on heat", "video_id": "video11977", "sen_id": 202273}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11977", "sen_id": 202274}, {"caption": "in the kitchen a man preparing for a dish with oil", "video_id": "video11977", "sen_id": 202275}, {"caption": "a man is adding oil to a pot while speaking", "video_id": "video11977", "sen_id": 202276}, {"caption": "this cook applying oil different so same as finishing", "video_id": "video11977", "sen_id": 202277}, {"caption": "a man pours cooking oil onto a skillet in an even coat", "video_id": "video11977", "sen_id": 202278}, {"caption": "the chef lightly poured some oil in his pan", "video_id": "video11977", "sen_id": 202279}, {"caption": "a horse is impatientily waiting behind a fence pacing back and forth", "video_id": "video11256", "sen_id": 202280}, {"caption": "an all white horse is going back and forth behind a fence", "video_id": "video11256", "sen_id": 202281}, {"caption": "a white horse behind a metal gate swaying from side to side", "video_id": "video11256", "sen_id": 202282}, {"caption": "a white horse sways back and forth near a metal gate", "video_id": "video11256", "sen_id": 202283}, {"caption": "a white horse near a fence stepping back and fourth", "video_id": "video11256", "sen_id": 202284}, {"caption": "a white pony is trying to find out how to ecsape the cage", "video_id": "video11256", "sen_id": 202285}, {"caption": "a white horse pacing from side to side behind a wood fence", "video_id": "video11256", "sen_id": 202286}, {"caption": "a horse is moving back and forth constantly like it is impatient", "video_id": "video11256", "sen_id": 202287}, {"caption": "a white horse can be seen impatiently wiggling near a fence gate with somewhat nervous but pleasant music playing in the background", "video_id": "video11256", "sen_id": 202288}, {"caption": "a white horse stepping impatiently behind a gate waiting for it to open", "video_id": "video11256", "sen_id": 202289}, {"caption": "a silly horse playing around and having fun outside", "video_id": "video11256", "sen_id": 202290}, {"caption": "a white horse standing inside compound displaying on screen", "video_id": "video11256", "sen_id": 202291}, {"caption": "a beautiful cute white horse doing something in garden", "video_id": "video11256", "sen_id": 202292}, {"caption": "a white horse paces back and forth next to a fence to illustrate the firm s idea of impatient", "video_id": "video11256", "sen_id": 202293}, {"caption": "a white horse behind a metal fence stepping back and forth", "video_id": "video11256", "sen_id": 202294}, {"caption": "a very beautiful white horse looks restless as it shows in its action", "video_id": "video11256", "sen_id": 202295}, {"caption": "a horse with white color is moving", "video_id": "video11256", "sen_id": 202296}, {"caption": "a white horse moving side to side in a caged stable", "video_id": "video11256", "sen_id": 202297}, {"caption": "a white color horse standing inside moving left and right position compound displaying on screen", "video_id": "video11256", "sen_id": 202298}, {"caption": "some text is on a black back ground on tv", "video_id": "video11256", "sen_id": 202299}, {"caption": "multiple guys in a gym doing basketball practice and drills", "video_id": "video10185", "sen_id": 202300}, {"caption": "people are sitting on the ground stretching in the gym", "video_id": "video10185", "sen_id": 202301}, {"caption": "a group of men performing stretches on a gym floor", "video_id": "video10185", "sen_id": 202302}, {"caption": "some guys on a gym floor with their legs open stretching", "video_id": "video10185", "sen_id": 202303}, {"caption": "excited guys are trying inside of a school gym", "video_id": "video10185", "sen_id": 202304}, {"caption": "all persons are excising in a basketball court", "video_id": "video10185", "sen_id": 202305}, {"caption": "the people are having a strech after the game", "video_id": "video10185", "sen_id": 202306}, {"caption": "a group of persons are doing exercises in the stadium", "video_id": "video10185", "sen_id": 202307}, {"caption": "group of people doing exercises", "video_id": "video10185", "sen_id": 202308}, {"caption": "most of the players are doing some exercises in the gym", "video_id": "video10185", "sen_id": 202309}, {"caption": "young boys are stretching and preparing themselves for an athletic activity", "video_id": "video10185", "sen_id": 202310}, {"caption": "a group of men are sitting on the floor stretching and counting", "video_id": "video10185", "sen_id": 202311}, {"caption": "a group of men is doing warm up and stretch exercise", "video_id": "video10185", "sen_id": 202312}, {"caption": "a few people sit on the gym floor stretching together", "video_id": "video10185", "sen_id": 202313}, {"caption": "a group of players are playing and doing warm-up in a place", "video_id": "video10185", "sen_id": 202314}, {"caption": "basket ball players getting warmed up before the match", "video_id": "video10185", "sen_id": 202315}, {"caption": "a shirtless young man runs backwards in a gym with his arms lifted up teenagers sit on a gym floor reaching for their toes and stretching their splayed legs", "video_id": "video10185", "sen_id": 202316}, {"caption": "group of men doing some exercise on the stadium", "video_id": "video10185", "sen_id": 202317}, {"caption": "players of a basketball team warming up in a basketball court", "video_id": "video10185", "sen_id": 202318}, {"caption": "a group of men exercise together in a gym", "video_id": "video10185", "sen_id": 202319}, {"caption": "female newscaster describing the events of africa and bosnia", "video_id": "video11234", "sen_id": 202320}, {"caption": "a malnourished child tending to his mother is shown", "video_id": "video11234", "sen_id": 202321}, {"caption": "a bbc news clip from a while ago", "video_id": "video11234", "sen_id": 202322}, {"caption": "news anchor speaks while image first shows men walking in a jungle and then images of somalian children are shown", "video_id": "video11234", "sen_id": 202323}, {"caption": "people walking up a hill in a forest and a emaciated child", "video_id": "video11234", "sen_id": 202324}, {"caption": "people walking in a forest and a tank turning a corner and a underweight baby", "video_id": "video11234", "sen_id": 202325}, {"caption": "this is a news clip regarding fighting in the middle east as well as the un helping in samolia", "video_id": "video11234", "sen_id": 202326}, {"caption": "men with guns are walking through the jungle then a starving child is seen at her mothers breast", "video_id": "video11234", "sen_id": 202327}, {"caption": "people with gun in their hand are walking in the jungle", "video_id": "video11234", "sen_id": 202328}, {"caption": "there are many men stading with guns in their hand", "video_id": "video11234", "sen_id": 202329}, {"caption": "bbc asia us nation to help peoples in so proverty", "video_id": "video11234", "sen_id": 202330}, {"caption": "a woman is reading news for a television", "video_id": "video11234", "sen_id": 202331}, {"caption": "there is some person walking through the forest", "video_id": "video11234", "sen_id": 202332}, {"caption": "men with rifles are walking single file up a slope through a forest trucks are traveling around a street corner in front of a white building", "video_id": "video11234", "sen_id": 202333}, {"caption": "three people walking through heavy brush inside a forest", "video_id": "video11234", "sen_id": 202334}, {"caption": "there is someone walking through the forest with gun", "video_id": "video11234", "sen_id": 202335}, {"caption": "there is news head lines about poverty in somalia where people suffering for food", "video_id": "video11234", "sen_id": 202336}, {"caption": "some people with guns are moving through a forest and a thin baby is with his mother", "video_id": "video11234", "sen_id": 202337}, {"caption": "bosnian mulism guerrillas walk through the woods near sarajevo", "video_id": "video11234", "sen_id": 202338}, {"caption": "someone is filming a scene in a green forest as men walk around", "video_id": "video11234", "sen_id": 202339}, {"caption": "picture of a woman wearing designed dresses", "video_id": "video11313", "sen_id": 202340}, {"caption": "a woman is being shown in several different beautiful dresses", "video_id": "video11313", "sen_id": 202341}, {"caption": "model wearing different outfits while background music plays", "video_id": "video11313", "sen_id": 202342}, {"caption": "a model is shown posing in several formal evening gowns", "video_id": "video11313", "sen_id": 202343}, {"caption": "a montage of a woman wearing various outfits", "video_id": "video11313", "sen_id": 202344}, {"caption": "a model standstill showcase portraying various styles of dresses", "video_id": "video11313", "sen_id": 202345}, {"caption": "a series of stills show women in long gowns", "video_id": "video11313", "sen_id": 202346}, {"caption": "a woman in a long golden gown poses for pictures in a large villa", "video_id": "video11313", "sen_id": 202347}, {"caption": "a model is showing off a beautiful nude dress followed by a blue dress and finally a bright blue dress", "video_id": "video11313", "sen_id": 202348}, {"caption": "a woman in a beige dress a green dress and a black formal gown", "video_id": "video11313", "sen_id": 202349}, {"caption": "attractive female models are wearing vibrantly colored dresses in a photo shoot", "video_id": "video11313", "sen_id": 202350}, {"caption": "a beautiful brunette model is shown in several long flowing gowns", "video_id": "video11313", "sen_id": 202351}, {"caption": "a woman modeling different styles of evening dresses", "video_id": "video11313", "sen_id": 202352}, {"caption": "a picture of a young woman wearing along tan colored dress", "video_id": "video11313", "sen_id": 202353}, {"caption": "a collection of women in different color dresse", "video_id": "video11313", "sen_id": 202354}, {"caption": "a lady is on blue color dress", "video_id": "video11313", "sen_id": 202355}, {"caption": "the young fashionable ladies wearing different kinds of flower dress in the colors of blue and black", "video_id": "video11313", "sen_id": 202356}, {"caption": "a model is shown modelling dresses - white and black", "video_id": "video11313", "sen_id": 202357}, {"caption": "dresses are shown on a female model while catchy music plays", "video_id": "video11313", "sen_id": 202358}, {"caption": "a female fashion model is wearing different color dresses", "video_id": "video11313", "sen_id": 202359}, {"caption": "a person preparing food in a kitchen with carrots cauliflower and broccoli", "video_id": "video11347", "sen_id": 202360}, {"caption": "a woman is presenting the ingredients for a recipe that she is making", "video_id": "video11347", "sen_id": 202361}, {"caption": "a person preparing a meal over a stove in the kitchen", "video_id": "video11347", "sen_id": 202362}, {"caption": "a woman mentions some of the ingredients for a meal while standing by a stove covered with pots and veggies", "video_id": "video11347", "sen_id": 202363}, {"caption": "a woman is teaching how to cook a dish as she is in her kitchen", "video_id": "video11347", "sen_id": 202364}, {"caption": "a woman is giving instrucions in a kitchen on how to cook", "video_id": "video11347", "sen_id": 202365}, {"caption": "a woman demonstrates cooking a dish that appears to be ethnic", "video_id": "video11347", "sen_id": 202366}, {"caption": "a west indian woman gives a cooking lesson and goes over the ingredients while her pan stainless steel pots and some cut up vegetables sit on the white stove", "video_id": "video11347", "sen_id": 202367}, {"caption": "a lady is telling the ingredient names which she is going to make food from that", "video_id": "video11347", "sen_id": 202368}, {"caption": "a woman is standing in front of a white stove with black knobs where there are two pots a blue bowl and small dishes holding orange and green ingredients", "video_id": "video11347", "sen_id": 202369}, {"caption": "a woman describes how she is cooking step-by-step in her kitchen", "video_id": "video11347", "sen_id": 202370}, {"caption": "a woman is showing the different ingredients needed to make a dish", "video_id": "video11347", "sen_id": 202371}, {"caption": "a woman describes ingredients needed in preparing something over her stove top including 2 cups of all purpose flour black pepper and cooking oil", "video_id": "video11347", "sen_id": 202372}, {"caption": "lady with thick cajun voice instructing how to cook a recipe", "video_id": "video11347", "sen_id": 202373}, {"caption": "a woman is making a recipe and is using flour pepper and oil as the ingredients", "video_id": "video11347", "sen_id": 202374}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11347", "sen_id": 202375}, {"caption": "in the kitchen a woman making a dish with a vessel", "video_id": "video11347", "sen_id": 202376}, {"caption": "a jamaican chef shows us how to cook with all purpose flour black pepper cooking oil and a few vegetables", "video_id": "video11347", "sen_id": 202377}, {"caption": "an inhome chef talks about the ingredients she will be using in a recipe she is preparing", "video_id": "video11347", "sen_id": 202378}, {"caption": "a person is talking and holding a measuring cup", "video_id": "video11347", "sen_id": 202379}, {"caption": "a man is cooking shrimp in a pan and then puts them in a bowl", "video_id": "video11695", "sen_id": 202380}, {"caption": "a chef is putting some cooked food into the bowl", "video_id": "video11695", "sen_id": 202381}, {"caption": "a man stirs mushrooms and shrimp in a pan on the stove", "video_id": "video11695", "sen_id": 202382}, {"caption": "man talking about cooking shrimp and mushrooms in frying pan", "video_id": "video11695", "sen_id": 202383}, {"caption": "a man is cooking shrimp and mushrooms then puts them into a bowl", "video_id": "video11695", "sen_id": 202384}, {"caption": "there is a man making a quick and simple dish", "video_id": "video11695", "sen_id": 202385}, {"caption": "a pan full of shrimp and mushrooms being spooned into a bowl", "video_id": "video11695", "sen_id": 202386}, {"caption": "a man appears to be cooking shrimp and mushrooms", "video_id": "video11695", "sen_id": 202387}, {"caption": "a man is cooking shrimp and mushrooms on a stove before he makes alfredo sauce", "video_id": "video11695", "sen_id": 202388}, {"caption": "someone is sauteing some mushrooms", "video_id": "video11695", "sen_id": 202389}, {"caption": "a cook demonstrates how to cook and present a shrimp and mushroom dish that will be served with an alfredo sauce", "video_id": "video11695", "sen_id": 202390}, {"caption": "a man cooking shrimp to perfection and putting them in a bowl to set aside to make alfredo sauce next", "video_id": "video11695", "sen_id": 202391}, {"caption": "a man is preparing mushroom and shimp in a pan", "video_id": "video11695", "sen_id": 202392}, {"caption": "a man a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11695", "sen_id": 202393}, {"caption": "a man is showing how to cook shrimp in a skillet", "video_id": "video11695", "sen_id": 202394}, {"caption": "someone is frying mushroom in the frying pan and transfers to a bowl", "video_id": "video11695", "sen_id": 202395}, {"caption": "in a large pan cooked mushrooms are taken off the stove and put into a bowl", "video_id": "video11695", "sen_id": 202396}, {"caption": "vegetables are being cooked in a pot on the stove the food is placed in a bowl", "video_id": "video11695", "sen_id": 202397}, {"caption": "prawn pieces boiled cooked and fried served from hot pan", "video_id": "video11695", "sen_id": 202398}, {"caption": "someone is frying up meat in a pan", "video_id": "video11695", "sen_id": 202399}, {"caption": "a little boy is fishing sings a song and catches a fish", "video_id": "video10074", "sen_id": 202400}, {"caption": "a little red haired boy in a red shirt and blue shorts goes fishing off a dock", "video_id": "video10074", "sen_id": 202401}, {"caption": "a red t shirt boy catching fish at the river", "video_id": "video10074", "sen_id": 202402}, {"caption": "there is a boy in red t-shirt fishing from the lake", "video_id": "video10074", "sen_id": 202403}, {"caption": "a small boy keeping stick on her handputting it on the seaa fish coming from it", "video_id": "video10074", "sen_id": 202404}, {"caption": "a young boy catches a fish while standing on a dock", "video_id": "video10074", "sen_id": 202405}, {"caption": "a child having a stick and throwing its one side in a river capturing fish", "video_id": "video10074", "sen_id": 202406}, {"caption": "a red haired young boy in a red tee shirt catches a fish in a lake from a wooden dock", "video_id": "video10074", "sen_id": 202407}, {"caption": "there is a red tshirt boy fishing from the woods", "video_id": "video10074", "sen_id": 202408}, {"caption": "a little boy is casting a reel into water and catching a fish", "video_id": "video10074", "sen_id": 202409}, {"caption": "a young boy is fishing from a pier on the lake", "video_id": "video10074", "sen_id": 202410}, {"caption": "a young boy fishing until he catches one and hoists it up onto a dock", "video_id": "video10074", "sen_id": 202411}, {"caption": "a young boy is playing with a fishing pole on a pier", "video_id": "video10074", "sen_id": 202412}, {"caption": "one boy fishing in lake and fish is jurks in", "video_id": "video10074", "sen_id": 202413}, {"caption": "boy in red dress does the fishing he wear the blue shorts finally ho got the fish out", "video_id": "video10074", "sen_id": 202414}, {"caption": "a little boy fishing on a dock of a lake and catching a fish", "video_id": "video10074", "sen_id": 202415}, {"caption": "a kid is playing near a lake by caught a fish", "video_id": "video10074", "sen_id": 202416}, {"caption": "a young boy doing some fishing", "video_id": "video10074", "sen_id": 202417}, {"caption": "a small boy trying to catch the fish on the river", "video_id": "video10074", "sen_id": 202418}, {"caption": "a little boy seems to enjoy fishing he looks down and brings his fishing rod to the water and finds himself a caught fish", "video_id": "video10074", "sen_id": 202419}, {"caption": "as tree covered mountains are shown below a man in a helicopter talks about the jungles of panama", "video_id": "video12824", "sen_id": 202420}, {"caption": "the camera is flying high above hills covered with green trees before we see men in a helicopter", "video_id": "video12824", "sen_id": 202421}, {"caption": "a man in a green shirt flies over green mountainsides and blue skies", "video_id": "video12824", "sen_id": 202422}, {"caption": "man in a green shirt flying over a large rainforest covered in fog", "video_id": "video12824", "sen_id": 202423}, {"caption": "a man in a green shirt is is flying over lush vegetation", "video_id": "video12824", "sen_id": 202424}, {"caption": "a helicopter flies low and slow over a series of tree covered mountain peaks", "video_id": "video12824", "sen_id": 202425}, {"caption": "a man in a green shirt is riding in a helicopter over a jungle", "video_id": "video12824", "sen_id": 202426}, {"caption": "a green t shirt guy is talking in an helicopter", "video_id": "video12824", "sen_id": 202427}, {"caption": "an ariel view of a string of mountains in panama", "video_id": "video12824", "sen_id": 202428}, {"caption": "helicopter flight over panama mountain range with voice-over explaining what panama is", "video_id": "video12824", "sen_id": 202429}, {"caption": "a man in the helicopter watching the area", "video_id": "video12824", "sen_id": 202430}, {"caption": "there is a forest with a small village", "video_id": "video12824", "sen_id": 202431}, {"caption": "a forest is showing slowly", "video_id": "video12824", "sen_id": 202432}, {"caption": "a two men travelling on the helicopter and exploring the places", "video_id": "video12824", "sen_id": 202433}, {"caption": "a helicopter flies over a village in the amazons", "video_id": "video12824", "sen_id": 202434}, {"caption": "there is a mountain with a small village", "video_id": "video12824", "sen_id": 202435}, {"caption": "a man is riding in a helicopter over several mountain tops", "video_id": "video12824", "sen_id": 202436}, {"caption": "a men are flying and shoot a video of ground area", "video_id": "video12824", "sen_id": 202437}, {"caption": "people ride a helicopter over the amazon forest in awe", "video_id": "video12824", "sen_id": 202438}, {"caption": "the mountain chain in panama is full of trees and vegetation", "video_id": "video12824", "sen_id": 202439}, {"caption": "a man discusses the goals he has for a presentation he is about to do", "video_id": "video11388", "sen_id": 202440}, {"caption": "a man is lecturing students but he is quickly replaced by a blue information card", "video_id": "video11388", "sen_id": 202441}, {"caption": "a professor givers a slideshow presentation with white text on a blue background", "video_id": "video11388", "sen_id": 202442}, {"caption": "a man teaches with a power point presentation in class", "video_id": "video11388", "sen_id": 202443}, {"caption": "a slideshow is being presented about the goals of teaching bioinformatics", "video_id": "video11388", "sen_id": 202444}, {"caption": "a man in grey colour suit explaining about some subject", "video_id": "video11388", "sen_id": 202445}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video11388", "sen_id": 202446}, {"caption": "goals of teaching bioinformatics to provide an introduction to bioinformatics with a focus on the national center", "video_id": "video11388", "sen_id": 202447}, {"caption": "a speaker is addressing the goals of teaching bioinformatics", "video_id": "video11388", "sen_id": 202448}, {"caption": "a teacher is explaining about an goals of teaching bioinformatics", "video_id": "video11388", "sen_id": 202449}, {"caption": "a middle aged man in brown over coat is standing on stage and explaining something", "video_id": "video11388", "sen_id": 202450}, {"caption": "a man speaks nervously about teaching by a very bland blue powerpoint presentation", "video_id": "video11388", "sen_id": 202451}, {"caption": "a man is giving a lecture talking about bioinformatics", "video_id": "video11388", "sen_id": 202452}, {"caption": "a aman in standing incoat with mic holding speaking and discusing about science news", "video_id": "video11388", "sen_id": 202453}, {"caption": "some white text is on a blue background", "video_id": "video11388", "sen_id": 202454}, {"caption": "a suit man talking in front of a board", "video_id": "video11388", "sen_id": 202455}, {"caption": "goals of teaching bioinformatics to provide an introduction", "video_id": "video11388", "sen_id": 202456}, {"caption": "a college professor gives a lecture on a science related topic", "video_id": "video11388", "sen_id": 202457}, {"caption": "a old man in light brown coat mic in hand explayning about science topic displaying on screen", "video_id": "video11388", "sen_id": 202458}, {"caption": "some white text is on a blue screen", "video_id": "video11388", "sen_id": 202459}, {"caption": "two cows are shown being friendly towards each other", "video_id": "video11420", "sen_id": 202460}, {"caption": "several cows relax on a grassing hill while peaceful music plays in the background", "video_id": "video11420", "sen_id": 202461}, {"caption": "two cows grazing on a hilly pasture with farms in the background", "video_id": "video11420", "sen_id": 202462}, {"caption": "a small herd of cows grazes on a mountain hillside", "video_id": "video11420", "sen_id": 202463}, {"caption": "a group of tan cows grazes on a green hill side", "video_id": "video11420", "sen_id": 202464}, {"caption": "rural farm area with large brown cows grazing in an open field", "video_id": "video11420", "sen_id": 202465}, {"caption": "grayish-brown cows standing on a grassy slope on a mountainous countryside dotted with homes move their heads up down and around causing the bells around their necks to jingle constantly", "video_id": "video11420", "sen_id": 202466}, {"caption": "some cows standing together in a pasture", "video_id": "video11420", "sen_id": 202467}, {"caption": "a family of cows are living their life on a farm in the country", "video_id": "video11420", "sen_id": 202468}, {"caption": "a small group of cows are standing around on a grassy open area a small house or barn can be seen in the background along with rolling hills and trees", "video_id": "video11420", "sen_id": 202469}, {"caption": "a small herd of brown cows grazes in a green mountain meadow", "video_id": "video11420", "sen_id": 202470}, {"caption": "two animals rubbing their heads against each other", "video_id": "video11420", "sen_id": 202471}, {"caption": "cows touching heads and eating grass in a field", "video_id": "video11420", "sen_id": 202472}, {"caption": "cows graze in a vast field of grass", "video_id": "video11420", "sen_id": 202473}, {"caption": "brown cows wearing bells around their necks stand in a field", "video_id": "video11420", "sen_id": 202474}, {"caption": "some cows are standing around in a field", "video_id": "video11420", "sen_id": 202475}, {"caption": "a countryside scene where two brownish cows are nuzzling each other", "video_id": "video11420", "sen_id": 202476}, {"caption": "an outdoor scene with very green grass and snow capped mountains in the background", "video_id": "video11420", "sen_id": 202477}, {"caption": "cows are grazing in a green meadow on a hill in front of a barn with a red roof", "video_id": "video11420", "sen_id": 202478}, {"caption": "two brown and tan cows touching noses while grazing", "video_id": "video11420", "sen_id": 202479}, {"caption": "a happy woman is standing on the beach talking about beach styles", "video_id": "video10068", "sen_id": 202480}, {"caption": "megan concessio discusses summer clothing styles for different occasions", "video_id": "video10068", "sen_id": 202481}, {"caption": "a woman talks about summer styles for a vacation setting", "video_id": "video10068", "sen_id": 202482}, {"caption": "a young woman introduced a talk about beach fashion", "video_id": "video10068", "sen_id": 202483}, {"caption": "a women on the beach talks to the camera about a promotion", "video_id": "video10068", "sen_id": 202484}, {"caption": "a brown haired woman in a dress in front of a beach", "video_id": "video10068", "sen_id": 202485}, {"caption": "a woman in a dress in front of a beach background", "video_id": "video10068", "sen_id": 202486}, {"caption": "a young woman stands in front of the beach talking about fashion", "video_id": "video10068", "sen_id": 202487}, {"caption": "a woman stands in front of a green screen of a beach talking about summer styles", "video_id": "video10068", "sen_id": 202488}, {"caption": "a female with long brown hair stands in front of a beach and advises what to wear", "video_id": "video10068", "sen_id": 202489}, {"caption": "a young indian woman in front a beach background discusses potential fashion choices to wear to pool parties and summer vacations", "video_id": "video10068", "sen_id": 202490}, {"caption": "there is a woman talking from a beach", "video_id": "video10068", "sen_id": 202491}, {"caption": "a girl with the beach background speaks of showing some thing", "video_id": "video10068", "sen_id": 202492}, {"caption": "an indian woman talks about the fashion you can wear in the summer", "video_id": "video10068", "sen_id": 202493}, {"caption": "a women in a blue flowing shirt who is happy", "video_id": "video10068", "sen_id": 202494}, {"caption": "a woman in standing infront of the sea", "video_id": "video10068", "sen_id": 202495}, {"caption": "woman in blue cover up dress and swimsuit is giving summer style advice for various types of summer activities", "video_id": "video10068", "sen_id": 202496}, {"caption": "a woman describe outfits that you can wear to tropical locations", "video_id": "video10068", "sen_id": 202497}, {"caption": "brunette woman with nice body speaking near the sea", "video_id": "video10068", "sen_id": 202498}, {"caption": "a woman talks about 5 summer styles for beach and vacationing", "video_id": "video10068", "sen_id": 202499}, {"caption": "a person is rinsing beef tendon and tripe in a sink", "video_id": "video10805", "sen_id": 202500}, {"caption": "a man washing raw pieces of meat in a kitchen sink", "video_id": "video10805", "sen_id": 202501}, {"caption": "man preparing boiled beef from a sink into a metal container", "video_id": "video10805", "sen_id": 202502}, {"caption": "a chef starts a recipe by boiling a large part of beef parts", "video_id": "video10805", "sen_id": 202503}, {"caption": "a person showing how to wash raw meat in the sink", "video_id": "video10805", "sen_id": 202504}, {"caption": "there is a bowl of meat and then someone washing meat off and place it in a silver bowl", "video_id": "video10805", "sen_id": 202505}, {"caption": "a man is rinsing off beef tendon and beef tripe in a kitchen sink", "video_id": "video10805", "sen_id": 202506}, {"caption": "a man loudly washed naked beef in the sink as he explains what he is doing", "video_id": "video10805", "sen_id": 202507}, {"caption": "a man instructs while beef tendons and beef tripe are being rinsed", "video_id": "video10805", "sen_id": 202508}, {"caption": "a man is rinsing some meat with water and placing it in a metal bowl", "video_id": "video10805", "sen_id": 202509}, {"caption": "a male chef is cleaning beef in the sink", "video_id": "video10805", "sen_id": 202510}, {"caption": "there is a man washing meet in the kitchen", "video_id": "video10805", "sen_id": 202511}, {"caption": "raw meat is put in the bowl after washing then he washes some internal part of beef", "video_id": "video10805", "sen_id": 202512}, {"caption": "beef tendons and tripe are being cleaned while a host instructs", "video_id": "video10805", "sen_id": 202513}, {"caption": "some food is being prepared by a person", "video_id": "video10805", "sen_id": 202514}, {"caption": "man giving an instructional recipe on how to prep beef tendons and beef tripe while washing them in a sink", "video_id": "video10805", "sen_id": 202515}, {"caption": "a man is boiled a beef and washing some pieces in water", "video_id": "video10805", "sen_id": 202516}, {"caption": "a man cleaning a boiled beef tendon", "video_id": "video10805", "sen_id": 202517}, {"caption": "in a pot some thing put in to it and wash some thing", "video_id": "video10805", "sen_id": 202518}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video10805", "sen_id": 202519}, {"caption": "a team is practicing on a sports field", "video_id": "video10700", "sen_id": 202520}, {"caption": "a sports team is sprinting across a field to finish an event", "video_id": "video10700", "sen_id": 202521}, {"caption": "soccer players doing relay training on a soccer field", "video_id": "video10700", "sen_id": 202522}, {"caption": "a group of men run in a large stadium in a physical fitness competition", "video_id": "video10700", "sen_id": 202523}, {"caption": "a group of men run around cones on a large field as part of a fitness competition", "video_id": "video10700", "sen_id": 202524}, {"caption": "players run an obstacle course on a soccer field as the people in the bleachers watch", "video_id": "video10700", "sen_id": 202525}, {"caption": "a video clip is showing the winner of a sport", "video_id": "video10700", "sen_id": 202526}, {"caption": "men train for football doing track exercises while a crowd watches", "video_id": "video10700", "sen_id": 202527}, {"caption": "there are players of a certain sport on a field", "video_id": "video10700", "sen_id": 202528}, {"caption": "crossfit atheletes doing tackling dummy running drills in 2013", "video_id": "video10700", "sen_id": 202529}, {"caption": "athletes compete in a brief running obstacle course", "video_id": "video10700", "sen_id": 202530}, {"caption": "several people are running and weaving around obstacle in a race", "video_id": "video10700", "sen_id": 202531}, {"caption": "a sports announcer is announcing who won and talking about it", "video_id": "video10700", "sen_id": 202532}, {"caption": "dan bailey competed in the crossfit games and it was a photo finish", "video_id": "video10700", "sen_id": 202533}, {"caption": "athletes are competing in a cross training competition", "video_id": "video10700", "sen_id": 202534}, {"caption": "more players are rounding a stick going another place", "video_id": "video10700", "sen_id": 202535}, {"caption": "a men are running in the ground for a race", "video_id": "video10700", "sen_id": 202536}, {"caption": "a man is speaking about the success of bailey which was a photofinish", "video_id": "video10700", "sen_id": 202537}, {"caption": "man giving voice over for live sports event", "video_id": "video10700", "sen_id": 202538}, {"caption": "some people are running around a field", "video_id": "video10700", "sen_id": 202539}, {"caption": "two people playing in a table tennis match", "video_id": "video11077", "sen_id": 202540}, {"caption": "a match between two table tennis players is set to piano music", "video_id": "video11077", "sen_id": 202541}, {"caption": "an unseen man speaking a germanic language delivers commentary on a table tennis match match between a young man in red shirt and a young man in black shirt as classical music plays over the commentary", "video_id": "video11077", "sen_id": 202542}, {"caption": "two players are playing competitive table tennis", "video_id": "video11077", "sen_id": 202543}, {"caption": "classical music plays as two opponents play against each other in a game of table tennis", "video_id": "video11077", "sen_id": 202544}, {"caption": "two ping pong players are versing each other on the court", "video_id": "video11077", "sen_id": 202545}, {"caption": "two men battle in an intense ping pong match", "video_id": "video11077", "sen_id": 202546}, {"caption": "two men play table tennis in a large indoor stadium", "video_id": "video11077", "sen_id": 202547}, {"caption": "the people are playing an intense ping pong game as the music plays", "video_id": "video11077", "sen_id": 202548}, {"caption": "two men are playing ping pong against each other on a red surface", "video_id": "video11077", "sen_id": 202549}, {"caption": "a couple of men playing competition table tennis", "video_id": "video11077", "sen_id": 202550}, {"caption": "two people in a very intense table tennis match that has some extreme volleying", "video_id": "video11077", "sen_id": 202551}, {"caption": "guys are competitively playing ping pong professionally against each other", "video_id": "video11077", "sen_id": 202552}, {"caption": "two people one dressed in red and the other dressed in black playing ping pong", "video_id": "video11077", "sen_id": 202553}, {"caption": "two men playing a game of ping pong", "video_id": "video11077", "sen_id": 202554}, {"caption": "two men on a court is playing a game of ping pong", "video_id": "video11077", "sen_id": 202555}, {"caption": "the men wearing shorts hit the ball over the ping pong table", "video_id": "video11077", "sen_id": 202556}, {"caption": "a two men are playing a table tennis game", "video_id": "video11077", "sen_id": 202557}, {"caption": "two men are playing ping-pong in a tournament both are playing aggressively", "video_id": "video11077", "sen_id": 202558}, {"caption": "table tennis players play a round while listening to piano music", "video_id": "video11077", "sen_id": 202559}, {"caption": "a small sick child is being laid on a bed while people suit up to prevent contamination", "video_id": "video11645", "sen_id": 202560}, {"caption": "men in white hazmat suits caring for a young african child", "video_id": "video11645", "sen_id": 202561}, {"caption": "a small black boy is treated in a hospital by a man in white suit", "video_id": "video11645", "sen_id": 202562}, {"caption": "a small child in an ebola ridden country sits on a hospital bed and is examined by a doctor in mask and gown", "video_id": "video11645", "sen_id": 202563}, {"caption": "a young child sits and waits on the edge of a soiled and printed mattress on top of a metal cot in front of closed green vertical blinds", "video_id": "video11645", "sen_id": 202564}, {"caption": "sky news showing men in hazmat suits and sick children being tended to report on the topic ebola crisis", "video_id": "video11645", "sen_id": 202565}, {"caption": "a small black kid is taken care of in hospital", "video_id": "video11645", "sen_id": 202566}, {"caption": "a little black boy is sitting on a cot while men in white protective suits work", "video_id": "video11645", "sen_id": 202567}, {"caption": "beautiful african baby is in the hospital for operation", "video_id": "video11645", "sen_id": 202568}, {"caption": "a guy with a white costume is spraying stuff", "video_id": "video11645", "sen_id": 202569}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video11645", "sen_id": 202570}, {"caption": "a black boy sits on the bed and someone help him to lie to examine ebola", "video_id": "video11645", "sen_id": 202571}, {"caption": "an aftican child is shown in a clinic then people in hasmat suits are depicted", "video_id": "video11645", "sen_id": 202572}, {"caption": "a boy looking like negros is placing on the hospital bed", "video_id": "video11645", "sen_id": 202573}, {"caption": "some men in hazard suits are walking around", "video_id": "video11645", "sen_id": 202574}, {"caption": "there is a bay laying down with serious sick", "video_id": "video11645", "sen_id": 202575}, {"caption": "a boy seated on a bed and other men caring a white laggage", "video_id": "video11645", "sen_id": 202576}, {"caption": "a small black child is shown sitting on a bed then several men are shown putting on medical scrubs as part of a sky news piece on ebola", "video_id": "video11645", "sen_id": 202577}, {"caption": "a video where infection precautions are being taken in a country stricken by ebola", "video_id": "video11645", "sen_id": 202578}, {"caption": "some men in white suits are walking around", "video_id": "video11645", "sen_id": 202579}, {"caption": "two firefighters try to break a box open together", "video_id": "video10840", "sen_id": 202580}, {"caption": "kids dressed in fire-fighting suits jumping on boxes in living room", "video_id": "video10840", "sen_id": 202581}, {"caption": "two boys in a fireman suit are hitting a box with an axe", "video_id": "video10840", "sen_id": 202582}, {"caption": "a group of kids dressed as firemen play with a large box", "video_id": "video10840", "sen_id": 202583}, {"caption": "two young boys are wearing little firemen suits as they play like they're actually firemen in their bedroom", "video_id": "video10840", "sen_id": 202584}, {"caption": "little boys are climbing up a box using axes acting like firefighters", "video_id": "video10840", "sen_id": 202585}, {"caption": "young children dressed as firefighters play around in a living room", "video_id": "video10840", "sen_id": 202586}, {"caption": "two boys hit a large box with toy axes and then try to get on top of the large box", "video_id": "video10840", "sen_id": 202587}, {"caption": "two firefighters are trying to get the box open", "video_id": "video10840", "sen_id": 202588}, {"caption": "two different firefighters are trying to open the large box", "video_id": "video10840", "sen_id": 202589}, {"caption": "two children dressed as firemen play with a large box", "video_id": "video10840", "sen_id": 202590}, {"caption": "two children in firefighter costumes have problems opening a large box with a toy fire truck", "video_id": "video10840", "sen_id": 202591}, {"caption": "young kids dressed up as firefighters and playing", "video_id": "video10840", "sen_id": 202592}, {"caption": "children dressed as firefighters are jumping climbing and using toy axes", "video_id": "video10840", "sen_id": 202593}, {"caption": "kids dressed up as firefighters playing together and hitting the wall", "video_id": "video10840", "sen_id": 202594}, {"caption": "girl and boy demonstrate how to use firesafety techniques", "video_id": "video10840", "sen_id": 202595}, {"caption": "some kids are dressed at firefighters and playing with a cardboard box", "video_id": "video10840", "sen_id": 202596}, {"caption": "a children with different costumes are with hammer breaking the paper box", "video_id": "video10840", "sen_id": 202597}, {"caption": "two kids are doing some mischievious things in their house", "video_id": "video10840", "sen_id": 202598}, {"caption": "a kid is swinging an axe at a box", "video_id": "video10840", "sen_id": 202599}, {"caption": "a man who's face is not seen is playing a guitar", "video_id": "video10200", "sen_id": 202600}, {"caption": "a man wearing a blue shirt is playing a guitar", "video_id": "video10200", "sen_id": 202601}, {"caption": "a person in a blue shirt played a guitar melody", "video_id": "video10200", "sen_id": 202602}, {"caption": "a man with a blue shirt was playing guitar", "video_id": "video10200", "sen_id": 202603}, {"caption": "a guitarist wearing a blue shirt instructs by placing his fingers to form chords up and down the neck of his stringed instrument", "video_id": "video10200", "sen_id": 202604}, {"caption": "a man in a blue shirt plays the acoustic guitar", "video_id": "video10200", "sen_id": 202605}, {"caption": "a tutorial on how to play guitar well", "video_id": "video10200", "sen_id": 202606}, {"caption": "a man in blue is playing guitar", "video_id": "video10200", "sen_id": 202607}, {"caption": "a man in a button-up shirt is trying to give lessons on how to play a guitar", "video_id": "video10200", "sen_id": 202608}, {"caption": "a man plays an acoustic guitar while wearing a blue shirt", "video_id": "video10200", "sen_id": 202609}, {"caption": "a person with a blue shirt is playing a guitar", "video_id": "video10200", "sen_id": 202610}, {"caption": "a person in a blue shirt strumming a guitar", "video_id": "video10200", "sen_id": 202611}, {"caption": "a man in a blue shirt playing an accoustic guitar", "video_id": "video10200", "sen_id": 202612}, {"caption": "a man is playing a few notes on a guitar", "video_id": "video10200", "sen_id": 202613}, {"caption": "a man is playing a guitar", "video_id": "video10200", "sen_id": 202614}, {"caption": "there is a blue shirt man playing guitar", "video_id": "video10200", "sen_id": 202615}, {"caption": "the man is hitting the guitar in a sweet sound note", "video_id": "video10200", "sen_id": 202616}, {"caption": "a man play the gittar and music player", "video_id": "video10200", "sen_id": 202617}, {"caption": "a guitarist playing the basic notes of lessons in playing guitar", "video_id": "video10200", "sen_id": 202618}, {"caption": "a man in a blue shirt playing an acoustic guitar", "video_id": "video10200", "sen_id": 202619}, {"caption": "a person narrates while motorcycle racing video game is being played", "video_id": "video10687", "sen_id": 202620}, {"caption": "motorcycles are racing at high speed on a racetrack while a man gives commentary", "video_id": "video10687", "sen_id": 202621}, {"caption": "a person scrolls through a list of options for a video games", "video_id": "video10687", "sen_id": 202622}, {"caption": "a man scrolls through some options on an x-box racing game", "video_id": "video10687", "sen_id": 202623}, {"caption": "a motorcycle race with the riders in red and green racing suits", "video_id": "video10687", "sen_id": 202624}, {"caption": "a man talking about a video game for xbox", "video_id": "video10687", "sen_id": 202625}, {"caption": "a man who is doing a voice over showing you how to play xbox", "video_id": "video10687", "sen_id": 202626}, {"caption": "a group of various colored racers wearing helmets race around a track", "video_id": "video10687", "sen_id": 202627}, {"caption": "many cars are racing across a track in a competition and there is only one route to the finish line", "video_id": "video10687", "sen_id": 202628}, {"caption": "showing how to sign into xbox live", "video_id": "video10687", "sen_id": 202629}, {"caption": "a male voice narrates a video game about motorcycle racing", "video_id": "video10687", "sen_id": 202630}, {"caption": "a man playing motogp is going through the main menus of signing into online capabilities", "video_id": "video10687", "sen_id": 202631}, {"caption": "bike racers moving on the track and some instructions displaying on the screen", "video_id": "video10687", "sen_id": 202632}, {"caption": "a screen shows start options with motorcycles racing in background", "video_id": "video10687", "sen_id": 202633}, {"caption": "signing into xbox live there seems to be a racing game playing in the background", "video_id": "video10687", "sen_id": 202634}, {"caption": "a gentleman explaining the mechanics of motogps title menu on the xboxone", "video_id": "video10687", "sen_id": 202635}, {"caption": "the cars races on the track very fast", "video_id": "video10687", "sen_id": 202636}, {"caption": "a man is narrating the navigation of menus of the motogp video game", "video_id": "video10687", "sen_id": 202637}, {"caption": "a man is explaining about logging into xbox live with a motorcycle game showing on the screen", "video_id": "video10687", "sen_id": 202638}, {"caption": "some things are racing around on a track", "video_id": "video10687", "sen_id": 202639}, {"caption": "two men are reviewing empire of the dead", "video_id": "video10150", "sen_id": 202640}, {"caption": "two men commentating about zombie movies", "video_id": "video10150", "sen_id": 202641}, {"caption": "two guys are discussing the night of the living dead from a book to a movie", "video_id": "video10150", "sen_id": 202642}, {"caption": "a video that is talking about video games with zombies", "video_id": "video10150", "sen_id": 202643}, {"caption": "two men both wearing black t-shirts discuss different movies involving zombies", "video_id": "video10150", "sen_id": 202644}, {"caption": "two men in teeshirts talk about different horror films", "video_id": "video10150", "sen_id": 202645}, {"caption": "two men in black t-shirts talk about a horror movie they have recently viewed", "video_id": "video10150", "sen_id": 202646}, {"caption": "a couple of men talking about empire of the dead and night of the living dead", "video_id": "video10150", "sen_id": 202647}, {"caption": "two men wearing black shirts talking about empire of the dead", "video_id": "video10150", "sen_id": 202648}, {"caption": "a pair of young men talk about some movies they have recently viewed", "video_id": "video10150", "sen_id": 202649}, {"caption": "two men in black t-shirts talking and then a horror scene plays", "video_id": "video10150", "sen_id": 202650}, {"caption": "there is a blue tshirt man talking from a hall", "video_id": "video10150", "sen_id": 202651}, {"caption": "two men in blacks shirts talk about a zombie movie", "video_id": "video10150", "sen_id": 202652}, {"caption": "two nerdy teenage boys and black t-shirts discuss horror movies", "video_id": "video10150", "sen_id": 202653}, {"caption": "two men talk about zombies in a movie called epmire of the dead", "video_id": "video10150", "sen_id": 202654}, {"caption": "a scene from a movie is being shown", "video_id": "video10150", "sen_id": 202655}, {"caption": "there is a tshirt man talking from a office", "video_id": "video10150", "sen_id": 202656}, {"caption": "two loud young me talk about movies they like watching", "video_id": "video10150", "sen_id": 202657}, {"caption": "two men in black dress are reviewing the most scariest movies of english cinema", "video_id": "video10150", "sen_id": 202658}, {"caption": "few people are talking about a horror movie night of the living dead", "video_id": "video10150", "sen_id": 202659}, {"caption": "a woman showing how she makes what looks like vegetable stew", "video_id": "video12368", "sen_id": 202660}, {"caption": "a woman stirring what looks like vegetable stew in a pot over the stove", "video_id": "video12368", "sen_id": 202661}, {"caption": "an in-home chef demonstrates a recipe she is cooking in a small pot", "video_id": "video12368", "sen_id": 202662}, {"caption": "the person in the video is speaking a language otherthan english it is in the kitchen and the person seems like they are narrating a recipe the person adds ingredients to what looks like a soup and stirs it", "video_id": "video12368", "sen_id": 202663}, {"caption": "a chef demonstrates a recipe she is cooking in a pot in her home kitchen", "video_id": "video12368", "sen_id": 202664}, {"caption": "a woman stirs food in a pot that is cooking on the stove", "video_id": "video12368", "sen_id": 202665}, {"caption": "a woman is adding ingredients to a pot that is cooking on the stove she is speaking as she stirs in first a plate of ingredients and then 2 small bowls full of an ingredient", "video_id": "video12368", "sen_id": 202666}, {"caption": "a women in a kitchen preparing some dish in cooker", "video_id": "video12368", "sen_id": 202667}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video12368", "sen_id": 202668}, {"caption": "a women in red cooking food in cooker mixing all ingredients one by one and stirring with long spoon in kitchen", "video_id": "video12368", "sen_id": 202669}, {"caption": "someone wearing a red sleeved dress is putting something from a glass bowl into a black cook pot", "video_id": "video12368", "sen_id": 202670}, {"caption": "a person is cooking food inside of a pot", "video_id": "video12368", "sen_id": 202671}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12368", "sen_id": 202672}, {"caption": "someone is preparing a dish in pressure cooker over the stove and adding masala to it", "video_id": "video12368", "sen_id": 202673}, {"caption": "in a tv cookery program the lady wearing red color dress is preparing a different kind of soup", "video_id": "video12368", "sen_id": 202674}, {"caption": "a woman is cooking some food on a stove", "video_id": "video12368", "sen_id": 202675}, {"caption": "in the kitchen a woman cooking on the stove", "video_id": "video12368", "sen_id": 202676}, {"caption": "a lady adding vegetables spices to the rice to prepare her vegetable pulav", "video_id": "video12368", "sen_id": 202677}, {"caption": "one women doing recipe in cooker adding garam masala", "video_id": "video12368", "sen_id": 202678}, {"caption": "an inhome chef works on a recipe in a large pot on the stove in her restaurant", "video_id": "video12368", "sen_id": 202679}, {"caption": "carrots can be easily chopped by following these instructions", "video_id": "video11626", "sen_id": 202680}, {"caption": "a female chef describes a recipe that she is getting ready to prepare", "video_id": "video11626", "sen_id": 202681}, {"caption": "an asian chef describes the ingredients she will be using in a dish", "video_id": "video11626", "sen_id": 202682}, {"caption": "lady with accent showing how to chop carrots", "video_id": "video11626", "sen_id": 202683}, {"caption": "an asian woman demonstrates chopping carrots on a cutting board", "video_id": "video11626", "sen_id": 202684}, {"caption": "a woman standing in front of ingredients for a meal", "video_id": "video11626", "sen_id": 202685}, {"caption": "a woman grabs the pile of carrots and puts them on the cutting-board", "video_id": "video11626", "sen_id": 202686}, {"caption": "a woman stands in front of counter while cutting up some carrots", "video_id": "video11626", "sen_id": 202687}, {"caption": "a woman in a blue shirt demonstrating cutting carrots", "video_id": "video11626", "sen_id": 202688}, {"caption": "an asian woman with an accent starts chopping some carrots", "video_id": "video11626", "sen_id": 202689}, {"caption": "in the kitchen a woman cutting carrot on the slab", "video_id": "video11626", "sen_id": 202690}, {"caption": "a woman is chopping carrots and preparing for an event", "video_id": "video11626", "sen_id": 202691}, {"caption": "an inhome chef demonstrates how she chops carrots", "video_id": "video11626", "sen_id": 202692}, {"caption": "an asian lady shows us how to make chinese rice", "video_id": "video11626", "sen_id": 202693}, {"caption": "a woman in a kitchen is cutting a carrot", "video_id": "video11626", "sen_id": 202694}, {"caption": "a lady is inviting people to visit her website and then cuts carrots", "video_id": "video11626", "sen_id": 202695}, {"caption": "a woman wearing a blue shirt is cutting carrots on a white cutting board", "video_id": "video11626", "sen_id": 202696}, {"caption": "women offering access to a recipe on her website", "video_id": "video11626", "sen_id": 202697}, {"caption": "woman presenting the ingredients and preparing the meal", "video_id": "video11626", "sen_id": 202698}, {"caption": "a woman chops carrots for her shrimp fried rice", "video_id": "video11626", "sen_id": 202699}, {"caption": "two women stand in tight outfits talking and posing", "video_id": "video12254", "sen_id": 202700}, {"caption": "two women showing and selling dresses", "video_id": "video12254", "sen_id": 202701}, {"caption": "two women in tight clothes are on a show", "video_id": "video12254", "sen_id": 202702}, {"caption": "tow women in very short dresses describe sporting news", "video_id": "video12254", "sen_id": 202703}, {"caption": "two women speaking in a different language are explaining something", "video_id": "video12254", "sen_id": 202704}, {"caption": "two women in skimpy outfits are modeling for a game show", "video_id": "video12254", "sen_id": 202705}, {"caption": "two women talk about football", "video_id": "video12254", "sen_id": 202706}, {"caption": "two ladies in short dresses deliver the news about sports", "video_id": "video12254", "sen_id": 202707}, {"caption": "two ladies in short sporty dresses pose and disucuss sports", "video_id": "video12254", "sen_id": 202708}, {"caption": "gina and roxi standing on a stage giving a strip tease sport report", "video_id": "video12254", "sen_id": 202709}, {"caption": "two young women in short skirts are reporting sports", "video_id": "video12254", "sen_id": 202710}, {"caption": "two women in short skirts stand on a stage in front of a large tv screen", "video_id": "video12254", "sen_id": 202711}, {"caption": "two females talking about sports while standing next to tv's", "video_id": "video12254", "sen_id": 202712}, {"caption": "women in small dresses show off during a makeshift news segment", "video_id": "video12254", "sen_id": 202713}, {"caption": "a woman in a striped dress and a woman in a red and black dress are talking", "video_id": "video12254", "sen_id": 202714}, {"caption": "a women is wearing long dress and standing and smiling", "video_id": "video12254", "sen_id": 202715}, {"caption": "women share a small black stage with a curved yellow stripe where they stand next to horizontal blue screens and a large one screen", "video_id": "video12254", "sen_id": 202716}, {"caption": "2 hot girls talks they are sexythe girl wear white and black stripes", "video_id": "video12254", "sen_id": 202717}, {"caption": "two girl with white strip and black and red dress standing", "video_id": "video12254", "sen_id": 202718}, {"caption": "two women on tv are presenting some thing", "video_id": "video12254", "sen_id": 202719}, {"caption": "a man in paris discussing the mood of the city after the terrorist attack", "video_id": "video11104", "sen_id": 202720}, {"caption": "photographs and flowers line the street in paris while a news reporter describes the scene", "video_id": "video11104", "sen_id": 202721}, {"caption": "a man is being interviewed in the street about what the current mood is in paris", "video_id": "video11104", "sen_id": 202722}, {"caption": "a guy speaking about people and their mood from parris", "video_id": "video11104", "sen_id": 202723}, {"caption": "a man wearing heavy coat and inner garments telling about the moods in paris", "video_id": "video11104", "sen_id": 202724}, {"caption": "a man on the sidewalk surveys the scene in paris after recent terrorist attacks", "video_id": "video11104", "sen_id": 202725}, {"caption": "the man wearing a jacket talks on a street outdoors", "video_id": "video11104", "sen_id": 202726}, {"caption": "a man describes the normalcy of paris the day after an event occured", "video_id": "video11104", "sen_id": 202727}, {"caption": "a man wearing overcoat and warm inner cloth is describing bout the mood in paris", "video_id": "video11104", "sen_id": 202728}, {"caption": "a man describes the mood in paris as pretty normal as people are seen in a cafe", "video_id": "video11104", "sen_id": 202729}, {"caption": "a man discusses the mood and reaction of the citizens of paris to an event", "video_id": "video11104", "sen_id": 202730}, {"caption": "the screen says what is the mood in paris and is describing what he sees people doing in paris today", "video_id": "video11104", "sen_id": 202731}, {"caption": "a man explaining the mood in paris after tragedy", "video_id": "video11104", "sen_id": 202732}, {"caption": " probably in his thirties is depicting his view of the current situation in paris where he is at", "video_id": "video11104", "sen_id": 202733}, {"caption": "some people are sitting at an outdoor cafe", "video_id": "video11104", "sen_id": 202734}, {"caption": "a man is in paris talking about how the people on the street are acting normal", "video_id": "video11104", "sen_id": 202735}, {"caption": "a man on the street talking about the day after the paris attacks", "video_id": "video11104", "sen_id": 202736}, {"caption": "a man in a back jacket speaking about paris", "video_id": "video11104", "sen_id": 202737}, {"caption": "a man wearing a coat is talking while standing in the street", "video_id": "video11104", "sen_id": 202738}, {"caption": "some people are sitting in a paris cafe", "video_id": "video11104", "sen_id": 202739}, {"caption": "a video game plays in the background as a user and moderater argue about an infraction for offering hacks and mods", "video_id": "video10924", "sen_id": 202740}, {"caption": "a person describes and demonstrates a video game that they are playing", "video_id": "video10924", "sen_id": 202741}, {"caption": "vidio game of soldier running and shooting and guys talking", "video_id": "video10924", "sen_id": 202742}, {"caption": "a foul mouthed game player whines and threatens the moderator of an online game group", "video_id": "video10924", "sen_id": 202743}, {"caption": "a men are talking about their people on a video game", "video_id": "video10924", "sen_id": 202744}, {"caption": "a video game character runs around with a gun and shoots another", "video_id": "video10924", "sen_id": 202745}, {"caption": "there is a man running hard with a gun", "video_id": "video10924", "sen_id": 202746}, {"caption": "a person is playing a videogame and running around with a gun", "video_id": "video10924", "sen_id": 202747}, {"caption": "a cg solder runs around a tarmac looking for targets", "video_id": "video10924", "sen_id": 202748}, {"caption": "a video game in progress showing the player s shooting point of view while the player speaks about what is going on", "video_id": "video10924", "sen_id": 202749}, {"caption": "two speakers talk and illustrate how to play a video game", "video_id": "video10924", "sen_id": 202750}, {"caption": "the cartoon character is attack the big character and un their promoation video", "video_id": "video10924", "sen_id": 202751}, {"caption": "voiiceover of two people playing a video game", "video_id": "video10924", "sen_id": 202752}, {"caption": "two players discussing while playing a action shooting game", "video_id": "video10924", "sen_id": 202753}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video10924", "sen_id": 202754}, {"caption": "the gunman falling down and moving with gun to kill the enemies in video game", "video_id": "video10924", "sen_id": 202755}, {"caption": "animated shooting game the hero rushes to kill all the enemies", "video_id": "video10924", "sen_id": 202756}, {"caption": "some one is playing a video game on a screen", "video_id": "video10924", "sen_id": 202757}, {"caption": "a guy playing a army game while talking to the camera", "video_id": "video10924", "sen_id": 202758}, {"caption": "someone is playing a first person video game", "video_id": "video10924", "sen_id": 202759}, {"caption": "a woman riding on a horse through a fast food drive-thru", "video_id": "video10387", "sen_id": 202760}, {"caption": "a female on a horse orders food at a restaurant drive through", "video_id": "video10387", "sen_id": 202761}, {"caption": "a lady with long hair wearing a cowboy hat on a horse orders food at the drive thru window at a fast food restaurant place", "video_id": "video10387", "sen_id": 202762}, {"caption": "a lady that is riding on a pony is ordering coffee at a fast food restaurant", "video_id": "video10387", "sen_id": 202763}, {"caption": "a woman is ordering drive thru on a horse", "video_id": "video10387", "sen_id": 202764}, {"caption": "a woman on horseback at a restaurant drive thru window", "video_id": "video10387", "sen_id": 202765}, {"caption": "a female riding a horse is makeing an order of drinks at the drive through menu of a fast food restaurant", "video_id": "video10387", "sen_id": 202766}, {"caption": "a cowgirl rides a horse through a coffee house drive through", "video_id": "video10387", "sen_id": 202767}, {"caption": "a female with a white shirt and hat is on a horse placing an order at a drive thru", "video_id": "video10387", "sen_id": 202768}, {"caption": "a woman with a white shirt and cowboy hat is riding her horse through the drive through of a restaurant", "video_id": "video10387", "sen_id": 202769}, {"caption": "a girl in white dress wearing color cloth hat upon head sitting in brown color horse speaking displaying on screen", "video_id": "video10387", "sen_id": 202770}, {"caption": "a white t shirt woman sitting on a horse by the roadside", "video_id": "video10387", "sen_id": 202771}, {"caption": "a lady on a horse places an order for tai chi tea at a drive through restaurant", "video_id": "video10387", "sen_id": 202772}, {"caption": "a woman on a horse ordering at a drive threw window", "video_id": "video10387", "sen_id": 202773}, {"caption": "a girl mounted on her horse calmly dictates her orders to the attendant of a street facing shop", "video_id": "video10387", "sen_id": 202774}, {"caption": "there are people going through a drive thru on horses", "video_id": "video10387", "sen_id": 202775}, {"caption": "a lady in a cowboy hat sits upon her horse ordering food from an outside menu", "video_id": "video10387", "sen_id": 202776}, {"caption": "a lady with hat sits on the horseback and talking to someone", "video_id": "video10387", "sen_id": 202777}, {"caption": "a woman wearing a cowboy hat sitting on a horse s back in a western riding saddle she is at a drive up ordering her choices from the menu", "video_id": "video10387", "sen_id": 202778}, {"caption": "a woman is sitting on a horse and placing a takeaway order", "video_id": "video10387", "sen_id": 202779}, {"caption": "a group of runners out on the track racing each other", "video_id": "video11068", "sen_id": 202780}, {"caption": "a track with six men running and one man tripping and falling", "video_id": "video11068", "sen_id": 202781}, {"caption": "a man running track breaks his leg and falls onto the track", "video_id": "video11068", "sen_id": 202782}, {"caption": "man runs on a track in a competition and falls", "video_id": "video11068", "sen_id": 202783}, {"caption": "a leg race between 8 men with one falling at the end of the race", "video_id": "video11068", "sen_id": 202784}, {"caption": "the players running on the ground and the red dress player slipped down on the ground", "video_id": "video11068", "sen_id": 202785}, {"caption": "men run in slow motion towards the finish line to show the fall of the last place finisher", "video_id": "video11068", "sen_id": 202786}, {"caption": "six players are running and one is fallen on the road", "video_id": "video11068", "sen_id": 202787}, {"caption": "a foot race of runners on a track and one runner falls down", "video_id": "video11068", "sen_id": 202788}, {"caption": "man in red shirt is falling on the floor and got injured", "video_id": "video11068", "sen_id": 202789}, {"caption": "there is a athlete falling down in a track", "video_id": "video11068", "sen_id": 202790}, {"caption": "six men are racing on a track when one slips and falls", "video_id": "video11068", "sen_id": 202791}, {"caption": "people at track lanes runningone person fell somebody was talking over a loudspeaker", "video_id": "video11068", "sen_id": 202792}, {"caption": "six athletes are running hard to win a medal out of that one athlete leg got some issue he felt on track", "video_id": "video11068", "sen_id": 202793}, {"caption": "a race on a track with several men where one falls while he s running", "video_id": "video11068", "sen_id": 202794}, {"caption": "there is a man falling down while running", "video_id": "video11068", "sen_id": 202795}, {"caption": "players aare running on the ground", "video_id": "video11068", "sen_id": 202796}, {"caption": "a runner finshes the line and fell off the ground and broke his leg", "video_id": "video11068", "sen_id": 202797}, {"caption": "there are seven runners competing in a race and one falls", "video_id": "video11068", "sen_id": 202798}, {"caption": "some sprinters are running against each other", "video_id": "video11068", "sen_id": 202799}, {"caption": "two men are driving through slow moving traffic and talking", "video_id": "video11316", "sen_id": 202800}, {"caption": "a man is telling jokes to his friend and making him laugh while they drive in traffic", "video_id": "video11316", "sen_id": 202801}, {"caption": "a man is watching the traffic in front of him and talking to his friend driving the car", "video_id": "video11316", "sen_id": 202802}, {"caption": "a man drives in heavy traffic on a major highway", "video_id": "video11316", "sen_id": 202803}, {"caption": "some trucks are moving slowly in traffic and a man makes a sad face", "video_id": "video11316", "sen_id": 202804}, {"caption": "there is a man driving a car with a man", "video_id": "video11316", "sen_id": 202805}, {"caption": "a man is driving through heavy traffic and talking to his friend", "video_id": "video11316", "sen_id": 202806}, {"caption": "two brazilian men are filming themselves in traffic", "video_id": "video11316", "sen_id": 202807}, {"caption": "man is carefully driving his car in the rush hour", "video_id": "video11316", "sen_id": 202808}, {"caption": "two men are driving in a car on a crowded freeway with other cars and a line of large container trucks to the right of them", "video_id": "video11316", "sen_id": 202809}, {"caption": "a man talks whil he drives in traffic on a highway", "video_id": "video11316", "sen_id": 202810}, {"caption": "a man is unhappy about his experience of driving in thick traffic but then he laughs", "video_id": "video11316", "sen_id": 202811}, {"caption": "a man sets in heavy traffic on a large road filled with cars and trucks", "video_id": "video11316", "sen_id": 202812}, {"caption": "a man in a dark shirt is driving in heavy traffic", "video_id": "video11316", "sen_id": 202813}, {"caption": "a man driving his car through traffic", "video_id": "video11316", "sen_id": 202814}, {"caption": "two men driving on a busy freeway surrounded by cars", "video_id": "video11316", "sen_id": 202815}, {"caption": "a driver changes mood on a slow and crowded highway toward an overpass next to commercial box trucks sport utility vehicles", "video_id": "video11316", "sen_id": 202816}, {"caption": "a foreign speaking male driver is frowning while he passes several large white tanker trucks in heavy traffic", "video_id": "video11316", "sen_id": 202817}, {"caption": "a man in a car shows frustration with traffic on a highway while speaking in a foreign language", "video_id": "video11316", "sen_id": 202818}, {"caption": "a man driving in heavy traffic while the passenger films and talks about it", "video_id": "video11316", "sen_id": 202819}, {"caption": "a grey school building is flagged with hard work $$$ status while fun and games is flagged as easy and immediate where a person marked as offspring gets large benefits from school but small benefits from fun and games", "video_id": "video12163", "sen_id": 202820}, {"caption": "children's signs flash against a white background as an orange present arrives", "video_id": "video12163", "sen_id": 202821}, {"caption": "a street sign with appearing signes for hard work through success", "video_id": "video12163", "sen_id": 202822}, {"caption": "a presentation for school is being shown in clip art", "video_id": "video12163", "sen_id": 202823}, {"caption": "the street signs are blinking and then a box with a bow appears", "video_id": "video12163", "sen_id": 202824}, {"caption": "a silent informative video about life choices and their consequences", "video_id": "video12163", "sen_id": 202825}, {"caption": "a door words and some lighted up icons", "video_id": "video12163", "sen_id": 202826}, {"caption": "a kids show about choice and consequence using education and play as examples", "video_id": "video12163", "sen_id": 202827}, {"caption": "an animation of a sign post and several gifts with the world fun above", "video_id": "video12163", "sen_id": 202828}, {"caption": "a advertisement about the fun games for the kids", "video_id": "video12163", "sen_id": 202829}, {"caption": "display of a fun game with image elements", "video_id": "video12163", "sen_id": 202830}, {"caption": "an advertisement about school and the curriculum they include in the subjects are given", "video_id": "video12163", "sen_id": 202831}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video12163", "sen_id": 202832}, {"caption": "a representation of a family and social layout with a seperatio between school and games", "video_id": "video12163", "sen_id": 202833}, {"caption": "this tells us about the choices we wanted to do in life a path to success", "video_id": "video12163", "sen_id": 202834}, {"caption": "animated characters are movingmoving and playing in a beautiful place", "video_id": "video12163", "sen_id": 202835}, {"caption": "a school s best qualities is put on display", "video_id": "video12163", "sen_id": 202836}, {"caption": "a tall grey building with windows represents years of effort leading to a secure future and is compared to a red booth symbolizing activities bringing instant and short-lived gratification", "video_id": "video12163", "sen_id": 202837}, {"caption": "a school door sits to the left of a banner advertising fun and a bottle of vodka", "video_id": "video12163", "sen_id": 202838}, {"caption": "some coloredful images are being shown to people", "video_id": "video12163", "sen_id": 202839}, {"caption": "a man is holding a small dog while someone pets it", "video_id": "video10522", "sen_id": 202840}, {"caption": "a man is outside on the street at night holding a dog and a monkey while onlookers are petting the animals", "video_id": "video10522", "sen_id": 202841}, {"caption": "a man holding two small puppies and letting people in a small crowd pet them", "video_id": "video10522", "sen_id": 202842}, {"caption": "a man is letting strangers pet his monkey and dog", "video_id": "video10522", "sen_id": 202843}, {"caption": "an asian man holds a cat that other people are petting", "video_id": "video10522", "sen_id": 202844}, {"caption": "a crowd gathered together to pet a monkey and a dog being held in a man's arms", "video_id": "video10522", "sen_id": 202845}, {"caption": "an asian man holds a puppy and a monkey while people gather on a street", "video_id": "video10522", "sen_id": 202846}, {"caption": "a man holding a monkey and a small dog draws a crowd on a street", "video_id": "video10522", "sen_id": 202847}, {"caption": "a man holding a small monkey and a small dog allowing another person to pet them while four other people watch", "video_id": "video10522", "sen_id": 202848}, {"caption": "an asian man holds a pet monkey and a puppy on a street", "video_id": "video10522", "sen_id": 202849}, {"caption": "a man is holding a puppy and a monkey and other people are petting them", "video_id": "video10522", "sen_id": 202850}, {"caption": "a man with a pet is out on the street speaking with others", "video_id": "video10522", "sen_id": 202851}, {"caption": "several asian people are petting a brown dog while talking", "video_id": "video10522", "sen_id": 202852}, {"caption": "a man is holding his pet monkeys and a crowd is forming around him as they watch and pet the monkeys", "video_id": "video10522", "sen_id": 202853}, {"caption": "a man holding animals while someone else is petting them", "video_id": "video10522", "sen_id": 202854}, {"caption": "a men is pulling hores with rope and other person who was sitting fell down", "video_id": "video10522", "sen_id": 202855}, {"caption": "guy holding little puppy in his hands", "video_id": "video10522", "sen_id": 202856}, {"caption": "asian people gathered around a man holding and petting a dog", "video_id": "video10522", "sen_id": 202857}, {"caption": "asian guy showing his dog and feeding him as he is talking to the camera", "video_id": "video10522", "sen_id": 202858}, {"caption": "some people are wandering a busy street", "video_id": "video10522", "sen_id": 202859}, {"caption": "man near crowd holding a child and then dancing around to piano music", "video_id": "video12225", "sen_id": 202860}, {"caption": "classical music plays over a video of a man lifting and dancing with and later without a toddler out in public", "video_id": "video12225", "sen_id": 202861}, {"caption": "a man whirls a tiny baby in the air outside in public", "video_id": "video12225", "sen_id": 202862}, {"caption": "a man on roller skates spins around while holding a small child", "video_id": "video12225", "sen_id": 202863}, {"caption": "a man with brown hair twirls with a baby in his arms", "video_id": "video12225", "sen_id": 202864}, {"caption": "a father lifting his child up in the air", "video_id": "video12225", "sen_id": 202865}, {"caption": "a man in a grey jacket is spinning around holding a child", "video_id": "video12225", "sen_id": 202866}, {"caption": "a person in grey shirt is in joyous mood a she is playing with his kid", "video_id": "video12225", "sen_id": 202867}, {"caption": "a musical montage is shown with people dancing with a baby", "video_id": "video12225", "sen_id": 202868}, {"caption": "the young man looking so happy and he express it by dancing", "video_id": "video12225", "sen_id": 202869}, {"caption": "a man with a bandana with dancing with his baby outside", "video_id": "video12225", "sen_id": 202870}, {"caption": "a man doing some tricks on skateboard with a boy", "video_id": "video12225", "sen_id": 202871}, {"caption": "a street dancer performing his skills on the street", "video_id": "video12225", "sen_id": 202872}, {"caption": "one father and his child is make fun in road", "video_id": "video12225", "sen_id": 202873}, {"caption": "some peoples are waiting on a stop and a man showing his dance", "video_id": "video12225", "sen_id": 202874}, {"caption": "a person with long hair on skates carrying the baby at park", "video_id": "video12225", "sen_id": 202875}, {"caption": "a street performer performing a dance while the onlooker stands by and watch him performing", "video_id": "video12225", "sen_id": 202876}, {"caption": "one man play fun with his child in street", "video_id": "video12225", "sen_id": 202877}, {"caption": "a young man holding up a baby in the air while music is playing in the background", "video_id": "video12225", "sen_id": 202878}, {"caption": "a guy with long hair is swinging a baby around", "video_id": "video12225", "sen_id": 202879}, {"caption": "this is a review of lumenis showing the range of motion in a person's hand", "video_id": "video10637", "sen_id": 202880}, {"caption": "a man in a suit discusses the treatment of a burn victim", "video_id": "video10637", "sen_id": 202881}, {"caption": "a doctor talks about a new process for helping wounded soldiers", "video_id": "video10637", "sen_id": 202882}, {"caption": "a man wearing a black shirt and talking about lumenis", "video_id": "video10637", "sen_id": 202883}, {"caption": "a man with a microphone talks about burn scars on wounded warriors", "video_id": "video10637", "sen_id": 202884}, {"caption": "a person talking in a lecture hall and showing slides of a hand", "video_id": "video10637", "sen_id": 202885}, {"caption": "a man reading and explaining the information", "video_id": "video10637", "sen_id": 202886}, {"caption": "a man explain about a treatment of lumenis", "video_id": "video10637", "sen_id": 202887}, {"caption": "a male doctor shows pictures of burn victims who have undergone treatment with him", "video_id": "video10637", "sen_id": 202888}, {"caption": "a doctor speaking on the results of a procedure on a wounded warriors wrist", "video_id": "video10637", "sen_id": 202889}, {"caption": "a man giving a lecture with photos about burn scars on wounded warriors", "video_id": "video10637", "sen_id": 202890}, {"caption": "a mam is on the screen ia talking", "video_id": "video10637", "sen_id": 202891}, {"caption": "we see a mans hand on one side of the screen and a doctor explaining a procedure on the other side of the screen", "video_id": "video10637", "sen_id": 202892}, {"caption": "a man in television screen speaking standing in black coat wearing color and hand displaying on screen", "video_id": "video10637", "sen_id": 202893}, {"caption": "a man in a suit is discussing range of motion both before and after treatment", "video_id": "video10637", "sen_id": 202894}, {"caption": "a black suit man with specs talking from a hall", "video_id": "video10637", "sen_id": 202895}, {"caption": "a doctor at the naval medical center shows the burn scars of a wounded warrior while discussing his successful treatment", "video_id": "video10637", "sen_id": 202896}, {"caption": "a man in a black suit speaks and points to a screen with a hand", "video_id": "video10637", "sen_id": 202897}, {"caption": "a man with a headset presents the change in a wrist injury of a wounded warrior", "video_id": "video10637", "sen_id": 202898}, {"caption": "a man in a suit talking about a hand and the range of movement", "video_id": "video10637", "sen_id": 202899}, {"caption": "a man is explaining databases and sql functions for java", "video_id": "video11207", "sen_id": 202900}, {"caption": "a middle-aged man speaks in front of twirling curves while a little green robot swipes corresponding text screens", "video_id": "video11207", "sen_id": 202901}, {"caption": "a green android robot moving his hand onto a tablet screen and every time he moves his hand the screen transitions", "video_id": "video11207", "sen_id": 202902}, {"caption": "a green robot swipes a screen showing technical text reflecting the words being spoken by a man wearing a gray pullover sweater", "video_id": "video11207", "sen_id": 202903}, {"caption": "a man uses an android to explain his presentation of data", "video_id": "video11207", "sen_id": 202904}, {"caption": "a man is talking then the scene changes to a green robot guy standing next to a prompter that is going through a slide show", "video_id": "video11207", "sen_id": 202905}, {"caption": "this man is speaking about mobile data and how to store this data", "video_id": "video11207", "sen_id": 202906}, {"caption": "a man with a grey vest on describes how to use an android application", "video_id": "video11207", "sen_id": 202907}, {"caption": "a android touching the screen of an android tablet", "video_id": "video11207", "sen_id": 202908}, {"caption": "a man is talking about communicating with a cloud for http", "video_id": "video11207", "sen_id": 202909}, {"caption": "a man begins talking about data storage in the cloud", "video_id": "video11207", "sen_id": 202910}, {"caption": "a man talking and a android icon touching the screen of a tablet", "video_id": "video11207", "sen_id": 202911}, {"caption": "a guy is talking about three major components of information technologies architecture from clouds using http server-side using servlet to scalable storage using nosql", "video_id": "video11207", "sen_id": 202912}, {"caption": "a man which then switches to a tablet which has words on it next to an animated graphic of the android logo", "video_id": "video11207", "sen_id": 202913}, {"caption": "a graphic showing a white male with brown hair explaining cell phone usage with the help of a green animated robot", "video_id": "video11207", "sen_id": 202914}, {"caption": "a robot is changing the screen one by one", "video_id": "video11207", "sen_id": 202915}, {"caption": "talkiung about many different ways of handling user data", "video_id": "video11207", "sen_id": 202916}, {"caption": "a man describes the advantages of a software system for data storage while some slides are presented", "video_id": "video11207", "sen_id": 202917}, {"caption": "a man in blue dress cloth wearing speaking computer screen displaying software regarding data storage displaying on screen", "video_id": "video11207", "sen_id": 202918}, {"caption": "man describing some sort of technical procedure with the help of and animated droid", "video_id": "video11207", "sen_id": 202919}, {"caption": "two volleyball teams versing each other right across the court", "video_id": "video10442", "sen_id": 202920}, {"caption": "a men's volleyball match is underway in an indoor arena", "video_id": "video10442", "sen_id": 202921}, {"caption": "men wearing blue and red team uniforms hit a yellow ball over a volley ball net", "video_id": "video10442", "sen_id": 202922}, {"caption": "scenes from men's volleyball games run in slow motion", "video_id": "video10442", "sen_id": 202923}, {"caption": "men volleyball players are competing in a match", "video_id": "video10442", "sen_id": 202924}, {"caption": "two volleyball teams duke it out on a beige volleyball court as spectators look on", "video_id": "video10442", "sen_id": 202925}, {"caption": "two teams play a gam of volleyball inside a gym both teams are man with jerseys", "video_id": "video10442", "sen_id": 202926}, {"caption": "two teams are playing volleyball against each other on an indoor court", "video_id": "video10442", "sen_id": 202927}, {"caption": "men wearing blue uniforms are playing volleyball together", "video_id": "video10442", "sen_id": 202928}, {"caption": "slow motion clips of two teams of men playing volleyball", "video_id": "video10442", "sen_id": 202929}, {"caption": "highlights from mens volleyball matches are shown including men spiking the volleyball", "video_id": "video10442", "sen_id": 202930}, {"caption": "two volley ball teams play a match in a large indoor stadium", "video_id": "video10442", "sen_id": 202931}, {"caption": "volleyball players are jumping high to try and score the winning point", "video_id": "video10442", "sen_id": 202932}, {"caption": "volley ball players hitting a ball over a net multiple times", "video_id": "video10442", "sen_id": 202933}, {"caption": "bunch of volleyball players in blue and red jersey s playing against each other in a match", "video_id": "video10442", "sen_id": 202934}, {"caption": "indoor volleyball match highlights showing different good plays between teams", "video_id": "video10442", "sen_id": 202935}, {"caption": "amazing display of smashes and shots during a volleyball match being played between two teams in an indoor stadium", "video_id": "video10442", "sen_id": 202936}, {"caption": "two men s team are playing volley ball at an indoor stadium filled with lots of fans", "video_id": "video10442", "sen_id": 202937}, {"caption": "a collage of competitive volleyball games teams blue vs white and red vs blue", "video_id": "video10442", "sen_id": 202938}, {"caption": "some girls are playing volleyball against each other", "video_id": "video10442", "sen_id": 202939}, {"caption": "a man is reporting the news about a woman who may have committed suicide", "video_id": "video10601", "sen_id": 202940}, {"caption": "reporter speaks about a woman who died and the autopsy results from her body", "video_id": "video10601", "sen_id": 202941}, {"caption": "a news anchor discusses the autopsy of sandra bland", "video_id": "video10601", "sen_id": 202942}, {"caption": "a news anchor talks about a recent news story involving a black woman", "video_id": "video10601", "sen_id": 202943}, {"caption": "a man with a black suit talking about a prisoner", "video_id": "video10601", "sen_id": 202944}, {"caption": "there is an anchorman discussing a news story with an image of an african american woman on the left and a digital american flag waving on a set of multiple screens behind the anchorman", "video_id": "video10601", "sen_id": 202945}, {"caption": "there is a suit man talking in front of graphics", "video_id": "video10601", "sen_id": 202946}, {"caption": "news person explains the news about a lady shown in the corner of the screen", "video_id": "video10601", "sen_id": 202947}, {"caption": "a man with the inner shirt blue color talks in the tv show about the girl", "video_id": "video10601", "sen_id": 202948}, {"caption": "a man is talking about a criminal woman", "video_id": "video10601", "sen_id": 202949}, {"caption": "a newsman is talking about the evidence in the death of a black woman", "video_id": "video10601", "sen_id": 202950}, {"caption": "a anchor man sitting at a desk reporting a story", "video_id": "video10601", "sen_id": 202951}, {"caption": "a man wearing a suit is reading the news", "video_id": "video10601", "sen_id": 202952}, {"caption": "a news host wearing suit jacket discusses an investigation of ongoing murder case", "video_id": "video10601", "sen_id": 202953}, {"caption": "a man is talking about a dead woman", "video_id": "video10601", "sen_id": 202954}, {"caption": "a man in black suit reading a news in front of the camera", "video_id": "video10601", "sen_id": 202955}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10601", "sen_id": 202956}, {"caption": "a man with a terrible fake tan gives a news report about a prisoner", "video_id": "video10601", "sen_id": 202957}, {"caption": "a old man in blue color dress wearing speaking and still image of girl picture displaying on screen", "video_id": "video10601", "sen_id": 202958}, {"caption": "a man on tv is talking about a woman", "video_id": "video10601", "sen_id": 202959}, {"caption": "a person is doing a movie review on the movie oru vadakkan", "video_id": "video12268", "sen_id": 202960}, {"caption": "two guys giving a review on a movie trailer they are viewing", "video_id": "video12268", "sen_id": 202961}, {"caption": "two african american men set up their video of trailer reactions", "video_id": "video12268", "sen_id": 202962}, {"caption": "a visualtization of text and two males speaking and sitting side by side", "video_id": "video12268", "sen_id": 202963}, {"caption": "a pair of young men talk about some movies they have recently viewed", "video_id": "video12268", "sen_id": 202964}, {"caption": "the globe is rotating and communication media is displayed along with which two boys are talking", "video_id": "video12268", "sen_id": 202965}, {"caption": "the men sit in the chair in front of a white board and talk to each other", "video_id": "video12268", "sen_id": 202966}, {"caption": "push the entertainmentits trailor reaction the boys are having the black hair", "video_id": "video12268", "sen_id": 202967}, {"caption": "an advertisement about a movie trailer is being shown and two youngsters are campainig the show", "video_id": "video12268", "sen_id": 202968}, {"caption": "two men are wearing jacket and black tshirt and reviewing a movie", "video_id": "video12268", "sen_id": 202969}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12268", "sen_id": 202970}, {"caption": "a selfie trailer is playing in the you tube", "video_id": "video12268", "sen_id": 202971}, {"caption": "two young men in black dresses are expressing their reaction about a movie from malayalam", "video_id": "video12268", "sen_id": 202972}, {"caption": "two bearded black guys in black tshirt talking to the camera", "video_id": "video12268", "sen_id": 202973}, {"caption": "some black men are looking at a lap top", "video_id": "video12268", "sen_id": 202974}, {"caption": "a globe shows prior to social media logos and 2 men speaking", "video_id": "video12268", "sen_id": 202975}, {"caption": "two african men discuss their reactions to a movie trailer", "video_id": "video12268", "sen_id": 202976}, {"caption": "two black guys non american sitting down talking about a movie", "video_id": "video12268", "sen_id": 202977}, {"caption": "two african guys are talking and hosting a show", "video_id": "video12268", "sen_id": 202978}, {"caption": "two men are sitting down and talking", "video_id": "video12268", "sen_id": 202979}, {"caption": "a woman on a talk show talks about being excited for her next guest", "video_id": "video12602", "sen_id": 202980}, {"caption": "ellen degeneres stands in front of a blue screen introducing her show then a picture of kim kardashian is shown as ellen says she is there that today", "video_id": "video12602", "sen_id": 202981}, {"caption": "ellen is giving the opening monologue before the start of one of her talk shows", "video_id": "video12602", "sen_id": 202982}, {"caption": "ellen degeneres talking during the beginning of her show and introducing who will be on the show kim kardashian-west", "video_id": "video12602", "sen_id": 202983}, {"caption": "a show host is welcoming people to her show", "video_id": "video12602", "sen_id": 202984}, {"caption": "a short haired woman introducing her show to her audience", "video_id": "video12602", "sen_id": 202985}, {"caption": "ellen talking about her guest to her studio audience", "video_id": "video12602", "sen_id": 202986}, {"caption": "a blonde headed man performs on a stage in front of a set of tv screens", "video_id": "video12602", "sen_id": 202987}, {"caption": "ellen starting off her daily show letting the audience know that kim kardasian west will be on the show", "video_id": "video12602", "sen_id": 202988}, {"caption": "a talk show host talks to the audience and shows pictures of a lady on a tv screen", "video_id": "video12602", "sen_id": 202989}, {"caption": "ellen greets her audience with jokes and shows her guest to be kim kardashian", "video_id": "video12602", "sen_id": 202990}, {"caption": "the most famous tv show invited actress in elen show", "video_id": "video12602", "sen_id": 202991}, {"caption": "ellen degeneres welcomes the audience to her show tells a joke and talks about her guest kim kardashian", "video_id": "video12602", "sen_id": 202992}, {"caption": "the celebrity talk show hostess ellen is speaking very happily on television", "video_id": "video12602", "sen_id": 202993}, {"caption": "a woman in all black standing up talking and showing a photo of another woman", "video_id": "video12602", "sen_id": 202994}, {"caption": "an anchor performing in a reality show", "video_id": "video12602", "sen_id": 202995}, {"caption": "a portion of the ellen degeneres tv program is shown previewing an appearance by kim kardashian", "video_id": "video12602", "sen_id": 202996}, {"caption": "a old lady in black color dress wearing cloth discusing on topic audience shouting claping hands laughing still image on screen", "video_id": "video12602", "sen_id": 202997}, {"caption": "ellen degeneres talking about the guests she is having on here show", "video_id": "video12602", "sen_id": 202998}, {"caption": "a woman on tv is talking about something", "video_id": "video12602", "sen_id": 202999}, {"caption": "woman singing in music video with other people doing choreography", "video_id": "video10917", "sen_id": 203000}, {"caption": "mariah carey performs for a video of one of her songs", "video_id": "video10917", "sen_id": 203001}, {"caption": "maria carey music video from when she was younger", "video_id": "video10917", "sen_id": 203002}, {"caption": "mariah carey singing and dancing in a black dress", "video_id": "video10917", "sen_id": 203003}, {"caption": "an older woman wearing black lingerie sings and dances in a big room", "video_id": "video10917", "sen_id": 203004}, {"caption": "a woman mving around and singing", "video_id": "video10917", "sen_id": 203005}, {"caption": "a woman in black is singing a song with a group of people playing music", "video_id": "video10917", "sen_id": 203006}, {"caption": "an older woman in a black dress sings and dances in various locations", "video_id": "video10917", "sen_id": 203007}, {"caption": "a woman is singing some very high notes and dancing", "video_id": "video10917", "sen_id": 203008}, {"caption": "mariah carey hits a high note while spinning around", "video_id": "video10917", "sen_id": 203009}, {"caption": "an older woman wearing a short black dress sings and dances in various locations", "video_id": "video10917", "sen_id": 203010}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video10917", "sen_id": 203011}, {"caption": "one beautiful hot sexy women singing and dancing", "video_id": "video10917", "sen_id": 203012}, {"caption": "a girl looks out the mirror wearing a long dress", "video_id": "video10917", "sen_id": 203013}, {"caption": "a beautiful music album performed by the great shakira", "video_id": "video10917", "sen_id": 203014}, {"caption": "a girl in sleeveless black dress dancing for a song with some other people", "video_id": "video10917", "sen_id": 203015}, {"caption": "women dancing and singing song in a group", "video_id": "video10917", "sen_id": 203016}, {"caption": "a people were dancing for a music song", "video_id": "video10917", "sen_id": 203017}, {"caption": "women wearing a black dress sing & dancing", "video_id": "video10917", "sen_id": 203018}, {"caption": "sexy singer dancing and singing in her music video", "video_id": "video10917", "sen_id": 203019}, {"caption": "groups of people enjoying themselves in their daily lives", "video_id": "video10123", "sen_id": 203020}, {"caption": "a slideshow of several asians in various walks of life", "video_id": "video10123", "sen_id": 203021}, {"caption": "a slide show of young people laughing and smiling", "video_id": "video10123", "sen_id": 203022}, {"caption": "three girls are holding brooms in a laundry while one of them is sitting in a shopping cart", "video_id": "video10123", "sen_id": 203023}, {"caption": "two young people work together washing dishes in a restaurant kitchen", "video_id": "video10123", "sen_id": 203024}, {"caption": "there is a slideshow of random working class people", "video_id": "video10123", "sen_id": 203025}, {"caption": "photos of people in the kitchen and a laundry room are appearing", "video_id": "video10123", "sen_id": 203026}, {"caption": "men and women chef s standing near the table where the food items kept", "video_id": "video10123", "sen_id": 203027}, {"caption": "photo compilation of businesses and happy employees enjoying working", "video_id": "video10123", "sen_id": 203028}, {"caption": "a photo slideshow of different people doing different activities", "video_id": "video10123", "sen_id": 203029}, {"caption": "there are some sheaf s posing for a photo", "video_id": "video10123", "sen_id": 203030}, {"caption": "a exploration about some places and the peoples", "video_id": "video10123", "sen_id": 203031}, {"caption": "there are a lot of different pictures in many settings", "video_id": "video10123", "sen_id": 203032}, {"caption": "a slideshow showing members working happily in a kitchen environment", "video_id": "video10123", "sen_id": 203033}, {"caption": "a man is standing inside of a building at school", "video_id": "video10123", "sen_id": 203034}, {"caption": "slides show a smiling asian woman living an ordinary life", "video_id": "video10123", "sen_id": 203035}, {"caption": "a collage of pictures from ones of the business establishments", "video_id": "video10123", "sen_id": 203036}, {"caption": "various workers in different blue collar working positions", "video_id": "video10123", "sen_id": 203037}, {"caption": "a person is explaining about different product through video recording", "video_id": "video10123", "sen_id": 203038}, {"caption": "some pictures are floating around a space", "video_id": "video10123", "sen_id": 203039}, {"caption": "someone is playing a video game holding a gun running around", "video_id": "video12347", "sen_id": 203040}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video12347", "sen_id": 203041}, {"caption": "an adult movie with aliens using vulgar language", "video_id": "video12347", "sen_id": 203042}, {"caption": "a character holds a gun and runs around in a first person shooter game with words running on the bottom of the screen", "video_id": "video12347", "sen_id": 203043}, {"caption": "two men are playing a first person shooter game and talking trash to each other", "video_id": "video12347", "sen_id": 203044}, {"caption": "someone playing a shooting video game with words being displayed as they play", "video_id": "video12347", "sen_id": 203045}, {"caption": "a man is making homophobic insults to players of an online video game", "video_id": "video12347", "sen_id": 203046}, {"caption": "a man is making fun of another man while playing black ops 3", "video_id": "video12347", "sen_id": 203047}, {"caption": "two men talking over a first person shooter game", "video_id": "video12347", "sen_id": 203048}, {"caption": "a character holding a futistic gun walking around a complex", "video_id": "video12347", "sen_id": 203049}, {"caption": "a man playing a game called call of duty and talking nasty verbal talk", "video_id": "video12347", "sen_id": 203050}, {"caption": " a video game character is running around a snow ridden map the character seems to have some sort of gun in their hand", "video_id": "video12347", "sen_id": 203051}, {"caption": "a few guys playing a video games and talking about dicks", "video_id": "video12347", "sen_id": 203052}, {"caption": "a gamer pointing a gun and looking for enemies and shouting bad words", "video_id": "video12347", "sen_id": 203053}, {"caption": "a man commentating while playing game", "video_id": "video12347", "sen_id": 203054}, {"caption": "someone is playing a first person video game", "video_id": "video12347", "sen_id": 203055}, {"caption": "some kids are playing a game and talking about immature things and they are laughing hard", "video_id": "video12347", "sen_id": 203056}, {"caption": "an animated cartoon character aiming the gun to shoot", "video_id": "video12347", "sen_id": 203057}, {"caption": "person is going with weapon to kill his weapons", "video_id": "video12347", "sen_id": 203058}, {"caption": "player playing video game trying to get more points", "video_id": "video12347", "sen_id": 203059}, {"caption": "a woman displaying how she puts mascara on", "video_id": "video11189", "sen_id": 203060}, {"caption": "a woman showing how to correctly put on makeup", "video_id": "video11189", "sen_id": 203061}, {"caption": "a white woman with dark brown hair is talking while she is putting on mascara", "video_id": "video11189", "sen_id": 203062}, {"caption": "a woman is showing us how to put on massacre makeup", "video_id": "video11189", "sen_id": 203063}, {"caption": "an auburn haired woman applies mascara and curls her lashes", "video_id": "video11189", "sen_id": 203064}, {"caption": "woman shows how she curls her lashes and then applies mascara", "video_id": "video11189", "sen_id": 203065}, {"caption": "a woman giving a mascara tutorial for lancome", "video_id": "video11189", "sen_id": 203066}, {"caption": "a woman with dark hair demonstrates applying eye makeup", "video_id": "video11189", "sen_id": 203067}, {"caption": "a woman in black is applying mascara to her eyes", "video_id": "video11189", "sen_id": 203068}, {"caption": "a woman wearing a black shirt doing her eyelashes", "video_id": "video11189", "sen_id": 203069}, {"caption": "a young woman applies mascara and curl her eyelashes and discusses techniques", "video_id": "video11189", "sen_id": 203070}, {"caption": "a woman demonstrating how to put mascra on her eye lashes", "video_id": "video11189", "sen_id": 203071}, {"caption": "a woman is applying mascara to her eye lashes while speaking about techniques", "video_id": "video11189", "sen_id": 203072}, {"caption": "a girl wearing black dress doing something on her eye brow", "video_id": "video11189", "sen_id": 203073}, {"caption": "a woman curling her eyelashes and applying mascara afterward", "video_id": "video11189", "sen_id": 203074}, {"caption": "a woman showing how to apply mascara correctly", "video_id": "video11189", "sen_id": 203075}, {"caption": "the beautiful telling their makeup features and their eyes and mascra their cheks and eyes are superb", "video_id": "video11189", "sen_id": 203076}, {"caption": "an actress is demonstrating how to use lancome mascara properly to get the desired lash look", "video_id": "video11189", "sen_id": 203077}, {"caption": "a woman demonstrating putting on a lot of mascara", "video_id": "video11189", "sen_id": 203078}, {"caption": "a woman curls her eyebrows and applies mascara to her brows", "video_id": "video11189", "sen_id": 203079}, {"caption": "a car in a video game is driving thru the desert", "video_id": "video12907", "sen_id": 203080}, {"caption": "a black truck is driving very fast over a sandy area", "video_id": "video12907", "sen_id": 203081}, {"caption": "a video game truck speeding through a dirt road", "video_id": "video12907", "sen_id": 203082}, {"caption": "a man speaking and explaining how to play a racing video game", "video_id": "video12907", "sen_id": 203083}, {"caption": "a man is playing a racing car video game and talking to the screen", "video_id": "video12907", "sen_id": 203084}, {"caption": "a clip from a racing game where people shoot at you", "video_id": "video12907", "sen_id": 203085}, {"caption": "an animate car drivers over desert terrain as the player offers commentary", "video_id": "video12907", "sen_id": 203086}, {"caption": "the truck drives on the course and gets airborne", "video_id": "video12907", "sen_id": 203087}, {"caption": "a person demonstrates and describes a video game that they are playing", "video_id": "video12907", "sen_id": 203088}, {"caption": "game play of a racing video game is shown while a man speaks over the footage in a foreign language", "video_id": "video12907", "sen_id": 203089}, {"caption": "a car is being driven on a game course and picking up several power ups along the way", "video_id": "video12907", "sen_id": 203090}, {"caption": "video game footage of a car racing game in challenge mode", "video_id": "video12907", "sen_id": 203091}, {"caption": "a guy speaking in a foreign language talks as he plays a videogame", "video_id": "video12907", "sen_id": 203092}, {"caption": "a person speaks over a game play of a rally truck racing game", "video_id": "video12907", "sen_id": 203093}, {"caption": "a guy can be heard talking while playing a video game", "video_id": "video12907", "sen_id": 203094}, {"caption": "a car is racing through the desert in a video game as the driver collects powerups", "video_id": "video12907", "sen_id": 203095}, {"caption": "a truck driving through canyon being shot at", "video_id": "video12907", "sen_id": 203096}, {"caption": "a car is moving on a sandy road and a man is talking", "video_id": "video12907", "sen_id": 203097}, {"caption": "a racing video game is being played on a desert course", "video_id": "video12907", "sen_id": 203098}, {"caption": "someone is playing a first person video game", "video_id": "video12907", "sen_id": 203099}, {"caption": "megyn kelly while working at fox news reporting and interviewing a news story with dr ben carson during the primaries of the 2016 presidential election", "video_id": "video10389", "sen_id": 203100}, {"caption": "a group of men appear on a debate stage together", "video_id": "video10389", "sen_id": 203101}, {"caption": "a woman with blonde hair is giving a news cast about the election", "video_id": "video10389", "sen_id": 203102}, {"caption": "a news anchor segues into an introduction of ben carson republican presidential candidate", "video_id": "video10389", "sen_id": 203103}, {"caption": "megan kelly is reporting on dr ben carson speech", "video_id": "video10389", "sen_id": 203104}, {"caption": "a woman with short blond hair and sleeveless black shirt reporting the news", "video_id": "video10389", "sen_id": 203105}, {"caption": "in a news studio a woman is talking about an event that happened", "video_id": "video10389", "sen_id": 203106}, {"caption": "a reporter discusses dr ben carsons debate performance on fox news", "video_id": "video10389", "sen_id": 203107}, {"caption": "a blonde hair lady talking about the presidential canidates", "video_id": "video10389", "sen_id": 203108}, {"caption": "megan kelly talking about dr ben carson in the third gop debate", "video_id": "video10389", "sen_id": 203109}, {"caption": "a woman newsanchor is discussing aspects about dr ben carson on fox news", "video_id": "video10389", "sen_id": 203110}, {"caption": "there is a woman talking about a man", "video_id": "video10389", "sen_id": 203111}, {"caption": "megan kelly is talking about doctor ben carson and is just about to interview him", "video_id": "video10389", "sen_id": 203112}, {"caption": "a woman is reading a news in the fox tv channel", "video_id": "video10389", "sen_id": 203113}, {"caption": "a blond women news reporter is telling a story", "video_id": "video10389", "sen_id": 203114}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video10389", "sen_id": 203115}, {"caption": "there is a woman with big earrings talking from a studio", "video_id": "video10389", "sen_id": 203116}, {"caption": "a woman with blonde hair is a news anchor and she is discussing politics", "video_id": "video10389", "sen_id": 203117}, {"caption": "a woman is speaking with text beneath her", "video_id": "video10389", "sen_id": 203118}, {"caption": "fox news journalist megyn kelly is preparing to talk to republican presidential candidate ben carson", "video_id": "video10389", "sen_id": 203119}, {"caption": "a reporter discusses a horse death during the production of an hbo show", "video_id": "video12240", "sen_id": 203120}, {"caption": "a news woman is talking about a horse race", "video_id": "video12240", "sen_id": 203121}, {"caption": "tv anchor describes hbo cancelling its horse show luck after another horse dies", "video_id": "video12240", "sen_id": 203122}, {"caption": "a woman talking about a freshman horse racing drama called luck in which 3 horses died during production", "video_id": "video12240", "sen_id": 203123}, {"caption": "a lady on a tv show discusses a tv show about horses", "video_id": "video12240", "sen_id": 203124}, {"caption": "a woman wearing a brown dress is delivering news", "video_id": "video12240", "sen_id": 203125}, {"caption": "i young women with long dark hair is reporting a story about horses", "video_id": "video12240", "sen_id": 203126}, {"caption": "a women discusses hbo horseracing and a horse dying", "video_id": "video12240", "sen_id": 203127}, {"caption": "a woman stands to the side wearing a brown dress with white splatter-type markings and keeps her hair draped over her right shoulder two race horses are nose to rump while running with the horse labeled number four leading", "video_id": "video12240", "sen_id": 203128}, {"caption": "a woman is reporting about a horse race event", "video_id": "video12240", "sen_id": 203129}, {"caption": "a young sports reporter discusses a horse race and horse training", "video_id": "video12240", "sen_id": 203130}, {"caption": "a woman in a floral print dress stands in a blue room while talking", "video_id": "video12240", "sen_id": 203131}, {"caption": "a woman talks about news about horse racing", "video_id": "video12240", "sen_id": 203132}, {"caption": "a news reporter giving her story on horse racing", "video_id": "video12240", "sen_id": 203133}, {"caption": "a woman in a brown shirt showing clips of people on horseback", "video_id": "video12240", "sen_id": 203134}, {"caption": "there is a women talking from the studio", "video_id": "video12240", "sen_id": 203135}, {"caption": "there is a women in pink top telling news", "video_id": "video12240", "sen_id": 203136}, {"caption": "a woman is talking in the reel tv news", "video_id": "video12240", "sen_id": 203137}, {"caption": "a woman is talking about hbo s horse racing drama and that a second season has been shut down after a third horse died", "video_id": "video12240", "sen_id": 203138}, {"caption": "a man and a woman on the news are speaking", "video_id": "video12240", "sen_id": 203139}, {"caption": "a basketball game is underway between clemson and alabama", "video_id": "video11617", "sen_id": 203140}, {"caption": "its a basketball game between alabama and clemson", "video_id": "video11617", "sen_id": 203141}, {"caption": "video of alabama and clemson in a tight basketball game", "video_id": "video11617", "sen_id": 203142}, {"caption": "men are playing basketball on an orange and white court", "video_id": "video11617", "sen_id": 203143}, {"caption": "men are playing basketball runnng back and fourth on the court", "video_id": "video11617", "sen_id": 203144}, {"caption": "a video showing a basketball game in progress between alabama and clemson teams", "video_id": "video11617", "sen_id": 203145}, {"caption": "all persons are playing basketball each other", "video_id": "video11617", "sen_id": 203146}, {"caption": "basketball playing by two teams very interesting to watch", "video_id": "video11617", "sen_id": 203147}, {"caption": "a man commentating on a sports game whie others watch", "video_id": "video11617", "sen_id": 203148}, {"caption": "the announcer talks about clips from a college basketball game", "video_id": "video11617", "sen_id": 203149}, {"caption": "teams from alabama and clemson play basketball in an indoor court", "video_id": "video11617", "sen_id": 203150}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video11617", "sen_id": 203151}, {"caption": "two team were playing a basket ball game", "video_id": "video11617", "sen_id": 203152}, {"caption": "a game of basketball is being played while a sports commentator describes what is going on in the game", "video_id": "video11617", "sen_id": 203153}, {"caption": "the basketball player steals the ball runs down court and makes a basket", "video_id": "video11617", "sen_id": 203154}, {"caption": "live basketball match is being watched by large crowd", "video_id": "video11617", "sen_id": 203155}, {"caption": "two team of basket ball players are playing match", "video_id": "video11617", "sen_id": 203156}, {"caption": "two basketball teams play in a game in a large gymnasium located on a college campus", "video_id": "video11617", "sen_id": 203157}, {"caption": "a volibal play ground the play going on there", "video_id": "video11617", "sen_id": 203158}, {"caption": "some people are on a basket ball court playing the game", "video_id": "video11617", "sen_id": 203159}, {"caption": "this video clip is of a portion of a taylor swift video", "video_id": "video11084", "sen_id": 203160}, {"caption": "taylor swift is in a music video sitting against a brick wall in a dark bedroom singing and looking sad", "video_id": "video11084", "sen_id": 203161}, {"caption": "taylor swift singing one of her songs on the floor", "video_id": "video11084", "sen_id": 203162}, {"caption": "there is a girl sitting on the floor looking sad and distressed singing to a song", "video_id": "video11084", "sen_id": 203163}, {"caption": "a blonde girl is sitting in a room sadly while music is playing in the background and the girl slightly sings along", "video_id": "video11084", "sen_id": 203164}, {"caption": "a woman is sitting on the floor with her back against the wall", "video_id": "video11084", "sen_id": 203165}, {"caption": "a blonde lady is sitting very sadly in a room she is singing eh", "video_id": "video11084", "sen_id": 203166}, {"caption": "a blonde headed woman sets on the floor in a room and leans against a wall", "video_id": "video11084", "sen_id": 203167}, {"caption": "a blonde haired woman sits against a brick wall in her house", "video_id": "video11084", "sen_id": 203168}, {"caption": "a blonde woman sits on the floor against a brick wall", "video_id": "video11084", "sen_id": 203169}, {"caption": "a young woman wearing a green shirt and singing", "video_id": "video11084", "sen_id": 203170}, {"caption": "a sad blonde woman singing in the corner of her apartment", "video_id": "video11084", "sen_id": 203171}, {"caption": "a blonde girl sits in a room looking sad and singing a song", "video_id": "video11084", "sen_id": 203172}, {"caption": "taylor swift is sitting on the floor and singing a song", "video_id": "video11084", "sen_id": 203173}, {"caption": "a blonde girl sits solemnly as music plays in the background", "video_id": "video11084", "sen_id": 203174}, {"caption": "there is a women sitting in the darkness", "video_id": "video11084", "sen_id": 203175}, {"caption": "a lady singing in the house", "video_id": "video11084", "sen_id": 203176}, {"caption": "a white woman with blonde hair singing a sad song", "video_id": "video11084", "sen_id": 203177}, {"caption": "a blonde girl sits on the floor and reads a book in blue", "video_id": "video11084", "sen_id": 203178}, {"caption": "in an apartment on a rainy evening a blonde woman in a blue shirt is seated up against the wall with her knees drawn up and close to her", "video_id": "video11084", "sen_id": 203179}, {"caption": "a person is showing what happens when you push switches", "video_id": "video10709", "sen_id": 203180}, {"caption": "a person is turning on the controls for the game", "video_id": "video10709", "sen_id": 203181}, {"caption": "a finger flipping a switch a tree and a window", "video_id": "video10709", "sen_id": 203182}, {"caption": "a man pushes a button and am image of a tree appears and then a cup on a table", "video_id": "video10709", "sen_id": 203183}, {"caption": "a person is explaining how a video game was created to be similar to another", "video_id": "video10709", "sen_id": 203184}, {"caption": "a man discusses and demonstrates a video game that he is playing", "video_id": "video10709", "sen_id": 203185}, {"caption": "a man is showing pictures from old technology in video games", "video_id": "video10709", "sen_id": 203186}, {"caption": "demonstration of how game settings function on scrren", "video_id": "video10709", "sen_id": 203187}, {"caption": "man demonstrating a simple pixel computer design system from the past", "video_id": "video10709", "sen_id": 203188}, {"caption": "someone flipping switches and showing video game clips", "video_id": "video10709", "sen_id": 203189}, {"caption": "original hardware is needed in order to nostalgically recreate older video games", "video_id": "video10709", "sen_id": 203190}, {"caption": "{}", "video_id": "video10709", "sen_id": 203191}, {"caption": "a video explaining on how to develop old style games", "video_id": "video10709", "sen_id": 203192}, {"caption": "there is a machine working with multiple functions", "video_id": "video10709", "sen_id": 203193}, {"caption": "there is a men demostrating how to play video game", "video_id": "video10709", "sen_id": 203194}, {"caption": "a man showing how to use a machine to create art", "video_id": "video10709", "sen_id": 203195}, {"caption": "there is a man talking about a machine", "video_id": "video10709", "sen_id": 203196}, {"caption": "showing the graph is changing the atmosphere in the world", "video_id": "video10709", "sen_id": 203197}, {"caption": "a young man describes and demonstrates a video game that he helped develop", "video_id": "video10709", "sen_id": 203198}, {"caption": "a person is showing bunch of old characters", "video_id": "video10709", "sen_id": 203199}, {"caption": "a quality camera piece that is meant to focus", "video_id": "video12629", "sen_id": 203200}, {"caption": "a person is explaining the features of a dslr camera lense", "video_id": "video12629", "sen_id": 203201}, {"caption": "a man is discussing the focus buttons on a camera lens", "video_id": "video12629", "sen_id": 203202}, {"caption": "a man explaining the photo of a lense for a manual camera", "video_id": "video12629", "sen_id": 203203}, {"caption": "a man explaining how to use a lense for a manual camera", "video_id": "video12629", "sen_id": 203204}, {"caption": "an indian fellow talking about how to focus your camera", "video_id": "video12629", "sen_id": 203205}, {"caption": "a woman in a park by a tree and a lens for a camera", "video_id": "video12629", "sen_id": 203206}, {"caption": "a loud man talks about a camera lens and its various features", "video_id": "video12629", "sen_id": 203207}, {"caption": "a thirty-five millimeter camera lens and a moving mouse pointer", "video_id": "video12629", "sen_id": 203208}, {"caption": "a cylindrical black camera lens has ridged rings a thin red band connective buttons and hard plastic casing", "video_id": "video12629", "sen_id": 203209}, {"caption": "a man discusses how to set the focus for a camera lens that is black and expensive", "video_id": "video12629", "sen_id": 203210}, {"caption": "a man explaining something about a camera lens", "video_id": "video12629", "sen_id": 203211}, {"caption": "the man discussed the use of a manual focus camera lens", "video_id": "video12629", "sen_id": 203212}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video12629", "sen_id": 203213}, {"caption": "a man explaining how to set a camera lens", "video_id": "video12629", "sen_id": 203214}, {"caption": "a man demonstrates and describes the use of a camera lens", "video_id": "video12629", "sen_id": 203215}, {"caption": "a camera lens is being filmed for sale", "video_id": "video12629", "sen_id": 203216}, {"caption": "a men is demostraing all the function and features of camera lens", "video_id": "video12629", "sen_id": 203217}, {"caption": "a woman in white dress and camera lenses are shown and explains about its features", "video_id": "video12629", "sen_id": 203218}, {"caption": "a camera lens takes wonderful shot the lady looks beautiful", "video_id": "video12629", "sen_id": 203219}, {"caption": "a woman modeling a dress in the mirror", "video_id": "video12965", "sen_id": 203220}, {"caption": "an attractive woman is feeling herself in a dress", "video_id": "video12965", "sen_id": 203221}, {"caption": "a woman walking slowly and putting on a little black dress", "video_id": "video12965", "sen_id": 203222}, {"caption": "a woman slowly walks to a mirror and gets dressed", "video_id": "video12965", "sen_id": 203223}, {"caption": "a lady in a black dress is walking up to a mirror and looking at herself in it", "video_id": "video12965", "sen_id": 203224}, {"caption": "a women wearing black dress is posing in sexy style", "video_id": "video12965", "sen_id": 203225}, {"caption": "a woman in a black dress in her dressing room", "video_id": "video12965", "sen_id": 203226}, {"caption": "a woman walking slowly in a black outfit rubbing herself", "video_id": "video12965", "sen_id": 203227}, {"caption": "a woman pulls up strap of black dress and looks in mirror of dressing room", "video_id": "video12965", "sen_id": 203228}, {"caption": "woman admires her dress and body in a mirror", "video_id": "video12965", "sen_id": 203229}, {"caption": "a woman walks up to a mirror in a room where there is writing on the all and runs her hands down her body", "video_id": "video12965", "sen_id": 203230}, {"caption": "the video is showing how the woman feels about how she looks in the mirror", "video_id": "video12965", "sen_id": 203231}, {"caption": "a woman in a black dress is admiring herself in a lighted mirror", "video_id": "video12965", "sen_id": 203232}, {"caption": "a honey colored woman walks to a mirror with lit up lightbulbs", "video_id": "video12965", "sen_id": 203233}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video12965", "sen_id": 203234}, {"caption": "a woman wearing black possibly dancing to music while never showing her face to the camera", "video_id": "video12965", "sen_id": 203235}, {"caption": "a lady making cat walk and rubbing her body in glamour way and looks herself at mirror", "video_id": "video12965", "sen_id": 203236}, {"caption": "a beautiful woman looks at herself in a lighted mirror", "video_id": "video12965", "sen_id": 203237}, {"caption": " in a black dress stands in front of a lit up mirror and looks at herself while a song is just beginning", "video_id": "video12965", "sen_id": 203238}, {"caption": "a person is walking around inside of a room", "video_id": "video12965", "sen_id": 203239}, {"caption": "a bowl of mixed vegetables and roast beef", "video_id": "video12334", "sen_id": 203240}, {"caption": "on the stove there is a pot with meat potatoes and carrots", "video_id": "video12334", "sen_id": 203241}, {"caption": "there is a pot on the stove with meat potatoes and carrots in it", "video_id": "video12334", "sen_id": 203242}, {"caption": "a view of a bowl of beef stew with various vegetables", "video_id": "video12334", "sen_id": 203243}, {"caption": "we have a long look at a pot of stew", "video_id": "video12334", "sen_id": 203244}, {"caption": "a bowl of food rather dark looking is presented", "video_id": "video12334", "sen_id": 203245}, {"caption": "in a kitchen showing a pot with cooked stew that has meat small potatos carrots and other seasonings", "video_id": "video12334", "sen_id": 203246}, {"caption": "a person makes some beef stew", "video_id": "video12334", "sen_id": 203247}, {"caption": "a chef discusses a large pot of beef stew they have prepared", "video_id": "video12334", "sen_id": 203248}, {"caption": "a stew is shown that includes large chunks of meat and vegetables", "video_id": "video12334", "sen_id": 203249}, {"caption": "in a kitchen someone has made a beefstew dish", "video_id": "video12334", "sen_id": 203250}, {"caption": "someone taking a video and showing off the stew they made in a pan", "video_id": "video12334", "sen_id": 203251}, {"caption": "a pot is filled with meat and vegetables in a broth", "video_id": "video12334", "sen_id": 203252}, {"caption": "a dish in a bowl made out of vegetables and meat", "video_id": "video12334", "sen_id": 203253}, {"caption": "someone is videoing a pot of stew soup", "video_id": "video12334", "sen_id": 203254}, {"caption": "a cook illustrates how to prepare a spicy wild game stew with vegetables", "video_id": "video12334", "sen_id": 203255}, {"caption": "a delicious pot of stew is being made to keep people warm", "video_id": "video12334", "sen_id": 203256}, {"caption": "someone is cooking what appears to be beef stew with potatoes and carrots in a white pot", "video_id": "video12334", "sen_id": 203257}, {"caption": "there is a white bowl with meat and vegetables inside of it", "video_id": "video12334", "sen_id": 203258}, {"caption": "some food in a bowl is being filmed", "video_id": "video12334", "sen_id": 203259}, {"caption": "this company carries many types of sports cruiser gear", "video_id": "video10358", "sen_id": 203260}, {"caption": "an advertisement of a t-shirt designing company", "video_id": "video10358", "sen_id": 203261}, {"caption": "several different pictures of shirts and apparel are being displayed while a person narrates where you can get them", "video_id": "video10358", "sen_id": 203262}, {"caption": "multiple pictures of shirts available from a place called cyclecruza", "video_id": "video10358", "sen_id": 203263}, {"caption": "a man promotes his apparel business and his youtube channel", "video_id": "video10358", "sen_id": 203264}, {"caption": "different models of t-shirts are shown with designs of motorcycles", "video_id": "video10358", "sen_id": 203265}, {"caption": "a series of shirts with motorcycle themes is being shown and then there's advertising for a youtube channel relating to motorcycles", "video_id": "video10358", "sen_id": 203266}, {"caption": "motorcycle apparel such as tee shirts and sweatshirts is displayed while a narrator introduces his website cyclecruza", "video_id": "video10358", "sen_id": 203267}, {"caption": "a male narrator advertises his you tube channel and clothing line", "video_id": "video10358", "sen_id": 203268}, {"caption": "a man advertises cyclecruza moto vlogs as a new channel and that new t-shirts are available", "video_id": "video10358", "sen_id": 203269}, {"caption": "many different designed shirts are shown with an ad-like feel to the clip", "video_id": "video10358", "sen_id": 203270}, {"caption": "t shirts of different colors and types are displayed one after another", "video_id": "video10358", "sen_id": 203271}, {"caption": "promotional spot to an auto-motor blog and its merchandize", "video_id": "video10358", "sen_id": 203272}, {"caption": "tshirts with different motorcycle symbols on them", "video_id": "video10358", "sen_id": 203273}, {"caption": "someone is presenting the paintings on different t shirts", "video_id": "video10358", "sen_id": 203274}, {"caption": "bunch of tshirts being shown on screen", "video_id": "video10358", "sen_id": 203275}, {"caption": "there is a tshirt man talking about tshirts", "video_id": "video10358", "sen_id": 203276}, {"caption": "a man is talking about a website and talking about different items he has for sell", "video_id": "video10358", "sen_id": 203277}, {"caption": "photos of t-shirts with logos with a commentator promotes his apparel and other channel", "video_id": "video10358", "sen_id": 203278}, {"caption": "colorful online commercial for motorcycle clothing", "video_id": "video10358", "sen_id": 203279}, {"caption": "michael j fox at the twin pines mall at night in the movie back to the future", "video_id": "video12574", "sen_id": 203280}, {"caption": "a man in a red vest is walking in an empty parking lot", "video_id": "video12574", "sen_id": 203281}, {"caption": "marty mcfly is at the mall trying to find his friend doc", "video_id": "video12574", "sen_id": 203282}, {"caption": "a young man stands in an empty mall parking lot", "video_id": "video12574", "sen_id": 203283}, {"caption": "movie scene of a man watching a truck getting impatient and grabbing his skateboard", "video_id": "video12574", "sen_id": 203284}, {"caption": "a man walking away in the movie back to the future", "video_id": "video12574", "sen_id": 203285}, {"caption": "a young man is in the twin pines mall parking lot and is checking out a box truck", "video_id": "video12574", "sen_id": 203286}, {"caption": "a young man wearing a vest removes headphones to look at and approach a white delivery truck parked in a shopping mall", "video_id": "video12574", "sen_id": 203287}, {"caption": "a scene from back to the future featuring michael j fox plays as he glances at a truck and then walks towards it", "video_id": "video12574", "sen_id": 203288}, {"caption": "a train whistle is blowing and a man is standing looking at something and then walks away", "video_id": "video12574", "sen_id": 203289}, {"caption": "a young man in an orange vest carries a skateboard", "video_id": "video12574", "sen_id": 203290}, {"caption": "a movie clip of a scene from the movie back to the future", "video_id": "video12574", "sen_id": 203291}, {"caption": "a teenager looks very surprised at a white van in a parking lot", "video_id": "video12574", "sen_id": 203292}, {"caption": "a kid in a wet parking lot at night with a skateboard", "video_id": "video12574", "sen_id": 203293}, {"caption": "a man in a red vest walks in front of glowing sign that reads twin pines mall", "video_id": "video12574", "sen_id": 203294}, {"caption": "a boy in a red vest observes an empty parking lot before walking across it", "video_id": "video12574", "sen_id": 203295}, {"caption": "night time big malls are displayed", "video_id": "video12574", "sen_id": 203296}, {"caption": "a scene from the movie back to the future is shown", "video_id": "video12574", "sen_id": 203297}, {"caption": "a man in vest stands in parking lot before walking towards bread truck", "video_id": "video12574", "sen_id": 203298}, {"caption": "marty is standing around a parking lot at night", "video_id": "video12574", "sen_id": 203299}, {"caption": "a motorcyclist attempts a stunt but ends up wrecking his bike", "video_id": "video11115", "sen_id": 203300}, {"caption": "a man wipes out while riding a motorcycle down the street and performing a stunt", "video_id": "video11115", "sen_id": 203301}, {"caption": "a man tries to pop a wheelie on his motorcycle but falls off instead and hits the pavement", "video_id": "video11115", "sen_id": 203302}, {"caption": "a man crashes a motorcycle in the middle of the street and then attempts to get up", "video_id": "video11115", "sen_id": 203303}, {"caption": "a guy on a motorcycle attempts a trick and falls off the motorcycle and it's played again in reverse", "video_id": "video11115", "sen_id": 203304}, {"caption": "home made video of dangerous bike skating in the middle of the street", "video_id": "video11115", "sen_id": 203305}, {"caption": "a bike rider showing his bike stunts in an empty road and falls down", "video_id": "video11115", "sen_id": 203306}, {"caption": "biker rider is riding bike very fast on road", "video_id": "video11115", "sen_id": 203307}, {"caption": "one man wheeling in motorcycle and also fell down", "video_id": "video11115", "sen_id": 203308}, {"caption": "a man fell down from a bike while performing dangerous activity", "video_id": "video11115", "sen_id": 203309}, {"caption": "a man is attempting to do a wheelie on a motorcycle but falls and skins his knees up", "video_id": "video11115", "sen_id": 203310}, {"caption": "a person riding a motor bike and doing stunts he felt down", "video_id": "video11115", "sen_id": 203311}, {"caption": "one man makes wheeling in motorcycle and fell down", "video_id": "video11115", "sen_id": 203312}, {"caption": "a boy wearing helmet on the raod side in bike wheeling and falling down", "video_id": "video11115", "sen_id": 203313}, {"caption": "a biker doing stunt on a bike got crashed down", "video_id": "video11115", "sen_id": 203314}, {"caption": "there is man falling down from his bike", "video_id": "video11115", "sen_id": 203315}, {"caption": "one man making wheeling and fell down in road", "video_id": "video11115", "sen_id": 203316}, {"caption": "a guy riding a bike and doing stunts suddenly skids and falls down", "video_id": "video11115", "sen_id": 203317}, {"caption": "the racer is riding the bike so rashly and riskily that he fell down along with the bike", "video_id": "video11115", "sen_id": 203318}, {"caption": "a person is riding their motorcycle on the road", "video_id": "video11115", "sen_id": 203319}, {"caption": "school children are answering questions about popular videos", "video_id": "video12345", "sen_id": 203320}, {"caption": "two young children a boy and a girl are in a classroom describing youtube videos", "video_id": "video12345", "sen_id": 203321}, {"caption": "a group of young children are interviewed for a news program", "video_id": "video12345", "sen_id": 203322}, {"caption": "a kid in a sweater and a girl in red glasses talking in a classroom", "video_id": "video12345", "sen_id": 203323}, {"caption": "a students are speaking and giving a review about the videos", "video_id": "video12345", "sen_id": 203324}, {"caption": "school age kids talk about popular videos on you tube", "video_id": "video12345", "sen_id": 203325}, {"caption": "a girl and boy is talking with a men", "video_id": "video12345", "sen_id": 203326}, {"caption": "one cute boy and cute girl talking about something", "video_id": "video12345", "sen_id": 203327}, {"caption": "kids are asked about youtube videos for a tv show that will probably only air on youtube", "video_id": "video12345", "sen_id": 203328}, {"caption": "one boy and one girl talking on the video the girl wear a red frame glass with blue t-shirt", "video_id": "video12345", "sen_id": 203329}, {"caption": "a girl and boy are talking about something they saw", "video_id": "video12345", "sen_id": 203330}, {"caption": "a boy in an argyle sweater and a girl in red glasses answer questions about youtube videos", "video_id": "video12345", "sen_id": 203331}, {"caption": "a boy in grey and black and also a girl wearing spectacles are speaking", "video_id": "video12345", "sen_id": 203332}, {"caption": "two school children discuss things that happen in internet videos with an interviewer", "video_id": "video12345", "sen_id": 203333}, {"caption": "a boy wearing black checked shirt is anchoring and a girl wearing navy blue t-shirt is accompanying him", "video_id": "video12345", "sen_id": 203334}, {"caption": "some kids are in a room talking about something", "video_id": "video12345", "sen_id": 203335}, {"caption": "the girl and the boy sits and talks in the interview", "video_id": "video12345", "sen_id": 203336}, {"caption": "a small boy wearing a sweatshirt is talking and then a young girl wearing glasses", "video_id": "video12345", "sen_id": 203337}, {"caption": "the kids are talking and giving answers to an interview", "video_id": "video12345", "sen_id": 203338}, {"caption": "boy in sweater and girl in glasses talking to camera", "video_id": "video12345", "sen_id": 203339}, {"caption": "a woman with blonde hair is describing how to do a hairstyle", "video_id": "video10089", "sen_id": 203340}, {"caption": "a blonde girl in a blue top explaining how to do a certain hairstyle", "video_id": "video10089", "sen_id": 203341}, {"caption": "a blonde-haired blue-eyed attractive woman shows how to clip hair to create a hair style", "video_id": "video10089", "sen_id": 203342}, {"caption": "a woman demonstrating how she does her hair", "video_id": "video10089", "sen_id": 203343}, {"caption": "a woman sits in front of a camera while working on her hairdo", "video_id": "video10089", "sen_id": 203344}, {"caption": "a blonde girl in a turquoise 34 length sleeve shirt is speaking and playing with her hair", "video_id": "video10089", "sen_id": 203345}, {"caption": "a blonde woman does her hair while wearing a teal shirt", "video_id": "video10089", "sen_id": 203346}, {"caption": "a women in green top is saying something while tying her hair", "video_id": "video10089", "sen_id": 203347}, {"caption": "two team players are playing rugby on ground", "video_id": "video10089", "sen_id": 203348}, {"caption": "a beautiful lady talking about how to tie hair to feel georgious", "video_id": "video10089", "sen_id": 203349}, {"caption": "a woman visually describes a method to tie hair back", "video_id": "video10089", "sen_id": 203350}, {"caption": "sexy blonde putting on hair style and showing other different ways also", "video_id": "video10089", "sen_id": 203351}, {"caption": "the woman in blue dress is making her hair neat", "video_id": "video10089", "sen_id": 203352}, {"caption": "a girl is showing how to do a certain hairdo", "video_id": "video10089", "sen_id": 203353}, {"caption": "a blonde woman in a dark turquoise shirt clips part of her hair up before she starts to pull the remainder of her hair forward", "video_id": "video10089", "sen_id": 203354}, {"caption": "a woman is showing you how to fix your hair", "video_id": "video10089", "sen_id": 203355}, {"caption": "a young blond woman talks about how she styles her hair", "video_id": "video10089", "sen_id": 203356}, {"caption": "a white blonde hair lady doing a hair tutorial", "video_id": "video10089", "sen_id": 203357}, {"caption": "a beautiful girl wearing blue dress is showing a hair style", "video_id": "video10089", "sen_id": 203358}, {"caption": "a blonde woman is showing how to do her hair", "video_id": "video10089", "sen_id": 203359}, {"caption": "a woman in glasses grey hair and a purple jacket is talking to a man in a brown jacket and a woman in a flowered dress", "video_id": "video10835", "sen_id": 203360}, {"caption": "a middle-aged woman attempts to get another couple to open up to her about a close personal issue", "video_id": "video10835", "sen_id": 203361}, {"caption": "an old woman talking about a family relationship", "video_id": "video10835", "sen_id": 203362}, {"caption": "a woman with gray hair and wearing glasses sits next to a book shelf while talking", "video_id": "video10835", "sen_id": 203363}, {"caption": "a woman in glasses sitting in a chair by a bookcase talking", "video_id": "video10835", "sen_id": 203364}, {"caption": "an old lady talking with a people who sitting in front of her", "video_id": "video10835", "sen_id": 203365}, {"caption": "a women in a jacket talking in front of a shelf", "video_id": "video10835", "sen_id": 203366}, {"caption": "a lady psychiatrist talking to a husband and wife in a room", "video_id": "video10835", "sen_id": 203367}, {"caption": "a man and two women are discusing in the room", "video_id": "video10835", "sen_id": 203368}, {"caption": "the woman in blue sweater is talking without a pause in her library", "video_id": "video10835", "sen_id": 203369}, {"caption": "an older woman is conducting an interview of a married couple", "video_id": "video10835", "sen_id": 203370}, {"caption": "the woman wears purple pants and a grey jersey sitting ina chair next to a bookshelf full of books and some decoration above", "video_id": "video10835", "sen_id": 203371}, {"caption": "a white haired women speaking with men and women discussing about her life", "video_id": "video10835", "sen_id": 203372}, {"caption": "a old lady was giving interview for the some channel and behind her there are some books", "video_id": "video10835", "sen_id": 203373}, {"caption": "a gray haired woman is speaking inside of a room", "video_id": "video10835", "sen_id": 203374}, {"caption": "a lady with glasses is talking to a middle couple and there is a bookself beside her with books in it", "video_id": "video10835", "sen_id": 203375}, {"caption": "the old woman with spectacles is talking with somebody", "video_id": "video10835", "sen_id": 203376}, {"caption": "one old women speaking something about in stage", "video_id": "video10835", "sen_id": 203377}, {"caption": "a lady is talking about the history to another guy", "video_id": "video10835", "sen_id": 203378}, {"caption": "a woman with gray hair is talking about something", "video_id": "video10835", "sen_id": 203379}, {"caption": "politician wheeler talking to press about net neutrality", "video_id": "video12366", "sen_id": 203380}, {"caption": "live footage of a politician talking to net neutrality protesters", "video_id": "video12366", "sen_id": 203381}, {"caption": "an older man wearing glasses talking on the news", "video_id": "video12366", "sen_id": 203382}, {"caption": "a man with gray hair and glasses talks to people holding up a banner", "video_id": "video12366", "sen_id": 203383}, {"caption": "protestors hold a banner in attempt to express their opinions on net neutrality", "video_id": "video12366", "sen_id": 203384}, {"caption": "a man wearing a suit stands between two protesting women behind a long blue-and-white banner regarding the world wide web in front of a house landscaped with bushes", "video_id": "video12366", "sen_id": 203385}, {"caption": "some people gathered in the public place and holding the banner of save the internet", "video_id": "video12366", "sen_id": 203386}, {"caption": "a man with black coat discussing with some youngster", "video_id": "video12366", "sen_id": 203387}, {"caption": "a man is reading a news in the television channel", "video_id": "video12366", "sen_id": 203388}, {"caption": "a news reporter shares a story on a public figure named wheeler and his interactions with protesters", "video_id": "video12366", "sen_id": 203389}, {"caption": "a guy with grey hair is talking to epopel", "video_id": "video12366", "sen_id": 203390}, {"caption": "there is a suit man talking with a woman on the road", "video_id": "video12366", "sen_id": 203391}, {"caption": "cnbc breaking news one old man is speaking to a women", "video_id": "video12366", "sen_id": 203392}, {"caption": "a man is reading a news in the tv channel", "video_id": "video12366", "sen_id": 203393}, {"caption": "a man in a suit is talking to a small woman", "video_id": "video12366", "sen_id": 203394}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12366", "sen_id": 203395}, {"caption": "a reported talking about a man trying to talk to protesters", "video_id": "video12366", "sen_id": 203396}, {"caption": "a man is talking about another man that is not friendly to protesters", "video_id": "video12366", "sen_id": 203397}, {"caption": "cnbc news channel is showing a man in a suit engaging a few people who are protesting for net neutrality with a big sign in front of his home", "video_id": "video12366", "sen_id": 203398}, {"caption": "some people are holding a banner outside", "video_id": "video12366", "sen_id": 203399}, {"caption": "a man being film for a movie clip in a building", "video_id": "video11979", "sen_id": 203400}, {"caption": "a man enters a building and walks down a corridor", "video_id": "video11979", "sen_id": 203401}, {"caption": "a man is walking into a building and passing up another man", "video_id": "video11979", "sen_id": 203402}, {"caption": "a guy walks in a building as other two girls walk pass him from opposite side", "video_id": "video11979", "sen_id": 203403}, {"caption": "there is a man in tshirt walking in to the floor", "video_id": "video11979", "sen_id": 203404}, {"caption": "the door opened by a security and a man came from there", "video_id": "video11979", "sen_id": 203405}, {"caption": "a man in green t-shirt enters the room very angry", "video_id": "video11979", "sen_id": 203406}, {"caption": "there is a t-shirt man walking to the corridor", "video_id": "video11979", "sen_id": 203407}, {"caption": "a doorman opens the door while a man wearing a light green shirt and pants struts confidently through the long narrow corridor", "video_id": "video11979", "sen_id": 203408}, {"caption": "a man intight clothes stuts confidently down a lavish hallway for a film production", "video_id": "video11979", "sen_id": 203409}, {"caption": "will smith walked down the hallway during a movie shoot", "video_id": "video11979", "sen_id": 203410}, {"caption": "a man in grey shirt is walking on one side while two women walk on opposite side", "video_id": "video11979", "sen_id": 203411}, {"caption": "a men enters the mall and walk like kings", "video_id": "video11979", "sen_id": 203412}, {"caption": "the man entering the building while two ladies are walking out", "video_id": "video11979", "sen_id": 203413}, {"caption": "a man walks down a long hallway toward a camera", "video_id": "video11979", "sen_id": 203414}, {"caption": "a man is walking down a red carpet in a building", "video_id": "video11979", "sen_id": 203415}, {"caption": "a man in green tshirt walking through the corridor", "video_id": "video11979", "sen_id": 203416}, {"caption": "a man coming and walking fastly", "video_id": "video11979", "sen_id": 203417}, {"caption": "will smith enters building and walks intently down the hall while being filmed in behind the scenes footage", "video_id": "video11979", "sen_id": 203418}, {"caption": "a man is walking inside of a hall way", "video_id": "video11979", "sen_id": 203419}, {"caption": "a woman is showing a recipe onscreen", "video_id": "video10296", "sen_id": 203420}, {"caption": "various ingredients are shown in succession while a narrator says the name of each", "video_id": "video10296", "sen_id": 203421}, {"caption": "a woman describes and demonstrates a recipe for indian food", "video_id": "video10296", "sen_id": 203422}, {"caption": "a girl watching pictures of ingredients for a meal", "video_id": "video10296", "sen_id": 203423}, {"caption": "a woman begins talking while different ingredients are shown and listed on screen", "video_id": "video10296", "sen_id": 203424}, {"caption": "a completed dish and a flash of ingredients next to a recipe", "video_id": "video10296", "sen_id": 203425}, {"caption": "a chef listing all the ingredients for paneer butter masala in regional indian language", "video_id": "video10296", "sen_id": 203426}, {"caption": "a women describes a recipe of food stuffs", "video_id": "video10296", "sen_id": 203427}, {"caption": "in a television cooking programme a guest explain how to make dish showing all ingredients in one by one in glass bowls", "video_id": "video10296", "sen_id": 203428}, {"caption": "a cok gets ready to prepare an indian dish in the kitchen", "video_id": "video10296", "sen_id": 203429}, {"caption": "a beautiful lady is explaining how to cook a vegetarian dish", "video_id": "video10296", "sen_id": 203430}, {"caption": "a person cooking on a tv channel show", "video_id": "video10296", "sen_id": 203431}, {"caption": "the recipe for the preparation of paneer masala is being shown", "video_id": "video10296", "sen_id": 203432}, {"caption": "making of recepie: paneer butter masala required ingredients mentioned", "video_id": "video10296", "sen_id": 203433}, {"caption": "a woman covering the needed ingredients to make a dish", "video_id": "video10296", "sen_id": 203434}, {"caption": "a woman is talking and some food is being shown", "video_id": "video10296", "sen_id": 203435}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10296", "sen_id": 203436}, {"caption": "a screen showcasing all the ingredients needed to make a dish", "video_id": "video10296", "sen_id": 203437}, {"caption": "someone is giving cooking recipes with garam masalaand in the end prepares an excellent dish", "video_id": "video10296", "sen_id": 203438}, {"caption": "some various things of food are being shown", "video_id": "video10296", "sen_id": 203439}, {"caption": "this is the music video set fire to the rain by popular singer adele", "video_id": "video12476", "sen_id": 203440}, {"caption": "a man sitting on a couch drinking and a woman with a beer", "video_id": "video12476", "sen_id": 203441}, {"caption": "a man sits on the couch and thinks about the night before where he met a woman in the bar and kissed her passionately", "video_id": "video12476", "sen_id": 203442}, {"caption": "a man is sitting on a couch reminiscing about a time he was sadly drinking and met a woman", "video_id": "video12476", "sen_id": 203443}, {"caption": "a man is sitting on a sofa and at a bar contemplating", "video_id": "video12476", "sen_id": 203444}, {"caption": "a man drinking beer and hanging out with a girl", "video_id": "video12476", "sen_id": 203445}, {"caption": "a music video of a man in a bar and a women with a song playing in the background", "video_id": "video12476", "sen_id": 203446}, {"caption": "a man sets on a couch in a dimly lit room and rubs his forehead", "video_id": "video12476", "sen_id": 203447}, {"caption": "follow along with a recent addict struggling to overcome his everyday demons from everyday temptations", "video_id": "video12476", "sen_id": 203448}, {"caption": "a shirtless man sitting on a couch in a partially lit room and then drinking a beer in a bar", "video_id": "video12476", "sen_id": 203449}, {"caption": "there is a man sitting on a sofa", "video_id": "video12476", "sen_id": 203450}, {"caption": "a man sitting on a chair and a girl watching", "video_id": "video12476", "sen_id": 203451}, {"caption": "a woman sings over scenes of sad people in a bar", "video_id": "video12476", "sen_id": 203452}, {"caption": "this video is about the scenes in a music video", "video_id": "video12476", "sen_id": 203453}, {"caption": "a man is sitting on the couch and at the bar", "video_id": "video12476", "sen_id": 203454}, {"caption": "a man drinking a beer in a bar and a woman sitting in a hallway they are seperate", "video_id": "video12476", "sen_id": 203455}, {"caption": "a lady singing a song in the background of the movie", "video_id": "video12476", "sen_id": 203456}, {"caption": "a man is talking to a women with a bottle in hand", "video_id": "video12476", "sen_id": 203457}, {"caption": "a man is sitting looking depressed while a female voice sings", "video_id": "video12476", "sen_id": 203458}, {"caption": "adele is singing her song while two actors are playing out a scene", "video_id": "video12476", "sen_id": 203459}, {"caption": "an african man is speaking about a tragedy", "video_id": "video12446", "sen_id": 203460}, {"caption": "a man in a blue jacket and hat is being interviewed on a mountain", "video_id": "video12446", "sen_id": 203461}, {"caption": "a man explaining his bad situation in spanish", "video_id": "video12446", "sen_id": 203462}, {"caption": "a man in a brown hat stands in the countryside talking about his business", "video_id": "video12446", "sen_id": 203463}, {"caption": "a man complains", "video_id": "video12446", "sen_id": 203464}, {"caption": "a man wearing a blue shirt and a brown hat is talking", "video_id": "video12446", "sen_id": 203465}, {"caption": "a man in a brown hat talks outdoors in a desert", "video_id": "video12446", "sen_id": 203466}, {"caption": "a man in a brown hat standing in the wilderness", "video_id": "video12446", "sen_id": 203467}, {"caption": "a black employer wearing a hat stands on a hilltop and discusses his heartbreak at losing money that will ultimately affect his employees", "video_id": "video12446", "sen_id": 203468}, {"caption": "a new report of a man talking about his work", "video_id": "video12446", "sen_id": 203469}, {"caption": "an older black man in a blue shirt and brown hat is talking", "video_id": "video12446", "sen_id": 203470}, {"caption": "a man is explaning about his opinion and feeling", "video_id": "video12446", "sen_id": 203471}, {"caption": "a men are standing in th field and telling something", "video_id": "video12446", "sen_id": 203472}, {"caption": "a man in a blue shirt and a brown hat is talking", "video_id": "video12446", "sen_id": 203473}, {"caption": "a guy in a hat is talking about something", "video_id": "video12446", "sen_id": 203474}, {"caption": "a man wearing a brown hat talks in front of a tree", "video_id": "video12446", "sen_id": 203475}, {"caption": "a man talking about something to someone on outside", "video_id": "video12446", "sen_id": 203476}, {"caption": "a large african man in a bright blue shirt talks on the top of a brushy mountain", "video_id": "video12446", "sen_id": 203477}, {"caption": "a man is doing an interview about problems with his business that are impacting him so bad it will affect his employees", "video_id": "video12446", "sen_id": 203478}, {"caption": "a man in a brown hat is talking outside", "video_id": "video12446", "sen_id": 203479}, {"caption": "a chef showing show to make a particular drink", "video_id": "video12872", "sen_id": 203480}, {"caption": "two men are making a drink in a kitchen", "video_id": "video12872", "sen_id": 203481}, {"caption": "a man wearing a black shirt describing how to make a drink", "video_id": "video12872", "sen_id": 203482}, {"caption": "two men are making a drink in a kitchen", "video_id": "video12872", "sen_id": 203483}, {"caption": "a gentleman on a cooking show is demonstrating how to make homemade lemonade", "video_id": "video12872", "sen_id": 203484}, {"caption": "a man pours hot water into a cup and mixes something into the water", "video_id": "video12872", "sen_id": 203485}, {"caption": "a group of people in a kitchen preparing a drink", "video_id": "video12872", "sen_id": 203486}, {"caption": "hot water is poured in to clear glass and and it is stirred adding a yellow substance by a man with eye glasses and standing near to another one", "video_id": "video12872", "sen_id": 203487}, {"caption": "a man pours hot water into a cup and stirs", "video_id": "video12872", "sen_id": 203488}, {"caption": "two men are showing how to make a drink", "video_id": "video12872", "sen_id": 203489}, {"caption": "a man mixes things with water for a meal", "video_id": "video12872", "sen_id": 203490}, {"caption": "there is a man pouring some water to a glass", "video_id": "video12872", "sen_id": 203491}, {"caption": "the man is putting water in the glass using yellow jar", "video_id": "video12872", "sen_id": 203492}, {"caption": "a man is preparing a drink that requires hot water and two tablets", "video_id": "video12872", "sen_id": 203493}, {"caption": "a man pours hot water into a glass and then another man crumbles a broth cube into it and stirs it around", "video_id": "video12872", "sen_id": 203494}, {"caption": "a powder and hot water are combined in a glass", "video_id": "video12872", "sen_id": 203495}, {"caption": "a man is poring a water into the glass", "video_id": "video12872", "sen_id": 203496}, {"caption": "it is a man in the kitchen talking about how to prepare food", "video_id": "video12872", "sen_id": 203497}, {"caption": "different cards are there of beautiful pictures and messages", "video_id": "video12872", "sen_id": 203498}, {"caption": "a man with glasses is speaking about something", "video_id": "video12872", "sen_id": 203499}, {"caption": "a boy is getting warmly dressed to go outside", "video_id": "video11759", "sen_id": 203500}, {"caption": "a man explaining his outfit for the day", "video_id": "video11759", "sen_id": 203501}, {"caption": "a man is getting dressed in heavy gear to go outside in winter weather", "video_id": "video11759", "sen_id": 203502}, {"caption": "a young man puts on his outerwear before he goes out into the cold", "video_id": "video11759", "sen_id": 203503}, {"caption": "a man puts on his red coat and picks up his snow boots to walks out of his door", "video_id": "video11759", "sen_id": 203504}, {"caption": "a man puts on a white beanie and red jacket he grabs snow boots and opens the door", "video_id": "video11759", "sen_id": 203505}, {"caption": "a man in a house getting dressed and preparing to go outside", "video_id": "video11759", "sen_id": 203506}, {"caption": "a teenage boy preparing to go outside in the winter", "video_id": "video11759", "sen_id": 203507}, {"caption": "a young man in a plaid shirt puts a white sock cap on his head", "video_id": "video11759", "sen_id": 203508}, {"caption": "a young mans puts on a white beanie and a red jacket to go out in the cold weather", "video_id": "video11759", "sen_id": 203509}, {"caption": "a person is putting on a coat and gear to go out in the cold", "video_id": "video11759", "sen_id": 203510}, {"caption": "there is a man wearing a cap in his room", "video_id": "video11759", "sen_id": 203511}, {"caption": "a man wearing dress and coat with slipper", "video_id": "video11759", "sen_id": 203512}, {"caption": "a young man gets dressed to go outside in very cold weather", "video_id": "video11759", "sen_id": 203513}, {"caption": "a person puts a hat coat and grab some boots then went outside", "video_id": "video11759", "sen_id": 203514}, {"caption": "man getting ready to go out into a cold environment on a sunny day", "video_id": "video11759", "sen_id": 203515}, {"caption": "a person is shown putting on outerwear including zipping a jacket and putting on a white hat", "video_id": "video11759", "sen_id": 203516}, {"caption": "a boy puts a cap and red jerkin carries his boot and going out of home", "video_id": "video11759", "sen_id": 203517}, {"caption": "a boy talks while he gets ready wearing his cap and other gear to go out with his baggage", "video_id": "video11759", "sen_id": 203518}, {"caption": "a man is getting ready by wearing his capa red jacketboots and going out somewhere with his bag", "video_id": "video11759", "sen_id": 203519}, {"caption": "a man is putting crab cakes in a hot non-stick pan of butter", "video_id": "video11937", "sen_id": 203520}, {"caption": "a person is cooking something in a well greased frying pan", "video_id": "video11937", "sen_id": 203521}, {"caption": "in a kitchen a person is preparing balls of food in a small pan", "video_id": "video11937", "sen_id": 203522}, {"caption": "a man is putting a patty on a hot skillet with oil", "video_id": "video11937", "sen_id": 203523}, {"caption": "a man discussing a cooking technique on a frying pan", "video_id": "video11937", "sen_id": 203524}, {"caption": "a male voiceover and two hands illustrate how to prepare and cook crab cakes in a black skillet on a stove", "video_id": "video11937", "sen_id": 203525}, {"caption": "a man explaining how to cook eggs on a pan", "video_id": "video11937", "sen_id": 203526}, {"caption": "instructions for cooking a type of cake in a frying pan with butter", "video_id": "video11937", "sen_id": 203527}, {"caption": "a man cooks biscuits in a pan for some reason", "video_id": "video11937", "sen_id": 203528}, {"caption": "some on melting butter in a pan and then frying food in it", "video_id": "video11937", "sen_id": 203529}, {"caption": "placing 4 pieces of food on a frying pan", "video_id": "video11937", "sen_id": 203530}, {"caption": "a man speaking while placing four food lumps of food into bubbling oil in a black frying pan", "video_id": "video11937", "sen_id": 203531}, {"caption": "a chef explains how to cook a dish in a fry pan", "video_id": "video11937", "sen_id": 203532}, {"caption": "a guy talking about cooking a certain king of food in a pan of melted butter", "video_id": "video11937", "sen_id": 203533}, {"caption": "a man is showing how to cook a meal in a pan without it falling apart", "video_id": "video11937", "sen_id": 203534}, {"caption": "someone is melting butter in a skillet they then proceed to place food in the skillet", "video_id": "video11937", "sen_id": 203535}, {"caption": "a man is frying a food item with a butter", "video_id": "video11937", "sen_id": 203536}, {"caption": "it match live telecast programmed and rather then news now", "video_id": "video11937", "sen_id": 203537}, {"caption": "someone is frying something after pouring butter in the black nonstick pan", "video_id": "video11937", "sen_id": 203538}, {"caption": "the chef melts butter in a saucepan before frying the crab cakes", "video_id": "video11937", "sen_id": 203539}, {"caption": "a man is getting ready to interview a soccer team", "video_id": "video11098", "sen_id": 203540}, {"caption": "a man demonstrating rugby moves on a small pitch", "video_id": "video11098", "sen_id": 203541}, {"caption": "a person in grey shirt is holding a tab and calculating some strategy", "video_id": "video11098", "sen_id": 203542}, {"caption": "guy standing on green floor moves and stands behind the blue line", "video_id": "video11098", "sen_id": 203543}, {"caption": "a man describing about the players and the rules", "video_id": "video11098", "sen_id": 203544}, {"caption": "some people are standing around on a court", "video_id": "video11098", "sen_id": 203545}, {"caption": "people gathered in the stadium to watch some sports competition", "video_id": "video11098", "sen_id": 203546}, {"caption": "candy is prepared in the space of pumkin", "video_id": "video11098", "sen_id": 203547}, {"caption": "people marking marks in a pitch before a match", "video_id": "video11098", "sen_id": 203548}, {"caption": "a guys is playing video game on his tablet pc", "video_id": "video11098", "sen_id": 203549}, {"caption": "some people are standing around on a green field", "video_id": "video11098", "sen_id": 203550}, {"caption": "a man talking to a group of people on a fake soccer field", "video_id": "video11098", "sen_id": 203551}, {"caption": "in the big green floor the person in coat having the tab in his hand and checking comething", "video_id": "video11098", "sen_id": 203552}, {"caption": "the coach on the sideline explains how the play works", "video_id": "video11098", "sen_id": 203553}, {"caption": "some people are standing on a green field", "video_id": "video11098", "sen_id": 203554}, {"caption": "there is man in shirt in a small court", "video_id": "video11098", "sen_id": 203555}, {"caption": "a man with tablet in his hand and a cameraman holding camera in his hands coming back shooting on the green grass court", "video_id": "video11098", "sen_id": 203556}, {"caption": "a man displays the presentation from his tab and a shooting is going on for the relay", "video_id": "video11098", "sen_id": 203557}, {"caption": "people are standing around on a green field", "video_id": "video11098", "sen_id": 203558}, {"caption": "some people are walking around on a school court", "video_id": "video11098", "sen_id": 203559}, {"caption": "britney spears is looking in a mirror and singing a song", "video_id": "video11930", "sen_id": 203560}, {"caption": "a woman is looking in the mirror at her reflection", "video_id": "video11930", "sen_id": 203561}, {"caption": "britney spears acts in front of a mirror for her music video", "video_id": "video11930", "sen_id": 203562}, {"caption": "britney spears is singing about tears that come at night", "video_id": "video11930", "sen_id": 203563}, {"caption": "brittany spears looks into a mirror and sings in a music video", "video_id": "video11930", "sen_id": 203564}, {"caption": "a blonde woman is singing solemnly into a small mirror and a large mirror", "video_id": "video11930", "sen_id": 203565}, {"caption": "a woman sings while staring sadly into a face mirror", "video_id": "video11930", "sen_id": 203566}, {"caption": "there is a brown hair women singing in front of the mirror", "video_id": "video11930", "sen_id": 203567}, {"caption": "blonde woman in pink singing in front of a mirror", "video_id": "video11930", "sen_id": 203568}, {"caption": "a woman singing a song in front of mirror", "video_id": "video11930", "sen_id": 203569}, {"caption": "a lady sings a song bi sitting infront of the mirror she looks beautiful", "video_id": "video11930", "sen_id": 203570}, {"caption": "sexy britney spears singing in her music video", "video_id": "video11930", "sen_id": 203571}, {"caption": "a women with long curly hair is singing a song and dancing on it", "video_id": "video11930", "sen_id": 203572}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video11930", "sen_id": 203573}, {"caption": "a lovely blonde singer sings and looks into a small mirror", "video_id": "video11930", "sen_id": 203574}, {"caption": "britney spears is looking into a mirror and singing the song lucky", "video_id": "video11930", "sen_id": 203575}, {"caption": "a lady sits and another one in beautiful attire is singing", "video_id": "video11930", "sen_id": 203576}, {"caption": "an album song a girl singing a song and dancing", "video_id": "video11930", "sen_id": 203577}, {"caption": "a young girl is looking herself in a mirror and singing a song", "video_id": "video11930", "sen_id": 203578}, {"caption": "a girl saw her in a mirror and singing a song", "video_id": "video11930", "sen_id": 203579}, {"caption": "a woman is modeling onstage while a song plays in the background", "video_id": "video12384", "sen_id": 203580}, {"caption": "woman with red lingerie and a big red bow on a stage", "video_id": "video12384", "sen_id": 203581}, {"caption": "a lady is on front on a stage in front of a lot of people", "video_id": "video12384", "sen_id": 203582}, {"caption": "a persom with black and red lingerie with wings blowing kisses and waving on a runway", "video_id": "video12384", "sen_id": 203583}, {"caption": "there is a woman in a revealing red outfit is on stage", "video_id": "video12384", "sen_id": 203584}, {"caption": "a woman on a stage posing for an audience", "video_id": "video12384", "sen_id": 203585}, {"caption": "a women dressed very fashionable blows kisses to the audience", "video_id": "video12384", "sen_id": 203586}, {"caption": "a girl shows off some flashy lingerie up on stage", "video_id": "video12384", "sen_id": 203587}, {"caption": "a young girl participating in fashion show competition", "video_id": "video12384", "sen_id": 203588}, {"caption": "a fashion model stands on stage and is cheered by the crowd", "video_id": "video12384", "sen_id": 203589}, {"caption": "a lady dances on the stage wearing red", "video_id": "video12384", "sen_id": 203590}, {"caption": "a woman is wearing a red color dress on the stage showing fashion show", "video_id": "video12384", "sen_id": 203591}, {"caption": "a woman in a very small outfit is on a stage and the audience is applauding", "video_id": "video12384", "sen_id": 203592}, {"caption": "lady in red dress smiles so nice then walk out from stage", "video_id": "video12384", "sen_id": 203593}, {"caption": "this is a fashion show a girl wearing red undergarment and shoes give smile and a flying kiss", "video_id": "video12384", "sen_id": 203594}, {"caption": "a fashion dress design a woman wearing fashion dress waving hand kissing lips audience watching displaying on screen", "video_id": "video12384", "sen_id": 203595}, {"caption": "there is tall woman in red standing on the stage", "video_id": "video12384", "sen_id": 203596}, {"caption": "the woman models the bikini on the stage", "video_id": "video12384", "sen_id": 203597}, {"caption": "a woman is performing on stage for a crowd", "video_id": "video12384", "sen_id": 203598}, {"caption": "a pretty woman blows kisses to a cheering crowd", "video_id": "video12384", "sen_id": 203599}, {"caption": "a person is putting oil into a pan and slicing peppers", "video_id": "video12895", "sen_id": 203600}, {"caption": "woman is speaking about frying fish and how to prepare the oil and frying fish", "video_id": "video12895", "sen_id": 203601}, {"caption": "a woman pouring oil into a hot pot on a stove and dunking chicken in it to cook", "video_id": "video12895", "sen_id": 203602}, {"caption": "a chef talks about frying fish in hot oil in a small pan", "video_id": "video12895", "sen_id": 203603}, {"caption": "a woman demonstrating how to deep fry some chicken", "video_id": "video12895", "sen_id": 203604}, {"caption": "a person cooking fish fry on oil in a bowl", "video_id": "video12895", "sen_id": 203605}, {"caption": "a woman wearing a pink shirt and white apron heats oil in a pan and fries pieces of fish", "video_id": "video12895", "sen_id": 203606}, {"caption": "using measurement cup they add water then meat is added to pan she cuts chilli", "video_id": "video12895", "sen_id": 203607}, {"caption": "in a kitchen woman with pink shirt is preparing the lunch", "video_id": "video12895", "sen_id": 203608}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12895", "sen_id": 203609}, {"caption": "there is a woman making a dish in the kitchen", "video_id": "video12895", "sen_id": 203610}, {"caption": "a woman demonstrating how to fry fish in oil in a large metal pan", "video_id": "video12895", "sen_id": 203611}, {"caption": "a woman is cooking a dish using fish as one of the ingredient", "video_id": "video12895", "sen_id": 203612}, {"caption": "a woman pours oil into a pan and describes how to fry fish", "video_id": "video12895", "sen_id": 203613}, {"caption": "the woman pours oil into the pan when the oil is hot she fries the fish in it", "video_id": "video12895", "sen_id": 203614}, {"caption": "a woman pours oil into a large pan and then adds fish to the bubbling oil and then adds an onion", "video_id": "video12895", "sen_id": 203615}, {"caption": "a woman is deep frying a dish and cutting vegetables", "video_id": "video12895", "sen_id": 203616}, {"caption": "a black woman in a pink shirt and white apron is shown frying both fish and onions in a pan of oil", "video_id": "video12895", "sen_id": 203617}, {"caption": "a woman in a pink outfit and white apron is cutting and stirring ingredients for making a recipe in a kitchen", "video_id": "video12895", "sen_id": 203618}, {"caption": "a person is pouring oil into a pot", "video_id": "video12895", "sen_id": 203619}, {"caption": "a formula one race car races down the track with other cars during an event", "video_id": "video12061", "sen_id": 203620}, {"caption": "a few cars racing around the track", "video_id": "video12061", "sen_id": 203621}, {"caption": "an upbeat song plays while a drag race ensues", "video_id": "video12061", "sen_id": 203622}, {"caption": "formula one cars are racing at a grand prix", "video_id": "video12061", "sen_id": 203623}, {"caption": "race cars speed around a track where the stands are filled with spectators", "video_id": "video12061", "sen_id": 203624}, {"caption": "a musical montage of racing professionals maneuvering their race cars around crowd-filled tracks", "video_id": "video12061", "sen_id": 203625}, {"caption": "a formula one clip about a racer being first in a lap", "video_id": "video12061", "sen_id": 203626}, {"caption": "several race cars on a track racing very fast around the track", "video_id": "video12061", "sen_id": 203627}, {"caption": "blue and red indy car racing through a curving track outdoors", "video_id": "video12061", "sen_id": 203628}, {"caption": "a montage of professional f1 race cars going around the track at high speed", "video_id": "video12061", "sen_id": 203629}, {"caption": "race cars are driving around a round track", "video_id": "video12061", "sen_id": 203630}, {"caption": "a red race car in racing around the track", "video_id": "video12061", "sen_id": 203631}, {"caption": "cars are racing on a track with a crowd watching in the stands", "video_id": "video12061", "sen_id": 203632}, {"caption": "a group of race cars speed along a course in a heavily attended race", "video_id": "video12061", "sen_id": 203633}, {"caption": "there are cars racing on an outdoor track", "video_id": "video12061", "sen_id": 203634}, {"caption": "there is a car race competition held on a race track", "video_id": "video12061", "sen_id": 203635}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video12061", "sen_id": 203636}, {"caption": "racers driver fast on a track in a grand prix style race", "video_id": "video12061", "sen_id": 203637}, {"caption": "race cars turn corners and make passes during the race event", "video_id": "video12061", "sen_id": 203638}, {"caption": "race cars speed along a race track in front of an audience in bleachers on a sunny day", "video_id": "video12061", "sen_id": 203639}, {"caption": "a lady is talking about remodeling a hallroom bathroom", "video_id": "video12475", "sen_id": 203640}, {"caption": "a woman in an all white kitchen talking", "video_id": "video12475", "sen_id": 203641}, {"caption": "a woman is explaining how she did a hallway bathroom remodel after doing a kitchen remodel and telling how to find that video online", "video_id": "video12475", "sen_id": 203642}, {"caption": "a young woman talking about her home modeling", "video_id": "video12475", "sen_id": 203643}, {"caption": "a woman is standing in a kitchen talking about food", "video_id": "video12475", "sen_id": 203644}, {"caption": "a woman is standing in a kitchen talking and waving", "video_id": "video12475", "sen_id": 203645}, {"caption": "a young pretty asian woman with long dark hair is talking", "video_id": "video12475", "sen_id": 203646}, {"caption": "an asian woman discusses her kitchen remodel while explaining that she also did a hallwaybathroom remodel", "video_id": "video12475", "sen_id": 203647}, {"caption": "asian female is making a conclusion to a home made video", "video_id": "video12475", "sen_id": 203648}, {"caption": "a woman standing in her kitchen talks about remodeling her house", "video_id": "video12475", "sen_id": 203649}, {"caption": "a woman with long black hair describes her remodeling projects and asks for thumbs up", "video_id": "video12475", "sen_id": 203650}, {"caption": "a cook talks about the dish she made prior to making a video about it", "video_id": "video12475", "sen_id": 203651}, {"caption": "a lady is talking on the kitchen", "video_id": "video12475", "sen_id": 203652}, {"caption": "asian woman speaking inside a mostly white kitchen beside oranges on a counter", "video_id": "video12475", "sen_id": 203653}, {"caption": "a woman shows her remodeled kitchen while she talks about the remodeling she has done", "video_id": "video12475", "sen_id": 203654}, {"caption": "an asian woman is in a kitchen talking about remodeling her kitchen and hallway", "video_id": "video12475", "sen_id": 203655}, {"caption": "a women talking about the remodel of her kitchen and hallway", "video_id": "video12475", "sen_id": 203656}, {"caption": "wonderful room design is good but this is kitchen or bathroom", "video_id": "video12475", "sen_id": 203657}, {"caption": "an asian woman talks about the remodeling work she has done in her home", "video_id": "video12475", "sen_id": 203658}, {"caption": "the young woman in white dress explains about angel wong s kitchen", "video_id": "video12475", "sen_id": 203659}, {"caption": "several scenes of cats in an office setting with a voice over about a cat-vertising agency", "video_id": "video12967", "sen_id": 203660}, {"caption": "an office full of cats sitting on the desks together", "video_id": "video12967", "sen_id": 203661}, {"caption": "people bringing cats to work in crates and cats taking over an office", "video_id": "video12967", "sen_id": 203662}, {"caption": "women are carrying cat kennels into a building then the cats are eating drinking out of coffee cups beside a keyboard and sitting in various places on desks in a workplace", "video_id": "video12967", "sen_id": 203663}, {"caption": "a group of cats go with their owners for a take your cat to work day", "video_id": "video12967", "sen_id": 203664}, {"caption": "an office space filled with workers and cats", "video_id": "video12967", "sen_id": 203665}, {"caption": "three people walk in doors with crates of cats the cats run around the peoples office", "video_id": "video12967", "sen_id": 203666}, {"caption": "a group of people carrying cat bring them to a office", "video_id": "video12967", "sen_id": 203667}, {"caption": "different cats are hanging around with people while they're at work", "video_id": "video12967", "sen_id": 203668}, {"caption": "john street showing the worlds first cat advertising agency", "video_id": "video12967", "sen_id": 203669}, {"caption": "a white and black coloured cat drinking milk from the cup", "video_id": "video12967", "sen_id": 203670}, {"caption": "some people bring the cat to office by carrying them in the box", "video_id": "video12967", "sen_id": 203671}, {"caption": "a guy brings jos cat into a workplace so it can play", "video_id": "video12967", "sen_id": 203672}, {"caption": "people taking cats in a building then cats doing lots of things", "video_id": "video12967", "sen_id": 203673}, {"caption": "the cats in the cage the man taking the cage and the cats behaviours", "video_id": "video12967", "sen_id": 203674}, {"caption": "an advertisement of a advertisement company which employs cats", "video_id": "video12967", "sen_id": 203675}, {"caption": "johnstreet launches the worlds first and only cat accompanying busniess", "video_id": "video12967", "sen_id": 203676}, {"caption": "a lady explains some dancy new cat based technology", "video_id": "video12967", "sen_id": 203677}, {"caption": "many people are taking their cats in the office", "video_id": "video12967", "sen_id": 203678}, {"caption": "some cats are doing what they do best", "video_id": "video12967", "sen_id": 203679}, {"caption": "title promo for uniquegroupcreationscom showing what services they offer", "video_id": "video11446", "sen_id": 203680}, {"caption": "a man in a suit is holding a globe for a presentation", "video_id": "video11446", "sen_id": 203681}, {"caption": "a man in a suit is holding an animated globe with the words we do the man stops holding the globe and the words change to find us", "video_id": "video11446", "sen_id": 203682}, {"caption": "white rings move over a floating aqua-blue sphere above a man's outstretched palm and generate photographs and words of a company's communication business", "video_id": "video11446", "sen_id": 203683}, {"caption": "a man holds a technological globe containing and surrounded by words", "video_id": "video11446", "sen_id": 203684}, {"caption": "a man in a suit holds a blue orb", "video_id": "video11446", "sen_id": 203685}, {"caption": "a man holds out a computer graphic of a sphere with information and words shooting out from it", "video_id": "video11446", "sen_id": 203686}, {"caption": "a man in a suit with only his torso neck chin and arms visible is holding a blue glowing sphere with words on it there are small video thumb nails floating around the man numerous words with a television production theme in white text are visible then the thumbnails float away and the man turns as he takes his hand away from the blue sphere which floats alone in midair", "video_id": "video11446", "sen_id": 203687}, {"caption": "there is a suit man talking from the studio", "video_id": "video11446", "sen_id": 203688}, {"caption": "a man having globe on his hand", "video_id": "video11446", "sen_id": 203689}, {"caption": "man holding a computer animation of light ball on the side of it links pop out with contact information", "video_id": "video11446", "sen_id": 203690}, {"caption": "a person showing a globe on his hand", "video_id": "video11446", "sen_id": 203691}, {"caption": "a man in gray suit is holding a globe shaped bowl with lights and words surrounding it", "video_id": "video11446", "sen_id": 203692}, {"caption": "a man wore black color dress having blue ball on his hand", "video_id": "video11446", "sen_id": 203693}, {"caption": "a man with his hand below a suspended globe removes his hand and turns and walks away", "video_id": "video11446", "sen_id": 203694}, {"caption": "a person wearing a blue coat with tie and doing advertisement", "video_id": "video11446", "sen_id": 203695}, {"caption": "an advertisment of the bbc news with globe moving round is shown", "video_id": "video11446", "sen_id": 203696}, {"caption": "a man standing wearing a dark suit holding a blue orb", "video_id": "video11446", "sen_id": 203697}, {"caption": "a man in blue coat wearing dress cloth a globe in hand picture shown on screen", "video_id": "video11446", "sen_id": 203698}, {"caption": "a man is holding an image of a planet", "video_id": "video11446", "sen_id": 203699}, {"caption": "people are throwing rocks and tear gas at each other", "video_id": "video11201", "sen_id": 203700}, {"caption": "a day of rage in gaza shows protestors resisting the military", "video_id": "video11201", "sen_id": 203701}, {"caption": "a group of people are protesting in gaza with violence", "video_id": "video11201", "sen_id": 203702}, {"caption": "islamic jihad launch violent attacks in gaza", "video_id": "video11201", "sen_id": 203703}, {"caption": "protesters in gaza throw rocks and fired tear gas grenades at israeli troops as the troops fire tear gas grenades at them while standing next to armored vehicles", "video_id": "video11201", "sen_id": 203704}, {"caption": "there is serious conflict in gaza between citizens and military", "video_id": "video11201", "sen_id": 203705}, {"caption": "israeli soldiers clash with hamas members on the gaza strip", "video_id": "video11201", "sen_id": 203706}, {"caption": "a bunch people fighting each other in the streets", "video_id": "video11201", "sen_id": 203707}, {"caption": "a man talking about muslim violence around the world", "video_id": "video11201", "sen_id": 203708}, {"caption": "a group of soldiers running through a chaotic street", "video_id": "video11201", "sen_id": 203709}, {"caption": "many protesters running in the streets with bombs going off", "video_id": "video11201", "sen_id": 203710}, {"caption": "a documentary-style news story explains interegional tensions and violence", "video_id": "video11201", "sen_id": 203711}, {"caption": "there are protests in gaza followed by a fight against kids and imf followed by people running from gas", "video_id": "video11201", "sen_id": 203712}, {"caption": "a group of people protesting while carrying flags and soldiers shooting at them", "video_id": "video11201", "sen_id": 203713}, {"caption": "some violent rioting going on in the streets", "video_id": "video11201", "sen_id": 203714}, {"caption": "there was a firing in the middle of the city road", "video_id": "video11201", "sen_id": 203715}, {"caption": "group of peoples making problem in road and police trying to make calm down", "video_id": "video11201", "sen_id": 203716}, {"caption": "a crowd of people are throwing things at other people", "video_id": "video11201", "sen_id": 203717}, {"caption": "people protesting in jerusalem carrying miniatures of al aqsa mosquewaving hamas flags", "video_id": "video11201", "sen_id": 203718}, {"caption": "some people are running around in the streets", "video_id": "video11201", "sen_id": 203719}, {"caption": "a man working on a mechanical machine", "video_id": "video10290", "sen_id": 203720}, {"caption": "a man is working on an engines and showing how to weld it", "video_id": "video10290", "sen_id": 203721}, {"caption": "a man in a black shirt welding a piece of equipment", "video_id": "video10290", "sen_id": 203722}, {"caption": "a man does some welding work on an engine", "video_id": "video10290", "sen_id": 203723}, {"caption": "a man does some welding work on an engine", "video_id": "video10290", "sen_id": 203724}, {"caption": "a blond man works on electronic projects and then explains to the camera", "video_id": "video10290", "sen_id": 203725}, {"caption": "a man is working in the shop trying to fix something", "video_id": "video10290", "sen_id": 203726}, {"caption": "a man in black t-shirt black gloves and safety helmet pulling and welding an engine while sparks fly", "video_id": "video10290", "sen_id": 203727}, {"caption": "a man secribes and demonstrates how he fixes small engines", "video_id": "video10290", "sen_id": 203728}, {"caption": "a man in a black tee shirt talks while working on an engine", "video_id": "video10290", "sen_id": 203729}, {"caption": "man wearing black shirt is show working on an engine while he explains how he works on an engine and welds it", "video_id": "video10290", "sen_id": 203730}, {"caption": "a man working on an engine in a garage", "video_id": "video10290", "sen_id": 203731}, {"caption": "a man wearing gloves putting his hands in the gears of a motor", "video_id": "video10290", "sen_id": 203732}, {"caption": "a man shows how to take care of an engine", "video_id": "video10290", "sen_id": 203733}, {"caption": "a guy describes how to work on an engine by welding some parts", "video_id": "video10290", "sen_id": 203734}, {"caption": "there is a tshirt man repiring a bike", "video_id": "video10290", "sen_id": 203735}, {"caption": "a man in a workshop is working on an engine with step-by-step instructions including welding", "video_id": "video10290", "sen_id": 203736}, {"caption": "a man is fixing and welding things on a machine", "video_id": "video10290", "sen_id": 203737}, {"caption": "a man speaks as he puts a motor machine together", "video_id": "video10290", "sen_id": 203738}, {"caption": "a man is working on and welding on parts of an engines while giving directions", "video_id": "video10290", "sen_id": 203739}, {"caption": "girls sit together in a cafeteria then read a big pink book and later dress as santa clauses", "video_id": "video10706", "sen_id": 203740}, {"caption": "a video pushing for a fetch movie to be made", "video_id": "video10706", "sen_id": 203741}, {"caption": "a woman with blonde hair is talking to other women", "video_id": "video10706", "sen_id": 203742}, {"caption": "women in santa claus costumes hug and then get serious with each other", "video_id": "video10706", "sen_id": 203743}, {"caption": "a clip from watch mojo from mean girls", "video_id": "video10706", "sen_id": 203744}, {"caption": "a redhead girl is trying to fit in to a posse of hot girls during christmas time", "video_id": "video10706", "sen_id": 203745}, {"caption": "a young redheaded girl dances in a santa outfit", "video_id": "video10706", "sen_id": 203746}, {"caption": "a group of mean girls are dressed up as santa's elves but all in red", "video_id": "video10706", "sen_id": 203747}, {"caption": "a red headed woman reads a pink book in a room decorated in pink", "video_id": "video10706", "sen_id": 203748}, {"caption": "lindsay lohan watches her friend read a burn book and pretty woman in santa costumes prance around", "video_id": "video10706", "sen_id": 203749}, {"caption": "a redheaded woman is looking at a pink book and then several women in christmas outfits are running excitedly", "video_id": "video10706", "sen_id": 203750}, {"caption": "there are three girls talking in a cafeteria followed by a girl drinking a drink with an umbrella in it two girls reading a book a girl in a pink shirt speaking girls in christmas outfits running and a girl in a santa hat speaking", "video_id": "video10706", "sen_id": 203751}, {"caption": "a young girls in the school are dressed cute and playing", "video_id": "video10706", "sen_id": 203752}, {"caption": "a group of young girls are dressed and christmas attire and talking", "video_id": "video10706", "sen_id": 203753}, {"caption": "the project was considered to be a possible televison special", "video_id": "video10706", "sen_id": 203754}, {"caption": "a woman talks about and shows clips from the movie mean girls", "video_id": "video10706", "sen_id": 203755}, {"caption": "a woman is talking over clips of the movie mean girls", "video_id": "video10706", "sen_id": 203756}, {"caption": "a girl with red hair reads from a pink notebook", "video_id": "video10706", "sen_id": 203757}, {"caption": "a girl in red book in her hand and many girls dancing sitting in front of table", "video_id": "video10706", "sen_id": 203758}, {"caption": "some women in santa claus outfits are talking to each other", "video_id": "video10706", "sen_id": 203759}, {"caption": "a man is showing some martial arts moves", "video_id": "video11249", "sen_id": 203760}, {"caption": "man in jean shorts showing how to do a cork screw flip", "video_id": "video11249", "sen_id": 203761}, {"caption": "a man is jumping around in his yard outside", "video_id": "video11249", "sen_id": 203762}, {"caption": "a young man walks on a house lawn and spins in the air with little effort and lands slightly off balance near a tree planter and slide", "video_id": "video11249", "sen_id": 203763}, {"caption": "a man walks barefoot and spins around in a so-called corkscrew in green grass", "video_id": "video11249", "sen_id": 203764}, {"caption": "a man in a backyard twirling in the air", "video_id": "video11249", "sen_id": 203765}, {"caption": "man practices his spins in the grass lawn before going on the ice to skate", "video_id": "video11249", "sen_id": 203766}, {"caption": "a man is black shorts demonstrates how to do a corkscrew", "video_id": "video11249", "sen_id": 203767}, {"caption": "a man in shorts barefoot is jumping around the yard", "video_id": "video11249", "sen_id": 203768}, {"caption": "a man jumps around in circles in their yard", "video_id": "video11249", "sen_id": 203769}, {"caption": "a young man talking about how to learn the corkscrew", "video_id": "video11249", "sen_id": 203770}, {"caption": "i boy with dark hair and white shirt jumping in his back yard", "video_id": "video11249", "sen_id": 203771}, {"caption": "a guy spinning around in the yard", "video_id": "video11249", "sen_id": 203772}, {"caption": "a man is giving a tutorial on how to do a 'corkscrew' spin", "video_id": "video11249", "sen_id": 203773}, {"caption": "a lone man in a backyard appears and does two spinning jumps before walking away", "video_id": "video11249", "sen_id": 203774}, {"caption": "a guy walking and moving movement on the ground", "video_id": "video11249", "sen_id": 203775}, {"caption": "a young man demonstrates and describes dance moves in his back yard", "video_id": "video11249", "sen_id": 203776}, {"caption": "a boy wearing tea shirt and black half paint is playing on green grass ground", "video_id": "video11249", "sen_id": 203777}, {"caption": "a man in greenland is practicing something", "video_id": "video11249", "sen_id": 203778}, {"caption": "a young man demonstrates how to do a dance twirl", "video_id": "video11249", "sen_id": 203779}, {"caption": "an asian man is standing in a gym describing a workout", "video_id": "video11412", "sen_id": 203780}, {"caption": "a man in a black shirt is talking to the camera", "video_id": "video11412", "sen_id": 203781}, {"caption": "an asian male with dark hair and black shirt is talking in a studio", "video_id": "video11412", "sen_id": 203782}, {"caption": "the young man is explaining something in a big hall", "video_id": "video11412", "sen_id": 203783}, {"caption": "a boy stand sin the wooden floorhe explains strongly about something", "video_id": "video11412", "sen_id": 203784}, {"caption": "guy in black tshirt talking to the camera", "video_id": "video11412", "sen_id": 203785}, {"caption": "a black t-shirt man talking inside a hall", "video_id": "video11412", "sen_id": 203786}, {"caption": "an asian man is talking to the camera while gesturing with his hands", "video_id": "video11412", "sen_id": 203787}, {"caption": "piechien one man talks about something very interesting", "video_id": "video11412", "sen_id": 203788}, {"caption": "the boy in black shirt talks by standing the room made up of wooden floor", "video_id": "video11412", "sen_id": 203789}, {"caption": "a guy in a black shirt is talking about something", "video_id": "video11412", "sen_id": 203790}, {"caption": "a man standing in a room talking to a camera", "video_id": "video11412", "sen_id": 203791}, {"caption": "a man is standing and talking about an item that could help you", "video_id": "video11412", "sen_id": 203792}, {"caption": "a black dress guy explaining about something in his home", "video_id": "video11412", "sen_id": 203793}, {"caption": "a young man discusses a physical technique in a gym", "video_id": "video11412", "sen_id": 203794}, {"caption": "a man in a black shirt is talking about sometyhing", "video_id": "video11412", "sen_id": 203795}, {"caption": "a person in a black tshirt talking about how something helped him a lot", "video_id": "video11412", "sen_id": 203796}, {"caption": "a kung fu instructor discusses a technique he uses for training", "video_id": "video11412", "sen_id": 203797}, {"caption": "the man in black shirt is standing in a hall and is giving a speech", "video_id": "video11412", "sen_id": 203798}, {"caption": "a man in a black shirt is talking to the camera", "video_id": "video11412", "sen_id": 203799}, {"caption": "a man in a grey jacket blue tie and black glasses is talking about churches", "video_id": "video12961", "sen_id": 203800}, {"caption": "a comedic news anchor talks about a story involving church issues", "video_id": "video12961", "sen_id": 203801}, {"caption": "a man with spectacles and wearing a grey coloured coat is saying something", "video_id": "video12961", "sen_id": 203802}, {"caption": "there is a suit man talking from the studio", "video_id": "video12961", "sen_id": 203803}, {"caption": "last week tonight with john oliver news reporter", "video_id": "video12961", "sen_id": 203804}, {"caption": "the news reader is wearing a black suit and blue designed tie and sitting in a really beautiful background", "video_id": "video12961", "sen_id": 203805}, {"caption": "a man is anchoring and talking about churches and people faith", "video_id": "video12961", "sen_id": 203806}, {"caption": "a person in grey suit and spectacles is talking", "video_id": "video12961", "sen_id": 203807}, {"caption": "the news reader is wearing a black suit and blue designed tie and talking about churches", "video_id": "video12961", "sen_id": 203808}, {"caption": "a news reader wearing reading glasses is talking about church", "video_id": "video12961", "sen_id": 203809}, {"caption": "a news program anchor is talking about a fast food restaurant chain", "video_id": "video12961", "sen_id": 203810}, {"caption": "there is mena men in black suit is telling news in news room", "video_id": "video12961", "sen_id": 203811}, {"caption": "a man on a talk show discusses american churches", "video_id": "video12961", "sen_id": 203812}, {"caption": "john oliver talks about churches that exploit people for monetary profit", "video_id": "video12961", "sen_id": 203813}, {"caption": "a person in coat with blue tie siting on the table and giving speech about churchs", "video_id": "video12961", "sen_id": 203814}, {"caption": "a suit man talking in front of a table", "video_id": "video12961", "sen_id": 203815}, {"caption": "church one news reporter talks about something in", "video_id": "video12961", "sen_id": 203816}, {"caption": "a tv presenter wearing glasses giving an intro of a news piece regarding the churches of usa", "video_id": "video12961", "sen_id": 203817}, {"caption": "guy in glasses with suit and tie talking to the camera", "video_id": "video12961", "sen_id": 203818}, {"caption": "a man in glasses is speaking on a tv show", "video_id": "video12961", "sen_id": 203819}, {"caption": "a debatable tweet about snipers killing in the war", "video_id": "video12912", "sen_id": 203820}, {"caption": "a picture of a tweet someone wrote about snipers", "video_id": "video12912", "sen_id": 203821}, {"caption": "a news correspondent is talking about a tweet involving snipers", "video_id": "video12912", "sen_id": 203822}, {"caption": "a text on cnbc is from twitter account about ww2 event", "video_id": "video12912", "sen_id": 203823}, {"caption": "a newsman reads a quote from michael moore criticizing snipers becuase his uncle was shot by one in world war ii", "video_id": "video12912", "sen_id": 203824}, {"caption": "a tweet from michael moore about snipers being cowards is shown on squawk box", "video_id": "video12912", "sen_id": 203825}, {"caption": "a twitter message revealing that the posters uncle was killed by a sniper", "video_id": "video12912", "sen_id": 203826}, {"caption": "text is shown on screen describing a personal world war 2 event", "video_id": "video12912", "sen_id": 203827}, {"caption": "cnbc newsman reading a twitter post having to do with snipers", "video_id": "video12912", "sen_id": 203828}, {"caption": "a tweet from documentary filmmaker michael moore is analyzed on a news program", "video_id": "video12912", "sen_id": 203829}, {"caption": "a cnbc tv show reading a negative twitter tweet about professional snipers", "video_id": "video12912", "sen_id": 203830}, {"caption": "a man reading some twitter messages in the news", "video_id": "video12912", "sen_id": 203831}, {"caption": "a twit of michael moore is splash screen on cnbc news channel", "video_id": "video12912", "sen_id": 203832}, {"caption": "a person on a news show talks about how bad snipers are", "video_id": "video12912", "sen_id": 203833}, {"caption": "some text in a box is being shown on the tv", "video_id": "video12912", "sen_id": 203834}, {"caption": "a message that states that sniper are coward and they will shoot from the back and they are not heroes", "video_id": "video12912", "sen_id": 203835}, {"caption": "cnbs news reporter is narrating a tweet from michael moore", "video_id": "video12912", "sen_id": 203836}, {"caption": "words written in dark blue with blue designs in background", "video_id": "video12912", "sen_id": 203837}, {"caption": "the news in squank box it is on the screen the reports", "video_id": "video12912", "sen_id": 203838}, {"caption": "some text is being shown on the tv news", "video_id": "video12912", "sen_id": 203839}, {"caption": "couples being interviewed about music on their devices", "video_id": "video11936", "sen_id": 203840}, {"caption": "a man asks different people about what music they listen to", "video_id": "video11936", "sen_id": 203841}, {"caption": "a man is interviewing people about musical tastes", "video_id": "video11936", "sen_id": 203842}, {"caption": "various men and women list recording artists that they have on their ipods", "video_id": "video11936", "sen_id": 203843}, {"caption": "people in a sunny place are being asked interview questions", "video_id": "video11936", "sen_id": 203844}, {"caption": "young men and women discuss what is on their ipods", "video_id": "video11936", "sen_id": 203845}, {"caption": "a man and woman being interviewed outside on the streets of a city in front of a graffitti filled wall", "video_id": "video11936", "sen_id": 203846}, {"caption": "a guy in grey t-shirt is interviewing a couple looking happy", "video_id": "video11936", "sen_id": 203847}, {"caption": "a man in a black t-shirt interviews various people about what music is on their ipod", "video_id": "video11936", "sen_id": 203848}, {"caption": "several people on the street are asked about what music they listen to", "video_id": "video11936", "sen_id": 203849}, {"caption": "a reporter is interveiwing young people about what musical artists are on their i pods", "video_id": "video11936", "sen_id": 203850}, {"caption": "the two friends in front of the camera interviewed by other person", "video_id": "video11936", "sen_id": 203851}, {"caption": "a man interviewing several people on the side of the street about what music is on their ipad", "video_id": "video11936", "sen_id": 203852}, {"caption": "a man and woman are interviewed about what music they have on their ipods", "video_id": "video11936", "sen_id": 203853}, {"caption": "this is an tv program and take interview in newcoupls", "video_id": "video11936", "sen_id": 203854}, {"caption": "a men and women is talking with eache other its a movie trailer", "video_id": "video11936", "sen_id": 203855}, {"caption": "the two men and one woman are talking with anchor on mike", "video_id": "video11936", "sen_id": 203856}, {"caption": "a interview to the couples the man in red shirt puts the hand on his girls shoulder", "video_id": "video11936", "sen_id": 203857}, {"caption": "here a handsome man in black shirt is talking to a beautiful girl in black dress", "video_id": "video11936", "sen_id": 203858}, {"caption": "a guy with a mic is interviewing some people", "video_id": "video11936", "sen_id": 203859}, {"caption": "a man in a blue shirt and tie is talking about officials", "video_id": "video12159", "sen_id": 203860}, {"caption": "a man discussing how people can use their political science major while referencing barack obama", "video_id": "video12159", "sen_id": 203861}, {"caption": "a man in a blue shirt talking about political science", "video_id": "video12159", "sen_id": 203862}, {"caption": "a man in a suit describes how one could use their political sciences major", "video_id": "video12159", "sen_id": 203863}, {"caption": "a man explaining what a person can do with a certain education background", "video_id": "video12159", "sen_id": 203864}, {"caption": "there is a black suit man talking in a meeting", "video_id": "video12159", "sen_id": 203865}, {"caption": "a man in a blue shirt and a striped tie describes career options for someone with a major in political science", "video_id": "video12159", "sen_id": 203866}, {"caption": "its conference then man talks infront of people obama moves out by holding his wife hand", "video_id": "video12159", "sen_id": 203867}, {"caption": "a man in a tie is talking about political behavior and jobs in politics", "video_id": "video12159", "sen_id": 203868}, {"caption": "a man begins to explains what one can achieve with a political science degree", "video_id": "video12159", "sen_id": 203869}, {"caption": "there is a man with suit talking about the president", "video_id": "video12159", "sen_id": 203870}, {"caption": "a man explains what can be done with a political science major while showing pictures from politics", "video_id": "video12159", "sen_id": 203871}, {"caption": "a man discusses the career options for students of political science", "video_id": "video12159", "sen_id": 203872}, {"caption": "advertisement for the benefits of a political major degree depiction of the president as a prime example of the benefits of the degree", "video_id": "video12159", "sen_id": 203873}, {"caption": "bearded guy in tie talking to the camera about barrack obama", "video_id": "video12159", "sen_id": 203874}, {"caption": "a man is speaking about career possibilities for a political science major", "video_id": "video12159", "sen_id": 203875}, {"caption": "a career guidance professional describes what are the options you have if you take up political science as a major subject in your education", "video_id": "video12159", "sen_id": 203876}, {"caption": "a man is talking about science major and working in the government", "video_id": "video12159", "sen_id": 203877}, {"caption": "a commentator talking about political science with still pictures of the president of the united states", "video_id": "video12159", "sen_id": 203878}, {"caption": "obama is in a suit and walking around", "video_id": "video12159", "sen_id": 203879}, {"caption": "an expert on trust in media is interviewed for a british news program", "video_id": "video10077", "sen_id": 203880}, {"caption": "a man is interviewed for a segment of a news program", "video_id": "video10077", "sen_id": 203881}, {"caption": "a man in glasses talks against a red and white backdrop on television", "video_id": "video10077", "sen_id": 203882}, {"caption": "a man speaks to a news reporter about the issue of trust", "video_id": "video10077", "sen_id": 203883}, {"caption": "a man in a black suite talking on a newscast", "video_id": "video10077", "sen_id": 203884}, {"caption": "man on bbc news discussing a way out of homosexuality", "video_id": "video10077", "sen_id": 203885}, {"caption": "a british man discusses renouncing homosexuality on a news program", "video_id": "video10077", "sen_id": 203886}, {"caption": "a man in suit talking about homosexuality among young boys", "video_id": "video10077", "sen_id": 203887}, {"caption": "a man in black suit having a convrsation", "video_id": "video10077", "sen_id": 203888}, {"caption": "a man is talking about homosexuality on a bbc world news program", "video_id": "video10077", "sen_id": 203889}, {"caption": "a man in black suit reading breaking news of the day", "video_id": "video10077", "sen_id": 203890}, {"caption": "a person is being interviewed by another person while sitting at a desk", "video_id": "video10077", "sen_id": 203891}, {"caption": "a man in a suit who is talking about someone wanting to move away from homosexuality and his options that are given to him", "video_id": "video10077", "sen_id": 203892}, {"caption": "a man discusses turning away from homosexuality on news show", "video_id": "video10077", "sen_id": 203893}, {"caption": "bunch of guys in suit and tie talking in the studio", "video_id": "video10077", "sen_id": 203894}, {"caption": "a man in black suit reading top news of the day", "video_id": "video10077", "sen_id": 203895}, {"caption": "a man talks about sexuality in young boys", "video_id": "video10077", "sen_id": 203896}, {"caption": "the men is coat are talking something with each other in the studio", "video_id": "video10077", "sen_id": 203897}, {"caption": "a group of political reporters talk about the issues of an election", "video_id": "video10077", "sen_id": 203898}, {"caption": "an older man talks about young boys moving away from homosexuality", "video_id": "video10077", "sen_id": 203899}, {"caption": "two men wearing vintage clothes are angry at each other", "video_id": "video11928", "sen_id": 203900}, {"caption": "two men are working together as police officers", "video_id": "video11928", "sen_id": 203901}, {"caption": "a clip of the movie seven with brad pitt and morgan freeman", "video_id": "video11928", "sen_id": 203902}, {"caption": "brad pitt and morgan freeman perform scenes from a movie", "video_id": "video11928", "sen_id": 203903}, {"caption": "a man is shown in a bloody shirt here", "video_id": "video11928", "sen_id": 203904}, {"caption": "two police detectives talk to each other and the suspect of some crimes", "video_id": "video11928", "sen_id": 203905}, {"caption": "there is an actor from a movie riding in a car and showing scenes from a movie", "video_id": "video11928", "sen_id": 203906}, {"caption": "morgan freeman and his partner talking to and transporting a serial killer to jail", "video_id": "video11928", "sen_id": 203907}, {"caption": "scenes of the movie seven showing brad pitt as a detective morgan freeman as his partner and kevin spacey as the villain", "video_id": "video11928", "sen_id": 203908}, {"caption": "woman explains about a movie with brad pitt while the trailer is being shown", "video_id": "video11928", "sen_id": 203909}, {"caption": "a women giving a summary of a movie with brad pitt playing an active role", "video_id": "video11928", "sen_id": 203910}, {"caption": "brad pit in a room and then talking through mesh wire in a car", "video_id": "video11928", "sen_id": 203911}, {"caption": "two men wearing brown suits walking up the stairs", "video_id": "video11928", "sen_id": 203912}, {"caption": "and old african american man and a young caucasian man pair up to fight crime", "video_id": "video11928", "sen_id": 203913}, {"caption": "in a scene from a dramatic move starting brad pitt and morgan freeman the characters act out their parts as detectives", "video_id": "video11928", "sen_id": 203914}, {"caption": "a man in white t-shirt explaining something in front of the camera", "video_id": "video11928", "sen_id": 203915}, {"caption": "narrator explains brad pitt and morgan freeman s characters protrayed in a movie", "video_id": "video11928", "sen_id": 203916}, {"caption": "the two mens are speeking something", "video_id": "video11928", "sen_id": 203917}, {"caption": "women talking about the story of a movie", "video_id": "video11928", "sen_id": 203918}, {"caption": "a woman talks about a movie with a serial killer", "video_id": "video11928", "sen_id": 203919}, {"caption": "a man holding a spider on his middle finger in front of his computer", "video_id": "video12594", "sen_id": 203920}, {"caption": "young man listening to rock and playing with a spider on his finger", "video_id": "video12594", "sen_id": 203921}, {"caption": "an insect sits on an individual's middle finger as rock music plays", "video_id": "video12594", "sen_id": 203922}, {"caption": "a guitarist showing the blisters he has received by playing the guitar", "video_id": "video12594", "sen_id": 203923}, {"caption": "a person is doing odd movements with his hands while rock music plays", "video_id": "video12594", "sen_id": 203924}, {"caption": "over rock music someone is playing with what looks like a spider on their finger", "video_id": "video12594", "sen_id": 203925}, {"caption": "a man hearing and enjoying music also a spider in his finger", "video_id": "video12594", "sen_id": 203926}, {"caption": "a bug is laying on a finger calmly without movement", "video_id": "video12594", "sen_id": 203927}, {"caption": "in the middle finger some insect is bitting for the long time", "video_id": "video12594", "sen_id": 203928}, {"caption": "a bug on a middle finger by a desk inside", "video_id": "video12594", "sen_id": 203929}, {"caption": "a species of spider is on display atop a finger", "video_id": "video12594", "sen_id": 203930}, {"caption": "a person showing his hand with a bug on the finger", "video_id": "video12594", "sen_id": 203931}, {"caption": "small spider in middle finger of the person he try to put that on table", "video_id": "video12594", "sen_id": 203932}, {"caption": "a man has a spider stuck to his middle finger", "video_id": "video12594", "sen_id": 203933}, {"caption": "a person is showing the fingers of their hand", "video_id": "video12594", "sen_id": 203934}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video12594", "sen_id": 203935}, {"caption": "some insect in a person s finger and showing it", "video_id": "video12594", "sen_id": 203936}, {"caption": "a man shows a brown recluse spider on his middle finger", "video_id": "video12594", "sen_id": 203937}, {"caption": "someone find a tiny spider and making the spider lay on finger", "video_id": "video12594", "sen_id": 203938}, {"caption": "a person is showing their finger on camera", "video_id": "video12594", "sen_id": 203939}, {"caption": "a few men with accents stand next to a car discussing its features", "video_id": "video12271", "sen_id": 203940}, {"caption": "3 men and a woman are discussing the look of the new voltzwaggon car", "video_id": "video12271", "sen_id": 203941}, {"caption": "several men standing around a car talking about the front end", "video_id": "video12271", "sen_id": 203942}, {"caption": "a group of peolle stand around a dark colored car and talk about the car", "video_id": "video12271", "sen_id": 203943}, {"caption": "four casually dressed men stand outside in front of a building in a parking lot and admire a new model automobile", "video_id": "video12271", "sen_id": 203944}, {"caption": "a few british guys talk about an older black sedan car", "video_id": "video12271", "sen_id": 203945}, {"caption": "three men and a woman are talking about the parts of the car", "video_id": "video12271", "sen_id": 203946}, {"caption": "four people are standing outside discussing their impressions of a new volkswagen sedan", "video_id": "video12271", "sen_id": 203947}, {"caption": "a group of car reporters talk about recent changes to a popular car", "video_id": "video12271", "sen_id": 203948}, {"caption": "men discussing a vw outside infant of a glass front building with a white onning", "video_id": "video12271", "sen_id": 203949}, {"caption": "there is a blue shirt man talking to a guy", "video_id": "video12271", "sen_id": 203950}, {"caption": "two men are speaking about a brand new car", "video_id": "video12271", "sen_id": 203951}, {"caption": "one man talks about a new model car", "video_id": "video12271", "sen_id": 203952}, {"caption": "several guys looking at a car showing a facelift of the grill", "video_id": "video12271", "sen_id": 203953}, {"caption": "a man with a blue shirt is talking", "video_id": "video12271", "sen_id": 203954}, {"caption": "a men explainging car is displayed with its features", "video_id": "video12271", "sen_id": 203955}, {"caption": "a car is on the road and few people seeing the car and arguing", "video_id": "video12271", "sen_id": 203956}, {"caption": "group of man standing around a car discussing how it looks the same as older models", "video_id": "video12271", "sen_id": 203957}, {"caption": "three men and one woman are discussing a new volkswagon car specially the grille and trunk (boot)", "video_id": "video12271", "sen_id": 203958}, {"caption": "three men are standing next to and talking about a volkswagen car", "video_id": "video12271", "sen_id": 203959}, {"caption": "a view from an airplane looking down at a road and buildings", "video_id": "video10833", "sen_id": 203960}, {"caption": "two commentators talking about war drone footage and content", "video_id": "video10833", "sen_id": 203961}, {"caption": "four military men sitting on a council with a large video showing behind them", "video_id": "video10833", "sen_id": 203962}, {"caption": "a plane is shown flying in the sky in the presentation", "video_id": "video10833", "sen_id": 203963}, {"caption": "four commentators are looking at a video in order to find hidden things", "video_id": "video10833", "sen_id": 203964}, {"caption": "a cursor following a highway path and hovering over a stock pile of trucks", "video_id": "video10833", "sen_id": 203965}, {"caption": "a broadcast of two men discussing a flying object", "video_id": "video10833", "sen_id": 203966}, {"caption": "a discussion between two individuals discussing what is evidence and what is not between this aerial clip of trailers large cars", "video_id": "video10833", "sen_id": 203967}, {"caption": "4 person sitting the conference wearing the military dress and talking over the phone", "video_id": "video10833", "sen_id": 203968}, {"caption": "a defense debate with neighbouring country showing evidence of tanks moving along the border of the country", "video_id": "video10833", "sen_id": 203969}, {"caption": "aerial footage of building structures and roads is shown behind four seated judges", "video_id": "video10833", "sen_id": 203970}, {"caption": "the picture of a place is being analysed by someone", "video_id": "video10833", "sen_id": 203971}, {"caption": "a panel of men are sitting and speaking about evidence while a clip is shown on a screen", "video_id": "video10833", "sen_id": 203972}, {"caption": "many military people are sitting in conference with display on back side", "video_id": "video10833", "sen_id": 203973}, {"caption": "four people sit in chairs with a large screen behind them which is zooming in on various tankers and structures", "video_id": "video10833", "sen_id": 203974}, {"caption": "there is a great meeting going on in front of a screen", "video_id": "video10833", "sen_id": 203975}, {"caption": "a clip talking about evidence of convoys driving along the road", "video_id": "video10833", "sen_id": 203976}, {"caption": "one plane is flying in too much of distance in", "video_id": "video10833", "sen_id": 203977}, {"caption": "a man showing the evidence who the agents are another man points him and he says he missed the evidences", "video_id": "video10833", "sen_id": 203978}, {"caption": "a panel of men talking about the military", "video_id": "video10833", "sen_id": 203979}, {"caption": "a computer typing in the answer to an arbitrary question", "video_id": "video10397", "sen_id": 203980}, {"caption": "a man showing how to get deals with x box live", "video_id": "video10397", "sen_id": 203981}, {"caption": "a man performing a demonstration on how to find deals within xbox live", "video_id": "video10397", "sen_id": 203982}, {"caption": "lol xbox fail video tutorial and screencast", "video_id": "video10397", "sen_id": 203983}, {"caption": "men is talking and discussing something about setting", "video_id": "video10397", "sen_id": 203984}, {"caption": "a man is narrating how to use a feature on xbox live", "video_id": "video10397", "sen_id": 203985}, {"caption": "an xbox live video monitor with instructions flashing on it", "video_id": "video10397", "sen_id": 203986}, {"caption": "its about xbox live secret answer typing", "video_id": "video10397", "sen_id": 203987}, {"caption": "the keyboard is typing automatically what is being said", "video_id": "video10397", "sen_id": 203988}, {"caption": "a person shows how to use certain features of the xbox live service", "video_id": "video10397", "sen_id": 203989}, {"caption": "a man explaining how to naviagate thru xbox live", "video_id": "video10397", "sen_id": 203990}, {"caption": "a man talking about xbox live deals and how to be redirected to different ones", "video_id": "video10397", "sen_id": 203991}, {"caption": "the words are automatically typed from the keyboard on the monitor", "video_id": "video10397", "sen_id": 203992}, {"caption": "a british man voices over a user typing a message on the x-box live on-screen key board user is typing lol xbox", "video_id": "video10397", "sen_id": 203993}, {"caption": "it is avedio of computer screen where the titile xbox live is shown on right half of the screen and left half some secret question under this title some foreign language letters seen", "video_id": "video10397", "sen_id": 203994}, {"caption": "there is something impressing matters going on", "video_id": "video10397", "sen_id": 203995}, {"caption": "computer screen vertical keys are pressed", "video_id": "video10397", "sen_id": 203996}, {"caption": "a man on his xbox showing how to connect to deals on xbox live", "video_id": "video10397", "sen_id": 203997}, {"caption": "xbox live walk through with deals", "video_id": "video10397", "sen_id": 203998}, {"caption": "a person is browsing around on their xbox", "video_id": "video10397", "sen_id": 203999}, {"caption": "a couple men are describing some of their favorite movies from amc", "video_id": "video12606", "sen_id": 204000}, {"caption": "a man with a goatee wearing eyeglasses and a white-dotted black shirt responds from a small corner covered with posters", "video_id": "video12606", "sen_id": 204001}, {"caption": "a guy discussing main characters in different movies", "video_id": "video12606", "sen_id": 204002}, {"caption": "a man wearing a black shirt and talking on his youtube channel", "video_id": "video12606", "sen_id": 204003}, {"caption": "a man with a goatee and mustache in a dark shirt is discussing movies", "video_id": "video12606", "sen_id": 204004}, {"caption": "two men are talking about the movie django unchained", "video_id": "video12606", "sen_id": 204005}, {"caption": "a man in spectacles and black shirt is talking", "video_id": "video12606", "sen_id": 204006}, {"caption": "a man gives an opinion about how a character from a movie is misunderstood", "video_id": "video12606", "sen_id": 204007}, {"caption": "a middle aged man with wired rimmed glasses talks about a movie he is reviewing", "video_id": "video12606", "sen_id": 204008}, {"caption": "the man with long beard and black designed dress is talking with someone", "video_id": "video12606", "sen_id": 204009}, {"caption": "man with beard and power glass is telling something", "video_id": "video12606", "sen_id": 204010}, {"caption": "a slightly chubby man with dark hair a moustache a beard and eyeglasses is talking about the main character of a movie", "video_id": "video12606", "sen_id": 204011}, {"caption": "a man is speaking in the you tube channel", "video_id": "video12606", "sen_id": 204012}, {"caption": "a man speaks to the camera for a video segment", "video_id": "video12606", "sen_id": 204013}, {"caption": "a man in a polka dotted shirt is talking about movies", "video_id": "video12606", "sen_id": 204014}, {"caption": "a person in black and white dotted shirt is speaking", "video_id": "video12606", "sen_id": 204015}, {"caption": "two men talk about how well or bad amc movies were made", "video_id": "video12606", "sen_id": 204016}, {"caption": "a man is wearing headphones and talking to a camera", "video_id": "video12606", "sen_id": 204017}, {"caption": "a beared man is talking who wear a black shirt with white dots on it", "video_id": "video12606", "sen_id": 204018}, {"caption": "a man reviewing some movies in his youtbe channel", "video_id": "video12606", "sen_id": 204019}, {"caption": "a doorbell rings and wakes a man up from sleeping in bed", "video_id": "video11715", "sen_id": 204020}, {"caption": "a sleeping man is awakened by the door bell ringing at his house", "video_id": "video11715", "sen_id": 204021}, {"caption": "a doorbell rings and wakens a man who sits up and rubs his eyes", "video_id": "video11715", "sen_id": 204022}, {"caption": "a man is on his bed looking at a laptop and then sleeping and getting up followed by a man in green presenting the number 22", "video_id": "video11715", "sen_id": 204023}, {"caption": "a man is sleeping in bed when he is awakened by the doorbell and receives a package", "video_id": "video11715", "sen_id": 204024}, {"caption": "there is a man awakening from his bedroom", "video_id": "video11715", "sen_id": 204025}, {"caption": "a man sleeping on the bed and wake up", "video_id": "video11715", "sen_id": 204026}, {"caption": "a man is waking up from bed a woman presents a box with the number 22 to the waking man", "video_id": "video11715", "sen_id": 204027}, {"caption": "a door bell rings and wakes up a young man long past morning", "video_id": "video11715", "sen_id": 204028}, {"caption": "a doorbell wakes up a young male with a delivery package with a 22 on it", "video_id": "video11715", "sen_id": 204029}, {"caption": "a man wakes up from bed with the sun shinning bright through the window", "video_id": "video11715", "sen_id": 204030}, {"caption": "tv commercial about a delivery package service that aims to radiate trust and reliability", "video_id": "video11715", "sen_id": 204031}, {"caption": "guy waking up with the ring of bell", "video_id": "video11715", "sen_id": 204032}, {"caption": "a young man wakes up and rises from his bed when his doorbell rings and a delivery man appears", "video_id": "video11715", "sen_id": 204033}, {"caption": "a man in bed in a black shirt is awakened by a doorbell a man in a green shirt and a hat presents a black box with 22 written on it", "video_id": "video11715", "sen_id": 204034}, {"caption": " formerly on his laptop wakes up abruptly to his friend offering a gift", "video_id": "video11715", "sen_id": 204035}, {"caption": "person on a bed get up to answer a door bell", "video_id": "video11715", "sen_id": 204036}, {"caption": "a door bell is ringing and a green tshirt boy is at the door", "video_id": "video11715", "sen_id": 204037}, {"caption": "scene of a man in bed waking to a door bell ringing", "video_id": "video11715", "sen_id": 204038}, {"caption": "a man with a green shirt is smiling", "video_id": "video11715", "sen_id": 204039}, {"caption": "rugby players are running down the field when a man from the other team steals the ball and they all turn and begin running the opposite direction", "video_id": "video11023", "sen_id": 204040}, {"caption": "two rugby teams participate in a game in a large stadium", "video_id": "video11023", "sen_id": 204041}, {"caption": "a great play being made in a rugby match", "video_id": "video11023", "sen_id": 204042}, {"caption": "a clip of multiple people flaying a game of rugby", "video_id": "video11023", "sen_id": 204043}, {"caption": "two groups of rugby players participate in a large game in an outdoor stadium", "video_id": "video11023", "sen_id": 204044}, {"caption": "a highlight video from rugby which probably from australia", "video_id": "video11023", "sen_id": 204045}, {"caption": "a highlight video from rugby which probably from australia", "video_id": "video11023", "sen_id": 204046}, {"caption": "a pair of sportscasters review a play in a rugby match", "video_id": "video11023", "sen_id": 204047}, {"caption": "two teams of men are playing soccer on a green field", "video_id": "video11023", "sen_id": 204048}, {"caption": "a rugby match between a blue team and a blue and white team", "video_id": "video11023", "sen_id": 204049}, {"caption": "clips of the sport rugby and big plays being made", "video_id": "video11023", "sen_id": 204050}, {"caption": "a few men are talking about a soccer game that had happened", "video_id": "video11023", "sen_id": 204051}, {"caption": "in depth commentary of an exciting and entertaining game of rugby", "video_id": "video11023", "sen_id": 204052}, {"caption": "someone was watching the sports channel live program", "video_id": "video11023", "sen_id": 204053}, {"caption": "two teams of rugby players participate in a game in a large stadium", "video_id": "video11023", "sen_id": 204054}, {"caption": "there are some people playing rugby on the ground", "video_id": "video11023", "sen_id": 204055}, {"caption": "group of teams are performing food ball on ground", "video_id": "video11023", "sen_id": 204056}, {"caption": "two rugby teams play a game in a large stadium full of people", "video_id": "video11023", "sen_id": 204057}, {"caption": "a bunch of rugby players chase the loose ball", "video_id": "video11023", "sen_id": 204058}, {"caption": "some people are playing rugby on a field", "video_id": "video11023", "sen_id": 204059}, {"caption": "a large crowd of people are standing while a few make make their way through the crowd", "video_id": "video11035", "sen_id": 204060}, {"caption": "a large crowd of people in bathing suits and casual clothes are partying outdoors", "video_id": "video11035", "sen_id": 204061}, {"caption": "a large crowd of people are gathered around all together", "video_id": "video11035", "sen_id": 204062}, {"caption": "a bunch of people talking to each other outdoors", "video_id": "video11035", "sen_id": 204063}, {"caption": "a man is taking photos of people dressed up fairly nude for an event", "video_id": "video11035", "sen_id": 204064}, {"caption": "a large gathering a people wearing festive costumes are at a party", "video_id": "video11035", "sen_id": 204065}, {"caption": "crowds of people gather in the street and mingle talk and get photographed while dressed in casual clothes or costumes resembling elvis and mythical gods and goddesses", "video_id": "video11035", "sen_id": 204066}, {"caption": "a large crowd of people listen to reggaeton music at a festival", "video_id": "video11035", "sen_id": 204067}, {"caption": "a crowd of people are attending a party wearing costumes", "video_id": "video11035", "sen_id": 204068}, {"caption": "a crowd of people listening to music during a festival", "video_id": "video11035", "sen_id": 204069}, {"caption": "men and women in various costumes mingle at a large costume party", "video_id": "video11035", "sen_id": 204070}, {"caption": "a large crowd has gathered and some of them are semi naked", "video_id": "video11035", "sen_id": 204071}, {"caption": "there is huge crowd talking together and enjoying", "video_id": "video11035", "sen_id": 204072}, {"caption": "many mens and womens are makeup to celebrate some festivals", "video_id": "video11035", "sen_id": 204073}, {"caption": "a crowd of people are standing around", "video_id": "video11035", "sen_id": 204074}, {"caption": "group of people are all appearing in funny dress and enjoying", "video_id": "video11035", "sen_id": 204075}, {"caption": "there are lots of people gathered for a function", "video_id": "video11035", "sen_id": 204076}, {"caption": "there is a big crowd of people amongst which a few are half naked", "video_id": "video11035", "sen_id": 204077}, {"caption": "a crowd of people talking and walking around and some them are dressed up", "video_id": "video11035", "sen_id": 204078}, {"caption": "an exploration of something about an event group of peoples in different dresses", "video_id": "video11035", "sen_id": 204079}, {"caption": "on a rocky shore line a lady in a reshirt waves at the camera", "video_id": "video12703", "sen_id": 204080}, {"caption": "a couple have their picture taken with a large rapid in the background", "video_id": "video12703", "sen_id": 204081}, {"caption": "a mother wearing a hat and sunglasses poses with her daughter who has long hair draped over one shoulder on a rock by a white-water river flowing between boulder formations", "video_id": "video12703", "sen_id": 204082}, {"caption": "video of a family at some fast running water", "video_id": "video12703", "sen_id": 204083}, {"caption": "a man and woman pose for a picture and video on a rocky coast area", "video_id": "video12703", "sen_id": 204084}, {"caption": "a woman in a red shirt and a younger girl in an orange shirt walk along the rocks", "video_id": "video12703", "sen_id": 204085}, {"caption": "two people are siiting on a rock on the beach", "video_id": "video12703", "sen_id": 204086}, {"caption": "a woman and child in red wave from rocks in an area where fast-moving white water flows down in curved paths around boulders", "video_id": "video12703", "sen_id": 204087}, {"caption": "an asian man and woman walk on jagged rocks near a large waterfall", "video_id": "video12703", "sen_id": 204088}, {"caption": "there is a couple wearing hats hiking up a mountain and looking at the waterfalls", "video_id": "video12703", "sen_id": 204089}, {"caption": "a women in red dress taking picture with a girl", "video_id": "video12703", "sen_id": 204090}, {"caption": "a mother and daughter sitting along side of waterfall of mountain and waving her hands", "video_id": "video12703", "sen_id": 204091}, {"caption": "asian tourists walk on jagged rocks near a massive waterfall", "video_id": "video12703", "sen_id": 204092}, {"caption": "a woman and a girl pose in front of water as it rushes over big rocks", "video_id": "video12703", "sen_id": 204093}, {"caption": "couple of woman get their picture taken in front of wterfall", "video_id": "video12703", "sen_id": 204094}, {"caption": "the two women wearing red t-shirt are enjoying near the sea shore", "video_id": "video12703", "sen_id": 204095}, {"caption": "one women and a girl near the beautiful big river", "video_id": "video12703", "sen_id": 204096}, {"caption": "a woman poses for a picture with her child along the oceanside", "video_id": "video12703", "sen_id": 204097}, {"caption": "both are enjoying the beauty of nature with its streams rocks and greenary", "video_id": "video12703", "sen_id": 204098}, {"caption": "two women in red are walking on rocks next to a rushing waterfall", "video_id": "video12703", "sen_id": 204099}, {"caption": "two men covered in blood talking to each other", "video_id": "video10240", "sen_id": 204100}, {"caption": "two bloodied men film a video on their phone", "video_id": "video10240", "sen_id": 204101}, {"caption": "a man's head explodes in front of two men with brown hair while they joke about it", "video_id": "video10240", "sen_id": 204102}, {"caption": "a couple of bloody guys play with some toys and a cell phone", "video_id": "video10240", "sen_id": 204103}, {"caption": "a pair of actors splattered with blood joke around with one another", "video_id": "video10240", "sen_id": 204104}, {"caption": "a man covered in blood use some his camera phone on a body with no head and another man covered in blood shoots him with a toy gun causing the audience to cheer", "video_id": "video10240", "sen_id": 204105}, {"caption": "a famous comedy scene from the movie ironman", "video_id": "video10240", "sen_id": 204106}, {"caption": "there is a wounded man inside the room", "video_id": "video10240", "sen_id": 204107}, {"caption": "two men covered in fake blood exchange farewells", "video_id": "video10240", "sen_id": 204108}, {"caption": "two men stand together holding a cellphone drenched in blood", "video_id": "video10240", "sen_id": 204109}, {"caption": "ben stiller doing a funny bloody scene for a movie", "video_id": "video10240", "sen_id": 204110}, {"caption": "a man in black shirt looks annoyed at the other person", "video_id": "video10240", "sen_id": 204111}, {"caption": "in this comedy skit a head gets blown up", "video_id": "video10240", "sen_id": 204112}, {"caption": "two men were acting in the dram and fans were clapping", "video_id": "video10240", "sen_id": 204113}, {"caption": "a gruesome visuals with violence and blood spread every where", "video_id": "video10240", "sen_id": 204114}, {"caption": "two men are covered in blood as an audience laughs and claps", "video_id": "video10240", "sen_id": 204115}, {"caption": "two men talking and filled with blood", "video_id": "video10240", "sen_id": 204116}, {"caption": "a movie scene shows a man with his head blown off and two men conversing", "video_id": "video10240", "sen_id": 204117}, {"caption": "robert downey jr and ben stiller is perfrorming in tv show", "video_id": "video10240", "sen_id": 204118}, {"caption": "a couple of people are standing and talking", "video_id": "video10240", "sen_id": 204119}, {"caption": "a blonde girl is singing in her music video", "video_id": "video10588", "sen_id": 204120}, {"caption": "a blonde haired woman sings an upbeat song in a music video", "video_id": "video10588", "sen_id": 204121}, {"caption": "a woman sings as she leans on the hood of a car and is also seen picking up and tossing a live lobster", "video_id": "video10588", "sen_id": 204122}, {"caption": "a woman in military fatigues is singing in front of a black car", "video_id": "video10588", "sen_id": 204123}, {"caption": "a girl with blonde hair and a camo shirt is singing a song", "video_id": "video10588", "sen_id": 204124}, {"caption": "a woman sings a song in a video while dressed in army garb", "video_id": "video10588", "sen_id": 204125}, {"caption": "a girl wearing camo wrestles with a lobster in a video", "video_id": "video10588", "sen_id": 204126}, {"caption": "avril lavinge grabs a lobster while singing in an army uniform", "video_id": "video10588", "sen_id": 204127}, {"caption": "a girl sings in a video wearing military colors and dances near a car and rides a car with other girls", "video_id": "video10588", "sen_id": 204128}, {"caption": "an avril lavigne music video of her dressed in army fatigues and dancingsinging", "video_id": "video10588", "sen_id": 204129}, {"caption": "a girl dressed as a punk soldier dances while singing about independance", "video_id": "video10588", "sen_id": 204130}, {"caption": "a woman with long blonde hair a hard hat sunglasses and bullet ammunition", "video_id": "video10588", "sen_id": 204131}, {"caption": "a woman singing sitting on the front of a car in camo", "video_id": "video10588", "sen_id": 204132}, {"caption": "avril lavigne is wearing a helmet and an army jacket in her music video", "video_id": "video10588", "sen_id": 204133}, {"caption": "a woman with blonde hair in fatigues helmet and sunglasses is singing outdoors", "video_id": "video10588", "sen_id": 204134}, {"caption": "a young woman with long blond hair wearing sunglasses combat clothing sings a song", "video_id": "video10588", "sen_id": 204135}, {"caption": "a girl is dancing for a music and song", "video_id": "video10588", "sen_id": 204136}, {"caption": "a woman is singing the song with very feeling in her voice", "video_id": "video10588", "sen_id": 204137}, {"caption": "a woman sitting on a car is singing and dancing", "video_id": "video10588", "sen_id": 204138}, {"caption": "a woman with blonde hair is singing a song", "video_id": "video10588", "sen_id": 204139}, {"caption": "two girls are sleeping on cots in bikinis", "video_id": "video12865", "sen_id": 204140}, {"caption": "woman laying down topless in a sauna and some taking a shower", "video_id": "video12865", "sen_id": 204141}, {"caption": "two naked women lying on wood then taking showers", "video_id": "video12865", "sen_id": 204142}, {"caption": "women in thongs are laying topless in a sauna", "video_id": "video12865", "sen_id": 204143}, {"caption": "two women are lying topless in a sauna then they take a group shower as jazz music plays in the background", "video_id": "video12865", "sen_id": 204144}, {"caption": "there are two naked women laying in a sauna and then get into a shower", "video_id": "video12865", "sen_id": 204145}, {"caption": "two women are lying topless in a sauna then they take a group shower", "video_id": "video12865", "sen_id": 204146}, {"caption": "two women are relaxing on wooden benches in their panties and they take a shower together with their panties on", "video_id": "video12865", "sen_id": 204147}, {"caption": "two ladies lay out and relax at a resort", "video_id": "video12865", "sen_id": 204148}, {"caption": "two woman relax at a spa by enjoying a hot sauna and shower", "video_id": "video12865", "sen_id": 204149}, {"caption": "a hot room at a spa where two scantily clad women lay around while another with long black hair takes a shower", "video_id": "video12865", "sen_id": 204150}, {"caption": "there is a hot women showing a naked body", "video_id": "video12865", "sen_id": 204151}, {"caption": "there is a women removing cloths and going to have bath with a men in bath room", "video_id": "video12865", "sen_id": 204152}, {"caption": "one women sleeping nudely and take nude bathing", "video_id": "video12865", "sen_id": 204153}, {"caption": "two girls in bikinis lay in wooden steam room then shower off", "video_id": "video12865", "sen_id": 204154}, {"caption": "topless woman laying down in a sauna relaxing", "video_id": "video12865", "sen_id": 204155}, {"caption": "jazz music plays while topless women relax at a spa", "video_id": "video12865", "sen_id": 204156}, {"caption": "two people who are naked sit in a sauna together and are hot", "video_id": "video12865", "sen_id": 204157}, {"caption": "lady with only underwear lie on the wooden chair then she takes bath", "video_id": "video12865", "sen_id": 204158}, {"caption": "the young lady in her panties is having a shower bath with her hair open", "video_id": "video12865", "sen_id": 204159}, {"caption": "a man is riding on a bike while holding a surfboard", "video_id": "video12118", "sen_id": 204160}, {"caption": "man in blue shirt and khaki shorts golfing on a sunny day", "video_id": "video12118", "sen_id": 204161}, {"caption": "a man in a hat rides a bike with his surfboard and then goes golfing", "video_id": "video12118", "sen_id": 204162}, {"caption": "a man carries his surfboard while riding his bicycle down the street and then drives a car and a golf cart", "video_id": "video12118", "sen_id": 204163}, {"caption": "a man is riding in on a bicycle with a surfboard other men also speak in a documentary", "video_id": "video12118", "sen_id": 204164}, {"caption": "a man riding a bicycle and carrying a surf board and a couple of men driving away in a golf club", "video_id": "video12118", "sen_id": 204165}, {"caption": "a man carrying a surf board is walking his bicycle and then the same man is riding his bike while carrying his surfboard a man in a car is driving and then we see that man climbing stairs with a golf club a man in a green polo shirt strikes a golf ball and is later seen driving away in a golf cart", "video_id": "video12118", "sen_id": 204166}, {"caption": "a man wearing a wet suit rides a bicycle while he is holding a surf board", "video_id": "video12118", "sen_id": 204167}, {"caption": "a man in a wetsuit carries a surf board on a bike", "video_id": "video12118", "sen_id": 204168}, {"caption": "a man is riding a bike with a surfboard and playing golf", "video_id": "video12118", "sen_id": 204169}, {"caption": "a man carrying a surfboard while pushing a bicycle", "video_id": "video12118", "sen_id": 204170}, {"caption": "a man rides a bike with two surf boards", "video_id": "video12118", "sen_id": 204171}, {"caption": "a man with cap riding his cycle to the shore", "video_id": "video12118", "sen_id": 204172}, {"caption": "person caries the diving board in the hand and he travel in the cycle", "video_id": "video12118", "sen_id": 204173}, {"caption": "a man is caring surfboards on a bicycle wearing a wet suit", "video_id": "video12118", "sen_id": 204174}, {"caption": "men with swiming suit riding bicycle and playing gold", "video_id": "video12118", "sen_id": 204175}, {"caption": "a man is riding a bicycle and diving a car", "video_id": "video12118", "sen_id": 204176}, {"caption": "a man engaging in various sporty behaviors such as golf running and biking", "video_id": "video12118", "sen_id": 204177}, {"caption": "a boy in bycycle skating red dress walking ryding bycycle and man ryding car playing golf and driving car", "video_id": "video12118", "sen_id": 204178}, {"caption": "some various scenes of people walking around", "video_id": "video12118", "sen_id": 204179}, {"caption": "a worm like snake grows into a big green and black snake with big dark eyes", "video_id": "video11523", "sen_id": 204180}, {"caption": "the blind snake slithers through the area it is in", "video_id": "video11523", "sen_id": 204181}, {"caption": "a spiky looking yellow snake head is displayed", "video_id": "video11523", "sen_id": 204182}, {"caption": "a yellow and black scaly snake with black eyes", "video_id": "video11523", "sen_id": 204183}, {"caption": "a yellow and black snake is sitting on a gray branch", "video_id": "video11523", "sen_id": 204184}, {"caption": "a ferocious snake which is green black and yellow color is shown", "video_id": "video11523", "sen_id": 204185}, {"caption": "there are some snakes with great designs", "video_id": "video11523", "sen_id": 204186}, {"caption": "an image of a black and yellow color snake ready to dart", "video_id": "video11523", "sen_id": 204187}, {"caption": "a green snake with dragon like scales sets on a tree branch", "video_id": "video11523", "sen_id": 204188}, {"caption": "a person is showing bunch of snakes on screen", "video_id": "video11523", "sen_id": 204189}, {"caption": "a snake with multi colour is hanging in the tree", "video_id": "video11523", "sen_id": 204190}, {"caption": "an image of a snake is shown with a scientific name and description listed while music is playing", "video_id": "video11523", "sen_id": 204191}, {"caption": "national geographical channel shows a weird snake in with green background", "video_id": "video11523", "sen_id": 204192}, {"caption": "a picture of a green snake with black eyes and pointy skin", "video_id": "video11523", "sen_id": 204193}, {"caption": "a snake seems in yellow color with broad eyes and rough scales on its body", "video_id": "video11523", "sen_id": 204194}, {"caption": "its about various types of snakes pics", "video_id": "video11523", "sen_id": 204195}, {"caption": "a display of snakes is going on", "video_id": "video11523", "sen_id": 204196}, {"caption": "this video shows the image of snake which is in mixed colour of yellow and black", "video_id": "video11523", "sen_id": 204197}, {"caption": "a snake with sharp nose and sharp look", "video_id": "video11523", "sen_id": 204198}, {"caption": "a snake with scales is looking for food", "video_id": "video11523", "sen_id": 204199}, {"caption": "inside a car a man demonstates the use of car brakes as the narrator provides a description", "video_id": "video12662", "sen_id": 204200}, {"caption": "a man with gray hair is putting his foot on the brake in a car", "video_id": "video12662", "sen_id": 204201}, {"caption": "a man sits in the driver's seat while demonstrating the breaking system used in school buses", "video_id": "video12662", "sen_id": 204202}, {"caption": "a man drives a yellow school bus in tennis shoes", "video_id": "video12662", "sen_id": 204203}, {"caption": "a man with a red and white shoe pushing on a pedal", "video_id": "video12662", "sen_id": 204204}, {"caption": "a man with white hair driving a bus", "video_id": "video12662", "sen_id": 204205}, {"caption": "a truck driver learns to use the brakes in a new truck that he is driving", "video_id": "video12662", "sen_id": 204206}, {"caption": "a school-bus driver sits with hands on the wheel steps on a pedal with a foot wearing an athletic shoe and uses his palm to push down on the square button marked parking brake", "video_id": "video12662", "sen_id": 204207}, {"caption": "a bus is shown and a man is telling us how and what things on the bus are used for", "video_id": "video12662", "sen_id": 204208}, {"caption": "a man is driving a school bus and steps on the brake and hits the park button on the dashboard of the bus", "video_id": "video12662", "sen_id": 204209}, {"caption": "a truck driver shows various parts of a semi-truck", "video_id": "video12662", "sen_id": 204210}, {"caption": "some on in a vehicle pressing a peddle and pulling a knob on a deck", "video_id": "video12662", "sen_id": 204211}, {"caption": "there is a old man driving a vehicle with patience", "video_id": "video12662", "sen_id": 204212}, {"caption": "man giving a guide of what a driver is doing in the car", "video_id": "video12662", "sen_id": 204213}, {"caption": "a person explains the usage of air break control from the driver seat", "video_id": "video12662", "sen_id": 204214}, {"caption": "there is a old man starting a car", "video_id": "video12662", "sen_id": 204215}, {"caption": "the person talks about the difference between the pedal brake and emergency brake", "video_id": "video12662", "sen_id": 204216}, {"caption": "school bus one man driving it and tells how to", "video_id": "video12662", "sen_id": 204217}, {"caption": "a man showing a demo of a school bus", "video_id": "video12662", "sen_id": 204218}, {"caption": "a person is being filmed as they drive a bus", "video_id": "video12662", "sen_id": 204219}, {"caption": "a person is putting some chocolate on each cookie", "video_id": "video11904", "sen_id": 204220}, {"caption": "woman talking about baking chocolate macarons", "video_id": "video11904", "sen_id": 204221}, {"caption": "curved and flat tan macarons are lined up in rows on parchment paper while a baker pipes chocolate filling on the flat sides and tops them with the curved pieces", "video_id": "video11904", "sen_id": 204222}, {"caption": "instructions on how to fix some macaroons with chocalat", "video_id": "video11904", "sen_id": 204223}, {"caption": "a woman is giving instructions on how to make baked goods", "video_id": "video11904", "sen_id": 204224}, {"caption": "a woman is making a lot of chocolate cookies while another woman is describing the treat", "video_id": "video11904", "sen_id": 204225}, {"caption": "a woman showing how to top macaroon cookies", "video_id": "video11904", "sen_id": 204226}, {"caption": "a person is filling maroons with chocolate they are prepared to put them into the oven", "video_id": "video11904", "sen_id": 204227}, {"caption": "a woman is describing making chocolate maccaroons", "video_id": "video11904", "sen_id": 204228}, {"caption": "someone is adding chocolate kisses to cookies that have been taken out of the oven", "video_id": "video11904", "sen_id": 204229}, {"caption": "a woman explaining how to fill macaroons and then put the lids on to make sure they look good and consistent", "video_id": "video11904", "sen_id": 204230}, {"caption": "a women talking about making sure the cookies are cool before you put the topping on it", "video_id": "video11904", "sen_id": 204231}, {"caption": "someone kept chocolate on the biscuit and arranging the biscuit and kept on the oven", "video_id": "video11904", "sen_id": 204232}, {"caption": "a woman is making macarons using chocolate as a topping", "video_id": "video11904", "sen_id": 204233}, {"caption": "an english woman is narrating a recipe for macaroons she shows how to assemble them", "video_id": "video11904", "sen_id": 204234}, {"caption": "yellow cookies are being topped with thick chocolate frosting", "video_id": "video11904", "sen_id": 204235}, {"caption": "a person decorating dessert cookies with chocolate frosting", "video_id": "video11904", "sen_id": 204236}, {"caption": "a woman is talking about how to make passion fruit macaroons", "video_id": "video11904", "sen_id": 204237}, {"caption": "a lady is decorating the macaroons with chocolate filling and it is so delicious", "video_id": "video11904", "sen_id": 204238}, {"caption": "a person is making some cookies on a tray", "video_id": "video11904", "sen_id": 204239}, {"caption": "a boy and girl are walking hand in hand when a girl busts between them singing that she doesn't like his girl friend", "video_id": "video12955", "sen_id": 204240}, {"caption": "a man in black and a woman in pink walk into a restaurant and are interrupted by a woman in black who begins to sing to them", "video_id": "video12955", "sen_id": 204241}, {"caption": "a man and a red haired woman walk into restaurant and face off with a dark haired woman who sings", "video_id": "video12955", "sen_id": 204242}, {"caption": "a young man and woman are on a date and the man is being confronted by another woman", "video_id": "video12955", "sen_id": 204243}, {"caption": "a redhead and her boyfriend being accosted by a woman wearing black", "video_id": "video12955", "sen_id": 204244}, {"caption": "a girl is holding hands with a boy and is walking into a restuarant then another girl jumps in and starts singing", "video_id": "video12955", "sen_id": 204245}, {"caption": "the young girl and boy is walking while the one woman is singing the song", "video_id": "video12955", "sen_id": 204246}, {"caption": "a music video of a girl kicking a guy in the behind and singing to him", "video_id": "video12955", "sen_id": 204247}, {"caption": "a woman is hitting a man and singing a song", "video_id": "video12955", "sen_id": 204248}, {"caption": "avril lavigne in black top singing and dancing in her music video", "video_id": "video12955", "sen_id": 204249}, {"caption": "a girl interrupts a couple by singing in front of them", "video_id": "video12955", "sen_id": 204250}, {"caption": "a boy and a girl are walking and another girl follow them", "video_id": "video12955", "sen_id": 204251}, {"caption": "a man with black t-shirt and and a lady with pink dress coming and other lady with black dress dancing", "video_id": "video12955", "sen_id": 204252}, {"caption": "a boy in black dress and girl in pink dress walking and girl singing catching his collar displaying on screen", "video_id": "video12955", "sen_id": 204253}, {"caption": "a red hair women is entering in a cafe along with her friend", "video_id": "video12955", "sen_id": 204254}, {"caption": "there is a boy and a girl standing with a paper in their hand", "video_id": "video12955", "sen_id": 204255}, {"caption": "a man and a woman walk through a diner", "video_id": "video12955", "sen_id": 204256}, {"caption": "a lady with red hair and pink sweater walks into a room", "video_id": "video12955", "sen_id": 204257}, {"caption": "a redhead walks into a restaurant with her boyfriend and is harrassed by the local tramp", "video_id": "video12955", "sen_id": 204258}, {"caption": "music video for by avril lavigne girl kicks another girls boyfriend in the butt", "video_id": "video12955", "sen_id": 204259}, {"caption": "the narrator is talking about an ipad course while showing people cringing about using an ipad", "video_id": "video11915", "sen_id": 204260}, {"caption": "an ipad course can stop the frustration on how to figure it out by yourself", "video_id": "video11915", "sen_id": 204261}, {"caption": "a nervous woman stresses over having to use a computer system", "video_id": "video11915", "sen_id": 204262}, {"caption": "a woman wearing a black blazer is holding an ipad and making faces", "video_id": "video11915", "sen_id": 204263}, {"caption": "there is a picture of a tablet followed by a woman in black holding a tablet and then a couple holding the tablet and then scrolling information", "video_id": "video11915", "sen_id": 204264}, {"caption": "a woman holding a tablet and a couple sitting with a tablet a screen being scrolled up", "video_id": "video11915", "sen_id": 204265}, {"caption": "a couple is learning the uses and techniques on an ipad", "video_id": "video11915", "sen_id": 204266}, {"caption": "a young couple smiling and looking at a tablet", "video_id": "video11915", "sen_id": 204267}, {"caption": "a man and a woman wearing a purple shirt smiling", "video_id": "video11915", "sen_id": 204268}, {"caption": "more datad are displayed on the screen", "video_id": "video11915", "sen_id": 204269}, {"caption": "an advertisement for an ipad video course for beginners", "video_id": "video11915", "sen_id": 204270}, {"caption": "this is a promo for a video ipad course covering everything from beginning to advanced ipad skills with shots of people using ipads", "video_id": "video11915", "sen_id": 204271}, {"caption": "there is a woman in black dressing playing with a tab", "video_id": "video11915", "sen_id": 204272}, {"caption": "a man narrates how the viewer will learn ipad skills in his tutorial", "video_id": "video11915", "sen_id": 204273}, {"caption": "a man describes an computer video course that can be a big help", "video_id": "video11915", "sen_id": 204274}, {"caption": "the lady with a ipad and two persons with an ipad and some instructions", "video_id": "video11915", "sen_id": 204275}, {"caption": "the advertisement of ipad video course is seen with funny photographs", "video_id": "video11915", "sen_id": 204276}, {"caption": "a slideshow of multiple people using an ipad tablet", "video_id": "video11915", "sen_id": 204277}, {"caption": "a girl in black dress color cloth i pad in hand holding other boy and girl sitting and holding i pad screen watching displaying on screen", "video_id": "video11915", "sen_id": 204278}, {"caption": "sexy brunette looking at the tab and showing her facial expression", "video_id": "video11915", "sen_id": 204279}, {"caption": "a man is explaining financial targets about a product on the other side of the screen - a flat lightbulb - on cnbc", "video_id": "video11843", "sen_id": 204280}, {"caption": "a news reporter discusses a new development in the design of light bulbs", "video_id": "video11843", "sen_id": 204281}, {"caption": "man talks about business operations and displays a light-bulb", "video_id": "video11843", "sen_id": 204282}, {"caption": "a man on a news program talks about finances while we see a lightbulb off to the side", "video_id": "video11843", "sen_id": 204283}, {"caption": "an animated picture graphic with an inset of moving hands explain 2016 capital markets", "video_id": "video11843", "sen_id": 204284}, {"caption": "a man discusses the economic possibilities of led lightbulbs on a tv show", "video_id": "video11843", "sen_id": 204285}, {"caption": "a man discusses led bulbs as a person spins a bulb as an example", "video_id": "video11843", "sen_id": 204286}, {"caption": "a compnay leader talks about the prognosis for a company in the future", "video_id": "video11843", "sen_id": 204287}, {"caption": "a company ceo talks about the outlook for the company he leads", "video_id": "video11843", "sen_id": 204288}, {"caption": "a man from amsterdamn talks about his companys goals for the upcoming year", "video_id": "video11843", "sen_id": 204289}, {"caption": "a man with a black shirt talking on cnbc", "video_id": "video11843", "sen_id": 204290}, {"caption": "someone is examining a flattened light bulb on live tv", "video_id": "video11843", "sen_id": 204291}, {"caption": "a woman is turning a light bulb while a man gives a report", "video_id": "video11843", "sen_id": 204292}, {"caption": "a man with black coat is explaining about something in the news channel", "video_id": "video11843", "sen_id": 204293}, {"caption": "a man is talking about new lighting technology", "video_id": "video11843", "sen_id": 204294}, {"caption": "a lightbulb and people switching to led bulbs", "video_id": "video11843", "sen_id": 204295}, {"caption": "a guy explaining what is happening with a company that produces light bulbs and showing one of the light bulbs", "video_id": "video11843", "sen_id": 204296}, {"caption": "a man talks about improving results of their operations the video also shows some type of lightbulb", "video_id": "video11843", "sen_id": 204297}, {"caption": "a news agency talks about transisting to led lighting", "video_id": "video11843", "sen_id": 204298}, {"caption": "there is a man speaking and a lightbulb being showcased in a different window", "video_id": "video11843", "sen_id": 204299}, {"caption": "woman in black is dancing on the street", "video_id": "video12192", "sen_id": 204300}, {"caption": "a woman is dancing and singing outside in the city", "video_id": "video12192", "sen_id": 204301}, {"caption": "lady gaga dancing in her music video for her song edge of glory", "video_id": "video12192", "sen_id": 204302}, {"caption": "woman in a leather frisky suit that is dancing on the floor", "video_id": "video12192", "sen_id": 204303}, {"caption": "a woman in a black dress singing a song and running", "video_id": "video12192", "sen_id": 204304}, {"caption": "a clip from a lady gaga music video", "video_id": "video12192", "sen_id": 204305}, {"caption": "a women in a black leather outfit is dancing around", "video_id": "video12192", "sen_id": 204306}, {"caption": "a person is dancing outside in the streets", "video_id": "video12192", "sen_id": 204307}, {"caption": "a woman with a blunt haircut and wearing a bosom revealing outfit made from black strips exercises her arms on the sidewalk spins on a fire escape and skips down the street", "video_id": "video12192", "sen_id": 204308}, {"caption": "lady gaga dancing around a city for a music video", "video_id": "video12192", "sen_id": 204309}, {"caption": "a person is dancing right outside in the street", "video_id": "video12192", "sen_id": 204310}, {"caption": "wona in a sexy outfit performing in a music video", "video_id": "video12192", "sen_id": 204311}, {"caption": "a woman with black and blonde hair singing", "video_id": "video12192", "sen_id": 204312}, {"caption": "music video showing lady gaga performing the edge of glory in a dark street partially lit by pink and blue lights", "video_id": "video12192", "sen_id": 204313}, {"caption": "a female with black hair wearing s and m leather clothing dances outside on an empty street", "video_id": "video12192", "sen_id": 204314}, {"caption": "a women in black dress posing in different angels", "video_id": "video12192", "sen_id": 204315}, {"caption": "two women in elaborate costumes dance along the street", "video_id": "video12192", "sen_id": 204316}, {"caption": "a women in a black shiny bra and underwear dancing on a fire escape", "video_id": "video12192", "sen_id": 204317}, {"caption": "a girl in black color dress wearing cloth dancing shaking hands walking running singing displaying on screen", "video_id": "video12192", "sen_id": 204318}, {"caption": "a woman is dancing outside in a city", "video_id": "video12192", "sen_id": 204319}, {"caption": "various scenes from a soccer game is displayed while music plays", "video_id": "video11128", "sen_id": 204320}, {"caption": "a series of vicious hits happen in rugby games played in organized leagues", "video_id": "video11128", "sen_id": 204321}, {"caption": "music is playing in the background while images of rugby players are being shown", "video_id": "video11128", "sen_id": 204322}, {"caption": "a soccer player is tackled to the ground as electronic music plays in the background", "video_id": "video11128", "sen_id": 204323}, {"caption": "a man wearing a red and blue shirt tackling a man in white", "video_id": "video11128", "sen_id": 204324}, {"caption": "there is a man running hard with a ball", "video_id": "video11128", "sen_id": 204325}, {"caption": "two teams of rugby players battle it out", "video_id": "video11128", "sen_id": 204326}, {"caption": "an australian rules football player getting tackled in slow motion", "video_id": "video11128", "sen_id": 204327}, {"caption": "a players are hit and fell down the ground", "video_id": "video11128", "sen_id": 204328}, {"caption": "the players of a handball match are being dashed by other team players by mistake and falling down on the floor", "video_id": "video11128", "sen_id": 204329}, {"caption": "a group of teams are playing a sport on a field", "video_id": "video11128", "sen_id": 204330}, {"caption": "the two handball teams are playing handball in the field", "video_id": "video11128", "sen_id": 204331}, {"caption": "soccer match with electronic music playing over the game", "video_id": "video11128", "sen_id": 204332}, {"caption": "its a game where the player is trying to hold ball from another player", "video_id": "video11128", "sen_id": 204333}, {"caption": "loud music plays as a soccer player falls into another player", "video_id": "video11128", "sen_id": 204334}, {"caption": "soccer goalies make dangerous and difficult saves during the game", "video_id": "video11128", "sen_id": 204335}, {"caption": "a player runs with the ball while the opponent team player pushed him", "video_id": "video11128", "sen_id": 204336}, {"caption": "group of players were trying to catch the ball in the ground", "video_id": "video11128", "sen_id": 204337}, {"caption": "two scenes from different soccer games showing a team member being tackled", "video_id": "video11128", "sen_id": 204338}, {"caption": "soccer players go after the ball and get knocked down", "video_id": "video11128", "sen_id": 204339}, {"caption": "several men are in an office applauding and congratulating one in particular", "video_id": "video12993", "sen_id": 204340}, {"caption": "a group of people gather around ashwin to lift him up and congratulate him", "video_id": "video12993", "sen_id": 204341}, {"caption": "a group of people are picking up a boy in a tan jacket and congratulating him", "video_id": "video12993", "sen_id": 204342}, {"caption": "several people applauding and rushing to congratulate one fellow who did a very good job", "video_id": "video12993", "sen_id": 204343}, {"caption": "several people are congratulating a man in yellow and lifting him in the air", "video_id": "video12993", "sen_id": 204344}, {"caption": "a group of people crowd an individual to applaud him", "video_id": "video12993", "sen_id": 204345}, {"caption": "a group of people are congratulating a man in a vest", "video_id": "video12993", "sen_id": 204346}, {"caption": "a man is carried in the air in celebration by an indian mob", "video_id": "video12993", "sen_id": 204347}, {"caption": "guy in yellow tshirt being lifted on shoulders by the crowd", "video_id": "video12993", "sen_id": 204348}, {"caption": "there is a man in jacket hugging a old man", "video_id": "video12993", "sen_id": 204349}, {"caption": "a man is be honored and praised from alot of people and lifted up on their shoulders", "video_id": "video12993", "sen_id": 204350}, {"caption": "a man in a beige jacket entering an office to be congratulated by the staff", "video_id": "video12993", "sen_id": 204351}, {"caption": "group of people meeting the man in yellow t shirt", "video_id": "video12993", "sen_id": 204352}, {"caption": "a group of people encircling an individual to celebrate an accomplishment", "video_id": "video12993", "sen_id": 204353}, {"caption": "crowd of people lifting a single man", "video_id": "video12993", "sen_id": 204354}, {"caption": "in a tamil movie ko hero take nice picture watches it", "video_id": "video12993", "sen_id": 204355}, {"caption": "group of people meeting their friend and having fun", "video_id": "video12993", "sen_id": 204356}, {"caption": "group of peoples are praised a guy", "video_id": "video12993", "sen_id": 204357}, {"caption": "a film cean the man came and so many people came and take him", "video_id": "video12993", "sen_id": 204358}, {"caption": "some people are crowding around a man", "video_id": "video12993", "sen_id": 204359}, {"caption": "a sign for greek food with images is shown as a woman discusses some of the cuisine", "video_id": "video11683", "sen_id": 204360}, {"caption": "a person is holding a menu for a restaurant", "video_id": "video11683", "sen_id": 204361}, {"caption": "an advertisement has a large photograph of a hunk of grilled meat on a thick skewer with pictures of individual entrees along the side", "video_id": "video11683", "sen_id": 204362}, {"caption": "a billboard sign from instabul showing various dishes that can be ordered including gyros cooking on a spit", "video_id": "video11683", "sen_id": 204363}, {"caption": "a demonstration for food is shown on the patio", "video_id": "video11683", "sen_id": 204364}, {"caption": "a clip showing a kebab product from greece", "video_id": "video11683", "sen_id": 204365}, {"caption": "a white menu displays middle eastern food selections", "video_id": "video11683", "sen_id": 204366}, {"caption": "a woman is describing a picture of food which is called a diffrent name from her hometown then what it said on the poster", "video_id": "video11683", "sen_id": 204367}, {"caption": "a women at a restaurant showing viewers the menu while she talks about the food", "video_id": "video11683", "sen_id": 204368}, {"caption": "a camera pans down the box showing each of the features", "video_id": "video11683", "sen_id": 204369}, {"caption": "there are chunks of meat followed by a shish kebap box surrounded by plants", "video_id": "video11683", "sen_id": 204370}, {"caption": "a woman showing a menu of food", "video_id": "video11683", "sen_id": 204371}, {"caption": "a woman talks about kebabs that are shown on a menu she is reading", "video_id": "video11683", "sen_id": 204372}, {"caption": "the front of a box that has an appliance on it as well as pictures of food", "video_id": "video11683", "sen_id": 204373}, {"caption": "a woman describes a doner kebap and compares them to gyros with a sign from bistro istanbul that displays some menu items", "video_id": "video11683", "sen_id": 204374}, {"caption": "there is sign with available food details in the hotel", "video_id": "video11683", "sen_id": 204375}, {"caption": "a woman talking about items on a sign that show pictures of greek food", "video_id": "video11683", "sen_id": 204376}, {"caption": "kebap making the recipe in the restaurant in the", "video_id": "video11683", "sen_id": 204377}, {"caption": "a dish to prepare in kitchen and to serve people", "video_id": "video11683", "sen_id": 204378}, {"caption": "someone is filming a banner outside of a restaurant", "video_id": "video11683", "sen_id": 204379}, {"caption": "two men are sitting and discussing politics on a tv show", "video_id": "video12114", "sen_id": 204380}, {"caption": "two men in suits performing an interview in a room with books in the background", "video_id": "video12114", "sen_id": 204381}, {"caption": "a man in a suit and tie talking about absentee ballots", "video_id": "video12114", "sen_id": 204382}, {"caption": "a man in a gray suit expresses his opinion during a segment of a news show", "video_id": "video12114", "sen_id": 204383}, {"caption": "a man in a black suit talking about politics", "video_id": "video12114", "sen_id": 204384}, {"caption": "two men are discussing what is happening with the republican party", "video_id": "video12114", "sen_id": 204385}, {"caption": "there is a suit man talking in front of a sign", "video_id": "video12114", "sen_id": 204386}, {"caption": "a man wearing a suit and red tie is looking to the right and speaking to the next person", "video_id": "video12114", "sen_id": 204387}, {"caption": "two men are discussing the status of absentee ballots for elections", "video_id": "video12114", "sen_id": 204388}, {"caption": "two men speaking about politics with one man giving the perspective of the republican party and its strategies", "video_id": "video12114", "sen_id": 204389}, {"caption": "a man wearing a suit talking in front of the camera", "video_id": "video12114", "sen_id": 204390}, {"caption": "there is a suit man with red tie talking from the studio", "video_id": "video12114", "sen_id": 204391}, {"caption": "two men in suits and ties are talking to each other", "video_id": "video12114", "sen_id": 204392}, {"caption": "two news commentators talk about the results of a election that is being held", "video_id": "video12114", "sen_id": 204393}, {"caption": "bloomberg politics tv show 2 men one in suit bkue shirt red tie blue shirt blue tie talking about the democrat and republican vite from 2010", "video_id": "video12114", "sen_id": 204394}, {"caption": "the two people discussing some matter in front of the camera", "video_id": "video12114", "sen_id": 204395}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12114", "sen_id": 204396}, {"caption": "bloomberg politics one man talks with the other man", "video_id": "video12114", "sen_id": 204397}, {"caption": "man with balt head wear red tie and ash coathe has inner blue shirt", "video_id": "video12114", "sen_id": 204398}, {"caption": "a man being interviewed about the past successes of the republican party", "video_id": "video12114", "sen_id": 204399}, {"caption": "a lime green sports car is parked by the sidewalk on a city street", "video_id": "video11726", "sen_id": 204400}, {"caption": "walking around a street and then looking at a lime green supercar", "video_id": "video11726", "sen_id": 204401}, {"caption": "a person walks up to a fancy sports car picked up on the side of the road", "video_id": "video11726", "sen_id": 204402}, {"caption": "a city street montage showing several people several cars and lots of high rise buildings", "video_id": "video11726", "sen_id": 204403}, {"caption": "a green sports car has a man getting out of it which has suicide doors", "video_id": "video11726", "sen_id": 204404}, {"caption": "a green luxury sports car is parked on the shoulder of a city street", "video_id": "video11726", "sen_id": 204405}, {"caption": "all cars are parking on a road parking on the road", "video_id": "video11726", "sen_id": 204406}, {"caption": "one new look beautiful cars in back are displayed", "video_id": "video11726", "sen_id": 204407}, {"caption": "a man steps out of a parked green lamborghini", "video_id": "video11726", "sen_id": 204408}, {"caption": "a man gets out of his unique green car with a door that opens upwards", "video_id": "video11726", "sen_id": 204409}, {"caption": "there is a car parking in the roadside", "video_id": "video11726", "sen_id": 204410}, {"caption": "a hellcat sedan is seen standing on the road and its awesome sound can be heard as the engines began to roar", "video_id": "video11726", "sen_id": 204411}, {"caption": "a green car is parking in the side of a road", "video_id": "video11726", "sen_id": 204412}, {"caption": "a green lambo sits on the side of a two lane street", "video_id": "video11726", "sen_id": 204413}, {"caption": "in a parking area many cars have been parked and one person is getting out from a car", "video_id": "video11726", "sen_id": 204414}, {"caption": "there is a street with calm and pleasure environment", "video_id": "video11726", "sen_id": 204415}, {"caption": "a view of a city street with a green sports car parked at the curb", "video_id": "video11726", "sen_id": 204416}, {"caption": "a bright yellow sports car is parked on a street in a big city", "video_id": "video11726", "sen_id": 204417}, {"caption": "there is a yellow sports car parked on the side of the street", "video_id": "video11726", "sen_id": 204418}, {"caption": "a green sports car is parked by the side walk", "video_id": "video11726", "sen_id": 204419}, {"caption": "a man goes through his life in a music video", "video_id": "video10373", "sen_id": 204420}, {"caption": "a person is going over there books trying to study and prepare", "video_id": "video10373", "sen_id": 204421}, {"caption": "adele sings about love lost between two people", "video_id": "video10373", "sen_id": 204422}, {"caption": "a song plays while the video transitions from a scene in a library to two people holding hands", "video_id": "video10373", "sen_id": 204423}, {"caption": "a young man holds the hand of a friend", "video_id": "video10373", "sen_id": 204424}, {"caption": "there is a yellow tshirt man standing with a friend", "video_id": "video10373", "sen_id": 204425}, {"caption": "a sorry sad song with people in it as a common character", "video_id": "video10373", "sen_id": 204426}, {"caption": "the man fiddles with his hands while he pulls a book off the shelf titled antiquity", "video_id": "video10373", "sen_id": 204427}, {"caption": "two guy talking in library then a man sleeps near to women", "video_id": "video10373", "sen_id": 204428}, {"caption": "a woman sings while two people in love are together", "video_id": "video10373", "sen_id": 204429}, {"caption": "there is a yellow tshirt man standing with his friend", "video_id": "video10373", "sen_id": 204430}, {"caption": "a man talking with another man and a music playing", "video_id": "video10373", "sen_id": 204431}, {"caption": "emotional scenes of hand holding waking up and potentially leaving a partner symbolic chapter 5: conclusion is shown near the end", "video_id": "video10373", "sen_id": 204432}, {"caption": "a person holds a book then holds someone hand and reads a book", "video_id": "video10373", "sen_id": 204433}, {"caption": "two young males are being sensual in bed with each other", "video_id": "video10373", "sen_id": 204434}, {"caption": "touching video of two people holding hands set to adele s music", "video_id": "video10373", "sen_id": 204435}, {"caption": "a person meets in the library while a couple holding hands in the bed", "video_id": "video10373", "sen_id": 204436}, {"caption": "sweet hearts are sharing the bed and gets up to open a book", "video_id": "video10373", "sen_id": 204437}, {"caption": "two men in bed together", "video_id": "video10373", "sen_id": 204438}, {"caption": "a man and a women sleeping in a romantic mood on bed", "video_id": "video10373", "sen_id": 204439}, {"caption": "two coworkes are discussing proper work conversation etiquette", "video_id": "video12988", "sen_id": 204440}, {"caption": "an asian man is talking to a redheaded woman in a hall", "video_id": "video12988", "sen_id": 204441}, {"caption": "a scene from a tv show on the ign network", "video_id": "video12988", "sen_id": 204442}, {"caption": "a man and a woman are walking in a office", "video_id": "video12988", "sen_id": 204443}, {"caption": "a young man and woman talk to each other in a hallway", "video_id": "video12988", "sen_id": 204444}, {"caption": "people walk up to a desk and start talking to the receptionist", "video_id": "video12988", "sen_id": 204445}, {"caption": "there is a man in a suit talking in an office and to a woman in a shite shirt while walking down the hall and talking to a receptionist after", "video_id": "video12988", "sen_id": 204446}, {"caption": "a girl is walking and talking to a person in black over coat", "video_id": "video12988", "sen_id": 204447}, {"caption": "there is a women in a jacket walking with a man", "video_id": "video12988", "sen_id": 204448}, {"caption": "one beautiful and lovely women follows a man", "video_id": "video12988", "sen_id": 204449}, {"caption": "a lady and a man are entering in a hotel", "video_id": "video12988", "sen_id": 204450}, {"caption": "a boy sitting and girl in white shirt color and boy in blue color speaking to old lady beside displaying on screen", "video_id": "video12988", "sen_id": 204451}, {"caption": "a women in black coat is talking to another person", "video_id": "video12988", "sen_id": 204452}, {"caption": "an asian man is interacting with a white red headed woman and a black woman", "video_id": "video12988", "sen_id": 204453}, {"caption": "a woman is introduction with a man and another woman", "video_id": "video12988", "sen_id": 204454}, {"caption": "a man and a woman are coming in a hotel and asking some thing on counter", "video_id": "video12988", "sen_id": 204455}, {"caption": "a girl and boy walking in white dress and blue speaking and old lady sitting displaying on screen", "video_id": "video12988", "sen_id": 204456}, {"caption": "there is a beautiful tall woman walking with a short man", "video_id": "video12988", "sen_id": 204457}, {"caption": "agroup of young actors perform a scene together that is comedy related", "video_id": "video12988", "sen_id": 204458}, {"caption": "a man with a bow tie is talking to some women", "video_id": "video12988", "sen_id": 204459}, {"caption": "a person demonstrating how to cook a meal", "video_id": "video11697", "sen_id": 204460}, {"caption": "guy talking about a cooking recipe with pasta toast and more", "video_id": "video11697", "sen_id": 204461}, {"caption": "a person is making a meal using a hot plate and a small toaster oven", "video_id": "video11697", "sen_id": 204462}, {"caption": "an inhome chef shows items he is using for a recipe", "video_id": "video11697", "sen_id": 204463}, {"caption": "a person is holding a green strainer and then shows off the other ingredients", "video_id": "video11697", "sen_id": 204464}, {"caption": "a chef works on a recipe by describing the various ingredients they are including in a recipe", "video_id": "video11697", "sen_id": 204465}, {"caption": "someone placing a strainer near a pot on the stove and touching sauce and opening a toaster oven", "video_id": "video11697", "sen_id": 204466}, {"caption": "a man outside preparing a meal", "video_id": "video11697", "sen_id": 204467}, {"caption": "a man narrates as he cooks a dish in his kitchen", "video_id": "video11697", "sen_id": 204468}, {"caption": "a man gives instructions for cooking a meal", "video_id": "video11697", "sen_id": 204469}, {"caption": "a person is preparing a snack on a micro oven", "video_id": "video11697", "sen_id": 204470}, {"caption": "a man shows his little plastic strainer and his micro oven in his kitchen", "video_id": "video11697", "sen_id": 204471}, {"caption": "a man describing ingredients for a receipe", "video_id": "video11697", "sen_id": 204472}, {"caption": "a person showing different ingredients he will use in the dish", "video_id": "video11697", "sen_id": 204473}, {"caption": "a man is cooking outside and have toaster", "video_id": "video11697", "sen_id": 204474}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11697", "sen_id": 204475}, {"caption": "a man using a restrainer to prepare a dish", "video_id": "video11697", "sen_id": 204476}, {"caption": "a man showing kitchen items of filter and some dish is cooking on stove and bread toaster", "video_id": "video11697", "sen_id": 204477}, {"caption": "a bowl inside kitchen and man preparing dish to serve and eat displaying on screen", "video_id": "video11697", "sen_id": 204478}, {"caption": "a man shows off his strainer and other cooking utilities", "video_id": "video11697", "sen_id": 204479}, {"caption": "a man talking about a metro train in moscow", "video_id": "video10590", "sen_id": 204480}, {"caption": "a news reporter discussing the metro subway of moscow", "video_id": "video10590", "sen_id": 204481}, {"caption": "a lit up people mover escalator underground in moscow", "video_id": "video10590", "sen_id": 204482}, {"caption": "a man wearing a brown blazer is speaking to other riders on an escalator", "video_id": "video10590", "sen_id": 204483}, {"caption": "people ride a descending escalator through a deep white tunnel lit by white cylinders while the other escalators are empty", "video_id": "video10590", "sen_id": 204484}, {"caption": "a man in a suit jacket begins walking down an escalator as a translator talks about the metro and taking a trip around the capital", "video_id": "video10590", "sen_id": 204485}, {"caption": "a guy talking and walking down an esclator full of people in the moscow metro", "video_id": "video10590", "sen_id": 204486}, {"caption": "a man talking as he walks down a long lighted escalator", "video_id": "video10590", "sen_id": 204487}, {"caption": "a man in brown jacket talking on the elevator stairs", "video_id": "video10590", "sen_id": 204488}, {"caption": "a bbc like reporter is explaining something about the russian metro subway system", "video_id": "video10590", "sen_id": 204489}, {"caption": "girls and boys walking in stairs lift moving down and some up displaying on screen", "video_id": "video10590", "sen_id": 204490}, {"caption": "there is a man talking and walking through an elevator", "video_id": "video10590", "sen_id": 204491}, {"caption": "the man is using his native language but translated to english", "video_id": "video10590", "sen_id": 204492}, {"caption": "a man talking about something while going on the escalator", "video_id": "video10590", "sen_id": 204493}, {"caption": "presentation of the moscow metro and its speed", "video_id": "video10590", "sen_id": 204494}, {"caption": "russian metro- city with rushing peple", "video_id": "video10590", "sen_id": 204495}, {"caption": "there is a suit man stepping down from a floor", "video_id": "video10590", "sen_id": 204496}, {"caption": "a man is coming down the escalator at the moscow metro saying that it is considered the most beautiful in this world", "video_id": "video10590", "sen_id": 204497}, {"caption": "a man doing a documentary of modes of public transportation in russia", "video_id": "video10590", "sen_id": 204498}, {"caption": "a man is going down an escalator in a metro in russia", "video_id": "video10590", "sen_id": 204499}, {"caption": "an unseen man is reading and giving commentary on an article displayed on a computer screen", "video_id": "video12656", "sen_id": 204500}, {"caption": "a computer screen displays an article about science and outer space", "video_id": "video12656", "sen_id": 204501}, {"caption": "man talking about a nasa alien life article", "video_id": "video12656", "sen_id": 204502}, {"caption": "a man giving his opinions on an article on nasa trying to find alien life in space", "video_id": "video12656", "sen_id": 204503}, {"caption": "a scientist talks about his theory of life on other planets", "video_id": "video12656", "sen_id": 204504}, {"caption": "nasa and some stuff about other planets and whatnot", "video_id": "video12656", "sen_id": 204505}, {"caption": "a man talking about signs of alien life", "video_id": "video12656", "sen_id": 204506}, {"caption": "a man reading an article which talks about nasa's expectations about finding alien life", "video_id": "video12656", "sen_id": 204507}, {"caption": "a webpage describing nasa's ignorance toward alien life", "video_id": "video12656", "sen_id": 204508}, {"caption": "an online article surrounded by ads and social media links", "video_id": "video12656", "sen_id": 204509}, {"caption": "there is a mask logo in a layout design", "video_id": "video12656", "sen_id": 204510}, {"caption": "the articles reveals that nasa states that there are aliens in other planets", "video_id": "video12656", "sen_id": 204511}, {"caption": "its a video about the space in the computer the sun looks full yellow", "video_id": "video12656", "sen_id": 204512}, {"caption": "news reporter says that signs of allien life will be found by 2025 predicted by nasa s chief scientist", "video_id": "video12656", "sen_id": 204513}, {"caption": "the man talks about the predictability of alien life being found", "video_id": "video12656", "sen_id": 204514}, {"caption": "there is something impressing matters going on", "video_id": "video12656", "sen_id": 204515}, {"caption": "space signs of alien life will be foud by 2025 nasa s chief scientist predicts", "video_id": "video12656", "sen_id": 204516}, {"caption": "a webpage of spacecom is read about nasa and signs of alien life", "video_id": "video12656", "sen_id": 204517}, {"caption": "a person is reading a news about something about space", "video_id": "video12656", "sen_id": 204518}, {"caption": "a scene of space is being shown on a website", "video_id": "video12656", "sen_id": 204519}, {"caption": "a man is sitting at desk next to a screen while speaking about cars and different people on the screen", "video_id": "video10617", "sen_id": 204520}, {"caption": "a man in a plaid shirt talking about different current events celebrities and movies", "video_id": "video10617", "sen_id": 204521}, {"caption": "a man is sitting at a table talking very fast about cars and people", "video_id": "video10617", "sen_id": 204522}, {"caption": "a man does a movie review about a movie that features cars and trucks", "video_id": "video10617", "sen_id": 204523}, {"caption": "a man in a plaid shirt is talking about new chevrolet vehicles", "video_id": "video10617", "sen_id": 204524}, {"caption": "a man with a blue plaid shirt talks quickly explaining interesting videos", "video_id": "video10617", "sen_id": 204525}, {"caption": "a man in a blue plaid shirt sits next to a tv screen and shows videos while he talks quickly", "video_id": "video10617", "sen_id": 204526}, {"caption": "a man in a blue plaid shirt while rhyming about cars", "video_id": "video10617", "sen_id": 204527}, {"caption": "there is a guy speaking really fast about news and cars ads showing in a tv set", "video_id": "video10617", "sen_id": 204528}, {"caption": "a man wearing a plaid shirt and sitting at a wooden desk with a mug and notes comments on individuals cars and events shown on inset videos to his side", "video_id": "video10617", "sen_id": 204529}, {"caption": "a man is speaking quickly about vehicles that are displayed on a screen beside him", "video_id": "video10617", "sen_id": 204530}, {"caption": "the market analyist is telling the market scope and chances to the new brand car", "video_id": "video10617", "sen_id": 204531}, {"caption": "a man in blue shirt describing about cars and other news related things", "video_id": "video10617", "sen_id": 204532}, {"caption": "a man telling about the celebrity which is going on the tv", "video_id": "video10617", "sen_id": 204533}, {"caption": "in a tv channel a man in blue black checked shirt siting and explaining about the cars", "video_id": "video10617", "sen_id": 204534}, {"caption": "the man wearing a plaid shirt sits at the table near the screen and talks", "video_id": "video10617", "sen_id": 204535}, {"caption": "one man driving car fastly and its like that jet", "video_id": "video10617", "sen_id": 204536}, {"caption": "a man is talking in the tv channel about a car", "video_id": "video10617", "sen_id": 204537}, {"caption": "a young man in blue check dress is explaining to about the qualities of a new luxury car", "video_id": "video10617", "sen_id": 204538}, {"caption": "a guy in a plaid shirt is talking about various things", "video_id": "video10617", "sen_id": 204539}, {"caption": "daddy is playing with his young baby son", "video_id": "video11329", "sen_id": 204540}, {"caption": "a man holds a chubby little baby and talks baby talk to it", "video_id": "video11329", "sen_id": 204541}, {"caption": "a person is holding a baby and talking to it and kissing", "video_id": "video11329", "sen_id": 204542}, {"caption": "a man holding up and jiggling a smirking baby", "video_id": "video11329", "sen_id": 204543}, {"caption": "a man holds a baby and talks to it while a woman is filming and talking", "video_id": "video11329", "sen_id": 204544}, {"caption": "there is a man playing with his baby in a room", "video_id": "video11329", "sen_id": 204545}, {"caption": "a man is holding and playing with a happy baby", "video_id": "video11329", "sen_id": 204546}, {"caption": "a man with a small child in his arms playing with child", "video_id": "video11329", "sen_id": 204547}, {"caption": "a man talks to a tiny baby and it stairs at him making gurgling noises before he kisses it", "video_id": "video11329", "sen_id": 204548}, {"caption": "there is a baby looking at a man while they are sitting on the couch", "video_id": "video11329", "sen_id": 204549}, {"caption": "a man holds a baby talking baby talk and kissing the baby while a woman off camera talks inaudibly and laughs", "video_id": "video11329", "sen_id": 204550}, {"caption": "a man is holding a baby and talking to it while people talk in the background he says he loves the baby and kisses it", "video_id": "video11329", "sen_id": 204551}, {"caption": "guy holding and kissing a baby", "video_id": "video11329", "sen_id": 204552}, {"caption": "a dad is playing and talking to his baby while the mother looks on", "video_id": "video11329", "sen_id": 204553}, {"caption": "dad talking to the baby in front of camera", "video_id": "video11329", "sen_id": 204554}, {"caption": "a man is holding a baby and talking to it", "video_id": "video11329", "sen_id": 204555}, {"caption": "a father in a grey shirt plays with his baby wearing a blue outfit and he gives her a kiss", "video_id": "video11329", "sen_id": 204556}, {"caption": "a father lovingly talks and plays with his child and is excited at the response the child give", "video_id": "video11329", "sen_id": 204557}, {"caption": "a father holds his baby and kisses it while making silly noises", "video_id": "video11329", "sen_id": 204558}, {"caption": "a man is playing around with his stupid baby", "video_id": "video11329", "sen_id": 204559}, {"caption": "a drive down the local neighborhood near the crab shop", "video_id": "video11384", "sen_id": 204560}, {"caption": "a local seafood town that cooks their meat correctly", "video_id": "video11384", "sen_id": 204561}, {"caption": "a woman is speaking about seafood while a man rides a tractor through a town", "video_id": "video11384", "sen_id": 204562}, {"caption": "a car speeds along a highway in a densely populated area", "video_id": "video11384", "sen_id": 204563}, {"caption": "a woman talking about locally sourced food while images of a community and crabs are shown", "video_id": "video11384", "sen_id": 204564}, {"caption": "a british woman describes farm life in america", "video_id": "video11384", "sen_id": 204565}, {"caption": "a vehicle drives down a rural area past a tractor and into a residential zone before reaching a place selling crabs", "video_id": "video11384", "sen_id": 204566}, {"caption": "a woman talks about the local food in a rural seaside town", "video_id": "video11384", "sen_id": 204567}, {"caption": "a drive through a rural area past a man riding a tractor", "video_id": "video11384", "sen_id": 204568}, {"caption": "a lady shooting a video from a car some crabs froma local crab meat shop", "video_id": "video11384", "sen_id": 204569}, {"caption": "driving through rural american past a man on a tractor", "video_id": "video11384", "sen_id": 204570}, {"caption": "a water tower in a haze sky a view of the countryside rolls by a man is driving a tractor then there is a bucket of crabs and a sign promotion 'local crabmeat'", "video_id": "video11384", "sen_id": 204571}, {"caption": "a woman talks about simple recipes versus the regular american processed foods", "video_id": "video11384", "sen_id": 204572}, {"caption": "a woman describes her experience with food in a foriegn country", "video_id": "video11384", "sen_id": 204573}, {"caption": "a female voiceover artists talks about crabmeat while a video shows the journey of crab meat from water to land", "video_id": "video11384", "sen_id": 204574}, {"caption": "there is a orange tshirt man driving a truck", "video_id": "video11384", "sen_id": 204575}, {"caption": "a woman riding down the country road passing many old homes", "video_id": "video11384", "sen_id": 204576}, {"caption": "on road man sits on vehicle and drive then its written as local crab meat", "video_id": "video11384", "sen_id": 204577}, {"caption": "a woman is talking about seafood while riding in a car", "video_id": "video11384", "sen_id": 204578}, {"caption": "a race car is driving around on a track", "video_id": "video11384", "sen_id": 204579}, {"caption": "a man in a black suit giving a speech at a special event", "video_id": "video10863", "sen_id": 204580}, {"caption": "tom hanks coming on stage at an awards show to give a speech", "video_id": "video10863", "sen_id": 204581}, {"caption": "tom hanks talks about george lucas at the afi achievement awards", "video_id": "video10863", "sen_id": 204582}, {"caption": "a group of people applaud a man who is getting ready to give a speach", "video_id": "video10863", "sen_id": 204583}, {"caption": "tom hanks walks onstage to present at the afi awards", "video_id": "video10863", "sen_id": 204584}, {"caption": "celebrities clap and cheer as tom hanks begins to give a speech", "video_id": "video10863", "sen_id": 204585}, {"caption": "people applauding as a man takes the stage and talks at a platform", "video_id": "video10863", "sen_id": 204586}, {"caption": "tom hanks speaks at an awards ceremony about star wars", "video_id": "video10863", "sen_id": 204587}, {"caption": "a group of men in formal attire applaud a man who is getting ready to give a speech", "video_id": "video10863", "sen_id": 204588}, {"caption": "tom hanks walks up he is about to give an award out", "video_id": "video10863", "sen_id": 204589}, {"caption": "an actor at a podium in a suite", "video_id": "video10863", "sen_id": 204590}, {"caption": "people applauding as an actor goes to a podium and begins talking", "video_id": "video10863", "sen_id": 204591}, {"caption": "tom hanks stands in front of a microphone for afi tom hanks then begins to talk about star wars", "video_id": "video10863", "sen_id": 204592}, {"caption": "tom hanks describes the opening week of the 1977 film star wars at george lucas's american film institute lifetime achievement award presentation", "video_id": "video10863", "sen_id": 204593}, {"caption": "tom hanks is speaking at an award show about star wars", "video_id": "video10863", "sen_id": 204594}, {"caption": "there is a suit man talking on the stage", "video_id": "video10863", "sen_id": 204595}, {"caption": "tom hanks in formal wear standing at a podium talking in front of a similarly dressed crowd at an award show", "video_id": "video10863", "sen_id": 204596}, {"caption": "a man is talking the stage about a movie of star war", "video_id": "video10863", "sen_id": 204597}, {"caption": "a old man in black coat speaking and audience girls and boys sitting watching speech clapping", "video_id": "video10863", "sen_id": 204598}, {"caption": "a guy behind a podium is giving a speech", "video_id": "video10863", "sen_id": 204599}, {"caption": "several different scenes of people on outdoor basketball courts doing tricks and playing basketball", "video_id": "video12724", "sen_id": 204600}, {"caption": "a group of people are playing basketball and one shoots a basket a group of people are playing basketball and one drops to the ground a boy says what are these grabbing another boy's foot a boy kicks the basketball with his foot and another player grabs it and tries a jump shot", "video_id": "video12724", "sen_id": 204601}, {"caption": "a group of people playing outdoor basketball until someone falls", "video_id": "video12724", "sen_id": 204602}, {"caption": "some kids playing basketball and memeing about it", "video_id": "video12724", "sen_id": 204603}, {"caption": "people play basketball and one man admires the tennis shoe of a player", "video_id": "video12724", "sen_id": 204604}, {"caption": "four young people playing on an outdoor court with a basketball move as if they are performing a choreographed dance under an open sky until a player is hit in the head and falls", "video_id": "video12724", "sen_id": 204605}, {"caption": "young people are playing sports with each other outdoors", "video_id": "video12724", "sen_id": 204606}, {"caption": "some people are playing different games with ball", "video_id": "video12724", "sen_id": 204607}, {"caption": "a men and woman are playing a basketball", "video_id": "video12724", "sen_id": 204608}, {"caption": "several various scenes of street basketball played by teenagers", "video_id": "video12724", "sen_id": 204609}, {"caption": "young people play a game of outdoor basketball", "video_id": "video12724", "sen_id": 204610}, {"caption": "there is someone playing basket ball with lot of fun", "video_id": "video12724", "sen_id": 204611}, {"caption": "there are different type of ball games in the field", "video_id": "video12724", "sen_id": 204612}, {"caption": "young people playing basketball do a series of funny things while on the court", "video_id": "video12724", "sen_id": 204613}, {"caption": "a bunch of friends playing basket ball and in another place two boys are playing while on starts biting the shoelace of another boy", "video_id": "video12724", "sen_id": 204614}, {"caption": "a girl on a basketball court is running around", "video_id": "video12724", "sen_id": 204615}, {"caption": "a men explainging car is displayed with its features", "video_id": "video12724", "sen_id": 204616}, {"caption": "two boys and two girls are playing basket ball", "video_id": "video12724", "sen_id": 204617}, {"caption": "its basket ball game where players are trying to drop the ball into the basket", "video_id": "video12724", "sen_id": 204618}, {"caption": "girls and boys playing with ball basket ball game inside ground displaying on screen", "video_id": "video12724", "sen_id": 204619}, {"caption": "a man uses both hands to push a strip of bacon into the bottom of a white ramekin while a woman mixes the creamy yellow filling in a glass bowl", "video_id": "video12245", "sen_id": 204620}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video12245", "sen_id": 204621}, {"caption": "a dark-haired man and a brunette woman on a cooking show talking about how to prepare a meal", "video_id": "video12245", "sen_id": 204622}, {"caption": "a woman puts a slice of bacon in a small bowl while a man mixes some food in a bigger bowl", "video_id": "video12245", "sen_id": 204623}, {"caption": "a lady is putting strips of bacon into a cup", "video_id": "video12245", "sen_id": 204624}, {"caption": "a woman talks as she shows she makes the bacon she ahs", "video_id": "video12245", "sen_id": 204625}, {"caption": "{}", "video_id": "video12245", "sen_id": 204626}, {"caption": "a woman is talking to a man about mixing and baking while stirring ingredients in a bowl the man then asks about one strip of bacon", "video_id": "video12245", "sen_id": 204627}, {"caption": "a woman puts a slice of bacon in a little cup while a man mashes some potatoes in a bowl", "video_id": "video12245", "sen_id": 204628}, {"caption": "a chef works on a recipe by lining a bowl with a bacon slice", "video_id": "video12245", "sen_id": 204629}, {"caption": "a man is putting a strip of bacon in a small cup for baking while the woman is mixing something white in a bowl", "video_id": "video12245", "sen_id": 204630}, {"caption": "a cook lines ramekins with bacon and mixes food in a bowl", "video_id": "video12245", "sen_id": 204631}, {"caption": "a person demonstrating how to make baked ricotta with bacon", "video_id": "video12245", "sen_id": 204632}, {"caption": "a cook uses fingers from both hands to line a small baking dish with a slice of bacon and a second cook mixes an egg filling in a glass bowl", "video_id": "video12245", "sen_id": 204633}, {"caption": "two people making bacon and a side dish", "video_id": "video12245", "sen_id": 204634}, {"caption": "bacon is arranged in one small bowl and other ingredients are mixed in another bowl", "video_id": "video12245", "sen_id": 204635}, {"caption": "two cooks are working in a kitchen to make baked ricotta with bacon in ramekins", "video_id": "video12245", "sen_id": 204636}, {"caption": "a man and woman mixing up something in a glass bowl", "video_id": "video12245", "sen_id": 204637}, {"caption": "a woman shows a man how to cook dish that uses single strip of bacon in a ceramic container", "video_id": "video12245", "sen_id": 204638}, {"caption": "a woman putting one strip of bacon in a cup to bake and mixing something else in a bowl", "video_id": "video12245", "sen_id": 204639}, {"caption": "multiple women are showing off their bodies in thongs and bras", "video_id": "video10196", "sen_id": 204640}, {"caption": "attractive women in underwear are moving around with emphasis being placed on their buttocks", "video_id": "video10196", "sen_id": 204641}, {"caption": "beautiful young women in string bikinis dance around together", "video_id": "video10196", "sen_id": 204642}, {"caption": "women in bras and underwear dancing gyrating and coyly smiling together", "video_id": "video10196", "sen_id": 204643}, {"caption": "women wearing bikinis and dancing to music", "video_id": "video10196", "sen_id": 204644}, {"caption": "women dressed in swims suits gathered together and dancing", "video_id": "video10196", "sen_id": 204645}, {"caption": "women dance to music in their underwear", "video_id": "video10196", "sen_id": 204646}, {"caption": "a woman wearing a bikini and getting wet", "video_id": "video10196", "sen_id": 204647}, {"caption": "many slim good looking girls showing off their bodies in their panties and bras", "video_id": "video10196", "sen_id": 204648}, {"caption": "women dancing and moving around in very skimpy underwear", "video_id": "video10196", "sen_id": 204649}, {"caption": "women in thong underwear and bras rub their bodies", "video_id": "video10196", "sen_id": 204650}, {"caption": "a women is showing her sexy body with other girls around", "video_id": "video10196", "sen_id": 204651}, {"caption": "women in red does fashion with the clothes", "video_id": "video10196", "sen_id": 204652}, {"caption": "a women are are dancing and very sexy", "video_id": "video10196", "sen_id": 204653}, {"caption": "women dances sensually in lingerie together for a studio", "video_id": "video10196", "sen_id": 204654}, {"caption": "womens are wearing bikini dress and showing their beautiful buttexes and dancing", "video_id": "video10196", "sen_id": 204655}, {"caption": "there is a hot women showing her ass", "video_id": "video10196", "sen_id": 204656}, {"caption": "women in lingerie pose as electronic house music plays", "video_id": "video10196", "sen_id": 204657}, {"caption": "a girls in green and red dress color wearing cloth dancing music displaying on screen", "video_id": "video10196", "sen_id": 204658}, {"caption": "some women are showing off their bodies", "video_id": "video10196", "sen_id": 204659}, {"caption": "in a police car a man is interviewing a police officer while he is driving down a highway at nighttime discussing pulling drivers over for driving offenses", "video_id": "video11427", "sen_id": 204660}, {"caption": "multiple people driving behind a police officer and a black corvette on the highway", "video_id": "video11427", "sen_id": 204661}, {"caption": "a police car dash video of making a traffic stop", "video_id": "video11427", "sen_id": 204662}, {"caption": "a police car pulling in front of a car on the highway", "video_id": "video11427", "sen_id": 204663}, {"caption": "dashcam video of a police stop and the problems they face", "video_id": "video11427", "sen_id": 204664}, {"caption": "a driver moves slowly along a highway and then pulls slowly to the side of the road", "video_id": "video11427", "sen_id": 204665}, {"caption": "a vehicle is running behind another car during night time", "video_id": "video11427", "sen_id": 204666}, {"caption": "in a foreign language with subscript titles a security vehicle is in pursuit of a vehicle the driver explains that he will wait until he can tie a number to the vehicle while another police car in front of the subject encourages the subject to pull over on the bridge", "video_id": "video11427", "sen_id": 204667}, {"caption": "there is a man driving down the highway debating on what he should do", "video_id": "video11427", "sen_id": 204668}, {"caption": "drivers record a police chase through a busy road", "video_id": "video11427", "sen_id": 204669}, {"caption": "there are many number of vehicles on the road", "video_id": "video11427", "sen_id": 204670}, {"caption": "a group of police cars is chasing a car on the highway", "video_id": "video11427", "sen_id": 204671}, {"caption": "a man driving a car and talking about something in road", "video_id": "video11427", "sen_id": 204672}, {"caption": "a car is being driven and a man is talking in a language other than english", "video_id": "video11427", "sen_id": 204673}, {"caption": "a couple of men are in a car discussing how to keep from getting pulled over by the police", "video_id": "video11427", "sen_id": 204674}, {"caption": "a car is following a police car on the road", "video_id": "video11427", "sen_id": 204675}, {"caption": "a dashboard camera shows a road and other cars while the driver and passanger discuss in foreign language what to do", "video_id": "video11427", "sen_id": 204676}, {"caption": "men discuss ways to escape from and deceive the police in a car chase", "video_id": "video11427", "sen_id": 204677}, {"caption": "police officers pulling over a car are wary of being tricked", "video_id": "video11427", "sen_id": 204678}, {"caption": "some one is driving a car at night", "video_id": "video11427", "sen_id": 204679}, {"caption": "woman in a swimsuit gives cooking recipes instructions", "video_id": "video12414", "sen_id": 204680}, {"caption": "a woman in a bikini demonstrates a recipe in her home kitchen", "video_id": "video12414", "sen_id": 204681}, {"caption": "a pretty woman in a bathing suit pouring liquid in a pan", "video_id": "video12414", "sen_id": 204682}, {"caption": "a woman in bikini is adding oil to a pan", "video_id": "video12414", "sen_id": 204683}, {"caption": "a woman in bikini is switching on the stove and then adds oil into the frying pan", "video_id": "video12414", "sen_id": 204684}, {"caption": "there is a woman making a dish in bikini", "video_id": "video12414", "sen_id": 204685}, {"caption": "a woman in a bikini turning on a stove and pouring oil in a pan in the kitchen", "video_id": "video12414", "sen_id": 204686}, {"caption": "a brunette tatooed woman wearing a black bikini with white and pink designs shows the audience to cook", "video_id": "video12414", "sen_id": 204687}, {"caption": "a girl in black dress pan oil pouring vegetables mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12414", "sen_id": 204688}, {"caption": "a woman in a bikini heats a skillet on a gas stove and adds olive oil", "video_id": "video12414", "sen_id": 204689}, {"caption": "a woman in a biking cooking on a stove with a frying pan", "video_id": "video12414", "sen_id": 204690}, {"caption": "a young women in a kitchen talking about some recipe", "video_id": "video12414", "sen_id": 204691}, {"caption": "a tattooed woman in a black bikini is giving a cooking demonstration", "video_id": "video12414", "sen_id": 204692}, {"caption": "this young woman demonstrates how not to cook she should cover her stomach to avoid burning her skin", "video_id": "video12414", "sen_id": 204693}, {"caption": "a stunning women with tattoos cooks while wearing a bikini", "video_id": "video12414", "sen_id": 204694}, {"caption": "there is a woman in bikini making a dish in the kitchen", "video_id": "video12414", "sen_id": 204695}, {"caption": "a woman is wearing a bikini and is adding olive oil to a pan in the kitchen", "video_id": "video12414", "sen_id": 204696}, {"caption": "a lady model cooking something in her home", "video_id": "video12414", "sen_id": 204697}, {"caption": "a lady in bikini is planning for preparing of a meal in a black fry pan kept on a gas stove", "video_id": "video12414", "sen_id": 204698}, {"caption": "a woman with tattoos is standing in a room", "video_id": "video12414", "sen_id": 204699}, {"caption": "financial issues are discussed in a cnbc interview", "video_id": "video10642", "sen_id": 204700}, {"caption": "a news anchor describing the changes in oil", "video_id": "video10642", "sen_id": 204701}, {"caption": "a man talks about the performance of samsung and the economy in general", "video_id": "video10642", "sen_id": 204702}, {"caption": "a man is giving a television interview for a news program", "video_id": "video10642", "sen_id": 204703}, {"caption": "a man with thinning brown hair who is wearing a red tie and a dress suit speaks in front of a los angeles cityscape", "video_id": "video10642", "sen_id": 204704}, {"caption": "a male tv reporter dressed in a red tie and black jacket sits in front of a building skyline and speaks about global cell phone sales", "video_id": "video10642", "sen_id": 204705}, {"caption": "a man in a suit is talking about samsung cell phone sales and the fundamentals", "video_id": "video10642", "sen_id": 204706}, {"caption": "a man in a suite talking behind him is a lot of tall buildings", "video_id": "video10642", "sen_id": 204707}, {"caption": "there is a men telling new about weather", "video_id": "video10642", "sen_id": 204708}, {"caption": "cnbc live los angeles market sell-off russell 2000 index ends upto", "video_id": "video10642", "sen_id": 204709}, {"caption": "guy in suit and tie talking in the newsroom studio", "video_id": "video10642", "sen_id": 204710}, {"caption": "in cnbc tv channel a person in brown coat giving live speech", "video_id": "video10642", "sen_id": 204711}, {"caption": "there is a suit man talking from the studio", "video_id": "video10642", "sen_id": 204712}, {"caption": "a man is reading news of the market trends on cnbc channe", "video_id": "video10642", "sen_id": 204713}, {"caption": "a man in a suit is talking on a tv show", "video_id": "video10642", "sen_id": 204714}, {"caption": "there is man in suit talking about something seriously", "video_id": "video10642", "sen_id": 204715}, {"caption": "in the cnbc share market news channel the market expert is speaking about the market present condition", "video_id": "video10642", "sen_id": 204716}, {"caption": "a man sits in front of a window that shows a brightly lit city while he talks about the price of oil", "video_id": "video10642", "sen_id": 204717}, {"caption": "a man wearing a dark suit being interviewed on cnbc is discussing how businesses are growing financially", "video_id": "video10642", "sen_id": 204718}, {"caption": "a man on tv is talking about some things", "video_id": "video10642", "sen_id": 204719}, {"caption": "a man is showing some wiring techniques for a speaker", "video_id": "video12940", "sen_id": 204720}, {"caption": "a guy in a black hat wearing a black shirt is demonstrating how to wire a box for speakers", "video_id": "video12940", "sen_id": 204721}, {"caption": "a man wearing a black shirt is giving instructions on how to install speakers", "video_id": "video12940", "sen_id": 204722}, {"caption": "a guy in black shirt and a cap is working on something", "video_id": "video12940", "sen_id": 204723}, {"caption": "there is a man with black shirt talking about a box", "video_id": "video12940", "sen_id": 204724}, {"caption": "a man explaining how to connect some cables for the speaker", "video_id": "video12940", "sen_id": 204725}, {"caption": "one man talks about the wire in connection", "video_id": "video12940", "sen_id": 204726}, {"caption": "a guy talking how to wire some cables", "video_id": "video12940", "sen_id": 204727}, {"caption": "a man wearing a black hat shows how to wire up a car audio system", "video_id": "video12940", "sen_id": 204728}, {"caption": "a man with a big hat talks about wiring electronics outside", "video_id": "video12940", "sen_id": 204729}, {"caption": "a young man demonstrates how to wire sub woofers for his car", "video_id": "video12940", "sen_id": 204730}, {"caption": "there is a black shirt man repairing his music system", "video_id": "video12940", "sen_id": 204731}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video12940", "sen_id": 204732}, {"caption": "a person in black dress arranging amplifier and cutting electric wire", "video_id": "video12940", "sen_id": 204733}, {"caption": "guy in black dress and cap showing on how to tie two wires", "video_id": "video12940", "sen_id": 204734}, {"caption": "a man in a black hat is talking about something", "video_id": "video12940", "sen_id": 204735}, {"caption": "there is a man with black dressing setting a box", "video_id": "video12940", "sen_id": 204736}, {"caption": "young man shows us how to wire two single arm sub hoofers", "video_id": "video12940", "sen_id": 204737}, {"caption": "1 amplifier sonic a boy talks about the", "video_id": "video12940", "sen_id": 204738}, {"caption": "buy wear the stead for fashion then he cuts the wire using the knife and try to connect", "video_id": "video12940", "sen_id": 204739}, {"caption": "a young oriental man describing his photos while showing them", "video_id": "video11409", "sen_id": 204740}, {"caption": "a photographer is capturing his surroundings in various settings", "video_id": "video11409", "sen_id": 204741}, {"caption": "several people in dresses the streets at an event", "video_id": "video11409", "sen_id": 204742}, {"caption": "showing scenes in europe of people in various fashions", "video_id": "video11409", "sen_id": 204743}, {"caption": "a person talking about the exhibition of pictures documentary and showing many people outside the venue", "video_id": "video11409", "sen_id": 204744}, {"caption": "a young artists is discussing how he wants the shoot to go", "video_id": "video11409", "sen_id": 204745}, {"caption": "one smart man taking photos in crowd so nicely", "video_id": "video11409", "sen_id": 204746}, {"caption": "an asian man in a hat talks about his exhibition", "video_id": "video11409", "sen_id": 204747}, {"caption": "a man speaking of making a funny document of normal street style", "video_id": "video11409", "sen_id": 204748}, {"caption": "a man is speaking about documentary and a scene playing of public", "video_id": "video11409", "sen_id": 204749}, {"caption": "a lot of people on open area one person taking photo and all phots framed and arranged to one hall", "video_id": "video11409", "sen_id": 204750}, {"caption": "a man is explaining the exhibition items very well", "video_id": "video11409", "sen_id": 204751}, {"caption": "a man in a white shirt is describing how he wants to cover the exhibition", "video_id": "video11409", "sen_id": 204752}, {"caption": "so many pictures and many people are running on roads and some people are doing their works", "video_id": "video11409", "sen_id": 204753}, {"caption": "the people pose for pictures on the streets of the city", "video_id": "video11409", "sen_id": 204754}, {"caption": "there is a large crowd walking and a boy is talking", "video_id": "video11409", "sen_id": 204755}, {"caption": "one photographer taking lots of fotos in crowd areas", "video_id": "video11409", "sen_id": 204756}, {"caption": "a model walks acroos the room wearing the latest fashion", "video_id": "video11409", "sen_id": 204757}, {"caption": "multiple shots of people on the street narrated by a photographer discussing an exhibition", "video_id": "video11409", "sen_id": 204758}, {"caption": "some people are walking around a busy street", "video_id": "video11409", "sen_id": 204759}, {"caption": "a person hand mixing a dough in a glass dish", "video_id": "video10860", "sen_id": 204760}, {"caption": "a person is stirring flour and water together to make dough", "video_id": "video10860", "sen_id": 204761}, {"caption": "a person is mixing water and flour to make a dough", "video_id": "video10860", "sen_id": 204762}, {"caption": "a candy dish bowl has white stuff and water added while two hands are mixing it and turning the bowl at the same time", "video_id": "video10860", "sen_id": 204763}, {"caption": "dough is being mixed in a clear glass bowl", "video_id": "video10860", "sen_id": 204764}, {"caption": "a woman kneads a dough that she is making from scratch", "video_id": "video10860", "sen_id": 204765}, {"caption": "a chef works on a recipe by slowly kneading a bowl of dough", "video_id": "video10860", "sen_id": 204766}, {"caption": "a lady kneads a flour dough in mixture in a glass bowl with her hands", "video_id": "video10860", "sen_id": 204767}, {"caption": "a person making dough and softening it", "video_id": "video10860", "sen_id": 204768}, {"caption": "a person squeezing flour and adding a little water as they squeeze it", "video_id": "video10860", "sen_id": 204769}, {"caption": "a hand is mixing a powder in a clear bowl and adds a water", "video_id": "video10860", "sen_id": 204770}, {"caption": "here the lady is in a bowl consist of flour and then she is adding a oil in to it and mixing it with water and making it to soft dough", "video_id": "video10860", "sen_id": 204771}, {"caption": "a chef is preparing a dish by adding the ingredients one by one the name and quantity of the ingredients are subtitled in the video", "video_id": "video10860", "sen_id": 204772}, {"caption": "a female chef works on a dough by adding water to a bowl of dry ingredients", "video_id": "video10860", "sen_id": 204773}, {"caption": "a bowl inside kitchen mixing in plate hands to prepare dish to serve to eat", "video_id": "video10860", "sen_id": 204774}, {"caption": "someone is mixing up flour in a bowl", "video_id": "video10860", "sen_id": 204775}, {"caption": "a women is kneading a dough with hands in a plastic bowl", "video_id": "video10860", "sen_id": 204776}, {"caption": "women showing the procedure by adding the water to make soft dough", "video_id": "video10860", "sen_id": 204777}, {"caption": "the lady add oil and milk with the flour in a wide bowl she wear couple of bangles in the hand", "video_id": "video10860", "sen_id": 204778}, {"caption": "in a kitchen someone is preparing a delicious dish which is white in colour", "video_id": "video10860", "sen_id": 204779}, {"caption": "a chef explaining how to make a certain recipe along with showing what looks like a stew cooking in a pot", "video_id": "video12237", "sen_id": 204780}, {"caption": "man describing how to prepare vegetables inside a large metal pan", "video_id": "video12237", "sen_id": 204781}, {"caption": "a man discusses cooking pickles while pickles are being stirred in a pot", "video_id": "video12237", "sen_id": 204782}, {"caption": "a large pot is being stirred with pickles in it as a man talks about turning off the heat and then waiting for it to cool", "video_id": "video12237", "sen_id": 204783}, {"caption": "the process of preparing pickles before consuming them", "video_id": "video12237", "sen_id": 204784}, {"caption": "a man is preparing pickles in a pot on a stove", "video_id": "video12237", "sen_id": 204785}, {"caption": "a chef talks about his method for making pickles", "video_id": "video12237", "sen_id": 204786}, {"caption": "a person has put vegetables in vessel and kept for boiling", "video_id": "video12237", "sen_id": 204787}, {"caption": "a cheif is telling and showing how to cook food", "video_id": "video12237", "sen_id": 204788}, {"caption": "a man boiling the vegaables", "video_id": "video12237", "sen_id": 204789}, {"caption": "the man talks about how to cooks the chilled pickled", "video_id": "video12237", "sen_id": 204790}, {"caption": "a man is making a pickle recipe", "video_id": "video12237", "sen_id": 204791}, {"caption": "vegetables are put in a vessel and kept for boiling", "video_id": "video12237", "sen_id": 204792}, {"caption": "women cooking and stiring the vegetble", "video_id": "video12237", "sen_id": 204793}, {"caption": "a cook mixes up ingredients in a pan to make a stew", "video_id": "video12237", "sen_id": 204794}, {"caption": "a person is cooking some food in a pot", "video_id": "video12237", "sen_id": 204795}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12237", "sen_id": 204796}, {"caption": "a guy is cooking the cucumbers to make pickle he is also guiding the people about how much to cook and when to turn off the heat and bring the cooked cucumbers to room temperature and then we are ready to prepare our pickle", "video_id": "video12237", "sen_id": 204797}, {"caption": "the man moves around the pickles in the boiling water", "video_id": "video12237", "sen_id": 204798}, {"caption": "a cook stirs a soup full of veggies in a pot", "video_id": "video12237", "sen_id": 204799}, {"caption": "a pretty blond woman sings a soft song in a music video with bright lighting", "video_id": "video12827", "sen_id": 204800}, {"caption": "brittney spears starts her music video by turning to the viewer and singing someone to take her hand", "video_id": "video12827", "sen_id": 204801}, {"caption": "britney spears dressed in a white outfit sings a song in front of a white background", "video_id": "video12827", "sen_id": 204802}, {"caption": "brittany spears dressed in white turning toward the camera and singing", "video_id": "video12827", "sen_id": 204803}, {"caption": "dressed all in white against a white background britney spears sings a song", "video_id": "video12827", "sen_id": 204804}, {"caption": "a woman with blonde hair looking at the camera and singing", "video_id": "video12827", "sen_id": 204805}, {"caption": "an angelic woman with long blonde hair surrounded by white light begins to sing", "video_id": "video12827", "sen_id": 204806}, {"caption": "a young women in white dress singing in front of the camera", "video_id": "video12827", "sen_id": 204807}, {"caption": "there is a women in white shirt singing", "video_id": "video12827", "sen_id": 204808}, {"caption": "britney spear is singing a song while walking down a hall", "video_id": "video12827", "sen_id": 204809}, {"caption": "a brief clip of a britney spears music video showcases her performing during production", "video_id": "video12827", "sen_id": 204810}, {"caption": "a girl singing song melodies voicewith long hairs", "video_id": "video12827", "sen_id": 204811}, {"caption": "a female is singing and dancing on a show", "video_id": "video12827", "sen_id": 204812}, {"caption": "after taking the shot the artist began to perform her singing", "video_id": "video12827", "sen_id": 204813}, {"caption": "britney spears appears wearing white in a white room while singing with blonde hair", "video_id": "video12827", "sen_id": 204814}, {"caption": "a advertiesment vedio clip and shoot the girl", "video_id": "video12827", "sen_id": 204815}, {"caption": "it seems to be a film shooting spot and stated by clapping the start indication a pretty young actress in white color top with loose hair is perfoming nicely", "video_id": "video12827", "sen_id": 204816}, {"caption": "a women in white dress singing a song", "video_id": "video12827", "sen_id": 204817}, {"caption": "a white dressed loose hair heroin is singing beautifully", "video_id": "video12827", "sen_id": 204818}, {"caption": "sexy blonde singer britney spears dancing in her music video", "video_id": "video12827", "sen_id": 204819}, {"caption": "two people in the kitchen peeling an apple", "video_id": "video12018", "sen_id": 204820}, {"caption": "a woman uses a cheese grater to grate an apple", "video_id": "video12018", "sen_id": 204821}, {"caption": "two ladies in aprons in a kitchen are cooking as one shreds an apple", "video_id": "video12018", "sen_id": 204822}, {"caption": "a girl softly slice the apple where another girl watching this next to it", "video_id": "video12018", "sen_id": 204823}, {"caption": "a lady yellow dressed watchinganother girl slicing vegetable", "video_id": "video12018", "sen_id": 204824}, {"caption": "one women grating apples in a bowl near the anchor girl", "video_id": "video12018", "sen_id": 204825}, {"caption": "a lady is slicing the fruit with a slicer in to a glass bowl with water and other lady looking it", "video_id": "video12018", "sen_id": 204826}, {"caption": "a women in yellow dress is preparing food in kitchen", "video_id": "video12018", "sen_id": 204827}, {"caption": "lady rubs and slices apple with the slicer and the pieces drops into the bowl below", "video_id": "video12018", "sen_id": 204828}, {"caption": "the woman grates the apple into a bowl of liquid", "video_id": "video12018", "sen_id": 204829}, {"caption": "in the kitchen a lady chopping the fruit with a chopper to a glass bowl and other lady looking it", "video_id": "video12018", "sen_id": 204830}, {"caption": "a woman is grating a fruit into a bowl", "video_id": "video12018", "sen_id": 204831}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12018", "sen_id": 204832}, {"caption": "in a television cooking programme a anchor and dish maker slicing the vegetable with cutter into water filled bowl in kitchen", "video_id": "video12018", "sen_id": 204833}, {"caption": "an indian chef uses a grater to cut up an apple", "video_id": "video12018", "sen_id": 204834}, {"caption": "an apple is being grated bya women in a kithen show", "video_id": "video12018", "sen_id": 204835}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12018", "sen_id": 204836}, {"caption": "the woman grating the apple with the gratter", "video_id": "video12018", "sen_id": 204837}, {"caption": "grating the pealed apple into the bowl of glass", "video_id": "video12018", "sen_id": 204838}, {"caption": "this is an sun tv program and a women scrap the apple", "video_id": "video12018", "sen_id": 204839}, {"caption": "a man is driving a vehicle in the woods", "video_id": "video10879", "sen_id": 204840}, {"caption": "a man is driving a small cargo car", "video_id": "video10879", "sen_id": 204841}, {"caption": "a man is off roading in his small atv with a small payload in the bed", "video_id": "video10879", "sen_id": 204842}, {"caption": "a yellow and black range rover is driving on a dirt road through the woods while a male is talking about it's features", "video_id": "video10879", "sen_id": 204843}, {"caption": "a yellow truck is driving in the field right outside", "video_id": "video10879", "sen_id": 204844}, {"caption": "a man drives a small atv loaded with bags up a very steep hill", "video_id": "video10879", "sen_id": 204845}, {"caption": "a gator vehicle is carrying bags of food or soil to an outdoors location", "video_id": "video10879", "sen_id": 204846}, {"caption": "a small vehicle carrying gardening supplies is driving through a wooded area", "video_id": "video10879", "sen_id": 204847}, {"caption": "a man driving a yellow golf cart filled with sandbags drives through the forest", "video_id": "video10879", "sen_id": 204848}, {"caption": "a man drives a cart up a hill filled with bags on it's flatbed", "video_id": "video10879", "sen_id": 204849}, {"caption": "a man is talking about a work vehicle used in the woods", "video_id": "video10879", "sen_id": 204850}, {"caption": "an off road vehicle carries bags on a country trail going up hill to deliver it", "video_id": "video10879", "sen_id": 204851}, {"caption": "a golf-cart sized cargo vehicle drives uphill in two different shots", "video_id": "video10879", "sen_id": 204852}, {"caption": "a small open door vehicle drives through the woods while a narrator talks about its power steering and sound proofing attributes", "video_id": "video10879", "sen_id": 204853}, {"caption": "a yellow and black atv hauls a load of white bags up the hill", "video_id": "video10879", "sen_id": 204854}, {"caption": "a small electric jeep carries bags of supplies through a field", "video_id": "video10879", "sen_id": 204855}, {"caption": "this forest place is good the track match for this place", "video_id": "video10879", "sen_id": 204856}, {"caption": "an off road yellow and black vehicle travelling along in the grass", "video_id": "video10879", "sen_id": 204857}, {"caption": "a person is driving a golf cart with different bags of stuff in the back", "video_id": "video10879", "sen_id": 204858}, {"caption": "a yellow and black colour jeep was going towards the hill", "video_id": "video10879", "sen_id": 204859}, {"caption": "two men on a yellow raft floating in the ocean", "video_id": "video12247", "sen_id": 204860}, {"caption": "scenes from it's always sunny in philadelphia mainly two men sitting in a raft in the middle of the ocean", "video_id": "video12247", "sen_id": 204861}, {"caption": "two men are adrift on a life raft while one of them yells to a coconut that is floating away in the ocean", "video_id": "video12247", "sen_id": 204862}, {"caption": "the tv show it's always sunny in philadelphia and a few of its short clips", "video_id": "video12247", "sen_id": 204863}, {"caption": "two men are floating in a raft while a rum ham drifts away", "video_id": "video12247", "sen_id": 204864}, {"caption": "two men sitting in a raft yelling at a ball", "video_id": "video12247", "sen_id": 204865}, {"caption": "two men in a small raft scream at a floating ham", "video_id": "video12247", "sen_id": 204866}, {"caption": "two men from 'it's sunny in philadelphia' are floating in a tube out in the middle of the sea", "video_id": "video12247", "sen_id": 204867}, {"caption": "there are two men are talking in a hospital followed by a carousel and two men floating in the ocean in a yellow raft and the carousel again", "video_id": "video12247", "sen_id": 204868}, {"caption": "danny devito floats in a yellow inflatable raft in the ocean", "video_id": "video12247", "sen_id": 204869}, {"caption": "a woman is talking in the background while two men float in a raft and one is talking to a floating ham", "video_id": "video12247", "sen_id": 204870}, {"caption": "2 person in very small floating air bag then the play where the people are taken upside down", "video_id": "video12247", "sen_id": 204871}, {"caption": "two people relaxing in the water bed in water gets scared of seeing an ugly creature going around", "video_id": "video12247", "sen_id": 204872}, {"caption": "danny devito is in a raft out at sea in a scene from always sunny in philadelphia", "video_id": "video12247", "sen_id": 204873}, {"caption": "a woman is narrating a montage of it s always sunny in philadelphia clips", "video_id": "video12247", "sen_id": 204874}, {"caption": "two man loosing the product in the sea while swimming", "video_id": "video12247", "sen_id": 204875}, {"caption": "a man is floating in a raft with another", "video_id": "video12247", "sen_id": 204876}, {"caption": "a black tshirt old man floating in the sea", "video_id": "video12247", "sen_id": 204877}, {"caption": "random movie lines that are fun to shout out loud", "video_id": "video12247", "sen_id": 204878}, {"caption": "a family is travelling in an inflated boat in a sea and they are enjoying it nicely", "video_id": "video12247", "sen_id": 204879}, {"caption": "a news reporter giving general headlines of the daily news", "video_id": "video12221", "sen_id": 204880}, {"caption": "segments of news clippings happening around the world", "video_id": "video12221", "sen_id": 204881}, {"caption": "news that is happening all over the world", "video_id": "video12221", "sen_id": 204882}, {"caption": "three different news stories are previewed at the start of a news broadcast", "video_id": "video12221", "sen_id": 204883}, {"caption": "many men shaking hands over a political agreement", "video_id": "video12221", "sen_id": 204884}, {"caption": "a news reporter does a quick breakdown on a set of stories for the day", "video_id": "video12221", "sen_id": 204885}, {"caption": "several men are standing next to a table and shaking hands with each other", "video_id": "video12221", "sen_id": 204886}, {"caption": "there are some suit persons standing in ameeting", "video_id": "video12221", "sen_id": 204887}, {"caption": "texas family murder iraq reforms coffee affair are news", "video_id": "video12221", "sen_id": 204888}, {"caption": "a news reporter talks about a multi person murder scene in texas", "video_id": "video12221", "sen_id": 204889}, {"caption": "bunch of buys in suit and tie shaking each others hands", "video_id": "video12221", "sen_id": 204890}, {"caption": "there is a suit man attending a meeting with co-workers", "video_id": "video12221", "sen_id": 204891}, {"caption": "new highlights crimes political events and other prime items", "video_id": "video12221", "sen_id": 204892}, {"caption": "a news program news reader explaining about something", "video_id": "video12221", "sen_id": 204893}, {"caption": "a police officer walking while some is arrested in background a man shakes four people hands a man puts coffee grinds in a machine", "video_id": "video12221", "sen_id": 204894}, {"caption": "there is a suit man talking with co-workers", "video_id": "video12221", "sen_id": 204895}, {"caption": "the tv men telling the world news and showing the video clips", "video_id": "video12221", "sen_id": 204896}, {"caption": "a news is reading in the television about various local news", "video_id": "video12221", "sen_id": 204897}, {"caption": "a old man meeting each other paper in hand and boy in blue dress preparing inside kitchen displaying on screen", "video_id": "video12221", "sen_id": 204898}, {"caption": "a man is making coffee inside a place", "video_id": "video12221", "sen_id": 204899}, {"caption": "man is shocked by the beauty of a particular woman", "video_id": "video12911", "sen_id": 204900}, {"caption": "after diving into a pool a man then stands up and apologizes to an onlooking woman", "video_id": "video12911", "sen_id": 204901}, {"caption": "a person jumping into an above ground pool then comes out of the water to stare at a girl", "video_id": "video12911", "sen_id": 204902}, {"caption": "a man accidentally gets water on a girl by the pool when he jumps in and he apologizes and finds himself attracted to her", "video_id": "video12911", "sen_id": 204903}, {"caption": "a group of young men are playing around an above ground swimming pool", "video_id": "video12911", "sen_id": 204904}, {"caption": "people stand around while a man comes up from a kiddy pool as a drowning act", "video_id": "video12911", "sen_id": 204905}, {"caption": "tyler the creator jumps into a pool and looks at a girl who smiles as his music plays in the background", "video_id": "video12911", "sen_id": 204906}, {"caption": "a young african-american male falls into a swimming pool and then apologizes to a young lady that he splashes in the process", "video_id": "video12911", "sen_id": 204907}, {"caption": "a man jumping into an above ground pool and coming out of the water to stare at a girl", "video_id": "video12911", "sen_id": 204908}, {"caption": "someone splashing in a kiddy pool and a young lady smiling", "video_id": "video12911", "sen_id": 204909}, {"caption": "a man in a white shirt falls into a pool and struggles to get out while falling in love with a girl", "video_id": "video12911", "sen_id": 204910}, {"caption": "a man wearing a white shirt with a cowboy hat is splashing in a pool", "video_id": "video12911", "sen_id": 204911}, {"caption": "a man bursts out of the pool sarcastically; though he is quickly calmed by the site of two women the site of the women make the man's eyes protrude from his head in attraction which makes one of the women smile shyly", "video_id": "video12911", "sen_id": 204912}, {"caption": "a fully clothed african man falls into a swimming pool", "video_id": "video12911", "sen_id": 204913}, {"caption": "a black man jumps into a kids pool and gets the children wet", "video_id": "video12911", "sen_id": 204914}, {"caption": "a black man splashes into a pool and falls in love", "video_id": "video12911", "sen_id": 204915}, {"caption": "a man jumper in a mini water swimming pool or we can say it as a bath tub", "video_id": "video12911", "sen_id": 204916}, {"caption": "a man jumps into a swimming pool to try and impress a girl", "video_id": "video12911", "sen_id": 204917}, {"caption": "an man inside water and a girl in white dress", "video_id": "video12911", "sen_id": 204918}, {"caption": "a black man looks surprised to see something", "video_id": "video12911", "sen_id": 204919}, {"caption": "surfer surfing under a wave crest", "video_id": "video10254", "sen_id": 204920}, {"caption": "a man in black surfing on an ocean and having fun", "video_id": "video10254", "sen_id": 204921}, {"caption": "music is playing while you can see ocean waves and a male beginning to surf on the wave", "video_id": "video10254", "sen_id": 204922}, {"caption": "the coming tropical storm has created some serious waves for local surfers", "video_id": "video10254", "sen_id": 204923}, {"caption": "surfers surf on a large wave at the beach", "video_id": "video10254", "sen_id": 204924}, {"caption": "two man are riding through the sea waves", "video_id": "video10254", "sen_id": 204925}, {"caption": "in a sea water a man swimming", "video_id": "video10254", "sen_id": 204926}, {"caption": "in the sea across buildings a man is swimming and another man is having a boat ride", "video_id": "video10254", "sen_id": 204927}, {"caption": "an amazing view of how a surf boarder rides the waves while another person enjoys laying in the water", "video_id": "video10254", "sen_id": 204928}, {"caption": "a guy out surfing some waves on the beach", "video_id": "video10254", "sen_id": 204929}, {"caption": "surfers can be seen in the shallow parts of the sea with one of them being further away riding a wave that just reached its maximum height", "video_id": "video10254", "sen_id": 204930}, {"caption": "a surfer surfs a curl and comes out standing after 12 seconds", "video_id": "video10254", "sen_id": 204931}, {"caption": "guy doing water skiing on waves", "video_id": "video10254", "sen_id": 204932}, {"caption": "a surfer expertly surfs waves while another man watches it by lying on a surfboard", "video_id": "video10254", "sen_id": 204933}, {"caption": "guy surfing in high ocean waves and screaming in joy", "video_id": "video10254", "sen_id": 204934}, {"caption": "surfers are riding the waves at the ocean shoreline", "video_id": "video10254", "sen_id": 204935}, {"caption": "a surfer is riding on a huge wave in the ocean", "video_id": "video10254", "sen_id": 204936}, {"caption": "surfers are riding giant waves that are rolling up onto the beach", "video_id": "video10254", "sen_id": 204937}, {"caption": "the sea with good high waves are much inviting for a surfing sports", "video_id": "video10254", "sen_id": 204938}, {"caption": "a man is surfing around on a beach in the day", "video_id": "video10254", "sen_id": 204939}, {"caption": "a group of people are at a chalkboard drawing images of clothing", "video_id": "video11273", "sen_id": 204940}, {"caption": "several young men design women's clothing in an asian boy band music video", "video_id": "video11273", "sen_id": 204941}, {"caption": "a clip of these chinese singers in their pop like music video", "video_id": "video11273", "sen_id": 204942}, {"caption": "a boy band is singing and dancing", "video_id": "video11273", "sen_id": 204943}, {"caption": "group of boys sing and paint a picture of a dress", "video_id": "video11273", "sen_id": 204944}, {"caption": "a k pop group singing and dancing to a girl", "video_id": "video11273", "sen_id": 204945}, {"caption": "a kpop or jpop group singing and dancing for a music video", "video_id": "video11273", "sen_id": 204946}, {"caption": "a music video of a young band with colorful hair and outfits", "video_id": "video11273", "sen_id": 204947}, {"caption": "a dancing and singing group are singing and adding choreography in a music video", "video_id": "video11273", "sen_id": 204948}, {"caption": "a group of guys were dancing and singing a song", "video_id": "video11273", "sen_id": 204949}, {"caption": "five boys singing together and dancing on a stage", "video_id": "video11273", "sen_id": 204950}, {"caption": "a bunch of asian singers dance while they design fashion", "video_id": "video11273", "sen_id": 204951}, {"caption": "an asian band is singing and performing the members have all different hair colors", "video_id": "video11273", "sen_id": 204952}, {"caption": "a boys are singing ann dancing for a music", "video_id": "video11273", "sen_id": 204953}, {"caption": "this appears to be the music video for a male asian boy band they are dancing and singing and drawing a dress on the wall", "video_id": "video11273", "sen_id": 204954}, {"caption": "some asian men are drawing a thing inside", "video_id": "video11273", "sen_id": 204955}, {"caption": "a group of boys are dancing and singing with magnificent appearance", "video_id": "video11273", "sen_id": 204956}, {"caption": "an asian musical group is performing in a music video", "video_id": "video11273", "sen_id": 204957}, {"caption": "group of people are drawing and playing for the spot", "video_id": "video11273", "sen_id": 204958}, {"caption": "some people are drawing on a wall inside", "video_id": "video11273", "sen_id": 204959}, {"caption": "a talk show is discussing the importance of education in japanese culture", "video_id": "video10974", "sen_id": 204960}, {"caption": "a clip from a japanese tv show with people talking", "video_id": "video10974", "sen_id": 204961}, {"caption": "a talkshow in japan where people are discussing development of people", "video_id": "video10974", "sen_id": 204962}, {"caption": "a large panel of people talk about and issue relevant to all the participants", "video_id": "video10974", "sen_id": 204963}, {"caption": "a discussion panel sitting in a semi-circle around a cool japan table", "video_id": "video10974", "sen_id": 204964}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video10974", "sen_id": 204965}, {"caption": "what appears to be a debate in japan on tv", "video_id": "video10974", "sen_id": 204966}, {"caption": "a group discussion is going on in relation to japan", "video_id": "video10974", "sen_id": 204967}, {"caption": "group of people are having conversation in the tv studio", "video_id": "video10974", "sen_id": 204968}, {"caption": "video on japanese education and what it entails their educational system", "video_id": "video10974", "sen_id": 204969}, {"caption": "japanese education teaches children that they are a team and education is very important", "video_id": "video10974", "sen_id": 204970}, {"caption": "girl and guy is shown they have tag in white paper something written on it girl talks by moving her hand", "video_id": "video10974", "sen_id": 204971}, {"caption": "a group is discussing japanese children working more as a team than as individuals", "video_id": "video10974", "sen_id": 204972}, {"caption": "japanese talk show with multiple guests discussing team work", "video_id": "video10974", "sen_id": 204973}, {"caption": "some peoples are discussing about japan in a tv channel", "video_id": "video10974", "sen_id": 204974}, {"caption": "a group of people are sitting in a circle talking about japan", "video_id": "video10974", "sen_id": 204975}, {"caption": "many people are having conversation they have tag in their dress", "video_id": "video10974", "sen_id": 204976}, {"caption": "many people sit in a semicircle talking about various topics", "video_id": "video10974", "sen_id": 204977}, {"caption": "pairs of men and women sit around a table and discuss", "video_id": "video10974", "sen_id": 204978}, {"caption": "bunch of people in a talking show discussing about issues", "video_id": "video10974", "sen_id": 204979}, {"caption": "a black sphere moves across a screen soldiers are shown and then an alien body and head are shown", "video_id": "video11043", "sen_id": 204980}, {"caption": "a video captures an unidentified flying object and the posibility of aliens", "video_id": "video11043", "sen_id": 204981}, {"caption": "a group of soldiers stand in front of what looks like a crashed ufo", "video_id": "video11043", "sen_id": 204982}, {"caption": "men wearing overcoats and fur hats stand guard with rifles by a large semicircular metal component embedded into the edge of a snowy wooded area", "video_id": "video11043", "sen_id": 204983}, {"caption": "it seems some people have found out some alien structure", "video_id": "video11043", "sen_id": 204984}, {"caption": "discovery detect a millitary and an alein death from other planet", "video_id": "video11043", "sen_id": 204985}, {"caption": "the terror are presenting with their hand is gun and showing some foetous in various images", "video_id": "video11043", "sen_id": 204986}, {"caption": "a couple of sequences regarding aliens their faces and their activity", "video_id": "video11043", "sen_id": 204987}, {"caption": "the different aliens photos proving the presence of aliens", "video_id": "video11043", "sen_id": 204988}, {"caption": "some people wearing long outh fit are waiting for someone in mountains", "video_id": "video11043", "sen_id": 204989}, {"caption": "paranormal crucible one person died in fire all body burnt", "video_id": "video11043", "sen_id": 204990}, {"caption": "a man is talking about alien conspiracy", "video_id": "video11043", "sen_id": 204991}, {"caption": "alien being caught on camera in flying saucer being shot down by the army", "video_id": "video11043", "sen_id": 204992}, {"caption": "all people are standing in a forest with handling guns", "video_id": "video11043", "sen_id": 204993}, {"caption": "there are many men stading with guns in their hand", "video_id": "video11043", "sen_id": 204994}, {"caption": "explain and vedio for the fire accident clip", "video_id": "video11043", "sen_id": 204995}, {"caption": "a guy narrating a slideshow with some pictures of aliens", "video_id": "video11043", "sen_id": 204996}, {"caption": "there is military force standing alert with guns", "video_id": "video11043", "sen_id": 204997}, {"caption": "a large piece of debris is seen falling towards earth", "video_id": "video11043", "sen_id": 204998}, {"caption": "several people in black jackets are looking for something in the ground", "video_id": "video11043", "sen_id": 204999}, {"caption": "a man discussing the fact that men are becoming more aware of fashion", "video_id": "video10490", "sen_id": 205000}, {"caption": "a man in a gray suit and flowered shirt holds cards while he explains a game show", "video_id": "video10490", "sen_id": 205001}, {"caption": "there is a man wearing a dark suit who is talking about fashion a man wearing a suit is on television talking about fashion trends a well-dressed man is talking about fashion on television", "video_id": "video10490", "sen_id": 205002}, {"caption": "man talking about men's style and fashion", "video_id": "video10490", "sen_id": 205003}, {"caption": "a show host speaks while moving his hands to express himself", "video_id": "video10490", "sen_id": 205004}, {"caption": "a man in a black suit talking to a crowd", "video_id": "video10490", "sen_id": 205005}, {"caption": "a young man talking to a crowd on stage", "video_id": "video10490", "sen_id": 205006}, {"caption": "a blond man in a blue paisley shirt and suit jacket is talking in front of a sky blue curtain", "video_id": "video10490", "sen_id": 205007}, {"caption": "a man talks about men's fashion and why it needs to be talked about", "video_id": "video10490", "sen_id": 205008}, {"caption": "a man in a black suit talking to an audience", "video_id": "video10490", "sen_id": 205009}, {"caption": "a man is giving a talk about fashion and men", "video_id": "video10490", "sen_id": 205010}, {"caption": "a man is talking about fashion and the advancement of it", "video_id": "video10490", "sen_id": 205011}, {"caption": "a man holding a tablet standing up talking", "video_id": "video10490", "sen_id": 205012}, {"caption": "a man discusses how men are becoming more open to fashion and style", "video_id": "video10490", "sen_id": 205013}, {"caption": "there is a black suit man talking in a program", "video_id": "video10490", "sen_id": 205014}, {"caption": "a young energetic guy in front of blue screen talking about a subject", "video_id": "video10490", "sen_id": 205015}, {"caption": "a boy in blue coat standing and speaking a i pad in his hand displaying on the screen", "video_id": "video10490", "sen_id": 205016}, {"caption": "there is a suit man talking from the studio", "video_id": "video10490", "sen_id": 205017}, {"caption": "a man is speaking about men and fashion while holding a tablet", "video_id": "video10490", "sen_id": 205018}, {"caption": "a tv reporter talks about the changing views of fashion", "video_id": "video10490", "sen_id": 205019}, {"caption": "a man racing a car on his new bicycle", "video_id": "video11232", "sen_id": 205020}, {"caption": "a man decides he wants to race somebody on his new bicycle and is challenged by a man with a sports car", "video_id": "video11232", "sen_id": 205021}, {"caption": "a man with a yellow shirt putting on a helmet", "video_id": "video11232", "sen_id": 205022}, {"caption": "the sun shines through a bridge tower a man wears a bicycle outfit with a camera attached to his helmet and the driver of a red sports car agrees to a race with the bicyclist", "video_id": "video11232", "sen_id": 205023}, {"caption": "a man on a bicycle in new york city races against a car", "video_id": "video11232", "sen_id": 205024}, {"caption": "a rider in a yellow jacket and a black helmet standing by a red car", "video_id": "video11232", "sen_id": 205025}, {"caption": "a biker by t he name of lucas brunelle is prepared to go on a bike ride", "video_id": "video11232", "sen_id": 205026}, {"caption": "a bicyclist gets ready to race a car driver", "video_id": "video11232", "sen_id": 205027}, {"caption": "a man wearing a race suit puts on a helmet and stands in front of a red car", "video_id": "video11232", "sen_id": 205028}, {"caption": "a man with a camera helmet expresses his desire to race someone with his new bike and receives an offer from a man with sunglasses and a car", "video_id": "video11232", "sen_id": 205029}, {"caption": "there is a man getting ready to ride", "video_id": "video11232", "sen_id": 205030}, {"caption": "lucas brunelle the bike rider stateing that he wants race right now", "video_id": "video11232", "sen_id": 205031}, {"caption": "a guy in yellow jacket tells that he is going to race against a ferrari with his bicycle", "video_id": "video11232", "sen_id": 205032}, {"caption": "lucas brunelle shows off his brand new bicycle and issues a challenge to be raced which is taken up by a car driver", "video_id": "video11232", "sen_id": 205033}, {"caption": "a person on a bike is riding out side", "video_id": "video11232", "sen_id": 205034}, {"caption": "a man wearing yellow color coat is talking", "video_id": "video11232", "sen_id": 205035}, {"caption": "a man is sitting on top of a bicycle wearing a helmet that has video cameras on it", "video_id": "video11232", "sen_id": 205036}, {"caption": "a challenging video of a bicycle racer planning to race a car in an exciting race", "video_id": "video11232", "sen_id": 205037}, {"caption": "fingers are snapped while a man mounts a bicycle and races it", "video_id": "video11232", "sen_id": 205038}, {"caption": "some men are riding their bikes outside a city", "video_id": "video11232", "sen_id": 205039}, {"caption": "shia lebuff being described as a good and bad guy", "video_id": "video11595", "sen_id": 205040}, {"caption": "a woman is talking about shia lebouf's role in the movie transformers", "video_id": "video11595", "sen_id": 205041}, {"caption": "a series of vignettes of shia lebouf in various movie roles", "video_id": "video11595", "sen_id": 205042}, {"caption": "shia shown in movie shots showing him as someone with a temper", "video_id": "video11595", "sen_id": 205043}, {"caption": "a man talks with a lady in a shed then talks to a large transforming robot and a frightened man", "video_id": "video11595", "sen_id": 205044}, {"caption": "a teenager who is bond with an alien from another planet must find the courage to defeat another menacing race of aliens to save planet earth", "video_id": "video11595", "sen_id": 205045}, {"caption": "a new report about actor in the movie transformers attitude", "video_id": "video11595", "sen_id": 205046}, {"caption": "a woman talking about shia labeouf as a video of his movies is playing", "video_id": "video11595", "sen_id": 205047}, {"caption": "american actor shia labeouf is standing next to a dark haired woman then in front of an animated transformer machine and lastly is getting into a physical altercation with another man", "video_id": "video11595", "sen_id": 205048}, {"caption": "a man on a stage with a bag over his head", "video_id": "video11595", "sen_id": 205049}, {"caption": "a scene form the movie robot where cars turns into big and majestic robot", "video_id": "video11595", "sen_id": 205050}, {"caption": "there is a check shirt man standing with a woman", "video_id": "video11595", "sen_id": 205051}, {"caption": "a woman talks about different shia lebouef movies and how the actor is known for his attitude issues", "video_id": "video11595", "sen_id": 205052}, {"caption": "a commentator is explaining the scenes in the background of the movie", "video_id": "video11595", "sen_id": 205053}, {"caption": "a women is reviewing an action movie called transformers", "video_id": "video11595", "sen_id": 205054}, {"caption": "a lady explaining about a trial of transformer 2007", "video_id": "video11595", "sen_id": 205055}, {"caption": "a movie clip is shown as a commentator discusses the lead actor in a role", "video_id": "video11595", "sen_id": 205056}, {"caption": "a movie critic discusses shia leboeuf s acting career", "video_id": "video11595", "sen_id": 205057}, {"caption": "a boy and girl standing together before the boy looks at a transformer", "video_id": "video11595", "sen_id": 205058}, {"caption": "a person with grey colour dress is trying is explaining something", "video_id": "video11595", "sen_id": 205059}, {"caption": "a display showing text details of nasa product information", "video_id": "video10348", "sen_id": 205060}, {"caption": "multiple paragraphs are displayed on a black background with a small moon in the center of the screen", "video_id": "video10348", "sen_id": 205061}, {"caption": "picture of earth and nasa logos and design", "video_id": "video10348", "sen_id": 205062}, {"caption": "an image of earth is followed by information about nasa", "video_id": "video10348", "sen_id": 205063}, {"caption": "animated video describing some of the functions performed by nasa", "video_id": "video10348", "sen_id": 205064}, {"caption": "a black graphic showing words and a picture that disappears after a drop of water is spilled on it", "video_id": "video10348", "sen_id": 205065}, {"caption": "writing on the screen talks about nasa before showing an image of a moon", "video_id": "video10348", "sen_id": 205066}, {"caption": "there are credits that are being shown on the tv as a filter is shown", "video_id": "video10348", "sen_id": 205067}, {"caption": "educational video from nasa explaining how the video can be used", "video_id": "video10348", "sen_id": 205068}, {"caption": "a view of a round earth floating in blackness", "video_id": "video10348", "sen_id": 205069}, {"caption": "an image of earth flashes just before a copy right warning from nasa covers the screen", "video_id": "video10348", "sen_id": 205070}, {"caption": "a copyright notice from nasa against piracy at the end of one their media pieces", "video_id": "video10348", "sen_id": 205071}, {"caption": "earth is rotating slowly and beautiful to watch nasa news", "video_id": "video10348", "sen_id": 205072}, {"caption": "its the earth in stunning blue color its looks so beauty", "video_id": "video10348", "sen_id": 205073}, {"caption": "the earth is floating in space amoung the stars", "video_id": "video10348", "sen_id": 205074}, {"caption": "some white text is on a black background", "video_id": "video10348", "sen_id": 205075}, {"caption": "a picture of a planet with words on the screen with a white dot at the end", "video_id": "video10348", "sen_id": 205076}, {"caption": "nasa voyager space sounds with the encryption of nasa", "video_id": "video10348", "sen_id": 205077}, {"caption": "the satellite view of the earthon the black background the letters are in white color", "video_id": "video10348", "sen_id": 205078}, {"caption": "a para of text was displayed and then a round element being shown on screen", "video_id": "video10348", "sen_id": 205079}, {"caption": "a man talks while the camera spans over the ground and the ocean", "video_id": "video11338", "sen_id": 205080}, {"caption": "yellow bulldozers work on the land as a man in a suit talks about the environment", "video_id": "video11338", "sen_id": 205081}, {"caption": "large yellow construction equipment destroying a forest next to an ocean", "video_id": "video11338", "sen_id": 205082}, {"caption": "large equipment is moving earth at a construction site", "video_id": "video11338", "sen_id": 205083}, {"caption": "tractors are ripping up trees while an announcer talks about the consequences of human behavior in english and spanish", "video_id": "video11338", "sen_id": 205084}, {"caption": "a man discusses global issues while views of nature and man's impact on nature are seen", "video_id": "video11338", "sen_id": 205085}, {"caption": "a large crane is doing construction on the ground", "video_id": "video11338", "sen_id": 205086}, {"caption": "a construction machine is shown as a man talks about the environment", "video_id": "video11338", "sen_id": 205087}, {"caption": "a construction scene is shown as a man talks about nature", "video_id": "video11338", "sen_id": 205088}, {"caption": "areas of environmental degradation in latin american are shown and according to a male spokesman caused by regional use of an economic model that relies on extraction of natural resources for human consumption", "video_id": "video11338", "sen_id": 205089}, {"caption": "there is a machine working hard on the field", "video_id": "video11338", "sen_id": 205090}, {"caption": "nature and the environment some untouched and others being worked by machines", "video_id": "video11338", "sen_id": 205091}, {"caption": "an environmentalist highlights the degrading conditions in latin america due to developmental activities for human consumption", "video_id": "video11338", "sen_id": 205092}, {"caption": "a man is talking about human consumption of the earth", "video_id": "video11338", "sen_id": 205093}, {"caption": "a man talks about how much water there is on the earth", "video_id": "video11338", "sen_id": 205094}, {"caption": "the excavators are destroying the nature disrupting the ecological balance like that happens to corals", "video_id": "video11338", "sen_id": 205095}, {"caption": "these are scenes of environmental damage and the ocean followed by a spanish speaking expert", "video_id": "video11338", "sen_id": 205096}, {"caption": "there are a bunch of fish swimming which is immediately cut by a bunch of tractors they are trying to defend preserving wildlife", "video_id": "video11338", "sen_id": 205097}, {"caption": "man speaking about global implications and how human can degrade and destroy the forest", "video_id": "video11338", "sen_id": 205098}, {"caption": "the lad view of high and a sea shore and the sky", "video_id": "video11338", "sen_id": 205099}, {"caption": "a skillet is stirring around stir frying leafy green vegetables and chicken in a skillet", "video_id": "video12109", "sen_id": 205100}, {"caption": "a person stirs spinach in a hot pan with a wooden spoon", "video_id": "video12109", "sen_id": 205101}, {"caption": "a chef works on a recipe by stirring vegetables in a small fry pan", "video_id": "video12109", "sen_id": 205102}, {"caption": "a receipt on how to create a chicken vegetable dish", "video_id": "video12109", "sen_id": 205103}, {"caption": "a wooden spatula mixes green vegetable leaves with sliced chicken in an oiled metal pot with a label on its side and produces sizzle and steam", "video_id": "video12109", "sen_id": 205104}, {"caption": "a person cooking vegetables and chicken and steering it up", "video_id": "video12109", "sen_id": 205105}, {"caption": "green leaves are stirred into a hot pan on a stove with a wooden spoon", "video_id": "video12109", "sen_id": 205106}, {"caption": "someone is stir frying food in a bowl while music plays", "video_id": "video12109", "sen_id": 205107}, {"caption": "a person is saute the green leaves in the pan", "video_id": "video12109", "sen_id": 205108}, {"caption": "a person is stirring around and cooking food in a pot on the stove", "video_id": "video12109", "sen_id": 205109}, {"caption": "green vegetables and meet being cooked together in a metal pot", "video_id": "video12109", "sen_id": 205110}, {"caption": "some one in the kitchen frying some vegetable in a pan", "video_id": "video12109", "sen_id": 205111}, {"caption": "a person cooking stir fry vegatables and some sort of meat", "video_id": "video12109", "sen_id": 205112}, {"caption": "a chef stirs vegetables and meat in a small silver skillet", "video_id": "video12109", "sen_id": 205113}, {"caption": "a person is stirring around food in a pan that is cooking on the stove", "video_id": "video12109", "sen_id": 205114}, {"caption": "this is a video of someone stirring around what looks to be lettuce and mushrooms in a pan which is also known as sauteing", "video_id": "video12109", "sen_id": 205115}, {"caption": "a person preparing a food item green leaves fry on a bowel", "video_id": "video12109", "sen_id": 205116}, {"caption": "some greens are being cooked in a pan on the stove with some pasta", "video_id": "video12109", "sen_id": 205117}, {"caption": "a person mixing some green leaves and some meat in a frying pan", "video_id": "video12109", "sen_id": 205118}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video12109", "sen_id": 205119}, {"caption": "man describing history using cartoons with lots of action in them", "video_id": "video10430", "sen_id": 205120}, {"caption": "a man in a green shirt is doing an opening speech for his show", "video_id": "video10430", "sen_id": 205121}, {"caption": "a man giving s seminar on the timeline of the government", "video_id": "video10430", "sen_id": 205122}, {"caption": "a man talking about a video game called us history crash course", "video_id": "video10430", "sen_id": 205123}, {"caption": "a man at a desk talks about a video game called crash course", "video_id": "video10430", "sen_id": 205124}, {"caption": "a man sits in front of a computer while he discusses part of a online history course", "video_id": "video10430", "sen_id": 205125}, {"caption": "a man in a green polo is snidely commenting on a video crash course lesson", "video_id": "video10430", "sen_id": 205126}, {"caption": "a man with dark hair glasses and wearing a green t-shirt is talking about being speechless and after a type of ad displays about us history crash course", "video_id": "video10430", "sen_id": 205127}, {"caption": "a young male sitting and wearing a pair of glasses and pumping his fist", "video_id": "video10430", "sen_id": 205128}, {"caption": "a man in green in a classroom setting with a globe on his side and a chalkboard in the back is introducing an educational show", "video_id": "video10430", "sen_id": 205129}, {"caption": "a cartoon giving information at different historical locations", "video_id": "video10430", "sen_id": 205130}, {"caption": "a man wearing a green polo and glasses speaks to the camera next to a globe music plays and there are animations of historical scenes", "video_id": "video10430", "sen_id": 205131}, {"caption": "a man talking to the camera and then an animation intro playing", "video_id": "video10430", "sen_id": 205132}, {"caption": "white guy in a green shirt and glasses sitting next to a globe talking", "video_id": "video10430", "sen_id": 205133}, {"caption": "a man is wearing green tshirt is sitting next to a globe and talking", "video_id": "video10430", "sen_id": 205134}, {"caption": "a bird is flying and letters are diaplye", "video_id": "video10430", "sen_id": 205135}, {"caption": "a boy in green tshirt explains some animated cartoon on the crash course", "video_id": "video10430", "sen_id": 205136}, {"caption": "a guy in a green shirt talks about history for a moment", "video_id": "video10430", "sen_id": 205137}, {"caption": "a man in a green shirt talking next to a globe", "video_id": "video10430", "sen_id": 205138}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10430", "sen_id": 205139}, {"caption": "a chef putting broccoli in a fryer and cooking it", "video_id": "video11423", "sen_id": 205140}, {"caption": "a receipt video on how to create cooked broccoli", "video_id": "video11423", "sen_id": 205141}, {"caption": "cook is frying food in grease", "video_id": "video11423", "sen_id": 205142}, {"caption": "a chef works on a recipe by deep frying some vegetable pieces", "video_id": "video11423", "sen_id": 205143}, {"caption": "a man in a chef's hat drops vegetables into a deep fryer", "video_id": "video11423", "sen_id": 205144}, {"caption": "a chef in a kitchen frying some food item in a oil", "video_id": "video11423", "sen_id": 205145}, {"caption": "a chef adds a cut vegetable to a deep fryer", "video_id": "video11423", "sen_id": 205146}, {"caption": "a chef throws a vegetable into deep frying oil", "video_id": "video11423", "sen_id": 205147}, {"caption": "chef is cooking in hot boiled oil chef drops raw food which is in green color", "video_id": "video11423", "sen_id": 205148}, {"caption": "in a kitchen man is preparing the vegetables", "video_id": "video11423", "sen_id": 205149}, {"caption": "a chef is preparing a vegetable fry on oil", "video_id": "video11423", "sen_id": 205150}, {"caption": "a chef wearing a white hat tosses a handful of green vegetables into a deep fryer", "video_id": "video11423", "sen_id": 205151}, {"caption": "a chef has just dropped food into a deep fryer", "video_id": "video11423", "sen_id": 205152}, {"caption": "a male cook in a white apron and white cooking hat puts a green vegetable into a fryer", "video_id": "video11423", "sen_id": 205153}, {"caption": "a man in white color dress dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11423", "sen_id": 205154}, {"caption": "there is a man with white dressing making a dish", "video_id": "video11423", "sen_id": 205155}, {"caption": "the man chef is on a hot frying cook oil", "video_id": "video11423", "sen_id": 205156}, {"caption": "a chef throws some food into a fryer and cooks it", "video_id": "video11423", "sen_id": 205157}, {"caption": "a man in a restraunt kitchen is frying food", "video_id": "video11423", "sen_id": 205158}, {"caption": "a chef wearing hat is cooking in the kitchen", "video_id": "video11423", "sen_id": 205159}, {"caption": "the trailer of a rig is blow up flips through the air and then lands back onto the same rig", "video_id": "video12928", "sen_id": 205160}, {"caption": "simulated gameplay shows an 18 wheeler truck explosion on the freeway", "video_id": "video12928", "sen_id": 205161}, {"caption": "a large truck flips through the air and lands on a freeway", "video_id": "video12928", "sen_id": 205162}, {"caption": "in a video game a trailer of a truck flies into the air and lands onto the back of a truck", "video_id": "video12928", "sen_id": 205163}, {"caption": "a semi truck in a video game had the shipping container blown off and then reattached", "video_id": "video12928", "sen_id": 205164}, {"caption": "a trailer that got loose from it's truck that shot high up into the air and then being connected back to its truck", "video_id": "video12928", "sen_id": 205165}, {"caption": "a large semi-truck while driving explodes and flips over a sign", "video_id": "video12928", "sen_id": 205166}, {"caption": "a brown train blows up and falls on a railroad track just before nightfall", "video_id": "video12928", "sen_id": 205167}, {"caption": "the container fly up and then come down to the lorry in the correct position", "video_id": "video12928", "sen_id": 205168}, {"caption": "on road front part of vehicle is going and the back part comes from different place got attached to it", "video_id": "video12928", "sen_id": 205169}, {"caption": "a empty highway with a truck the back part of the truck comes loose and flies in the air over a bridge back on the truck while driving", "video_id": "video12928", "sen_id": 205170}, {"caption": "train moving in a track and a blast occurs destroying the train", "video_id": "video12928", "sen_id": 205171}, {"caption": "a truck does a flip through the air and continues driving", "video_id": "video12928", "sen_id": 205172}, {"caption": "a person is explaining about the car animated movie", "video_id": "video12928", "sen_id": 205173}, {"caption": "the explosion of a truck in the video game", "video_id": "video12928", "sen_id": 205174}, {"caption": "truck and trailer being driven down the road with the trailer flying through the air and landing right back on the truck", "video_id": "video12928", "sen_id": 205175}, {"caption": "there is a big truck flying in to the air", "video_id": "video12928", "sen_id": 205176}, {"caption": "a truck is moving in the an animation film", "video_id": "video12928", "sen_id": 205177}, {"caption": "a truck travels down the road and trailer is blown up into the air safely landing", "video_id": "video12928", "sen_id": 205178}, {"caption": "a trailer explodes into the air and lands right on a truck then keeps driving down the street", "video_id": "video12928", "sen_id": 205179}, {"caption": "computer science degrees are described and talked about", "video_id": "video10646", "sen_id": 205180}, {"caption": "a pink-cheeked face on a computer screen blinks and shows emotions while connected to electronic parts connected to other wires which form a question mark", "video_id": "video10646", "sen_id": 205181}, {"caption": "a ad from a college university and their tech department", "video_id": "video10646", "sen_id": 205182}, {"caption": "a woman describes the necessary parts of having a computer career", "video_id": "video10646", "sen_id": 205183}, {"caption": "this is a commercial for rmit", "video_id": "video10646", "sen_id": 205184}, {"caption": "an ad for computer science is shown colorful", "video_id": "video10646", "sen_id": 205185}, {"caption": "a computer monitor with a face plugged into a building and a question mark made of powerlines", "video_id": "video10646", "sen_id": 205186}, {"caption": "a cartoon computer monitor is making faces and rolling around", "video_id": "video10646", "sen_id": 205187}, {"caption": "a cartoon computer connected to other computers while a woman talks about it", "video_id": "video10646", "sen_id": 205188}, {"caption": "an animated computer and cables are dancing around the screen while a lady talks about a career in it and the classes at rmit university", "video_id": "video10646", "sen_id": 205189}, {"caption": "a computer monitor with a face on it and a graphic with a logo with the words computer science and information technology", "video_id": "video10646", "sen_id": 205190}, {"caption": "an animation that starts by asking the question which it filed is right for you", "video_id": "video10646", "sen_id": 205191}, {"caption": "a computer screen encourages people to learn about computer science", "video_id": "video10646", "sen_id": 205192}, {"caption": "discuse about faculty of computer science and technology at rmit university", "video_id": "video10646", "sen_id": 205193}, {"caption": "a computer and information technology designs the animation", "video_id": "video10646", "sen_id": 205194}, {"caption": "an animated computer screen has a smiling face displayed and an it school program is discussed", "video_id": "video10646", "sen_id": 205195}, {"caption": "an advertisement for computer science and information technology degrees from rmit university", "video_id": "video10646", "sen_id": 205196}, {"caption": "an animated computer slides on screen while an australian female explains how to get a career in computer science and technology as the commercial flashes to a few illustrations of a technology school and a question mark", "video_id": "video10646", "sen_id": 205197}, {"caption": "rmit university is presenting an advertisement for computer science", "video_id": "video10646", "sen_id": 205198}, {"caption": "a lady speaking about successful career and how it is connected", "video_id": "video10646", "sen_id": 205199}, {"caption": "man talking about taking footage with a sports camera", "video_id": "video12217", "sen_id": 205200}, {"caption": "a man gives a presentation on a camera", "video_id": "video12217", "sen_id": 205201}, {"caption": "a man wearing a blue shirt and holding a camera is speaking", "video_id": "video12217", "sen_id": 205202}, {"caption": "a man in a blue button down shirt talking to the camera", "video_id": "video12217", "sen_id": 205203}, {"caption": "a man wearing a blue collared shirt and white undershirt is standing in front of a building holding a camera", "video_id": "video12217", "sen_id": 205204}, {"caption": "a man describing different shooting moods such as ai focus for a digital camera", "video_id": "video12217", "sen_id": 205205}, {"caption": "a man in blue shirt holding camera in his hand explaining something", "video_id": "video12217", "sen_id": 205206}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video12217", "sen_id": 205207}, {"caption": "man in blue shirt talking while holding a large camera", "video_id": "video12217", "sen_id": 205208}, {"caption": "a man reviews a camera", "video_id": "video12217", "sen_id": 205209}, {"caption": "guy in shirt with product in his hand explaining its feature", "video_id": "video12217", "sen_id": 205210}, {"caption": "a person explaining about a hybrid motors", "video_id": "video12217", "sen_id": 205211}, {"caption": "a man is describing the automatic features of this digital camera", "video_id": "video12217", "sen_id": 205212}, {"caption": "a man discusses the ability of a camera to focus on moving people", "video_id": "video12217", "sen_id": 205213}, {"caption": "a man with camera is talking about all focus in camera", "video_id": "video12217", "sen_id": 205214}, {"caption": "a man is talking about taking photos", "video_id": "video12217", "sen_id": 205215}, {"caption": "a blue shirt man talking about a camera", "video_id": "video12217", "sen_id": 205216}, {"caption": "a man in a blue collared shirt is talking about a sports camera", "video_id": "video12217", "sen_id": 205217}, {"caption": "a middle aged man describes and demonstrates the features of a digital camera", "video_id": "video12217", "sen_id": 205218}, {"caption": "a person is explaining about a ai focus camera which is hybrid of one shot & serve", "video_id": "video12217", "sen_id": 205219}, {"caption": "a guy in a white shirt and headphones is in a screen at the top left of the screen talking about a silver car being displayed below", "video_id": "video11456", "sen_id": 205220}, {"caption": "a silver car with black and green stripes is shown as a man wearing headphones talks", "video_id": "video11456", "sen_id": 205221}, {"caption": "a video anchor introduces a new car to discuss", "video_id": "video11456", "sen_id": 205222}, {"caption": "a young man in a white tshirt talking about a car", "video_id": "video11456", "sen_id": 205223}, {"caption": "man discusses the features of luxury italian cars", "video_id": "video11456", "sen_id": 205224}, {"caption": "a young man describes a video game that he is getting ready to play", "video_id": "video11456", "sen_id": 205225}, {"caption": "video about a guy describing car", "video_id": "video11456", "sen_id": 205226}, {"caption": "a man in white t-shirt explaining the features of a new car", "video_id": "video11456", "sen_id": 205227}, {"caption": "a silver super car is kept for display and the car is zoomed from each angle and shown", "video_id": "video11456", "sen_id": 205228}, {"caption": "a man is telling about a luxury car and a car is displaying", "video_id": "video11456", "sen_id": 205229}, {"caption": "man talks about car it looks like sport car stunning structure", "video_id": "video11456", "sen_id": 205230}, {"caption": "the hypercars are the next step up from the supercars that drive this youtube author to make videos", "video_id": "video11456", "sen_id": 205231}, {"caption": "there is a brand new stylish car on the floor", "video_id": "video11456", "sen_id": 205232}, {"caption": "the man on the screen talks as the sports car is displayed", "video_id": "video11456", "sen_id": 205233}, {"caption": "a man making a video of a high end sports car", "video_id": "video11456", "sen_id": 205234}, {"caption": "a man with headphones on in the corner talking about a silver luxury sport car", "video_id": "video11456", "sen_id": 205235}, {"caption": "a man is streaming a video game about cars", "video_id": "video11456", "sen_id": 205236}, {"caption": "there is a man in white tshirt talking about a new car", "video_id": "video11456", "sen_id": 205237}, {"caption": "a man on video call talking about a new car", "video_id": "video11456", "sen_id": 205238}, {"caption": "a teenager in a white t-shirt and headphones is live streaming a race car videogame", "video_id": "video11456", "sen_id": 205239}, {"caption": "a man gives the release dates of new video games", "video_id": "video10396", "sen_id": 205240}, {"caption": "the first screen shows a samurai image on a yellow background with text stating how to survive - storm warning edition a second screen shows a photo of a solider in a gas mask carrying a gun on a red background", "video_id": "video10396", "sen_id": 205241}, {"caption": "a man with heavy weapon in his hand and wearing a helmet", "video_id": "video10396", "sen_id": 205242}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10396", "sen_id": 205243}, {"caption": "a person is talking is talking about a video game called metro 2033 that is normally $2000 that will be available for free through august 15th", "video_id": "video10396", "sen_id": 205244}, {"caption": "a guy says that the game metro 2033 will be available for free through out august", "video_id": "video10396", "sen_id": 205245}, {"caption": "a person holding a weapon with a helmet and face mask", "video_id": "video10396", "sen_id": 205246}, {"caption": "a man is explaining the availability of a new video game", "video_id": "video10396", "sen_id": 205247}, {"caption": "a man shooting on the ground and pointing the ground", "video_id": "video10396", "sen_id": 205248}, {"caption": "metro 2033 fighting man in red back ground", "video_id": "video10396", "sen_id": 205249}, {"caption": "a soldier holding a weapon stands in front of a metro 2033 game logo", "video_id": "video10396", "sen_id": 205250}, {"caption": "a video game gun in his hand still images displaying on the screen", "video_id": "video10396", "sen_id": 205251}, {"caption": "metro 2033 will be available for free in august", "video_id": "video10396", "sen_id": 205252}, {"caption": "a gentleman is explaining that a video game called metro 2033 will be available for free for a certain date in august", "video_id": "video10396", "sen_id": 205253}, {"caption": "two posters of an advertisement of some films are showing on screen", "video_id": "video10396", "sen_id": 205254}, {"caption": "a soldier with a gun stands before a metro 2033 logo", "video_id": "video10396", "sen_id": 205255}, {"caption": "there is a man with mask holding a gun", "video_id": "video10396", "sen_id": 205256}, {"caption": "a person talk about a video game metro displayed on a red and black background with a player having a gun and a face mask", "video_id": "video10396", "sen_id": 205257}, {"caption": "a man describes that the video game metro 2033 will be free until august 15th", "video_id": "video10396", "sen_id": 205258}, {"caption": "a man is giving details of metro 2033 for his followers", "video_id": "video10396", "sen_id": 205259}, {"caption": "a man is playing basketball by himself on a basketball court", "video_id": "video12138", "sen_id": 205260}, {"caption": "a guy in a blue shirt teaching me how to lay up", "video_id": "video12138", "sen_id": 205261}, {"caption": "a man showing how to properly layup and setup a basketball throw", "video_id": "video12138", "sen_id": 205262}, {"caption": "man in a blue shirt and white shorts showing how to shoot a shot", "video_id": "video12138", "sen_id": 205263}, {"caption": "a man wearing a purple shirt playing basketball", "video_id": "video12138", "sen_id": 205264}, {"caption": "a man shooting around on the basketball court", "video_id": "video12138", "sen_id": 205265}, {"caption": "a guy in blue t-shirt and white shorts is practising basketball in indoor court", "video_id": "video12138", "sen_id": 205266}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video12138", "sen_id": 205267}, {"caption": "one man practicing and talking about how play basketball", "video_id": "video12138", "sen_id": 205268}, {"caption": "a guy is practicing basketball alone in court", "video_id": "video12138", "sen_id": 205269}, {"caption": "there is a man in a blue dressing playing basket ball", "video_id": "video12138", "sen_id": 205270}, {"caption": "there are some boys playing basketball on the court", "video_id": "video12138", "sen_id": 205271}, {"caption": "a guy practicing for volley ball on the stadium", "video_id": "video12138", "sen_id": 205272}, {"caption": "a man is practicing a volyball in the indoor stadium", "video_id": "video12138", "sen_id": 205273}, {"caption": "the basketball player shifts over to make more open space to shoot the basketball", "video_id": "video12138", "sen_id": 205274}, {"caption": "there is a man in blue jersey playing basket ball lonely", "video_id": "video12138", "sen_id": 205275}, {"caption": "the man in blue t-shirt is explaining the things about basketball", "video_id": "video12138", "sen_id": 205276}, {"caption": "a volley ball player explaining about the volley ball", "video_id": "video12138", "sen_id": 205277}, {"caption": "glittering and smooth play area to play the basket ball looks awesome", "video_id": "video12138", "sen_id": 205278}, {"caption": "a guy is throwing a basket ball around", "video_id": "video12138", "sen_id": 205279}, {"caption": "men fishing and a man catches a fish", "video_id": "video11045", "sen_id": 205280}, {"caption": "a fish is being taken off of a hook and dropped onto the floor of the boat", "video_id": "video11045", "sen_id": 205281}, {"caption": "a group of young people catch a fish on a boat on an ocean", "video_id": "video11045", "sen_id": 205282}, {"caption": "people catching a fish on the open water", "video_id": "video11045", "sen_id": 205283}, {"caption": "a young male adult standing in a boat holding a fish by a string line", "video_id": "video11045", "sen_id": 205284}, {"caption": "several male voiceovers on a boat talk about a red snapper fish that's dropped from a fishing pole on to the boat's floor", "video_id": "video11045", "sen_id": 205285}, {"caption": "a man on a boat records a fish being caught", "video_id": "video11045", "sen_id": 205286}, {"caption": "a man is showing his large red and white fish that he caught while fishing off of a boat", "video_id": "video11045", "sen_id": 205287}, {"caption": "a couple of men putting down a fish that they caught", "video_id": "video11045", "sen_id": 205288}, {"caption": "there is someone catches a fish from the sea", "video_id": "video11045", "sen_id": 205289}, {"caption": "a man is holding a fish on a fishing line in the side of a boat", "video_id": "video11045", "sen_id": 205290}, {"caption": "peoples with boat on the ocean catches the red colored big fish", "video_id": "video11045", "sen_id": 205291}, {"caption": "a fisherman showing his catch for the day and then removing the hock from the fish mouth", "video_id": "video11045", "sen_id": 205292}, {"caption": "a person is showing a fish they caught in the sea", "video_id": "video11045", "sen_id": 205293}, {"caption": "a person is maneuvering a fish on a thin pole", "video_id": "video11045", "sen_id": 205294}, {"caption": "people are standing on a boat with a fish that is on the line", "video_id": "video11045", "sen_id": 205295}, {"caption": "one man takes a big fish from sea and it dies", "video_id": "video11045", "sen_id": 205296}, {"caption": "a man wearing glooves and catching in the river displaying on the screen", "video_id": "video11045", "sen_id": 205297}, {"caption": "the waves in the crystal blue water appeared calm", "video_id": "video11045", "sen_id": 205298}, {"caption": "someone is using a string to hook a fish", "video_id": "video11045", "sen_id": 205299}, {"caption": "a young lady is discussing the samsung television and its capabilities", "video_id": "video12194", "sen_id": 205300}, {"caption": "a woman discusses the features of a new type of tv system that is being developed", "video_id": "video12194", "sen_id": 205301}, {"caption": "a woman discusses what makes samsung smart phone cameras superior", "video_id": "video12194", "sen_id": 205302}, {"caption": "a woman stands in front of a green screen and discusses what makes a superior camera", "video_id": "video12194", "sen_id": 205303}, {"caption": "a woman stands in front of a green screen and discusses what makes a superior camera", "video_id": "video12194", "sen_id": 205304}, {"caption": "a young women in pink dress talking in some t", "video_id": "video12194", "sen_id": 205305}, {"caption": "the lady talks about samsung smart tv technology in modern days", "video_id": "video12194", "sen_id": 205306}, {"caption": "a brown haired woman talking about a smart phone camera", "video_id": "video12194", "sen_id": 205307}, {"caption": "a girl reviews samsung cameras and pictures", "video_id": "video12194", "sen_id": 205308}, {"caption": "a woman in a purple top standing in front of a samsung display which is showing scenes from tv is speaking about the brand", "video_id": "video12194", "sen_id": 205309}, {"caption": "a woman in a purple button down shirt talks about image sensors on samsung phones", "video_id": "video12194", "sen_id": 205310}, {"caption": "a woman is standing in front of a screen talking about samsung products", "video_id": "video12194", "sen_id": 205311}, {"caption": "a review and opinion about the samsung semiconductor tv", "video_id": "video12194", "sen_id": 205312}, {"caption": "a woman wearing a pink shirt has a screen next to her that says samsung on it", "video_id": "video12194", "sen_id": 205313}, {"caption": "a woman with black hair is on the tv", "video_id": "video12194", "sen_id": 205314}, {"caption": "a girls with cute face is talking about samsung tv", "video_id": "video12194", "sen_id": 205315}, {"caption": "this video is informative and the presenter seems upbeat", "video_id": "video12194", "sen_id": 205316}, {"caption": "a woman talking about a samsung smart phone camera", "video_id": "video12194", "sen_id": 205317}, {"caption": "a young female presenter explains the importance of the image sensor in a smartphone camera", "video_id": "video12194", "sen_id": 205318}, {"caption": "a woman with brown hair is talking", "video_id": "video12194", "sen_id": 205319}, {"caption": "cartoon of super heroes getting on a red bus and driving around", "video_id": "video11374", "sen_id": 205320}, {"caption": "an animated clip of superheroes getting on a bright red bus", "video_id": "video11374", "sen_id": 205321}, {"caption": "super heroes approach and climb into a line of buses by running walking and doing acrobats as the wheels on the bus song plays in the background", "video_id": "video11374", "sen_id": 205322}, {"caption": "a superhero in red and gold does backflips and gets on a red bus", "video_id": "video11374", "sen_id": 205323}, {"caption": "there is a video game of superheroes approaching a red bus get in it and start driving it", "video_id": "video11374", "sen_id": 205324}, {"caption": "a person demonstrates a video game that they are playing", "video_id": "video11374", "sen_id": 205325}, {"caption": "iron man doing back flips and then walks onto a red bus", "video_id": "video11374", "sen_id": 205326}, {"caption": "iron man is flipping around in a street and gets on a bus along with another robot", "video_id": "video11374", "sen_id": 205327}, {"caption": "a person demonstrates a video game that they are playing", "video_id": "video11374", "sen_id": 205328}, {"caption": "a few superheros in a video game climb into a red school bus", "video_id": "video11374", "sen_id": 205329}, {"caption": "super heroes flip and run towards a red bus hop in and on and drive away", "video_id": "video11374", "sen_id": 205330}, {"caption": "one robot is comes and drive the school bus", "video_id": "video11374", "sen_id": 205331}, {"caption": "blue bus and red bus are standing on the road the person in red dress enters into the red bus", "video_id": "video11374", "sen_id": 205332}, {"caption": "animated characters of avengers entering a school bus", "video_id": "video11374", "sen_id": 205333}, {"caption": "a red bus is parked next to a side walk", "video_id": "video11374", "sen_id": 205334}, {"caption": "a person singing the children game describing the bus", "video_id": "video11374", "sen_id": 205335}, {"caption": "robots are there and goes to the school bus", "video_id": "video11374", "sen_id": 205336}, {"caption": "robot in red color gets into the red bus then the blue robot gets into the blue bus", "video_id": "video11374", "sen_id": 205337}, {"caption": "a video game character does flips in the street", "video_id": "video11374", "sen_id": 205338}, {"caption": "a woman is singing as someone plays a video game", "video_id": "video11374", "sen_id": 205339}, {"caption": "a boy who is in a teenage mutant ninja turtles costume shows off his marital arts skills", "video_id": "video12835", "sen_id": 205340}, {"caption": "a person dressed as a ninja turtle doing karate moves", "video_id": "video12835", "sen_id": 205341}, {"caption": "an interview with a teanage mutant ninja turtle", "video_id": "video12835", "sen_id": 205342}, {"caption": "a boy kicks and spins in a leonardo tmnt costume", "video_id": "video12835", "sen_id": 205343}, {"caption": "a young boy dressed as a teenage mutant ninja turtle and dancing", "video_id": "video12835", "sen_id": 205344}, {"caption": "a person in a cartoon turtle costume performs jumps kicks and punches", "video_id": "video12835", "sen_id": 205345}, {"caption": "a cosplay of teenage mutant ninja turtles is performing various fighting kicks", "video_id": "video12835", "sen_id": 205346}, {"caption": "a child is in a costume of a ninja turtle acting like a ninja", "video_id": "video12835", "sen_id": 205347}, {"caption": "a young person in a ninja turtle costume kicks around", "video_id": "video12835", "sen_id": 205348}, {"caption": "a young boy does karate moves wearing a tmnt costume", "video_id": "video12835", "sen_id": 205349}, {"caption": "a child in a leonardo teenage mutant ninja turtle costume", "video_id": "video12835", "sen_id": 205350}, {"caption": "a man acting in a stage wearing a different costume", "video_id": "video12835", "sen_id": 205351}, {"caption": "the boy in the costume kicks and punches while wearng a mask", "video_id": "video12835", "sen_id": 205352}, {"caption": "one man is wear funny dress and making some noise", "video_id": "video12835", "sen_id": 205353}, {"caption": "a man in a ninja turtle costume is making jumpkicks in the air", "video_id": "video12835", "sen_id": 205354}, {"caption": "a person is wearing masks in the face and commenting something and dancing", "video_id": "video12835", "sen_id": 205355}, {"caption": "a boy is dressed in the costumes of a ninja", "video_id": "video12835", "sen_id": 205356}, {"caption": "a kid wearing a ninja turtle costume is showing the moves of the character", "video_id": "video12835", "sen_id": 205357}, {"caption": "a boys is make up differently and doing karate", "video_id": "video12835", "sen_id": 205358}, {"caption": "the young man in blue dress dancing in the room", "video_id": "video12835", "sen_id": 205359}, {"caption": "a chestnut horse opening a door to a wooden storage building", "video_id": "video10635", "sen_id": 205360}, {"caption": "a brown horse is walking around and opening doors", "video_id": "video10635", "sen_id": 205361}, {"caption": "a brown colour horse is opening the door of a house and trying to enter", "video_id": "video10635", "sen_id": 205362}, {"caption": "a men collects cotton theire is a men in white tshirt to comes running to talk to horse", "video_id": "video10635", "sen_id": 205363}, {"caption": "a large horse wanders around outside then goes into a shed", "video_id": "video10635", "sen_id": 205364}, {"caption": "a horse is open a door of a room and enter it", "video_id": "video10635", "sen_id": 205365}, {"caption": "a brown horse walking opening door getting inside house behind black dress wearing guy standing", "video_id": "video10635", "sen_id": 205366}, {"caption": "there is a brown horse getting inside a room", "video_id": "video10635", "sen_id": 205367}, {"caption": "a horses manages to open the door to a small shed with its head", "video_id": "video10635", "sen_id": 205368}, {"caption": "a horse was going to his home by opening the door by itself", "video_id": "video10635", "sen_id": 205369}, {"caption": "the young man is looking at the strong horse when it gets into it s stable", "video_id": "video10635", "sen_id": 205370}, {"caption": "there is a horse walking around and open the door", "video_id": "video10635", "sen_id": 205371}, {"caption": "men in black standing near a horse opens a door", "video_id": "video10635", "sen_id": 205372}, {"caption": "one horse there is makes a move on the outer", "video_id": "video10635", "sen_id": 205373}, {"caption": "brown horse opening a door of his habitat", "video_id": "video10635", "sen_id": 205374}, {"caption": "a guy is talking about a brown horse", "video_id": "video10635", "sen_id": 205375}, {"caption": "there is a man in tshirt with his horse", "video_id": "video10635", "sen_id": 205376}, {"caption": "the brown shining horse is grazing the entes the building", "video_id": "video10635", "sen_id": 205377}, {"caption": "a horse is enter in to the room", "video_id": "video10635", "sen_id": 205378}, {"caption": "a brown horse getting inside house and man behind wearing black dress standing displaying on screen", "video_id": "video10635", "sen_id": 205379}, {"caption": "a program provides its viewers with positive attributes of indian business", "video_id": "video10335", "sen_id": 205380}, {"caption": "text is overlayed on a map of india list what india offers", "video_id": "video10335", "sen_id": 205381}, {"caption": "information bullets suggesting what india currently offers in relation to business", "video_id": "video10335", "sen_id": 205382}, {"caption": "a video showing what the country india has to offer for those who may want to live there", "video_id": "video10335", "sen_id": 205383}, {"caption": "bullet points about what india has to offer in business", "video_id": "video10335", "sen_id": 205384}, {"caption": "india offers much for businesses looking to expand", "video_id": "video10335", "sen_id": 205385}, {"caption": "an indian woman talking and a map of india with a text overlay", "video_id": "video10335", "sen_id": 205386}, {"caption": "this is an commercial about what india offers", "video_id": "video10335", "sen_id": 205387}, {"caption": "a woman wearing a green shirt and talking", "video_id": "video10335", "sen_id": 205388}, {"caption": "promotion video about business in india featuring text slides", "video_id": "video10335", "sen_id": 205389}, {"caption": "a presentation of india's economy with woman talking in the beginning", "video_id": "video10335", "sen_id": 205390}, {"caption": "a women in green dress talking about what india offers today", "video_id": "video10335", "sen_id": 205391}, {"caption": "a slide show shows 5 points of today india offers with india map backgroud", "video_id": "video10335", "sen_id": 205392}, {"caption": "an indian woman is interviewed of what india offeres today", "video_id": "video10335", "sen_id": 205393}, {"caption": "a lady is talking about india on tv", "video_id": "video10335", "sen_id": 205394}, {"caption": "a woman explaining about todays india offers", "video_id": "video10335", "sen_id": 205395}, {"caption": "today india offers affordable innovation & partneship", "video_id": "video10335", "sen_id": 205396}, {"caption": "the woman is telling about what india today is offering", "video_id": "video10335", "sen_id": 205397}, {"caption": "a lady telling about the today india offers in a list", "video_id": "video10335", "sen_id": 205398}, {"caption": "a woman in a green shirt is talking about something", "video_id": "video10335", "sen_id": 205399}, {"caption": "chef gives details about finishing a cooking project", "video_id": "video12406", "sen_id": 205400}, {"caption": "a male chef in a white coat is standing in a metal kitchen describing his food which is almost done", "video_id": "video12406", "sen_id": 205401}, {"caption": "a male chef in a commercial kitchen rests his palms on the edge of a handled soup pot containing a broth with natural impurities floating on the surface and an unused spoon placed across the top", "video_id": "video12406", "sen_id": 205402}, {"caption": "in a kitchen a man is explaining food that he has made and what his next step is", "video_id": "video12406", "sen_id": 205403}, {"caption": "a male chef is in a professional kitchen next to a large stockpot", "video_id": "video12406", "sen_id": 205404}, {"caption": "a chef is preparing food while other chef walks around", "video_id": "video12406", "sen_id": 205405}, {"caption": "a man explaining how to prepare a meal", "video_id": "video12406", "sen_id": 205406}, {"caption": "a man explain and how is prepare the food", "video_id": "video12406", "sen_id": 205407}, {"caption": "a chef describes the next step in the preparation of a soup", "video_id": "video12406", "sen_id": 205408}, {"caption": "a chef talking about a soup on the stove", "video_id": "video12406", "sen_id": 205409}, {"caption": "there is a man in white dressing talking from a kitchen", "video_id": "video12406", "sen_id": 205410}, {"caption": "a cook explains the prepared food which is ready to serve", "video_id": "video12406", "sen_id": 205411}, {"caption": "chef in a restaurant showing the preparation of a dish", "video_id": "video12406", "sen_id": 205412}, {"caption": "chef talking about a recipe of beef stock shot in a kitchen", "video_id": "video12406", "sen_id": 205413}, {"caption": "some yellow liquid is in a silver bowl", "video_id": "video12406", "sen_id": 205414}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video12406", "sen_id": 205415}, {"caption": "a chef discusses the preparation of beef consomme", "video_id": "video12406", "sen_id": 205416}, {"caption": "a man discusses the process of making beef consomme", "video_id": "video12406", "sen_id": 205417}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12406", "sen_id": 205418}, {"caption": "a chef talks about how he makes a clear beef consummate", "video_id": "video12406", "sen_id": 205419}, {"caption": "one white cat is chasing a red dot of light across the floor while the other white cat is eating food out of a bowl", "video_id": "video10702", "sen_id": 205420}, {"caption": "a fluffy white cat chasing a laser pointer around on a white tiled floor", "video_id": "video10702", "sen_id": 205421}, {"caption": "a cat is playing with a laser pointer in front of other cats", "video_id": "video10702", "sen_id": 205422}, {"caption": "cats are shown chasing laser beams and running around", "video_id": "video10702", "sen_id": 205423}, {"caption": "a white fluffy cat frantically chases after a laser pointer's dot", "video_id": "video10702", "sen_id": 205424}, {"caption": "cat is shown casing a red laser beam light while woman is laughing in the background sound", "video_id": "video10702", "sen_id": 205425}, {"caption": "a white cat plays with laser beam on the floor another one plays with man and yet another busy with searching something", "video_id": "video10702", "sen_id": 205426}, {"caption": "a big fluff white cat is chasing a red laser pointer", "video_id": "video10702", "sen_id": 205427}, {"caption": "a cute big cat doing something funny in the home", "video_id": "video10702", "sen_id": 205428}, {"caption": "a fluffy white kitty cat chases a laser light", "video_id": "video10702", "sen_id": 205429}, {"caption": "a man is playing with some white cats", "video_id": "video10702", "sen_id": 205430}, {"caption": "three fluffy white cats playing and one is chasing a red light that someone is shining across the floor", "video_id": "video10702", "sen_id": 205431}, {"caption": "a kitten being scrtach on his tummy and three white cats one playing by chasing a laser light", "video_id": "video10702", "sen_id": 205432}, {"caption": "a white dogs are playing in the room", "video_id": "video10702", "sen_id": 205433}, {"caption": "a white cat is furiously trying to catch a moving red laser dot", "video_id": "video10702", "sen_id": 205434}, {"caption": "gorgeous white fluffy cat chasing a laser across the floor and having a ton of fun", "video_id": "video10702", "sen_id": 205435}, {"caption": "a person is using a red light to make a cat chase the red dot", "video_id": "video10702", "sen_id": 205436}, {"caption": "a cute dog is searching a pink light", "video_id": "video10702", "sen_id": 205437}, {"caption": "there is a cat chasing a laser pointer around a living room", "video_id": "video10702", "sen_id": 205438}, {"caption": "a person is showing the white cat playing with the laser point", "video_id": "video10702", "sen_id": 205439}, {"caption": "myrtle beach is a family friendly destination with beaches and amusement rides", "video_id": "video12713", "sen_id": 205440}, {"caption": "a man shows the view from a sky wheel ride in myrtle beach", "video_id": "video12713", "sen_id": 205441}, {"caption": "a man talking about a very large ferris wheel", "video_id": "video12713", "sen_id": 205442}, {"caption": "shane reynolds talking about amusement park rides in south carolina", "video_id": "video12713", "sen_id": 205443}, {"caption": "shane reynolds shows the view of myrtle beach south carolina from a ferris wheel", "video_id": "video12713", "sen_id": 205444}, {"caption": "a man with a blue shirt and a white hat rides a ferris wheel in myrtle beach", "video_id": "video12713", "sen_id": 205445}, {"caption": "top 10 locals list of myrtle beach north carolina", "video_id": "video12713", "sen_id": 205446}, {"caption": "there is a sky wheel at a beach and a guy is talking and seen riding in one of the cars", "video_id": "video12713", "sen_id": 205447}, {"caption": "a man talking about a ride at myrtle beach", "video_id": "video12713", "sen_id": 205448}, {"caption": "a cooling glass man with cap talking from a park", "video_id": "video12713", "sen_id": 205449}, {"caption": "a man is speaking about his travels and where he is headed", "video_id": "video12713", "sen_id": 205450}, {"caption": "a farris wheel shows then a man in a hat talks", "video_id": "video12713", "sen_id": 205451}, {"caption": "shane-o in myrtle beach", "video_id": "video12713", "sen_id": 205452}, {"caption": "a video of an amusement park it is showing multiple rides that are available", "video_id": "video12713", "sen_id": 205453}, {"caption": "shane reynolds aka smane o takes viewers on the sky wheel in myrtle beach south carolina", "video_id": "video12713", "sen_id": 205454}, {"caption": "a traveling local explores the sky wheel at myrtle beach south carolina", "video_id": "video12713", "sen_id": 205455}, {"caption": "some people at a fair are riding a ride", "video_id": "video12713", "sen_id": 205456}, {"caption": "shane reynolds shows off amusement rides at a park in south caroline", "video_id": "video12713", "sen_id": 205457}, {"caption": "a sky wheel in an arena is revolving which is an excitement sports for children", "video_id": "video12713", "sen_id": 205458}, {"caption": "a man in a blue shirt and hat is riding a ferris wheel in myrtle beach south carolina", "video_id": "video12713", "sen_id": 205459}, {"caption": "lingerie models are displaying new designs as a singer performs in the middle of the stage", "video_id": "video12945", "sen_id": 205460}, {"caption": "women in sexy underwear are walking down a runway", "video_id": "video12945", "sen_id": 205461}, {"caption": "models are walking down the runway and showing off different lingerie outfits", "video_id": "video12945", "sen_id": 205462}, {"caption": "brunette in red lingerie walking down a runway with other models", "video_id": "video12945", "sen_id": 205463}, {"caption": "pop star rihanna dances and performs her song phresh off the runway while lingerie models strut their stuff down the runway", "video_id": "video12945", "sen_id": 205464}, {"caption": "a women is singing and models walk to display their clothes for a fashion show", "video_id": "video12945", "sen_id": 205465}, {"caption": "the girls are modeling through the run way", "video_id": "video12945", "sen_id": 205466}, {"caption": "a group of models in lingerie walk a runway while a female singer performs", "video_id": "video12945", "sen_id": 205467}, {"caption": "rihanna and victoria angels dancing to an electronic song", "video_id": "video12945", "sen_id": 205468}, {"caption": "beautiful models work it on the runway while wearing beautiful outfits", "video_id": "video12945", "sen_id": 205469}, {"caption": "there is a woman in a hot dress walking on the floor", "video_id": "video12945", "sen_id": 205470}, {"caption": "beautiful women in colorful lingerie strut on stage", "video_id": "video12945", "sen_id": 205471}, {"caption": "women in their underwear modeling while a lady in a pink dress sings", "video_id": "video12945", "sen_id": 205472}, {"caption": "women wearing only underwear and flowery decorations walk down a runway", "video_id": "video12945", "sen_id": 205473}, {"caption": "women in lingerie walking the runway in a victoria s secret fashion show", "video_id": "video12945", "sen_id": 205474}, {"caption": "there is a woman with red bra and pantie walking on the ramp", "video_id": "video12945", "sen_id": 205475}, {"caption": "on the fashion show ramb the girls are appeared on very sexy looks their gown is like as flower", "video_id": "video12945", "sen_id": 205476}, {"caption": "women are models clothes down a runway while someone sings", "video_id": "video12945", "sen_id": 205477}, {"caption": "runway models display matching bra and pantie sets while a talent sings to the background music", "video_id": "video12945", "sen_id": 205478}, {"caption": "models walking down the ramp with their fashionable oufits", "video_id": "video12945", "sen_id": 205479}, {"caption": "a newsreport on athletes at a school running track", "video_id": "video12523", "sen_id": 205480}, {"caption": "a man describes the reason why a girl was forced to give up soccer and start running", "video_id": "video12523", "sen_id": 205481}, {"caption": "a group of young people run on an outdoor track as a form of training", "video_id": "video12523", "sen_id": 205482}, {"caption": "a girl sits by herslef on the concrete steps as the camera pans out over the stadium", "video_id": "video12523", "sen_id": 205483}, {"caption": "a woman in white colour dress sitting alone in the stadium", "video_id": "video12523", "sen_id": 205484}, {"caption": "a young lady who had to give up soccer and turn to running", "video_id": "video12523", "sen_id": 205485}, {"caption": "young girl had to give up contact sports due ms and take up running", "video_id": "video12523", "sen_id": 205486}, {"caption": "a lady sitting alone on a stadium and others are running", "video_id": "video12523", "sen_id": 205487}, {"caption": "medecine bottles sit on top of a bathroom sink", "video_id": "video12523", "sen_id": 205488}, {"caption": "a woman in white watching running race in track", "video_id": "video12523", "sen_id": 205489}, {"caption": "some poeple are walking around a track out side", "video_id": "video12523", "sen_id": 205490}, {"caption": "there is a young lady sitting lonely in the steps", "video_id": "video12523", "sen_id": 205491}, {"caption": "a girl suffering from ms syndrome had to give up soccer but she still believes that she can compete because her coach believes in her", "video_id": "video12523", "sen_id": 205492}, {"caption": "girls in yellow dress running with boys and girl sitting in white dress in stadium", "video_id": "video12523", "sen_id": 205493}, {"caption": "athletes are running around the ground for practice", "video_id": "video12523", "sen_id": 205494}, {"caption": "a man narrates a documentary about an athlete with multiple sclerosis", "video_id": "video12523", "sen_id": 205495}, {"caption": "a women is sitting alone in the stadium", "video_id": "video12523", "sen_id": 205496}, {"caption": "mens and womens practicing for running in championship trainer noted timing", "video_id": "video12523", "sen_id": 205497}, {"caption": "girls in yellow dress running with boys on roads side", "video_id": "video12523", "sen_id": 205498}, {"caption": "pretty girl sitting on the stadium alone and later running with bunch of people in tracks", "video_id": "video12523", "sen_id": 205499}, {"caption": "a woman is checking out her hair and makeup in the mirror", "video_id": "video12371", "sen_id": 205500}, {"caption": "indian woman is shown looking at herself in a mirror while another woman helps her touch up some details", "video_id": "video12371", "sen_id": 205501}, {"caption": "a girl standing in front of the mirror fixing her hair", "video_id": "video12371", "sen_id": 205502}, {"caption": "a beautiful women in saree is dressing herself looking at the mirror", "video_id": "video12371", "sen_id": 205503}, {"caption": "a women in saree applying makeup in front of a mirror", "video_id": "video12371", "sen_id": 205504}, {"caption": "an indian woman puts on make-up and gets dressed", "video_id": "video12371", "sen_id": 205505}, {"caption": "nakkiran one beautiful actress trisha makeup for one jewellery ads", "video_id": "video12371", "sen_id": 205506}, {"caption": "beautiful indian lady doing make up and setting up her hair", "video_id": "video12371", "sen_id": 205507}, {"caption": "a bride is wearing a saree and heavy jewellery looks very pretty", "video_id": "video12371", "sen_id": 205508}, {"caption": "there is a women applying makeup by herself", "video_id": "video12371", "sen_id": 205509}, {"caption": "actor trisha is doing makeup and getting for the shoot behind that song is playing", "video_id": "video12371", "sen_id": 205510}, {"caption": "a beautiful indian woman does her makeup and looks in to a small round mirror", "video_id": "video12371", "sen_id": 205511}, {"caption": "a bride looks very pretty with grand saree and heavy jewellery", "video_id": "video12371", "sen_id": 205512}, {"caption": "a women is doing hair styling", "video_id": "video12371", "sen_id": 205513}, {"caption": "a woman looks in a mirror at her make up as people check her hair and clothing and music plays", "video_id": "video12371", "sen_id": 205514}, {"caption": "trisha looking gorgeous she act for the nac jewellersshe wear the orange saree", "video_id": "video12371", "sen_id": 205515}, {"caption": "an indian woman is getting ready for a big date", "video_id": "video12371", "sen_id": 205516}, {"caption": "a lady in golden saree is getting ready with the help of stylists", "video_id": "video12371", "sen_id": 205517}, {"caption": "music is playing while a woman fixes her hair and jewels", "video_id": "video12371", "sen_id": 205518}, {"caption": "a beautiful indian woman is getting her makeup done by a makeup artist", "video_id": "video12371", "sen_id": 205519}, {"caption": "a green and yellow parakeet sitting on top of a white cage", "video_id": "video10377", "sen_id": 205520}, {"caption": "a parrot looking into a bowl", "video_id": "video10377", "sen_id": 205521}, {"caption": "a parrot walks a short distance while making different bird noises", "video_id": "video10377", "sen_id": 205522}, {"caption": "there is a green and yellow bird that is making sounds", "video_id": "video10377", "sen_id": 205523}, {"caption": "a green and yellow bird climbs onto an oscillating fan", "video_id": "video10377", "sen_id": 205524}, {"caption": "a female voiceover and a green and yellow walking parakeet try to talk to each other", "video_id": "video10377", "sen_id": 205525}, {"caption": "a green parrot standing and looking at the camera", "video_id": "video10377", "sen_id": 205526}, {"caption": "a green color parrot with yellow spot on the back of head is approaching a basket to explore it", "video_id": "video10377", "sen_id": 205527}, {"caption": "a large parrot with mostly green feathers perches inside a home", "video_id": "video10377", "sen_id": 205528}, {"caption": "a bird with green and yellow feathers uses its beak to move from one shelf to another the sits almost still staring at a single spot", "video_id": "video10377", "sen_id": 205529}, {"caption": "a green and yellow parrot walks from the dresser to the fan and says oh my my", "video_id": "video10377", "sen_id": 205530}, {"caption": "a beautiful bird searching for a food in the nest", "video_id": "video10377", "sen_id": 205531}, {"caption": "an green parrot sitting and watching something", "video_id": "video10377", "sen_id": 205532}, {"caption": "a green parrot climbs on a cage and sits there", "video_id": "video10377", "sen_id": 205533}, {"caption": "a parrot is sitting doing nothing at all", "video_id": "video10377", "sen_id": 205534}, {"caption": "a beautiful parrot with green and yellow colours mixed sitting", "video_id": "video10377", "sen_id": 205535}, {"caption": "birds are talking and playing in the room", "video_id": "video10377", "sen_id": 205536}, {"caption": "parrot moving from one place to other place and watching curiously", "video_id": "video10377", "sen_id": 205537}, {"caption": "a green color parrot with yellow color on the head is moving and looking", "video_id": "video10377", "sen_id": 205538}, {"caption": "a parrot with green fur is on tv", "video_id": "video10377", "sen_id": 205539}, {"caption": "man giving a demonstration about organization inspiration", "video_id": "video11241", "sen_id": 205540}, {"caption": "a man next to an easel talking to a crowd while on stage", "video_id": "video11241", "sen_id": 205541}, {"caption": "man speaks to a group of people about why they do things", "video_id": "video11241", "sen_id": 205542}, {"caption": "a man stands in front of a crowd and gives a lecture", "video_id": "video11241", "sen_id": 205543}, {"caption": "a man wearing jeans and holding a microphone addresses a small audience from a stage with red draperies and a whiteboard on a stand", "video_id": "video11241", "sen_id": 205544}, {"caption": "a man is giving a presentation to an audience", "video_id": "video11241", "sen_id": 205545}, {"caption": "a man on stage next to a board giving a presentation", "video_id": "video11241", "sen_id": 205546}, {"caption": "a man ina pink shirt holds a microphone and speaks", "video_id": "video11241", "sen_id": 205547}, {"caption": "a man on ted talks speaks on stage about why peoples organizations exist and why anyone should care", "video_id": "video11241", "sen_id": 205548}, {"caption": "a man in a yellow shirt on stage talking to a crowd", "video_id": "video11241", "sen_id": 205549}, {"caption": "a presenter in a red shirt on stage talking to a large audience with a notepad easel", "video_id": "video11241", "sen_id": 205550}, {"caption": "a man gives a conference in front of an audience", "video_id": "video11241", "sen_id": 205551}, {"caption": "a man standing on a stage next to a white board talking", "video_id": "video11241", "sen_id": 205552}, {"caption": "a gentleman is talking to an audience about marketing your organization and why it is important", "video_id": "video11241", "sen_id": 205553}, {"caption": "a man standing on a stage in front of a red curtain", "video_id": "video11241", "sen_id": 205554}, {"caption": "a man in a white shirt and blue jeans is on a stage giving a seminar about business", "video_id": "video11241", "sen_id": 205555}, {"caption": "a man is taking a class on the stage", "video_id": "video11241", "sen_id": 205556}, {"caption": "a man is giving a lecture to an audience", "video_id": "video11241", "sen_id": 205557}, {"caption": "a promotional seminar is going and a person standing on dais with a white board", "video_id": "video11241", "sen_id": 205558}, {"caption": "a man on a stage is telling some jokes", "video_id": "video11241", "sen_id": 205559}, {"caption": "a woman demonstrates how to clip a cat's nails", "video_id": "video10050", "sen_id": 205560}, {"caption": "a woman rubs a cat's paws and then squeezes them while clipping the cat's nails", "video_id": "video10050", "sen_id": 205561}, {"caption": "a woman demonstrates how to trim a cat's claws", "video_id": "video10050", "sen_id": 205562}, {"caption": "there is a woman caring her cat inside the room", "video_id": "video10050", "sen_id": 205563}, {"caption": "a man giving a tutorial on how to clip a cat s nails while a woman holds a cat", "video_id": "video10050", "sen_id": 205564}, {"caption": "an educational video discusses how to trip cats nails", "video_id": "video10050", "sen_id": 205565}, {"caption": "she is pampering the pet cat on the lap and massaging the paw and cutting the nails", "video_id": "video10050", "sen_id": 205566}, {"caption": "a woman with a blue sweatshirt is trimming the claws of a cat that is sitting on her lap", "video_id": "video10050", "sen_id": 205567}, {"caption": "a woman is massaging a cat she is also cutting the cats nails", "video_id": "video10050", "sen_id": 205568}, {"caption": "a lady sitting on the couch with a cat on her lap trimming the cats nails", "video_id": "video10050", "sen_id": 205569}, {"caption": "this is a tutorial of how to clip cat s nail it suggests that cat owners should try to cut them while they are sleepy or tired", "video_id": "video10050", "sen_id": 205570}, {"caption": "a woman massages her cat s paws as the narrator names other methods", "video_id": "video10050", "sen_id": 205571}, {"caption": "a lady shows how the legs of cat was checked and how to cut nail", "video_id": "video10050", "sen_id": 205572}, {"caption": "a cat s caretaker cuts the cat s nails with scissor", "video_id": "video10050", "sen_id": 205573}, {"caption": "an instructional video says to trim a cat s nails by waiting until she is relaxed and doing it while she is on your lap", "video_id": "video10050", "sen_id": 205574}, {"caption": "the man describes the process of trimming cats nails", "video_id": "video10050", "sen_id": 205575}, {"caption": "a manicured woman wearing a gray hoodie massages the front paws of a marbled cat sitting on a white pillow on her lap", "video_id": "video10050", "sen_id": 205576}, {"caption": "a woman cutting the nails of a cat and pampering", "video_id": "video10050", "sen_id": 205577}, {"caption": "a man is explaining about the procedure to cut the nails of cats", "video_id": "video10050", "sen_id": 205578}, {"caption": "a person is showing some stuff in their hands", "video_id": "video10050", "sen_id": 205579}, {"caption": "the movie due date is being shown in clips", "video_id": "video10205", "sen_id": 205580}, {"caption": "this is a clip from the movie due date", "video_id": "video10205", "sen_id": 205581}, {"caption": "a group of men are sitting in a room drinking coffee", "video_id": "video10205", "sen_id": 205582}, {"caption": "a preview of a funny movie coming up", "video_id": "video10205", "sen_id": 205583}, {"caption": "a group of friends are disgusted to find they are drinking coffed with a cremated person's ashes in them", "video_id": "video10205", "sen_id": 205584}, {"caption": "men sitting on couches in living room drinking coffee talking", "video_id": "video10205", "sen_id": 205585}, {"caption": "a man with a beard drinking coffee and not enjoying it", "video_id": "video10205", "sen_id": 205586}, {"caption": "three men set on couches in a living room and drink coffee", "video_id": "video10205", "sen_id": 205587}, {"caption": "a man with a beard and curly hair is drinking from a coffee cup", "video_id": "video10205", "sen_id": 205588}, {"caption": "trailer for movie due date is being shown where one man drinks coffee then spits the coffee because it is horrible", "video_id": "video10205", "sen_id": 205589}, {"caption": "three men sit in an upscale living room drinking from coffee mugs and two men react to the bad taste by forcefully spitting out the beverage", "video_id": "video10205", "sen_id": 205590}, {"caption": "a movie trailer highlighting a key moments in due date where one man's mother's ashes were made into coffee", "video_id": "video10205", "sen_id": 205591}, {"caption": "there is a man drinking coffee with two persons", "video_id": "video10205", "sen_id": 205592}, {"caption": "a video countdown of movies the video playing on the screen was a scene from the popular movie due dates", "video_id": "video10205", "sen_id": 205593}, {"caption": "two men drink coffee while the third man explains the contents of the coffee", "video_id": "video10205", "sen_id": 205594}, {"caption": "a commercial for the movie due date starring robert downy junior", "video_id": "video10205", "sen_id": 205595}, {"caption": "three men are sitting in a living room drinking from coffee cups", "video_id": "video10205", "sen_id": 205596}, {"caption": "a funny clip from the movie due date", "video_id": "video10205", "sen_id": 205597}, {"caption": "a commercial for a movie shows a man drinking horrible coffee which turns out to be cat remains turned into coffee", "video_id": "video10205", "sen_id": 205598}, {"caption": "due date is on a list of the best 7 movies robert downey jr drinks cat litter coffee", "video_id": "video10205", "sen_id": 205599}, {"caption": "a man is talking about the latest iphone apps", "video_id": "video10309", "sen_id": 205600}, {"caption": "an asian man in a blue tie reads the news", "video_id": "video10309", "sen_id": 205601}, {"caption": "a msnbc reporter talks on the tech bet about the newest apple ios 8 and all of the new apps that are compatible", "video_id": "video10309", "sen_id": 205602}, {"caption": "a man sits at a desk and talks about apple's new operating system", "video_id": "video10309", "sen_id": 205603}, {"caption": "a man in a suit and blue tie is talking about apple iphone", "video_id": "video10309", "sen_id": 205604}, {"caption": "a black haired man in a black suit and blue tie is discussing technology", "video_id": "video10309", "sen_id": 205605}, {"caption": "a man in a suit sitting and talking on a news show", "video_id": "video10309", "sen_id": 205606}, {"caption": "a news anchorman in a black suit talks about the new iphone and all of its new capabilities", "video_id": "video10309", "sen_id": 205607}, {"caption": "announcement of iphone ios 8 software update including app updates", "video_id": "video10309", "sen_id": 205608}, {"caption": "apple s operating system number eight is finally out", "video_id": "video10309", "sen_id": 205609}, {"caption": "a man in grey colour suit explaining about some subject", "video_id": "video10309", "sen_id": 205610}, {"caption": "new chennel is been advertised in res", "video_id": "video10309", "sen_id": 205611}, {"caption": "a men in black coat explaining iphone apps and plus point of the uses", "video_id": "video10309", "sen_id": 205612}, {"caption": "an asian news anchor in a black suit sits on cnbc", "video_id": "video10309", "sen_id": 205613}, {"caption": "an oriental man in a dark blue suit an light blue tie tells us about the new apple iphone", "video_id": "video10309", "sen_id": 205614}, {"caption": "a man with blue tie reading a news", "video_id": "video10309", "sen_id": 205615}, {"caption": "the man wearing the blue neck tie sits and talk", "video_id": "video10309", "sen_id": 205616}, {"caption": "best apps for the iphone 6 & iphone 6 plus", "video_id": "video10309", "sen_id": 205617}, {"caption": "dominic chu is presenting the latest news about apple products", "video_id": "video10309", "sen_id": 205618}, {"caption": "a man in a black suit is speaking", "video_id": "video10309", "sen_id": 205619}, {"caption": "a woman dressed in traditional garb is on television cooking food", "video_id": "video12877", "sen_id": 205620}, {"caption": "a bowl of crab shells is shown a woman in a black sari shows a type of fried food food is cooking in a pan and more spices are dumpe in", "video_id": "video12877", "sen_id": 205621}, {"caption": "woman in black dress is explaining how to cook a certain dish", "video_id": "video12877", "sen_id": 205622}, {"caption": "a woman putting food in to a wok and cooking", "video_id": "video12877", "sen_id": 205623}, {"caption": "a woman in indian wardrobe is cooking in a wok", "video_id": "video12877", "sen_id": 205624}, {"caption": "woman wearing a black gown and black scarf around her shoulders cooking on a cooking show", "video_id": "video12877", "sen_id": 205625}, {"caption": "an iforeign lady speaks and prepares a dish that includes pasta", "video_id": "video12877", "sen_id": 205626}, {"caption": "a lady giving explanation for preparation of the dish", "video_id": "video12877", "sen_id": 205627}, {"caption": "a middle-aged indian woman cooks and explains what she s doing", "video_id": "video12877", "sen_id": 205628}, {"caption": "an indian woman shows how to make a delicious dish", "video_id": "video12877", "sen_id": 205629}, {"caption": "there is a woman making some variety thing", "video_id": "video12877", "sen_id": 205630}, {"caption": "a woman is standing in a kitchen making food", "video_id": "video12877", "sen_id": 205631}, {"caption": "a south indian woman is preparing a recipe involving crabs she adds a tablespoon of white pepper powder and black pepper powder", "video_id": "video12877", "sen_id": 205632}, {"caption": "an indian woman in a brown sari adds black pepper to her dish", "video_id": "video12877", "sen_id": 205633}, {"caption": "a woman is cooking in a kitchen on a cooking show", "video_id": "video12877", "sen_id": 205634}, {"caption": "a woman is teaching the audience how to cook a meal", "video_id": "video12877", "sen_id": 205635}, {"caption": "cooking a bandladeshi dish that contains black pepper", "video_id": "video12877", "sen_id": 205636}, {"caption": "its cooking show where the lady in saree stir with spatula", "video_id": "video12877", "sen_id": 205637}, {"caption": "an indian woman mixes ingredients to make a delicious meal", "video_id": "video12877", "sen_id": 205638}, {"caption": "the indian woman adds pepper to the food she is cooking in the pan", "video_id": "video12877", "sen_id": 205639}, {"caption": "asian man petting and talking to a very large pig", "video_id": "video10008", "sen_id": 205640}, {"caption": "a man in a blue jacket is petting a large pink pig", "video_id": "video10008", "sen_id": 205641}, {"caption": "a man with a blue jacket is playing with a very large pig", "video_id": "video10008", "sen_id": 205642}, {"caption": "a man in a blue jacket plays with a pig", "video_id": "video10008", "sen_id": 205643}, {"caption": "a man feeding a giant pink pig and patting it", "video_id": "video10008", "sen_id": 205644}, {"caption": "a man gives food to a large pig as he knells down", "video_id": "video10008", "sen_id": 205645}, {"caption": "a man in a blue coat is petting a large pig", "video_id": "video10008", "sen_id": 205646}, {"caption": "a guy is playing with a pig and there is a dog barking", "video_id": "video10008", "sen_id": 205647}, {"caption": "a man touching a pig and giving food", "video_id": "video10008", "sen_id": 205648}, {"caption": "a man in blue jacket playing with a big piggy", "video_id": "video10008", "sen_id": 205649}, {"caption": "there is a man picture shown then some animated cartoon shown on tv", "video_id": "video10008", "sen_id": 205650}, {"caption": "a man bending down and petting a pig on the head", "video_id": "video10008", "sen_id": 205651}, {"caption": "a guy is playing with the white pig", "video_id": "video10008", "sen_id": 205652}, {"caption": "a man in a blue coat is petting a pink pig", "video_id": "video10008", "sen_id": 205653}, {"caption": "asian guy showing his pig and feeding him as he is talking to the camera", "video_id": "video10008", "sen_id": 205654}, {"caption": "a man in a blue jacket playing with a pig", "video_id": "video10008", "sen_id": 205655}, {"caption": "live leak rt ruptly one big white pig", "video_id": "video10008", "sen_id": 205656}, {"caption": "a man attempts to pet a large pig while it is eating", "video_id": "video10008", "sen_id": 205657}, {"caption": "asian man is having fun with his big pink pig", "video_id": "video10008", "sen_id": 205658}, {"caption": "a gentleman playing with a pig with a dog barking in the background", "video_id": "video10008", "sen_id": 205659}, {"caption": "people having fun at a rave party with loud music", "video_id": "video12599", "sen_id": 205660}, {"caption": "young people party inside of a dark club and dance suggestively to electronic music", "video_id": "video12599", "sen_id": 205661}, {"caption": "people are dancing and partying to trap music", "video_id": "video12599", "sen_id": 205662}, {"caption": "women shaking their breasts in a club and couples dancing", "video_id": "video12599", "sen_id": 205663}, {"caption": "some people dancing around sexy in a party", "video_id": "video12599", "sen_id": 205664}, {"caption": "people are dancing around inside a club wearing glow sticks", "video_id": "video12599", "sen_id": 205665}, {"caption": "women provocatively dance and show their breasts in a club", "video_id": "video12599", "sen_id": 205666}, {"caption": "people are dancing in a club while music plays", "video_id": "video12599", "sen_id": 205667}, {"caption": "a lady dances in a night club half naked", "video_id": "video12599", "sen_id": 205668}, {"caption": "people party in a club as music plays and lights flash", "video_id": "video12599", "sen_id": 205669}, {"caption": "all persons are dancing on lights on a pub bar", "video_id": "video12599", "sen_id": 205670}, {"caption": "a different clips of people are dancing to music in a club", "video_id": "video12599", "sen_id": 205671}, {"caption": "its a pub girls are dancing with the joy and there are different colors", "video_id": "video12599", "sen_id": 205672}, {"caption": "girls dance and party at a rave concert with lights", "video_id": "video12599", "sen_id": 205673}, {"caption": "some glowing rocks are sitting in a cave", "video_id": "video12599", "sen_id": 205674}, {"caption": "there is a video of hot girls dancing and singing", "video_id": "video12599", "sen_id": 205675}, {"caption": "a bunch of people dancing and being wild in a night club", "video_id": "video12599", "sen_id": 205676}, {"caption": "party goers dancing and taking off clothes for the camera and other dancers", "video_id": "video12599", "sen_id": 205677}, {"caption": "different people dancing to electronic dance music in a club", "video_id": "video12599", "sen_id": 205678}, {"caption": "some people in a club are getting wild", "video_id": "video12599", "sen_id": 205679}, {"caption": "a green bird sqawks while sitting on the a mans shoulder", "video_id": "video10552", "sen_id": 205680}, {"caption": "a man has a green and white bird on his shoulder the bird bites the man and the man asks the bird to apologize the bird says sorry", "video_id": "video10552", "sen_id": 205681}, {"caption": "a man comforts his bird on his shoulders", "video_id": "video10552", "sen_id": 205682}, {"caption": "a man with a green bird on his shoulder is talking", "video_id": "video10552", "sen_id": 205683}, {"caption": "a bird sitting on someone's shoulder getting a belly rub", "video_id": "video10552", "sen_id": 205684}, {"caption": "a young boy is talking to a green parrot that is sitting on his right shoulder", "video_id": "video10552", "sen_id": 205685}, {"caption": "a bird standing on a mans shoulder and then saying", "video_id": "video10552", "sen_id": 205686}, {"caption": "a young man is shown talking to his parakeet and the parakett bites the guy on the ear", "video_id": "video10552", "sen_id": 205687}, {"caption": "a parakeet sits on the shoulder of a guy wearing a black shirt", "video_id": "video10552", "sen_id": 205688}, {"caption": "a very nice green parrot is sitting on a person s shoulder", "video_id": "video10552", "sen_id": 205689}, {"caption": "a parrot bites the neck of a man who has the parrot perched on his shoulder", "video_id": "video10552", "sen_id": 205690}, {"caption": "a man is plating with a bird it is sitting his shoulder", "video_id": "video10552", "sen_id": 205691}, {"caption": "a parrot on a man s shoulder bites the man in his neck", "video_id": "video10552", "sen_id": 205692}, {"caption": "a coloured parrot sitting on shoulder wearing black t shirt", "video_id": "video10552", "sen_id": 205693}, {"caption": "a person is talking with the parrot who is on the shoulder", "video_id": "video10552", "sen_id": 205694}, {"caption": "the person rubs the parrot as it sits on his shoulder", "video_id": "video10552", "sen_id": 205695}, {"caption": "a man petting a parrot on his shoulder and requests the parrot say sorry after biting him to which the parrot says sorry", "video_id": "video10552", "sen_id": 205696}, {"caption": "a person plays with a pet bird that is sitting on their shoulder", "video_id": "video10552", "sen_id": 205697}, {"caption": "anothe parrot who is biting his master and then the bird says sorry for it", "video_id": "video10552", "sen_id": 205698}, {"caption": "a person talking to parrot sitting on the shoulder", "video_id": "video10552", "sen_id": 205699}, {"caption": "president obama talking about making computer tools accessible", "video_id": "video12838", "sen_id": 205700}, {"caption": "obama gives a speecch infront of a yellow curtain", "video_id": "video12838", "sen_id": 205701}, {"caption": "its a video of the former us president barack obama", "video_id": "video12838", "sen_id": 205702}, {"caption": "pres obama is talking to a group of people about students using computers in the classroom", "video_id": "video12838", "sen_id": 205703}, {"caption": "president obama speaking on educating children with new information", "video_id": "video12838", "sen_id": 205704}, {"caption": "president wearing a black suit and giving an interview in a press room", "video_id": "video12838", "sen_id": 205705}, {"caption": "president obama is standing at a podium speaking to a group of people", "video_id": "video12838", "sen_id": 205706}, {"caption": "president obama gives a speech about using computers in the classroom", "video_id": "video12838", "sen_id": 205707}, {"caption": "an african man tries to explain something that he does not seem to understand himself", "video_id": "video12838", "sen_id": 205708}, {"caption": "in a black suit and blue tie standing in front of the american flag president obama gives a speech about the use of computers in an educational context", "video_id": "video12838", "sen_id": 205709}, {"caption": "a man is standing at a podium talking with a flag behind him", "video_id": "video12838", "sen_id": 205710}, {"caption": "a black suit man talking in front of a flag", "video_id": "video12838", "sen_id": 205711}, {"caption": "barrack obama is giving a speech about computer software in front of an american flag", "video_id": "video12838", "sen_id": 205712}, {"caption": "the american president holding some type of conference", "video_id": "video12838", "sen_id": 205713}, {"caption": "the president of the united states of america giving a speech", "video_id": "video12838", "sen_id": 205714}, {"caption": "obama is on tv and talking about some thing", "video_id": "video12838", "sen_id": 205715}, {"caption": "a man wearing black coat is talking in front of the mike", "video_id": "video12838", "sen_id": 205716}, {"caption": "united states president barack obama is giving a speech about companies offerings", "video_id": "video12838", "sen_id": 205717}, {"caption": "barack obama in a suit and tie talking in front of a gold curtain", "video_id": "video12838", "sen_id": 205718}, {"caption": "barack obama speaks at the oval office about education and digital tools", "video_id": "video12838", "sen_id": 205719}, {"caption": "small man in black shades singing while in a beauty salon", "video_id": "video10212", "sen_id": 205720}, {"caption": "two men sing as they sit in rollers under hair dressers in a beauty salon", "video_id": "video10212", "sen_id": 205721}, {"caption": "a woman and two men sing while they have their hair in curlers and sit in a row under semicircular hair dryers in front of a storage unit with products on the counter posters showing different hair styles are attached to the wood paneling on the walls", "video_id": "video10212", "sen_id": 205722}, {"caption": "man is singing while he is getting his hair cut at the hair salon", "video_id": "video10212", "sen_id": 205723}, {"caption": "some men sing a funky song in a comical music video", "video_id": "video10212", "sen_id": 205724}, {"caption": "a man with curlers in his hair sits in a beauty parlor and sings", "video_id": "video10212", "sen_id": 205725}, {"caption": "two men and one woman are sitting under hairdryers with curlers in their hair", "video_id": "video10212", "sen_id": 205726}, {"caption": "bruno mars sings while sitting in a salon", "video_id": "video10212", "sen_id": 205727}, {"caption": "a guy sings while getting his hair done at a salon", "video_id": "video10212", "sen_id": 205728}, {"caption": "a group of people setting in beauty chairs dance and sing", "video_id": "video10212", "sen_id": 205729}, {"caption": "a man getting his shoes shined and singing as he sits with curlers under the dryer next to other people under the dryer", "video_id": "video10212", "sen_id": 205730}, {"caption": "there is a man dancing on the floor with a group", "video_id": "video10212", "sen_id": 205731}, {"caption": "three guys sitting in a saloon and singing song", "video_id": "video10212", "sen_id": 205732}, {"caption": "three men in hair curlers under the dryer in a salon", "video_id": "video10212", "sen_id": 205733}, {"caption": "a man is singing with two backup singers in a scene with older men in a barber shop then on a hair drying chair in a beauty parlor", "video_id": "video10212", "sen_id": 205734}, {"caption": "bruno mars sitting in a parlour singing too hot", "video_id": "video10212", "sen_id": 205735}, {"caption": "bruno mars is singing uptown funk in a barber shop", "video_id": "video10212", "sen_id": 205736}, {"caption": "a three persons are singing the song of mark-son uptown funk-town", "video_id": "video10212", "sen_id": 205737}, {"caption": "a man is singing while he is getting his hair done", "video_id": "video10212", "sen_id": 205738}, {"caption": "a music video of bruno mars singing in a barbershop", "video_id": "video10212", "sen_id": 205739}, {"caption": "a man is talking to another man about getting in a fight", "video_id": "video11328", "sen_id": 205740}, {"caption": "a man speaks frankly to another man in a movie scene", "video_id": "video11328", "sen_id": 205741}, {"caption": "a video clip of a movie staring brad pitt", "video_id": "video11328", "sen_id": 205742}, {"caption": "two men set at a bar and have an intense conversation", "video_id": "video11328", "sen_id": 205743}, {"caption": "a clip from a movie staring brad pitt", "video_id": "video11328", "sen_id": 205744}, {"caption": "an old man with glasses talking about a girl and a man", "video_id": "video11328", "sen_id": 205745}, {"caption": "a man in glasses talking to a man next to him", "video_id": "video11328", "sen_id": 205746}, {"caption": "a man wearing glasses is speaking to another man", "video_id": "video11328", "sen_id": 205747}, {"caption": "there is a man with specs talking to co-workers", "video_id": "video11328", "sen_id": 205748}, {"caption": "an old man in a dark room with glasses grumbles to a young man speaking to him", "video_id": "video11328", "sen_id": 205749}, {"caption": "a bald head guy talking to a guy sitting on a table", "video_id": "video11328", "sen_id": 205750}, {"caption": "a man wearing glasses and a suit sits and speaks to a man sitting on a table", "video_id": "video11328", "sen_id": 205751}, {"caption": "a man with a mustache is talking to someone", "video_id": "video11328", "sen_id": 205752}, {"caption": "two men having a conversation whiile having a drinks in a bar", "video_id": "video11328", "sen_id": 205753}, {"caption": "an old man with specs and a drink glass before him speaks to a guy", "video_id": "video11328", "sen_id": 205754}, {"caption": "from the movie killing them softly brad pitt s character is having a conversation with an old man in a bar about a man named dylan", "video_id": "video11328", "sen_id": 205755}, {"caption": "a movie scene of bradd pit speaking to a sitting man", "video_id": "video11328", "sen_id": 205756}, {"caption": "a old man having his dinner and speaking with his friend or son", "video_id": "video11328", "sen_id": 205757}, {"caption": "two men in a bar discuss a shady deal over drinks", "video_id": "video11328", "sen_id": 205758}, {"caption": "a man is sitting at a bar talking to a man standing beside him", "video_id": "video11328", "sen_id": 205759}, {"caption": "a person is performing a runway walk for a show", "video_id": "video11775", "sen_id": 205760}, {"caption": "the silhouette of a woman on the runway while music plays", "video_id": "video11775", "sen_id": 205761}, {"caption": "the silhouette of a woman in a fashion show as the light turns on and starts her walk down the cat walk", "video_id": "video11775", "sen_id": 205762}, {"caption": "india fashion street tour shows a woman's silhouette her turn around and the lights quickly come one", "video_id": "video11775", "sen_id": 205763}, {"caption": "in a fashion show model doing a ramp walk with beautiful dress", "video_id": "video11775", "sen_id": 205764}, {"caption": "music introduces a fashion collection show called the hyderabad collection a model turns around and displays an indian style outfit", "video_id": "video11775", "sen_id": 205765}, {"caption": "a sihlouette of a woman on a runway at a fashion show stars moving when the music speeds up", "video_id": "video11775", "sen_id": 205766}, {"caption": "music playing and a person walking on stage at a fashion show", "video_id": "video11775", "sen_id": 205767}, {"caption": "music plays and a woman begins to walk the runway", "video_id": "video11775", "sen_id": 205768}, {"caption": "a fashion model stands in shadow waiting for a runway show to start then the lights come up", "video_id": "video11775", "sen_id": 205769}, {"caption": "the silhouette of a woman model walks toward the camera as the light intensifies", "video_id": "video11775", "sen_id": 205770}, {"caption": "a lady standing on the stage", "video_id": "video11775", "sen_id": 205771}, {"caption": "a woman posing at a fashion show in a dress", "video_id": "video11775", "sen_id": 205772}, {"caption": "a women wearing saree walking through the ramp of a fashion show", "video_id": "video11775", "sen_id": 205773}, {"caption": "a fashion dress design a girl wearing fashion dress dressing walking on stage audience watching displaying on screen", "video_id": "video11775", "sen_id": 205774}, {"caption": "there is a woman posing in the darkness", "video_id": "video11775", "sen_id": 205775}, {"caption": "the silhouette of a woman is shown on a runway for a fashion show", "video_id": "video11775", "sen_id": 205776}, {"caption": "a woman sillouette is shown in front of some text the light go on and the woman starts walking", "video_id": "video11775", "sen_id": 205777}, {"caption": "an indian fashion show is going on and models wearing designer saree", "video_id": "video11775", "sen_id": 205778}, {"caption": "a woman modeling fashion street during a fashion tour", "video_id": "video11775", "sen_id": 205779}, {"caption": "a woman explaining what black friday is and how it came to britain", "video_id": "video12041", "sen_id": 205780}, {"caption": "a woman wearing a blue jacket and white scarf", "video_id": "video12041", "sen_id": 205781}, {"caption": "a reporter explains the concept of 'black friday' to a british audience", "video_id": "video12041", "sen_id": 205782}, {"caption": "a woman walks down a crowded city sidewalk by store windows wearing a deep-blue wraparound coat with a gray-and-white scarf wrapped around her neck", "video_id": "video12041", "sen_id": 205783}, {"caption": "a british woman walking down the street talking about black friday", "video_id": "video12041", "sen_id": 205784}, {"caption": "a woman in a blueish purple jacket is peaking and walking down a busy sidewalk", "video_id": "video12041", "sen_id": 205785}, {"caption": "there is a blue suit woman talking and walking in to the street", "video_id": "video12041", "sen_id": 205786}, {"caption": "an english woman is describing the american black friday tradition", "video_id": "video12041", "sen_id": 205787}, {"caption": "lady is explaining about some thing with blue dress by walking along the street", "video_id": "video12041", "sen_id": 205788}, {"caption": "woman with blue jacket is walking on the street", "video_id": "video12041", "sen_id": 205789}, {"caption": "a person in blue coat talking to the camera in busy street", "video_id": "video12041", "sen_id": 205790}, {"caption": "britain decides to join in on the black friday sales event", "video_id": "video12041", "sen_id": 205791}, {"caption": "a woman in a blue jacket talking about black friday", "video_id": "video12041", "sen_id": 205792}, {"caption": "a woman with short brown hair and a bright blue coat is walking down the street in a city", "video_id": "video12041", "sen_id": 205793}, {"caption": "a british woman is talking about black friday while walking on a sidewalk", "video_id": "video12041", "sen_id": 205794}, {"caption": "a person with a blue jacket has bad makeup", "video_id": "video12041", "sen_id": 205795}, {"caption": "a lady is speaking about the start up of black friday in the united kingdom", "video_id": "video12041", "sen_id": 205796}, {"caption": "a streat scene where a tv host demonstraiting something through walking on the streat", "video_id": "video12041", "sen_id": 205797}, {"caption": "a female reporter in a blue jacket is walking down a street talking about black friday the day after thanksgiving", "video_id": "video12041", "sen_id": 205798}, {"caption": "a woman wearing a blue coat walks down the street talking about black friday", "video_id": "video12041", "sen_id": 205799}, {"caption": "ads are shown for numerous types of vehicles", "video_id": "video10193", "sen_id": 205800}, {"caption": "many luxury sports cars and text issuing a challenge", "video_id": "video10193", "sen_id": 205801}, {"caption": "someone is choosing porsche car in sports car challenge game", "video_id": "video10193", "sen_id": 205802}, {"caption": "sports cars shown in a gallery with pop music", "video_id": "video10193", "sen_id": 205803}, {"caption": "a car select menu for a game followed by a subscription window with many icons", "video_id": "video10193", "sen_id": 205804}, {"caption": "a porsche icon is followed by five tiles of porsche fronts in different bold colors", "video_id": "video10193", "sen_id": 205805}, {"caption": "shows a screen with cars maybe from a video game then ends with a youtubecom subscription option", "video_id": "video10193", "sen_id": 205806}, {"caption": "sports are car are shown and gameplay station of youtube is shown", "video_id": "video10193", "sen_id": 205807}, {"caption": "an advertisement for something about the car race", "video_id": "video10193", "sen_id": 205808}, {"caption": "a row of colorful car hoods and different icons around a yellow subscribe button", "video_id": "video10193", "sen_id": 205809}, {"caption": "there are some stylish cars on the floor", "video_id": "video10193", "sen_id": 205810}, {"caption": "pictures of a porsche scroll across the screen", "video_id": "video10193", "sen_id": 205811}, {"caption": "various multi color sports cars are lined up for comparison purposes", "video_id": "video10193", "sen_id": 205812}, {"caption": "a video of a channel about sports car challenge", "video_id": "video10193", "sen_id": 205813}, {"caption": "advertise about the product being shown on the screeen", "video_id": "video10193", "sen_id": 205814}, {"caption": "there are some tips available for new games", "video_id": "video10193", "sen_id": 205815}, {"caption": "several different images of sports cars are compiled together in tile form", "video_id": "video10193", "sen_id": 205816}, {"caption": "a porche sports car gameplay clip that shows various models and offers a subscribe link", "video_id": "video10193", "sen_id": 205817}, {"caption": "a person has a youtube channel where they show video games they are playing", "video_id": "video10193", "sen_id": 205818}, {"caption": "there are five different types of sports cars", "video_id": "video10193", "sen_id": 205819}, {"caption": "several different food dishes are shown on plates and being served", "video_id": "video11453", "sen_id": 205820}, {"caption": "a japanese dish is freshly prepared and served in a cafeteria", "video_id": "video11453", "sen_id": 205821}, {"caption": "a lady puts a plate of sizzling food on a counter and we see a someone picking the food up with a fork", "video_id": "video11453", "sen_id": 205822}, {"caption": "a person is recording video of the steak disk being ordered", "video_id": "video11453", "sen_id": 205823}, {"caption": "a restaurant chef plates up food for a paying customer", "video_id": "video11453", "sen_id": 205824}, {"caption": "a woman serves up sizzling hot food to a customer", "video_id": "video11453", "sen_id": 205825}, {"caption": "a waitress sets a plate of steaming food in front of a restaurant patron", "video_id": "video11453", "sen_id": 205826}, {"caption": "a woman serves a hot dish to a person and the person takes a bit of it before looking at other food", "video_id": "video11453", "sen_id": 205827}, {"caption": "a woman putting down a plate of hot food and someone serving food", "video_id": "video11453", "sen_id": 205828}, {"caption": "a woman serves a plate of food and then another woman scoops food onto a plate", "video_id": "video11453", "sen_id": 205829}, {"caption": "a lady is serving food that contains meat in a cafeteria", "video_id": "video11453", "sen_id": 205830}, {"caption": "there is a woman eating some food at kitchen", "video_id": "video11453", "sen_id": 205831}, {"caption": "different kinds of fod are displayed by the chefs", "video_id": "video11453", "sen_id": 205832}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11453", "sen_id": 205833}, {"caption": "delicious japanese food is being served to and observered by the camera man", "video_id": "video11453", "sen_id": 205834}, {"caption": "a woman in a red apron serves a dish with meat and vegetables then more food is displayed on a counter and there is another closeup of a plate with beef in it", "video_id": "video11453", "sen_id": 205835}, {"caption": "a lady taking a plate and putting vegetables on it", "video_id": "video11453", "sen_id": 205836}, {"caption": "a cafeteria worker passes plates of food over the sneeze guard to waiting customers", "video_id": "video11453", "sen_id": 205837}, {"caption": "in a restaurant where food is ready on table and other recipe meat fry is in process with good looking fresh supliers", "video_id": "video11453", "sen_id": 205838}, {"caption": "a person is eating meat and vegetables", "video_id": "video11453", "sen_id": 205839}, {"caption": "a lady speaking on a tv news show", "video_id": "video12436", "sen_id": 205840}, {"caption": "a news reporter on a foreign language television station", "video_id": "video12436", "sen_id": 205841}, {"caption": "a news reporter woman is speaking in a foreign language about a current event", "video_id": "video12436", "sen_id": 205842}, {"caption": "a news segment in a language other than english", "video_id": "video12436", "sen_id": 205843}, {"caption": "a foreign news reporter reports the news", "video_id": "video12436", "sen_id": 205844}, {"caption": "brown haired woman in blue dress reporting the news in arab country", "video_id": "video12436", "sen_id": 205845}, {"caption": "a woman wearing blue is delivering the news behind a desk", "video_id": "video12436", "sen_id": 205846}, {"caption": "a female with brown hair and wearing a blue dress speaks a foreign language to a camera while seated at a news desk", "video_id": "video12436", "sen_id": 205847}, {"caption": "an attractive middle eastern female news anchor with brown hair and a blue dress reads the news on camera in her native language", "video_id": "video12436", "sen_id": 205848}, {"caption": "a woman in a blue shirt gives a news report from a studio", "video_id": "video12436", "sen_id": 205849}, {"caption": "an arabic female newscaster in a blue shirt talks about the news", "video_id": "video12436", "sen_id": 205850}, {"caption": "a young woman is reporting the news in front of a backdrop designed to look like a city", "video_id": "video12436", "sen_id": 205851}, {"caption": "a news reporter explaining about the scrolling news in urdu language", "video_id": "video12436", "sen_id": 205852}, {"caption": "newscaster reading the news in a foreign language", "video_id": "video12436", "sen_id": 205853}, {"caption": "a woman on the news is talking to people", "video_id": "video12436", "sen_id": 205854}, {"caption": "a lady wearing blue dress is talking", "video_id": "video12436", "sen_id": 205855}, {"caption": "a woman is reading the news in a foreign language", "video_id": "video12436", "sen_id": 205856}, {"caption": "a twitter feed is up then a woman in a blue shirt talks", "video_id": "video12436", "sen_id": 205857}, {"caption": "sexy brunette in blue dress talking to the camera in news room studio", "video_id": "video12436", "sen_id": 205858}, {"caption": "a woman with brown hair is sitting down", "video_id": "video12436", "sen_id": 205859}, {"caption": "a man narrates as a person is using a typewriter", "video_id": "video10032", "sen_id": 205860}, {"caption": "a man is shown taking an oath as a narrator describes what is happening to him politically", "video_id": "video10032", "sen_id": 205861}, {"caption": "the main character from the televison show house of cards is typing", "video_id": "video10032", "sen_id": 205862}, {"caption": "a man is recapping the previous events of the first two seasons of a television show", "video_id": "video10032", "sen_id": 205863}, {"caption": "kevin spacey in a trailer for the tv show house of cards", "video_id": "video10032", "sen_id": 205864}, {"caption": "follow another pulse pounding episode at the underwood's scheme their way to the top of washington", "video_id": "video10032", "sen_id": 205865}, {"caption": "a man talking about the show house of cards", "video_id": "video10032", "sen_id": 205866}, {"caption": "a man is introducing about a famous film", "video_id": "video10032", "sen_id": 205867}, {"caption": "a man is going about doing various political tasks", "video_id": "video10032", "sen_id": 205868}, {"caption": "a man comments on the show house of cards which he says is a netflix favorite", "video_id": "video10032", "sen_id": 205869}, {"caption": "a old man in black coat color dress wearing cloth standing other lady beside speaking inside forest doing typing paper displaying on screen", "video_id": "video10032", "sen_id": 205870}, {"caption": "frank underwood being sworn under oath and then sits down to type a letter", "video_id": "video10032", "sen_id": 205871}, {"caption": "house of cards review about the man and the typewriter in a scene", "video_id": "video10032", "sen_id": 205872}, {"caption": "house of cards is an american political drama web television series developed and produced by beau willimon", "video_id": "video10032", "sen_id": 205873}, {"caption": "a show by the name of house of cards being explained", "video_id": "video10032", "sen_id": 205874}, {"caption": "a man in a suit swears on a bible and writes a letter", "video_id": "video10032", "sen_id": 205875}, {"caption": "a man is speaking and holding his right hand up and also touch a bible a man is using a typewriter", "video_id": "video10032", "sen_id": 205876}, {"caption": "a man reviews a season of an upcoming show with a man seen working on type writer", "video_id": "video10032", "sen_id": 205877}, {"caption": "a man in a suit is talking to people in different scenes then sit to type", "video_id": "video10032", "sen_id": 205878}, {"caption": "a person is swearing on bible in front of a woman and typing the words in typing machine in the movie scene house of cards", "video_id": "video10032", "sen_id": 205879}, {"caption": "a woman is explaining what is needed to make a meal", "video_id": "video10125", "sen_id": 205880}, {"caption": "hands hold prepared ingredients for an asian shrimp and vegetable noodle dish and places them one at a time on a speckled stone kitchen counter", "video_id": "video10125", "sen_id": 205881}, {"caption": "a woman is presented the ingredients needed to make a recipe", "video_id": "video10125", "sen_id": 205882}, {"caption": "a person with a white glove laying out ingredients for a meal", "video_id": "video10125", "sen_id": 205883}, {"caption": "a woman off camera shows the ingredients for a noodle dish", "video_id": "video10125", "sen_id": 205884}, {"caption": "a woman shows the steps and ingredients for preparing a noodle dish", "video_id": "video10125", "sen_id": 205885}, {"caption": "a right handed white gloved female person narrates & represents a recipe as follows: we need 10 oz of chinese or ramen noodles 15 lbs of shrimps pilled & deveined 7 oz of fresh bean sprouts one length wise thin sliced then halved red bell pepper one thin sliced green bell pepper about the same size as the red pepper one sliced white onion and two finely chopped green onions all resting on a nice beige chocolaty veined kitchen marble block counter top", "video_id": "video10125", "sen_id": 205886}, {"caption": "a chef describes a recipe she is getting ready to prepare", "video_id": "video10125", "sen_id": 205887}, {"caption": "a woman is in the kitchen cooking a chinese dish made with shrimp and ramen noodles", "video_id": "video10125", "sen_id": 205888}, {"caption": "a woman is showing the ingredients for the dish from ramen noodle peeled shrimps sliced red and green bell peppers bean sprouts to chopped onions and green onions", "video_id": "video10125", "sen_id": 205889}, {"caption": "a young woman showing the ingredients used to make a dish", "video_id": "video10125", "sen_id": 205890}, {"caption": "a woman talks about the ingredients she will be using in a stir fry recipe", "video_id": "video10125", "sen_id": 205891}, {"caption": "a woman is speaking to the camera teaching the audience how to make a chinese food dish", "video_id": "video10125", "sen_id": 205892}, {"caption": "a demonstration of a ingredients for a cooking recipem including a package of needles and several vegetables", "video_id": "video10125", "sen_id": 205893}, {"caption": "a woman is showing the ingredients to be used in a recipe", "video_id": "video10125", "sen_id": 205894}, {"caption": "ingredients are being put on the table by a person who wears a glove for a preparation", "video_id": "video10125", "sen_id": 205895}, {"caption": "in the kitchen a woman is listing ingredients needed to make a dish", "video_id": "video10125", "sen_id": 205896}, {"caption": "in a table packet of chines noodels slice of tomato slice of capicum and plate of prawns has been shown", "video_id": "video10125", "sen_id": 205897}, {"caption": "a woman in a kitchen is placing items on a counter explaining each ingredient as she places them down", "video_id": "video10125", "sen_id": 205898}, {"caption": "a woman with gloves reveals ingredients to a dish one by one", "video_id": "video10125", "sen_id": 205899}, {"caption": "a woman puts some casserole into a dish ready to be cooked", "video_id": "video11530", "sen_id": 205900}, {"caption": "a woman putting a bunch of slop into a pan and preparing to cook it", "video_id": "video11530", "sen_id": 205901}, {"caption": "a lady standing over a food product and mixing the food product", "video_id": "video11530", "sen_id": 205902}, {"caption": "a woman describes how to prepare a caserole in her in-home kitchen", "video_id": "video11530", "sen_id": 205903}, {"caption": "a woman is giving instructions about food she is making while speading it into a cooking dish", "video_id": "video11530", "sen_id": 205904}, {"caption": "a woman pouring a casserole mix into a glass bakeware dish", "video_id": "video11530", "sen_id": 205905}, {"caption": "a woman scoops the food into the dish", "video_id": "video11530", "sen_id": 205906}, {"caption": "a woman in a blue shirt is putting food in a casserole dish and explains what she is going to do next", "video_id": "video11530", "sen_id": 205907}, {"caption": "a woman dishes out some kind of noodle like dish from a bowl as she explains what she's doing and then flattens out the noodles in a caserole dish", "video_id": "video11530", "sen_id": 205908}, {"caption": "a woman is n the kitchen spreading a mixture into a glass pan with a spoon", "video_id": "video11530", "sen_id": 205909}, {"caption": "a woman is spreading out a dish into a baking pan", "video_id": "video11530", "sen_id": 205910}, {"caption": "a woman in a blue shirt spoons her recipe from a bowl to a baking dish", "video_id": "video11530", "sen_id": 205911}, {"caption": "a person cooking a dish and placing it in a glass pan", "video_id": "video11530", "sen_id": 205912}, {"caption": "a woman standing in a kitchen preparing a type of casserole", "video_id": "video11530", "sen_id": 205913}, {"caption": "a woman is place a cooked dish in the serving bowl", "video_id": "video11530", "sen_id": 205914}, {"caption": "the woman in blue dress is carefully transferring the prepared vegetable and cheese macaroni into a baking dish so that it can be baked and served", "video_id": "video11530", "sen_id": 205915}, {"caption": "a person is scraping food out of a bowl", "video_id": "video11530", "sen_id": 205916}, {"caption": "a woman is emptying food into a dish while speaking", "video_id": "video11530", "sen_id": 205917}, {"caption": "an inhome chef demonstrates and describes a recipe she is working on in her kitchen", "video_id": "video11530", "sen_id": 205918}, {"caption": "a women is pouring some dish in glass plate and spreading it on plate", "video_id": "video11530", "sen_id": 205919}, {"caption": "a girl in a blue shirt and a girl in a red shirt are playing a video game and talking", "video_id": "video11229", "sen_id": 205920}, {"caption": "two girls streaming themselves playing computer video games", "video_id": "video11229", "sen_id": 205921}, {"caption": "two girls are playing a video game in a living room", "video_id": "video11229", "sen_id": 205922}, {"caption": "a boy and a girl play a computer game", "video_id": "video11229", "sen_id": 205923}, {"caption": "two girls play video games and talk about it", "video_id": "video11229", "sen_id": 205924}, {"caption": "women are giving commentary while playing a first-person shooter game", "video_id": "video11229", "sen_id": 205925}, {"caption": "a group of people demonstrate and describe a video game they are playing together online", "video_id": "video11229", "sen_id": 205926}, {"caption": "two young girls talk about a video game they are playing together", "video_id": "video11229", "sen_id": 205927}, {"caption": "women play video games and talk about how bad they are", "video_id": "video11229", "sen_id": 205928}, {"caption": "there is an insert video of two girls playing a video kill game simultaneously and laughing about it", "video_id": "video11229", "sen_id": 205929}, {"caption": "two women sit on their laptops and play shooter video games", "video_id": "video11229", "sen_id": 205930}, {"caption": "a couple is playing a gun shooting video game together", "video_id": "video11229", "sen_id": 205931}, {"caption": "two girls are playing a computer video game", "video_id": "video11229", "sen_id": 205932}, {"caption": "two women are playing a video game on their laptop computers", "video_id": "video11229", "sen_id": 205933}, {"caption": "two girls are playing a video game on the pc which is a first person shooter", "video_id": "video11229", "sen_id": 205934}, {"caption": "two girls sitting at a computer playing a video game while laughing and talking", "video_id": "video11229", "sen_id": 205935}, {"caption": "two young ladies playing a video game using laptops", "video_id": "video11229", "sen_id": 205936}, {"caption": "an action game play scene about a 3d game show", "video_id": "video11229", "sen_id": 205937}, {"caption": "two women playing a first person shooter game and making funny sounds and talking about the gameplay", "video_id": "video11229", "sen_id": 205938}, {"caption": "someone is playing a first person video game", "video_id": "video11229", "sen_id": 205939}, {"caption": "a beetle is standing on a podium while a commentator describes the different features of the beetle", "video_id": "video12982", "sen_id": 205940}, {"caption": "a large beetle with vertical pincers is on an elevated display and a furry bat extends its wings exposing the bony supports", "video_id": "video12982", "sen_id": 205941}, {"caption": "a scientist discusses insects and various characteristics of their habitat", "video_id": "video12982", "sen_id": 205942}, {"caption": "the beetle is on a stand and then it zooms in on a bat", "video_id": "video12982", "sen_id": 205943}, {"caption": "an insect is shown and flakes in stacks before we see a bat", "video_id": "video12982", "sen_id": 205944}, {"caption": "a scientist discusses insects that he has viewed under a microscope", "video_id": "video12982", "sen_id": 205945}, {"caption": "a closeup of a bug and the earth flashes across the screen", "video_id": "video12982", "sen_id": 205946}, {"caption": "a scientist discusses insects that he has viewed with a microscope", "video_id": "video12982", "sen_id": 205947}, {"caption": "a scientist discuss the characteristics of an insect he has been studying", "video_id": "video12982", "sen_id": 205948}, {"caption": "a black beetle with two prongs coming out of it's face is standing still", "video_id": "video12982", "sen_id": 205949}, {"caption": "a type of scientific video of beetles and butterflies", "video_id": "video12982", "sen_id": 205950}, {"caption": "a bat with wide wings is being shown in extreme close-up", "video_id": "video12982", "sen_id": 205951}, {"caption": "in a history tv a historic rock is shown the different shaped insect is also shown", "video_id": "video12982", "sen_id": 205952}, {"caption": "there is a beautiful picture of a bat or so it seems in a nice shade of blue", "video_id": "video12982", "sen_id": 205953}, {"caption": "an insect is shown very closely with magnified glasses", "video_id": "video12982", "sen_id": 205954}, {"caption": "a bug is being filmed on a thing out side", "video_id": "video12982", "sen_id": 205955}, {"caption": "a bat in blue colour and some stone slices were described", "video_id": "video12982", "sen_id": 205956}, {"caption": "the capabilities and aspects of rhinoceros beetles are being examined", "video_id": "video12982", "sen_id": 205957}, {"caption": "a large horned insect is seen as well as close up microscopic views", "video_id": "video12982", "sen_id": 205958}, {"caption": "the big black insects are in the dark spaces", "video_id": "video12982", "sen_id": 205959}, {"caption": "two women in the kitchen are giving instructions on using a spring form pan", "video_id": "video10418", "sen_id": 205960}, {"caption": "two women are cooking together with dough on a sheet", "video_id": "video10418", "sen_id": 205961}, {"caption": "a brunnette and blondie are in a kitchen baking", "video_id": "video10418", "sen_id": 205962}, {"caption": "two women describe and demonstrate making a crust", "video_id": "video10418", "sen_id": 205963}, {"caption": "two women stand in front of white kitchen cabinets holding small knives to cut circles from rectangular dough lying on two flat baking sheets", "video_id": "video10418", "sen_id": 205964}, {"caption": "two women are cooking a dish together in the kitchen", "video_id": "video10418", "sen_id": 205965}, {"caption": "two women in a kitchen cutting circles from two baked crusts", "video_id": "video10418", "sen_id": 205966}, {"caption": "two female cooks one young and the other older explain how to prepare a dish on a cookie sheet in a white kitchen", "video_id": "video10418", "sen_id": 205967}, {"caption": "two attractive young women discuss and demonstrate a recipe in their kitchen", "video_id": "video10418", "sen_id": 205968}, {"caption": "two women in a kitchen talking about dough", "video_id": "video10418", "sen_id": 205969}, {"caption": "two women are in a kitchen demonstrating how they cook something that uses dough", "video_id": "video10418", "sen_id": 205970}, {"caption": "two women standing in a kitchen learning and teaching how to preparing a meal", "video_id": "video10418", "sen_id": 205971}, {"caption": "in a kitchen two woman are describing how to make something", "video_id": "video10418", "sen_id": 205972}, {"caption": "two woman demonstrating how to cut out circles out of crust", "video_id": "video10418", "sen_id": 205973}, {"caption": "two ladies are on screen while instructing in baking", "video_id": "video10418", "sen_id": 205974}, {"caption": "two women prepares a dough on the counter in a kitchen", "video_id": "video10418", "sen_id": 205975}, {"caption": "two female in white and blue dress in kitchen are telling how to make a dish", "video_id": "video10418", "sen_id": 205976}, {"caption": "there is a tshirt woman standing with a woman", "video_id": "video10418", "sen_id": 205977}, {"caption": "a brunette woman and a blonde woman are making a home made pie crust", "video_id": "video10418", "sen_id": 205978}, {"caption": "two women in a kitchen prepare to cut circular pie crusts", "video_id": "video10418", "sen_id": 205979}, {"caption": "a man in a black long sleeved shirt sitting and talking", "video_id": "video10970", "sen_id": 205980}, {"caption": "a man in a dark blue shirt talking to the camera", "video_id": "video10970", "sen_id": 205981}, {"caption": "blow hard talking random crud about equation", "video_id": "video10970", "sen_id": 205982}, {"caption": "a man in a blakc shirt talks in front of a graph and a gray wall", "video_id": "video10970", "sen_id": 205983}, {"caption": "a man in a black shirt is talking while sitting", "video_id": "video10970", "sen_id": 205984}, {"caption": "a scientist discusses a method for looking at the way a photograph is presented", "video_id": "video10970", "sen_id": 205985}, {"caption": "a man with a receding hairline dressed in all black is talking about dots", "video_id": "video10970", "sen_id": 205986}, {"caption": "a man with a black shirt talking to the camera", "video_id": "video10970", "sen_id": 205987}, {"caption": "a man in a black shirt looking down while talking", "video_id": "video10970", "sen_id": 205988}, {"caption": "a man in a black shirt explains how to template some dots", "video_id": "video10970", "sen_id": 205989}, {"caption": "a young man black colour dress explaining some issue to the public", "video_id": "video10970", "sen_id": 205990}, {"caption": "the man is explaining the point with the use of diagrams on the screen", "video_id": "video10970", "sen_id": 205991}, {"caption": "a skinny man with little hair and wearing a black shirt talks about dots in a photograph", "video_id": "video10970", "sen_id": 205992}, {"caption": "a man in black is explaining sequencing by synthesis", "video_id": "video10970", "sen_id": 205993}, {"caption": "a man with a black shirt is sitting own", "video_id": "video10970", "sen_id": 205994}, {"caption": "a man wearing black color dress is talking", "video_id": "video10970", "sen_id": 205995}, {"caption": "a man is sitting at a table and speaking towards a camera the man is using hand gestures", "video_id": "video10970", "sen_id": 205996}, {"caption": "a bald man wearing black full sleeve shirt talks to the audience about a topic", "video_id": "video10970", "sen_id": 205997}, {"caption": "a man in black dress wearing cloth and speaking on topic discusing and screen of sequencing displaying on screen", "video_id": "video10970", "sen_id": 205998}, {"caption": "a skinny man with balding hair is sitting down", "video_id": "video10970", "sen_id": 205999}, {"caption": "a person is giving her views on the greece issues", "video_id": "video10225", "sen_id": 206000}, {"caption": "a greek politician criticizes the 'reluctant' bailout policy of angela merkel", "video_id": "video10225", "sen_id": 206001}, {"caption": "a woman in a yellow suit speaks to reporters in a large room", "video_id": "video10225", "sen_id": 206002}, {"caption": "angela merkel is wearing a yellow coat and talking to reporters", "video_id": "video10225", "sen_id": 206003}, {"caption": "angel merkel is wearing a yellow coat and talking into microphones", "video_id": "video10225", "sen_id": 206004}, {"caption": "george papandreou speaks about the current position of the greeks economy", "video_id": "video10225", "sen_id": 206005}, {"caption": "a man is on the phone with a news station and is talking about the chancellor of germany", "video_id": "video10225", "sen_id": 206006}, {"caption": "a women in yellow colored dress talking to a news channel reporter and talking she went away and the men followed her", "video_id": "video10225", "sen_id": 206007}, {"caption": "there is a yellow suit lady walking in to the building", "video_id": "video10225", "sen_id": 206008}, {"caption": "women talking on mic and then walking inside the hotel", "video_id": "video10225", "sen_id": 206009}, {"caption": "top news was discussed by news reporter greece on the brink", "video_id": "video10225", "sen_id": 206010}, {"caption": "a man is commenting his opinion on the bailout in europe particularly germany", "video_id": "video10225", "sen_id": 206011}, {"caption": "some people are walking around in germany", "video_id": "video10225", "sen_id": 206012}, {"caption": "there is a yellow suit women talking to people", "video_id": "video10225", "sen_id": 206013}, {"caption": "a political situation from greece is being reported for the tv program", "video_id": "video10225", "sen_id": 206014}, {"caption": "a news reader reading a news in news program", "video_id": "video10225", "sen_id": 206015}, {"caption": "blonde in green coat talking to the reporters on street", "video_id": "video10225", "sen_id": 206016}, {"caption": "some people in black suits are walking near flags", "video_id": "video10225", "sen_id": 206017}, {"caption": "yellow colored dressed lady talking and coming forwaed", "video_id": "video10225", "sen_id": 206018}, {"caption": "blonde in yellow coat talking to the reporters", "video_id": "video10225", "sen_id": 206019}, {"caption": "a review of the independence day movie that came out in the 90s", "video_id": "video10506", "sen_id": 206020}, {"caption": "indie rap about the film independence day plays the film's poster and rap lyrics are shown side-by-side against the background image of an audio cassette in a tape player", "video_id": "video10506", "sen_id": 206021}, {"caption": "a screen shows a review of a film while showing the film poster on the left", "video_id": "video10506", "sen_id": 206022}, {"caption": "a picture of a film cover is shown with white words on a black screen", "video_id": "video10506", "sen_id": 206023}, {"caption": "a video that is a montage of various will smith movies", "video_id": "video10506", "sen_id": 206024}, {"caption": "a picture of the movie independence day movie cover with a cassette tape in the background", "video_id": "video10506", "sen_id": 206025}, {"caption": "a popular movie is shown off as rap music plays in the background", "video_id": "video10506", "sen_id": 206026}, {"caption": "a man is reciting a rap about the film independence day", "video_id": "video10506", "sen_id": 206027}, {"caption": "a man is performing a rap song about the film independence day", "video_id": "video10506", "sen_id": 206028}, {"caption": "a picture of an independence day poster next to lyrics of a rap song that is being sung by a man", "video_id": "video10506", "sen_id": 206029}, {"caption": "an advertisement for the video entitled independence day while a rap song plays in the background", "video_id": "video10506", "sen_id": 206030}, {"caption": "a man is talking about the movie independence day and giving his opinion on it", "video_id": "video10506", "sen_id": 206031}, {"caption": "a song is playing and a words are displaying", "video_id": "video10506", "sen_id": 206032}, {"caption": "a rap song so well sung and used for introducing independence day", "video_id": "video10506", "sen_id": 206033}, {"caption": "a parody hip hop song about independence day", "video_id": "video10506", "sen_id": 206034}, {"caption": "a man raps about the movie independence day", "video_id": "video10506", "sen_id": 206035}, {"caption": "somebody is reciting a poem or rhyme they made about the movie independence day", "video_id": "video10506", "sen_id": 206036}, {"caption": "a rapper sings about a film called independence day", "video_id": "video10506", "sen_id": 206037}, {"caption": "independence day movie poster with a matching rap", "video_id": "video10506", "sen_id": 206038}, {"caption": "some white text on a screen is being shownt o people", "video_id": "video10506", "sen_id": 206039}, {"caption": "a man is running in a blue shirt and beating a guy running in a black shirt", "video_id": "video12262", "sen_id": 206040}, {"caption": "an african american man running a race taking the lead", "video_id": "video12262", "sen_id": 206041}, {"caption": "a man in a blue tank top and wearing a yellow number runs in a marathon", "video_id": "video12262", "sen_id": 206042}, {"caption": "a runner in a light blue tank with his name on a yellow label leads while he looks over his shoulder at his closest competitor spectators line the curbs and motorcycle security follows on the side on this rainy day", "video_id": "video12262", "sen_id": 206043}, {"caption": "a man wearing blue is running ahead of everyone else", "video_id": "video12262", "sen_id": 206044}, {"caption": "a man in a marathon runs and looks behind him", "video_id": "video12262", "sen_id": 206045}, {"caption": "there are men running in a cross country race", "video_id": "video12262", "sen_id": 206046}, {"caption": "a man wearing a blue tank top runs cross country in the rain and leads the race", "video_id": "video12262", "sen_id": 206047}, {"caption": "a man running in a blue shirt winning a race while other runners and a motorcycle follow and announcers commentate", "video_id": "video12262", "sen_id": 206048}, {"caption": "a man commentating on a cross country race with a man in blue running in front", "video_id": "video12262", "sen_id": 206049}, {"caption": "a black man in a turquoise shirt runs in a long distance competition", "video_id": "video12262", "sen_id": 206050}, {"caption": "men narrate events as black runners compete on the road", "video_id": "video12262", "sen_id": 206051}, {"caption": "several men are racing against each other on foot in a race", "video_id": "video12262", "sen_id": 206052}, {"caption": "the athelet are finsih their target line the winner men is wearing the blue tshirt", "video_id": "video12262", "sen_id": 206053}, {"caption": " kenenisa bekele is currently first place in a cross-country race", "video_id": "video12262", "sen_id": 206054}, {"caption": "an athletic event is taking place in some country and the person is running in full-flow to reach the goal", "video_id": "video12262", "sen_id": 206055}, {"caption": "a man is running in the front row", "video_id": "video12262", "sen_id": 206056}, {"caption": "a person in blue tshirt running fast in the marathon race while he turns back to see anyone overtake him", "video_id": "video12262", "sen_id": 206057}, {"caption": "a group of men in running gear running a face on wet pavement", "video_id": "video12262", "sen_id": 206058}, {"caption": "the athletes are running a race through the tracks and people are watching it", "video_id": "video12262", "sen_id": 206059}, {"caption": "a news reporter discussing something about twitter", "video_id": "video11519", "sen_id": 206060}, {"caption": "reporter talking about company and reads a funny line while introducing a speaker", "video_id": "video11519", "sen_id": 206061}, {"caption": "a newscaster is describing twitter's falling stock", "video_id": "video11519", "sen_id": 206062}, {"caption": "a clip from cnbc about the twitter ceo", "video_id": "video11519", "sen_id": 206063}, {"caption": "a news reporter in a red top doing a story", "video_id": "video11519", "sen_id": 206064}, {"caption": "a woman wearing a red shirt talking on cnbc", "video_id": "video11519", "sen_id": 206065}, {"caption": "a lady in red reading news inside a studio", "video_id": "video11519", "sen_id": 206066}, {"caption": "a woman wearing a red top and has reddish brown hair is speaking", "video_id": "video11519", "sen_id": 206067}, {"caption": "a reporter talks about the changes that twitter must make to survive", "video_id": "video11519", "sen_id": 206068}, {"caption": "a fairly dark background but the lady in pink with the light brown hair stands out", "video_id": "video11519", "sen_id": 206069}, {"caption": "a woman in a red suit talks about a matter of business", "video_id": "video11519", "sen_id": 206070}, {"caption": "the woman anchor is giving news by sitting on the chair in the studio", "video_id": "video11519", "sen_id": 206071}, {"caption": "a woman with long brown hair and wearing red is speaking outside at night", "video_id": "video11519", "sen_id": 206072}, {"caption": "brunette woman in red shirt is presenting the latest news", "video_id": "video11519", "sen_id": 206073}, {"caption": "sexy brunette in red top talking to the camera", "video_id": "video11519", "sen_id": 206074}, {"caption": "a female reporter in a red blouse gives a report over a nighttime back drop", "video_id": "video11519", "sen_id": 206075}, {"caption": "a woman with reddish-brown hair wearing a red blouse verbally stumbles while giving financial news before a black background with small lights", "video_id": "video11519", "sen_id": 206076}, {"caption": "a woman in a red suit is discussing things with the twitter ceo", "video_id": "video11519", "sen_id": 206077}, {"caption": "cnbc business news report on twitter ceo", "video_id": "video11519", "sen_id": 206078}, {"caption": "a woman with brown hair is talking about something", "video_id": "video11519", "sen_id": 206079}, {"caption": "a man talks about how to lift our mood", "video_id": "video12558", "sen_id": 206080}, {"caption": "a man is explaining how botox is being considered in the treatment of depression", "video_id": "video12558", "sen_id": 206081}, {"caption": "a man is talking about how certain strategies can help boost your emotions", "video_id": "video12558", "sen_id": 206082}, {"caption": "a man wearing glasses is sitting in a leather chair and talking", "video_id": "video12558", "sen_id": 206083}, {"caption": "a man lectures on the benefits that smiling has on a persons mental state", "video_id": "video12558", "sen_id": 206084}, {"caption": "a man is talking about how smiling makes you feel happier", "video_id": "video12558", "sen_id": 206085}, {"caption": "a man in grey shirt and spectacles is expplaining something", "video_id": "video12558", "sen_id": 206086}, {"caption": "a man is sitting in a chair talking about smiling and emotions", "video_id": "video12558", "sen_id": 206087}, {"caption": "a discussion on feedback on facial expression how smile lift he mood", "video_id": "video12558", "sen_id": 206088}, {"caption": "there is a suit man talking from the studio", "video_id": "video12558", "sen_id": 206089}, {"caption": "a man in brown coat sitting and speaking explaning about muscles on the screen", "video_id": "video12558", "sen_id": 206090}, {"caption": "a men in dark brown suit is sitting and talking", "video_id": "video12558", "sen_id": 206091}, {"caption": "a person is explaining something very seriously by sitting in a chair", "video_id": "video12558", "sen_id": 206092}, {"caption": "a man sits on the executive chair with the photo frames around the wall and speaks about the model", "video_id": "video12558", "sen_id": 206093}, {"caption": "the young man in brown suit explains about something very elaborately", "video_id": "video12558", "sen_id": 206094}, {"caption": "a guy with glasses is talking to the camera", "video_id": "video12558", "sen_id": 206095}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12558", "sen_id": 206096}, {"caption": "an decription of facial feedback hypotheses on the channel broadcast", "video_id": "video12558", "sen_id": 206097}, {"caption": "a man in a brown sort coat is talking from a wing back recliner chair", "video_id": "video12558", "sen_id": 206098}, {"caption": "the young man in grey suit explains about facial hypothesis feedback very elaborately", "video_id": "video12558", "sen_id": 206099}, {"caption": "people are standing on a bridge looking at the river", "video_id": "video12435", "sen_id": 206100}, {"caption": "a rapidly moving river moves through the trees as people view from a bridge above the water", "video_id": "video12435", "sen_id": 206101}, {"caption": "various people stand on a bridge and watch a rushing river", "video_id": "video12435", "sen_id": 206102}, {"caption": "view from the bridge over a raging river running between pine trees", "video_id": "video12435", "sen_id": 206103}, {"caption": "there is a family up on a bridge above a fast moving creek", "video_id": "video12435", "sen_id": 206104}, {"caption": "people looking at a fast moving river from a bridge", "video_id": "video12435", "sen_id": 206105}, {"caption": "a roaring river appearing to be flooded is observed by people on an overhead bridge", "video_id": "video12435", "sen_id": 206106}, {"caption": "a family is visiting a tourist spot there they see a beautiful valley and a rough fores river", "video_id": "video12435", "sen_id": 206107}, {"caption": "a very fast moving river runs down a small canyon in a flash flood type situation", "video_id": "video12435", "sen_id": 206108}, {"caption": "while on a bridge people observe a raging river", "video_id": "video12435", "sen_id": 206109}, {"caption": "there is a river flooding through the forest", "video_id": "video12435", "sen_id": 206110}, {"caption": "i see a river moving and people are looking at it with amazement", "video_id": "video12435", "sen_id": 206111}, {"caption": "the water goes in the river and see the familys for the tourist place", "video_id": "video12435", "sen_id": 206112}, {"caption": "cell phone video of a raging ricer in a cold northern place", "video_id": "video12435", "sen_id": 206113}, {"caption": "a river is raging down a place out side", "video_id": "video12435", "sen_id": 206114}, {"caption": "a river flowing rapidly as tourists admire the view", "video_id": "video12435", "sen_id": 206115}, {"caption": "peoples watching the river flow and trees from the bridge", "video_id": "video12435", "sen_id": 206116}, {"caption": "there is a raging river and a family looking at it", "video_id": "video12435", "sen_id": 206117}, {"caption": "a view of rushing waters on a river from a bridge", "video_id": "video12435", "sen_id": 206118}, {"caption": "some people are looking at things in nature", "video_id": "video12435", "sen_id": 206119}, {"caption": "a group of jockeys riding their horses on the way to the finish line", "video_id": "video10332", "sen_id": 206120}, {"caption": "several horses race down the track towards the finish", "video_id": "video10332", "sen_id": 206121}, {"caption": "a clip of a horse race on sky sports", "video_id": "video10332", "sen_id": 206122}, {"caption": "a recap on a horserace in the uk", "video_id": "video10332", "sen_id": 206123}, {"caption": "a group of brown horses racing on a track", "video_id": "video10332", "sen_id": 206124}, {"caption": "an announcer gives the scores on a horse race", "video_id": "video10332", "sen_id": 206125}, {"caption": "in the horse race six brown horses are riding fastly on the grassland", "video_id": "video10332", "sen_id": 206126}, {"caption": " where all the horses with jockey runs in the field", "video_id": "video10332", "sen_id": 206127}, {"caption": "a horse race on a track surrounded by grass has one rider in the lead followed by a group behind", "video_id": "video10332", "sen_id": 206128}, {"caption": "a horse race take place on a large green field and one horse is far ahead of the others", "video_id": "video10332", "sen_id": 206129}, {"caption": "horses are racing on a grassy track trying to get into first place", "video_id": "video10332", "sen_id": 206130}, {"caption": "there is a horse race going on between six horses on screen", "video_id": "video10332", "sen_id": 206131}, {"caption": "the horse race and see the family to a car", "video_id": "video10332", "sen_id": 206132}, {"caption": "horses race around track in a close match in grassy area", "video_id": "video10332", "sen_id": 206133}, {"caption": "a live horse riding race is going on with 7-8 horse riders", "video_id": "video10332", "sen_id": 206134}, {"caption": "some horses are running in a race", "video_id": "video10332", "sen_id": 206135}, {"caption": "the male announcer describes the horse race", "video_id": "video10332", "sen_id": 206136}, {"caption": "many race horses are speeding down a track", "video_id": "video10332", "sen_id": 206137}, {"caption": "horses are raced on a track while a man narrates", "video_id": "video10332", "sen_id": 206138}, {"caption": "a bunch of horses racing on a track with jockey s on their back", "video_id": "video10332", "sen_id": 206139}, {"caption": "news reporter is reporting on a riot where a governor was badly beaten", "video_id": "video12100", "sen_id": 206140}, {"caption": "front page of a newspaper talking about a riot at a jail that was covered up", "video_id": "video12100", "sen_id": 206141}, {"caption": "two police officers and a police dog round a building corner toward a van and a newspaper headline of a prison scandal is above a photograph of a woman between additional subheadlines", "video_id": "video12100", "sen_id": 206142}, {"caption": "two police waling a male voiceover and newspaper clipart on a blue background deliver the news", "video_id": "video12100", "sen_id": 206143}, {"caption": "british man discusses a jail riot that was supposedly covered up", "video_id": "video12100", "sen_id": 206144}, {"caption": "a clip from an old news real from the uk", "video_id": "video12100", "sen_id": 206145}, {"caption": "cops walk a dog and a newspaper discusses a jail riot cover up", "video_id": "video12100", "sen_id": 206146}, {"caption": "police men with dogs and the front page of a news paper and facts of a news story being shown", "video_id": "video12100", "sen_id": 206147}, {"caption": "a male reporter speaks on sky news about a jail riot cover-up and the claims that a governor was badly beaten", "video_id": "video12100", "sen_id": 206148}, {"caption": "tv spot on a jail riot in which various government officials were beaten up", "video_id": "video12100", "sen_id": 206149}, {"caption": "a news channel is talking about a current event at the time", "video_id": "video12100", "sen_id": 206150}, {"caption": "a news paper is next to some white text", "video_id": "video12100", "sen_id": 206151}, {"caption": "a reporter talks about what happened at a jail riot", "video_id": "video12100", "sen_id": 206152}, {"caption": "a newspaper article about a scandal in a jail", "video_id": "video12100", "sen_id": 206153}, {"caption": "a person is talking from the news room about some story", "video_id": "video12100", "sen_id": 206154}, {"caption": "the news paper is being shown on a blue background", "video_id": "video12100", "sen_id": 206155}, {"caption": "introduction of a news article on a jail riot", "video_id": "video12100", "sen_id": 206156}, {"caption": "a news program is discussing a riot in a jail that is being covered up", "video_id": "video12100", "sen_id": 206157}, {"caption": "reporter of sky news reporting about jail riot cover up", "video_id": "video12100", "sen_id": 206158}, {"caption": "a newscaster is giving a story about a riot that occurred in a jail", "video_id": "video12100", "sen_id": 206159}, {"caption": "a woman is getting upset in the corn fields", "video_id": "video12739", "sen_id": 206160}, {"caption": "an african woman standing in a corn field talks to one of her friends", "video_id": "video12739", "sen_id": 206161}, {"caption": "african american woman explains how she has had to fight all her life to another african american woman", "video_id": "video12739", "sen_id": 206162}, {"caption": "oprah winfrey play a black woman in the color purple", "video_id": "video12739", "sen_id": 206163}, {"caption": "a woman in a hat a field looking upset while she talks", "video_id": "video12739", "sen_id": 206164}, {"caption": "a heavy set african woman in a hat stands in a corn field", "video_id": "video12739", "sen_id": 206165}, {"caption": "a woman says that she fought with her mother her uncle and never thought that she would fight for food", "video_id": "video12739", "sen_id": 206166}, {"caption": "movie scene from a english movie two people are talking", "video_id": "video12739", "sen_id": 206167}, {"caption": "a heavy african woman argues with another black woman in a corn field", "video_id": "video12739", "sen_id": 206168}, {"caption": "a person wearing a hat standing and talking to another in a corn field", "video_id": "video12739", "sen_id": 206169}, {"caption": "a women is telling some family issues and she suffers a lot in the family she express her views to some one who is standing behind him", "video_id": "video12739", "sen_id": 206170}, {"caption": "a woman speaking at a agriculture fields", "video_id": "video12739", "sen_id": 206171}, {"caption": "the woman wears a big hat talks in front of the big green leaves", "video_id": "video12739", "sen_id": 206172}, {"caption": "a heavy set african woman argues with another woman in a corn field", "video_id": "video12739", "sen_id": 206173}, {"caption": "a black woman is yelling at her friend", "video_id": "video12739", "sen_id": 206174}, {"caption": "there is a aged women talking from a farm", "video_id": "video12739", "sen_id": 206175}, {"caption": "the color purple (1985) movie one women talking about something", "video_id": "video12739", "sen_id": 206176}, {"caption": "a woman delivers a monologue in a corn field (from the color purple)", "video_id": "video12739", "sen_id": 206177}, {"caption": " fat woman is shouting about something in the top of her voice", "video_id": "video12739", "sen_id": 206178}, {"caption": "a woman in a hat is angry about an event", "video_id": "video12739", "sen_id": 206179}, {"caption": "volleyball players playing against each other in the gym", "video_id": "video12773", "sen_id": 206180}, {"caption": "a women's college volleyball competition at the university of southern cal", "video_id": "video12773", "sen_id": 206181}, {"caption": "a basketball was being played with the announcer explaining each ball throwing and the person throwing it", "video_id": "video12773", "sen_id": 206182}, {"caption": "a girls team of volleyball players wearing white shirts playing a team with black shirts", "video_id": "video12773", "sen_id": 206183}, {"caption": "two teams play a point on a volleyball court", "video_id": "video12773", "sen_id": 206184}, {"caption": "in a college women's volleyball matchup usc is leading asu 16 to 13", "video_id": "video12773", "sen_id": 206185}, {"caption": "two womens volleyball teams are playing on a gynasium court with a net in the center", "video_id": "video12773", "sen_id": 206186}, {"caption": "a score takes place in a women's volleyball match", "video_id": "video12773", "sen_id": 206187}, {"caption": "a team of women volleyball players wearing white jerseys playing against a team wearing black shirts", "video_id": "video12773", "sen_id": 206188}, {"caption": "a woman's volleyball match between arizona state university and university of southern california", "video_id": "video12773", "sen_id": 206189}, {"caption": "a volleyball is hit with double fists across the net during a women's game in front an elevated referee and fans watching from different sections", "video_id": "video12773", "sen_id": 206190}, {"caption": "two teams of women play a game of competitive volleyball", "video_id": "video12773", "sen_id": 206191}, {"caption": "two volleyball teams play a match in a large indoor stadium", "video_id": "video12773", "sen_id": 206192}, {"caption": "women are playing volleyball and the annoucer is speaking about the game", "video_id": "video12773", "sen_id": 206193}, {"caption": "a women's volleyball game in front of a large crowd on an indoor court", "video_id": "video12773", "sen_id": 206194}, {"caption": "two female university volleyball teams are playing a game", "video_id": "video12773", "sen_id": 206195}, {"caption": "the female volleyball team of usc playing an opponent on their home court", "video_id": "video12773", "sen_id": 206196}, {"caption": "a women s college volleyball match between two teams", "video_id": "video12773", "sen_id": 206197}, {"caption": "a video of college volleyball teams playing each other", "video_id": "video12773", "sen_id": 206198}, {"caption": "some girls are playing volleyball against each other", "video_id": "video12773", "sen_id": 206199}, {"caption": "a star wars alarm waking up a man", "video_id": "video10875", "sen_id": 206200}, {"caption": "a person is sleeping in bed until his alarm keeps beeping", "video_id": "video10875", "sen_id": 206201}, {"caption": "a young man is awoken by a star wars alarm clock", "video_id": "video10875", "sen_id": 206202}, {"caption": "a man is sleeping in his bed then wakes up when his alarm goes off", "video_id": "video10875", "sen_id": 206203}, {"caption": "a man is laying in bed and his alarm clock is going off", "video_id": "video10875", "sen_id": 206204}, {"caption": "a man being awoken out of bed by a star wars alarm clock", "video_id": "video10875", "sen_id": 206205}, {"caption": "a storm trooper alarm clock beeps awakening a young man", "video_id": "video10875", "sen_id": 206206}, {"caption": "the alerm is ringing while the man is waking up", "video_id": "video10875", "sen_id": 206207}, {"caption": "a man lying is lying in bed his alarm clock goes off and then he wakes up", "video_id": "video10875", "sen_id": 206208}, {"caption": "the video starts with an alarm clock ringing and birds are chirping while a man is slowly rising up from his sleep", "video_id": "video10875", "sen_id": 206209}, {"caption": "a stormtrooper alarm clock wakes a man from his bed", "video_id": "video10875", "sen_id": 206210}, {"caption": "there is a man awakening from the bed", "video_id": "video10875", "sen_id": 206211}, {"caption": "boy is awakened by his star wars storm trooper alarm clock", "video_id": "video10875", "sen_id": 206212}, {"caption": "a person sleeping and then being awoken by a star wars alarm clock", "video_id": "video10875", "sen_id": 206213}, {"caption": "somebody struggles to wake up to their beeping alarm clock", "video_id": "video10875", "sen_id": 206214}, {"caption": "a man slowly waking up to an alarm clock and birds chirping", "video_id": "video10875", "sen_id": 206215}, {"caption": "the man lays in the bed under the cover next to the window", "video_id": "video10875", "sen_id": 206216}, {"caption": "a man sleep on the bed and gets up and looks at his window", "video_id": "video10875", "sen_id": 206217}, {"caption": "a man is getting up from his bed after a deep sleep through out the night he is being woken up by an alarm", "video_id": "video10875", "sen_id": 206218}, {"caption": "a man in a room is looking out the window", "video_id": "video10875", "sen_id": 206219}, {"caption": "mts discusses its cruises to the galapagos islands", "video_id": "video10206", "sen_id": 206220}, {"caption": "clips from galapagos are revealed and discussed by a man in glasses", "video_id": "video10206", "sen_id": 206221}, {"caption": "a group of people are watching a seal walk", "video_id": "video10206", "sen_id": 206222}, {"caption": "a group of people watch a seal walk along a beach towards the ocean", "video_id": "video10206", "sen_id": 206223}, {"caption": "people enjoy a beach area where small seals walk by", "video_id": "video10206", "sen_id": 206224}, {"caption": "the voice of a woman is talking about sea transport", "video_id": "video10206", "sen_id": 206225}, {"caption": "three man are sitting and talking", "video_id": "video10206", "sen_id": 206226}, {"caption": "travel agency promotion about the gallapogos showing people canoing and looking at penguins", "video_id": "video10206", "sen_id": 206227}, {"caption": "a tourist group witness seals and scenery in the galapagos islands", "video_id": "video10206", "sen_id": 206228}, {"caption": "bunch of people watching seal walk into the ocean", "video_id": "video10206", "sen_id": 206229}, {"caption": "people wearing caps watch over a small goat walk over as others look on", "video_id": "video10206", "sen_id": 206230}, {"caption": "a baby otter is walking around on the beach unusually close to a group of people", "video_id": "video10206", "sen_id": 206231}, {"caption": "a woman describes what it s like to vacation in the galapagos islands", "video_id": "video10206", "sen_id": 206232}, {"caption": "tourists visiting the galapagos islands a tourist company named mountain travel slovic hosts guided tours", "video_id": "video10206", "sen_id": 206233}, {"caption": "there is a seal and a whale that our swimming on a coast line", "video_id": "video10206", "sen_id": 206234}, {"caption": "there is a animal walking away from people", "video_id": "video10206", "sen_id": 206235}, {"caption": "a lady is commentating events occuring near lands of water", "video_id": "video10206", "sen_id": 206236}, {"caption": "various scenes of people vacationing in the gallopagos islands", "video_id": "video10206", "sen_id": 206237}, {"caption": "a women is saying about the mongoose and the people are sitting in the beach and the mongoose is going there and two persons ina row boat travelling in the sea and high tides are coming in the sea people are enjoying it", "video_id": "video10206", "sen_id": 206238}, {"caption": "a narrator describes mountain travel sobec a travel company", "video_id": "video10206", "sen_id": 206239}, {"caption": "a guy is playing with a baby on the bed", "video_id": "video12238", "sen_id": 206240}, {"caption": "a baby is shown laying on the bed and his father rolls him around and simulates gunfire with the baby's hands", "video_id": "video12238", "sen_id": 206241}, {"caption": "a baby laying on a bed with a dad and the dad starts playing with the baby", "video_id": "video12238", "sen_id": 206242}, {"caption": "a man is playing with a baby wearing a blue one piece", "video_id": "video12238", "sen_id": 206243}, {"caption": "a man is watching a video with his baby and having the baby simulate shooting an automatic weapon", "video_id": "video12238", "sen_id": 206244}, {"caption": "a baby lays on a bed where their father rolls them around in play", "video_id": "video12238", "sen_id": 206245}, {"caption": "a baby with it's mouth open as a man behind plays with them", "video_id": "video12238", "sen_id": 206246}, {"caption": "a man is laying on a bed with his baby he plays music and begins to play with his baby and the baby enjoys it", "video_id": "video12238", "sen_id": 206247}, {"caption": "a man is playing with a baby he is pretending the baby is firing a gun", "video_id": "video12238", "sen_id": 206248}, {"caption": "a man plays with a baby on a bed and gets the baby to smile at the camera", "video_id": "video12238", "sen_id": 206249}, {"caption": "there is a man playing with a baby", "video_id": "video12238", "sen_id": 206250}, {"caption": "an adult plays with a baby on a bed", "video_id": "video12238", "sen_id": 206251}, {"caption": "a dad and his baby listen to music in a bed while dad has baby pretend to shoot a gun", "video_id": "video12238", "sen_id": 206252}, {"caption": "cute baby is smiling and playing with his father", "video_id": "video12238", "sen_id": 206253}, {"caption": "a little boy plays with his dad according to the music play and keep showing like shooting with a gun", "video_id": "video12238", "sen_id": 206254}, {"caption": "a baby lays on a blue blanket on bed while another man makes the baby look like it is shooting a gun", "video_id": "video12238", "sen_id": 206255}, {"caption": "a man playing with a baby on a bed pretending the baby is shooting and the baby is smiling", "video_id": "video12238", "sen_id": 206256}, {"caption": "someone is playing with a small kit on a bed", "video_id": "video12238", "sen_id": 206257}, {"caption": "the small baby is lying on the bed with his father", "video_id": "video12238", "sen_id": 206258}, {"caption": "a man is playing around with a baby", "video_id": "video12238", "sen_id": 206259}, {"caption": "a woman modeling her tattoo and clothing", "video_id": "video12082", "sen_id": 206260}, {"caption": "a plus sized woman is modeling a new outfit that has the price tag still attached to it", "video_id": "video12082", "sen_id": 206261}, {"caption": "a woman is showing her back tattoo and trying on clothes", "video_id": "video12082", "sen_id": 206262}, {"caption": "a woman is trying on clothes and walking in her room", "video_id": "video12082", "sen_id": 206263}, {"caption": "a woman is in her bedroom modeling a new outfit", "video_id": "video12082", "sen_id": 206264}, {"caption": "a woman is modeling clothing in a bedroom", "video_id": "video12082", "sen_id": 206265}, {"caption": "a woman with glasses shows off her new jumpsuit with tags", "video_id": "video12082", "sen_id": 206266}, {"caption": "a girl dressed in black walking back and forth", "video_id": "video12082", "sen_id": 206267}, {"caption": "a woman with long brown hair shows off her tattoos", "video_id": "video12082", "sen_id": 206268}, {"caption": "a woman shows off her tattoo on her back in front of a camera", "video_id": "video12082", "sen_id": 206269}, {"caption": "a young woman is modeling a black dress", "video_id": "video12082", "sen_id": 206270}, {"caption": "a girl with glasses showing off her back tattoo and black dress", "video_id": "video12082", "sen_id": 206271}, {"caption": "a lady is showing posing showing her outfit and tatoos", "video_id": "video12082", "sen_id": 206272}, {"caption": "a woman walking back and forth modeling her outfit", "video_id": "video12082", "sen_id": 206273}, {"caption": "a lady in her home doing a short catwalk to display her tattoo as well as her dress", "video_id": "video12082", "sen_id": 206274}, {"caption": "a woman ina black outfit shows it off for the camera", "video_id": "video12082", "sen_id": 206275}, {"caption": "a heavy built young woman is showing off a blouse that still has the tag on it", "video_id": "video12082", "sen_id": 206276}, {"caption": "a girl shows off her dress and back tattoos", "video_id": "video12082", "sen_id": 206277}, {"caption": "a woman wearing a long black sleeveless dress is walking to and fro", "video_id": "video12082", "sen_id": 206278}, {"caption": "a dark haired girl with glasses and a tattoo on her back", "video_id": "video12082", "sen_id": 206279}, {"caption": "a woman gives the definition of the term physical science", "video_id": "video11756", "sen_id": 206280}, {"caption": "this is a computer animated voice speaking about what physical science is", "video_id": "video11756", "sen_id": 206281}, {"caption": "some flashcards appear to describe the meaning of physical science", "video_id": "video11756", "sen_id": 206282}, {"caption": "the word physical science appears and then a woman discusses the field", "video_id": "video11756", "sen_id": 206283}, {"caption": "a woman's voice explaining the definition of physical science", "video_id": "video11756", "sen_id": 206284}, {"caption": "a picture of the words physical science are being shown followed by it's definition and the words physical science again", "video_id": "video11756", "sen_id": 206285}, {"caption": "a lecturer goes over the concept of physical science and spells it out", "video_id": "video11756", "sen_id": 206286}, {"caption": "a demonstration about physical science and its important features", "video_id": "video11756", "sen_id": 206287}, {"caption": "a woman verbally explaining the definition of physical science", "video_id": "video11756", "sen_id": 206288}, {"caption": "a computerized voice talks about physical science while the text of her words are seen on the screen", "video_id": "video11756", "sen_id": 206289}, {"caption": "words describing physical science appear on a pale green background while a female voice reads them", "video_id": "video11756", "sen_id": 206290}, {"caption": "a computer voice defines and spells physical science", "video_id": "video11756", "sen_id": 206291}, {"caption": "there is a woman talking about physical science", "video_id": "video11756", "sen_id": 206292}, {"caption": "some slides about the physical science which is shown in the presentation", "video_id": "video11756", "sen_id": 206293}, {"caption": "a woman is explaining about the physical science", "video_id": "video11756", "sen_id": 206294}, {"caption": "a computer voice is talking about physical science", "video_id": "video11756", "sen_id": 206295}, {"caption": "an automated narrator is teaching about physical science", "video_id": "video11756", "sen_id": 206296}, {"caption": "a computerized voice is reading the words that you seen on the screen about science", "video_id": "video11756", "sen_id": 206297}, {"caption": "a woman is speaking about physical science", "video_id": "video11756", "sen_id": 206298}, {"caption": "person is talking about his project with physical science", "video_id": "video11756", "sen_id": 206299}, {"caption": "three men are talking to the camera about a popular chip", "video_id": "video10463", "sen_id": 206300}, {"caption": "two men talking over eating a bag of chips", "video_id": "video10463", "sen_id": 206301}, {"caption": "a group of young indiam men talk to each other outside a building", "video_id": "video10463", "sen_id": 206302}, {"caption": "men in white shirts sitting down on stairs and talking to eachother", "video_id": "video10463", "sen_id": 206303}, {"caption": "teenage males wearing school uniforms are sitting down on steps while chatting and eating snacks", "video_id": "video10463", "sen_id": 206304}, {"caption": "a group of men are talking together and wearing glasses", "video_id": "video10463", "sen_id": 206305}, {"caption": "five men sit on the stops while eating snacks", "video_id": "video10463", "sen_id": 206306}, {"caption": "four young boys are discussing a subject together outside", "video_id": "video10463", "sen_id": 206307}, {"caption": "a bunch of different men talking to each other about products", "video_id": "video10463", "sen_id": 206308}, {"caption": "four students were discussing about some thing inside school premises", "video_id": "video10463", "sen_id": 206309}, {"caption": "a group of men sit at a on a cement step while talking to other people nearby", "video_id": "video10463", "sen_id": 206310}, {"caption": "a group of young indian boys set on a buildings steps", "video_id": "video10463", "sen_id": 206311}, {"caption": "a group of young men set on the steps of a building and talk", "video_id": "video10463", "sen_id": 206312}, {"caption": "a group of men eating and talking to each other", "video_id": "video10463", "sen_id": 206313}, {"caption": "four indian men sitting on steps talking and enjoying snacks", "video_id": "video10463", "sen_id": 206314}, {"caption": "all persons wearing white dress and eating snacks", "video_id": "video10463", "sen_id": 206315}, {"caption": "few school students sitting on the steps and eating chips while they speaking", "video_id": "video10463", "sen_id": 206316}, {"caption": "three students are discussing very silently and secretly and one student is eating the kurkure snacks", "video_id": "video10463", "sen_id": 206317}, {"caption": "men in white shirts sit on steps and talk", "video_id": "video10463", "sen_id": 206318}, {"caption": "three indian men are sitting on a street corner talking about snacks", "video_id": "video10463", "sen_id": 206319}, {"caption": "two men are sitting together and a woman comes in with a tray to join them", "video_id": "video12429", "sen_id": 206320}, {"caption": "a car drives through lush fields of flowers", "video_id": "video12429", "sen_id": 206321}, {"caption": "a white car driving along a road stops near a house", "video_id": "video12429", "sen_id": 206322}, {"caption": "there is a white car driving and then there are two men talking when a woman in pink enters and a man hands her an item", "video_id": "video12429", "sen_id": 206323}, {"caption": "a video of a car and then two older people taking with music playing in the background", "video_id": "video12429", "sen_id": 206324}, {"caption": "a car driving in a field of flowers and a woman walking into a room with men sitting on a chair", "video_id": "video12429", "sen_id": 206325}, {"caption": "a car arrives to a garden a doctor is giving some medicine for a sick guy to a girl", "video_id": "video12429", "sen_id": 206326}, {"caption": "there is a doctor caring a patient at home", "video_id": "video12429", "sen_id": 206327}, {"caption": "a gilrl pink color dressed sitting", "video_id": "video12429", "sen_id": 206328}, {"caption": "in a tamil movie i hero had disease and doctor give medicine", "video_id": "video12429", "sen_id": 206329}, {"caption": "a song of video clip movie car moving and old man sitting on scene", "video_id": "video12429", "sen_id": 206330}, {"caption": "a car comes to a halt and a women in pink dress is talking to her dad", "video_id": "video12429", "sen_id": 206331}, {"caption": "it was movie where the doctor advise the girl to take care of his husband who is suffered from virus attack", "video_id": "video12429", "sen_id": 206332}, {"caption": "a woman is singing and arriving at an older mans house", "video_id": "video12429", "sen_id": 206333}, {"caption": "sentence 1: a tamil language song from a kollywood movie i is shown sentence 2: a doctor gives treatment for a diseased person and provides some medicine to the women who takes care of the person", "video_id": "video12429", "sen_id": 206334}, {"caption": "old guy in white sweater is talking to another guy and sexy sexy brunette in movie", "video_id": "video12429", "sen_id": 206335}, {"caption": "a car is driving fast as a girl in pink dress talks to her dad", "video_id": "video12429", "sen_id": 206336}, {"caption": "on a beautiful landscap a white car moves on and a person in white dress gives medicine to black dressed man and women brings tea to them and white dressed man gives some medicines to her", "video_id": "video12429", "sen_id": 206337}, {"caption": "doctor prescribed medicine and use for patient it very possible thought picture show in video", "video_id": "video12429", "sen_id": 206338}, {"caption": "a field of purple flowers has a car driving through it", "video_id": "video12429", "sen_id": 206339}, {"caption": "dustin hoffman is standing in front of an outdoor movie poster on the street at night while a crowd of photographers takes pictures of him", "video_id": "video10234", "sen_id": 206340}, {"caption": "a male celebrity standing in front of his movie poster as paparazzi take pictures", "video_id": "video10234", "sen_id": 206341}, {"caption": "a man wearing a suit is standing in front of a poster being photographed", "video_id": "video10234", "sen_id": 206342}, {"caption": "an actor taking pictures in front of a poster", "video_id": "video10234", "sen_id": 206343}, {"caption": "a amn in a suit and a tie poses for pictures in front of a large poster", "video_id": "video10234", "sen_id": 206344}, {"caption": "a man with gray hair and wearing a black shit stands in front of a poster", "video_id": "video10234", "sen_id": 206345}, {"caption": "a clip from the red carpet for a movie", "video_id": "video10234", "sen_id": 206346}, {"caption": "a man stands in front of a movie poster as his picture is taken", "video_id": "video10234", "sen_id": 206347}, {"caption": "dustin hoffman is posing for photographers in front of a movie poster", "video_id": "video10234", "sen_id": 206348}, {"caption": "a gray haired actor is on the red carpet getting photographed in front of a poster", "video_id": "video10234", "sen_id": 206349}, {"caption": "dustin hoffman poses for pictures while promoting his new film", "video_id": "video10234", "sen_id": 206350}, {"caption": "an actor wearing a dark suit poses for pictures in front of a large poster", "video_id": "video10234", "sen_id": 206351}, {"caption": "a middle aged man standing in front of a poster and taking pictures", "video_id": "video10234", "sen_id": 206352}, {"caption": "dustin hoffman stands on the red carpet having his picture taken at a premire", "video_id": "video10234", "sen_id": 206353}, {"caption": "a man with gay hair and wearing a suit stands in front of a large painting", "video_id": "video10234", "sen_id": 206354}, {"caption": "the actor stands on the red carpet and camera people starts taking pictures of him", "video_id": "video10234", "sen_id": 206355}, {"caption": "people taking photos of a old guy standing near the poster of a film", "video_id": "video10234", "sen_id": 206356}, {"caption": "a famous movie actor walking down the red carpet for a upcoming movie release", "video_id": "video10234", "sen_id": 206357}, {"caption": "a page where a person stands in front of a display of maximotv and taking flash", "video_id": "video10234", "sen_id": 206358}, {"caption": "a man in a suit is standing on a red carpet", "video_id": "video10234", "sen_id": 206359}, {"caption": "a man is speaking about romeo and juliet while different art paintings are displayed", "video_id": "video11141", "sen_id": 206360}, {"caption": "historic paintings enter and leave the field of view every few seconds", "video_id": "video11141", "sen_id": 206361}, {"caption": "few drawings of the ancient days of king and queens where slidded", "video_id": "video11141", "sen_id": 206362}, {"caption": "a person explains the story line of various romeo and juliet scenes from a picture", "video_id": "video11141", "sen_id": 206363}, {"caption": "this is a man talking about a play from a long time ago the play is romeo and juliet and how the two had families who hated each other but still found a way to love each other", "video_id": "video11141", "sen_id": 206364}, {"caption": "there are some old paintings of a legend", "video_id": "video11141", "sen_id": 206365}, {"caption": "more peoples are standing in the image", "video_id": "video11141", "sen_id": 206366}, {"caption": "the story of romeo and juliet is talked about and illustrated", "video_id": "video11141", "sen_id": 206367}, {"caption": "trailor of a animation film or serial is running on screen", "video_id": "video11141", "sen_id": 206368}, {"caption": "a historical presentation scenes about the lovers in the ancient days", "video_id": "video11141", "sen_id": 206369}, {"caption": "there is a man kissing a hot woman", "video_id": "video11141", "sen_id": 206370}, {"caption": "a man is talking about sex scenes and violence in the romeo and juliet", "video_id": "video11141", "sen_id": 206371}, {"caption": "the man is revealing the tragic romance of romeo and juliet in a skit about family feud", "video_id": "video11141", "sen_id": 206372}, {"caption": "narrators attempt to make a parody of romeo and juliet", "video_id": "video11141", "sen_id": 206373}, {"caption": "some old pictures are flashing before your eyes", "video_id": "video11141", "sen_id": 206374}, {"caption": "paintings are shown as the story of romeo and juliet is summarized", "video_id": "video11141", "sen_id": 206375}, {"caption": "a slideslow of many older pictures of past historical events", "video_id": "video11141", "sen_id": 206376}, {"caption": "a man gives a lecture about a famous play from ancient times", "video_id": "video11141", "sen_id": 206377}, {"caption": "a bunch of classic paintings being shown on screen", "video_id": "video11141", "sen_id": 206378}, {"caption": "in romeo and juliet there are seven on stage fatalities", "video_id": "video11141", "sen_id": 206379}, {"caption": "a female street food vendor is packing and order", "video_id": "video11818", "sen_id": 206380}, {"caption": "a woman in a green shirt wraps up vegetables near her daughter", "video_id": "video11818", "sen_id": 206381}, {"caption": "a woman and a small girl standing inside of a market stall on the side of a busy street", "video_id": "video11818", "sen_id": 206382}, {"caption": "a woman in green is putting produce in a bag", "video_id": "video11818", "sen_id": 206383}, {"caption": "a table with various ingredients with an old woman making a meal", "video_id": "video11818", "sen_id": 206384}, {"caption": "a beautiful scenary with variety of trees", "video_id": "video11818", "sen_id": 206385}, {"caption": "a woman in a green shirt is putting something into a bag", "video_id": "video11818", "sen_id": 206386}, {"caption": "one women make a recipe near the girl", "video_id": "video11818", "sen_id": 206387}, {"caption": "lady in green dress purchase the vegetables and kept that for sale", "video_id": "video11818", "sen_id": 206388}, {"caption": "a green dress wearing woman and small kid in blue dress vegetables beside on table", "video_id": "video11818", "sen_id": 206389}, {"caption": "a woman of a road side eatery gets her food ready for sale", "video_id": "video11818", "sen_id": 206390}, {"caption": "a woman in green cooking some dish on the side of the street arraning some vegetables in cover and a little girl was shown", "video_id": "video11818", "sen_id": 206391}, {"caption": "a woman and a girl are selling a food items", "video_id": "video11818", "sen_id": 206392}, {"caption": "a person is sitting surrounded by food on a table and a child stands near", "video_id": "video11818", "sen_id": 206393}, {"caption": "a kid in a purple shirt is being sassy", "video_id": "video11818", "sen_id": 206394}, {"caption": "a woman is assembling a plate of food at a market", "video_id": "video11818", "sen_id": 206395}, {"caption": "women keeping the sweets safely and her child standing in the shop", "video_id": "video11818", "sen_id": 206396}, {"caption": "a woman and girl are sale a vegetable in the shop", "video_id": "video11818", "sen_id": 206397}, {"caption": "a woman sits to a table filled with food and a little girl stands by", "video_id": "video11818", "sen_id": 206398}, {"caption": "a woman is teaching a kid how to make food", "video_id": "video11818", "sen_id": 206399}, {"caption": "a woman is preparing a breakfast shake and moving liquid from a bowl to a glass", "video_id": "video11087", "sen_id": 206400}, {"caption": "two women are cooking and one of the women pours a yellow mixture into a cup containing white liquid then pours the cup of liquid into a bowl", "video_id": "video11087", "sen_id": 206401}, {"caption": "two women making a drink mix in a bowl", "video_id": "video11087", "sen_id": 206402}, {"caption": "a glass is fulled with a white and yellow solution which stay separate in the glass", "video_id": "video11087", "sen_id": 206403}, {"caption": "a person pouring a yellow liquid into a glass that already has white at the bottom then into a large glass bowl with the same white at the bottom", "video_id": "video11087", "sen_id": 206404}, {"caption": "two women stand at a counter in a kitchen mixing a yellow liquid to a white substance", "video_id": "video11087", "sen_id": 206405}, {"caption": "a woman pours juice into a cup and puts the remainder into a bowl", "video_id": "video11087", "sen_id": 206406}, {"caption": "some yellow liquid is poured on top of a white substance in a glass and the rest is poured into a bowl", "video_id": "video11087", "sen_id": 206407}, {"caption": "the women discuss the preparation of ethnic food together", "video_id": "video11087", "sen_id": 206408}, {"caption": "a cook pours a dessert into a glass and prepares the next step", "video_id": "video11087", "sen_id": 206409}, {"caption": "two women pour a yellow substance layered into a tall glass", "video_id": "video11087", "sen_id": 206410}, {"caption": "women is pouring some kind of green liquid into a glass bowl", "video_id": "video11087", "sen_id": 206411}, {"caption": "the south indial women making the mango juice in the pot", "video_id": "video11087", "sen_id": 206412}, {"caption": "one lady is explaining to another lady about cooking the cooking product may be milk related", "video_id": "video11087", "sen_id": 206413}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11087", "sen_id": 206414}, {"caption": "a lady makes a milk shake and puts some yellow liquid in the cream", "video_id": "video11087", "sen_id": 206415}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11087", "sen_id": 206416}, {"caption": "in a television show a participant preparing a dish in glass bowl with milk and yellow colored material", "video_id": "video11087", "sen_id": 206417}, {"caption": "sun tv programmed telecast oil massage use medicine", "video_id": "video11087", "sen_id": 206418}, {"caption": "couple of woman doing a cooking show and showing the ingredients for the recipe", "video_id": "video11087", "sen_id": 206419}, {"caption": "a man just got hit by a train in a video the screen goes black and a man's voiceover says this would have been a great time for los santos to have an awesome superhero a cartoon man who looks like superman shows up on the screen along with awesome superhero cartoon text", "video_id": "video11709", "sen_id": 206420}, {"caption": "in a video game scene a man gets shot in the head", "video_id": "video11709", "sen_id": 206421}, {"caption": "someone is violently hit by a train then an animated superhero appears", "video_id": "video11709", "sen_id": 206422}, {"caption": "a man is speaking over a black screen and then an animation shows", "video_id": "video11709", "sen_id": 206423}, {"caption": "a video game character is run over by a train", "video_id": "video11709", "sen_id": 206424}, {"caption": "a man on video game is run over by a train", "video_id": "video11709", "sen_id": 206425}, {"caption": "a man in a red shirt gets hit by a train", "video_id": "video11709", "sen_id": 206426}, {"caption": "there is a long black sound and then a man talks about a solution", "video_id": "video11709", "sen_id": 206427}, {"caption": "a video game character gets run over by a train", "video_id": "video11709", "sen_id": 206428}, {"caption": "a clip of a man is talking about a place having its own superherois", "video_id": "video11709", "sen_id": 206429}, {"caption": "a young man discusses a video game that he has been playing", "video_id": "video11709", "sen_id": 206430}, {"caption": "a cartoon man wearing a blue shirt and red gloves", "video_id": "video11709", "sen_id": 206431}, {"caption": "a person in a video game is killedbut he could have been saved if there was an awesome super hero around", "video_id": "video11709", "sen_id": 206432}, {"caption": "footage of a death on a video game and a man narrating afterwards", "video_id": "video11709", "sen_id": 206433}, {"caption": "an awesome superhero appears", "video_id": "video11709", "sen_id": 206434}, {"caption": "a dark screen fades from indistinct red shades to a pure black", "video_id": "video11709", "sen_id": 206435}, {"caption": "a man is speaking about the solution for a situation of a superhero", "video_id": "video11709", "sen_id": 206436}, {"caption": "a character shoots a gun then an awesome superhero shows up with red gloves on", "video_id": "video11709", "sen_id": 206437}, {"caption": "a man gets killed and the video goes to black", "video_id": "video11709", "sen_id": 206438}, {"caption": "some things are being filmed inside of a room", "video_id": "video11709", "sen_id": 206439}, {"caption": "a gray gerbil is shown coming out from underneath a red blanket", "video_id": "video11905", "sen_id": 206440}, {"caption": "a beady-eyed tan hamster sniffs around his environment of shredded wood chips and exits a strawberry-shaped shelter", "video_id": "video11905", "sen_id": 206441}, {"caption": "a grey animal coming from out of isolation that is filled with shredded paper", "video_id": "video11905", "sen_id": 206442}, {"caption": "a hamster is coming out of its hiding stop", "video_id": "video11905", "sen_id": 206443}, {"caption": "a rodent is in a plastic strawberry with paper inside", "video_id": "video11905", "sen_id": 206444}, {"caption": "a hamster is moving around in some pine shavings and a woman is talking about keeping a hamster safe and in isolation", "video_id": "video11905", "sen_id": 206445}, {"caption": "a light brown gerbil in a bed of wood chips and tissue sniffing at the camera", "video_id": "video11905", "sen_id": 206446}, {"caption": "a girl talks about how to treat hamsters and the benefits of isolating them", "video_id": "video11905", "sen_id": 206447}, {"caption": "a little brown mouse rambling around shreds of paper", "video_id": "video11905", "sen_id": 206448}, {"caption": "a video talking about hamsters and their relation to isolation", "video_id": "video11905", "sen_id": 206449}, {"caption": "as a hamster cautiously steps out of his plastic strawberry a woman describes why she recommends isolating hamsters from each other and the outside world", "video_id": "video11905", "sen_id": 206450}, {"caption": "there is a mouse eating and watching from a dust bin", "video_id": "video11905", "sen_id": 206451}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video11905", "sen_id": 206452}, {"caption": "a gray hamster pokes his face out of a red domed shelter with white dots and walks on wood shavings while sniffing with a pointed nose", "video_id": "video11905", "sen_id": 206453}, {"caption": "most important isolation the rat is finishing his work", "video_id": "video11905", "sen_id": 206454}, {"caption": "a hampster comes out of its hiding place in its cage", "video_id": "video11905", "sen_id": 206455}, {"caption": "a mouse is staying under a cover and coming out", "video_id": "video11905", "sen_id": 206456}, {"caption": "most importantly isolation rat is very fastly coming", "video_id": "video11905", "sen_id": 206457}, {"caption": "a rat come out it makes sure of isolation the rat eyes is in blue color", "video_id": "video11905", "sen_id": 206458}, {"caption": "the individual gave tips on how to treat your hamster", "video_id": "video11905", "sen_id": 206459}, {"caption": "a barge with a blue cover going down a river with two people driving it", "video_id": "video10776", "sen_id": 206460}, {"caption": "a barge riding on a dirty brown river", "video_id": "video10776", "sen_id": 206461}, {"caption": "a large boat is going down the stream", "video_id": "video10776", "sen_id": 206462}, {"caption": "a man and woman stand in the control cabin as a turquoise barge is pushed through a muddy river past thick growth of trees and bushes identification of the boat is in white lettering against a black background below a red panel", "video_id": "video10776", "sen_id": 206463}, {"caption": "there are two people driving a large boat and then the boat is going through the water", "video_id": "video10776", "sen_id": 206464}, {"caption": "a boat of some sort traveling in the muddy river waters", "video_id": "video10776", "sen_id": 206465}, {"caption": "a woman narrates as a couple travels across a river by boat", "video_id": "video10776", "sen_id": 206466}, {"caption": "a barge is shown travelling up a river while a narrator speaks", "video_id": "video10776", "sen_id": 206467}, {"caption": "a barge boat is floating down a dirty river", "video_id": "video10776", "sen_id": 206468}, {"caption": "a woman explaining how up until the 1960s there were many barges on this river", "video_id": "video10776", "sen_id": 206469}, {"caption": "an documentary about the one of the old model boats that are used in ancient times", "video_id": "video10776", "sen_id": 206470}, {"caption": "a couple drive a boat while a woman talks", "video_id": "video10776", "sen_id": 206471}, {"caption": "a river boat can be seen sailing on the muddy looking river severn with a female commentator talking about the history of this activity", "video_id": "video10776", "sen_id": 206472}, {"caption": "a man and woman traveling on the boat in the river", "video_id": "video10776", "sen_id": 206473}, {"caption": "a young british woman who is on a tour boat with a man while they are traversing down the river", "video_id": "video10776", "sen_id": 206474}, {"caption": "a boat is sailing on water which is brown in color due to mud being mixed up", "video_id": "video10776", "sen_id": 206475}, {"caption": "a large boat traveling down a muddy river", "video_id": "video10776", "sen_id": 206476}, {"caption": "a barge is shown while a woman instructs", "video_id": "video10776", "sen_id": 206477}, {"caption": "boaters ride the triley hull boat across the river", "video_id": "video10776", "sen_id": 206478}, {"caption": "a video showing tirley hull on expedition", "video_id": "video10776", "sen_id": 206479}, {"caption": "a", "video_id": "video12167", "sen_id": 206480}, {"caption": "a woman is performing a song an dance routine in a music video", "video_id": "video12167", "sen_id": 206481}, {"caption": "a woman in a blonde wig is standing on a car dancing and singing", "video_id": "video12167", "sen_id": 206482}, {"caption": "there are people dancing and singing on and around cars in a car garage", "video_id": "video12167", "sen_id": 206483}, {"caption": "a woman is dancing on a car while singing rap music with male choreographers around her", "video_id": "video12167", "sen_id": 206484}, {"caption": "group of dancers are performing at their best", "video_id": "video12167", "sen_id": 206485}, {"caption": "a lady with white hair stand on top of engine compartment of a car and sings a song", "video_id": "video12167", "sen_id": 206486}, {"caption": "a men and a women are dancing for a song", "video_id": "video12167", "sen_id": 206487}, {"caption": "a boys and girl in black dress dancing and singing displaying on screen", "video_id": "video12167", "sen_id": 206488}, {"caption": "a wonder pop artist is dancing standing over the car hood", "video_id": "video12167", "sen_id": 206489}, {"caption": "a man in black dressing dancing with a women", "video_id": "video12167", "sen_id": 206490}, {"caption": "the people are dancing and singing near the cars", "video_id": "video12167", "sen_id": 206491}, {"caption": "a woman on top of car and dancers in a warehouse", "video_id": "video12167", "sen_id": 206492}, {"caption": "the beautiful girl in black dress is singing and dancing along with others", "video_id": "video12167", "sen_id": 206493}, {"caption": "a blonde woman on a car is singing", "video_id": "video12167", "sen_id": 206494}, {"caption": "there is a woman with white hair singing a song", "video_id": "video12167", "sen_id": 206495}, {"caption": "at the night hotel club party the music troup is compose their songs in very well", "video_id": "video12167", "sen_id": 206496}, {"caption": "lady gaga is dancing on top of a car while other dancers are dancing around her", "video_id": "video12167", "sen_id": 206497}, {"caption": "sexy blonde singer dancing and singing in her music video", "video_id": "video12167", "sen_id": 206498}, {"caption": "a woman with blonde hair is singing a song", "video_id": "video12167", "sen_id": 206499}, {"caption": "a woman is bound to a chair and is struggling to move", "video_id": "video10427", "sen_id": 206500}, {"caption": "a lady with a weird robe on tied up in a corner with her mouth gagged", "video_id": "video10427", "sen_id": 206501}, {"caption": "in a black and white film a person sits restrained on a bed", "video_id": "video10427", "sen_id": 206502}, {"caption": "a lady in bloody garb sits in a room having convulsions in black and white", "video_id": "video10427", "sen_id": 206503}, {"caption": "a woman bouncing in a chair has blood running down her chin onto her dress", "video_id": "video10427", "sen_id": 206504}, {"caption": "a woman dressed in white is having what appears to be a seizure in the corner", "video_id": "video10427", "sen_id": 206505}, {"caption": "a women tied up to a chair with blood all over her", "video_id": "video10427", "sen_id": 206506}, {"caption": "a person with long dark hair sets in a chair in the corner of a black and white room", "video_id": "video10427", "sen_id": 206507}, {"caption": "a woman is tied to her chair and is screaming to release her", "video_id": "video10427", "sen_id": 206508}, {"caption": "actress in black and white movie gagged and tied to a chair", "video_id": "video10427", "sen_id": 206509}, {"caption": "one girl was holded in house with rope and she try to shout", "video_id": "video10427", "sen_id": 206510}, {"caption": "a person with long black hair shakes back and forth in a chair they are setting in", "video_id": "video10427", "sen_id": 206511}, {"caption": "a person in white outfit is sitting in front of camera and shake the body", "video_id": "video10427", "sen_id": 206512}, {"caption": "the old man in the house he is acting and dancing in the song", "video_id": "video10427", "sen_id": 206513}, {"caption": "a person colored in black and white shakes back and forth in a chair", "video_id": "video10427", "sen_id": 206514}, {"caption": "a zombie video of the old time movies", "video_id": "video10427", "sen_id": 206515}, {"caption": "a man in a chair is fidgeting around in pain", "video_id": "video10427", "sen_id": 206516}, {"caption": "there is a women sitting on a chair and shouting", "video_id": "video10427", "sen_id": 206517}, {"caption": "in a vintage movie one woman tied and", "video_id": "video10427", "sen_id": 206518}, {"caption": "a person being tied in a chair shivers a lot", "video_id": "video10427", "sen_id": 206519}, {"caption": "two adult men are in a kitchen discussing a piece of paper then a moving fan pulls up and five people wearing white coats run out of the truck and stand in formation", "video_id": "video12588", "sen_id": 206520}, {"caption": "men in white lab coats gathering outside of a silver truck outdoors", "video_id": "video12588", "sen_id": 206521}, {"caption": "several people run out of the back of a truck wearing white coats", "video_id": "video12588", "sen_id": 206522}, {"caption": "several men in white lab coats race out of the back of truck the line up in formation at the orders of a leader who dawns a black stripe on his lab coat each of the men are in black hats", "video_id": "video12588", "sen_id": 206523}, {"caption": "a large truck pulls up in front of a house and many men walk out to stand in their places", "video_id": "video12588", "sen_id": 206524}, {"caption": "a group of people wearing white coat run out of the back of a truck", "video_id": "video12588", "sen_id": 206525}, {"caption": "a monty python skit where men in white coats are given orders by a silly man", "video_id": "video12588", "sen_id": 206526}, {"caption": "a moving truck arrives and four people in long white coats emerge into the street marching like soldiers", "video_id": "video12588", "sen_id": 206527}, {"caption": "soldiers running off of truck bed to attend hunt", "video_id": "video12588", "sen_id": 206528}, {"caption": "several men in uniform come out of a truck and stand at attention", "video_id": "video12588", "sen_id": 206529}, {"caption": "men in white coats running out the back of a truck", "video_id": "video12588", "sen_id": 206530}, {"caption": "a group of men in white coats exit from the back of a van and move to formation", "video_id": "video12588", "sen_id": 206531}, {"caption": "more peoples are getting down from a container", "video_id": "video12588", "sen_id": 206532}, {"caption": "a moving van pulls up in front of a house and people in lab coats pour out", "video_id": "video12588", "sen_id": 206533}, {"caption": "two men having a conversation when doctors exiting from the truck", "video_id": "video12588", "sen_id": 206534}, {"caption": "bunch of people getting out of the moving van in lab coat", "video_id": "video12588", "sen_id": 206535}, {"caption": "big truck on the road so many people with the white dress come out of it", "video_id": "video12588", "sen_id": 206536}, {"caption": "a truck pulls up on to a white house", "video_id": "video12588", "sen_id": 206537}, {"caption": "some people comedically piling out of a cargo vehicle and following some orders", "video_id": "video12588", "sen_id": 206538}, {"caption": "some people are standing in front of a white house", "video_id": "video12588", "sen_id": 206539}, {"caption": "a man explaining how to prepare stir fry", "video_id": "video11227", "sen_id": 206540}, {"caption": "a male cook is in a cluttered kitchen showing cut meat and vegetable ingredients in black bowls on a wood cutting board and white tiled counter", "video_id": "video11227", "sen_id": 206541}, {"caption": "a man is in a kitchen showing some ingredients and talking about some important things to remember when cooking stir fry", "video_id": "video11227", "sen_id": 206542}, {"caption": "a man is in the kitchen cooking a stir-fry dish", "video_id": "video11227", "sen_id": 206543}, {"caption": "a chef explains important basic facts about stir-frying", "video_id": "video11227", "sen_id": 206544}, {"caption": "a male cook explains how to stir fry foods by illustrating using food in black bowls", "video_id": "video11227", "sen_id": 206545}, {"caption": "a male cook explains the proper way to prepare ingredients for a stir-fry recipe", "video_id": "video11227", "sen_id": 206546}, {"caption": "a man talks about making stir fry as he points out that the ingredients are cut the same size", "video_id": "video11227", "sen_id": 206547}, {"caption": "a man cooks green beans in a pan on the stove", "video_id": "video11227", "sen_id": 206548}, {"caption": "a man gives instruction on preparing a stir fry dish while gesturing towards the ingredients which are placed in several bowls", "video_id": "video11227", "sen_id": 206549}, {"caption": "a chef shows the ingredients they are using to make a stir fry", "video_id": "video11227", "sen_id": 206550}, {"caption": "a man is giving instructions on how to make a good stir-fry using various ingredients", "video_id": "video11227", "sen_id": 206551}, {"caption": "a man gives cooking advice about stir-fry ingredients", "video_id": "video11227", "sen_id": 206552}, {"caption": "a guy is advising to keep ingredients simple and of same size for cooking stir fries", "video_id": "video11227", "sen_id": 206553}, {"caption": "a man giving a reciepe and tips on making stir fry", "video_id": "video11227", "sen_id": 206554}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11227", "sen_id": 206555}, {"caption": "a man taking beans chicken and cabbage with slicing small pieces", "video_id": "video11227", "sen_id": 206556}, {"caption": "one man make a recipe with meats green beans", "video_id": "video11227", "sen_id": 206557}, {"caption": "the men introducing some vegetables and meet", "video_id": "video11227", "sen_id": 206558}, {"caption": "some various ingredients are sitting in pots", "video_id": "video11227", "sen_id": 206559}, {"caption": "women walking on a runway at a fashion show under spotlights", "video_id": "video11135", "sen_id": 206560}, {"caption": "taylor swift is performing her song on stage live", "video_id": "video11135", "sen_id": 206561}, {"caption": "women walk the runway while a taylor swift song plays", "video_id": "video11135", "sen_id": 206562}, {"caption": "fashion models are walking gently in a fashion show", "video_id": "video11135", "sen_id": 206563}, {"caption": "models walking on a beautiful illuminiated runway with white balloons on it", "video_id": "video11135", "sen_id": 206564}, {"caption": "the ramp walking is going on by young girls", "video_id": "video11135", "sen_id": 206565}, {"caption": "a fashion parade is going and the models are rocking in an event", "video_id": "video11135", "sen_id": 206566}, {"caption": "a women with white dress walking on the ramp", "video_id": "video11135", "sen_id": 206567}, {"caption": "models walking on the runway which is illuminated with beautiful lights", "video_id": "video11135", "sen_id": 206568}, {"caption": "fashion girl cat walk in fashion show crowd watching it", "video_id": "video11135", "sen_id": 206569}, {"caption": "a woman with fake wings walked down a runway filled with white balloons", "video_id": "video11135", "sen_id": 206570}, {"caption": "models walking down the ramp with their fashionable oufits", "video_id": "video11135", "sen_id": 206571}, {"caption": "a girl is doing ramp walk on the stage", "video_id": "video11135", "sen_id": 206572}, {"caption": "a crowd of people are watching beautiful woman that are walking the runway full of balloons modeling a fashion show", "video_id": "video11135", "sen_id": 206573}, {"caption": "women are walking down a runway with people watching", "video_id": "video11135", "sen_id": 206574}, {"caption": "some models are walking on a cat walk", "video_id": "video11135", "sen_id": 206575}, {"caption": "women dancing and doing fashion for photo shots", "video_id": "video11135", "sen_id": 206576}, {"caption": "the women s fashion show is on while the audience is enjoying it", "video_id": "video11135", "sen_id": 206577}, {"caption": "a beauty girl is cat walk on the stage of fashion show", "video_id": "video11135", "sen_id": 206578}, {"caption": "a girls walking fashion model on stage with design dresses shouting singing music playing", "video_id": "video11135", "sen_id": 206579}, {"caption": "photocopying drawings is described as a girl follows along", "video_id": "video11190", "sen_id": 206580}, {"caption": "a person is making a copy of a drawing made", "video_id": "video11190", "sen_id": 206581}, {"caption": "man explains how drawings are turned into cartoons while video shows woman doing what he explains", "video_id": "video11190", "sen_id": 206582}, {"caption": "a woman showing how to make a cell from a drawing", "video_id": "video11190", "sen_id": 206583}, {"caption": "a man details how animations are created using photocopying and cells", "video_id": "video11190", "sen_id": 206584}, {"caption": "a tutorial video showing how cartoons are made with a child illustrating the steps that a man is describing", "video_id": "video11190", "sen_id": 206585}, {"caption": "a man giving a step by step tutorial on how to make a cartoon", "video_id": "video11190", "sen_id": 206586}, {"caption": "a description of a part of the animation process where you scan your images", "video_id": "video11190", "sen_id": 206587}, {"caption": "a person is doing photo state and lamination of a cartoon poster", "video_id": "video11190", "sen_id": 206588}, {"caption": "a person is showing how to create cartoon character", "video_id": "video11190", "sen_id": 206589}, {"caption": "there is a man working hard in a factory", "video_id": "video11190", "sen_id": 206590}, {"caption": "a girl making a xerox of the animated drawing cartoon", "video_id": "video11190", "sen_id": 206591}, {"caption": "a young woman is photocopying a drawing onto a sheet of plastic", "video_id": "video11190", "sen_id": 206592}, {"caption": "a drawing is shown before the focus shifts to a copy machine and the drawing is transferred", "video_id": "video11190", "sen_id": 206593}, {"caption": "a woman in a red gown lifts a clear sheet off a photocopier", "video_id": "video11190", "sen_id": 206594}, {"caption": "a man in a loose red shirt is showing how to make cartoons", "video_id": "video11190", "sen_id": 206595}, {"caption": "a woman using an animating machine holds up a blank cell", "video_id": "video11190", "sen_id": 206596}, {"caption": "a woman is making an animation in a studio", "video_id": "video11190", "sen_id": 206597}, {"caption": "preparation of cartoon figures is time consuming - preparing each stage drawn carefully", "video_id": "video11190", "sen_id": 206598}, {"caption": "a person in a pink shirt is holding a plastic sheet", "video_id": "video11190", "sen_id": 206599}, {"caption": "a woman and a man are looking at a dinosaur in a field", "video_id": "video12646", "sen_id": 206600}, {"caption": "a man and a woman are experiencing a living dinosaur for the first time", "video_id": "video12646", "sen_id": 206601}, {"caption": "a man and a woman get out of a jeep and walk toward a dinosaur", "video_id": "video12646", "sen_id": 206602}, {"caption": "a man and a woman exit a jeep in a tropical area", "video_id": "video12646", "sen_id": 206603}, {"caption": "two people exit a jeep and walk through a large field", "video_id": "video12646", "sen_id": 206604}, {"caption": "a man in blue and woman in red walk up to a large dinosaur", "video_id": "video12646", "sen_id": 206605}, {"caption": "a man and a woman get out of a jeep and walk a little ways to get a closer look at a dinosaur", "video_id": "video12646", "sen_id": 206606}, {"caption": "a person is explaining about that the directors feels very incrediblyhard to shoot the movie scenes", "video_id": "video12646", "sen_id": 206607}, {"caption": "two people exit a jeep and walk towards a dinosaur", "video_id": "video12646", "sen_id": 206608}, {"caption": "a man in blue shirt touches the leg of a big animal", "video_id": "video12646", "sen_id": 206609}, {"caption": "there is man and a lady is going near a big animal", "video_id": "video12646", "sen_id": 206610}, {"caption": "a men are going in the forest and seeing a dinoser", "video_id": "video12646", "sen_id": 206611}, {"caption": "a man and a woman get out in the red jeep to get a better look at the large dinosaur", "video_id": "video12646", "sen_id": 206612}, {"caption": "a long necked dinosaur is being looked at by a man and woman at jurassic park", "video_id": "video12646", "sen_id": 206613}, {"caption": "two of the main characters in jurassic park encounter a dinosaur for the first time", "video_id": "video12646", "sen_id": 206614}, {"caption": "a clip is shown with a small group of men closely observing a dinosaur", "video_id": "video12646", "sen_id": 206615}, {"caption": "two people get out of a jeep and are surprised to see a dinosaur standing in front of them", "video_id": "video12646", "sen_id": 206616}, {"caption": "two people are astounded looking at a dinosaur", "video_id": "video12646", "sen_id": 206617}, {"caption": "the people are exiting from the red car and looking in the big animal", "video_id": "video12646", "sen_id": 206618}, {"caption": "a man in a jurassic park shirt is sitting down", "video_id": "video12646", "sen_id": 206619}, {"caption": "a man's voice explaining how to add confectionery sugar to a dish", "video_id": "video11027", "sen_id": 206620}, {"caption": "a person showing how to make a certain pastry", "video_id": "video11027", "sen_id": 206621}, {"caption": "a man is giving the recipe for a dessert and sprinkling confectioners sugar on it", "video_id": "video11027", "sen_id": 206622}, {"caption": "a fried treat is sprinkled with powdered sugar and displayed on a checkered napkin", "video_id": "video11027", "sen_id": 206623}, {"caption": "a batch of pastries sprinkled with powdered sugar then placed in a basket", "video_id": "video11027", "sen_id": 206624}, {"caption": "some one poring sugar powder to the fried snacks", "video_id": "video11027", "sen_id": 206625}, {"caption": "snacks are being prepared and showered with sugar", "video_id": "video11027", "sen_id": 206626}, {"caption": "a person is explaining about some cooking process", "video_id": "video11027", "sen_id": 206627}, {"caption": "a man describes a deep-fried treat as footage shows it s creation", "video_id": "video11027", "sen_id": 206628}, {"caption": "the man sprinkles the doughnuts with white powdered sugar before serving them", "video_id": "video11027", "sen_id": 206629}, {"caption": "in a kitchenthere is a man preparing food something variety sweet", "video_id": "video11027", "sen_id": 206630}, {"caption": "a chef sprinkles fried food with sugar and puts the food in a checkered napkin", "video_id": "video11027", "sen_id": 206631}, {"caption": "making of a recipe one man put some white powder like sugar", "video_id": "video11027", "sen_id": 206632}, {"caption": "in this video how prepare meat food in diffrent ways", "video_id": "video11027", "sen_id": 206633}, {"caption": "some pastries are in a paper lined bowl", "video_id": "video11027", "sen_id": 206634}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11027", "sen_id": 206635}, {"caption": "a fried treat taken out of a pot and sprinkled with powdered sugar", "video_id": "video11027", "sen_id": 206636}, {"caption": "one man makes a tasty and healthy recipe with", "video_id": "video11027", "sen_id": 206637}, {"caption": "powdered sugar is sprinkled onto hot fried dough balls", "video_id": "video11027", "sen_id": 206638}, {"caption": "someone is making some fried food", "video_id": "video11027", "sen_id": 206639}, {"caption": "while music plays in the background a few pictures are displayed with attractive women", "video_id": "video12500", "sen_id": 206640}, {"caption": "a woman is taking selfies of herself in many different outfits", "video_id": "video12500", "sen_id": 206641}, {"caption": "three women in black is taking a pictures in a mirror", "video_id": "video12500", "sen_id": 206642}, {"caption": "still photos of women in outfits taking selfies while music plays", "video_id": "video12500", "sen_id": 206643}, {"caption": "a woman is shown in a variety of outfits while music plays", "video_id": "video12500", "sen_id": 206644}, {"caption": "a montage of a woman taking selfies of herself", "video_id": "video12500", "sen_id": 206645}, {"caption": "various women are posing in fashion outfits on a screen in front of a red curtain", "video_id": "video12500", "sen_id": 206646}, {"caption": "a series of selfie pictures taken by different women", "video_id": "video12500", "sen_id": 206647}, {"caption": "emo and scene girl fashion is examined through slides", "video_id": "video12500", "sen_id": 206648}, {"caption": "a woman wearing a black outfit and a black hat takes a selfie in a mirror", "video_id": "video12500", "sen_id": 206649}, {"caption": "a woman taking a picture in a bathroom mirror and a woman taking a picture in a long mirror", "video_id": "video12500", "sen_id": 206650}, {"caption": "there is a women taking selfie in front of a mirror", "video_id": "video12500", "sen_id": 206651}, {"caption": "various fashionable woman appear who have taken selfies of themselves", "video_id": "video12500", "sen_id": 206652}, {"caption": "in this video clip there are some women s photos", "video_id": "video12500", "sen_id": 206653}, {"caption": "a photos of different girl pictures are shown in the video", "video_id": "video12500", "sen_id": 206654}, {"caption": "a woman is posting and taking pictures of herself", "video_id": "video12500", "sen_id": 206655}, {"caption": "there are two models picture on a screen shown together", "video_id": "video12500", "sen_id": 206656}, {"caption": "a young woman poses for pictures in various forms of fashion", "video_id": "video12500", "sen_id": 206657}, {"caption": "a still images of a girl mobile in her hand displaying on screen and girl sitting", "video_id": "video12500", "sen_id": 206658}, {"caption": "music is playing as images of a woman are shown", "video_id": "video12500", "sen_id": 206659}, {"caption": "there is a menu screen of a video game", "video_id": "video12613", "sen_id": 206660}, {"caption": "a game pause screen with continue start over and quit buttons", "video_id": "video12613", "sen_id": 206661}, {"caption": "options buttons cover the screen of a baseball video game", "video_id": "video12613", "sen_id": 206662}, {"caption": "kids talking and laughing as they play a baseball video game explaining different ways to pitch the ball", "video_id": "video12613", "sen_id": 206663}, {"caption": "a baseball game is being played for a video game", "video_id": "video12613", "sen_id": 206664}, {"caption": "a person plays a baseball video game and is about to continue", "video_id": "video12613", "sen_id": 206665}, {"caption": "a boy and a girl playing a video game", "video_id": "video12613", "sen_id": 206666}, {"caption": "there is a pause screen of a wii sports baseball game", "video_id": "video12613", "sen_id": 206667}, {"caption": "person showing how to navigate through a baseball computer game", "video_id": "video12613", "sen_id": 206668}, {"caption": "children discuss playing a baseball video game while showing a screen that displays start over and quit", "video_id": "video12613", "sen_id": 206669}, {"caption": "there is a baseball ground prepared for a game", "video_id": "video12613", "sen_id": 206670}, {"caption": "a showing of how to use a baseball game that has options on the front", "video_id": "video12613", "sen_id": 206671}, {"caption": "two kids are playing a baseball game on the nintendo wii", "video_id": "video12613", "sen_id": 206672}, {"caption": "there are three option buttons overlaying a baseball field", "video_id": "video12613", "sen_id": 206673}, {"caption": "in the video game start over and quit options are displayed", "video_id": "video12613", "sen_id": 206674}, {"caption": "steps are shown to start a video game", "video_id": "video12613", "sen_id": 206675}, {"caption": "the video shows three tabs for a game to continue start over", "video_id": "video12613", "sen_id": 206676}, {"caption": "we here kids talking while a paused video game is on screen", "video_id": "video12613", "sen_id": 206677}, {"caption": "a video game displaying on screen and menu displaying on screen", "video_id": "video12613", "sen_id": 206678}, {"caption": "some one is playing a baseball video game", "video_id": "video12613", "sen_id": 206679}, {"caption": "what appears to be a concert is shown at the beginning followed by an advertisement", "video_id": "video10608", "sen_id": 206680}, {"caption": "a link to subscribe for niki vlogs appears for twenty seconds", "video_id": "video10608", "sen_id": 206681}, {"caption": "a sign with words are displayed with music playing in the background", "video_id": "video10608", "sen_id": 206682}, {"caption": "fast electronic music is playing while a screen asks to subscribe to niki vlogs", "video_id": "video10608", "sen_id": 206683}, {"caption": "a graphic encouraging people to subscribe to niki vlogs", "video_id": "video10608", "sen_id": 206684}, {"caption": "a coming show is blocked by the need to subscribe to a site titled niki ulags", "video_id": "video10608", "sen_id": 206685}, {"caption": "an advertisement is shown to subscribe to a youtube channel", "video_id": "video10608", "sen_id": 206686}, {"caption": "an outro video to a vlog video channel on youtube", "video_id": "video10608", "sen_id": 206687}, {"caption": "niki vlogs click to subscribe with a a musical and color background", "video_id": "video10608", "sen_id": 206688}, {"caption": "music plays over a screen of a vlog subscription ad", "video_id": "video10608", "sen_id": 206689}, {"caption": "there are some tips about the use of subscription", "video_id": "video10608", "sen_id": 206690}, {"caption": "a advertisement with english letter niki logs and click to subscribe", "video_id": "video10608", "sen_id": 206691}, {"caption": "an advertisement for niki vlogs over a colorful background", "video_id": "video10608", "sen_id": 206692}, {"caption": "it is a video asking you to subscribe to something", "video_id": "video10608", "sen_id": 206693}, {"caption": "niki created an epic video with retro colors", "video_id": "video10608", "sen_id": 206694}, {"caption": "there is some details about to subscribe a site", "video_id": "video10608", "sen_id": 206695}, {"caption": "an ad for niki vlogs with and option to subscribe is displayed while music plays", "video_id": "video10608", "sen_id": 206696}, {"caption": "a video explaining to subscribe with loud music playing", "video_id": "video10608", "sen_id": 206697}, {"caption": "a colorfull back ground with pink yellow and blue black words of niki with a blue back ground and black words of subscribe with a purple back ground and black cursave writting with a green background", "video_id": "video10608", "sen_id": 206698}, {"caption": "the arrow points to where to go to subscribe to the video blog", "video_id": "video10608", "sen_id": 206699}, {"caption": "on a clear blue night sky the camera pans out to reveal the beautiful majestic castle", "video_id": "video10177", "sen_id": 206700}, {"caption": "a movie made by walt disney pictures is about to begin", "video_id": "video10177", "sen_id": 206701}, {"caption": "an flag is on top of a castle is waving in the wind while music plays", "video_id": "video10177", "sen_id": 206702}, {"caption": "a starry blue night in the clouds goes down through a long dolly shot passing around a fairy-tale castle with fireworks set in rolling hills at the bend of a river the camera eventually travels to a far shot of the castle and the walt disney pictures logo fades into view", "video_id": "video10177", "sen_id": 206703}, {"caption": "the beginning credits of a cartoon disney movie", "video_id": "video10177", "sen_id": 206704}, {"caption": "cartoon stars in the sky then a river then the cinderella castle at disneyland is featured with fireworks in the background walt disney pictures logo then pops up in silver print", "video_id": "video10177", "sen_id": 206705}, {"caption": "this is the opening introduction to movies made by walt disney", "video_id": "video10177", "sen_id": 206706}, {"caption": "some one showing the video of disney land covered with lights", "video_id": "video10177", "sen_id": 206707}, {"caption": "a camera pans down over a castle as fireworks go off behind it then the walt disney pictures logo appears", "video_id": "video10177", "sen_id": 206708}, {"caption": "the fireworks shoot up in the blue sky", "video_id": "video10177", "sen_id": 206709}, {"caption": "fire works are going off behind an animated castle", "video_id": "video10177", "sen_id": 206710}, {"caption": "in the traditional disney opening the camera pulls back from cinderella s castle as fireworks go off over it", "video_id": "video10177", "sen_id": 206711}, {"caption": "there is a big palace with lights around", "video_id": "video10177", "sen_id": 206712}, {"caption": "in the dark night sky is appearing on the ocassion of the walt disney movie releasing", "video_id": "video10177", "sen_id": 206713}, {"caption": "an animation film is playing on a screen", "video_id": "video10177", "sen_id": 206714}, {"caption": "this video clips view the building and this is an waltdisney pictures", "video_id": "video10177", "sen_id": 206715}, {"caption": "the camera pans down on a river and pulls out to show the disney castle while fireworks explode in the background", "video_id": "video10177", "sen_id": 206716}, {"caption": "a fairy tale landscape featuring a castle and fireworks", "video_id": "video10177", "sen_id": 206717}, {"caption": "walt disney movie showing a kingdom and a fireworks around it", "video_id": "video10177", "sen_id": 206718}, {"caption": "a opening to a disney movie with the castle", "video_id": "video10177", "sen_id": 206719}, {"caption": "a woman is wearing black and talking to a guy wearing a grey tie", "video_id": "video10048", "sen_id": 206720}, {"caption": "kim kardashian being interviewed on a late at night tv show", "video_id": "video10048", "sen_id": 206721}, {"caption": "a woman telling a talkshow host about some pictures she has taken of herself and turned into a book", "video_id": "video10048", "sen_id": 206722}, {"caption": "a tv show host interviewing a guest on his show", "video_id": "video10048", "sen_id": 206723}, {"caption": "a woman is talking to the interviewer in the chair", "video_id": "video10048", "sen_id": 206724}, {"caption": "a jimmy kimmel interviewing a whore", "video_id": "video10048", "sen_id": 206725}, {"caption": "an older man interviews a middle aged woman about a book she wrote", "video_id": "video10048", "sen_id": 206726}, {"caption": "jimmy kimmel interviewing kim kardashian about her selfie book", "video_id": "video10048", "sen_id": 206727}, {"caption": "jimmy kimmel talks to kim kardashian about a book she released", "video_id": "video10048", "sen_id": 206728}, {"caption": "a talk show host interviews a beautiful lady with dark hair", "video_id": "video10048", "sen_id": 206729}, {"caption": "a woman and man sitting in front of an audience", "video_id": "video10048", "sen_id": 206730}, {"caption": "a man is talking to a woman about her book", "video_id": "video10048", "sen_id": 206731}, {"caption": "there is a women talking from the studio", "video_id": "video10048", "sen_id": 206732}, {"caption": "there is a men and women talking with each other in news room", "video_id": "video10048", "sen_id": 206733}, {"caption": "an interview with a kardashian about selfies that she took", "video_id": "video10048", "sen_id": 206734}, {"caption": "a man and a woman are talking about something", "video_id": "video10048", "sen_id": 206735}, {"caption": "a night time host talking to kim kardashian about her book", "video_id": "video10048", "sen_id": 206736}, {"caption": "a woman with a plunging neckline sits next to a man interviewing her", "video_id": "video10048", "sen_id": 206737}, {"caption": "a man is talking about the book to a woman", "video_id": "video10048", "sen_id": 206738}, {"caption": "kimmy kimmel is talking to a woman on his show", "video_id": "video10048", "sen_id": 206739}, {"caption": "a man and a woman are sitting outside with two monkeys", "video_id": "video10360", "sen_id": 206740}, {"caption": "a man and woman are outside with their dogs", "video_id": "video10360", "sen_id": 206741}, {"caption": "a man holding a monkey plays with the monkey while sitting next to a girl with a monkey", "video_id": "video10360", "sen_id": 206742}, {"caption": "a young man and woman sit next to each other while holding monkeys", "video_id": "video10360", "sen_id": 206743}, {"caption": "a boy and a girl sitting with monkeys on their laps", "video_id": "video10360", "sen_id": 206744}, {"caption": "a man and a woman holding monkeys as the man talks", "video_id": "video10360", "sen_id": 206745}, {"caption": "a man and a woman are sitting with their monkeys", "video_id": "video10360", "sen_id": 206746}, {"caption": "two person are with a monkey and speaking each other", "video_id": "video10360", "sen_id": 206747}, {"caption": "two people sitting on the veranda of their home with a monkey on the person s shoulder", "video_id": "video10360", "sen_id": 206748}, {"caption": "a man talking sitting down with a woman and they are both holding two monkeys", "video_id": "video10360", "sen_id": 206749}, {"caption": "a man and woman are holding monkeys on their laps and talking about them", "video_id": "video10360", "sen_id": 206750}, {"caption": "a male and a female sitting at out side of home and playing with their baby monkeies", "video_id": "video10360", "sen_id": 206751}, {"caption": "there is a black cap man playing with his monkey", "video_id": "video10360", "sen_id": 206752}, {"caption": "a man and a lady carryin some two monkeys", "video_id": "video10360", "sen_id": 206753}, {"caption": "a man and woman sitting on the chair with monkeys and talking about it", "video_id": "video10360", "sen_id": 206754}, {"caption": "two people are discussing with each other by actions", "video_id": "video10360", "sen_id": 206755}, {"caption": "two small monkeys are playing with two person as they are sitting in the chair", "video_id": "video10360", "sen_id": 206756}, {"caption": "a woman and a man are sitting on a porch each of them is holding a chimpanzee and the man talks about the monkeys", "video_id": "video10360", "sen_id": 206757}, {"caption": "the couple is playing with a monkey in front of the house", "video_id": "video10360", "sen_id": 206758}, {"caption": "two people are sitting outside and talking", "video_id": "video10360", "sen_id": 206759}, {"caption": "man talking about the story details in regards to a movie he's acting in", "video_id": "video11112", "sen_id": 206760}, {"caption": "a man is describing his thoughts on the movie avatar", "video_id": "video11112", "sen_id": 206761}, {"caption": "scenes from the movie avatar and played with commentary from one of the actors", "video_id": "video11112", "sen_id": 206762}, {"caption": "an actor describes a scene he has performed in a movie", "video_id": "video11112", "sen_id": 206763}, {"caption": "an actor discusses the various aspects of a scene in a famous movie", "video_id": "video11112", "sen_id": 206764}, {"caption": "a man explains his role in a movie where he is fused with an alien", "video_id": "video11112", "sen_id": 206765}, {"caption": "a man talking about the dna of an alien in the movie avatar", "video_id": "video11112", "sen_id": 206766}, {"caption": "an actor from the movie avatar is describing the movie behind the scenes", "video_id": "video11112", "sen_id": 206767}, {"caption": "a person trying to discover who he really is", "video_id": "video11112", "sen_id": 206768}, {"caption": "a man closing and lying on the bed", "video_id": "video11112", "sen_id": 206769}, {"caption": "a man is taken for a mri screening", "video_id": "video11112", "sen_id": 206770}, {"caption": "a man explaining how a man and alien s brain can be combined", "video_id": "video11112", "sen_id": 206771}, {"caption": "an actor talks about how the aliens in avatar are made", "video_id": "video11112", "sen_id": 206772}, {"caption": "man describing scene from avatar movie", "video_id": "video11112", "sen_id": 206773}, {"caption": "a man in the avatar movie is sleeping", "video_id": "video11112", "sen_id": 206774}, {"caption": "a man describes who his body in linked into the body and dna of an alien", "video_id": "video11112", "sen_id": 206775}, {"caption": "well i assume this man is taking his dna to place in an alien to mimic his thoughts and actions", "video_id": "video11112", "sen_id": 206776}, {"caption": "person is talking about leaving the life and starts dreaming", "video_id": "video11112", "sen_id": 206777}, {"caption": "a man is explaining how his personality is transferred to a living copy of an alien life as he is laying in the capsule that will transfer his personality", "video_id": "video11112", "sen_id": 206778}, {"caption": "a scene from the movie avatar is being shown", "video_id": "video11112", "sen_id": 206779}, {"caption": "a male model is walking down a runway at a fashion show", "video_id": "video11025", "sen_id": 206780}, {"caption": "two males model walking up the stage with crowd cheer on", "video_id": "video11025", "sen_id": 206781}, {"caption": "a man and woman walk down a runway in green and black clothing", "video_id": "video11025", "sen_id": 206782}, {"caption": "there are models walking down a runway dressed in yellow and black in a crowded room", "video_id": "video11025", "sen_id": 206783}, {"caption": "a person dressed in yellow and black walking on a runway", "video_id": "video11025", "sen_id": 206784}, {"caption": "people gathered in a hall to watch fashion show competition", "video_id": "video11025", "sen_id": 206785}, {"caption": "a men are walking in the stage of fashion show", "video_id": "video11025", "sen_id": 206786}, {"caption": "its fashion show where guy dresses with only wear", "video_id": "video11025", "sen_id": 206787}, {"caption": "a boy in under wear walking on fashion show yellow dresses audience watching claping hands displaying on screen", "video_id": "video11025", "sen_id": 206788}, {"caption": "men are walking down the walk way for a fashion show", "video_id": "video11025", "sen_id": 206789}, {"caption": "models walk down a runway in front of an audience", "video_id": "video11025", "sen_id": 206790}, {"caption": "women in yellow bikini doing ramp walk", "video_id": "video11025", "sen_id": 206791}, {"caption": "a man wearing bright yellow small pants walks down a modeling runway", "video_id": "video11025", "sen_id": 206792}, {"caption": "walk of gentleman for fashion show for selling hoiseries", "video_id": "video11025", "sen_id": 206793}, {"caption": "there is a man and woman in new designed dress walking in the fashion show", "video_id": "video11025", "sen_id": 206794}, {"caption": "a man and a woman is walking in short attire on a runway", "video_id": "video11025", "sen_id": 206795}, {"caption": "women in yellow bikini walking on ramp", "video_id": "video11025", "sen_id": 206796}, {"caption": "a young man in a green leotard and black boots walks down a runway at a fashion show as a crowd cheers", "video_id": "video11025", "sen_id": 206797}, {"caption": "a beautiful girl in designer dress is walking through the ramp elegantly", "video_id": "video11025", "sen_id": 206798}, {"caption": "a fashion parade a couple with inner wears appears", "video_id": "video11025", "sen_id": 206799}, {"caption": "a man talking about construction in a large industrial building", "video_id": "video10353", "sen_id": 206800}, {"caption": "multiple clips of a large facility with multiple plants in it", "video_id": "video10353", "sen_id": 206801}, {"caption": "several construction working site scenes at different locations", "video_id": "video10353", "sen_id": 206802}, {"caption": "images from a wood display including a rain forrest displays of wooden structures (decks etc) as well as rain forrest trees", "video_id": "video10353", "sen_id": 206803}, {"caption": "a construction supervisor is describing a massive construction site and walking around it", "video_id": "video10353", "sen_id": 206804}, {"caption": "a man talks as a large crew builds a movie set that includes a rainforest", "video_id": "video10353", "sen_id": 206805}, {"caption": "a group of people put together different movie sets", "video_id": "video10353", "sen_id": 206806}, {"caption": "a man with wood working tools works on a set on a sound stage", "video_id": "video10353", "sen_id": 206807}, {"caption": "a man in a black shirt talking about the floor area", "video_id": "video10353", "sen_id": 206808}, {"caption": "a man is interviewed about his roll in the construction industry while several scenes of different constructions fade in and out", "video_id": "video10353", "sen_id": 206809}, {"caption": "a man is talking about an active movie set while showing different stages", "video_id": "video10353", "sen_id": 206810}, {"caption": "there is a man with headset working in a company", "video_id": "video10353", "sen_id": 206811}, {"caption": " construction manager describes the large amount of area used in his sets including a rain forest", "video_id": "video10353", "sen_id": 206812}, {"caption": "construction specialist making a rainforest with twenty five seats", "video_id": "video10353", "sen_id": 206813}, {"caption": "man is in the factory and talking about making the products", "video_id": "video10353", "sen_id": 206814}, {"caption": "a large scale movie set is being developed from an empty space and showing the steps along the way", "video_id": "video10353", "sen_id": 206815}, {"caption": "a person is constructing something from wood and walking through a warehouse", "video_id": "video10353", "sen_id": 206816}, {"caption": "a man working on a lab of construction and checking the place of site", "video_id": "video10353", "sen_id": 206817}, {"caption": "a man that works on a movie is describing how many sets there are to manage for the filming", "video_id": "video10353", "sen_id": 206818}, {"caption": "a construction supervisor talks about the space he has to work with on what appears to be a movie sound stage", "video_id": "video10353", "sen_id": 206819}, {"caption": "a red car is being driven down a street at high speed", "video_id": "video10781", "sen_id": 206820}, {"caption": "a red car is driving down a wet road with classical music in the background while the announcer describes the car", "video_id": "video10781", "sen_id": 206821}, {"caption": "a red car driving down the street", "video_id": "video10781", "sen_id": 206822}, {"caption": "a red audi is driving down the road with a voice over talking about the car", "video_id": "video10781", "sen_id": 206823}, {"caption": "a red car drives down an empty country road", "video_id": "video10781", "sen_id": 206824}, {"caption": "a man drives a red four door car down a deserted country road", "video_id": "video10781", "sen_id": 206825}, {"caption": "a red four door sedan travels down an asphalt road at moderately high speed", "video_id": "video10781", "sen_id": 206826}, {"caption": "there is a red car riding on the road in a sunny day", "video_id": "video10781", "sen_id": 206827}, {"caption": "a red audi four door is shown cruising down a road on its own", "video_id": "video10781", "sen_id": 206828}, {"caption": "a red audi car moves swiftly on a smooth road", "video_id": "video10781", "sen_id": 206829}, {"caption": "a red color car moving on road displaying on screen", "video_id": "video10781", "sen_id": 206830}, {"caption": "a red car is being driven on road while a person demonstrates the details of the car", "video_id": "video10781", "sen_id": 206831}, {"caption": "there is someone riding a car on the road", "video_id": "video10781", "sen_id": 206832}, {"caption": "a person advertising a red car which is on move", "video_id": "video10781", "sen_id": 206833}, {"caption": "a red car is driven down the road while a narrator reviews it", "video_id": "video10781", "sen_id": 206834}, {"caption": "a red car drives down a country road through water", "video_id": "video10781", "sen_id": 206835}, {"caption": "a red car is moving fast in an empty road", "video_id": "video10781", "sen_id": 206836}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video10781", "sen_id": 206837}, {"caption": "crazy super red audi car its amazing the car is driven on the road", "video_id": "video10781", "sen_id": 206838}, {"caption": "a red car is driving around a road", "video_id": "video10781", "sen_id": 206839}, {"caption": "this is a slideshow of beautiful city images", "video_id": "video11814", "sen_id": 206840}, {"caption": "photos of different scenery in what seems like florida are appearing", "video_id": "video11814", "sen_id": 206841}, {"caption": " and large stadium in a city which is highly populated", "video_id": "video11814", "sen_id": 206842}, {"caption": "it is scenary of a boat yard at night time", "video_id": "video11814", "sen_id": 206843}, {"caption": "a nice light show view along with glam music", "video_id": "video11814", "sen_id": 206844}, {"caption": "still pictures of brightly lit city while playing music", "video_id": "video11814", "sen_id": 206845}, {"caption": "there is a stage show going with lights", "video_id": "video11814", "sen_id": 206846}, {"caption": "different views of a city in the day and the night", "video_id": "video11814", "sen_id": 206847}, {"caption": "an ocean side scene is displayed while the night in the city is lit up", "video_id": "video11814", "sen_id": 206848}, {"caption": "the view of lake in the day time and night time in the day time water color is clear while reflection of light showing very beautiful in night", "video_id": "video11814", "sen_id": 206849}, {"caption": "picture taken from shore at night with a lit up bridge and party in the background", "video_id": "video11814", "sen_id": 206850}, {"caption": "over looking a tropical harbor then looking at a lot of lights from a bay into the land", "video_id": "video11814", "sen_id": 206851}, {"caption": "day and night of a harbour is shown with full of lights", "video_id": "video11814", "sen_id": 206852}, {"caption": "person is recording the beautiful places near the sea", "video_id": "video11814", "sen_id": 206853}, {"caption": "a city with lights is being attacked outside", "video_id": "video11814", "sen_id": 206854}, {"caption": "lights are displayed on the water", "video_id": "video11814", "sen_id": 206855}, {"caption": "two pictures are shown of a port where on is during day and other during night with lights", "video_id": "video11814", "sen_id": 206856}, {"caption": "a panoramic view of the seaside of a city skyline both at day and when lighted at night", "video_id": "video11814", "sen_id": 206857}, {"caption": "the water is lit up from the different street lights", "video_id": "video11814", "sen_id": 206858}, {"caption": "some water is reflecting light by a town", "video_id": "video11814", "sen_id": 206859}, {"caption": "a man is preparing beef with salt to be cooked", "video_id": "video11046", "sen_id": 206860}, {"caption": "two pieces of raw meat are seasoned with salt", "video_id": "video11046", "sen_id": 206861}, {"caption": "cuts of beef on a plate getting prepared for cooking", "video_id": "video11046", "sen_id": 206862}, {"caption": "a man cooking red meat and putting salt on it", "video_id": "video11046", "sen_id": 206863}, {"caption": "there are two piece of meat on a white plate and someone puts seasoning on them", "video_id": "video11046", "sen_id": 206864}, {"caption": "how to prepare two thick moist steaks with a little seasoning", "video_id": "video11046", "sen_id": 206865}, {"caption": "a person seasons two pieces of raw meat on a white plate", "video_id": "video11046", "sen_id": 206866}, {"caption": "a chef gets ready to cook two pieces of meat by seasoning them", "video_id": "video11046", "sen_id": 206867}, {"caption": "a man putting salt on two steaks on a tv show", "video_id": "video11046", "sen_id": 206868}, {"caption": "a couple of pieces of meat on a white plate", "video_id": "video11046", "sen_id": 206869}, {"caption": "a man is seasoning an uncooked steak", "video_id": "video11046", "sen_id": 206870}, {"caption": "a man is seasoning meat on a white plate with salt", "video_id": "video11046", "sen_id": 206871}, {"caption": "a man preparing two peices of raw meat to be cooked while explaining what he is doing", "video_id": "video11046", "sen_id": 206872}, {"caption": "a man explaining how to cook two pieces of red meat", "video_id": "video11046", "sen_id": 206873}, {"caption": "a man is preparing two peices of meat to be cooked and explaining the steps he is taking in doing so", "video_id": "video11046", "sen_id": 206874}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11046", "sen_id": 206875}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11046", "sen_id": 206876}, {"caption": "a person is pouring some dish in a white plate", "video_id": "video11046", "sen_id": 206877}, {"caption": "an plate with motton inside pouring inside kitchen ready to serve to eat", "video_id": "video11046", "sen_id": 206878}, {"caption": "some meat on a white plate is being filmed", "video_id": "video11046", "sen_id": 206879}, {"caption": "a cartoon boy talks next to a bird while a man stands near a tree", "video_id": "video12057", "sen_id": 206880}, {"caption": "an old man that is a puppet scratches his head as he talks to a puppet bird", "video_id": "video12057", "sen_id": 206881}, {"caption": "a young animated boy talks to an old animated man", "video_id": "video12057", "sen_id": 206882}, {"caption": "a young boy is talking about a snipe to an old man", "video_id": "video12057", "sen_id": 206883}, {"caption": "a boy talks to an old man about a bird he has located in the woods", "video_id": "video12057", "sen_id": 206884}, {"caption": "an old animated man is annoyed by a child standing next to a large bird", "video_id": "video12057", "sen_id": 206885}, {"caption": "a sashed boy scout asks a lot of questions as he stands between a tall bird with feathers layered in blue orange and yellow and an elderly man wearing a black suit with black bowtie as they stand together in a forest", "video_id": "video12057", "sen_id": 206886}, {"caption": "a little boy addresses numerous questions to an older man about a large bird he is standing next to", "video_id": "video12057", "sen_id": 206887}, {"caption": "a little kid pointing to a giant bird and a old man standing by a tree", "video_id": "video12057", "sen_id": 206888}, {"caption": "an old man is talking and doing some actions", "video_id": "video12057", "sen_id": 206889}, {"caption": "a young boy wearing a boy scout uniform stands next to a colorful tall bird and talks to an old man in from of him", "video_id": "video12057", "sen_id": 206890}, {"caption": "in a cartoon picture a man in black coat with square shape eye glass standing near the tree and speaking to someone", "video_id": "video12057", "sen_id": 206891}, {"caption": "there is a old man watching a tree in the forest", "video_id": "video12057", "sen_id": 206892}, {"caption": "a animated boy is speaking to an animated man in a cartoon set in the woods", "video_id": "video12057", "sen_id": 206893}, {"caption": "an old man and a young cub scout discuss a large colorful bird", "video_id": "video12057", "sen_id": 206894}, {"caption": "a cartoon shows of dolls displaying on screen old man speaking", "video_id": "video12057", "sen_id": 206895}, {"caption": "an animated cartoon is shown for the childrens on the screen", "video_id": "video12057", "sen_id": 206896}, {"caption": "in a cartoon of one boy and bird in the", "video_id": "video12057", "sen_id": 206897}, {"caption": "an animation movie in which a big birds stand behind the old man", "video_id": "video12057", "sen_id": 206898}, {"caption": "an animated old man with his back turned away from a young animated asian boy the asian boy is standing next to a huge color bird several times his size", "video_id": "video12057", "sen_id": 206899}, {"caption": "a woman hugging a man with a hunchback while singing is in the background", "video_id": "video12473", "sen_id": 206900}, {"caption": "a slow and sad song plays while while clips of the hunchback of notre dame plays", "video_id": "video12473", "sen_id": 206901}, {"caption": "a musical being played with cartoons being ran", "video_id": "video12473", "sen_id": 206902}, {"caption": "soft and heartwarming music playing over clips from disney movies", "video_id": "video12473", "sen_id": 206903}, {"caption": "a cartoon woman and disfigured man dancing together", "video_id": "video12473", "sen_id": 206904}, {"caption": "gentle and heartwarming music sung over clips from disney movies", "video_id": "video12473", "sen_id": 206905}, {"caption": "montage of disney movies hunchback of notre dame and mulan", "video_id": "video12473", "sen_id": 206906}, {"caption": "several disney clips are shown a castle deep in the forest the hunchback getting a hug and mulan being bowed by china", "video_id": "video12473", "sen_id": 206907}, {"caption": "in the cartoon video different disney characters are shown while a melody is played in the background", "video_id": "video12473", "sen_id": 206908}, {"caption": "the clip shows different scenes from famous animated movies", "video_id": "video12473", "sen_id": 206909}, {"caption": "in a cartoon axd one man and women romance", "video_id": "video12473", "sen_id": 206910}, {"caption": "birds fly and water flows in a scene in the wilderness as a man sings a song", "video_id": "video12473", "sen_id": 206911}, {"caption": "as mickey sleeps a waterfall tinkles a wooded pond and a hunchback gets a hug", "video_id": "video12473", "sen_id": 206912}, {"caption": "there is a beautiful waterfall with small rocks", "video_id": "video12473", "sen_id": 206913}, {"caption": "a scene from a disney movie is being shown", "video_id": "video12473", "sen_id": 206914}, {"caption": "a fairy land of characters from various movies", "video_id": "video12473", "sen_id": 206915}, {"caption": "a song featuring cartoon characters about heroes", "video_id": "video12473", "sen_id": 206916}, {"caption": "a young girl hugs a man who has some odd looking features", "video_id": "video12473", "sen_id": 206917}, {"caption": "animated characters are movingdancing and playing and it is a beautiful sight", "video_id": "video12473", "sen_id": 206918}, {"caption": "some scenes from some disney movies are being shown", "video_id": "video12473", "sen_id": 206919}, {"caption": "a racing car is being played while the off screen player gives commentary", "video_id": "video10836", "sen_id": 206920}, {"caption": "a red car drives recklessly down the road in a driving video game", "video_id": "video10836", "sen_id": 206921}, {"caption": "a young man is giving viewers a tutorial on how to navigate through a specific video game", "video_id": "video10836", "sen_id": 206922}, {"caption": "a red car is driving down the road hitting a wall and going through a tunnel in a video game", "video_id": "video10836", "sen_id": 206923}, {"caption": "a red video car races down a stretch of highway crashing repeatedly", "video_id": "video10836", "sen_id": 206924}, {"caption": "a man is speaking over a video game playing of are car driving through what looks like sicily", "video_id": "video10836", "sen_id": 206925}, {"caption": "a red car is going through a tunnel and repeatedly hits the side of the tunnel", "video_id": "video10836", "sen_id": 206926}, {"caption": "a red sport car almost crashed the walls while driving", "video_id": "video10836", "sen_id": 206927}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video10836", "sen_id": 206928}, {"caption": "a man plays forza crashing a red car down a two mile road", "video_id": "video10836", "sen_id": 206929}, {"caption": "a red color car moving on road fast speaking about topic car displaying on screen", "video_id": "video10836", "sen_id": 206930}, {"caption": "the red sports car drives down the highway very quickly", "video_id": "video10836", "sen_id": 206931}, {"caption": "a commentator is driving a red car down a two mile stretch of road to crash them as much as possible to see how damaged they can be", "video_id": "video10836", "sen_id": 206932}, {"caption": "video game car game is play by man makes it", "video_id": "video10836", "sen_id": 206933}, {"caption": "red car is drives so fast on road then after sometime it reach the corner of road", "video_id": "video10836", "sen_id": 206934}, {"caption": "a man is playing a racing video game", "video_id": "video10836", "sen_id": 206935}, {"caption": "a clip from a car racing game is being shown", "video_id": "video10836", "sen_id": 206936}, {"caption": "a car running fast in the video game", "video_id": "video10836", "sen_id": 206937}, {"caption": "a man narrates as he plays a driving simulator video game", "video_id": "video10836", "sen_id": 206938}, {"caption": "player playing car video game trying to get more points", "video_id": "video10836", "sen_id": 206939}, {"caption": "a woman mixing pasta together in the bowl", "video_id": "video11332", "sen_id": 206940}, {"caption": "a person tossing noodles in a glass bowl with wooden tongs", "video_id": "video11332", "sen_id": 206941}, {"caption": "a lovely young woman stirring noddles and a sauce up before plating it for a meal", "video_id": "video11332", "sen_id": 206942}, {"caption": "in a kitchen a woman in a flowered dress prepares some pasta", "video_id": "video11332", "sen_id": 206943}, {"caption": "a cook wearing a sleeveless floral dress mixes noodles in a glass bowl by using both hands holding a wooden fork and spoon", "video_id": "video11332", "sen_id": 206944}, {"caption": "a woman is explaining how she prepares her noodle dish", "video_id": "video11332", "sen_id": 206945}, {"caption": "a woman tosses noodles in a bowl to cover them in sauce", "video_id": "video11332", "sen_id": 206946}, {"caption": "a woman tosses noodles in a bowl to cover them in sauce", "video_id": "video11332", "sen_id": 206947}, {"caption": "a woman wearing an orange and yellow dress covered in flowers mixes a bowl of noodles placed on a cutting board near some scallions", "video_id": "video11332", "sen_id": 206948}, {"caption": "a woman is explaining what she is making and puting it on a plate", "video_id": "video11332", "sen_id": 206949}, {"caption": "a person tossing some noodles in a bowl with sauce", "video_id": "video11332", "sen_id": 206950}, {"caption": "a women in a kitchen mixing the noodles in a bowl", "video_id": "video11332", "sen_id": 206951}, {"caption": "a woman is mixing some noodles in the glass container with the help of wooden spoon", "video_id": "video11332", "sen_id": 206952}, {"caption": "a woman is in the kitchen stirring the noodles in a bowl", "video_id": "video11332", "sen_id": 206953}, {"caption": "a woman is coating noodles in a bowl with some bamboo kitchen utensils", "video_id": "video11332", "sen_id": 206954}, {"caption": "a lady trying to mix the food in the bowl", "video_id": "video11332", "sen_id": 206955}, {"caption": "a brown haired woman stirring noodles with her both hands with large wooden spoons in a bowl in kitchen", "video_id": "video11332", "sen_id": 206956}, {"caption": "in a kitchen a woman wearing a floral patterned dress is mixing noodles with a wooden spoon and wooden fork", "video_id": "video11332", "sen_id": 206957}, {"caption": "a person is doing cooking show and showing the ingredients", "video_id": "video11332", "sen_id": 206958}, {"caption": "someone is cooking noodles in a pot", "video_id": "video11332", "sen_id": 206959}, {"caption": "a guy is shown hugging another person then advertisements appear on screen", "video_id": "video11674", "sen_id": 206960}, {"caption": "a guy and a lady hug in the street in a just kidding video", "video_id": "video11674", "sen_id": 206961}, {"caption": "advertisements highlight a group of kid shows that are available online", "video_id": "video11674", "sen_id": 206962}, {"caption": "logos to subscribe to a facebook and twitter for media", "video_id": "video11674", "sen_id": 206963}, {"caption": "a screen shows the logos for some sister channels to go visit and watch videos on", "video_id": "video11674", "sen_id": 206964}, {"caption": "two boys are shown to be hugging then the image cuts off and an outro is played", "video_id": "video11674", "sen_id": 206965}, {"caption": "the end credits and subscription button to a prank video channel", "video_id": "video11674", "sen_id": 206966}, {"caption": "two women embrace in a public area with white stucco walls next there is a splash page for a comedy group with a link to subscribe", "video_id": "video11674", "sen_id": 206967}, {"caption": "there are some more interesting notes with graphics", "video_id": "video11674", "sen_id": 206968}, {"caption": "a laugh indusrey logo gag production", "video_id": "video11674", "sen_id": 206969}, {"caption": "an advertisement of just kidding pranks is shown with an invitation to click and subscribe", "video_id": "video11674", "sen_id": 206970}, {"caption": "clip showing to subscrible their channel and follow on facebook", "video_id": "video11674", "sen_id": 206971}, {"caption": "some logos of various things are shown", "video_id": "video11674", "sen_id": 206972}, {"caption": "you discover your other channels ok this channel", "video_id": "video11674", "sen_id": 206973}, {"caption": "the add about the just kidding and to subscribe", "video_id": "video11674", "sen_id": 206974}, {"caption": "a graphic which has promotional content of the social media of a tv show", "video_id": "video11674", "sen_id": 206975}, {"caption": "men is talking and discussing something ans subscribe", "video_id": "video11674", "sen_id": 206976}, {"caption": "discover our other channels gao s click to subscribe", "video_id": "video11674", "sen_id": 206977}, {"caption": "a boy wearing red hat with other black dress guys meeting each other body to body", "video_id": "video11674", "sen_id": 206978}, {"caption": "two people are hugging and then some logos are shown", "video_id": "video11674", "sen_id": 206979}, {"caption": "a person showing how to play a video game", "video_id": "video12931", "sen_id": 206980}, {"caption": "i video game is being played when the voice of a man and his photo appear on screen", "video_id": "video12931", "sen_id": 206981}, {"caption": "two men are heard one is heard speaking saying he is going to tell the other one a story while images of a video game are being shown", "video_id": "video12931", "sen_id": 206982}, {"caption": "a game is being shown with a man saying yo man real shit telling a story real quick", "video_id": "video12931", "sen_id": 206983}, {"caption": "video game characters running in a building and a fat mans face at the bottom of a screen", "video_id": "video12931", "sen_id": 206984}, {"caption": "a scene from an action video game with someone talking", "video_id": "video12931", "sen_id": 206985}, {"caption": "video game character running around with two guns in hands", "video_id": "video12931", "sen_id": 206986}, {"caption": "the men are running fast on the video game", "video_id": "video12931", "sen_id": 206987}, {"caption": "two video gamer playing a game that is associated with shooting", "video_id": "video12931", "sen_id": 206988}, {"caption": "a man fools others with a voice changer while playing a game", "video_id": "video12931", "sen_id": 206989}, {"caption": "two people are having a conversation while playing a video game together", "video_id": "video12931", "sen_id": 206990}, {"caption": "animated man going faster and shootin", "video_id": "video12931", "sen_id": 206991}, {"caption": "a video game is being played while funny commentary is used with captions and a guys face", "video_id": "video12931", "sen_id": 206992}, {"caption": "funny game being played by a narrator who says funny stuff", "video_id": "video12931", "sen_id": 206993}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video12931", "sen_id": 206994}, {"caption": "its a animated shooting video game", "video_id": "video12931", "sen_id": 206995}, {"caption": "a man is telling a story while playing a videogame", "video_id": "video12931", "sen_id": 206996}, {"caption": "a video game first person goes trhough a car garage and a grocery store looking to kill", "video_id": "video12931", "sen_id": 206997}, {"caption": "man is going into the shop to kill his enemies", "video_id": "video12931", "sen_id": 206998}, {"caption": "a big bald guy is playing a computer game in which he is chasing someone with gun", "video_id": "video12931", "sen_id": 206999}, {"caption": "a man is eating a banana and then praying", "video_id": "video10791", "sen_id": 207000}, {"caption": "an asian man performs various mundane duties as he prepares for his day at work", "video_id": "video10791", "sen_id": 207001}, {"caption": "pedestrians hold up umbrellas on a street with many cars a bare-chested man eats a banana a man prays and leans forward in bed a man hugs an older woman carrying a bunch of bananas on a cord and a bus passenger smiles at the man standing in the aisle", "video_id": "video10791", "sen_id": 207002}, {"caption": "a man eating praying and hugging his neighbor", "video_id": "video10791", "sen_id": 207003}, {"caption": "a asian man is hugging an old lady at a door", "video_id": "video10791", "sen_id": 207004}, {"caption": "a young asian man with no shirt quickly eats a small banana", "video_id": "video10791", "sen_id": 207005}, {"caption": "a man is seen in different moods of his life", "video_id": "video10791", "sen_id": 207006}, {"caption": "there are mnay mens walking on the street", "video_id": "video10791", "sen_id": 207007}, {"caption": "a lady is hugging his son with love and she feels very happy", "video_id": "video10791", "sen_id": 207008}, {"caption": "a boy have banana he gives banana to an old ladythe old lady is happy", "video_id": "video10791", "sen_id": 207009}, {"caption": "shirtless asian guy eating banana and playing", "video_id": "video10791", "sen_id": 207010}, {"caption": "there is a half naked man eating banana", "video_id": "video10791", "sen_id": 207011}, {"caption": "various individuals interacting with other people in an uplifting way", "video_id": "video10791", "sen_id": 207012}, {"caption": "a man is shown eating visiting a relative and riding on a bus", "video_id": "video10791", "sen_id": 207013}, {"caption": "the older woman brings bananas to the young man", "video_id": "video10791", "sen_id": 207014}, {"caption": "there is a white shirt man eating banana inside the room", "video_id": "video10791", "sen_id": 207015}, {"caption": "the man eats a banana as before he says his prayers", "video_id": "video10791", "sen_id": 207016}, {"caption": "a man eats a banana an then does a prayer", "video_id": "video10791", "sen_id": 207017}, {"caption": "day to day activities of the people are beinig showned", "video_id": "video10791", "sen_id": 207018}, {"caption": "a group of people are sitting together in something", "video_id": "video10791", "sen_id": 207019}, {"caption": "an older man sets in a room and talks and explains the movie terminator", "video_id": "video11116", "sen_id": 207020}, {"caption": "man explains about his career while images of his work are shown on camera", "video_id": "video11116", "sen_id": 207021}, {"caption": "a man with white hair and a black and gray shirt describing how to preparing yourself", "video_id": "video11116", "sen_id": 207022}, {"caption": "there is a man talking a bout a new movie", "video_id": "video11116", "sen_id": 207023}, {"caption": "the man wearing the black shirt talks as the person shows the art", "video_id": "video11116", "sen_id": 207024}, {"caption": "a director is explaining about the poster displayed in his movie", "video_id": "video11116", "sen_id": 207025}, {"caption": "there is a man talking about a new movie", "video_id": "video11116", "sen_id": 207026}, {"caption": "the old man is explaining something while different photos are shown", "video_id": "video11116", "sen_id": 207027}, {"caption": "a film cinematography professional describes how we should visualize what we want and go forward to achieve it", "video_id": "video11116", "sen_id": 207028}, {"caption": "a motivational speech from an authority figure", "video_id": "video11116", "sen_id": 207029}, {"caption": "there is a old man talking from a studio", "video_id": "video11116", "sen_id": 207030}, {"caption": "the old man is talking while showing some images on the paper", "video_id": "video11116", "sen_id": 207031}, {"caption": "a film screenplay specialist explains where we need to go over the limits and express our creativity to get the best", "video_id": "video11116", "sen_id": 207032}, {"caption": "a man with black jacket and white hair is telling about the working of body parts", "video_id": "video11116", "sen_id": 207033}, {"caption": "a movie thing is being shown in a tv", "video_id": "video11116", "sen_id": 207034}, {"caption": "a man with grey hair and a black shirt explains design", "video_id": "video11116", "sen_id": 207035}, {"caption": "a man being interviewed on own network discussing a scene in an arnold schwarzenegger movie", "video_id": "video11116", "sen_id": 207036}, {"caption": "someone is showing the animated pictures of arnold", "video_id": "video11116", "sen_id": 207037}, {"caption": "a man is giving an interview about graphics in a movie", "video_id": "video11116", "sen_id": 207038}, {"caption": "scenes from the terminator movie are playing out", "video_id": "video11116", "sen_id": 207039}, {"caption": "a group of armed people running up a flight of stairs", "video_id": "video11366", "sen_id": 207040}, {"caption": "a group of armed man charge upstairs while the blues brothers practice finger snaps", "video_id": "video11366", "sen_id": 207041}, {"caption": "several policemen are running up stairs to the top of a building and two men in black are playing a finger snapping game", "video_id": "video11366", "sen_id": 207042}, {"caption": "a scene from a class movie is shown with people storming a building", "video_id": "video11366", "sen_id": 207043}, {"caption": "a large group of people go up stairs and two men in black play music with their hands", "video_id": "video11366", "sen_id": 207044}, {"caption": "several man climb up a stairs and then two men are shown playing with their hands", "video_id": "video11366", "sen_id": 207045}, {"caption": "a bunch of men in uniform with weapons are running up the stairs and shouting", "video_id": "video11366", "sen_id": 207046}, {"caption": "people in a rush and hurry run up a flight of steps", "video_id": "video11366", "sen_id": 207047}, {"caption": "a group of going running on the stairs to the floor and two black suited wearing google and hat doing some hand symbolism", "video_id": "video11366", "sen_id": 207048}, {"caption": "people are running over the staircase two men wearing same suit with black hat and black coat", "video_id": "video11366", "sen_id": 207049}, {"caption": "they are running in steps and two person speak with action", "video_id": "video11366", "sen_id": 207050}, {"caption": "there is two black suit persons thinking", "video_id": "video11366", "sen_id": 207051}, {"caption": "two men with gang are rushed on the steps", "video_id": "video11366", "sen_id": 207052}, {"caption": "all persons running on the stairs and two men wearing suite with hats and spects doing some mannerism with hands", "video_id": "video11366", "sen_id": 207053}, {"caption": "two guys looks like the thief wearing the same black dress with the black hat", "video_id": "video11366", "sen_id": 207054}, {"caption": "many people are running upstairs and two men wearing hats are playing with their hands", "video_id": "video11366", "sen_id": 207055}, {"caption": "a group of men are running up stairs while 2 men are making hand movements", "video_id": "video11366", "sen_id": 207056}, {"caption": "two men stand together with one man holding a sign and a mob of people then run up a stairwell", "video_id": "video11366", "sen_id": 207057}, {"caption": "group of person are claimbing the stair case fastly with guns in their hands", "video_id": "video11366", "sen_id": 207058}, {"caption": "a group of people are running up a stair case", "video_id": "video11366", "sen_id": 207059}, {"caption": "monkey looking type of animal hiding in a tree", "video_id": "video10218", "sen_id": 207060}, {"caption": "a small money in a bush hiding in the leaves", "video_id": "video10218", "sen_id": 207061}, {"caption": "a gray-and-white monkey with a gray mask-like face hides next to a chain link fence covered with plants with large leaves and thick stems", "video_id": "video10218", "sen_id": 207062}, {"caption": "a monkey who is hanging in the brush", "video_id": "video10218", "sen_id": 207063}, {"caption": "a monkey is hiding in vegetation next to a fence", "video_id": "video10218", "sen_id": 207064}, {"caption": "a man is taking a video of a monkey hiding in the bushes", "video_id": "video10218", "sen_id": 207065}, {"caption": "a brown and white monkey is sitting in a tree looking around", "video_id": "video10218", "sen_id": 207066}, {"caption": "a person is outside in a fenced yard and he is filming a monkey hiding by some plants", "video_id": "video10218", "sen_id": 207067}, {"caption": "a monkey is sitting there but seems to be tangled by bushes attached to fences while a guy is approaching to help", "video_id": "video10218", "sen_id": 207068}, {"caption": "there is a monkey in a patch of green leaves next to a chain link fence", "video_id": "video10218", "sen_id": 207069}, {"caption": "there is a monkey sitting inside the plant", "video_id": "video10218", "sen_id": 207070}, {"caption": "a man talking to a monkey named torch who is hanging on a fence in foliage", "video_id": "video10218", "sen_id": 207071}, {"caption": "a small magoose sitting between trees its so tiny and looks cute", "video_id": "video10218", "sen_id": 207072}, {"caption": "a monkey inside forest on sitting on tree person speaking displaying on screen", "video_id": "video10218", "sen_id": 207073}, {"caption": "a person is showing monkey hiding under the plants", "video_id": "video10218", "sen_id": 207074}, {"caption": "a monkey named torch in a dense jungle area", "video_id": "video10218", "sen_id": 207075}, {"caption": "a monkey sitting on a tree and watching", "video_id": "video10218", "sen_id": 207076}, {"caption": "a monkey in some leaves hanging onto a chain link fence", "video_id": "video10218", "sen_id": 207077}, {"caption": "a monkey sits hidden among the leaves and branches", "video_id": "video10218", "sen_id": 207078}, {"caption": "a person is filming an animal in a tree", "video_id": "video10218", "sen_id": 207079}, {"caption": "a fox news anchor is talking to trump trump is agreeing with what a news person is reading", "video_id": "video10272", "sen_id": 207080}, {"caption": "interviewer talking about comments people made", "video_id": "video10272", "sen_id": 207081}, {"caption": "the president is being interviewed on his opinion of a subject", "video_id": "video10272", "sen_id": 207082}, {"caption": "a news reporter asks a question of a politician", "video_id": "video10272", "sen_id": 207083}, {"caption": "a man with a red tie is answering qurestions in a debate", "video_id": "video10272", "sen_id": 207084}, {"caption": "the 45th president of the us nodding his head at a podium", "video_id": "video10272", "sen_id": 207085}, {"caption": "a man in a suit is speaking while donald trump nods his head while standing on a podium", "video_id": "video10272", "sen_id": 207086}, {"caption": "a man in glasses talks to donald trump about a political matter", "video_id": "video10272", "sen_id": 207087}, {"caption": "a man is asking questions of presidential nominees in a debate", "video_id": "video10272", "sen_id": 207088}, {"caption": "an old man in glasses is talking about the mexican government", "video_id": "video10272", "sen_id": 207089}, {"caption": "the news reader is wearing a black suit and red designed tie and sitting in a really beautiful background", "video_id": "video10272", "sen_id": 207090}, {"caption": "a suit man talking in a stage show", "video_id": "video10272", "sen_id": 207091}, {"caption": "donald trump is standing at a podium while sporting his signature smug face", "video_id": "video10272", "sen_id": 207092}, {"caption": "a man is speaking in the fox news tv channel", "video_id": "video10272", "sen_id": 207093}, {"caption": "donald trump listening another man speaking about mexican drug dealing", "video_id": "video10272", "sen_id": 207094}, {"caption": "donald trump is on tv during a debate", "video_id": "video10272", "sen_id": 207095}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video10272", "sen_id": 207096}, {"caption": "a man speaking to trump during the debate", "video_id": "video10272", "sen_id": 207097}, {"caption": "a man addresses donald trump regarding immigrants from mexico", "video_id": "video10272", "sen_id": 207098}, {"caption": "a old man blue coat color dress wearing cloth and other in blue coat lifting up hand speaking discusing each other displaying on screen", "video_id": "video10272", "sen_id": 207099}, {"caption": "two young girls licking icing from a cake that a parent is holding", "video_id": "video12393", "sen_id": 207100}, {"caption": "the mom of the two little girls lets them put their face in the cake and eat it", "video_id": "video12393", "sen_id": 207101}, {"caption": "a little girl is taking a bite out of a birthday cake", "video_id": "video12393", "sen_id": 207102}, {"caption": "two siblings an infant and a two year old and their parents celebrate baby's first birthday", "video_id": "video12393", "sen_id": 207103}, {"caption": "two young children eat a cake without any utensils", "video_id": "video12393", "sen_id": 207104}, {"caption": "two young girls eat cake and get icing all over their faces", "video_id": "video12393", "sen_id": 207105}, {"caption": "a small kid is excited and eating cake happily", "video_id": "video12393", "sen_id": 207106}, {"caption": "a pair of small children are eating a large cake that is held by a man", "video_id": "video12393", "sen_id": 207107}, {"caption": "one nice baby is eating the full cake", "video_id": "video12393", "sen_id": 207108}, {"caption": "two little kids are eating a cake without their hands", "video_id": "video12393", "sen_id": 207109}, {"caption": "a person is showing baby and cute girl eating cake", "video_id": "video12393", "sen_id": 207110}, {"caption": "a girl with brown hair eating cake with a baby", "video_id": "video12393", "sen_id": 207111}, {"caption": "little kids are eating a white cake without utensils", "video_id": "video12393", "sen_id": 207112}, {"caption": "a small girl and a child licking a cake cream", "video_id": "video12393", "sen_id": 207113}, {"caption": "a girl baby eating cake without using the hand", "video_id": "video12393", "sen_id": 207114}, {"caption": "the girl blows out the birthday candles on her cake then takes a bite of it", "video_id": "video12393", "sen_id": 207115}, {"caption": "the children amazing to watching the birhday cake in their house", "video_id": "video12393", "sen_id": 207116}, {"caption": "two girls eat directly from a birthday cake without utensils", "video_id": "video12393", "sen_id": 207117}, {"caption": "a small girl and a baby stick their faces into a cake and eat it", "video_id": "video12393", "sen_id": 207118}, {"caption": "a couple of kids are sitting at a table", "video_id": "video12393", "sen_id": 207119}, {"caption": "five animated figures are standing in a line and interacting with one another", "video_id": "video11258", "sen_id": 207120}, {"caption": "five characters interact with one another as they pose for a picture", "video_id": "video11258", "sen_id": 207121}, {"caption": "a group of 5 creatures followed by a glowing pixie approaching a blue creature with a flower causing it to cry", "video_id": "video11258", "sen_id": 207122}, {"caption": "a set of cartoon images on the screen and a cartoon girl gives flower pot to the other boy and he cries loudly", "video_id": "video11258", "sen_id": 207123}, {"caption": "characters from the movie inside out", "video_id": "video11258", "sen_id": 207124}, {"caption": "characters from the movie inside out in a skit not in the movie", "video_id": "video11258", "sen_id": 207125}, {"caption": "the characters from inside out are standing in front of a black background and interacting", "video_id": "video11258", "sen_id": 207126}, {"caption": "five cartoon figures are speaking and a girl brings a flower for another figure which starts crying", "video_id": "video11258", "sen_id": 207127}, {"caption": "animated computer characters perform different kinds of actions", "video_id": "video11258", "sen_id": 207128}, {"caption": "some animated characters are showing their stuff", "video_id": "video11258", "sen_id": 207129}, {"caption": "a cartoon character with blue hair and a green dress is interacting with other characters", "video_id": "video11258", "sen_id": 207130}, {"caption": "few cartoon characters in which a girl runs with a flower pot to a boy and he cries loud seeing that", "video_id": "video11258", "sen_id": 207131}, {"caption": "animated characters with different emotions interact with one another", "video_id": "video11258", "sen_id": 207132}, {"caption": "a promotion for the movie inside out which featured a number of actors playing different emotions inside of the human body", "video_id": "video11258", "sen_id": 207133}, {"caption": "some cartoon characters are moving around an area", "video_id": "video11258", "sen_id": 207134}, {"caption": "a group of animated character are interacting with each other", "video_id": "video11258", "sen_id": 207135}, {"caption": "a thin man with large eyes leans against a short and flat-headed red man near a glowing woman greenish young lady and a spectacled heavy woman", "video_id": "video11258", "sen_id": 207136}, {"caption": "animated character is crying and tears flowing down like a water fountain", "video_id": "video11258", "sen_id": 207137}, {"caption": "various colorful people interact quite differently with one another", "video_id": "video11258", "sen_id": 207138}, {"caption": "the characters of inside out that describe emotions interact with each other", "video_id": "video11258", "sen_id": 207139}, {"caption": "a person is making a burrito or a taco of some sort", "video_id": "video11534", "sen_id": 207140}, {"caption": "someone is making fajitas by placing meat and veggies on a tortilla", "video_id": "video11534", "sen_id": 207141}, {"caption": "a closeup of a woman assembling a meat and vegatable taco", "video_id": "video11534", "sen_id": 207142}, {"caption": "a woman is assembling tacos on a black square plate", "video_id": "video11534", "sen_id": 207143}, {"caption": "on a plate someone is place steak greens tomatoes and flat bread", "video_id": "video11534", "sen_id": 207144}, {"caption": "some woman giving tips on creating salad for night dinner", "video_id": "video11534", "sen_id": 207145}, {"caption": "a man is cooking a recipe and is being shown on", "video_id": "video11534", "sen_id": 207146}, {"caption": "a tortilla with char marks is placed on a black and square tray and covered with pieces of cooked meat salad greens and sliced tomatoes", "video_id": "video11534", "sen_id": 207147}, {"caption": "an inhome chef puts together a tortilla with ingredients she has prepared", "video_id": "video11534", "sen_id": 207148}, {"caption": "a woman shows how to assemble a burrito", "video_id": "video11534", "sen_id": 207149}, {"caption": "in the kitchen there is a woman making a dish with chapatti", "video_id": "video11534", "sen_id": 207150}, {"caption": "vegetables are added on a naan", "video_id": "video11534", "sen_id": 207151}, {"caption": "a woman is filling the salads on the chappathi", "video_id": "video11534", "sen_id": 207152}, {"caption": "a woman is preparing food on a table", "video_id": "video11534", "sen_id": 207153}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11534", "sen_id": 207154}, {"caption": "there is person and he is preparing chapathi rolls", "video_id": "video11534", "sen_id": 207155}, {"caption": "a person is filling a tortilla with meat and vegetables", "video_id": "video11534", "sen_id": 207156}, {"caption": "a woman is making chapathi and placing filling vegetables over it", "video_id": "video11534", "sen_id": 207157}, {"caption": "the lady making shaverma with a chapathy and other items", "video_id": "video11534", "sen_id": 207158}, {"caption": "a person is making food on a counter top", "video_id": "video11534", "sen_id": 207159}, {"caption": "a man modeling different types of shorts and pants", "video_id": "video11246", "sen_id": 207160}, {"caption": "a guy making fun of douchebag styles", "video_id": "video11246", "sen_id": 207161}, {"caption": "a man walking by each other on a sidewalk and looking at each other", "video_id": "video11246", "sen_id": 207162}, {"caption": "a man demonstrates various rules of fashion including what to do and what not to do", "video_id": "video11246", "sen_id": 207163}, {"caption": "man and woman pass each other on the street", "video_id": "video11246", "sen_id": 207164}, {"caption": "a person in grey t shirt walking on the road side near the women in black pant", "video_id": "video11246", "sen_id": 207165}, {"caption": "a narrator gives fashion tips while showing a guy and girl to illustrate the tips", "video_id": "video11246", "sen_id": 207166}, {"caption": "a man walking by a woman who looks at his ass", "video_id": "video11246", "sen_id": 207167}, {"caption": "a man walking down the siewalk with a girl looking at him another guy walking up to the girl and the girl walking away", "video_id": "video11246", "sen_id": 207168}, {"caption": "a young man is crossed by a young woman in the pathway between the green grassland", "video_id": "video11246", "sen_id": 207169}, {"caption": "a man in shorts is walking around outside", "video_id": "video11246", "sen_id": 207170}, {"caption": "a man walking and going back", "video_id": "video11246", "sen_id": 207171}, {"caption": "a man talks about men s fashion and suggests not wearing baggy shorts", "video_id": "video11246", "sen_id": 207172}, {"caption": "a man speaking about what to do when walking in shorts", "video_id": "video11246", "sen_id": 207173}, {"caption": "a man advises young men to think about their clothes", "video_id": "video11246", "sen_id": 207174}, {"caption": "a man is walking around on a sidewalk", "video_id": "video11246", "sen_id": 207175}, {"caption": "a man is speaking while a man walks up and down a sidewalk", "video_id": "video11246", "sen_id": 207176}, {"caption": "a man walks along the path and a girl looks at him", "video_id": "video11246", "sen_id": 207177}, {"caption": "man and woman are walking on the street and talking", "video_id": "video11246", "sen_id": 207178}, {"caption": "a man makes a funny video about fashion advice", "video_id": "video11246", "sen_id": 207179}, {"caption": "woman showing ingredients she's using as part of a meal", "video_id": "video12547", "sen_id": 207180}, {"caption": "a woman going through the types and amounts of ingredients needed to make a certain dish", "video_id": "video12547", "sen_id": 207181}, {"caption": "a woman is describing ingredients that she will be using", "video_id": "video12547", "sen_id": 207182}, {"caption": "woman describing the amounts and what the ingredients are", "video_id": "video12547", "sen_id": 207183}, {"caption": "a plate containing fresh tomatoes garlic and red onion", "video_id": "video12547", "sen_id": 207184}, {"caption": "a woman shows the spices that she will add to her recipe", "video_id": "video12547", "sen_id": 207185}, {"caption": "a woman describes a variety of fruit and spice such as cinnamon poppy seeds tomatoes and a purple onion", "video_id": "video12547", "sen_id": 207186}, {"caption": "a person is showing ingredients for a dish", "video_id": "video12547", "sen_id": 207187}, {"caption": "a woman shows fresh herbs and spices that will be added to a dish and describes them in an indian language", "video_id": "video12547", "sen_id": 207188}, {"caption": "a person shows different ingredients in a white bowl and platter", "video_id": "video12547", "sen_id": 207189}, {"caption": "a woman lays out various ingredients that she will mix together", "video_id": "video12547", "sen_id": 207190}, {"caption": "a woman is listing down all the ingredients needed to make a dish", "video_id": "video12547", "sen_id": 207191}, {"caption": "a person describing food in containers on a table", "video_id": "video12547", "sen_id": 207192}, {"caption": "there is a different ingredients on a table in white plates and bowls", "video_id": "video12547", "sen_id": 207193}, {"caption": "a woman is showing individual bowls of spices and vegetables set up on a counter to be used in a recipe", "video_id": "video12547", "sen_id": 207194}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12547", "sen_id": 207195}, {"caption": "a person cooking all vegetables in small pieces in a bowl", "video_id": "video12547", "sen_id": 207196}, {"caption": "a woman that is discussing all the ingredients that she is using", "video_id": "video12547", "sen_id": 207197}, {"caption": "a woman showing how to cook a recipe with garlic poppy seeds", "video_id": "video12547", "sen_id": 207198}, {"caption": "a woman is grating a fruit into a bowl", "video_id": "video12547", "sen_id": 207199}, {"caption": "a man enters his vehicle and crashes it into a lobby", "video_id": "video11444", "sen_id": 207200}, {"caption": "a man is running away from a hotel in a car", "video_id": "video11444", "sen_id": 207201}, {"caption": "a man gets in a truck while another man comes to the driver door right before man in truck pulls off", "video_id": "video11444", "sen_id": 207202}, {"caption": "a video of an altercation of a man and an officer", "video_id": "video11444", "sen_id": 207203}, {"caption": "commentator talking about a man having a hotel issue and crashing his truck into the hotel", "video_id": "video11444", "sen_id": 207204}, {"caption": "a man driving away from a police officer", "video_id": "video11444", "sen_id": 207205}, {"caption": "a man enters a pick-up truck and then purposely crashes the truck into a building", "video_id": "video11444", "sen_id": 207206}, {"caption": "the man narrates as someone gets into the car and ignored the officer and crashes purposely", "video_id": "video11444", "sen_id": 207207}, {"caption": "a man runs away after talking to a police officer about a hotel bill", "video_id": "video11444", "sen_id": 207208}, {"caption": "a man tries to escape from a police officer he crashes into a hotel room", "video_id": "video11444", "sen_id": 207209}, {"caption": "man enters his truck and another man approaches while the truck drives away", "video_id": "video11444", "sen_id": 207210}, {"caption": "a man jumps into a truck and then smashes the truck into a building", "video_id": "video11444", "sen_id": 207211}, {"caption": "a man is getting in his car and as a police officer approached him he pulled of", "video_id": "video11444", "sen_id": 207212}, {"caption": "security footage from a hotel shows a man fleeing police and crashing his truck into the hotel", "video_id": "video11444", "sen_id": 207213}, {"caption": "a man driving a truck away from a police officer", "video_id": "video11444", "sen_id": 207214}, {"caption": "a man fleeing from a crime he did", "video_id": "video11444", "sen_id": 207215}, {"caption": "a man is telling about a car in hotel", "video_id": "video11444", "sen_id": 207216}, {"caption": "it is a security camera that caught a car going into a building", "video_id": "video11444", "sen_id": 207217}, {"caption": "a security camer shows a clip where a guy gets into his truck then drives off while a commentator explains what transpired in the clip", "video_id": "video11444", "sen_id": 207218}, {"caption": "there is a man that walks up the the truck then the truck drives off", "video_id": "video11444", "sen_id": 207219}, {"caption": "a black man in a white uniform opens a white truck and falls", "video_id": "video12269", "sen_id": 207220}, {"caption": "a view of a black man in a security uniform being getting shot", "video_id": "video12269", "sen_id": 207221}, {"caption": "a man wearing a black and white uniform goes out of a truck and gets shot by two men", "video_id": "video12269", "sen_id": 207222}, {"caption": "a armored car guard getting shot in the commission of a robbery", "video_id": "video12269", "sen_id": 207223}, {"caption": "a man slips into the back of the truck", "video_id": "video12269", "sen_id": 207224}, {"caption": "a driver of a security truck is shot and killed by two robbers as he begins unloading his truck", "video_id": "video12269", "sen_id": 207225}, {"caption": "from the final episode of six feet under the back of charles security van opens to reveal a man named keith dwayne charles getting out of a van holding a suitcase of cash only to be shot", "video_id": "video12269", "sen_id": 207226}, {"caption": "a woman singing and a man walking out of a truck", "video_id": "video12269", "sen_id": 207227}, {"caption": "a man in a white suit gets shot and his truck stolen", "video_id": "video12269", "sen_id": 207228}, {"caption": "a man in a white uniform climbs down from an armored car and is shot multiple times", "video_id": "video12269", "sen_id": 207229}, {"caption": "there is someone shooting a security in a truck", "video_id": "video12269", "sen_id": 207230}, {"caption": "charles security man slips keith dwayne charles 1968-2029", "video_id": "video12269", "sen_id": 207231}, {"caption": "a security guard dressed in uniform delivering money in a suitcase being shot at", "video_id": "video12269", "sen_id": 207232}, {"caption": "a person is taking something off the back of a church", "video_id": "video12269", "sen_id": 207233}, {"caption": "a big container one man getting down and fallen", "video_id": "video12269", "sen_id": 207234}, {"caption": "a security guard who was in charge of transporting suitcases of wealth was on his way out as he was shot and robbed afterwards", "video_id": "video12269", "sen_id": 207235}, {"caption": "a man is killed while exiting an armored vehicle by a group of criminals who steal its contents", "video_id": "video12269", "sen_id": 207236}, {"caption": "a man in an armored car is shot and his vehicle is taken over by masked men there is music playing in the background", "video_id": "video12269", "sen_id": 207237}, {"caption": "a trucks back doors swing open as a man with money comes out", "video_id": "video12269", "sen_id": 207238}, {"caption": "a white colour truck is coming very fast and a person is coming out from the truck", "video_id": "video12269", "sen_id": 207239}, {"caption": "a hand stirs simmering cubed beef with a wooden spoon and then adds cut garlic and ginger into the black pot with silver handle", "video_id": "video11820", "sen_id": 207240}, {"caption": "someone is heating some meat on the stove and adding different ingredients", "video_id": "video11820", "sen_id": 207241}, {"caption": "man putting ingredients in a pot in order to make a meal", "video_id": "video11820", "sen_id": 207242}, {"caption": "a cook is cooking beef and adding garlic and spices into the frying pan", "video_id": "video11820", "sen_id": 207243}, {"caption": "a chef demonstrates and describes a recipe he is preparing in his home", "video_id": "video11820", "sen_id": 207244}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11820", "sen_id": 207245}, {"caption": "a person stirs meat sizzling in a skillet and adds chopped vegetables to the mix", "video_id": "video11820", "sen_id": 207246}, {"caption": "a cook stirs beef in a pot and then adds garlic and ginger", "video_id": "video11820", "sen_id": 207247}, {"caption": "a pot cooking some meat and a man throwing different ingredients into the pot", "video_id": "video11820", "sen_id": 207248}, {"caption": "a man shakes a pot of beans and adds garlic and ginger", "video_id": "video11820", "sen_id": 207249}, {"caption": "a man mixing ingredients in a cooking pan", "video_id": "video11820", "sen_id": 207250}, {"caption": "a man adds some garlic and ginger to a frying pan on the stove", "video_id": "video11820", "sen_id": 207251}, {"caption": "a man is stirring beef in a pot before adding various ingredients", "video_id": "video11820", "sen_id": 207252}, {"caption": "a man cooking beef in a pan and adding various ingredients", "video_id": "video11820", "sen_id": 207253}, {"caption": "a man describing his actions as he adds some seasonings to a simmering pan of meat", "video_id": "video11820", "sen_id": 207254}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11820", "sen_id": 207255}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11820", "sen_id": 207256}, {"caption": "some guy cooking meat and adding ginger and garlic to it", "video_id": "video11820", "sen_id": 207257}, {"caption": "someone is cooking delicious curry vegetables with adding salt and chilli powder in a black pan", "video_id": "video11820", "sen_id": 207258}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11820", "sen_id": 207259}, {"caption": "a little girl is being photographed with her outfit of the day", "video_id": "video10409", "sen_id": 207260}, {"caption": "a baby named macy is showing off her yellow shirt and chevron leggings pretending to be a model", "video_id": "video10409", "sen_id": 207261}, {"caption": "a couple identifies the items worn by a toddler which were purchased at target the child is wearing white leather shoes chevron capri leggings a hair bow and a yellow shirt", "video_id": "video10409", "sen_id": 207262}, {"caption": "a little girl is being filmed while two adults describe what she is wearing as if she were a fashion model", "video_id": "video10409", "sen_id": 207263}, {"caption": "parents make it seem like their toddler is modeling clothing", "video_id": "video10409", "sen_id": 207264}, {"caption": "a woman puts her child down on the floor to walk", "video_id": "video10409", "sen_id": 207265}, {"caption": "a young kid tries to walk but could not", "video_id": "video10409", "sen_id": 207266}, {"caption": "a small girl in white shoes leggings and a yellow shirt crawling on the floor", "video_id": "video10409", "sen_id": 207267}, {"caption": "a woman playing with her child who is wearing a yellow shirt", "video_id": "video10409", "sen_id": 207268}, {"caption": "a woman is modeling a toddler in her outfit of the day", "video_id": "video10409", "sen_id": 207269}, {"caption": "there is a man playing with his baby", "video_id": "video10409", "sen_id": 207270}, {"caption": "a baby with a yellow shirt is crawling on the floor", "video_id": "video10409", "sen_id": 207271}, {"caption": "a man records her little baby girl s neon and colorful outfit", "video_id": "video10409", "sen_id": 207272}, {"caption": "man and woman describes the fashion of a small child", "video_id": "video10409", "sen_id": 207273}, {"caption": "a baby learning to walk in white shoes and two people talking about her outfit", "video_id": "video10409", "sen_id": 207274}, {"caption": "a man and woman talking about what a baby girl is wearing in a joking way", "video_id": "video10409", "sen_id": 207275}, {"caption": "a man and a woman commenting about a toddlers outfit", "video_id": "video10409", "sen_id": 207276}, {"caption": "a young toddler dances around with her mother in her kitchen", "video_id": "video10409", "sen_id": 207277}, {"caption": "a little baby in yellow dress color cloth on floor man holding baby scrawling displaying on screen", "video_id": "video10409", "sen_id": 207278}, {"caption": "a baby is doing a thing in a place", "video_id": "video10409", "sen_id": 207279}, {"caption": "in a frying pan someone is stirring some food", "video_id": "video10778", "sen_id": 207280}, {"caption": "a woman talking and showing how to make chicken marsailes", "video_id": "video10778", "sen_id": 207281}, {"caption": "a chef describes and demonstrates a recipe they are preparing in their home kitchen", "video_id": "video10778", "sen_id": 207282}, {"caption": "a pan of indian food is cooked", "video_id": "video10778", "sen_id": 207283}, {"caption": "woman is stirring noodles in a pan and frying them", "video_id": "video10778", "sen_id": 207284}, {"caption": "a chef works on a recipe by stirring ingredients in a small red skillet", "video_id": "video10778", "sen_id": 207285}, {"caption": "cooking video with what sounds like an indian woman", "video_id": "video10778", "sen_id": 207286}, {"caption": "a person stirs some greens and adds more veggies to some garam masala cooking in a skillet on the stove", "video_id": "video10778", "sen_id": 207287}, {"caption": "someone is stirring the contents of a frying pan of meat and vegetables with a wooden spoon", "video_id": "video10778", "sen_id": 207288}, {"caption": "somebody is frying up some greens in a teflon skillet", "video_id": "video10778", "sen_id": 207289}, {"caption": "an asian chef is discussing how to make some stir fry", "video_id": "video10778", "sen_id": 207290}, {"caption": "a woman is preparing some food in a kitchen", "video_id": "video10778", "sen_id": 207291}, {"caption": "a chef works on a recipe by stirring vegetables in a small skillet", "video_id": "video10778", "sen_id": 207292}, {"caption": "food is being cooked in a pan", "video_id": "video10778", "sen_id": 207293}, {"caption": "a woman is cooking food inside a red pan", "video_id": "video10778", "sen_id": 207294}, {"caption": "a person stirring a pot with a spoon", "video_id": "video10778", "sen_id": 207295}, {"caption": "a woman is stirring and adding ingredients to a pot of food", "video_id": "video10778", "sen_id": 207296}, {"caption": "a indian woman is cooking a chicken masala", "video_id": "video10778", "sen_id": 207297}, {"caption": "a woman is mixing a dish in a pan while they narrate in hindi", "video_id": "video10778", "sen_id": 207298}, {"caption": "a cook stirs an asian rice mix in a pan", "video_id": "video10778", "sen_id": 207299}, {"caption": "a woman is talking about clothes organization and how to properly fold them inside of a drawer", "video_id": "video11978", "sen_id": 207300}, {"caption": "a woman is folding her clothes and putting them away in her dresser", "video_id": "video11978", "sen_id": 207301}, {"caption": "a woman fitting her clothes into a dresser ", "video_id": "video11978", "sen_id": 207302}, {"caption": "a woman is folding her clothes and putting them away in her dresser", "video_id": "video11978", "sen_id": 207303}, {"caption": "simple storage of work out clothes a neat way to store work out clothes in a small space", "video_id": "video11978", "sen_id": 207304}, {"caption": "a woman opens drawers to place a box of neatly folded garments folds the sleeves of a sweater in a crisscross to add to other garments adds matching socks formed into oblongs and keeps jeans together", "video_id": "video11978", "sen_id": 207305}, {"caption": "a woman is talking about folding clothing while demonstrating how she folds them and places them", "video_id": "video11978", "sen_id": 207306}, {"caption": "a woman is showing how she stores her clothes in her dresser", "video_id": "video11978", "sen_id": 207307}, {"caption": "there are some drawers of industry kept for display", "video_id": "video11978", "sen_id": 207308}, {"caption": "a woman opens the drawer and puts clothes and socks jeans in drawer which are neatly folded", "video_id": "video11978", "sen_id": 207309}, {"caption": "a girl arranging clothes in wardrobe in row wise displaying on screen", "video_id": "video11978", "sen_id": 207310}, {"caption": "great organizer showing us how to organize her dressor while giving tips to viewer", "video_id": "video11978", "sen_id": 207311}, {"caption": "a woman placing some folded clothes on the drower", "video_id": "video11978", "sen_id": 207312}, {"caption": "a woman puts folded and sorted clothes into a drawer", "video_id": "video11978", "sen_id": 207313}, {"caption": "a woman is placing folded laundry into an empty drawer", "video_id": "video11978", "sen_id": 207314}, {"caption": "there is a woman packing cloths for a journey", "video_id": "video11978", "sen_id": 207315}, {"caption": "a woman carefully folds shirts and neatly arranges them in stack and rows in boxes and drawers and then moves on to her drawer of jeans", "video_id": "video11978", "sen_id": 207316}, {"caption": "a woman folding clothes and putting them in a drawer", "video_id": "video11978", "sen_id": 207317}, {"caption": "a person is folding clothes and putting it neatly in the drawer", "video_id": "video11978", "sen_id": 207318}, {"caption": "a woman is folding up her husbands clothes", "video_id": "video11978", "sen_id": 207319}, {"caption": "one man is sleeping in midair and another man shows up looking just like jesus", "video_id": "video11358", "sen_id": 207320}, {"caption": "one scene with a man in bed and another of a man who looks like a jesus painting", "video_id": "video11358", "sen_id": 207321}, {"caption": "man with long hair standing next to a photo of jesus he resembles", "video_id": "video11358", "sen_id": 207322}, {"caption": "person is sleeping at the top of a bunk bed and then a man tries to look like jesus", "video_id": "video11358", "sen_id": 207323}, {"caption": "a man who look like jesus is posing in front of a picture of jesus", "video_id": "video11358", "sen_id": 207324}, {"caption": "a man is pretending to sleep under blankets on top of a door while another with long hair looks like the picture of jesus", "video_id": "video11358", "sen_id": 207325}, {"caption": "a man is shown sleeping and another looks like jesus", "video_id": "video11358", "sen_id": 207326}, {"caption": "a person sleeping with a pillow and a blanket and then a person standing in front of a picture", "video_id": "video11358", "sen_id": 207327}, {"caption": "a man laying on a pillow in the top corner of a room", "video_id": "video11358", "sen_id": 207328}, {"caption": "the man is sleeping on a bed with a pillow in the next video a man is trying to portrait as jesus", "video_id": "video11358", "sen_id": 207329}, {"caption": "a man who looks like jesus stand next to a portrait of jesus", "video_id": "video11358", "sen_id": 207330}, {"caption": "this is a black child laying against a door frame and another photo of a man that resembles a photo of jesus", "video_id": "video11358", "sen_id": 207331}, {"caption": "a young man sleeps in a strange position in a house with yellow walls", "video_id": "video11358", "sen_id": 207332}, {"caption": "a man that looks identical to a painting of jesus is looking at the camera", "video_id": "video11358", "sen_id": 207333}, {"caption": "there is an african man sleeping and a caucasian man that looks similiar to jesus", "video_id": "video11358", "sen_id": 207334}, {"caption": "a person is speaking on the bed with pillow", "video_id": "video11358", "sen_id": 207335}, {"caption": "different shots of what seems to be a pair of roommates is shown one is asleep the other is posing", "video_id": "video11358", "sen_id": 207336}, {"caption": "a picture of a man sleeping up on a curtain rod and a guy with a beard taking a selfie", "video_id": "video11358", "sen_id": 207337}, {"caption": "a young man makes himself up like a jesus picture hanging on the wall behind him while club music plays in the background", "video_id": "video11358", "sen_id": 207338}, {"caption": "an exploration of something about a man sleeping in home", "video_id": "video11358", "sen_id": 207339}, {"caption": "there is a video game add to subscribe to", "video_id": "video12851", "sen_id": 207340}, {"caption": "a man asks people to subscribe to his channel while showing an image of a video game", "video_id": "video12851", "sen_id": 207341}, {"caption": "a big muscular man holding a large gun over his shoulder", "video_id": "video12851", "sen_id": 207342}, {"caption": "a man is talking about hoping we enjoyed his video and thanks us for watching while on the screen there is a man is soldier type uniform and weapon over his left soldier", "video_id": "video12851", "sen_id": 207343}, {"caption": "a man demonstrates the set up for a video game he is getting ready to play", "video_id": "video12851", "sen_id": 207344}, {"caption": "a large body builder is holding a weapon in his hand", "video_id": "video12851", "sen_id": 207345}, {"caption": "a screen shot of call of duty is shown on the screen while a man is talking about his videos and asking watchers to subscribe", "video_id": "video12851", "sen_id": 207346}, {"caption": "a man is talking about something you just watched", "video_id": "video12851", "sen_id": 207347}, {"caption": "an animated soldier from a game is holding a weapon on his shoulder", "video_id": "video12851", "sen_id": 207348}, {"caption": "a man is talking about a video game", "video_id": "video12851", "sen_id": 207349}, {"caption": "its a animated movie about the king squad", "video_id": "video12851", "sen_id": 207350}, {"caption": "an advertisement of an online game with the character standing with a heavy gun", "video_id": "video12851", "sen_id": 207351}, {"caption": "a well-armed man prepares for battle in a video game environment", "video_id": "video12851", "sen_id": 207352}, {"caption": "a man in a military video game is holding a gun on his shoulder", "video_id": "video12851", "sen_id": 207353}, {"caption": "player playing video game and showing lick to subscribe", "video_id": "video12851", "sen_id": 207354}, {"caption": "there is a man with powerful arms walking on the ground", "video_id": "video12851", "sen_id": 207355}, {"caption": "a man standing with a pose and with a gun", "video_id": "video12851", "sen_id": 207356}, {"caption": "man talking about a video game and subscribing to his channel", "video_id": "video12851", "sen_id": 207357}, {"caption": "this is an advertisement of knight squad and explain it", "video_id": "video12851", "sen_id": 207358}, {"caption": "a scene from a video game is being shown", "video_id": "video12851", "sen_id": 207359}, {"caption": "a dads day in with his kid in fast forward", "video_id": "video10502", "sen_id": 207360}, {"caption": "a man and a small child pick up clutter in a living room", "video_id": "video10502", "sen_id": 207361}, {"caption": "a man is interacting and taking care of his baby", "video_id": "video10502", "sen_id": 207362}, {"caption": "a man is in a living room changing a baby's diaper", "video_id": "video10502", "sen_id": 207363}, {"caption": "a father changes the diaper of his baby in a large cluttered living room", "video_id": "video10502", "sen_id": 207364}, {"caption": "man changes babies diaper and then plays with him cleans the room up", "video_id": "video10502", "sen_id": 207365}, {"caption": "a man and his toddler are cleaning up the living room in a time lapse video", "video_id": "video10502", "sen_id": 207366}, {"caption": "a speed up montage of a father taking care of his child", "video_id": "video10502", "sen_id": 207367}, {"caption": "a man is watching his small child in the livingroom", "video_id": "video10502", "sen_id": 207368}, {"caption": "a little boy and his father are hanging around a living room and cleaning up", "video_id": "video10502", "sen_id": 207369}, {"caption": "a baby is standing on furniture followed by running around getting its diaper changed and running around with its father", "video_id": "video10502", "sen_id": 207370}, {"caption": "a child is playing in a room with a man that is not wearing a shirt", "video_id": "video10502", "sen_id": 207371}, {"caption": "father and baby in living room with shirts off on fast speed video", "video_id": "video10502", "sen_id": 207372}, {"caption": "a father playing with his baby in the living room", "video_id": "video10502", "sen_id": 207373}, {"caption": "a father changes the diaper of his young son in a speeded-up video clip showing their living room", "video_id": "video10502", "sen_id": 207374}, {"caption": "a father cleans his living room while playing with his young son", "video_id": "video10502", "sen_id": 207375}, {"caption": "a dad and a baby on home the daily activities are recorded", "video_id": "video10502", "sen_id": 207376}, {"caption": "a man in shorts plays with small child in room filled with toys then begins cleaning", "video_id": "video10502", "sen_id": 207377}, {"caption": "a baby boy and his father spend the day together", "video_id": "video10502", "sen_id": 207378}, {"caption": "a half naked man baby sitting his own baby", "video_id": "video10502", "sen_id": 207379}, {"caption": "bruno mars on stage singing and dancing with his back up band and vocalists", "video_id": "video11403", "sen_id": 207380}, {"caption": "a famous singer and dancer showing off their moves", "video_id": "video11403", "sen_id": 207381}, {"caption": "pop star bruno mars performs with a backing band and they are all wearing the same red suit", "video_id": "video11403", "sen_id": 207382}, {"caption": "bruno mars sings on stage with a band behind him", "video_id": "video11403", "sen_id": 207383}, {"caption": "a man is wearing a red outfit and is on stage", "video_id": "video11403", "sen_id": 207384}, {"caption": "a group all dressed in red singing about a sexy lady", "video_id": "video11403", "sen_id": 207385}, {"caption": "bruno mars is wearing a red suit and singing into a microphone", "video_id": "video11403", "sen_id": 207386}, {"caption": "a group of men in red suits sing and dance on a stage", "video_id": "video11403", "sen_id": 207387}, {"caption": "a group of men in red suits dance and sing together on a well lit stage", "video_id": "video11403", "sen_id": 207388}, {"caption": "bruno mars singing and dancing in a red suit with backup singers", "video_id": "video11403", "sen_id": 207389}, {"caption": "a man in a red suit with his band in red also singing and dancing onstage", "video_id": "video11403", "sen_id": 207390}, {"caption": "a young man wearing a red suit sings into a microphone in front of dancing musicians who are similarly dressed on a set with vertical and horizontal theatrical lights", "video_id": "video11403", "sen_id": 207391}, {"caption": "fabulous dance is progressing on the stage by a group of dancers with red costume", "video_id": "video11403", "sen_id": 207392}, {"caption": "a celebrity singer and group are all wearing red suits and singing and dancing in front of the camera", "video_id": "video11403", "sen_id": 207393}, {"caption": "bruno mars performs music on stage with his backup dancers", "video_id": "video11403", "sen_id": 207394}, {"caption": "a band is playing a concert for their fans", "video_id": "video11403", "sen_id": 207395}, {"caption": "an african-american funk music video about a sexy lady and multiple dancers", "video_id": "video11403", "sen_id": 207396}, {"caption": "a popular celebrity and a group are dancing singing and playing guitar", "video_id": "video11403", "sen_id": 207397}, {"caption": "a man in a red suit dancing and singing on a stage", "video_id": "video11403", "sen_id": 207398}, {"caption": "disco lights sparkle off mirrors as bruno mars rocks the microphone in a red leisure suit", "video_id": "video11403", "sen_id": 207399}, {"caption": "models are walking down a runway in a dimly lit room", "video_id": "video11764", "sen_id": 207400}, {"caption": "a series of blonde female models walking down a cat walk", "video_id": "video11764", "sen_id": 207401}, {"caption": "two models walking down the runway wearing purple black and green outfits while techno music plays", "video_id": "video11764", "sen_id": 207402}, {"caption": "a female model wearing a green and black stripped dress and carrying a black bag walks down a runway while photographers take pictures", "video_id": "video11764", "sen_id": 207403}, {"caption": "women are walking down the runway isle during a fashion show", "video_id": "video11764", "sen_id": 207404}, {"caption": "women are wali g on a runway and are modelling clothing and accessories", "video_id": "video11764", "sen_id": 207405}, {"caption": "a women walking through a road", "video_id": "video11764", "sen_id": 207406}, {"caption": "models walk down a runway at a fashion show as a large crowd of people watch", "video_id": "video11764", "sen_id": 207407}, {"caption": "a model with severe features walks a runway", "video_id": "video11764", "sen_id": 207408}, {"caption": "the fashion show and the model girls for the miss univers", "video_id": "video11764", "sen_id": 207409}, {"caption": "beautiful long legged women posing on the stadium", "video_id": "video11764", "sen_id": 207410}, {"caption": "a woman is doing cat walk on a fashon show", "video_id": "video11764", "sen_id": 207411}, {"caption": "a lady walking on the stage where more peoples are there", "video_id": "video11764", "sen_id": 207412}, {"caption": "a fashion show a girl walking on the stage", "video_id": "video11764", "sen_id": 207413}, {"caption": "a woman wearing a green zebra print top is walking down a modeling runway at a show", "video_id": "video11764", "sen_id": 207414}, {"caption": "the beautiful girl in black and green dress is walking along the ramp elegantly", "video_id": "video11764", "sen_id": 207415}, {"caption": "a lady walking one by one trough the long stage", "video_id": "video11764", "sen_id": 207416}, {"caption": "a fashion show lady models were walking on the stage", "video_id": "video11764", "sen_id": 207417}, {"caption": "an very cute models walking catwalk in ramp", "video_id": "video11764", "sen_id": 207418}, {"caption": "some models are walking on a cat walk", "video_id": "video11764", "sen_id": 207419}, {"caption": "a man plays handball and demonstrates a technique", "video_id": "video11032", "sen_id": 207420}, {"caption": "a man is showing us how to play ping pong", "video_id": "video11032", "sen_id": 207421}, {"caption": "a video describing the movement of a person playing ping pong", "video_id": "video11032", "sen_id": 207422}, {"caption": "a man is playing ping pong he throws the ball in the air and hits it with his red paddle", "video_id": "video11032", "sen_id": 207423}, {"caption": "a man shows different ways to hit a ping pong ball", "video_id": "video11032", "sen_id": 207424}, {"caption": "an african man demonstrates a table tennis serving technique", "video_id": "video11032", "sen_id": 207425}, {"caption": "a man practising table tennis serves in slow motion", "video_id": "video11032", "sen_id": 207426}, {"caption": "a man in a grey shirt and black pants hitting a ping pong ball", "video_id": "video11032", "sen_id": 207427}, {"caption": "a man is making a ping pong ball curve after he hits it", "video_id": "video11032", "sen_id": 207428}, {"caption": "a male player is serving ping pong in slow motion in a gym", "video_id": "video11032", "sen_id": 207429}, {"caption": "an african american man is demonstrating how to hit trick ping pong shots", "video_id": "video11032", "sen_id": 207430}, {"caption": "two players playing table tennis and showing the ball movement slowly", "video_id": "video11032", "sen_id": 207431}, {"caption": "the video is explaining the fluid movement of the individual with the ping pong paddle in his hand", "video_id": "video11032", "sen_id": 207432}, {"caption": "a man hits a ping pong ball in slow motion", "video_id": "video11032", "sen_id": 207433}, {"caption": "a person hit the ball in a table tennis math coming from opponent", "video_id": "video11032", "sen_id": 207434}, {"caption": "in the indoor court a man is practicing service of table tennis ball", "video_id": "video11032", "sen_id": 207435}, {"caption": "an african man demonstrates and describes a ping pong trick shot", "video_id": "video11032", "sen_id": 207436}, {"caption": "a man in a gray shirt hits a ping pong ball with a paddle while discussing the movement of the ping pong ball in relation to his swing", "video_id": "video11032", "sen_id": 207437}, {"caption": "slow motion of a man play ping pong on a blue ping pong table", "video_id": "video11032", "sen_id": 207438}, {"caption": "some people are playing ping pong on a court", "video_id": "video11032", "sen_id": 207439}, {"caption": "a man in a black suit is sitting in a chair the host of a show says something is wet they roll a tape to show what they mean", "video_id": "video10084", "sen_id": 207440}, {"caption": "two men in suit coats are sitting in a studio they turn to watch a tape of a car", "video_id": "video10084", "sen_id": 207441}, {"caption": "two older aged gentlemen on a stage describing a video that's about to be watched", "video_id": "video10084", "sen_id": 207442}, {"caption": "two men discuss a lap race in front of a live audience", "video_id": "video10084", "sen_id": 207443}, {"caption": "an interview is taking place for topgearcom and they are watching a video", "video_id": "video10084", "sen_id": 207444}, {"caption": "two men discuss a car test drive in front of a large studio audience", "video_id": "video10084", "sen_id": 207445}, {"caption": "michael gambon is interviewed by the host of top gear", "video_id": "video10084", "sen_id": 207446}, {"caption": "a man in a suit and tie is interviewed by another man with a british accent", "video_id": "video10084", "sen_id": 207447}, {"caption": "two men talking to each other on topgear", "video_id": "video10084", "sen_id": 207448}, {"caption": "two men talking to each other on topgear", "video_id": "video10084", "sen_id": 207449}, {"caption": "one of the host of the show top gear interviewing a guest before playing a clip", "video_id": "video10084", "sen_id": 207450}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10084", "sen_id": 207451}, {"caption": "two men sitting discuss a video on a tv that is between them", "video_id": "video10084", "sen_id": 207452}, {"caption": "two men on a brightly lit set talk about a video they are getting ready to show", "video_id": "video10084", "sen_id": 207453}, {"caption": "two mature people are talking in a topgear tv show and watching tv", "video_id": "video10084", "sen_id": 207454}, {"caption": "two men are talking on the tv news", "video_id": "video10084", "sen_id": 207455}, {"caption": "a man with very little white hair speaks in a newsroom with a younger man who is wearing jeans", "video_id": "video10084", "sen_id": 207456}, {"caption": "a men are talking in the topgearcom and watching a tv", "video_id": "video10084", "sen_id": 207457}, {"caption": "its a conversation between two person in the tv showhe wear blue jean", "video_id": "video10084", "sen_id": 207458}, {"caption": "a couple of guys are talking to each other", "video_id": "video10084", "sen_id": 207459}, {"caption": "a young man in a kitchen is explaining that he will be coming up with favorite lamb recipes with another woman named beth soon on a cooking show", "video_id": "video10152", "sen_id": 207460}, {"caption": "a man stands in a kitchen discussing lamb recipes", "video_id": "video10152", "sen_id": 207461}, {"caption": "a man is giving an introduction for his dish he is going to make", "video_id": "video10152", "sen_id": 207462}, {"caption": "a man wearing a green shirt and standing in a kitchen talking", "video_id": "video10152", "sen_id": 207463}, {"caption": "a kid in a dark button up shirt is standing in a kitchen and talking", "video_id": "video10152", "sen_id": 207464}, {"caption": "a young man with dark hair discusses lamb recipes", "video_id": "video10152", "sen_id": 207465}, {"caption": "a man with a black shirt talking to the camera", "video_id": "video10152", "sen_id": 207466}, {"caption": "a man with an irish accent wearing a black shirt standing in a kitchen discusses lamb recipes", "video_id": "video10152", "sen_id": 207467}, {"caption": " patrick s day collaboration man talks about", "video_id": "video10152", "sen_id": 207468}, {"caption": "a man wearing a black botton up shirt and brunette hair appears explaining how he is going to team up with another person in the entertainment business to cook something amazing", "video_id": "video10152", "sen_id": 207469}, {"caption": "a young brunette man discusses teaming up with beth from entertaining to beth to come up with their favorite lamb recipe", "video_id": "video10152", "sen_id": 207470}, {"caption": "a man in black some information on receipt", "video_id": "video10152", "sen_id": 207471}, {"caption": "a young irish man stands in a kitchen and talks enthusiastically about cooking lamb", "video_id": "video10152", "sen_id": 207472}, {"caption": "a man black dress guy talking about something", "video_id": "video10152", "sen_id": 207473}, {"caption": "a cook stands in the kitchen and prepares a meal", "video_id": "video10152", "sen_id": 207474}, {"caption": "there is ablack shirt man talking from the kitchen", "video_id": "video10152", "sen_id": 207475}, {"caption": "a man wearing black color dress talking about some topic", "video_id": "video10152", "sen_id": 207476}, {"caption": "a young man talking in a kitchen talking about sharing some lamb recipes", "video_id": "video10152", "sen_id": 207477}, {"caption": "a young irish man talks about his favorite lamb recipe", "video_id": "video10152", "sen_id": 207478}, {"caption": "a young man in a black button down shirt is speaking", "video_id": "video10152", "sen_id": 207479}, {"caption": "a man and a woman have a heated discussion in the kitchen area of a home", "video_id": "video10067", "sen_id": 207480}, {"caption": "a woman and a man are standing in a kitchen talking", "video_id": "video10067", "sen_id": 207481}, {"caption": "a girl is recording a video of herself while making faces and a man is yelling in a foreign language in the background", "video_id": "video10067", "sen_id": 207482}, {"caption": "a man and woman in a kitchen having an argument", "video_id": "video10067", "sen_id": 207483}, {"caption": "a man is complaining in italian while his girlfriend shows off to the camera", "video_id": "video10067", "sen_id": 207484}, {"caption": "a woman preens while a man complains to her", "video_id": "video10067", "sen_id": 207485}, {"caption": "a man is talking to a woman something tensed", "video_id": "video10067", "sen_id": 207486}, {"caption": "a man is talking as a woman films herself playing with her hair", "video_id": "video10067", "sen_id": 207487}, {"caption": "two persons are speaking each other and getting selfie video", "video_id": "video10067", "sen_id": 207488}, {"caption": "a man complaining to a girl from her none work activities", "video_id": "video10067", "sen_id": 207489}, {"caption": "a man is shouting to his girl friend", "video_id": "video10067", "sen_id": 207490}, {"caption": "a women is looking her beauty in front of the mirror and admiring her and her husband is quarelling the women", "video_id": "video10067", "sen_id": 207491}, {"caption": "a woman is looking in the mirror posing", "video_id": "video10067", "sen_id": 207492}, {"caption": "a lady make up her hair and a guy scolding her", "video_id": "video10067", "sen_id": 207493}, {"caption": "a man is shouting with his wife in home", "video_id": "video10067", "sen_id": 207494}, {"caption": "a man arguing with a woman in a foreign language", "video_id": "video10067", "sen_id": 207495}, {"caption": "a women in purple trys to show off her hairstyle", "video_id": "video10067", "sen_id": 207496}, {"caption": "a women taking a selfie herself laughing and giving different moods a person in white angers on her", "video_id": "video10067", "sen_id": 207497}, {"caption": "women looking at camera and making funny gestures", "video_id": "video10067", "sen_id": 207498}, {"caption": "sexy brunette doing a selfie with guy in white tshirt talking in behind", "video_id": "video10067", "sen_id": 207499}, {"caption": "the voice of a man with a british accent is advertising a product", "video_id": "video11672", "sen_id": 207500}, {"caption": "a piece of hardware is being displayed next to a description of the item", "video_id": "video11672", "sen_id": 207501}, {"caption": "a man is demonstrating different types of hardware", "video_id": "video11672", "sen_id": 207502}, {"caption": "a man is off-screen talking about the features of a piece of hardware", "video_id": "video11672", "sen_id": 207503}, {"caption": "man speaks about a cooling system design and how it works", "video_id": "video11672", "sen_id": 207504}, {"caption": "a piece of metal hadware is shown here", "video_id": "video11672", "sen_id": 207505}, {"caption": "a small stainless steel cylinder is being displayed", "video_id": "video11672", "sen_id": 207506}, {"caption": "a man is talking about the cooling of vapor in a tobacco vaping rig", "video_id": "video11672", "sen_id": 207507}, {"caption": "there is a machine that is used to cool the vapor in a coil at high temperature", "video_id": "video11672", "sen_id": 207508}, {"caption": "a man is discussing and reviewing a coil piece from a vape pen", "video_id": "video11672", "sen_id": 207509}, {"caption": "a man talks about and reviews a coil piece of a vape", "video_id": "video11672", "sen_id": 207510}, {"caption": "a man describes a new piece of computer hardware that has been developed", "video_id": "video11672", "sen_id": 207511}, {"caption": "a person showing us about the product of upper hardware", "video_id": "video11672", "sen_id": 207512}, {"caption": "somebody talking about some kind of accessory for vaping", "video_id": "video11672", "sen_id": 207513}, {"caption": "a scientist talks about a cooling product that he has developed", "video_id": "video11672", "sen_id": 207514}, {"caption": "a man holds a vaporizer over an orange mat and explains how to operate the upper hardware", "video_id": "video11672", "sen_id": 207515}, {"caption": "a person is explaining about a product which is called as upper hardware", "video_id": "video11672", "sen_id": 207516}, {"caption": "a picture of stainless steel logo is shown in this video", "video_id": "video11672", "sen_id": 207517}, {"caption": "a man explains the properties of a metal piece", "video_id": "video11672", "sen_id": 207518}, {"caption": "a weird small device is being shown off on tv", "video_id": "video11672", "sen_id": 207519}, {"caption": "a man in a brown shirt plays the drums while others dance", "video_id": "video11049", "sen_id": 207520}, {"caption": "a group of men are playing in a band together", "video_id": "video11049", "sen_id": 207521}, {"caption": "a man with blonde hair is wearing a khaki suit and singing", "video_id": "video11049", "sen_id": 207522}, {"caption": "a band playing music with a drummer a guitarist and several singers", "video_id": "video11049", "sen_id": 207523}, {"caption": "the rock band is in what looks like a sewer system playing their song and dancing around", "video_id": "video11049", "sen_id": 207524}, {"caption": "a band is playing instruments and one is singing and in the end", "video_id": "video11049", "sen_id": 207525}, {"caption": "a group of men in a band team are having a rehearsal in a room", "video_id": "video11049", "sen_id": 207526}, {"caption": "a tshirt man playing jazz for a song", "video_id": "video11049", "sen_id": 207527}, {"caption": "a man playing gittar and sining a song", "video_id": "video11049", "sen_id": 207528}, {"caption": "men are singing and playing instruments inside", "video_id": "video11049", "sen_id": 207529}, {"caption": "a band is performing with a drummer a singer and several guitar players", "video_id": "video11049", "sen_id": 207530}, {"caption": "a band sings plays instruments and dances in a warehouse environment in front of a large circular grate", "video_id": "video11049", "sen_id": 207531}, {"caption": "there are many boys playing musical intruments for a big concert", "video_id": "video11049", "sen_id": 207532}, {"caption": "a band is singing and performing a song in a rustic setting", "video_id": "video11049", "sen_id": 207533}, {"caption": "linkin park sings in the end while playing various instruments", "video_id": "video11049", "sen_id": 207534}, {"caption": "all persons are singing and dancing in a show", "video_id": "video11049", "sen_id": 207535}, {"caption": "a group of young men performing a song using an instrument", "video_id": "video11049", "sen_id": 207536}, {"caption": "this is a video for in the end by linkin park", "video_id": "video11049", "sen_id": 207537}, {"caption": "a band plays rock music in a sci-fi looking space", "video_id": "video11049", "sen_id": 207538}, {"caption": "bunch of guys singing and dancing playing drums and guitar", "video_id": "video11049", "sen_id": 207539}, {"caption": "a person in a blue shirt is standing and talking", "video_id": "video11145", "sen_id": 207540}, {"caption": "a newscaster is describing a story about tennessee walking horse shows", "video_id": "video11145", "sen_id": 207541}, {"caption": "a man in a cream blazer and tie speaks in front of the channel 5 news", "video_id": "video11145", "sen_id": 207542}, {"caption": "there is man in a beige suit talking", "video_id": "video11145", "sen_id": 207543}, {"caption": "a news anchorman is reporting a news story while the station name is in the background", "video_id": "video11145", "sen_id": 207544}, {"caption": "a newscaster explains the dilemma of people facing the usda", "video_id": "video11145", "sen_id": 207545}, {"caption": "a newscaster in glasses and a grey suit is talking", "video_id": "video11145", "sen_id": 207546}, {"caption": "news readers are reading their headline s and news of the days in their channels", "video_id": "video11145", "sen_id": 207547}, {"caption": "a news anchor in a tan sports jacket addresses the camera on behalf of news channel 5", "video_id": "video11145", "sen_id": 207548}, {"caption": "a man reading the news", "video_id": "video11145", "sen_id": 207549}, {"caption": "a news reporter named jason lamb talks about shows in tennese", "video_id": "video11145", "sen_id": 207550}, {"caption": "a news anchor in a grey suit stands in the news room", "video_id": "video11145", "sen_id": 207551}, {"caption": "a man with glasses is speaking about something", "video_id": "video11145", "sen_id": 207552}, {"caption": "there is a suit man reading a news from the studio", "video_id": "video11145", "sen_id": 207553}, {"caption": "a man wearing greay color dress talking", "video_id": "video11145", "sen_id": 207554}, {"caption": "walking horse inspections one man talks about it", "video_id": "video11145", "sen_id": 207555}, {"caption": "a man in blue shirt color wearing dress sitting and speaking news chanel and still images displaying on screen", "video_id": "video11145", "sen_id": 207556}, {"caption": " wearing eyeglasses and a light-gray suit stands and speaks in front of a brown panel on the wall which identifies the program and what it offers", "video_id": "video11145", "sen_id": 207557}, {"caption": "a local news anchor delivers a story about tennessee walking horse shows", "video_id": "video11145", "sen_id": 207558}, {"caption": "a guy with cream colour dress is reading a news", "video_id": "video11145", "sen_id": 207559}, {"caption": "beyonce daning to her music video on a hotel balcony", "video_id": "video10866", "sen_id": 207560}, {"caption": "beyonce is on a balcony clapping her hands above her head and dancing", "video_id": "video10866", "sen_id": 207561}, {"caption": "a woman dances on her balcony to an empowering song", "video_id": "video10866", "sen_id": 207562}, {"caption": "a woman performs erratic exercise moves on a balcony", "video_id": "video10866", "sen_id": 207563}, {"caption": "a woman wearing a sweatshirt and no pants dancing on her balcony", "video_id": "video10866", "sen_id": 207564}, {"caption": "there is a woman dancing lonely on the floor", "video_id": "video10866", "sen_id": 207565}, {"caption": "a young woman in a long black sweater and underwear performs simple dance moves on a balcony", "video_id": "video10866", "sen_id": 207566}, {"caption": "a lady dancing away happily to a wonderful reggae tune in her apartment gallery", "video_id": "video10866", "sen_id": 207567}, {"caption": "a woman in black and white is showing some dance steps", "video_id": "video10866", "sen_id": 207568}, {"caption": "aerobic exercises using music - an easy way to sweat out", "video_id": "video10866", "sen_id": 207569}, {"caption": "a girl dancing with t shirt and it is black color", "video_id": "video10866", "sen_id": 207570}, {"caption": "a woman is dancing on a balcony porch while music plays", "video_id": "video10866", "sen_id": 207571}, {"caption": "a woman in a black sweatshirt is dancing on a balcony overlooking a city", "video_id": "video10866", "sen_id": 207572}, {"caption": "girl with a black shirt and black knee pads dancing on a balcony", "video_id": "video10866", "sen_id": 207573}, {"caption": "machines are moving in high speed and the pictures are also going in high speed", "video_id": "video10866", "sen_id": 207574}, {"caption": "beyonce is singing and dancing outside on a balcony", "video_id": "video10866", "sen_id": 207575}, {"caption": "a heavy set african woman sings and dances on a hotel balcony", "video_id": "video10866", "sen_id": 207576}, {"caption": "a girl dances with craziness on the coridor for the album", "video_id": "video10866", "sen_id": 207577}, {"caption": "a woman dances outside on a balcony in a black shirt", "video_id": "video10866", "sen_id": 207578}, {"caption": " in a sweatshirt without pants practices dance moves on a balcony", "video_id": "video10866", "sen_id": 207579}, {"caption": "a rugby player is well tackled to the ground by an opponent after fielding a kick a rugby player is tackled hard to the ground by an opponent after catching the ball a rugby player tackles an opponent hard after he catches the ball", "video_id": "video11870", "sen_id": 207580}, {"caption": "compilation of hit impacts and injuries in sport's games", "video_id": "video11870", "sen_id": 207581}, {"caption": "two different rugby injuries where players ran into other players resulting in a collision", "video_id": "video11870", "sen_id": 207582}, {"caption": "a group of beaten a bloody me participate in rugby matches", "video_id": "video11870", "sen_id": 207583}, {"caption": "in a rugby match a player is hit violently by an opponent as he catches the ball", "video_id": "video11870", "sen_id": 207584}, {"caption": "two people get injured in a live football match", "video_id": "video11870", "sen_id": 207585}, {"caption": "a two teams are playing rugby on ground", "video_id": "video11870", "sen_id": 207586}, {"caption": "rugby players got injury when playing game so interestingly", "video_id": "video11870", "sen_id": 207587}, {"caption": "a soccer player bleeds from his face because he bumped heads", "video_id": "video11870", "sen_id": 207588}, {"caption": "a player got injured while playing", "video_id": "video11870", "sen_id": 207589}, {"caption": "rugby player running hard but opponent team catch him easily", "video_id": "video11870", "sen_id": 207590}, {"caption": "two teams are playing football on ground", "video_id": "video11870", "sen_id": 207591}, {"caption": "two men are hit and injured during a rugby game", "video_id": "video11870", "sen_id": 207592}, {"caption": "a soccer player is bleeding after hitting his head", "video_id": "video11870", "sen_id": 207593}, {"caption": "butch of rugby players getting hurt in the game", "video_id": "video11870", "sen_id": 207594}, {"caption": "there is someone playing rugby with full power", "video_id": "video11870", "sen_id": 207595}, {"caption": "rug bee is a famous game we all have played it at least once in our life time and more or less injured ourselves a little", "video_id": "video11870", "sen_id": 207596}, {"caption": "grown men playing rugby perform hard hits during a game in a large stadium", "video_id": "video11870", "sen_id": 207597}, {"caption": "soccer players crashing into each other while playing a match", "video_id": "video11870", "sen_id": 207598}, {"caption": "some people are playing rugby on a field", "video_id": "video11870", "sen_id": 207599}, {"caption": "a man in a brown suit holds a snow globe as he talks to a woman", "video_id": "video12886", "sen_id": 207600}, {"caption": "a man in a suit is questioning the basis of a show", "video_id": "video12886", "sen_id": 207601}, {"caption": "a young man holds a snow globe while he is talking to a young woman", "video_id": "video12886", "sen_id": 207602}, {"caption": "the show 30 rock pretends to make a self-referential show about 30 rock", "video_id": "video12886", "sen_id": 207603}, {"caption": "a girl talks about a famous comedic television show that has been cancelled", "video_id": "video12886", "sen_id": 207604}, {"caption": "a man looks into a snow globe that has a small statue inside", "video_id": "video12886", "sen_id": 207605}, {"caption": "a man in suit is holding a showpiece and talking to a woman", "video_id": "video12886", "sen_id": 207606}, {"caption": "a boy waiting with a gift and her girl friend came sat with him", "video_id": "video12886", "sen_id": 207607}, {"caption": "a man holding a snowglobe while sitting at a desk talking to woman", "video_id": "video12886", "sen_id": 207608}, {"caption": "a man holding a snow globe while talking to a woman", "video_id": "video12886", "sen_id": 207609}, {"caption": "a man is holding a snow globe while at the table with a woman", "video_id": "video12886", "sen_id": 207610}, {"caption": "a movie preview with a man holding a snow globe and asking a woman about a show being filmed there", "video_id": "video12886", "sen_id": 207611}, {"caption": "jack mcbrayer holds a snowglobe and asks a woman a question", "video_id": "video12886", "sen_id": 207612}, {"caption": "a silly looking man in a brown suit holding a blue snow globe", "video_id": "video12886", "sen_id": 207613}, {"caption": "a person speaking to a women with a class thing in his hand", "video_id": "video12886", "sen_id": 207614}, {"caption": "man holding a snow globe talking to a woman with glasses about a show and what it s about", "video_id": "video12886", "sen_id": 207615}, {"caption": " holding a snow globe is talking to an actress during a part from a movie", "video_id": "video12886", "sen_id": 207616}, {"caption": "a man is holding a small globe in his hand", "video_id": "video12886", "sen_id": 207617}, {"caption": "a man holds a blue ball souvenir and talks with a woman", "video_id": "video12886", "sen_id": 207618}, {"caption": "a person is holding a blue snow globe", "video_id": "video12886", "sen_id": 207619}, {"caption": "a person is singing a song while a group of people dance in unison", "video_id": "video12963", "sen_id": 207620}, {"caption": "a group of guys are singing and dancing for their music video", "video_id": "video12963", "sen_id": 207621}, {"caption": "a group of dancers are dancing in a public park", "video_id": "video12963", "sen_id": 207622}, {"caption": "people are on their motorcycles down the street", "video_id": "video12963", "sen_id": 207623}, {"caption": "a group of young men dance in a city park", "video_id": "video12963", "sen_id": 207624}, {"caption": "singers with headsets singing into microphones groups of people dancing in a park while two people ride on motocycle", "video_id": "video12963", "sen_id": 207625}, {"caption": "young people are dancing while there is a man and a woman singing into microphones", "video_id": "video12963", "sen_id": 207626}, {"caption": "a group of men are dancing together in the street", "video_id": "video12963", "sen_id": 207627}, {"caption": "a group of boys doing break dancing and a man and a woman singing into microphones", "video_id": "video12963", "sen_id": 207628}, {"caption": "two people sing in a recording sudio and other dance outdoors in a music video", "video_id": "video12963", "sen_id": 207629}, {"caption": "a music video is performing different dancing and singing", "video_id": "video12963", "sen_id": 207630}, {"caption": "a man and woman are singing followed by a couple riding a motorcycle people dancing and then the singers again", "video_id": "video12963", "sen_id": 207631}, {"caption": "a music group singing and dancing in the park", "video_id": "video12963", "sen_id": 207632}, {"caption": "a music video of men singing and dancing outside", "video_id": "video12963", "sen_id": 207633}, {"caption": "an indian pop singer singing both in the studio and and in park", "video_id": "video12963", "sen_id": 207634}, {"caption": "a group of men and woman dancing in the street", "video_id": "video12963", "sen_id": 207635}, {"caption": "people recording a song and choreographed dancing to music", "video_id": "video12963", "sen_id": 207636}, {"caption": "many people are on the street and they are having nice time", "video_id": "video12963", "sen_id": 207637}, {"caption": "people are performing a song and music video", "video_id": "video12963", "sen_id": 207638}, {"caption": "an indian man performs a music video with lady back up dancers", "video_id": "video12963", "sen_id": 207639}, {"caption": "a man talking on fox & friends about critics", "video_id": "video10704", "sen_id": 207640}, {"caption": "man in black suit sitting on a stage describing politics and his thoughts", "video_id": "video10704", "sen_id": 207641}, {"caption": "a man arguing on the news about recent politics", "video_id": "video10704", "sen_id": 207642}, {"caption": "a man in a suit and tie is giving his opinion on a tv show", "video_id": "video10704", "sen_id": 207643}, {"caption": "a man with a long face wearing a dark jacket and striped tie answers a question on a talk show while sitting in front of a blue screen with large white letters", "video_id": "video10704", "sen_id": 207644}, {"caption": "a man on an editorial news program speculates about the intentions of a newsweek article's author", "video_id": "video10704", "sen_id": 207645}, {"caption": "a political commentator discusses his opinion on a tv news show", "video_id": "video10704", "sen_id": 207646}, {"caption": "a man on the television is being interviewed about politics", "video_id": "video10704", "sen_id": 207647}, {"caption": "an expert on an issue discusses a news related issue", "video_id": "video10704", "sen_id": 207648}, {"caption": "a man in a black suit jacket sits in front of a screen while talking to another person", "video_id": "video10704", "sen_id": 207649}, {"caption": "a man with a suite and tie giving opinions on other peoples opinions on foreign policy", "video_id": "video10704", "sen_id": 207650}, {"caption": "a person addressing the news channels and calling for critics", "video_id": "video10704", "sen_id": 207651}, {"caption": "a newscaster talking about current political situations", "video_id": "video10704", "sen_id": 207652}, {"caption": "a man talking about politics in television", "video_id": "video10704", "sen_id": 207653}, {"caption": "a man on the news is talking to some people", "video_id": "video10704", "sen_id": 207654}, {"caption": "a news anchor speaks on those demonizing obama", "video_id": "video10704", "sen_id": 207655}, {"caption": "few gentle men speaking on the tv news channel about the critics", "video_id": "video10704", "sen_id": 207656}, {"caption": "some is is talking about the mood of the country in a news channel", "video_id": "video10704", "sen_id": 207657}, {"caption": "with a blue-and-white striped tie on a commentator tries to defend someone s opinion", "video_id": "video10704", "sen_id": 207658}, {"caption": "a man with a black jacket is talking on tv", "video_id": "video10704", "sen_id": 207659}, {"caption": "photos of different things happening on mars are being described", "video_id": "video11651", "sen_id": 207660}, {"caption": "a woman describes pictures taken of landscape on another planet", "video_id": "video11651", "sen_id": 207661}, {"caption": "a large hill with other hills surrounding it", "video_id": "video11651", "sen_id": 207662}, {"caption": "youtube show discusses pictures of mars", "video_id": "video11651", "sen_id": 207663}, {"caption": "large ice caps covering a large mountain range on a computer screen", "video_id": "video11651", "sen_id": 207664}, {"caption": "a woman is speaking followed by pictures of proof water on mars", "video_id": "video11651", "sen_id": 207665}, {"caption": "a man and woman is talking about mars", "video_id": "video11651", "sen_id": 207666}, {"caption": "a young women reading the news in new york times", "video_id": "video11651", "sen_id": 207667}, {"caption": "there is a women telling new about weather", "video_id": "video11651", "sen_id": 207668}, {"caption": "in a tv news channel a loose hair styled girl news reader is reading the new york times news with photo stills", "video_id": "video11651", "sen_id": 207669}, {"caption": "a news reporter woman is showing the pictures as proof of water exists in mars", "video_id": "video11651", "sen_id": 207670}, {"caption": "the news reader is wearing a dark blue sleeveless dress and sitting in a really beautiful background", "video_id": "video11651", "sen_id": 207671}, {"caption": "there is a women and she is readin news", "video_id": "video11651", "sen_id": 207672}, {"caption": "a woman is talking something about a picture displaying on screen", "video_id": "video11651", "sen_id": 207673}, {"caption": "a woman is talking about a picture that shows water on mars", "video_id": "video11651", "sen_id": 207674}, {"caption": "a boy is wear white colths to protect himself from cold and some people skating on snow mountain", "video_id": "video11651", "sen_id": 207675}, {"caption": "the possibility of water on mars is talked about by a newscaster", "video_id": "video11651", "sen_id": 207676}, {"caption": "a news reporter describes a set of pictures taken by the mars rover", "video_id": "video11651", "sen_id": 207677}, {"caption": "a girl reading the news about the mountain turks in the new york times", "video_id": "video11651", "sen_id": 207678}, {"caption": "a scene of the moon is being shown", "video_id": "video11651", "sen_id": 207679}, {"caption": "there is an older man laughing while a baseball game is playing", "video_id": "video11500", "sen_id": 207680}, {"caption": "an outfielder makes a catch by falling over a wall", "video_id": "video11500", "sen_id": 207681}, {"caption": "a video is being shown of baseball and its players fun moments bloopers", "video_id": "video11500", "sen_id": 207682}, {"caption": "a baseball player catches a fly ball and falls over the fence", "video_id": "video11500", "sen_id": 207683}, {"caption": "a man is shown catching a baseball while upbeat music plays", "video_id": "video11500", "sen_id": 207684}, {"caption": "a group of men playing baseball and making great catches", "video_id": "video11500", "sen_id": 207685}, {"caption": "people are playing baseball with large crowd watching the game", "video_id": "video11500", "sen_id": 207686}, {"caption": "a hit is caught by outfielder who jumps over fence to stop home run hit", "video_id": "video11500", "sen_id": 207687}, {"caption": "an old man in blue cap and wearing spects is laughing", "video_id": "video11500", "sen_id": 207688}, {"caption": "a man laughs with people then players play on the field and a player falls over a wall after catching a ball", "video_id": "video11500", "sen_id": 207689}, {"caption": "there is a man trying to catch in a baseball match", "video_id": "video11500", "sen_id": 207690}, {"caption": "a very good catch by a professional baseball player", "video_id": "video11500", "sen_id": 207691}, {"caption": "baseball player running and catching the ball", "video_id": "video11500", "sen_id": 207692}, {"caption": "an old man wearing a blue hat laughs at the stadium", "video_id": "video11500", "sen_id": 207693}, {"caption": "a baseball player is falling over a wall", "video_id": "video11500", "sen_id": 207694}, {"caption": "there is someone playing baseball with big audience", "video_id": "video11500", "sen_id": 207695}, {"caption": "players can playing baseball very interesting to watch", "video_id": "video11500", "sen_id": 207696}, {"caption": "baseball player takes a spectacular catch", "video_id": "video11500", "sen_id": 207697}, {"caption": "baseball player catches a baseball and then falls", "video_id": "video11500", "sen_id": 207698}, {"caption": "some baseball players are doing various things", "video_id": "video11500", "sen_id": 207699}, {"caption": "a man is fishing in a green shirt and a brown hat", "video_id": "video12189", "sen_id": 207700}, {"caption": "a man fishing on a lake between trees", "video_id": "video12189", "sen_id": 207701}, {"caption": "a man with a light green shirt and visor reels in a big fish", "video_id": "video12189", "sen_id": 207702}, {"caption": "a fisherman wearing a hat on a boat wrestles with his line as it is being pulled", "video_id": "video12189", "sen_id": 207703}, {"caption": "a man in a tan visor fishes in a small muddy river", "video_id": "video12189", "sen_id": 207704}, {"caption": "a man is appearing to be realing in a big fish", "video_id": "video12189", "sen_id": 207705}, {"caption": "a man stands near a river with a fishing pole", "video_id": "video12189", "sen_id": 207706}, {"caption": "a man is catching a fish out on a calm lake area", "video_id": "video12189", "sen_id": 207707}, {"caption": "a man wearing khaki is fishing in a river", "video_id": "video12189", "sen_id": 207708}, {"caption": "a man in a white shirt and white hat is fishing", "video_id": "video12189", "sen_id": 207709}, {"caption": "a fisherman starts to reel in a fish he is catching", "video_id": "video12189", "sen_id": 207710}, {"caption": "a man in green shirt catching the fish through hids net", "video_id": "video12189", "sen_id": 207711}, {"caption": "a man wearing hat is fishing with fishing hook", "video_id": "video12189", "sen_id": 207712}, {"caption": "a man trying to catch the fish in the river", "video_id": "video12189", "sen_id": 207713}, {"caption": "a man in a green shirt with an australian accent is fishing", "video_id": "video12189", "sen_id": 207714}, {"caption": "a man is fishing in a green shirt", "video_id": "video12189", "sen_id": 207715}, {"caption": "there is a man in green shirt fishing from a boat", "video_id": "video12189", "sen_id": 207716}, {"caption": "a man on a river pulls on his fishing rod to bring in a fish caught on the line", "video_id": "video12189", "sen_id": 207717}, {"caption": "on the river fishing a fisherman is reeling in his catch on his fishing pole", "video_id": "video12189", "sen_id": 207718}, {"caption": "a person is using a long fishing pole", "video_id": "video12189", "sen_id": 207719}, {"caption": "men dressed as women strut and pose in the bunk area of a jail", "video_id": "video10653", "sen_id": 207720}, {"caption": "two men are walking through the open space of a dorm wearing white dresses", "video_id": "video10653", "sen_id": 207721}, {"caption": "two men are dressed as women displaying their walking skills in a packed bedroom", "video_id": "video10653", "sen_id": 207722}, {"caption": "men walk around in women's clothing", "video_id": "video10653", "sen_id": 207723}, {"caption": "a transgendered man struts through prison while other men stare", "video_id": "video10653", "sen_id": 207724}, {"caption": "two men dressed as women doing a fashion show in a prison", "video_id": "video10653", "sen_id": 207725}, {"caption": "a black girl and asian girl in white dresses dancing", "video_id": "video10653", "sen_id": 207726}, {"caption": "two men are dancing in drag while one of the dancers narrates", "video_id": "video10653", "sen_id": 207727}, {"caption": "two girls in white dresses dancing up and down the aisle", "video_id": "video10653", "sen_id": 207728}, {"caption": "a woman wearing a short white halter dress sashays down an aisle with a woman wearing a strapless mini-dress between rows of metal bunk beds while others watch", "video_id": "video10653", "sen_id": 207729}, {"caption": "men dressed as women in a jail walking in between bunk beds modeling their outfits", "video_id": "video10653", "sen_id": 207730}, {"caption": "a couple of men dressed as women in a prison briefly explain how they feel about being able to dress like women", "video_id": "video10653", "sen_id": 207731}, {"caption": "in a hostel or some hospitals two gays are ramp walking in", "video_id": "video10653", "sen_id": 207732}, {"caption": "men and women doing fashion show wearing white dresses", "video_id": "video10653", "sen_id": 207733}, {"caption": "two people in white dresses walk up to a camera", "video_id": "video10653", "sen_id": 207734}, {"caption": "men are in prison and are wearing dresses walking", "video_id": "video10653", "sen_id": 207735}, {"caption": "there are women wearing white dress and doing cat walk in a room", "video_id": "video10653", "sen_id": 207736}, {"caption": "two women model next to a lot of bunk beds", "video_id": "video10653", "sen_id": 207737}, {"caption": "a boy and girl in white dresses inside beds hotel room waving hands dancing person beside watching displaying on screen", "video_id": "video10653", "sen_id": 207738}, {"caption": "two women are walking around a barracks", "video_id": "video10653", "sen_id": 207739}, {"caption": "a man standing next to a boy holds a louisville slugger baseball bat and explains that he is going to cut it open to see what is inside", "video_id": "video12947", "sen_id": 207740}, {"caption": "a man with a boy talks about cutting open a baseball bat", "video_id": "video12947", "sen_id": 207741}, {"caption": "a man is about to show what is inside of a real baseball bat", "video_id": "video12947", "sen_id": 207742}, {"caption": "a man and his child prepared to cut open a baseball bat", "video_id": "video12947", "sen_id": 207743}, {"caption": "a boy in a pink shirt standing next to a man holding a wooden baseball bat", "video_id": "video12947", "sen_id": 207744}, {"caption": "a man with a pink shirt holding a baseball bat", "video_id": "video12947", "sen_id": 207745}, {"caption": "a man holding a baseball bat and a boy wearing a cap stand at an entryway between a brick wall and a chain-link fence near a playing field bordered by trees", "video_id": "video12947", "sen_id": 207746}, {"caption": "a man holding up a wooden bat to the camera", "video_id": "video12947", "sen_id": 207747}, {"caption": "a man with a baseball bat and a small boy with a cap telling about the baseball bat and how to play", "video_id": "video12947", "sen_id": 207748}, {"caption": "there is a tshirt man with his student", "video_id": "video12947", "sen_id": 207749}, {"caption": "dad and his son planned to play the base ball he shows the bat infront of the camera", "video_id": "video12947", "sen_id": 207750}, {"caption": "a boy with bat in hand and small boy beside standing holding bat and explaning displaying on screen", "video_id": "video12947", "sen_id": 207751}, {"caption": "a man in pink shirt holding a baseball is with a kid with white cap", "video_id": "video12947", "sen_id": 207752}, {"caption": "there is tshirt man talking with a base ball bat", "video_id": "video12947", "sen_id": 207753}, {"caption": "a man is holding a baseball bat standing next to a fence and a boy in a hat", "video_id": "video12947", "sen_id": 207754}, {"caption": "a man and boy standing with a wooden base ball bat and talking", "video_id": "video12947", "sen_id": 207755}, {"caption": "a man cuts a baseball bat in two", "video_id": "video12947", "sen_id": 207756}, {"caption": "a person and kid are speaking about the base ball stick", "video_id": "video12947", "sen_id": 207757}, {"caption": "there is a man and a small child standing inside a fence a man in a pink and grey shirt is talking about a baseball bat", "video_id": "video12947", "sen_id": 207758}, {"caption": "baseball bat explanined by father and son watching", "video_id": "video12947", "sen_id": 207759}, {"caption": "a process is filmed it involves making little pieces", "video_id": "video10692", "sen_id": 207760}, {"caption": "an artist creating a masterpiece using little tweasers", "video_id": "video10692", "sen_id": 207761}, {"caption": "there is a pair of hands cutting and crafting small pieces of what appears to be plastic", "video_id": "video10692", "sen_id": 207762}, {"caption": "two hands manipulate small materials by rolling and cutting them", "video_id": "video10692", "sen_id": 207763}, {"caption": "a person uses small instruments to work on a craft project", "video_id": "video10692", "sen_id": 207764}, {"caption": "a person uses small tools to work on an minature arts project", "video_id": "video10692", "sen_id": 207765}, {"caption": "a hand is separating little pieces of plastic on a white table", "video_id": "video10692", "sen_id": 207766}, {"caption": "a pair of hands is rolling and cutting small pieces of some white substance into thin short sticks", "video_id": "video10692", "sen_id": 207767}, {"caption": "some small objects are being made by someone with nail and scissors", "video_id": "video10692", "sen_id": 207768}, {"caption": "the person cuts the parts with scisors and places them on the table", "video_id": "video10692", "sen_id": 207769}, {"caption": "a tool is used to smooth out tiny peices of decoration for a little craft creature", "video_id": "video10692", "sen_id": 207770}, {"caption": "a rafter is assembling figures out of modeling clay", "video_id": "video10692", "sen_id": 207771}, {"caption": "very small nail like objects are made using pin and scissors", "video_id": "video10692", "sen_id": 207772}, {"caption": "a woman with a needle pressing against a small paper object", "video_id": "video10692", "sen_id": 207773}, {"caption": "person is making an experiment big scissors and other tools", "video_id": "video10692", "sen_id": 207774}, {"caption": "a person is holding a tool on a thing", "video_id": "video10692", "sen_id": 207775}, {"caption": "someone is making tiny sharp paper pieces using scissors in white board", "video_id": "video10692", "sen_id": 207776}, {"caption": "a person cutting up a white material for a small project", "video_id": "video10692", "sen_id": 207777}, {"caption": "a girl doing some craft work with hands holding paper showing displaying on screen", "video_id": "video10692", "sen_id": 207778}, {"caption": "a person is messing with some little sticks", "video_id": "video10692", "sen_id": 207779}, {"caption": "blonde woman in a white outfit dancing and singing in a video", "video_id": "video11608", "sen_id": 207780}, {"caption": "a woman dancing in various scenes of a music video", "video_id": "video11608", "sen_id": 207781}, {"caption": "brittany spears singing in a white body suit", "video_id": "video11608", "sen_id": 207782}, {"caption": "brittany spears performs in a music video with several female dancers", "video_id": "video11608", "sen_id": 207783}, {"caption": "a blond woman in white is dancing around several black woman in black clothing", "video_id": "video11608", "sen_id": 207784}, {"caption": "a woman is dancing and singing to music playing in the background", "video_id": "video11608", "sen_id": 207785}, {"caption": "a beautiful girl is singing and dancing to music", "video_id": "video11608", "sen_id": 207786}, {"caption": "an album song a girl singing a song with a guy", "video_id": "video11608", "sen_id": 207787}, {"caption": "a blonde woman sings and dances in her music video", "video_id": "video11608", "sen_id": 207788}, {"caption": "a blonde girl in white swimsuit singing and dancing with some dark haired girls", "video_id": "video11608", "sen_id": 207789}, {"caption": "some people are dancing around to the music", "video_id": "video11608", "sen_id": 207790}, {"caption": "a women were dancing for a music", "video_id": "video11608", "sen_id": 207791}, {"caption": "brittany spears is dancing and singing with backup dancers", "video_id": "video11608", "sen_id": 207792}, {"caption": "a pop singer is singing and dancing with two or more girls wearing sexy dresses", "video_id": "video11608", "sen_id": 207793}, {"caption": "some women are dancing to a song", "video_id": "video11608", "sen_id": 207794}, {"caption": "in a great music album the sexy heroine singing and dancing in a long rod with sexiest co-dancers", "video_id": "video11608", "sen_id": 207795}, {"caption": "5 ladies dance for a song4 girls in black dress center girl wear white dress", "video_id": "video11608", "sen_id": 207796}, {"caption": "a group of woman dancing and singing song in two piece", "video_id": "video11608", "sen_id": 207797}, {"caption": "some young girls with sexy dress and high heels are dancing on the poles for a music", "video_id": "video11608", "sen_id": 207798}, {"caption": "some women on a stage are dancing around", "video_id": "video11608", "sen_id": 207799}, {"caption": "4 images of a black woman 3 of which are by herself and then 1 as she is on a pageant stage", "video_id": "video12799", "sen_id": 207800}, {"caption": "there is a montage of a woman's modeling photos", "video_id": "video12799", "sen_id": 207801}, {"caption": "pictures of a woman with background piano music", "video_id": "video12799", "sen_id": 207802}, {"caption": "pictures of a woman who won a beauty contest", "video_id": "video12799", "sen_id": 207803}, {"caption": "many beautiful african american women are showcased set to piano music", "video_id": "video12799", "sen_id": 207804}, {"caption": "photos of a lady in various evens including a beauty contest flash in a slideshow", "video_id": "video12799", "sen_id": 207805}, {"caption": "three different still photos of women posing and smiling", "video_id": "video12799", "sen_id": 207806}, {"caption": "beautiful african american women are highlighted in a montage", "video_id": "video12799", "sen_id": 207807}, {"caption": "three different photos of four women are played in succession", "video_id": "video12799", "sen_id": 207808}, {"caption": "photos are being shown of african american women", "video_id": "video12799", "sen_id": 207809}, {"caption": "there is a woman smiling on the floor with hot dress", "video_id": "video12799", "sen_id": 207810}, {"caption": "a cute girl is posing with different costumes", "video_id": "video12799", "sen_id": 207811}, {"caption": "african american female models photographs played as a slideshow", "video_id": "video12799", "sen_id": 207812}, {"caption": "series of black ladies and their physical appearances on various occasions", "video_id": "video12799", "sen_id": 207813}, {"caption": "bunch of photographs of sexy brunette being shown on the screen", "video_id": "video12799", "sen_id": 207814}, {"caption": "a piano plays slow somber music while images of african american women are shown", "video_id": "video12799", "sen_id": 207815}, {"caption": "photos of an african-american woman wearing different outfits including one where she s in a beauty pagent", "video_id": "video12799", "sen_id": 207816}, {"caption": "a girl is displaying in different poses", "video_id": "video12799", "sen_id": 207817}, {"caption": "two black haired ladies are having photo session", "video_id": "video12799", "sen_id": 207818}, {"caption": "different types of modeling ladies are shown in a show", "video_id": "video12799", "sen_id": 207819}, {"caption": "group of male surfers in swim trunks riding on large blue waves", "video_id": "video12149", "sen_id": 207820}, {"caption": "a man surfing some waves in the ocean", "video_id": "video12149", "sen_id": 207821}, {"caption": "a surfer glides on a white board in a zigzag pattern in front of a curving foamy wave near a boat and other surfers", "video_id": "video12149", "sen_id": 207822}, {"caption": "a man is surfing as an electric guitar plays off camera", "video_id": "video12149", "sen_id": 207823}, {"caption": "a manis surfing on a big wave in the ocean", "video_id": "video12149", "sen_id": 207824}, {"caption": "a young man on a white surfboard rides a wave along a beach", "video_id": "video12149", "sen_id": 207825}, {"caption": "a young surfer rides a white surf board in large waves", "video_id": "video12149", "sen_id": 207826}, {"caption": "a man is surfing on a white board through blue waves", "video_id": "video12149", "sen_id": 207827}, {"caption": "a man cuts through the wave on his surfboard", "video_id": "video12149", "sen_id": 207828}, {"caption": "a man on a white surf board is surfing among other people", "video_id": "video12149", "sen_id": 207829}, {"caption": "surfers surf on a large wave at the beach", "video_id": "video12149", "sen_id": 207830}, {"caption": "a surfer ridding on a wave in the ocean", "video_id": "video12149", "sen_id": 207831}, {"caption": "several long haired male surfers ride their surfboards on blue ocean water while riding water waves", "video_id": "video12149", "sen_id": 207832}, {"caption": "a man is surfing on a white surfboard", "video_id": "video12149", "sen_id": 207833}, {"caption": "a man with no shirt in swim trunks is surfing in the ocean", "video_id": "video12149", "sen_id": 207834}, {"caption": "a person is surfing using a white board in sea and enjoying it", "video_id": "video12149", "sen_id": 207835}, {"caption": "man in grey swim trunks surfs a wave with skill", "video_id": "video12149", "sen_id": 207836}, {"caption": "various surfers ride moderate waves while doing tricks and spins on their surfboards on a particularly sunny day at the beach", "video_id": "video12149", "sen_id": 207837}, {"caption": "a man surfs on a longboard surfboard in head high surf passed other surfers paddling out", "video_id": "video12149", "sen_id": 207838}, {"caption": "a man is surfing around on a beach in the day", "video_id": "video12149", "sen_id": 207839}, {"caption": "a putting potato wedges in a pot over a gas stove", "video_id": "video11102", "sen_id": 207840}, {"caption": "a person is adding some spices into the hot pan", "video_id": "video11102", "sen_id": 207841}, {"caption": "a clip on how to boil potatoes in a bowl", "video_id": "video11102", "sen_id": 207842}, {"caption": "a spice is added to an empty cooking pan", "video_id": "video11102", "sen_id": 207843}, {"caption": "woman putting items into a red pot on top of a gas stove", "video_id": "video11102", "sen_id": 207844}, {"caption": "someone is cooking food in a small pot", "video_id": "video11102", "sen_id": 207845}, {"caption": "a woman is heating up a pot and putting in several spices into the hot pot", "video_id": "video11102", "sen_id": 207846}, {"caption": "a woman talks while she places food into a pot on a gas burner", "video_id": "video11102", "sen_id": 207847}, {"caption": "a woman is preparing some food in the kitchen", "video_id": "video11102", "sen_id": 207848}, {"caption": "ingredients are poured into a pot and stirred around", "video_id": "video11102", "sen_id": 207849}, {"caption": "a foreign language speaking cook prepares a dish in a red pot over a blue flame", "video_id": "video11102", "sen_id": 207850}, {"caption": "an inhome chef roasts some spices in a red pan", "video_id": "video11102", "sen_id": 207851}, {"caption": "a woman adds various ingredients to a wok sitting on a lit burner", "video_id": "video11102", "sen_id": 207852}, {"caption": "in the kitchen on a stove a woman is preparing a recipe in her bowl pan", "video_id": "video11102", "sen_id": 207853}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11102", "sen_id": 207854}, {"caption": "a lady who is preparing a meal using a pan that is placed on fire", "video_id": "video11102", "sen_id": 207855}, {"caption": "women putting grams in a vessel and stirring it", "video_id": "video11102", "sen_id": 207856}, {"caption": "cooking a base or sauce which looks indian", "video_id": "video11102", "sen_id": 207857}, {"caption": "a young woman adds ingredients to a pan on the stove", "video_id": "video11102", "sen_id": 207858}, {"caption": "someone is making some food in a metal bowl", "video_id": "video11102", "sen_id": 207859}, {"caption": "a man discussing how a new intel computer processor operates at only one frequency at a time", "video_id": "video11052", "sen_id": 207860}, {"caption": "a man in wings is seen before we see a computer chip and a man speaking to the camera", "video_id": "video11052", "sen_id": 207861}, {"caption": "a man discusses the attributes of a computer processor", "video_id": "video11052", "sen_id": 207862}, {"caption": "an intel motherboard and a man talking about it", "video_id": "video11052", "sen_id": 207863}, {"caption": "a man describing the pentium processor he discusses the heat output of the chip", "video_id": "video11052", "sen_id": 207864}, {"caption": "a man talks about computer hardware and the concerns about heat in the system", "video_id": "video11052", "sen_id": 207865}, {"caption": "man in black shirt describing specs of computer hardware", "video_id": "video11052", "sen_id": 207866}, {"caption": "a man in a black shirt is talking on the screen", "video_id": "video11052", "sen_id": 207867}, {"caption": "an intel processing chip is shown and a man is talking about it", "video_id": "video11052", "sen_id": 207868}, {"caption": "a man talks about intel s chip operating at one frequency only", "video_id": "video11052", "sen_id": 207869}, {"caption": "there is a man introducing a product of intel", "video_id": "video11052", "sen_id": 207870}, {"caption": "a man wearing black color dress is talking", "video_id": "video11052", "sen_id": 207871}, {"caption": "a man explaining something about the intel product", "video_id": "video11052", "sen_id": 207872}, {"caption": "its about intel guy in black dress wear watch on left hand", "video_id": "video11052", "sen_id": 207873}, {"caption": "a man in a black t-shirt giving a review of an intel processor", "video_id": "video11052", "sen_id": 207874}, {"caption": "there is a man with white costume posing for a photo", "video_id": "video11052", "sen_id": 207875}, {"caption": "a man in a black shirt discussing intel pentium 3 frequency power consumption and heat output", "video_id": "video11052", "sen_id": 207876}, {"caption": "a man is discussing the pentium 3 technology s advantages of previous chips", "video_id": "video11052", "sen_id": 207877}, {"caption": "a young skinny guy in black talks enthusiastically about computer hardware in front of a solid white background", "video_id": "video11052", "sen_id": 207878}, {"caption": "an intel cpu is being shown by linus", "video_id": "video11052", "sen_id": 207879}, {"caption": "four men are conducting a mock rescue of a man buried in the sand", "video_id": "video10391", "sen_id": 207880}, {"caption": "a team of people in yellow suits are trying to drill a man out of quicksand", "video_id": "video10391", "sen_id": 207881}, {"caption": "a person is stuck in sand while people are helping him out", "video_id": "video10391", "sen_id": 207882}, {"caption": "men in yellow rubberized outfits black body straps blue helmets and red safety vests help a colleague who is trapped in wet sand by using a water pipe and their hands", "video_id": "video10391", "sen_id": 207883}, {"caption": "a group of people helping a man who is in a sinkhole", "video_id": "video10391", "sen_id": 207884}, {"caption": "a man is stuck in wet sand and three others are trying to free him", "video_id": "video10391", "sen_id": 207885}, {"caption": "a team is getting the man out of mud who is stuck in the muddy grave for hours", "video_id": "video10391", "sen_id": 207886}, {"caption": "a group of men are working to free a man stuck in sand", "video_id": "video10391", "sen_id": 207887}, {"caption": "three men were rescue a their coworker who got locked on the sand", "video_id": "video10391", "sen_id": 207888}, {"caption": "men with blue helmets repairing the problem with the water", "video_id": "video10391", "sen_id": 207889}, {"caption": "there are four personsin which one of the person legs completely sunk in the soil", "video_id": "video10391", "sen_id": 207890}, {"caption": "three men work quickly to free their co-worker from the mud", "video_id": "video10391", "sen_id": 207891}, {"caption": "the narrator says that the workers freed his leg from the sand by flooding the area around his leg with water", "video_id": "video10391", "sen_id": 207892}, {"caption": "a professional rescue team using special equipment to extract a reporter from quicksand the reporter himself giving annotation of the event that happend", "video_id": "video10391", "sen_id": 207893}, {"caption": "some men are doing a job in wet sand", "video_id": "video10391", "sen_id": 207894}, {"caption": "man is stuck in earth while being rescued by 3 other people all in yellow jumpsuits", "video_id": "video10391", "sen_id": 207895}, {"caption": "one man was struck in the land his friends are helping", "video_id": "video10391", "sen_id": 207896}, {"caption": "guys try to help get team member out of the quick sand digging and trying to remove him", "video_id": "video10391", "sen_id": 207897}, {"caption": "three men attempting to free another man stuck in a mud pit", "video_id": "video10391", "sen_id": 207898}, {"caption": "some workers are wearing yellow suits out side", "video_id": "video10391", "sen_id": 207899}, {"caption": "food preparation is began specifically cooking with oil", "video_id": "video11533", "sen_id": 207900}, {"caption": "a woman is in the kitchen cooking and adds oil to a pot", "video_id": "video11533", "sen_id": 207901}, {"caption": "the person is showing how to cook a certain food in spanish", "video_id": "video11533", "sen_id": 207902}, {"caption": "a woman in green is pouring oil into a hot pan on the stove", "video_id": "video11533", "sen_id": 207903}, {"caption": "this video is a spanish video of a woman putting oil in a cooking pan", "video_id": "video11533", "sen_id": 207904}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11533", "sen_id": 207905}, {"caption": "a woman is pouring oil into the pot in order to make some food", "video_id": "video11533", "sen_id": 207906}, {"caption": "a spanish-speaking woman is making a dish over a stove", "video_id": "video11533", "sen_id": 207907}, {"caption": "a lady is pouring some cooking oil in a bowl which is on stove", "video_id": "video11533", "sen_id": 207908}, {"caption": "a woman in green dress inside kitchen pan inside preparing dish to serve to eat displaying on screen", "video_id": "video11533", "sen_id": 207909}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video11533", "sen_id": 207910}, {"caption": "a woman in saree is cooking with pan poring oil on it", "video_id": "video11533", "sen_id": 207911}, {"caption": "a chef uses a small blender to prepare a spice mixture", "video_id": "video11533", "sen_id": 207912}, {"caption": "an indian woman wearing an ornate green sari is preparing food", "video_id": "video11533", "sen_id": 207913}, {"caption": "an indian women wearing saree is pouring oil in a cookware", "video_id": "video11533", "sen_id": 207914}, {"caption": "a woman is cooking in a large pot on a stove burner", "video_id": "video11533", "sen_id": 207915}, {"caption": "the indian woman is cooking in the pan", "video_id": "video11533", "sen_id": 207916}, {"caption": "lady in green sari does cooking she grinds something in jar then he pour oil", "video_id": "video11533", "sen_id": 207917}, {"caption": "a mixer grinder inside kitchen mixing masala and bowl inside preparing dish to serve to eat", "video_id": "video11533", "sen_id": 207918}, {"caption": "a black and red pot is being filmed", "video_id": "video11533", "sen_id": 207919}, {"caption": "a man wearing a green shirt is examining his haircur", "video_id": "video12746", "sen_id": 207920}, {"caption": "a man in a bathroom shows off his haircut and hair style", "video_id": "video12746", "sen_id": 207921}, {"caption": "man in a tank top showing his like of a gel that goes in his hair", "video_id": "video12746", "sen_id": 207922}, {"caption": "a man talks about his new haircut and uses his hands to adjust it", "video_id": "video12746", "sen_id": 207923}, {"caption": "a white male is showing his haircut to the camera", "video_id": "video12746", "sen_id": 207924}, {"caption": "a guy is styling his own hair with a mostly perfect hair styling product", "video_id": "video12746", "sen_id": 207925}, {"caption": "a white guy shows the camera his haircut and fade", "video_id": "video12746", "sen_id": 207926}, {"caption": "a man explaining about his hair in front of the camera", "video_id": "video12746", "sen_id": 207927}, {"caption": "a man is making his hai straight and sexy", "video_id": "video12746", "sen_id": 207928}, {"caption": "a white man talks about his hair product", "video_id": "video12746", "sen_id": 207929}, {"caption": "one smart man talking about his hair style", "video_id": "video12746", "sen_id": 207930}, {"caption": "this product has its flaws but overall it is an excellent product", "video_id": "video12746", "sen_id": 207931}, {"caption": "a brown hair man modify his hair style", "video_id": "video12746", "sen_id": 207932}, {"caption": "a man is talking about his hair style", "video_id": "video12746", "sen_id": 207933}, {"caption": "bearded guy with selfie camera talking and showing his hair cut", "video_id": "video12746", "sen_id": 207934}, {"caption": "a golden hair man talking about his hair", "video_id": "video12746", "sen_id": 207935}, {"caption": "a man different hair style talking", "video_id": "video12746", "sen_id": 207936}, {"caption": "a man having different hair style showing his hair style", "video_id": "video12746", "sen_id": 207937}, {"caption": "a young man describes a hairstyle that he is using", "video_id": "video12746", "sen_id": 207938}, {"caption": "a man is showing how he does his hair", "video_id": "video12746", "sen_id": 207939}, {"caption": "a woman explains the chemistry of a moving black spider which is shown outlined in glowing gold with a close-up of pincers and a tiny face", "video_id": "video11076", "sen_id": 207940}, {"caption": "a woman talking about an animated glowing spider", "video_id": "video11076", "sen_id": 207941}, {"caption": "documentary about a spider called the spitting spider", "video_id": "video11076", "sen_id": 207942}, {"caption": "a long legged spider being described by a narrator and a woman", "video_id": "video11076", "sen_id": 207943}, {"caption": "a man and a woman talk about spiders as we see a cgi version", "video_id": "video11076", "sen_id": 207944}, {"caption": "a spider crawls along using all his legs in unison", "video_id": "video11076", "sen_id": 207945}, {"caption": "a spider outline lit up and walking fast", "video_id": "video11076", "sen_id": 207946}, {"caption": "a woman discusses the biology of a spitting spider", "video_id": "video11076", "sen_id": 207947}, {"caption": "a man and a woman talking about a spitting spider", "video_id": "video11076", "sen_id": 207948}, {"caption": "a scientist discusses how a spider uses its 8 legs to move along quickly", "video_id": "video11076", "sen_id": 207949}, {"caption": "a gray haired white woman explains the evolution of a golden colored spider", "video_id": "video11076", "sen_id": 207950}, {"caption": "a spider is crawling around a black background while a woman in purple speaks", "video_id": "video11076", "sen_id": 207951}, {"caption": "a woman is talking about the venom of a spider", "video_id": "video11076", "sen_id": 207952}, {"caption": "a woman's voice describing an image of a spider", "video_id": "video11076", "sen_id": 207953}, {"caption": "a man and woman talk while a computerized spider is shown and explained", "video_id": "video11076", "sen_id": 207954}, {"caption": "the old woman in blue dress is talking about something", "video_id": "video11076", "sen_id": 207955}, {"caption": "a female scientist talks about how a spider is able to spit venom", "video_id": "video11076", "sen_id": 207956}, {"caption": "a educational clip about the spitting spiders and specifically the glands they have", "video_id": "video11076", "sen_id": 207957}, {"caption": "a spitting spider being discussed and describing its venom", "video_id": "video11076", "sen_id": 207958}, {"caption": "spitting spiders have two modified venom glands that produce glue and silk", "video_id": "video11076", "sen_id": 207959}, {"caption": "a woman is posing with whte flakes in her hair and angel wings", "video_id": "video10823", "sen_id": 207960}, {"caption": "a woman wearing a hair chain pretends to be an angel", "video_id": "video10823", "sen_id": 207961}, {"caption": "the introduction to a makeup or cosplay tutorial", "video_id": "video10823", "sen_id": 207962}, {"caption": "model is wearing beautiful sparkling jewelry in snow", "video_id": "video10823", "sen_id": 207963}, {"caption": "a woman with wings wears a heart ring attached with glittering stones to a tennis bracelet on her wrist and a delicate headband of curved strands of diamonds with an open square centered on her forehead", "video_id": "video10823", "sen_id": 207964}, {"caption": "a model dressed in fairy posing for the camera", "video_id": "video10823", "sen_id": 207965}, {"caption": "the woman displays the crystal jewlery as she smiles", "video_id": "video10823", "sen_id": 207966}, {"caption": "one women look like fairy with background music", "video_id": "video10823", "sen_id": 207967}, {"caption": "a woman shows off some makeup and facial products on camera", "video_id": "video10823", "sen_id": 207968}, {"caption": "a model is modeling crystal jewelry and hair decorations", "video_id": "video10823", "sen_id": 207969}, {"caption": "lady is shown here very happy looking like an agel", "video_id": "video10823", "sen_id": 207970}, {"caption": "a bejeweled woman with glitter in her long hair and white wings on her back is blowing tiny sparkles", "video_id": "video10823", "sen_id": 207971}, {"caption": "a woman make up her like a angel", "video_id": "video10823", "sen_id": 207972}, {"caption": "a woman with long brown hair has white wings and jewelry on her head and finger", "video_id": "video10823", "sen_id": 207973}, {"caption": "sexy brunette with glitters smiling at the camera", "video_id": "video10823", "sen_id": 207974}, {"caption": "a cute lady in sparkling jewelry is being showered in snow", "video_id": "video10823", "sen_id": 207975}, {"caption": "a women who in angel make up blowing in the air and smiling at the camera", "video_id": "video10823", "sen_id": 207976}, {"caption": "a very beuatiful woman dressed like an angel blows glitter out of her hands", "video_id": "video10823", "sen_id": 207977}, {"caption": "a woman talking to the camera and showing off her style", "video_id": "video10823", "sen_id": 207978}, {"caption": "sexy girl with glitters smiling at the camera", "video_id": "video10823", "sen_id": 207979}, {"caption": "two sets of two women playing team badminton at a tournament", "video_id": "video11783", "sen_id": 207980}, {"caption": "four people playing tennis on a court in a stadium one side dressed in blue the other side dressed in yellow", "video_id": "video11783", "sen_id": 207981}, {"caption": "a team of doubles for badmitton are engaged in a match", "video_id": "video11783", "sen_id": 207982}, {"caption": "two teams playing a game of badminton in a legitimate court", "video_id": "video11783", "sen_id": 207983}, {"caption": "a game of badminton being played between two teams", "video_id": "video11783", "sen_id": 207984}, {"caption": "a team in purple and a team in yellow face off during a tennis match", "video_id": "video11783", "sen_id": 207985}, {"caption": "two teams of badmitton players play a match in a large indoor stadium", "video_id": "video11783", "sen_id": 207986}, {"caption": "four players showing great skill playing badminton together", "video_id": "video11783", "sen_id": 207987}, {"caption": "four people playing each other in a game of tennis", "video_id": "video11783", "sen_id": 207988}, {"caption": "there is a yellow jersey team playing badminton in a court", "video_id": "video11783", "sen_id": 207989}, {"caption": "a terrific women s double badminton is progressing in the court", "video_id": "video11783", "sen_id": 207990}, {"caption": "2 on 2 tennis match is displayed with a particularly heated set in focus", "video_id": "video11783", "sen_id": 207991}, {"caption": "two teams of two players play tennis match one in purple shirts and skirts the other in yellow", "video_id": "video11783", "sen_id": 207992}, {"caption": "four people are playing tennis while the crowd cheers", "video_id": "video11783", "sen_id": 207993}, {"caption": "people compete against each other in a badminton match", "video_id": "video11783", "sen_id": 207994}, {"caption": "doubles tennis competition yellow shirt verse purple shirt teams played on a green court", "video_id": "video11783", "sen_id": 207995}, {"caption": "in the cort the table tennis players are played in very well", "video_id": "video11783", "sen_id": 207996}, {"caption": "two on two match is played by bad mitten teams in purple and yellow", "video_id": "video11783", "sen_id": 207997}, {"caption": "the news reader is wearing a black suit and blue designed tie and sitting in a really beautiful background", "video_id": "video11783", "sen_id": 207998}, {"caption": "two players are playing badminton with colourful dress", "video_id": "video11783", "sen_id": 207999}, {"caption": "a chef in a pink tank top cooks a dish of vegetables and meat", "video_id": "video10440", "sen_id": 208000}, {"caption": "a lady in the kitchen is to demonstrate how to prepare chicken items for a tasty one", "video_id": "video10440", "sen_id": 208001}, {"caption": "in the kitchen a woman in pink cooking a chicken dish", "video_id": "video10440", "sen_id": 208002}, {"caption": "a female chef cooks in a fancy kitchen with a pink tank top", "video_id": "video10440", "sen_id": 208003}, {"caption": "one women adding fried food to the recipe prepareing", "video_id": "video10440", "sen_id": 208004}, {"caption": "a woman cooks bell peppers and adds in prepared chicken in delicious sauce", "video_id": "video10440", "sen_id": 208005}, {"caption": "a women in pink dress preparing some veg curry in her kitchen", "video_id": "video10440", "sen_id": 208006}, {"caption": "a home cook wearing a pink tank top stirs cut red and yellow vegetables with a wooden spoon before adding cooked chicken chunks and opening a jar", "video_id": "video10440", "sen_id": 208007}, {"caption": "a lady explain how is prepare the food", "video_id": "video10440", "sen_id": 208008}, {"caption": "in a kitchen a girl is preparing the chicken curry", "video_id": "video10440", "sen_id": 208009}, {"caption": "a women in pink is making a dish in a kitchen", "video_id": "video10440", "sen_id": 208010}, {"caption": "a nice dish is being made by a lady with vegetables", "video_id": "video10440", "sen_id": 208011}, {"caption": "a woman combines ingredients while cooking a dish", "video_id": "video10440", "sen_id": 208012}, {"caption": "the woman stirs her veggies before adding the chicken and continueing to stir", "video_id": "video10440", "sen_id": 208013}, {"caption": "a women is cooking something in a pan and stirring it", "video_id": "video10440", "sen_id": 208014}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10440", "sen_id": 208015}, {"caption": "a chef combines different veggies and chicken in a pan in a kitchen", "video_id": "video10440", "sen_id": 208016}, {"caption": "one beautiful and lovely women make recipe in pan", "video_id": "video10440", "sen_id": 208017}, {"caption": "a girl is preparing a spice chicken dish", "video_id": "video10440", "sen_id": 208018}, {"caption": "a woman in a pink shirt is in a kitchen", "video_id": "video10440", "sen_id": 208019}, {"caption": "a rocket launch and narration about ghandi", "video_id": "video11864", "sen_id": 208020}, {"caption": "a rocket lifted off and india muslims insisted on creating their own country", "video_id": "video11864", "sen_id": 208021}, {"caption": "a man in a blue shirt is talking about a rocket taking off", "video_id": "video11864", "sen_id": 208022}, {"caption": "a rocket is taking off into the sky from a platform while a man talks about india", "video_id": "video11864", "sen_id": 208023}, {"caption": "a small man in glasses who is wearing a sheet walks through a very large crowd of people", "video_id": "video11864", "sen_id": 208024}, {"caption": "a man is talking about india and ghandi", "video_id": "video11864", "sen_id": 208025}, {"caption": "a rocket went to the sky and gandhi ji figher for india", "video_id": "video11864", "sen_id": 208026}, {"caption": "a missile is been sent to a space at day time", "video_id": "video11864", "sen_id": 208027}, {"caption": "rocket traveling upward through the sky and several people running", "video_id": "video11864", "sen_id": 208028}, {"caption": "a rocket takes off and heads for the sky on a clear day", "video_id": "video11864", "sen_id": 208029}, {"caption": "there is a rocket moving upan old man walking in to the crowd", "video_id": "video11864", "sen_id": 208030}, {"caption": "india man arrowed to pakistan and other contry", "video_id": "video11864", "sen_id": 208031}, {"caption": " in vintage period mahatma gandhiji comes", "video_id": "video11864", "sen_id": 208032}, {"caption": "a rocket ship takes off into space leaving a trail", "video_id": "video11864", "sen_id": 208033}, {"caption": "somebody is illustrating a video about india pakistanmahatma gandhi and the people migration", "video_id": "video11864", "sen_id": 208034}, {"caption": "there is a rocket moving with powerful engine", "video_id": "video11864", "sen_id": 208035}, {"caption": "a rocket is taking off while a man talks about country relations", "video_id": "video11864", "sen_id": 208036}, {"caption": "a rocket is launched and a mahathma ganthi on screen", "video_id": "video11864", "sen_id": 208037}, {"caption": "in this video rocket launching and migration of between india and pakistan at the time of indipandace", "video_id": "video11864", "sen_id": 208038}, {"caption": "a jet is flying through the sky and ghandi is being discussed", "video_id": "video11864", "sen_id": 208039}, {"caption": "two men battling it out in ping pong", "video_id": "video10895", "sen_id": 208040}, {"caption": "commentary talking about a professional table tennis match", "video_id": "video10895", "sen_id": 208041}, {"caption": "two people playing a fast game of table tennis", "video_id": "video10895", "sen_id": 208042}, {"caption": "two mean going against each other in a fierce round of ping pong", "video_id": "video10895", "sen_id": 208043}, {"caption": "two men play an agressive game of ping pong", "video_id": "video10895", "sen_id": 208044}, {"caption": "two men are playing table tennis in an arena while spectators watch", "video_id": "video10895", "sen_id": 208045}, {"caption": "a guy in a teal shirt plays ping pong match against a man in a dark shirt", "video_id": "video10895", "sen_id": 208046}, {"caption": "2 pingpong players playing in a world tournament", "video_id": "video10895", "sen_id": 208047}, {"caption": "table tennise player with blue and red shirt are playing", "video_id": "video10895", "sen_id": 208048}, {"caption": "in the cort the table tennis players are played in very well", "video_id": "video10895", "sen_id": 208049}, {"caption": "two men are competing against each other in table tennis and audience are very anxious", "video_id": "video10895", "sen_id": 208050}, {"caption": "a table tennis match between two men on a red court and a blue table", "video_id": "video10895", "sen_id": 208051}, {"caption": "two men are playing table tennis on a large red court", "video_id": "video10895", "sen_id": 208052}, {"caption": "two men play an intense game of table tennis and the man in the blue misses the return hit", "video_id": "video10895", "sen_id": 208053}, {"caption": "the table tennis tournament give much excitement to the audience", "video_id": "video10895", "sen_id": 208054}, {"caption": "the two boys playing table tennis efficiently the red color shirt boy play more efficiently than the blue color shirt boy", "video_id": "video10895", "sen_id": 208055}, {"caption": "ping pong match is displayed with a particularly furious set", "video_id": "video10895", "sen_id": 208056}, {"caption": "people are playing table tennis in a stadium", "video_id": "video10895", "sen_id": 208057}, {"caption": "two ping pong players in an official match", "video_id": "video10895", "sen_id": 208058}, {"caption": "two players playing table tennis match with full efficiency to reach the points", "video_id": "video10895", "sen_id": 208059}, {"caption": "pharmaceutical drug prices are being shown on a news channel", "video_id": "video10124", "sen_id": 208060}, {"caption": "a news channel reports on a 5000% hike in a prescription drug", "video_id": "video10124", "sen_id": 208061}, {"caption": "a news channel is explaining the price hike of a drug", "video_id": "video10124", "sen_id": 208062}, {"caption": "a news reporter does a report on the cose of prescription drugs", "video_id": "video10124", "sen_id": 208063}, {"caption": "this video describes price changes in the pharmaceutical industry", "video_id": "video10124", "sen_id": 208064}, {"caption": "the price of a medicine was raised an exorbitant amount", "video_id": "video10124", "sen_id": 208065}, {"caption": "a drug price has gone up dramatically which is shown", "video_id": "video10124", "sen_id": 208066}, {"caption": "{}", "video_id": "video10124", "sen_id": 208067}, {"caption": "a yellow headline is above a name of a company bullet points a restatement of the headline and the business sector on a blue screen with slanted bands moving toward the right", "video_id": "video10124", "sen_id": 208068}, {"caption": "a man is talking about the price of a pharmaceutical on an economic news program", "video_id": "video10124", "sen_id": 208069}, {"caption": "stay tuned as the live five news team digs into why our drugs cost so much today", "video_id": "video10124", "sen_id": 208070}, {"caption": "a man and woman are discussing drug price increases", "video_id": "video10124", "sen_id": 208071}, {"caption": "an image showing information about a certain drug and it's dramatic increase in price", "video_id": "video10124", "sen_id": 208072}, {"caption": "a news reporter talks about the rising prices in the drug industry", "video_id": "video10124", "sen_id": 208073}, {"caption": "a news anchor talking about graphics that discuss drug price hikes", "video_id": "video10124", "sen_id": 208074}, {"caption": "a news screen with some facts of a story being bullet pointed", "video_id": "video10124", "sen_id": 208075}, {"caption": "there is a suit man reading a news", "video_id": "video10124", "sen_id": 208076}, {"caption": "a narrator explains why the cost of orphan drugs are high", "video_id": "video10124", "sen_id": 208077}, {"caption": "a man is talking on the news about drug prices", "video_id": "video10124", "sen_id": 208078}, {"caption": "a man in a suit sits then white words with a blue background", "video_id": "video10124", "sen_id": 208079}, {"caption": "a video game is being played while the off screen play gives commentary", "video_id": "video10804", "sen_id": 208080}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10804", "sen_id": 208081}, {"caption": "a humorous narrator is advertising a video game and its level editor in particular", "video_id": "video10804", "sen_id": 208082}, {"caption": "the cartoon creatures move fastly in the different level of the game", "video_id": "video10804", "sen_id": 208083}, {"caption": "a man voices over clips of a colorful video game", "video_id": "video10804", "sen_id": 208084}, {"caption": "commercial spot for a retro style video game platformer", "video_id": "video10804", "sen_id": 208085}, {"caption": "a screen shot of an arcade video game with yellow blocks", "video_id": "video10804", "sen_id": 208086}, {"caption": "a game displaying screen fighting and running gun shots displaying on screen", "video_id": "video10804", "sen_id": 208087}, {"caption": "its a animated video game for kids", "video_id": "video10804", "sen_id": 208088}, {"caption": "someone is playing a video game of build and share", "video_id": "video10804", "sen_id": 208089}, {"caption": "a screen of the video game battle block theatre", "video_id": "video10804", "sen_id": 208090}, {"caption": "a man is talking about a game that is being played", "video_id": "video10804", "sen_id": 208091}, {"caption": "someone is singing and describing a game the character in the game is jumping around on blocks", "video_id": "video10804", "sen_id": 208092}, {"caption": "someone is playing video game build and share", "video_id": "video10804", "sen_id": 208093}, {"caption": "the figures of a videogame are running in a city", "video_id": "video10804", "sen_id": 208094}, {"caption": "a man is playing game and he is explaining how to play it", "video_id": "video10804", "sen_id": 208095}, {"caption": "player playing video game trying to get more points", "video_id": "video10804", "sen_id": 208096}, {"caption": "a person plays minecraft as he talks about his characters", "video_id": "video10804", "sen_id": 208097}, {"caption": "a game that involves blocks and running across them", "video_id": "video10804", "sen_id": 208098}, {"caption": "men are narrating an animation that is on screen where there are blocks and trees", "video_id": "video10804", "sen_id": 208099}, {"caption": "music plays while something resembling a screensaver is displayed", "video_id": "video11684", "sen_id": 208100}, {"caption": "music plays while a room is shown and is then pixel-ed", "video_id": "video11684", "sen_id": 208101}, {"caption": "weird piano music is being played to blurred and unrecognizable images", "video_id": "video11684", "sen_id": 208102}, {"caption": "a dark room and lighted doorway showing a seated figure fading into pixallations", "video_id": "video11684", "sen_id": 208103}, {"caption": "a pixelated brown yellow and orange image that moves", "video_id": "video11684", "sen_id": 208104}, {"caption": "a black screen leads to a zoom of a pixelated image", "video_id": "video11684", "sen_id": 208105}, {"caption": "no way to write a caption", "video_id": "video11684", "sen_id": 208106}, {"caption": "a video game shows a man walking down a hallway until it gets pixelized and blurry", "video_id": "video11684", "sen_id": 208107}, {"caption": "a morphing image is shown while it goes from smaller to larger in size", "video_id": "video11684", "sen_id": 208108}, {"caption": "a tiny white light illuminates a dark entry connecting two rooms a mouse figure wearing green with yellow ears stands by posters and the mouse dissolves into color pixels which grow into larger squares", "video_id": "video11684", "sen_id": 208109}, {"caption": "a dark ahll way leads to an open area with art on a wall", "video_id": "video11684", "sen_id": 208110}, {"caption": "there are something different happening in the darkness", "video_id": "video11684", "sen_id": 208111}, {"caption": "a video screen is pixelated until it is out of focus", "video_id": "video11684", "sen_id": 208112}, {"caption": "a blurred figure runs through a dark cave", "video_id": "video11684", "sen_id": 208113}, {"caption": " atmospheric cinematic scene from a videogame", "video_id": "video11684", "sen_id": 208114}, {"caption": "an image of a dark corridor is seen a light seen at the end the scene transitions to a red corridor with what appears to be a figure standing at the end", "video_id": "video11684", "sen_id": 208115}, {"caption": "a blur view showing the magnifivcation of the animation", "video_id": "video11684", "sen_id": 208116}, {"caption": "a man in a dark room with art on the wall", "video_id": "video11684", "sen_id": 208117}, {"caption": "music is being played to a creepy image of a cartoon character", "video_id": "video11684", "sen_id": 208118}, {"caption": "some pixels are moving around on a tv screen", "video_id": "video11684", "sen_id": 208119}, {"caption": "a person putitng some steak in a bowl with pepper", "video_id": "video11166", "sen_id": 208120}, {"caption": "a man showing how to marinate steaks in ground pepper", "video_id": "video11166", "sen_id": 208121}, {"caption": "a person talking while seasoning a pieces of meat", "video_id": "video11166", "sen_id": 208122}, {"caption": "a man taking raw meat off a plate and putting it in a bowl and adding pepper on top", "video_id": "video11166", "sen_id": 208123}, {"caption": "a guy is putting beef in the pan and adding pepper with it", "video_id": "video11166", "sen_id": 208124}, {"caption": "a man is preparing the piece of beef and putting ingredients", "video_id": "video11166", "sen_id": 208125}, {"caption": "a man puts beef into a tan marinating bowl and sprinkles black pepper onto it", "video_id": "video11166", "sen_id": 208126}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11166", "sen_id": 208127}, {"caption": "a man showing how to prepare the beef and abbs black pepper into it", "video_id": "video11166", "sen_id": 208128}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11166", "sen_id": 208129}, {"caption": "in the kitchen person preparing the meal with some meet", "video_id": "video11166", "sen_id": 208130}, {"caption": "a man is showing how to cook a dish with beef and pepper", "video_id": "video11166", "sen_id": 208131}, {"caption": "in the kitchen someone combing pepper to sliced meet", "video_id": "video11166", "sen_id": 208132}, {"caption": "a hand reaches onto a white plate to pick up thick slices of red meat and places them into a tan bowl with dark condiments from a mortar", "video_id": "video11166", "sen_id": 208133}, {"caption": "meat is placed on the white plate then pepper is crushed using the stone then applied on meat", "video_id": "video11166", "sen_id": 208134}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11166", "sen_id": 208135}, {"caption": "a person preparing a mutton fry", "video_id": "video11166", "sen_id": 208136}, {"caption": "a person is seasoning a piece of meat with ground seasoning", "video_id": "video11166", "sen_id": 208137}, {"caption": "a hand uses a black pestle lifts beef slices off a white plate and uses a spoon to scoop out crushed pepper from the mortar", "video_id": "video11166", "sen_id": 208138}, {"caption": "a man preparing a steak dinner on a counter top", "video_id": "video11166", "sen_id": 208139}, {"caption": "many clips from action packed popular movie scenes", "video_id": "video11255", "sen_id": 208140}, {"caption": "clips from the terminator as well as other movies", "video_id": "video11255", "sen_id": 208141}, {"caption": "action movie clips of intense scenes fighting off aliens or terminators", "video_id": "video11255", "sen_id": 208142}, {"caption": "clips from some of the most popular movies are shown", "video_id": "video11255", "sen_id": 208143}, {"caption": "a robot creature wearing sunglasses walks down a hallway carrying two guns", "video_id": "video11255", "sen_id": 208144}, {"caption": "a man yelling a woman and a child hugging and a woman jumping out of a window", "video_id": "video11255", "sen_id": 208145}, {"caption": "many people are shown in dramatic intense movie scenes", "video_id": "video11255", "sen_id": 208146}, {"caption": "a young boy protecting his girl friend from water and he saved her life", "video_id": "video11255", "sen_id": 208147}, {"caption": "several clips taken from action movies and alien", "video_id": "video11255", "sen_id": 208148}, {"caption": "a man is seated at a square table with a passive man with his hands behind him while he screams orders to a third person to defend himself", "video_id": "video11255", "sen_id": 208149}, {"caption": "some scenes from movies are being displayed", "video_id": "video11255", "sen_id": 208150}, {"caption": "a young man saving his girl friend from water which came inside the ship", "video_id": "video11255", "sen_id": 208151}, {"caption": "there are many people taking shooting for a movie", "video_id": "video11255", "sen_id": 208152}, {"caption": "hollywood movies are there coming like titanic terminator", "video_id": "video11255", "sen_id": 208153}, {"caption": "people in many different scenes who are afraid", "video_id": "video11255", "sen_id": 208154}, {"caption": "some scenes of movies are being shown in succession", "video_id": "video11255", "sen_id": 208155}, {"caption": "a man dressed in black is carrying two large guns and threatening people in a hallway", "video_id": "video11255", "sen_id": 208156}, {"caption": "different clips of action scenes of movies are being played", "video_id": "video11255", "sen_id": 208157}, {"caption": "a series of people in extremely stressful situations try hard to survive under bad conditions", "video_id": "video11255", "sen_id": 208158}, {"caption": "a guy is floating around near some guns", "video_id": "video11255", "sen_id": 208159}, {"caption": "man in a white chef's outfit describing cooking cookies in a kitchen", "video_id": "video10870", "sen_id": 208160}, {"caption": "a chef is working on using white chocolate in desserts", "video_id": "video10870", "sen_id": 208161}, {"caption": "a man with a white shirt talking about food", "video_id": "video10870", "sen_id": 208162}, {"caption": "a man in a chef's outfit talks about cookies they will be making", "video_id": "video10870", "sen_id": 208163}, {"caption": "a chef in a white coat describes a recipe he has just prepared", "video_id": "video10870", "sen_id": 208164}, {"caption": "a man in a chefs coat is talking about a dessert recipe", "video_id": "video10870", "sen_id": 208165}, {"caption": "a cook is standing near a table in white dress and wearing specs a plate with food item is kept on the table", "video_id": "video10870", "sen_id": 208166}, {"caption": "one chef is done a super tasty recipe with the", "video_id": "video10870", "sen_id": 208167}, {"caption": "a chef speaks to the camera about making maple spice cookies", "video_id": "video10870", "sen_id": 208168}, {"caption": "chef philip dell the chef s show in tv a firm believer in using the best products you can", "video_id": "video10870", "sen_id": 208169}, {"caption": "there is a sheaf talking about a dish", "video_id": "video10870", "sen_id": 208170}, {"caption": "phillip l deil the chief chef is explaning the making of the new dishes in the hotel room", "video_id": "video10870", "sen_id": 208171}, {"caption": "a chef named phillip wear white chef dress he wore specs and placed the hand on the table", "video_id": "video10870", "sen_id": 208172}, {"caption": "a chef talking about the dishes which is on the table", "video_id": "video10870", "sen_id": 208173}, {"caption": "some cookies in a plate are served on table and a chef is talking", "video_id": "video10870", "sen_id": 208174}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10870", "sen_id": 208175}, {"caption": "an chef explains how the baking is done", "video_id": "video10870", "sen_id": 208176}, {"caption": "a man in glasses and a white chef s coat is talking about baking maple walnut spice cookies with white chocolate cinnamon frosting", "video_id": "video10870", "sen_id": 208177}, {"caption": "philip del the chef is talking about cookies recipe", "video_id": "video10870", "sen_id": 208178}, {"caption": "a man in a chef outfit is making food", "video_id": "video10870", "sen_id": 208179}, {"caption": "two men in glasses are talking while words are being shown at the bottom of the screen", "video_id": "video11448", "sen_id": 208180}, {"caption": "a man wearing a suit coat and blue collar shirt is talking excitedly", "video_id": "video11448", "sen_id": 208181}, {"caption": "in a news channel a person in suit is talking", "video_id": "video11448", "sen_id": 208182}, {"caption": "a man talks to the bbc news reporter about the threat that has been around", "video_id": "video11448", "sen_id": 208183}, {"caption": "a man with a gray beard wearing a black jacket over a blue shirt in front of a pink background speaks excitedly", "video_id": "video11448", "sen_id": 208184}, {"caption": "a man gives an interview seriously with the tv anchor", "video_id": "video11448", "sen_id": 208185}, {"caption": "a man in a blue shirt is being interviewed on bbc", "video_id": "video11448", "sen_id": 208186}, {"caption": "the two persons wearing a jacket discussing some matter", "video_id": "video11448", "sen_id": 208187}, {"caption": "a man on tv is discussing using the things he enjoys", "video_id": "video11448", "sen_id": 208188}, {"caption": "two men on a news program on bbc talking", "video_id": "video11448", "sen_id": 208189}, {"caption": "there is a black suit man talking in a interview", "video_id": "video11448", "sen_id": 208190}, {"caption": "a man with a blue shirt and glasses giving a speech on the television", "video_id": "video11448", "sen_id": 208191}, {"caption": "one man talks about something in a stage", "video_id": "video11448", "sen_id": 208192}, {"caption": "a man is talking to a news reporter on bbc world news", "video_id": "video11448", "sen_id": 208193}, {"caption": "a person with black coat is talking about something to another person", "video_id": "video11448", "sen_id": 208194}, {"caption": "an old man wearing eyeglasses is talking to the interviewer in a show", "video_id": "video11448", "sen_id": 208195}, {"caption": "a man with a gray beard and eyeglasses responds by leaning forward looking to the side shaking his head", "video_id": "video11448", "sen_id": 208196}, {"caption": "an extremely fast talking man talks on screen on global bbc news about being an old friend over news ticker tape captions", "video_id": "video11448", "sen_id": 208197}, {"caption": "a man with glasses and beard on the news talking", "video_id": "video11448", "sen_id": 208198}, {"caption": "an old guy wearing glasses is debating on a news channel", "video_id": "video11448", "sen_id": 208199}, {"caption": "a chef is shucking an ear of corn in the kitchen and describing how fresh and beautiful it is", "video_id": "video11272", "sen_id": 208200}, {"caption": "a man is speaking while removing the husk of an ear of corn in a kitchen", "video_id": "video11272", "sen_id": 208201}, {"caption": "a man husking corn on a white board on a kitchen counter", "video_id": "video11272", "sen_id": 208202}, {"caption": "a man shucking corn on a kitchen counter", "video_id": "video11272", "sen_id": 208203}, {"caption": "a chef preparing corn for a meal he is about to make", "video_id": "video11272", "sen_id": 208204}, {"caption": "a male cooker is peeling a corn straight from corn husk for its freshness and flavor in the kitchen", "video_id": "video11272", "sen_id": 208205}, {"caption": "a man in a white chef's uniform takes the husk off of an ear of corn", "video_id": "video11272", "sen_id": 208206}, {"caption": "a chef preps for a recipe by shucking a few ears of corn", "video_id": "video11272", "sen_id": 208207}, {"caption": "a man peels corn and explains that the second the corn is out of the husk it starts to lose moisture and flavor", "video_id": "video11272", "sen_id": 208208}, {"caption": "a man in a white top husks corn on the cob in a kitchen", "video_id": "video11272", "sen_id": 208209}, {"caption": "a chef works on the prep for a recipe by shucking some ears of corn", "video_id": "video11272", "sen_id": 208210}, {"caption": "there is a man preparing for a dish in the kitchen", "video_id": "video11272", "sen_id": 208211}, {"caption": "a male cook wearing white is shown how to take corn out of the husk and explaining how the corn starts loosing its moisture and flavor once taken out of the husk", "video_id": "video11272", "sen_id": 208212}, {"caption": "a chef is taking a corn out of the husk explaining once you start it starts losing its flavor and moisture", "video_id": "video11272", "sen_id": 208213}, {"caption": "in a kitchen someone is removing the skin of the sweat corn", "video_id": "video11272", "sen_id": 208214}, {"caption": "a cook talks about corn how much he loves it and how to shuck it out of the husk", "video_id": "video11272", "sen_id": 208215}, {"caption": "a man in a kitchen is preparing a meal with vegetables", "video_id": "video11272", "sen_id": 208216}, {"caption": "a man is chucking corn on the cob", "video_id": "video11272", "sen_id": 208217}, {"caption": "someone is removing the corn outer skin and telling about it", "video_id": "video11272", "sen_id": 208218}, {"caption": "a man is holding a piece of corn", "video_id": "video11272", "sen_id": 208219}, {"caption": "a woman talking about making a decision about breastfeeding a baby", "video_id": "video10239", "sen_id": 208220}, {"caption": "a woman talks about a government program that provides assistance for women with small children", "video_id": "video10239", "sen_id": 208221}, {"caption": "a supplement program is shown on the powerpoint presentation", "video_id": "video10239", "sen_id": 208222}, {"caption": "a woman talking about the benefits of the wic program", "video_id": "video10239", "sen_id": 208223}, {"caption": "a woman in black is being interviewed next to a chinese evergreen", "video_id": "video10239", "sen_id": 208224}, {"caption": "wic presentation video made of explained text slides", "video_id": "video10239", "sen_id": 208225}, {"caption": "a woman says that many woman don t get nutrition programs after giving birth", "video_id": "video10239", "sen_id": 208226}, {"caption": "a woman is describing how most women don t make it to a wic clinic within days of birth to receive their program services", "video_id": "video10239", "sen_id": 208227}, {"caption": "a woman talcs about the wic program as a presentation with information on wic is shown", "video_id": "video10239", "sen_id": 208228}, {"caption": "a woman talks about treatment and care for new mothers", "video_id": "video10239", "sen_id": 208229}, {"caption": "a women talking about nutrition program for low income group", "video_id": "video10239", "sen_id": 208230}, {"caption": "a woman in a black jacket is concerned about women choosing to breastfeed or not to breastfeed before they can get to a wic center for post-natal care services", "video_id": "video10239", "sen_id": 208231}, {"caption": "i think this is government video and helps women", "video_id": "video10239", "sen_id": 208232}, {"caption": "woman giving an interview associated with woman infants children", "video_id": "video10239", "sen_id": 208233}, {"caption": "a woman is talking about some family issues", "video_id": "video10239", "sen_id": 208234}, {"caption": "its a programm about women infants children", "video_id": "video10239", "sen_id": 208235}, {"caption": "the benefits if the wic program and some of the services they offer are explained", "video_id": "video10239", "sen_id": 208236}, {"caption": "an information video to help women about breastfeeding choices", "video_id": "video10239", "sen_id": 208237}, {"caption": "a woman is talking about the nutrition program for low income group", "video_id": "video10239", "sen_id": 208238}, {"caption": "some white text is on a blue background", "video_id": "video10239", "sen_id": 208239}, {"caption": "a woman with a red backpack is bent over and tired from hiking in the woods", "video_id": "video10659", "sen_id": 208240}, {"caption": "female hiker wearing a large red bag walking along the side of the road", "video_id": "video10659", "sen_id": 208241}, {"caption": "a woman struggling to carry a large red knap sack", "video_id": "video10659", "sen_id": 208242}, {"caption": "a person with a red backpack is bent over looking at the ground", "video_id": "video10659", "sen_id": 208243}, {"caption": "a motorcycle driving down a ride camera flash to woman with red bag leaning forward", "video_id": "video10659", "sen_id": 208244}, {"caption": "i hiker with a large back pack complains about being very tired", "video_id": "video10659", "sen_id": 208245}, {"caption": "a woman traveller carrying luggage is tired and standing at the corner of the road", "video_id": "video10659", "sen_id": 208246}, {"caption": "a hiker with a large red pack bent over in the middle of the road", "video_id": "video10659", "sen_id": 208247}, {"caption": "a person leaning over that is wearing a heavy back pack", "video_id": "video10659", "sen_id": 208248}, {"caption": "a woman is bent over with a bag on her back", "video_id": "video10659", "sen_id": 208249}, {"caption": "a woman in a black jacket and a large red backpack is standing bent over on the side of a tree lined road", "video_id": "video10659", "sen_id": 208250}, {"caption": "a woman in a heavy red pack is bending under its weight", "video_id": "video10659", "sen_id": 208251}, {"caption": "there must be challenge to the woman is carrying the luggage on her back for a long time", "video_id": "video10659", "sen_id": 208252}, {"caption": "an amateur woman weighing a bag on her back feeling uneasy while her tour trip", "video_id": "video10659", "sen_id": 208253}, {"caption": "a woman tells a man that she is tired from hiking as she is bent over catching her breath", "video_id": "video10659", "sen_id": 208254}, {"caption": "the person drives the car fast on the road as the girl bends with a red backpack on her shoulders", "video_id": "video10659", "sen_id": 208255}, {"caption": "a lady is carrying a heavy weight red bag in her back in the road for lift but no one help her", "video_id": "video10659", "sen_id": 208256}, {"caption": "a young woman in jacket struggles with a heavy pack on a forested road", "video_id": "video10659", "sen_id": 208257}, {"caption": "woman bend over under the weight of a camping pak", "video_id": "video10659", "sen_id": 208258}, {"caption": "a woman with a pink backpack is talking outside", "video_id": "video10659", "sen_id": 208259}, {"caption": "a woman in a bikini top and blue hat talking to a man", "video_id": "video11065", "sen_id": 208260}, {"caption": "a child is expressing her distaste for the garments she is wearing", "video_id": "video11065", "sen_id": 208261}, {"caption": "a woman is wearing a blue cap necklace and a bikini type top the woman is threatening a male with bodily harm if anybody sees this video", "video_id": "video11065", "sen_id": 208262}, {"caption": "a girl in a blue had has an intense conversation with a young man", "video_id": "video11065", "sen_id": 208263}, {"caption": "a young girl in a blue baseball cap and bikini top talks with a man", "video_id": "video11065", "sen_id": 208264}, {"caption": "a woman wearing a blue hat talking to a guy", "video_id": "video11065", "sen_id": 208265}, {"caption": "a model with a hat talking to a guy in black inside a store", "video_id": "video11065", "sen_id": 208266}, {"caption": "a women with a blue cap and colourful dress is saying soemthing", "video_id": "video11065", "sen_id": 208267}, {"caption": "there is a women in bikin colthes and a blue cap talking", "video_id": "video11065", "sen_id": 208268}, {"caption": "a lady model talking about something to her boy friend", "video_id": "video11065", "sen_id": 208269}, {"caption": "sexy brunette in blue cap talking to other person", "video_id": "video11065", "sen_id": 208270}, {"caption": "a girl wearing a blue cap is talking to another person who is seated", "video_id": "video11065", "sen_id": 208271}, {"caption": "a women with colourful dress and a blue cap is saying something", "video_id": "video11065", "sen_id": 208272}, {"caption": "a girl expresses dissatisfaction at an outfit she had tried on", "video_id": "video11065", "sen_id": 208273}, {"caption": "s women wearing blue cap is making weird expressions while talking to a guy", "video_id": "video11065", "sen_id": 208274}, {"caption": "a women in colourful printed dress and wearing a blue cap", "video_id": "video11065", "sen_id": 208275}, {"caption": "a women in blue cap talking to a boy", "video_id": "video11065", "sen_id": 208276}, {"caption": "a scene with a woman talking to a man in front of a mannequin", "video_id": "video11065", "sen_id": 208277}, {"caption": "a girl wearing a blue hat and a pink bow bra is talking to a guy in a changing room", "video_id": "video11065", "sen_id": 208278}, {"caption": "a girl in a blue hat is talking", "video_id": "video11065", "sen_id": 208279}, {"caption": "a blonde middle aged is man taking a video selfie in his bathroom speaking about social media", "video_id": "video12517", "sen_id": 208280}, {"caption": "a man in a t-shirt is talking about instructional videos on reptiles", "video_id": "video12517", "sen_id": 208281}, {"caption": "a man standing next to a window in a room speaking into the camera", "video_id": "video12517", "sen_id": 208282}, {"caption": "a man explains that he is sending messages to his teenage children through social media", "video_id": "video12517", "sen_id": 208283}, {"caption": "a man making a video to annoy his teenagers and teach them what to do with their wet towels", "video_id": "video12517", "sen_id": 208284}, {"caption": "a father is explaining why he is using social media to teach his children some things", "video_id": "video12517", "sen_id": 208285}, {"caption": "a segment of a tutorial on how to form wet towels into weapons of mass destrution", "video_id": "video12517", "sen_id": 208286}, {"caption": "a man using social media to promote the use of wet towels", "video_id": "video12517", "sen_id": 208287}, {"caption": "white man in dark blue shirt talking to the camera in a bathroom", "video_id": "video12517", "sen_id": 208288}, {"caption": "the third instructional video for a man s teenage boys about wet towels", "video_id": "video12517", "sen_id": 208289}, {"caption": "there is a tshirt man talking nearby a window", "video_id": "video12517", "sen_id": 208290}, {"caption": "the men explaning the smartphone and their selfie stick feautres", "video_id": "video12517", "sen_id": 208291}, {"caption": "a talking something on the selfie in his home", "video_id": "video12517", "sen_id": 208292}, {"caption": "a man is in a bathroom and talking about instructions", "video_id": "video12517", "sen_id": 208293}, {"caption": "a man on a blue t shirt giving his view to media in a room", "video_id": "video12517", "sen_id": 208294}, {"caption": "a man talking about his instructional video on reptiles", "video_id": "video12517", "sen_id": 208295}, {"caption": "a man speaking to the mobile camera and there is a window behind him", "video_id": "video12517", "sen_id": 208296}, {"caption": "a man in blue t shirt is speaking", "video_id": "video12517", "sen_id": 208297}, {"caption": "a man is in the bathroom talking to the camera", "video_id": "video12517", "sen_id": 208298}, {"caption": "guy in blue tshirt talking to the camera", "video_id": "video12517", "sen_id": 208299}, {"caption": "a man is speaking in the dark and describes the darkness", "video_id": "video10603", "sen_id": 208300}, {"caption": "someone is talking about a something in a dark video", "video_id": "video10603", "sen_id": 208301}, {"caption": "a man is demonstrating bike lights in the middle of a dark city street", "video_id": "video10603", "sen_id": 208302}, {"caption": "a male voiceover explaining what happens on a city street in the nightime", "video_id": "video10603", "sen_id": 208303}, {"caption": "a person telling about the features of a bicycle", "video_id": "video10603", "sen_id": 208304}, {"caption": "it is very dark and a men is talking", "video_id": "video10603", "sen_id": 208305}, {"caption": "lighting and camera shooting a flim", "video_id": "video10603", "sen_id": 208306}, {"caption": "a person showing off a motorcycle and commentatng", "video_id": "video10603", "sen_id": 208307}, {"caption": "different parts of the bike is seen here in darkness", "video_id": "video10603", "sen_id": 208308}, {"caption": "some light reflection is displaying in front of the camera", "video_id": "video10603", "sen_id": 208309}, {"caption": "science project is prepared and used for science day", "video_id": "video10603", "sen_id": 208310}, {"caption": "look like bicycle had lots of lights in front", "video_id": "video10603", "sen_id": 208311}, {"caption": "a man video recording a very dark street while talking about it", "video_id": "video10603", "sen_id": 208312}, {"caption": "a dark stage fitted with lights and equipment waits to start", "video_id": "video10603", "sen_id": 208313}, {"caption": "its a dark knight showing a star in the sky", "video_id": "video10603", "sen_id": 208314}, {"caption": "the front part of device is shown and someone describes it", "video_id": "video10603", "sen_id": 208315}, {"caption": "a man doing something in the dark place", "video_id": "video10603", "sen_id": 208316}, {"caption": "there is some lights blinking in a stage", "video_id": "video10603", "sen_id": 208317}, {"caption": "a man speaks over his bicycle handlebars in the dark", "video_id": "video10603", "sen_id": 208318}, {"caption": "a person describes and demonstrates lights for use on bicycles", "video_id": "video10603", "sen_id": 208319}, {"caption": "there is a waterfall with peaceful music playing in the background", "video_id": "video11417", "sen_id": 208320}, {"caption": "waterfall going down the side of a mountain", "video_id": "video11417", "sen_id": 208321}, {"caption": "a beautiful waterfall in a mountain in the forest", "video_id": "video11417", "sen_id": 208322}, {"caption": "a waterfall out in the middle of nature", "video_id": "video11417", "sen_id": 208323}, {"caption": "waterfalls are shown while sensual music plays in the background", "video_id": "video11417", "sen_id": 208324}, {"caption": "a scenic view of water falling down a rocky cliff", "video_id": "video11417", "sen_id": 208325}, {"caption": "music plays in the background while waterfalls are shown in the video", "video_id": "video11417", "sen_id": 208326}, {"caption": "a waterfall that is pouring down a cliff", "video_id": "video11417", "sen_id": 208327}, {"caption": "fast waterfalls are falling down grey rocks surrounded by trees", "video_id": "video11417", "sen_id": 208328}, {"caption": "we see two views of a waterfall cascading down a mountainside", "video_id": "video11417", "sen_id": 208329}, {"caption": "a calming waterfall flows down the rocks as soft music plays in the background", "video_id": "video11417", "sen_id": 208330}, {"caption": "a video graphic of several white running water waterfalls and playing relaxing jazz music", "video_id": "video11417", "sen_id": 208331}, {"caption": "there is a water fall with hard rocks around", "video_id": "video11417", "sen_id": 208332}, {"caption": "water is falling from a huge mountain and trees aroung", "video_id": "video11417", "sen_id": 208333}, {"caption": "showing the diffrent type of water falls and the river in the secssion", "video_id": "video11417", "sen_id": 208334}, {"caption": "its a beautiful water falls the water come down and looks super and amazing", "video_id": "video11417", "sen_id": 208335}, {"caption": "a boy is having bath on waterfall with short pant", "video_id": "video11417", "sen_id": 208336}, {"caption": "a beautiful natural waterfall is falling from mountain which looks very nice", "video_id": "video11417", "sen_id": 208337}, {"caption": "beautiful and big falls with sound in nature", "video_id": "video11417", "sen_id": 208338}, {"caption": "the waterfall rushes down the side of the mountain", "video_id": "video11417", "sen_id": 208339}, {"caption": "foreign video with various characters shown while theme music plays", "video_id": "video11589", "sen_id": 208340}, {"caption": "an indian band is playing music and people are dancing", "video_id": "video11589", "sen_id": 208341}, {"caption": "an indian man and woman appear in different scenes from what appears to be the opening credits of a television show", "video_id": "video11589", "sen_id": 208342}, {"caption": "the people are doing great stand-ups and playing in a band", "video_id": "video11589", "sen_id": 208343}, {"caption": "a man goes around helping others while some musicians play in a different room", "video_id": "video11589", "sen_id": 208344}, {"caption": "people are performing music for a show called the flop show", "video_id": "video11589", "sen_id": 208345}, {"caption": "different clips are being shown of different people who are playing music approaching a door dancing talking and walking down stairs", "video_id": "video11589", "sen_id": 208346}, {"caption": "there is a man and a woman sitting side by side in a living room", "video_id": "video11589", "sen_id": 208347}, {"caption": "an indian tv show music clip of the flop show", "video_id": "video11589", "sen_id": 208348}, {"caption": "a group of indian people dancing and moving about an inner city", "video_id": "video11589", "sen_id": 208349}, {"caption": "there is a band playing to the flop show including various scenes such as a man walking down stairs", "video_id": "video11589", "sen_id": 208350}, {"caption": "a band plays while a man dances on a stage and another man with a bow tie sets down a cake", "video_id": "video11589", "sen_id": 208351}, {"caption": "this is the beginning of an show in india", "video_id": "video11589", "sen_id": 208352}, {"caption": "men from a middle eastern country are shown dancing and playing in a band", "video_id": "video11589", "sen_id": 208353}, {"caption": "in the introduction to an indian television show various characters perform different actions", "video_id": "video11589", "sen_id": 208354}, {"caption": "a women is greeting somebody with folded hands", "video_id": "video11589", "sen_id": 208355}, {"caption": "different clips of a flop show and musicians are shown", "video_id": "video11589", "sen_id": 208356}, {"caption": "an advertisement about the asian television show on television", "video_id": "video11589", "sen_id": 208357}, {"caption": "an introduction for an indian show called flop show showing people in different social situations", "video_id": "video11589", "sen_id": 208358}, {"caption": "some men in india are doing some stuff", "video_id": "video11589", "sen_id": 208359}, {"caption": "uptempo music plays while car with happy looking people inside is driving down a street", "video_id": "video12530", "sen_id": 208360}, {"caption": "a person is driving a car on a road in a tropical country", "video_id": "video12530", "sen_id": 208361}, {"caption": "a video that is showing a foreign country's highway", "video_id": "video12530", "sen_id": 208362}, {"caption": "a driving video from a foreign country probably from asia", "video_id": "video12530", "sen_id": 208363}, {"caption": "four people are in car driving down the road", "video_id": "video12530", "sen_id": 208364}, {"caption": "person is shown driving a car then an asian lady wearing purple is shown to be in the car with three other men", "video_id": "video12530", "sen_id": 208365}, {"caption": "a woman is travelling in a car along with few men", "video_id": "video12530", "sen_id": 208366}, {"caption": "a car full of people are traveling down a street", "video_id": "video12530", "sen_id": 208367}, {"caption": "an asian female is riding in a van down the road", "video_id": "video12530", "sen_id": 208368}, {"caption": "a man is driving a car down a highway", "video_id": "video12530", "sen_id": 208369}, {"caption": "a lady in purple dress is travelling in a car", "video_id": "video12530", "sen_id": 208370}, {"caption": "the people are riding in a car", "video_id": "video12530", "sen_id": 208371}, {"caption": "women waving hand while traveling in a vehicle", "video_id": "video12530", "sen_id": 208372}, {"caption": "people drive through city filming an outdoor festival", "video_id": "video12530", "sen_id": 208373}, {"caption": "a man drives down a bumpy street listening to upbeat music", "video_id": "video12530", "sen_id": 208374}, {"caption": "a few people are driving down a large road in a van while electronic music plays", "video_id": "video12530", "sen_id": 208375}, {"caption": "a car running on the road with people", "video_id": "video12530", "sen_id": 208376}, {"caption": "a man driving a group of people around town", "video_id": "video12530", "sen_id": 208377}, {"caption": "somebody is whipping sugarflour and eggs to make a delicious dish", "video_id": "video12530", "sen_id": 208378}, {"caption": "some asians are driving around inside a van", "video_id": "video12530", "sen_id": 208379}, {"caption": "in front of a black board a man in a hawaiian shirt is giving a lesson", "video_id": "video11877", "sen_id": 208380}, {"caption": "a man stands in front of a chalkboard while talking about photos", "video_id": "video11877", "sen_id": 208381}, {"caption": "a man with long gray hair stands in front of a chalkboard", "video_id": "video11877", "sen_id": 208382}, {"caption": "a man is talking about the nature of images and photons", "video_id": "video11877", "sen_id": 208383}, {"caption": "a man with white hair standing in front of a green blackboard explain about a mirror with memory", "video_id": "video11877", "sen_id": 208384}, {"caption": "a old man in white shirt taking a class to the students", "video_id": "video11877", "sen_id": 208385}, {"caption": "a man with a white shirt a large mustache and long grey hair talks about photographic images", "video_id": "video11877", "sen_id": 208386}, {"caption": "the old man is teaching on the board with some writings", "video_id": "video11877", "sen_id": 208387}, {"caption": "an older man wearing a white shirt lectures to the camera in front of a chalkboard", "video_id": "video11877", "sen_id": 208388}, {"caption": "a man is talking infront of a chalk board about images", "video_id": "video11877", "sen_id": 208389}, {"caption": "a man with white hair talking in front of a black board", "video_id": "video11877", "sen_id": 208390}, {"caption": "the man with the gray and white hair is explaining what he has wrote on the chalkboard", "video_id": "video11877", "sen_id": 208391}, {"caption": "an old man talking about the mirror with a memory", "video_id": "video11877", "sen_id": 208392}, {"caption": "this class room same as the mirror with a memory", "video_id": "video11877", "sen_id": 208393}, {"caption": "older man with white hair presenting his study about the nature", "video_id": "video11877", "sen_id": 208394}, {"caption": "a white shirt man talking to his students", "video_id": "video11877", "sen_id": 208395}, {"caption": "a men in white tshirt is telling about something", "video_id": "video11877", "sen_id": 208396}, {"caption": "a man is speaking about the mirror with a memory in front of a blackboard", "video_id": "video11877", "sen_id": 208397}, {"caption": "a man in a white shirt talking in front of a chalk board", "video_id": "video11877", "sen_id": 208398}, {"caption": "a man with long hair is near a chalk board", "video_id": "video11877", "sen_id": 208399}, {"caption": "a self-vlog of a guy skiing and talking about his experience", "video_id": "video11490", "sen_id": 208400}, {"caption": "someone in pink is recording a skiing video", "video_id": "video11490", "sen_id": 208401}, {"caption": "a person with a camera stick filming himself going down a mountain", "video_id": "video11490", "sen_id": 208402}, {"caption": "a man in red is skiing while recording a video", "video_id": "video11490", "sen_id": 208403}, {"caption": "a man in a red coat holds a video camera on a selfie stick while snowboarding", "video_id": "video11490", "sen_id": 208404}, {"caption": "a clip of a guy skiing with a gopro and stopping", "video_id": "video11490", "sen_id": 208405}, {"caption": "a man in a red jacket and jeans is snowboarding down a mountain top", "video_id": "video11490", "sen_id": 208406}, {"caption": "a person is snowboarding down the hill with a camera", "video_id": "video11490", "sen_id": 208407}, {"caption": "a man wearing a red jacket is snowboarding down a slope", "video_id": "video11490", "sen_id": 208408}, {"caption": "a snowboarder points to a rock and sits after realizing it's a horse", "video_id": "video11490", "sen_id": 208409}, {"caption": "a person skiing down a hill points to what he thinks is a rock and then realizes that what he thought was a rock was actually a horse", "video_id": "video11490", "sen_id": 208410}, {"caption": "a man is talking about a rock that he found while snowboarding", "video_id": "video11490", "sen_id": 208411}, {"caption": "there's a snowboarder in a red jacket filming themselves snowboarding with a go pro style camera", "video_id": "video11490", "sen_id": 208412}, {"caption": "a man skiing and using a video camera to record himself", "video_id": "video11490", "sen_id": 208413}, {"caption": "a man in warm clothing and goggles skis down a mountainside", "video_id": "video11490", "sen_id": 208414}, {"caption": "man skiing while recording his experiences with a gopro camera", "video_id": "video11490", "sen_id": 208415}, {"caption": "person in pink dress does the skating he wore specs and gloved", "video_id": "video11490", "sen_id": 208416}, {"caption": "a man snowboarding down a hill notices a rock that turns out to be a stuck horse", "video_id": "video11490", "sen_id": 208417}, {"caption": "a man in a red jacket and blue pants snowboarding holding a camera", "video_id": "video11490", "sen_id": 208418}, {"caption": "a person in a red jacket is in the snow", "video_id": "video11490", "sen_id": 208419}, {"caption": "a man in a blue shirt shakes his fist while he is being interviewed", "video_id": "video10243", "sen_id": 208420}, {"caption": "a new clip interview a shootout pac 12 athlete", "video_id": "video10243", "sen_id": 208421}, {"caption": "a young man sitting and talking to a reporter", "video_id": "video10243", "sen_id": 208422}, {"caption": "a shot put player is interviewed giving tips on the sport", "video_id": "video10243", "sen_id": 208423}, {"caption": "a shot put athlete explains how shot put techniques", "video_id": "video10243", "sen_id": 208424}, {"caption": "an athlete with a short beard and full hair speaks outside in the shade on a grassy field edged with trees across from a low building", "video_id": "video10243", "sen_id": 208425}, {"caption": "famous shot put champion nicholas scarvelis talking his opponents and his game", "video_id": "video10243", "sen_id": 208426}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10243", "sen_id": 208427}, {"caption": "a person in blue telling about is experience of shot put game to the news reporter", "video_id": "video10243", "sen_id": 208428}, {"caption": "the athlete talking about his experience and how he analysis the game", "video_id": "video10243", "sen_id": 208429}, {"caption": "a man in blue shirt is being interviewed by other person", "video_id": "video10243", "sen_id": 208430}, {"caption": "a sports person wearing blue dress is being interviewed near a ground", "video_id": "video10243", "sen_id": 208431}, {"caption": "a young male track athlete is discussing a balance exercise he performs", "video_id": "video10243", "sen_id": 208432}, {"caption": "a man in blue dress lifting shotput in his hand and discussing", "video_id": "video10243", "sen_id": 208433}, {"caption": "a man is doing an interview about playing shot put", "video_id": "video10243", "sen_id": 208434}, {"caption": "a man in blue t-shirt is talking to someone", "video_id": "video10243", "sen_id": 208435}, {"caption": "a man with blue shirt talking about a sportsman", "video_id": "video10243", "sen_id": 208436}, {"caption": "an athlete speaks to the camera for an interview", "video_id": "video10243", "sen_id": 208437}, {"caption": "a shotput in hand and man sitting in blue dress speaking", "video_id": "video10243", "sen_id": 208438}, {"caption": "a shot put player is talking about the aspects of the sport", "video_id": "video10243", "sen_id": 208439}, {"caption": "people walking with moneys signs and amounts above their head", "video_id": "video11701", "sen_id": 208440}, {"caption": "a man reviewing the video game entitled homeless featuring a homeless guy begging for change", "video_id": "video11701", "sen_id": 208441}, {"caption": "a game review of a game that focuses on homeless people begging for change", "video_id": "video11701", "sen_id": 208442}, {"caption": "while images from the game are viable men describe a videogame called homeless where you play as a homeless character", "video_id": "video11701", "sen_id": 208443}, {"caption": "a large 7 in a circle appears as two people start to talk about a video game called homeless we see an urban setting with silhouettes of people and various tags with numerical values scattered around", "video_id": "video11701", "sen_id": 208444}, {"caption": "people going back and fourth in the city with money above their head", "video_id": "video11701", "sen_id": 208445}, {"caption": "some one showing the video of girl in different poses", "video_id": "video11701", "sen_id": 208446}, {"caption": "shadows of people walk down a street in a bad neighborhood a male announcer talks about a video game", "video_id": "video11701", "sen_id": 208447}, {"caption": "an animated cartoon character walking on the road in game", "video_id": "video11701", "sen_id": 208448}, {"caption": "a group of people in silhouette walks past a big screen", "video_id": "video11701", "sen_id": 208449}, {"caption": "a tv show is showing homeless people on screen", "video_id": "video11701", "sen_id": 208450}, {"caption": "two men discussing the perplexing homeless game and making comments about a social commentary", "video_id": "video11701", "sen_id": 208451}, {"caption": "a games reviewer speaks about a certain game which he explains on the screen", "video_id": "video11701", "sen_id": 208452}, {"caption": "a man is talking about a game of playing homeless and silver dollars", "video_id": "video11701", "sen_id": 208453}, {"caption": "a pc motherboard is being shown for sale", "video_id": "video11701", "sen_id": 208454}, {"caption": "while showing a detailed game screen a man with a deep voice describes the game homeless", "video_id": "video11701", "sen_id": 208455}, {"caption": "some count down and the game of shooting is shown if shoot the person the reward is shown", "video_id": "video11701", "sen_id": 208456}, {"caption": "its count down number 7 us displayedthen many people are walking here and there", "video_id": "video11701", "sen_id": 208457}, {"caption": "a guy speaking about a video game silver dollar", "video_id": "video11701", "sen_id": 208458}, {"caption": "some people in a place are walking around", "video_id": "video11701", "sen_id": 208459}, {"caption": "cooked chinese vegetable noodle meal on a plate", "video_id": "video12107", "sen_id": 208460}, {"caption": "an indian woman discusses chinese vegetable noodles", "video_id": "video12107", "sen_id": 208461}, {"caption": "a woman explaining she is about to show you how to cook chinese veg noodles", "video_id": "video12107", "sen_id": 208462}, {"caption": "a woman is speaking in hindi about chinese noodles", "video_id": "video12107", "sen_id": 208463}, {"caption": "a woman speaking in indian while the camera pans over a dish of noodles", "video_id": "video12107", "sen_id": 208464}, {"caption": "an indian lady describing a plate of chinese vegetable noodles", "video_id": "video12107", "sen_id": 208465}, {"caption": "a foreign lady explains in chinese how to prepare chinese noodles and vegetables", "video_id": "video12107", "sen_id": 208466}, {"caption": "food being displayed on the video", "video_id": "video12107", "sen_id": 208467}, {"caption": "a woman instructs on how to make a noodle dish", "video_id": "video12107", "sen_id": 208468}, {"caption": "a lady explaining about chines noodles", "video_id": "video12107", "sen_id": 208469}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12107", "sen_id": 208470}, {"caption": "a channel where you can learn how to make mixed veg noodles", "video_id": "video12107", "sen_id": 208471}, {"caption": "a woman is speaking while showing a large dish of food", "video_id": "video12107", "sen_id": 208472}, {"caption": "pasta and veggies are mixed together in a bowl", "video_id": "video12107", "sen_id": 208473}, {"caption": "in the kitchen someone is talking about a noodle dish made with a couple different vegetables and some sort of sauce", "video_id": "video12107", "sen_id": 208474}, {"caption": "there is a woman in saree talking from the kitchen", "video_id": "video12107", "sen_id": 208475}, {"caption": "a woman on a commercial with a chinese dish with noodles and vegetables", "video_id": "video12107", "sen_id": 208476}, {"caption": "a woman speaking about a chinese cuisine", "video_id": "video12107", "sen_id": 208477}, {"caption": "a woman is talking about a dish of food", "video_id": "video12107", "sen_id": 208478}, {"caption": "a logo for a show is being filmed on tv", "video_id": "video12107", "sen_id": 208479}, {"caption": "a brunette woman sitting and talking while using her hands to emphasize her speech", "video_id": "video12080", "sen_id": 208480}, {"caption": "a black-haired woman in a purple shirt is talking about clothes", "video_id": "video12080", "sen_id": 208481}, {"caption": "a woman discusses how much she loves to dress up for different occasions", "video_id": "video12080", "sen_id": 208482}, {"caption": "a woman in blue is talking about how girls like to dress up", "video_id": "video12080", "sen_id": 208483}, {"caption": "a woman in blue is talking about dressing up in the summer", "video_id": "video12080", "sen_id": 208484}, {"caption": "a woman is talking about how much she loves to dress up", "video_id": "video12080", "sen_id": 208485}, {"caption": "an indian woman talking about her love of dressing up and the joy of summer", "video_id": "video12080", "sen_id": 208486}, {"caption": "a young woman is sitting in a room with white walls and waving her hands around as she speaks", "video_id": "video12080", "sen_id": 208487}, {"caption": "a beautiful girl in a blue top with dark hair talks about dressing up", "video_id": "video12080", "sen_id": 208488}, {"caption": "a girl in a blue shirt talks about dressing up", "video_id": "video12080", "sen_id": 208489}, {"caption": "a girl in a blue shirt is sitting down and talking about playing dress up", "video_id": "video12080", "sen_id": 208490}, {"caption": "a woman with dark hair talks about playing dress up with different clothes", "video_id": "video12080", "sen_id": 208491}, {"caption": "a woman discussing playing dress up", "video_id": "video12080", "sen_id": 208492}, {"caption": "a young woman of indian or middle eastern descent begins to speak about women's clothing for fame box", "video_id": "video12080", "sen_id": 208493}, {"caption": "a young lady talking and expressing herself with her hands", "video_id": "video12080", "sen_id": 208494}, {"caption": "a women is expressing her self as a fame and she is wearing blue tshirt", "video_id": "video12080", "sen_id": 208495}, {"caption": "a woman with dark hair and a blue shirt is speaking to the camera", "video_id": "video12080", "sen_id": 208496}, {"caption": "a girl doing a vlog about dressing up", "video_id": "video12080", "sen_id": 208497}, {"caption": "frame box tv show about guilty bytes with devina a young buitful girl with navy blue color shirt and loose hair is delivering a speech by mono acting with smiling face", "video_id": "video12080", "sen_id": 208498}, {"caption": "a woman with black hair is talking to the camera", "video_id": "video12080", "sen_id": 208499}, {"caption": "there is a video game on screen where characters are high fiving", "video_id": "video10904", "sen_id": 208500}, {"caption": "video game characters discuss their missions for the day", "video_id": "video10904", "sen_id": 208501}, {"caption": "a spoof of eight bit video game footage", "video_id": "video10904", "sen_id": 208502}, {"caption": "two video game characters are joining hands together", "video_id": "video10904", "sen_id": 208503}, {"caption": "two video game characters one dressed in red and the other blue are having a conversation and then they high five", "video_id": "video10904", "sen_id": 208504}, {"caption": "a man and woman are talking about a video game", "video_id": "video10904", "sen_id": 208505}, {"caption": "a couple of animated video game characters converse about themselves", "video_id": "video10904", "sen_id": 208506}, {"caption": "the woman talking about the players in the computer game", "video_id": "video10904", "sen_id": 208507}, {"caption": "someone is playing video game where the characters are chatting", "video_id": "video10904", "sen_id": 208508}, {"caption": "a man is playing a video game and telling about it", "video_id": "video10904", "sen_id": 208509}, {"caption": "two rangers stand outside a fence waiting by a green light", "video_id": "video10904", "sen_id": 208510}, {"caption": "two animated characters stand near a tree and a village and talk together", "video_id": "video10904", "sen_id": 208511}, {"caption": "a humorous sketch between a female and male character in an 8-bit retro-style game", "video_id": "video10904", "sen_id": 208512}, {"caption": "cartoon game in which both soldiers are standing near and starts fighting", "video_id": "video10904", "sen_id": 208513}, {"caption": "a very old looking video game is seen while the characters talk to each other", "video_id": "video10904", "sen_id": 208514}, {"caption": "it s some old gameplay of a video game", "video_id": "video10904", "sen_id": 208515}, {"caption": "a video game were a character says that they are ready to shoot a bunch of stuff", "video_id": "video10904", "sen_id": 208516}, {"caption": "computer generated images of a man and woman talking to each other", "video_id": "video10904", "sen_id": 208517}, {"caption": "two videogame characters describe their quest to save the galaxy", "video_id": "video10904", "sen_id": 208518}, {"caption": "lego blocks formed as a human talking about shoot a bunch of guys", "video_id": "video10904", "sen_id": 208519}, {"caption": "a younger man being interviewed and discusses how me had a lot of money", "video_id": "video10767", "sen_id": 208520}, {"caption": "two men are discussing finances as they sit in an interview", "video_id": "video10767", "sen_id": 208521}, {"caption": "a man talking about how he has made a lot of money for his qualifications", "video_id": "video10767", "sen_id": 208522}, {"caption": "a man is being interviewed about his wealth", "video_id": "video10767", "sen_id": 208523}, {"caption": "a young man in glasses talking to a older man in glasses", "video_id": "video10767", "sen_id": 208524}, {"caption": "two men are talking about how the young man wearing glasses left with a lot of cash money", "video_id": "video10767", "sen_id": 208525}, {"caption": "two men sitting down and having a conversation about money", "video_id": "video10767", "sen_id": 208526}, {"caption": "a young man is speaking to an older man sitting in a chair", "video_id": "video10767", "sen_id": 208527}, {"caption": "two men are having a conversation face to face", "video_id": "video10767", "sen_id": 208528}, {"caption": "edward snowden is asking the questions of an interview", "video_id": "video10767", "sen_id": 208529}, {"caption": "a man wearing black color dress is talking with another person", "video_id": "video10767", "sen_id": 208530}, {"caption": "edward snowden is talking with another man in an interview", "video_id": "video10767", "sen_id": 208531}, {"caption": "a man is being interviewed about the job he used to have", "video_id": "video10767", "sen_id": 208532}, {"caption": "an interview with nsa whistleblower edward snowden describing his current financial situation", "video_id": "video10767", "sen_id": 208533}, {"caption": "in front of a black background one middle aged man in a suit interviews a young man in a black shirt", "video_id": "video10767", "sen_id": 208534}, {"caption": "edward snowden is being interviewed by an older man in a black suit wearing glasses", "video_id": "video10767", "sen_id": 208535}, {"caption": "a person with a pimple on cheeck speaks to a old man", "video_id": "video10767", "sen_id": 208536}, {"caption": "a news reporter interviews an american traitor living in a foriegn country", "video_id": "video10767", "sen_id": 208537}, {"caption": "man with glasses is having conversation with older person", "video_id": "video10767", "sen_id": 208538}, {"caption": "a person speaking about something to another person with pleasant matters", "video_id": "video10767", "sen_id": 208539}, {"caption": "a woman in a music video sings about her love affair", "video_id": "video11791", "sen_id": 208540}, {"caption": "a clip from a music video from rhianna", "video_id": "video11791", "sen_id": 208541}, {"caption": "a woman is shown texting on her thick cell phone", "video_id": "video11791", "sen_id": 208542}, {"caption": "a lyoung black woman standing in the corner holding a cell phone", "video_id": "video11791", "sen_id": 208543}, {"caption": "a woman looking at a man in bed and looking at her phone", "video_id": "video11791", "sen_id": 208544}, {"caption": "a man sleeps in a bed while a woman sings longingly at a windowsill going through a phone", "video_id": "video11791", "sen_id": 208545}, {"caption": "a music video of a woman singing while holding a cell phone", "video_id": "video11791", "sen_id": 208546}, {"caption": "a video is shown by rhianna as she and a man play with their cell phones", "video_id": "video11791", "sen_id": 208547}, {"caption": "a lady operating the phone and singing a song", "video_id": "video11791", "sen_id": 208548}, {"caption": "rhianna sings her hit song in this music video", "video_id": "video11791", "sen_id": 208549}, {"caption": "a music video of a woman in a room with her man", "video_id": "video11791", "sen_id": 208550}, {"caption": "a woman sings while waiting for a man in a hospital bed to wake up", "video_id": "video11791", "sen_id": 208551}, {"caption": "women looking into her mobile and singing song", "video_id": "video11791", "sen_id": 208552}, {"caption": "a woman on her phone while a man is in bed", "video_id": "video11791", "sen_id": 208553}, {"caption": "beyonce sings a song holding a phone and a man is lying in a bed", "video_id": "video11791", "sen_id": 208554}, {"caption": "a dark skinned woman looks down at the cell phone in her hand", "video_id": "video11791", "sen_id": 208555}, {"caption": "man on bed then a sexy girl looks at him she uses mobile to see something", "video_id": "video11791", "sen_id": 208556}, {"caption": "a well cute woman looking at her mobile and thinking about her boy", "video_id": "video11791", "sen_id": 208557}, {"caption": "a woman stands by a window looking at her phone glancing occasionally at her boyfriend as she prepares to leave him", "video_id": "video11791", "sen_id": 208558}, {"caption": "rihanna flipping the keypad of her phone and texting while a man is sleeping on the bed", "video_id": "video11791", "sen_id": 208559}, {"caption": "ben crosby talking about sleepy hollow beauty and the beast origins", "video_id": "video10437", "sen_id": 208560}, {"caption": "someone is describing a disney movie", "video_id": "video10437", "sen_id": 208561}, {"caption": "the plot of a disney movie being explained", "video_id": "video10437", "sen_id": 208562}, {"caption": "a man discusses the tale of sleepy hollow", "video_id": "video10437", "sen_id": 208563}, {"caption": "man describes the charming story of ichabod crane in this disney movie", "video_id": "video10437", "sen_id": 208564}, {"caption": "an animated room with different cartoon characters laughing and watching", "video_id": "video10437", "sen_id": 208565}, {"caption": "a man says bing crosby told the story of 'the legend of sleepy hollow' to a man", "video_id": "video10437", "sen_id": 208566}, {"caption": "books are shown that are quite antiquated in style", "video_id": "video10437", "sen_id": 208567}, {"caption": "the photograph of a former movie star and a book cover are shown in front of classic books with metallic lettering aligned on shelves a scared person salts a hard boiled egg a muscular man tells a story to others around him and a laughing young woman holds a tea cup and saucer", "video_id": "video10437", "sen_id": 208568}, {"caption": "a man talks about an old time classic movie and book", "video_id": "video10437", "sen_id": 208569}, {"caption": "the narrator is talking about the man in the library and the dark tale", "video_id": "video10437", "sen_id": 208570}, {"caption": "a book titled sleepy hollow is being shown with cartoon previews", "video_id": "video10437", "sen_id": 208571}, {"caption": "cartoon woman na pink dress and black collar holding a tea cup", "video_id": "video10437", "sen_id": 208572}, {"caption": "a wooden book shelf is filled with books with colorful bindings", "video_id": "video10437", "sen_id": 208573}, {"caption": "there is a horse and a cricket followed by books a man in a suit sleepy hollow the book and a man dancing while a woman laughs", "video_id": "video10437", "sen_id": 208574}, {"caption": "a man discussing bing s crosby s telling of the legend of sleepy hollow", "video_id": "video10437", "sen_id": 208575}, {"caption": "the animated scenes from the movie the legend of sleepy hollow", "video_id": "video10437", "sen_id": 208576}, {"caption": "an entertainment reporter talks about a famous movie and the way it tells a story", "video_id": "video10437", "sen_id": 208577}, {"caption": "a man narrates the tale of sleepy holly as scenes are display from an animated movie", "video_id": "video10437", "sen_id": 208578}, {"caption": "list of classic movie being shown on screen", "video_id": "video10437", "sen_id": 208579}, {"caption": "information on the actor brian benben is displayed on the screen of the video while theme music plays on", "video_id": "video11990", "sen_id": 208580}, {"caption": "there is a man in a suit who is smiling as his television credits are being shown", "video_id": "video11990", "sen_id": 208581}, {"caption": "a man is portrayed in a suit", "video_id": "video11990", "sen_id": 208582}, {"caption": "a man in his younger years is shown and then a picture as he is now with yellow text over the picture", "video_id": "video11990", "sen_id": 208583}, {"caption": "a short history of brian benben including his acting career and maritals status", "video_id": "video11990", "sen_id": 208584}, {"caption": "a brief biography of an actor is shown to the viewer against a still of his photo", "video_id": "video11990", "sen_id": 208585}, {"caption": "a man in a suit with words being shown across his face then a fade to black with more words", "video_id": "video11990", "sen_id": 208586}, {"caption": "a man in black suit is posing with a smile", "video_id": "video11990", "sen_id": 208587}, {"caption": "a biography of men is described according to his carractor", "video_id": "video11990", "sen_id": 208588}, {"caption": "a introduction scene of television show on hbo channel", "video_id": "video11990", "sen_id": 208589}, {"caption": "guy in suit and tie showing his accomplishment on screen", "video_id": "video11990", "sen_id": 208590}, {"caption": "a man sitting and standing with writing in front", "video_id": "video11990", "sen_id": 208591}, {"caption": "a man wearing black color dressed standing", "video_id": "video11990", "sen_id": 208592}, {"caption": "a detailed video about the brian and their carrier in the tv show", "video_id": "video11990", "sen_id": 208593}, {"caption": "a scrolling shows a brain a actor and displaying his basic information of that tv actor", "video_id": "video11990", "sen_id": 208594}, {"caption": "some white text on a black background is shown", "video_id": "video11990", "sen_id": 208595}, {"caption": "a man in a black suit with tie and white shirt is smiling while some of his achievements are seen on the screen", "video_id": "video11990", "sen_id": 208596}, {"caption": "brian appeared in many tv shows tv-movies and films", "video_id": "video11990", "sen_id": 208597}, {"caption": "a guy in a suit and black tie looks plainly at a friend", "video_id": "video11990", "sen_id": 208598}, {"caption": "a person is showing bunch of photo of celebrity", "video_id": "video11990", "sen_id": 208599}, {"caption": "a lady with a red scarf is talking to a man in a black jacket and hat with a microphone", "video_id": "video12020", "sen_id": 208600}, {"caption": "a man interviews two women on a street in a major city", "video_id": "video12020", "sen_id": 208601}, {"caption": "a man holding a microphone is approached by two women on the street where they discuss going to a show", "video_id": "video12020", "sen_id": 208602}, {"caption": "a man interviewing women who were walking down the street", "video_id": "video12020", "sen_id": 208603}, {"caption": "a man interviews a blonde woman while carrying a microphone", "video_id": "video12020", "sen_id": 208604}, {"caption": "a journalist interviewing the people who walking on the street", "video_id": "video12020", "sen_id": 208605}, {"caption": "there is a suit women talking from the street", "video_id": "video12020", "sen_id": 208606}, {"caption": "an interviewer talks to two women near a busy street", "video_id": "video12020", "sen_id": 208607}, {"caption": "women answering to questions by a guy on mic", "video_id": "video12020", "sen_id": 208608}, {"caption": "a man is street interviewing a women about a show", "video_id": "video12020", "sen_id": 208609}, {"caption": "some one in a road interviewing two ladies", "video_id": "video12020", "sen_id": 208610}, {"caption": "a men is taking interview of women on the streets", "video_id": "video12020", "sen_id": 208611}, {"caption": "the media men are taking interview in the toursit on the road", "video_id": "video12020", "sen_id": 208612}, {"caption": "a man with a microphone is interviewing two girls on the street", "video_id": "video12020", "sen_id": 208613}, {"caption": "a man interviews a woman on the street who is on her way to a diane von furstenburg runway show", "video_id": "video12020", "sen_id": 208614}, {"caption": "some one interviewing two ladies in the busy street of the city", "video_id": "video12020", "sen_id": 208615}, {"caption": "a two girls are walking on a road and talking with mike", "video_id": "video12020", "sen_id": 208616}, {"caption": "one man asking question from women in the road", "video_id": "video12020", "sen_id": 208617}, {"caption": "two women are being interviewed by a tv reporter and two rushing while being questioned by the interviewer", "video_id": "video12020", "sen_id": 208618}, {"caption": "a person taking interview of two pretty woman on the street", "video_id": "video12020", "sen_id": 208619}, {"caption": "a man holding a snake discusses their reproduction abilities", "video_id": "video10046", "sen_id": 208620}, {"caption": "a man holding a snake talking about snakes laying eggs and the temperatures needed", "video_id": "video10046", "sen_id": 208621}, {"caption": "a man in a black shirt is talking with a snake in his hand", "video_id": "video10046", "sen_id": 208622}, {"caption": "a man in a black shirt talks as he holds a snake in his left hand", "video_id": "video10046", "sen_id": 208623}, {"caption": "a man is holding a snake and talking about how they are cared for and why people don't bread them often", "video_id": "video10046", "sen_id": 208624}, {"caption": "a man is explaining how to take care of a specific snake breed and how often they reproduce", "video_id": "video10046", "sen_id": 208625}, {"caption": "a man holds a snake while talking about the breeding rate of said snake", "video_id": "video10046", "sen_id": 208626}, {"caption": "a man is talking about snakes and what temperatures they like", "video_id": "video10046", "sen_id": 208627}, {"caption": "a man in a black shirt is holding a brown snake in his hand", "video_id": "video10046", "sen_id": 208628}, {"caption": "a person is explaining about a snack", "video_id": "video10046", "sen_id": 208629}, {"caption": "a man in a black shirt discusses the habitat that snakes live in", "video_id": "video10046", "sen_id": 208630}, {"caption": "a man having snake on her hand", "video_id": "video10046", "sen_id": 208631}, {"caption": "a man in black having the snake in his hand and telling about the snake", "video_id": "video10046", "sen_id": 208632}, {"caption": "guy in black tshirt holding snake talking to the camera", "video_id": "video10046", "sen_id": 208633}, {"caption": "a black t_shirt man talking with a snake", "video_id": "video10046", "sen_id": 208634}, {"caption": "a man is holding a snake and talking about how to take care of it", "video_id": "video10046", "sen_id": 208635}, {"caption": "a man speaking about snake breeding and their eggs", "video_id": "video10046", "sen_id": 208636}, {"caption": "there is a black tshirt man talking near by shelf", "video_id": "video10046", "sen_id": 208637}, {"caption": "a man wearing a black t-shirt and he holding a snack in his hand it is really making afraid", "video_id": "video10046", "sen_id": 208638}, {"caption": "man holding snake in his hands and telling some facts about it", "video_id": "video10046", "sen_id": 208639}, {"caption": "nature shots of large green bushes and still moving water", "video_id": "video11891", "sen_id": 208640}, {"caption": "classical music is being played on scenes of nature that is composed with the instruments of a cello and a piano", "video_id": "video11891", "sen_id": 208641}, {"caption": "grass is blowing in the wind water is flowing downstream", "video_id": "video11891", "sen_id": 208642}, {"caption": "the sun shinning on some plants and a calm body of water", "video_id": "video11891", "sen_id": 208643}, {"caption": "a small pond ripples while the wind blows accross it", "video_id": "video11891", "sen_id": 208644}, {"caption": "green small plants are moving and then black shadows are reflecting on a calm river", "video_id": "video11891", "sen_id": 208645}, {"caption": "this video show the natural scenories and the river", "video_id": "video11891", "sen_id": 208646}, {"caption": "plats are displayed on the sea water", "video_id": "video11891", "sen_id": 208647}, {"caption": "a natural scene from the forest and the nearer lake with clear floating water", "video_id": "video11891", "sen_id": 208648}, {"caption": "music is playing while images of plants and water", "video_id": "video11891", "sen_id": 208649}, {"caption": "a close up of natural plants is shown followed by a body of water with ripples skimming across the surface", "video_id": "video11891", "sen_id": 208650}, {"caption": "here we can see some green plants and calm sea on the screen", "video_id": "video11891", "sen_id": 208651}, {"caption": "a water are stagnant in the lake and sun light is reflecting in the water", "video_id": "video11891", "sen_id": 208652}, {"caption": "in the forest river is flowing smoothly as the classical music is playing it seems to be like a meditating video", "video_id": "video11891", "sen_id": 208653}, {"caption": "a nature scene including foliage and calm water as music plays", "video_id": "video11891", "sen_id": 208654}, {"caption": "there are some little plants nearby the river", "video_id": "video11891", "sen_id": 208655}, {"caption": "lovely scenery of ferns grasses and a pond is shown while music softly plays", "video_id": "video11891", "sen_id": 208656}, {"caption": "ferns and other plants blow gently in the breeze and a lake offers calm view", "video_id": "video11891", "sen_id": 208657}, {"caption": "person recording the amazing green plants near the lake", "video_id": "video11891", "sen_id": 208658}, {"caption": "the plants and river moves when the breeze came", "video_id": "video11891", "sen_id": 208659}, {"caption": "cars are being thrown up into the air on a movie set", "video_id": "video10336", "sen_id": 208660}, {"caption": "an audience watching different cars one at a time being launched into the air", "video_id": "video10336", "sen_id": 208661}, {"caption": "cars fly into the air as they are thrown up for special effects in movie set", "video_id": "video10336", "sen_id": 208662}, {"caption": "a series of cars flipping in front of a blue screen while being filmed", "video_id": "video10336", "sen_id": 208663}, {"caption": "vehicles are being flown through the air in front of a screen", "video_id": "video10336", "sen_id": 208664}, {"caption": "a group of people watching cars flying up in the air", "video_id": "video10336", "sen_id": 208665}, {"caption": "a behind the scenes clip from an action scene", "video_id": "video10336", "sen_id": 208666}, {"caption": "cars flip up into the air against a blue screen on a movie set", "video_id": "video10336", "sen_id": 208667}, {"caption": "there are a group of people watching and filming cars flipping over one at a time", "video_id": "video10336", "sen_id": 208668}, {"caption": "a few cars are flipping over right in the air", "video_id": "video10336", "sen_id": 208669}, {"caption": "several cars are being thrown in the air while camera films them and director directs the scene", "video_id": "video10336", "sen_id": 208670}, {"caption": "people watch while cars are thrown in the air", "video_id": "video10336", "sen_id": 208671}, {"caption": "cars are launched against a blue screen as filming takes place", "video_id": "video10336", "sen_id": 208672}, {"caption": "cars are being tossed onto a large heap of randomly tossed automobiles", "video_id": "video10336", "sen_id": 208673}, {"caption": "a director on a set is instructing cars to be thrown in the air", "video_id": "video10336", "sen_id": 208674}, {"caption": "a stunt set of a movie with cars flipping all over the place", "video_id": "video10336", "sen_id": 208675}, {"caption": "on a stage set where an director is directing when cars should be launched into the air", "video_id": "video10336", "sen_id": 208676}, {"caption": "a movie set is doing a stunt scene where cars are flipped and thus filmed in front of a blue screen", "video_id": "video10336", "sen_id": 208677}, {"caption": "on the set of a movie various cars are being shot up into the air in a stunt", "video_id": "video10336", "sen_id": 208678}, {"caption": "a stunt crew makes cars launch into the air for a movie", "video_id": "video10336", "sen_id": 208679}, {"caption": "a woman is dry roasting spices and then putting them in a small grinder", "video_id": "video10516", "sen_id": 208680}, {"caption": "a woman explaining how to prepare this particular dish", "video_id": "video10516", "sen_id": 208681}, {"caption": "a woman is making spices in a grinder", "video_id": "video10516", "sen_id": 208682}, {"caption": "a person adds plants to a black vase", "video_id": "video10516", "sen_id": 208683}, {"caption": "a woman narrates as she transfers spices from a metal bowl to an electric spice grinder", "video_id": "video10516", "sen_id": 208684}, {"caption": "a video showing a women putting a bunch of herbs and spices in a grinder", "video_id": "video10516", "sen_id": 208685}, {"caption": "a woman moving some green leafy material from a plate into a coffee grinder", "video_id": "video10516", "sen_id": 208686}, {"caption": "there is a women making a dish in the kitchen", "video_id": "video10516", "sen_id": 208687}, {"caption": "in a kitchen a woman grinds several food products in a small black grinder", "video_id": "video10516", "sen_id": 208688}, {"caption": "a person pouring something to a class for preparing something", "video_id": "video10516", "sen_id": 208689}, {"caption": "a chef describes using fresh roasted spices in a recipe she is working on", "video_id": "video10516", "sen_id": 208690}, {"caption": "a person talks about grinding and preparing dry herbs for use while demonstrating", "video_id": "video10516", "sen_id": 208691}, {"caption": "one women grinding some spices in the crush", "video_id": "video10516", "sen_id": 208692}, {"caption": "a woman describes the process for roasting and grinding spices", "video_id": "video10516", "sen_id": 208693}, {"caption": "a bucket and plate mixing in some ingredients and preparing inside kitchen", "video_id": "video10516", "sen_id": 208694}, {"caption": "leaves and other ingredients are put into black cup", "video_id": "video10516", "sen_id": 208695}, {"caption": "the person scrapes the items in to the black pot", "video_id": "video10516", "sen_id": 208696}, {"caption": "one women make a recipe with spices and grind", "video_id": "video10516", "sen_id": 208697}, {"caption": "an inhome chef works on a special blend of spices for a recipe they are preparing", "video_id": "video10516", "sen_id": 208698}, {"caption": "a person is putting something inside of a cup", "video_id": "video10516", "sen_id": 208699}, {"caption": "a woman is giving directions for a healthy dish using fish sauce or vietnamese sweet sauce", "video_id": "video11863", "sen_id": 208700}, {"caption": "a woman is preparing food with various oriental sauces and spices coconut water onions garlic and cucumbers", "video_id": "video11863", "sen_id": 208701}, {"caption": "asian woman describing the ingredients necessary for a dish", "video_id": "video11863", "sen_id": 208702}, {"caption": "a person is describing all of their asian sauces for the meal", "video_id": "video11863", "sen_id": 208703}, {"caption": "a woman points to a bowl of brown sugar and a can of coconut water", "video_id": "video11863", "sen_id": 208704}, {"caption": "a woman showcases the ingredients she will be using to cook", "video_id": "video11863", "sen_id": 208705}, {"caption": "a receipt video about cooking a certain kind of fish", "video_id": "video11863", "sen_id": 208706}, {"caption": "an in-home chef discusses the ingredients she will be using in a recipe", "video_id": "video11863", "sen_id": 208707}, {"caption": "a woman is explaining ingredients set on a kitchen counter", "video_id": "video11863", "sen_id": 208708}, {"caption": "some food items and ingredients on a table", "video_id": "video11863", "sen_id": 208709}, {"caption": "a chef discusses a group of ingredients she is going to use for a recipe", "video_id": "video11863", "sen_id": 208710}, {"caption": "a woman is describing the ingredients to a vietnamese dish while pointing them out with her finger", "video_id": "video11863", "sen_id": 208711}, {"caption": "a female chef talks about the ingredients for a recipe", "video_id": "video11863", "sen_id": 208712}, {"caption": "in a kitchen counter several ingredients are being pointed out this includes items such as coconut water cucumber onion garlic and greens", "video_id": "video11863", "sen_id": 208713}, {"caption": "a woman is talking while placing her hand on a bottle of fish sauce sweet sauce and other food ingredients", "video_id": "video11863", "sen_id": 208714}, {"caption": "in the kitchen a woman making a dish with vegetables", "video_id": "video11863", "sen_id": 208715}, {"caption": "a woman is showing various cooking ingredients like cucumbers and coconut water", "video_id": "video11863", "sen_id": 208716}, {"caption": "one woman is showing some ingradients for a receipi", "video_id": "video11863", "sen_id": 208717}, {"caption": "a woman is showing the different kind of spice and vegitables", "video_id": "video11863", "sen_id": 208718}, {"caption": "some food is on a plate in a kitchen", "video_id": "video11863", "sen_id": 208719}, {"caption": "a monkey is playing inside a house and jumping on a piece of equipment", "video_id": "video12467", "sen_id": 208720}, {"caption": "a monkey playing on a jungle gym inside a white room", "video_id": "video12467", "sen_id": 208721}, {"caption": "two monkeys playing in a room with a green jungle gym set", "video_id": "video12467", "sen_id": 208722}, {"caption": "a spider monkey is jumping around inside a person's home", "video_id": "video12467", "sen_id": 208723}, {"caption": "multiple monkeys bound around a room with a green structure in it", "video_id": "video12467", "sen_id": 208724}, {"caption": "a pair of monkeys play on an indoor play set", "video_id": "video12467", "sen_id": 208725}, {"caption": "a man and woman coax a monkey to do a jump", "video_id": "video12467", "sen_id": 208726}, {"caption": "a spider monkey is jumping around on a green jungle gym", "video_id": "video12467", "sen_id": 208727}, {"caption": "a monkey jumping off of a green money bar in a room", "video_id": "video12467", "sen_id": 208728}, {"caption": "a monkey is jumping around a playroom someone has created for him at their house", "video_id": "video12467", "sen_id": 208729}, {"caption": "a monkey is jumping inside a room from the wall into a green-colored apparatus made of tubes", "video_id": "video12467", "sen_id": 208730}, {"caption": "two monkeys are climbing around on an inside gymnasium structure", "video_id": "video12467", "sen_id": 208731}, {"caption": "a monkey is climbing on a jungle gym as another is on top of a wall with a flag", "video_id": "video12467", "sen_id": 208732}, {"caption": "a small monkey plays around in an indoor jungle gym built for it", "video_id": "video12467", "sen_id": 208733}, {"caption": "a monkey in a house jumps from a door to a jungle gym", "video_id": "video12467", "sen_id": 208734}, {"caption": "there is a monkey playing inside the house", "video_id": "video12467", "sen_id": 208735}, {"caption": "a monkey jumps on a door then jumps onto green bars", "video_id": "video12467", "sen_id": 208736}, {"caption": "the monkey in the flat and he is very affraid the situation", "video_id": "video12467", "sen_id": 208737}, {"caption": "a monkey is jumping here and there in the home", "video_id": "video12467", "sen_id": 208738}, {"caption": "a monkey and a man walking beside jumping showing laughing speaking displaying on screen", "video_id": "video12467", "sen_id": 208739}, {"caption": "two men walking slowly then a severed head in bandages", "video_id": "video12716", "sen_id": 208740}, {"caption": "a man inside of a cage is being pushed down a hallway while another mans head is being wrapped in cloth", "video_id": "video12716", "sen_id": 208741}, {"caption": "two men work together on a magic trick involving a see through box", "video_id": "video12716", "sen_id": 208742}, {"caption": "a fake head is spinning around on a disk", "video_id": "video12716", "sen_id": 208743}, {"caption": "light fixtures are swinging while one man is pushing another man enclosed in a glass cube a model of a head is spinning while being covered in bandages", "video_id": "video12716", "sen_id": 208744}, {"caption": "two guys move around in a room without any light", "video_id": "video12716", "sen_id": 208745}, {"caption": "an old black and white video with scary sounds and ending with a mans head spinning around 360 degrees on a turn table", "video_id": "video12716", "sen_id": 208746}, {"caption": "vintage footage with eerie lighting shows a man pushing another man around in a glass box before a mannequin head wrapped in gauze spins on a table", "video_id": "video12716", "sen_id": 208747}, {"caption": "a man is in a glass box which is being pushed by around by another man", "video_id": "video12716", "sen_id": 208748}, {"caption": "strange noises echo as a man locks another man into a glass chamber a head wrapped in gauze spins around repeatedly", "video_id": "video12716", "sen_id": 208749}, {"caption": "there is someone working in the darkness without fear", "video_id": "video12716", "sen_id": 208750}, {"caption": "dark night and it looks like it takes place on a boat a mummy wrapped head is spinning", "video_id": "video12716", "sen_id": 208751}, {"caption": "two men work on an experiement using some lighted boxes that roll around", "video_id": "video12716", "sen_id": 208752}, {"caption": " green film depicts two buckets being swung from the ceiling two men with a glass box over them and a fake", "video_id": "video12716", "sen_id": 208753}, {"caption": "two men appeared in the dimly lit house", "video_id": "video12716", "sen_id": 208754}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video12716", "sen_id": 208755}, {"caption": "an old black and white movie that shows a man in a mirror and a head wrapped like a mummy", "video_id": "video12716", "sen_id": 208756}, {"caption": "a light swings in a dark room and shadows dance around the room", "video_id": "video12716", "sen_id": 208757}, {"caption": "two persons are in a room and some fishy things are happenings in the room with background music", "video_id": "video12716", "sen_id": 208758}, {"caption": "a head is being wrapped up in bandages", "video_id": "video12716", "sen_id": 208759}, {"caption": "steve harvey is hosting the family feud and a guy says naked grandma as an answer", "video_id": "video11154", "sen_id": 208760}, {"caption": "a family feud moment where a contestant answered naked grandma", "video_id": "video11154", "sen_id": 208761}, {"caption": "a contestant gives a wacky answer on family feud", "video_id": "video11154", "sen_id": 208762}, {"caption": "contestants yell out answers on a tv game show while the audience laughs", "video_id": "video11154", "sen_id": 208763}, {"caption": "contestants ringing the buzzer on a podium while playing a video game", "video_id": "video11154", "sen_id": 208764}, {"caption": "a bald man stands between a black man and a white man on a game show", "video_id": "video11154", "sen_id": 208765}, {"caption": "a man excitedly answers a question on a family competition show", "video_id": "video11154", "sen_id": 208766}, {"caption": "a television game show with three men one acting as a host while the other two participate as players", "video_id": "video11154", "sen_id": 208767}, {"caption": "two men playing family feud and if the man was a burglar he would not want to see a naked grandma while entering the house", "video_id": "video11154", "sen_id": 208768}, {"caption": "a tv game show host is surprised by contestants comical answer", "video_id": "video11154", "sen_id": 208769}, {"caption": "in a competition two men stand side by side when asked a question both of them hits the button", "video_id": "video11154", "sen_id": 208770}, {"caption": "steve harvey hosts a game show", "video_id": "video11154", "sen_id": 208771}, {"caption": "steve harvey is reading a clue to two contestants facing off on the family feud", "video_id": "video11154", "sen_id": 208772}, {"caption": "a game show host asking two contestants a question", "video_id": "video11154", "sen_id": 208773}, {"caption": "funny family feud game on game show network getting really funny answers", "video_id": "video11154", "sen_id": 208774}, {"caption": "a segment of family feud that asks what a bugler wouldn t want to see", "video_id": "video11154", "sen_id": 208775}, {"caption": "family feud question something a burglar would not want to see when he breaks into a house", "video_id": "video11154", "sen_id": 208776}, {"caption": "a black family plays family feud", "video_id": "video11154", "sen_id": 208777}, {"caption": "tv program where presenter asking question to guests", "video_id": "video11154", "sen_id": 208778}, {"caption": "a score board from a game is being shown", "video_id": "video11154", "sen_id": 208779}, {"caption": "a guy in a blue shirt is playing a guitar and singing", "video_id": "video11868", "sen_id": 208780}, {"caption": "a younger male singing music with a guitar", "video_id": "video11868", "sen_id": 208781}, {"caption": "a young man plays guitar and sings an emotional song", "video_id": "video11868", "sen_id": 208782}, {"caption": "a man in a blue tee shirt plays the guitar and sings", "video_id": "video11868", "sen_id": 208783}, {"caption": "a man plays an acoustic guitar and sings into a microphone", "video_id": "video11868", "sen_id": 208784}, {"caption": "a man playing an acoustic-electric guitar sings a song while seated", "video_id": "video11868", "sen_id": 208785}, {"caption": "a young man plays the guitar and sings into a microphone", "video_id": "video11868", "sen_id": 208786}, {"caption": "a man in a red and blue shirt singing and playing guitar", "video_id": "video11868", "sen_id": 208787}, {"caption": "a young man is in front of a microphone holding a guitar and singing a song", "video_id": "video11868", "sen_id": 208788}, {"caption": "a young man standing on stage holding a guitar and singing into the microphone", "video_id": "video11868", "sen_id": 208789}, {"caption": "a boy is playing guitar and singing a song on mic", "video_id": "video11868", "sen_id": 208790}, {"caption": "a young man performing a song while playing the guitar", "video_id": "video11868", "sen_id": 208791}, {"caption": "a music video shows a man singing and playing guitar on stage", "video_id": "video11868", "sen_id": 208792}, {"caption": "a blonde haired man is playing an acoustic guitar and singing", "video_id": "video11868", "sen_id": 208793}, {"caption": "a cute guys is singing and playing guitar very nicely", "video_id": "video11868", "sen_id": 208794}, {"caption": "a boy singing with his guitar in a mike looking atr something by his side", "video_id": "video11868", "sen_id": 208795}, {"caption": "a man is performing a song in a music video", "video_id": "video11868", "sen_id": 208796}, {"caption": "a music video with a young man singing and holding a guitar in front of a microphone", "video_id": "video11868", "sen_id": 208797}, {"caption": "a younger guy holding a guitar singing a song wearing a necklace with a blue shirt on", "video_id": "video11868", "sen_id": 208798}, {"caption": "a man with a guitar is singing and sitting", "video_id": "video11868", "sen_id": 208799}, {"caption": "a video game about driving plays on a tv screen that is the size of a wall in a media studio", "video_id": "video10518", "sen_id": 208800}, {"caption": "someone driving a car", "video_id": "video10518", "sen_id": 208801}, {"caption": "a large screen showing a video driving game", "video_id": "video10518", "sen_id": 208802}, {"caption": "man and woman watching a video game of driving and criticizing it", "video_id": "video10518", "sen_id": 208803}, {"caption": "a man ans a woman watch a movie trailer in a news program", "video_id": "video10518", "sen_id": 208804}, {"caption": "this video is desribing the different features of a gaming product", "video_id": "video10518", "sen_id": 208805}, {"caption": "woman talking about crashing a car on a race track", "video_id": "video10518", "sen_id": 208806}, {"caption": "a large screen in a modern blue-lit studio shows gloved hands below black sleeves turn a car wheel in different directions before hitting a ridged metal road barrier", "video_id": "video10518", "sen_id": 208807}, {"caption": "a woman is talking about a race car simulation game", "video_id": "video10518", "sen_id": 208808}, {"caption": "a news show gaming discussion shows a video from a driving video game", "video_id": "video10518", "sen_id": 208809}, {"caption": "a girl discusses a racing game with other people while on stage", "video_id": "video10518", "sen_id": 208810}, {"caption": "a driver steers a car on a video game course", "video_id": "video10518", "sen_id": 208811}, {"caption": "there is a man driving a car through the street", "video_id": "video10518", "sen_id": 208812}, {"caption": "the video shows some one playing a video game", "video_id": "video10518", "sen_id": 208813}, {"caption": "two persons giving a presentation in a hall about animated video in-front of others", "video_id": "video10518", "sen_id": 208814}, {"caption": "a woman talking about a car driving in a game that you see on a screen", "video_id": "video10518", "sen_id": 208815}, {"caption": "there is a women explains about car racing", "video_id": "video10518", "sen_id": 208816}, {"caption": "a lady announcer with an accent is speaking to a gentleman in a suit who is badly driving a car in a video game", "video_id": "video10518", "sen_id": 208817}, {"caption": "a new car introduce and trail the car", "video_id": "video10518", "sen_id": 208818}, {"caption": "a boy in black dress and girl in blue dress standing and speaking man wearing glooves and driving a car displaying on screen", "video_id": "video10518", "sen_id": 208819}, {"caption": "a man is giving an interview for a radio station", "video_id": "video11642", "sen_id": 208820}, {"caption": "there is a man giving a radio interview about his favorite actress", "video_id": "video11642", "sen_id": 208821}, {"caption": "a quick movie clip and a man in a brown shirt talking", "video_id": "video11642", "sen_id": 208822}, {"caption": "a man on a a show that talks about movies talks into a microphone", "video_id": "video11642", "sen_id": 208823}, {"caption": "a man discusses the brad pitt spy thriller casting for actress", "video_id": "video11642", "sen_id": 208824}, {"caption": "a man who reviews movies talks about an actress he likes", "video_id": "video11642", "sen_id": 208825}, {"caption": "a man is speaking on the radio giving a review of an actress in a movie", "video_id": "video11642", "sen_id": 208826}, {"caption": "a man on a show explains his points and his feelings", "video_id": "video11642", "sen_id": 208827}, {"caption": "a man is giving an interview about movies on a radio talk show", "video_id": "video11642", "sen_id": 208828}, {"caption": "two mens are discussing with each other by actions", "video_id": "video11642", "sen_id": 208829}, {"caption": "this young man in a black t-shirt is very animated in whatever he is trying to explain to his listeners", "video_id": "video11642", "sen_id": 208830}, {"caption": "its a buy or sell the person wear the tshirt then he talk over the mike", "video_id": "video11642", "sen_id": 208831}, {"caption": "a man giving his opinion on an actress from an upcoming movie", "video_id": "video11642", "sen_id": 208832}, {"caption": "a tshirt man talking with a mic nearby a wall", "video_id": "video11642", "sen_id": 208833}, {"caption": "a man talking with the mike moving hands up and down", "video_id": "video11642", "sen_id": 208834}, {"caption": "an interview with movie producer kristian harloff about his latest movies", "video_id": "video11642", "sen_id": 208835}, {"caption": "there is a man in tshirt talking from the stage", "video_id": "video11642", "sen_id": 208836}, {"caption": "a man told how is buy and sell this product", "video_id": "video11642", "sen_id": 208837}, {"caption": "a guy talks into a microphone on a buy and sell tv channel", "video_id": "video11642", "sen_id": 208838}, {"caption": "a guy is talking on microphone while making hand gestures", "video_id": "video11642", "sen_id": 208839}, {"caption": "a girl in a pink shirt and black pants is putting something blue around her ankle and talking to a lady who is filming", "video_id": "video12591", "sen_id": 208840}, {"caption": "a young girl puts her socks and shoes on", "video_id": "video12591", "sen_id": 208841}, {"caption": "a girl in a red shirt is putting a band around her ankle", "video_id": "video12591", "sen_id": 208842}, {"caption": "a little girl in pink wearing shocks and another little girl passing by", "video_id": "video12591", "sen_id": 208843}, {"caption": "a lady wearing socks for her leg", "video_id": "video12591", "sen_id": 208844}, {"caption": "cute little girl is putting leg band and over it sock", "video_id": "video12591", "sen_id": 208845}, {"caption": "there is a girl in pink dressing wearing foot wear", "video_id": "video12591", "sen_id": 208846}, {"caption": "a girl standing on one leg and wearing her socks on other leg", "video_id": "video12591", "sen_id": 208847}, {"caption": "kids are playing skipping in the hall and one girl is wearing socks", "video_id": "video12591", "sen_id": 208848}, {"caption": "a girl in a pink shirt is doing an exercise", "video_id": "video12591", "sen_id": 208849}, {"caption": "ther is boy wearing socks for his leg standing", "video_id": "video12591", "sen_id": 208850}, {"caption": "an young old is wearing the skin tight socks", "video_id": "video12591", "sen_id": 208851}, {"caption": "a young girl puts a rubber bracelet on her ankle by slipping it over her foot", "video_id": "video12591", "sen_id": 208852}, {"caption": "a girl child wearing a socks on her feet and some elder person guiding her", "video_id": "video12591", "sen_id": 208853}, {"caption": "a girl is putting on a sock in a room", "video_id": "video12591", "sen_id": 208854}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12591", "sen_id": 208855}, {"caption": "one girl wear socks and baby girl there is", "video_id": "video12591", "sen_id": 208856}, {"caption": "a girl wears the blue ring in her legshe stands on the wooden floor", "video_id": "video12591", "sen_id": 208857}, {"caption": "cute girl in pink tshirt wearing leg band", "video_id": "video12591", "sen_id": 208858}, {"caption": "some kids are doing thigns in a room", "video_id": "video12591", "sen_id": 208859}, {"caption": "a man is explaining a radio wave and microwave systems", "video_id": "video12432", "sen_id": 208860}, {"caption": "a man narrating about bell system and microwave radios", "video_id": "video12432", "sen_id": 208861}, {"caption": "a man is discussing how the number of long distance calls has increased", "video_id": "video12432", "sen_id": 208862}, {"caption": "a man is talking about long distance phone calls and microwave radio systems", "video_id": "video12432", "sen_id": 208863}, {"caption": "clips of radio towers standing tall against the sky followed by a clip of a microwave system", "video_id": "video12432", "sen_id": 208864}, {"caption": "a man discusses the increase in long distance telephone calls with the bell system", "video_id": "video12432", "sen_id": 208865}, {"caption": "a man is explaining how cell towers and radio waves work", "video_id": "video12432", "sen_id": 208866}, {"caption": "a large tower for communications is shown here", "video_id": "video12432", "sen_id": 208867}, {"caption": "man explains what microwave radio systems are and how many phone calls can be made with regular ones and then goes on to explain that a new kind of high capacity single side band microwave system has been developed by bell while images of a high capacity single side band microwave radio system are shown", "video_id": "video12432", "sen_id": 208868}, {"caption": "a man talks about long distance phone calls while looking at a phone tower", "video_id": "video12432", "sen_id": 208869}, {"caption": "bell systems developed an expanded microwave system to handle increased phone calls", "video_id": "video12432", "sen_id": 208870}, {"caption": "a man talking about microwave radio systems and how they carry long distance telephone calls", "video_id": "video12432", "sen_id": 208871}, {"caption": "a man talks over an older video about microwave satellite towers", "video_id": "video12432", "sen_id": 208872}, {"caption": "a demonstration of bell's high-capacity system and statistics about how many calls it takes", "video_id": "video12432", "sen_id": 208873}, {"caption": "microwave radio system use in telephone service", "video_id": "video12432", "sen_id": 208874}, {"caption": "the tower of microwaves is shown and someone talks about its usage in us", "video_id": "video12432", "sen_id": 208875}, {"caption": "there are many high towers and a man works on a machine", "video_id": "video12432", "sen_id": 208876}, {"caption": "guy talking about bell labs long distance communication system", "video_id": "video12432", "sen_id": 208877}, {"caption": "a micro wave band system micro wave radio distance a man in blue dress operating machine displaying on screen", "video_id": "video12432", "sen_id": 208878}, {"caption": "a person is filming a tall tower out side", "video_id": "video12432", "sen_id": 208879}, {"caption": "a man talks to kitchen appliances in a comedy sketch", "video_id": "video11834", "sen_id": 208880}, {"caption": "man talking to a toaster while his phone just rang", "video_id": "video11834", "sen_id": 208881}, {"caption": "a man in a black shirt is talking with a kitchen appliance", "video_id": "video11834", "sen_id": 208882}, {"caption": "a man holds a brief discussion with his household appliances and then looks up at his phone", "video_id": "video11834", "sen_id": 208883}, {"caption": "a man with a black shirt talking to the camera", "video_id": "video11834", "sen_id": 208884}, {"caption": "a man was speaking to his appliances and the appliances responded", "video_id": "video11834", "sen_id": 208885}, {"caption": "a guy talking to kitchen appliances and they talk back", "video_id": "video11834", "sen_id": 208886}, {"caption": "a man in a black shirt talking to appliances before looking at his phone", "video_id": "video11834", "sen_id": 208887}, {"caption": "a man in a kitchen is talking to his household appliances", "video_id": "video11834", "sen_id": 208888}, {"caption": "a man is talking to kitchen appliances that are talking including a kitchen scale and a toaster but says no one will believe him", "video_id": "video11834", "sen_id": 208889}, {"caption": "a man talks to items that are located in his kitchen", "video_id": "video11834", "sen_id": 208890}, {"caption": "a person wearing black dress and showing mobile phone", "video_id": "video11834", "sen_id": 208891}, {"caption": "a young man is talking to devices and takes his phone", "video_id": "video11834", "sen_id": 208892}, {"caption": "a guy talking home appliances and then getting a phone call", "video_id": "video11834", "sen_id": 208893}, {"caption": "some one is explaining about some thing which contains balance mobile and few more", "video_id": "video11834", "sen_id": 208894}, {"caption": "a brunette man with curly hair speaks to inanimate objects like his clock and radio", "video_id": "video11834", "sen_id": 208895}, {"caption": "there is a black tshirt man taking his mobile phone on the table", "video_id": "video11834", "sen_id": 208896}, {"caption": "a white person with black dressing is kidding inside the roomat that time person taking his phone when someone ringing", "video_id": "video11834", "sen_id": 208897}, {"caption": "a guy is having a conversation with his home appliances", "video_id": "video11834", "sen_id": 208898}, {"caption": "a man is talking to animated objects and a phone", "video_id": "video11834", "sen_id": 208899}, {"caption": "an older style cartoon with monsters dancing to music", "video_id": "video10815", "sen_id": 208900}, {"caption": "animals dancing in the palm of a mans hands in fire", "video_id": "video10815", "sen_id": 208901}, {"caption": "cartoon characters dance around in the devil's hand and then are dropped into the fire", "video_id": "video10815", "sen_id": 208902}, {"caption": "there is a big animal firing all around", "video_id": "video10815", "sen_id": 208903}, {"caption": "there are many cartoon figures playing on ground", "video_id": "video10815", "sen_id": 208904}, {"caption": "cartoon animals are dancing one fire comes and burns", "video_id": "video10815", "sen_id": 208905}, {"caption": "a cartoon in which a devil cartoon is attacking few other cartoons", "video_id": "video10815", "sen_id": 208906}, {"caption": "bunch of characters dancing and singing in cartoon show", "video_id": "video10815", "sen_id": 208907}, {"caption": "there is a cruel man opening fire from his hands", "video_id": "video10815", "sen_id": 208908}, {"caption": "a monster is consumed in flames which transform into different animals and animals crushed in a palm turn into flames which transform into human beings", "video_id": "video10815", "sen_id": 208909}, {"caption": "a cartoon scene of satan burning things", "video_id": "video10815", "sen_id": 208910}, {"caption": "there is a kingdom attacked and destroyed by an animal", "video_id": "video10815", "sen_id": 208911}, {"caption": "animated animals are dancing and turning into fire", "video_id": "video10815", "sen_id": 208912}, {"caption": "a monster burning animals", "video_id": "video10815", "sen_id": 208913}, {"caption": "three creatures are dancing to the song and suddenly some evil eye is watching and fire is all over them", "video_id": "video10815", "sen_id": 208914}, {"caption": "some cartoon animals are dancing for a demon", "video_id": "video10815", "sen_id": 208915}, {"caption": "its a video clips from a english movie", "video_id": "video10815", "sen_id": 208916}, {"caption": "in a video three animated animals are dancing and bear is firing angry against on them", "video_id": "video10815", "sen_id": 208917}, {"caption": "the flame in the hans of the big godzilla are brakes into many small animals", "video_id": "video10815", "sen_id": 208918}, {"caption": "three animals dancing near the fire and the dragon", "video_id": "video10815", "sen_id": 208919}, {"caption": "a person is showing parts of her which need to be brushed very badly", "video_id": "video10000", "sen_id": 208920}, {"caption": "a women showing how to make a braid a waterfall with her hair", "video_id": "video10000", "sen_id": 208921}, {"caption": "a woman with thick red lipstick is playing with her hair", "video_id": "video10000", "sen_id": 208922}, {"caption": "a teen girl explaining something about her long hair", "video_id": "video10000", "sen_id": 208923}, {"caption": "some hair style options ( water fall ) bas been explained", "video_id": "video10000", "sen_id": 208924}, {"caption": "a woman is showing how to braid her hair into a waterfall", "video_id": "video10000", "sen_id": 208925}, {"caption": "a crazy woman with violet dressing with red lipstick is speaking in room surrounding by photos", "video_id": "video10000", "sen_id": 208926}, {"caption": "a girl describing how to do various types of braids", "video_id": "video10000", "sen_id": 208927}, {"caption": "a strange woman talks about the tangles that are in her long hair", "video_id": "video10000", "sen_id": 208928}, {"caption": "a girl with really big lips is talking about her hair", "video_id": "video10000", "sen_id": 208929}, {"caption": "a brown haired woman with red lipstick is demonstrating hair styling and braiding techniques", "video_id": "video10000", "sen_id": 208930}, {"caption": "a woman giving instructions on how to properly style hair", "video_id": "video10000", "sen_id": 208931}, {"caption": "a girl is demonstrating with her hair on how to make a waterfall braid", "video_id": "video10000", "sen_id": 208932}, {"caption": "a woman demonstrating how to make a braid into a waterfall on her hair", "video_id": "video10000", "sen_id": 208933}, {"caption": "woman is showing her brown hair in front of the camera", "video_id": "video10000", "sen_id": 208934}, {"caption": "a young woman with bright red lipstick is performing a parody consisting of braiding hair and creating hairstyles", "video_id": "video10000", "sen_id": 208935}, {"caption": "a girl wearing a purple sweater and bright pink lipstick is demonstrating hair techniques", "video_id": "video10000", "sen_id": 208936}, {"caption": "a girl is talking about how to style your hair", "video_id": "video10000", "sen_id": 208937}, {"caption": "the girl is dressed in a sexy way and singing to the top of her voice", "video_id": "video10000", "sen_id": 208938}, {"caption": "a person in a room is talking abotu soemthing", "video_id": "video10000", "sen_id": 208939}, {"caption": "a man on a beach with a surfboard running towards the water", "video_id": "video11518", "sen_id": 208940}, {"caption": "the surfers picks up his surfboard and runs into the ocean", "video_id": "video11518", "sen_id": 208941}, {"caption": "a surfer grabs his surfboard and heads into the water", "video_id": "video11518", "sen_id": 208942}, {"caption": "a surefer with long blonde hair and a yellow board surfs in small waves", "video_id": "video11518", "sen_id": 208943}, {"caption": "a young blond man selecting a surf board going off to take a ride on the board and then returning", "video_id": "video11518", "sen_id": 208944}, {"caption": "a man in bathing shorts and carrying a wake board goes out to the water and then returns", "video_id": "video11518", "sen_id": 208945}, {"caption": "a person is prepared to surfboard the grab their surfboard and run towards the water", "video_id": "video11518", "sen_id": 208946}, {"caption": "there is footage of a man on a beach about to surf", "video_id": "video11518", "sen_id": 208947}, {"caption": "a young man in striped surf shorts on a beach is using a boogie board to skim surf the waters edge", "video_id": "video11518", "sen_id": 208948}, {"caption": "men surfing on a beach during a cloudy day", "video_id": "video11518", "sen_id": 208949}, {"caption": "a blonde male surfer takes his surfboard into the ocean exclaiming yeah let s do it and then returns", "video_id": "video11518", "sen_id": 208950}, {"caption": "at a beach a shirtless man with long blonde hair picks up one of two surfboards from the beachfront and takes off towards the water", "video_id": "video11518", "sen_id": 208951}, {"caption": "a guy begins to do skating on the water in beach", "video_id": "video11518", "sen_id": 208952}, {"caption": "on a beach a man is recording himself surfing", "video_id": "video11518", "sen_id": 208953}, {"caption": "a man taking a sefie video of his sea scating", "video_id": "video11518", "sen_id": 208954}, {"caption": "a man surfing off the coast of a beach", "video_id": "video11518", "sen_id": 208955}, {"caption": "a man picking up a skateboard and moving towards the ocean", "video_id": "video11518", "sen_id": 208956}, {"caption": "in sea shore the person takes the surfing board to surf and comes back", "video_id": "video11518", "sen_id": 208957}, {"caption": "a guy runs to the beach shore with his surf board", "video_id": "video11518", "sen_id": 208958}, {"caption": "a guy is walking around on a beach", "video_id": "video11518", "sen_id": 208959}, {"caption": "a woman stirs batter to make a cake", "video_id": "video12650", "sen_id": 208960}, {"caption": "chocolate batter is being poured into the pan for brownies", "video_id": "video12650", "sen_id": 208961}, {"caption": "a woman showing how to correctly prepare a dish", "video_id": "video12650", "sen_id": 208962}, {"caption": "a woman giving detailed instructions on how to correctly prepare this dish", "video_id": "video12650", "sen_id": 208963}, {"caption": "woman lining a tray with chocolate cake mix inside of a kitchen", "video_id": "video12650", "sen_id": 208964}, {"caption": "melted chocolate is being poured onto a baking tray lined with baking paper while a woman describes the process", "video_id": "video12650", "sen_id": 208965}, {"caption": "a chocolate cake mixture is poured onto a baking sheet lined with baking paper while a woman off camera explains the steps of pouring the mixture with her australian accent", "video_id": "video12650", "sen_id": 208966}, {"caption": "someone mixes brownies and purs the chocolate onto a baking sheet", "video_id": "video12650", "sen_id": 208967}, {"caption": "a woman giving instructions on how to make a certain dish", "video_id": "video12650", "sen_id": 208968}, {"caption": "a female voiceover a bowl and a hand illustrate how to pour batter into a pan using a red spoon", "video_id": "video12650", "sen_id": 208969}, {"caption": "someone is stirring cake mix and then pouring it evenly into a pan next they start smoothing it with a spatula", "video_id": "video12650", "sen_id": 208970}, {"caption": "a woman transfers a chocolate mixture to a baking dish", "video_id": "video12650", "sen_id": 208971}, {"caption": "a person demonstrating how to pour chocolate cake batter into a pan and spread it", "video_id": "video12650", "sen_id": 208972}, {"caption": "a woman mixes a thick brown batter and pour the batter into a pan", "video_id": "video12650", "sen_id": 208973}, {"caption": "a woman is preparing a cake to be put in the oven", "video_id": "video12650", "sen_id": 208974}, {"caption": "there is a women preparing chocolate at home", "video_id": "video12650", "sen_id": 208975}, {"caption": "a woman is pouring a food mixture into a large lined pan", "video_id": "video12650", "sen_id": 208976}, {"caption": "some one is explaining something as brown semi liquid falling", "video_id": "video12650", "sen_id": 208977}, {"caption": "a girl saying that the cream that how to flow falt", "video_id": "video12650", "sen_id": 208978}, {"caption": "the chef mixed what appeared to be chocolate cake batter in a bowl", "video_id": "video12650", "sen_id": 208979}, {"caption": "a choir of young children sing prayer of the children together", "video_id": "video10345", "sen_id": 208980}, {"caption": "a child choir is singing while wearing matching shirts", "video_id": "video10345", "sen_id": 208981}, {"caption": "a large group of teenagers sing together in matching t-shirts", "video_id": "video10345", "sen_id": 208982}, {"caption": "a choir with children in black shirts is singing", "video_id": "video10345", "sen_id": 208983}, {"caption": "a choir of children in black shirts rehearse a song", "video_id": "video10345", "sen_id": 208984}, {"caption": "a chorus of children are wearing black shirts with a blue design", "video_id": "video10345", "sen_id": 208985}, {"caption": "an adolescent choir wearing matching black t-shirts with seven blue squares in a circular pattern sing in unison as the conductor instructs", "video_id": "video10345", "sen_id": 208986}, {"caption": "the camera pans over a youth group dressed in blue singing", "video_id": "video10345", "sen_id": 208987}, {"caption": "many children in black shirts with a blue circular object on it are singing", "video_id": "video10345", "sen_id": 208988}, {"caption": "a choir singing while wearing black shirts with blue squares aligned in a circle pattern", "video_id": "video10345", "sen_id": 208989}, {"caption": "a choir of teen aged kids wearing black and blue shirts sing together", "video_id": "video10345", "sen_id": 208990}, {"caption": "a vocal choir of teenage boys and girls sings wearing black and blue tee shirts", "video_id": "video10345", "sen_id": 208991}, {"caption": "there are some people singing a song in a hall", "video_id": "video10345", "sen_id": 208992}, {"caption": "the girl s choir is dressed in black shirts with a blue designs and is singing a tune", "video_id": "video10345", "sen_id": 208993}, {"caption": "woman group performing in black t-shirts with blue flower design", "video_id": "video10345", "sen_id": 208994}, {"caption": "a choir of people is singing a song inside", "video_id": "video10345", "sen_id": 208995}, {"caption": "there are many children s wearing uniform singing a group song", "video_id": "video10345", "sen_id": 208996}, {"caption": "a large choir with both male and female singers wearing black t-shirts with specific blue circular symbols on them singing a pleasant song", "video_id": "video10345", "sen_id": 208997}, {"caption": "group of boys and girls singing in chorus", "video_id": "video10345", "sen_id": 208998}, {"caption": "a young adult choir is singing and are wearing dark shirts with a blue print", "video_id": "video10345", "sen_id": 208999}, {"caption": "a man is giving commentary while adding pepper to eggs encased in meat", "video_id": "video12051", "sen_id": 209000}, {"caption": "two meatballs with eggs in them are on a plate as a man describes the process", "video_id": "video12051", "sen_id": 209001}, {"caption": "a person is preparing eggs baked inside two halves of bread", "video_id": "video12051", "sen_id": 209002}, {"caption": "bread that is carved out with cooked eggs inside sits atop a tray with a bowl of dip nearby", "video_id": "video12051", "sen_id": 209003}, {"caption": "a plate of scotch eggs is being garnished with salt and pepper", "video_id": "video12051", "sen_id": 209004}, {"caption": "a man is reviewing a well-garnished meal containing eggs", "video_id": "video12051", "sen_id": 209005}, {"caption": "there is someone serving a egg dish on the table", "video_id": "video12051", "sen_id": 209006}, {"caption": "in a white colored plate an egg is neatly sliced under green vegetable and in a cup a soup is present", "video_id": "video12051", "sen_id": 209007}, {"caption": "a chef talks about a egg and meat recipe that he has prepared", "video_id": "video12051", "sen_id": 209008}, {"caption": "a man is explaining how to season the inside of an egg", "video_id": "video12051", "sen_id": 209009}, {"caption": "a different type of cutlet is prepared with hard boiled eggs kept in it", "video_id": "video12051", "sen_id": 209010}, {"caption": "the food looks very delicious", "video_id": "video12051", "sen_id": 209011}, {"caption": "a meet stuffed with eggs on a plate with a dipping sauce and green vegtables", "video_id": "video12051", "sen_id": 209012}, {"caption": "a cook admires his finished egg dish with molten egg yolks (no don t call them runny) finished off with a dash of pepper", "video_id": "video12051", "sen_id": 209013}, {"caption": "a man is seasoning molten yolk eggs on a plate", "video_id": "video12051", "sen_id": 209014}, {"caption": "a man is cooking a bread and egg dish", "video_id": "video12051", "sen_id": 209015}, {"caption": "egg is seperated by two parts and filled by pepper", "video_id": "video12051", "sen_id": 209016}, {"caption": "a man is critiquing a meal before he eats it", "video_id": "video12051", "sen_id": 209017}, {"caption": "a man seasoning the cooked eggs and minced meat with some salt", "video_id": "video12051", "sen_id": 209018}, {"caption": "a man makes up some delicious eggs in bread", "video_id": "video12051", "sen_id": 209019}, {"caption": "a woman in her bra and panties on her phone", "video_id": "video10099", "sen_id": 209020}, {"caption": "a commercial ad of woman modeling bra and panties", "video_id": "video10099", "sen_id": 209021}, {"caption": "a woman wearing lingerie in a hotel room gets a text and gets ready to leave", "video_id": "video10099", "sen_id": 209022}, {"caption": "a lingerie advertisement for full-figured women and filmed showing black red and blue lingerie", "video_id": "video10099", "sen_id": 209023}, {"caption": "this is a comercial where a plus size model is wearing nice undergarments", "video_id": "video10099", "sen_id": 209024}, {"caption": "a woman is wearing bikini of different colors and moving around showing her body", "video_id": "video10099", "sen_id": 209025}, {"caption": "a woman is getting dressed for her day while wearing comfortable underwear", "video_id": "video10099", "sen_id": 209026}, {"caption": "a woman is advertising an underwear and bra brand", "video_id": "video10099", "sen_id": 209027}, {"caption": "a woman with large breast trying on different colored bras and panties", "video_id": "video10099", "sen_id": 209028}, {"caption": "a girl in black blue red dress color cloth wearing and holding mobile in hand displaying on screen", "video_id": "video10099", "sen_id": 209029}, {"caption": "a woman wearing different color bra and showing fashion", "video_id": "video10099", "sen_id": 209030}, {"caption": "a woman models in different colors of lingerie", "video_id": "video10099", "sen_id": 209031}, {"caption": "a woman is wearing different colors of bras and modelling", "video_id": "video10099", "sen_id": 209032}, {"caption": "a lady is modeling lingerie in different colors", "video_id": "video10099", "sen_id": 209033}, {"caption": "a fat woman with underwear is admiring herself", "video_id": "video10099", "sen_id": 209034}, {"caption": "there is a woman posing with a black bra", "video_id": "video10099", "sen_id": 209035}, {"caption": "several ladies demonstrate bras for plus-sized women", "video_id": "video10099", "sen_id": 209036}, {"caption": "beautiful heavier set woman wearing black lingerie than wearing red lingerie", "video_id": "video10099", "sen_id": 209037}, {"caption": "brunette woman with perfect body is sending message", "video_id": "video10099", "sen_id": 209038}, {"caption": "a woman in black underwear is posing inside", "video_id": "video10099", "sen_id": 209039}, {"caption": "a young woman with bright red hair and a winter coat of blue fabric and white fur walks in a crowd of business people while music is played", "video_id": "video12943", "sen_id": 209040}, {"caption": "a man sings a love song as we watch a young redheaded woman walks in a crowd", "video_id": "video12943", "sen_id": 209041}, {"caption": "a woman has bright red hair and is walking", "video_id": "video12943", "sen_id": 209042}, {"caption": "a woman walks in a crowd as a song plays", "video_id": "video12943", "sen_id": 209043}, {"caption": "a woman wearing a short red hair cut walks down the street", "video_id": "video12943", "sen_id": 209044}, {"caption": "a women in grey sweater is walking along with a man", "video_id": "video12943", "sen_id": 209045}, {"caption": "a woman in a blue dress walking", "video_id": "video12943", "sen_id": 209046}, {"caption": "one beautiful women walking near crowd with colored hair", "video_id": "video12943", "sen_id": 209047}, {"caption": "a scene of a movie in that scene peoples or walking", "video_id": "video12943", "sen_id": 209048}, {"caption": "a woman with bright red hair is waling in a crowd of people", "video_id": "video12943", "sen_id": 209049}, {"caption": "a woman in a sweater walking in streets with all peoples", "video_id": "video12943", "sen_id": 209050}, {"caption": "there is a women with red short hair walking in the crowd", "video_id": "video12943", "sen_id": 209051}, {"caption": "one beautiful women with colored hair walks in public", "video_id": "video12943", "sen_id": 209052}, {"caption": "a woman with bright red hair walks along in a large crowd of people", "video_id": "video12943", "sen_id": 209053}, {"caption": "a woman smile in reddish color hair is walk on a crowd road", "video_id": "video12943", "sen_id": 209054}, {"caption": "a woman with red hair is walking down that sidewalk in a crowd of people", "video_id": "video12943", "sen_id": 209055}, {"caption": "a woman with red hair wearing a heavy blue coat with off-white trim is walking forward with others", "video_id": "video12943", "sen_id": 209056}, {"caption": "a movie scene is playing some peoples are walking in the movie", "video_id": "video12943", "sen_id": 209057}, {"caption": "a woman walks down the street with a group of people", "video_id": "video12943", "sen_id": 209058}, {"caption": "a women in red short hair is walking", "video_id": "video12943", "sen_id": 209059}, {"caption": "a young girl is putting makeup on her face and talking about which make-up brush to use", "video_id": "video10717", "sen_id": 209060}, {"caption": "a girl explains and demonstrates how to apply eyeshadow to her lids using a long-handled brush and small mirror", "video_id": "video10717", "sen_id": 209061}, {"caption": "a girl demonstrates putting on makeup", "video_id": "video10717", "sen_id": 209062}, {"caption": "a young girls applies shimmery eye shadow and then uses a blending brush", "video_id": "video10717", "sen_id": 209063}, {"caption": "a young woman demonstrates and describes a makeup technique she uses", "video_id": "video10717", "sen_id": 209064}, {"caption": "a young girl is putting make up on her eyes", "video_id": "video10717", "sen_id": 209065}, {"caption": "a young girl applies eyeshadow in front of a camera while talking about different make up brushes", "video_id": "video10717", "sen_id": 209066}, {"caption": "a small girl is excited in applying make up", "video_id": "video10717", "sen_id": 209067}, {"caption": "a girl make up her face and talking front of camera", "video_id": "video10717", "sen_id": 209068}, {"caption": "the smart girl teaches how to apply eye lashes and how to do eye make up", "video_id": "video10717", "sen_id": 209069}, {"caption": "a girl correct her eye using eyeliner and explain how to do it", "video_id": "video10717", "sen_id": 209070}, {"caption": "a young girl is doing her make up in a room", "video_id": "video10717", "sen_id": 209071}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10717", "sen_id": 209072}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video10717", "sen_id": 209073}, {"caption": "a girl doing makeup to her face and mainly to the eyebrow", "video_id": "video10717", "sen_id": 209074}, {"caption": "sexy brunette putting on eye makeup and showing the shades", "video_id": "video10717", "sen_id": 209075}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video10717", "sen_id": 209076}, {"caption": "a young girl describes the brushes she uses to apply makeup to her face", "video_id": "video10717", "sen_id": 209077}, {"caption": "a small girl is telling the method of making her face up", "video_id": "video10717", "sen_id": 209078}, {"caption": "the girl applies shimmering eye shadow to her eye lids", "video_id": "video10717", "sen_id": 209079}, {"caption": "a woman is describing what she bought from the dollar store", "video_id": "video10658", "sen_id": 209080}, {"caption": "a girl is talking about doing a haul and her dollar tree adventure", "video_id": "video10658", "sen_id": 209081}, {"caption": "a women in pink talks about what she does in last few days", "video_id": "video10658", "sen_id": 209082}, {"caption": "a woman in bright red lipstick speaks to the camera and gestures with her hands and hair", "video_id": "video10658", "sen_id": 209083}, {"caption": "a woman in red explains her recent shopping trip for splurges", "video_id": "video10658", "sen_id": 209084}, {"caption": "a blonde lady waves her hands around and smiles as she talks to the camera", "video_id": "video10658", "sen_id": 209085}, {"caption": "blonde woman in a pink sweater standing in front of a white door", "video_id": "video10658", "sen_id": 209086}, {"caption": "a lovely young woman speaks at length about her opinions on fashion related things", "video_id": "video10658", "sen_id": 209087}, {"caption": "a blonde woman talks about her dollar tree finds", "video_id": "video10658", "sen_id": 209088}, {"caption": "an annoying woman vlogs about a dollar store", "video_id": "video10658", "sen_id": 209089}, {"caption": "a woman in a pink shirt and white scarf is standing in a hallway speaking about shopping", "video_id": "video10658", "sen_id": 209090}, {"caption": "a woman with blonde hair and pink lipstick vlogs", "video_id": "video10658", "sen_id": 209091}, {"caption": "a woman in red lipstick in a room talking and using emojis", "video_id": "video10658", "sen_id": 209092}, {"caption": "a lady with a big forehead and painted lips speaks to the viewing and listening audience", "video_id": "video10658", "sen_id": 209093}, {"caption": "a woman in a room wearing red lipstick talking with her hands", "video_id": "video10658", "sen_id": 209094}, {"caption": "a woman is updating her blog on fabb tv about her monster haul she made at dollar tree for staple items", "video_id": "video10658", "sen_id": 209095}, {"caption": "a lady talking and exposing her hair to media", "video_id": "video10658", "sen_id": 209096}, {"caption": "a lady telling about the makeup for the hair and face with excitement", "video_id": "video10658", "sen_id": 209097}, {"caption": "a young woman with straight blonde hair describes her in a purple sweater and matching lipstick describes her shopping list", "video_id": "video10658", "sen_id": 209098}, {"caption": "a woman is in a room talking about things", "video_id": "video10658", "sen_id": 209099}, {"caption": "scientists in a lab are reserching the effects of bacterial and fungal diseases of fruit trees", "video_id": "video12286", "sen_id": 209100}, {"caption": "a lab testing an substance in a lab while a woman talks in the background", "video_id": "video12286", "sen_id": 209101}, {"caption": "a video is talking about bacterial and fungal disesase in a lab", "video_id": "video12286", "sen_id": 209102}, {"caption": "a man in a suit talking outside and scientist in a lab conducting an experiment", "video_id": "video12286", "sen_id": 209103}, {"caption": "2 men in a lab are handling beakers and looking at them attentively", "video_id": "video12286", "sen_id": 209104}, {"caption": "people are working in science laboratory as they are testing something", "video_id": "video12286", "sen_id": 209105}, {"caption": "there is someone scientists experimenting in a lab", "video_id": "video12286", "sen_id": 209106}, {"caption": "a pair of scientists conduct scientific research in a lab while wearing white lab coats", "video_id": "video12286", "sen_id": 209107}, {"caption": "two male doctors doing some experiment in lab", "video_id": "video12286", "sen_id": 209108}, {"caption": "two scientist examines about bacterial and fungal diseases in lab", "video_id": "video12286", "sen_id": 209109}, {"caption": "two people in white shirt are working in laboratory", "video_id": "video12286", "sen_id": 209110}, {"caption": "scientist demonstrates a experiments in the laboratory", "video_id": "video12286", "sen_id": 209111}, {"caption": "in a lab technicians are mesuring and looks for the", "video_id": "video12286", "sen_id": 209112}, {"caption": "a scientist uses a small digital scale to measure out an amount of ingredient", "video_id": "video12286", "sen_id": 209113}, {"caption": "an electronic dignocis device for medical labwhere some culture can be made for fongal and bactrial desease", "video_id": "video12286", "sen_id": 209114}, {"caption": "some people are doing some tests inside a lab", "video_id": "video12286", "sen_id": 209115}, {"caption": "two people wearing long white lab coats are doing an experiment", "video_id": "video12286", "sen_id": 209116}, {"caption": "one lab technician is speaking about something", "video_id": "video12286", "sen_id": 209117}, {"caption": "scientist are doing some experiment with tubes and powder", "video_id": "video12286", "sen_id": 209118}, {"caption": "a couple of guys are doing some science stuff", "video_id": "video12286", "sen_id": 209119}, {"caption": "a guy talking to other people online in a video game", "video_id": "video10935", "sen_id": 209120}, {"caption": "playing a video game called call of duty and showing the scoreboard", "video_id": "video10935", "sen_id": 209121}, {"caption": "a person holding a sniper rifle in a first person shooting game runs around the map", "video_id": "video10935", "sen_id": 209122}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10935", "sen_id": 209123}, {"caption": "a gun shooting an unseen enemies while a pop up box shows scores", "video_id": "video10935", "sen_id": 209124}, {"caption": "a video of a guy playing call of duty", "video_id": "video10935", "sen_id": 209125}, {"caption": "a young man playing a shooting game with another man", "video_id": "video10935", "sen_id": 209126}, {"caption": "a man plays a video game while talking to other people playing", "video_id": "video10935", "sen_id": 209127}, {"caption": "people are talking on a video game live stream to each other", "video_id": "video10935", "sen_id": 209128}, {"caption": "man playing a video game chafing with other people", "video_id": "video10935", "sen_id": 209129}, {"caption": "a young man is playing an online first-person shooting video game and verbally interacting with teammates", "video_id": "video10935", "sen_id": 209130}, {"caption": "its a animated shooting video game", "video_id": "video10935", "sen_id": 209131}, {"caption": "a animated shooting game where the gun goes around and the score board is displayed", "video_id": "video10935", "sen_id": 209132}, {"caption": "a man playing call of duty and showing the scoreboard on the screen", "video_id": "video10935", "sen_id": 209133}, {"caption": "call of duty is being played on the screen while the players are conversing", "video_id": "video10935", "sen_id": 209134}, {"caption": "a score board from a game is being shown", "video_id": "video10935", "sen_id": 209135}, {"caption": "there is a man playing a video game with voice", "video_id": "video10935", "sen_id": 209136}, {"caption": "a third person shooter video game is described by its player", "video_id": "video10935", "sen_id": 209137}, {"caption": "someone playing a first person shooter and talking to teammates", "video_id": "video10935", "sen_id": 209138}, {"caption": "a man talking with people while playing a single shooter video game", "video_id": "video10935", "sen_id": 209139}, {"caption": "a british female army officer talk about women's roles in front line combat a female british army reserve officer talk about how women prepare for front line combat reserve army major lorena ward describes how women are prepared for combat on the front lines", "video_id": "video12457", "sen_id": 209140}, {"caption": "a women in combat fatigue is on a screen behind an anchor women giving a report of women in the front lines", "video_id": "video12457", "sen_id": 209141}, {"caption": "a woman talks about her time in the armed forces", "video_id": "video12457", "sen_id": 209142}, {"caption": "a women army soldier talks in a tv show about women in combat", "video_id": "video12457", "sen_id": 209143}, {"caption": "woman in black shirt is talking for a tv emission", "video_id": "video12457", "sen_id": 209144}, {"caption": "there is a woman in a black shirt with a female soldier on the background television screen", "video_id": "video12457", "sen_id": 209145}, {"caption": "a news story about women in the front line in the military", "video_id": "video12457", "sen_id": 209146}, {"caption": "a woman in a black turtleneck speaks with two computer screens behind her", "video_id": "video12457", "sen_id": 209147}, {"caption": "a woman talking about women in combat roles", "video_id": "video12457", "sen_id": 209148}, {"caption": "a female army reservist talks about women in combat on the front lines who have not been allowed to be part of infantry regiments", "video_id": "video12457", "sen_id": 209149}, {"caption": "a conservative looking woman is sitting in a room", "video_id": "video12457", "sen_id": 209150}, {"caption": "the news story describes women on the front line of the military", "video_id": "video12457", "sen_id": 209151}, {"caption": "a woman in a black shirt on a news show talks about women in combat and their training", "video_id": "video12457", "sen_id": 209152}, {"caption": "a reporter takes about woman in part of combat for last two years and takes about their capability", "video_id": "video12457", "sen_id": 209153}, {"caption": "a woman on tv talking about women in combat", "video_id": "video12457", "sen_id": 209154}, {"caption": "a female soldier is talking about her time in the sand box", "video_id": "video12457", "sen_id": 209155}, {"caption": "a stern woman is talking about woman in infantry who are on the front line in a battle", "video_id": "video12457", "sen_id": 209156}, {"caption": "a woman discusses the prospect of having female soldiers involved in combat missions", "video_id": "video12457", "sen_id": 209157}, {"caption": "woman in black clothes is talking for a tv emission", "video_id": "video12457", "sen_id": 209158}, {"caption": "a woman discusses women s training about being placed on the front line", "video_id": "video12457", "sen_id": 209159}, {"caption": "a photo of a man dressed in winter gear is shown a snowy white landscape has a red arrow pointing to a spot on it a scared emoji appears in the last frame", "video_id": "video12036", "sen_id": 209160}, {"caption": "a picutre of a mountain with a pathway highlighted", "video_id": "video12036", "sen_id": 209161}, {"caption": "a man stands by mountain which then is covered with an emoji", "video_id": "video12036", "sen_id": 209162}, {"caption": "a man looking down the side of a snowy cliff", "video_id": "video12036", "sen_id": 209163}, {"caption": "pictures of a man wear snow gear a point of a snowy mountain and a smiley face", "video_id": "video12036", "sen_id": 209164}, {"caption": "a man is making a video journal of his mountain climb", "video_id": "video12036", "sen_id": 209165}, {"caption": "a snow covered mountain that has a red arrow going accross the top of it", "video_id": "video12036", "sen_id": 209166}, {"caption": "a jacket man climbing to the ice mountain", "video_id": "video12036", "sen_id": 209167}, {"caption": "a man climbs the snow mountain and falls in ice", "video_id": "video12036", "sen_id": 209168}, {"caption": "a man wearing snow costume is seen and then snowy mountains on which red color arrow is marked", "video_id": "video12036", "sen_id": 209169}, {"caption": "there is a man in jacket ready to climb on mountain", "video_id": "video12036", "sen_id": 209170}, {"caption": "earth is moving round and round all rivers are shown", "video_id": "video12036", "sen_id": 209171}, {"caption": "one man walk on top of mountains has snow", "video_id": "video12036", "sen_id": 209172}, {"caption": "mountainous terrain is seen with arrow indicating route", "video_id": "video12036", "sen_id": 209173}, {"caption": "a mountain slope is being shown on the screen", "video_id": "video12036", "sen_id": 209174}, {"caption": "photos of a man and the path he is climbing on a mountain with an emoji at the end", "video_id": "video12036", "sen_id": 209175}, {"caption": "a large red arrow is drawn across a large snowy area", "video_id": "video12036", "sen_id": 209176}, {"caption": "a man is watching a arrow in the snow forest", "video_id": "video12036", "sen_id": 209177}, {"caption": "a trekker is watching mountain snow from up", "video_id": "video12036", "sen_id": 209178}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video12036", "sen_id": 209179}, {"caption": "a man working on the place where the tire goes on his bike", "video_id": "video11177", "sen_id": 209180}, {"caption": "man in a grey long sleeved shirt fixing a red bicycle indoors", "video_id": "video11177", "sen_id": 209181}, {"caption": "man is trying to repair a bike that needs repair", "video_id": "video11177", "sen_id": 209182}, {"caption": "in a garage a man is fixing the front wheel of a bicycle", "video_id": "video11177", "sen_id": 209183}, {"caption": "the wheel forks on a bicycle can be kept apart as they are designed to be by rigid piping", "video_id": "video11177", "sen_id": 209184}, {"caption": "a man showing how to do something involving a bicycle", "video_id": "video11177", "sen_id": 209185}, {"caption": "man in coat repairs his red bicycle with some tools", "video_id": "video11177", "sen_id": 209186}, {"caption": "a man is fitting a bicycle it placed in the ground", "video_id": "video11177", "sen_id": 209187}, {"caption": "a boy is fixing his redcolor bike by adding screws", "video_id": "video11177", "sen_id": 209188}, {"caption": "a man is inside fixing a red bike", "video_id": "video11177", "sen_id": 209189}, {"caption": "there is a man fixing a cycle in front of a shutter", "video_id": "video11177", "sen_id": 209190}, {"caption": "a man is talking while fixing a bike", "video_id": "video11177", "sen_id": 209191}, {"caption": "a man in a hat is working on a red bike that is turned upside down", "video_id": "video11177", "sen_id": 209192}, {"caption": "the man in the black baseball cap fixes the tire on the bicycle", "video_id": "video11177", "sen_id": 209193}, {"caption": "a person is repairing a bicycle with their hands", "video_id": "video11177", "sen_id": 209194}, {"caption": "there is a man repairing a cycle in front of a shop", "video_id": "video11177", "sen_id": 209195}, {"caption": "a person is attempting to fix or alter a red bike", "video_id": "video11177", "sen_id": 209196}, {"caption": "a man in a grey jacket repairs a bicycle", "video_id": "video11177", "sen_id": 209197}, {"caption": "the man wore jeans and a baseball cap while fixing the bike", "video_id": "video11177", "sen_id": 209198}, {"caption": "a man adjusts the front forks on a red bicycle", "video_id": "video11177", "sen_id": 209199}, {"caption": "two men are talking in a car then one of the men is interviewed about the character he plays", "video_id": "video10934", "sen_id": 209200}, {"caption": "kelsey grammar explains the background of some actors he is working with", "video_id": "video10934", "sen_id": 209201}, {"caption": "a man is sitting in a suit an tie explaining what is happening in a movie scene", "video_id": "video10934", "sen_id": 209202}, {"caption": "a man is pointing at another man in a moving vehicle", "video_id": "video10934", "sen_id": 209203}, {"caption": "actor kelsey grammer is being interviewed about a character he plays in a movie", "video_id": "video10934", "sen_id": 209204}, {"caption": "a man in a suit talks to a young man in a car and is being interviewed", "video_id": "video10934", "sen_id": 209205}, {"caption": "chelsea grammer having words with another man in a car", "video_id": "video10934", "sen_id": 209206}, {"caption": "man wearing a blue suit sitting in a warehouse speaking", "video_id": "video10934", "sen_id": 209207}, {"caption": "there is a black suit man talking from a living room", "video_id": "video10934", "sen_id": 209208}, {"caption": "an old man looks at the camera then stands up with vigor and poise", "video_id": "video10934", "sen_id": 209209}, {"caption": "a man talking to another man and telling about something", "video_id": "video10934", "sen_id": 209210}, {"caption": "a quick preview and some informtion about a show the starz channel", "video_id": "video10934", "sen_id": 209211}, {"caption": "men are riding down the street talking to each other", "video_id": "video10934", "sen_id": 209212}, {"caption": "one old man and a boy is talking", "video_id": "video10934", "sen_id": 209213}, {"caption": "man asks acquaintance questions in a limousine in this behind the scenes look", "video_id": "video10934", "sen_id": 209214}, {"caption": "a man in a jacket is sitting down and smiling", "video_id": "video10934", "sen_id": 209215}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10934", "sen_id": 209216}, {"caption": "two men wearing coat and talking about something", "video_id": "video10934", "sen_id": 209217}, {"caption": "kelsey grammar voicing over scenes of a show starring himself during an interview", "video_id": "video10934", "sen_id": 209218}, {"caption": "two people in a car and a men s eye and men talking something", "video_id": "video10934", "sen_id": 209219}, {"caption": "a clown watching a sand timer run out of time", "video_id": "video12772", "sen_id": 209220}, {"caption": "a man with his face painted like a clown is staring at some props", "video_id": "video12772", "sen_id": 209221}, {"caption": "a clown guy doing a trick with a sand glass", "video_id": "video12772", "sen_id": 209222}, {"caption": "a man in clown makeup watches a sand timer and makes weird noises", "video_id": "video12772", "sen_id": 209223}, {"caption": "a clown uses an hour glass as part of a gag", "video_id": "video12772", "sen_id": 209224}, {"caption": "a clown waiting for a plastic hourglass to complete waiting on plastic figurines to perform an action upon time running out but they do nothing so he resets it and looks frustrated", "video_id": "video12772", "sen_id": 209225}, {"caption": "a man yellow and purple color dressed", "video_id": "video12772", "sen_id": 209226}, {"caption": "a clown in lime green is watching a red hourglass", "video_id": "video12772", "sen_id": 209227}, {"caption": "a man in a clown costume and make up looking at a minute glass and then speaking gibberish whilst looking flustered", "video_id": "video12772", "sen_id": 209228}, {"caption": "a man dressed in a clown costume talks gibberish while he watches a timer run out then sadly gestures and starts the timer again", "video_id": "video12772", "sen_id": 209229}, {"caption": "a man dressed like a joker and doing something interesting", "video_id": "video12772", "sen_id": 209230}, {"caption": "a bald person wearing blue overalls over a yellow shirt has white makeup in circles around his eyes and mouth and outlined in black", "video_id": "video12772", "sen_id": 209231}, {"caption": "a man is like a pafoon and playing with a toys", "video_id": "video12772", "sen_id": 209232}, {"caption": "a grown bold headed clown playing with a hour glass", "video_id": "video12772", "sen_id": 209233}, {"caption": "there is a man in a clown costume looking at a sand timer", "video_id": "video12772", "sen_id": 209234}, {"caption": "there is a man playing with some toys", "video_id": "video12772", "sen_id": 209235}, {"caption": "one man looks like joker and make a movement", "video_id": "video12772", "sen_id": 209236}, {"caption": "a man in clown get up doing some activities", "video_id": "video12772", "sen_id": 209237}, {"caption": "a joker in yellow dress is funny to see and do comic things", "video_id": "video12772", "sen_id": 209238}, {"caption": "a clown is looking at a small device", "video_id": "video12772", "sen_id": 209239}, {"caption": "people sneezing into chip bags for a chip commercial", "video_id": "video12910", "sen_id": 209240}, {"caption": "a bunch of dudes in a living room sneeze into their doritos bags", "video_id": "video12910", "sen_id": 209241}, {"caption": "a group of male friends watching a football game purposely sneeze into their doritos so they won't have to share", "video_id": "video12910", "sen_id": 209242}, {"caption": "a group of young men holding chip bags take turns sneezing", "video_id": "video12910", "sen_id": 209243}, {"caption": "young men sneeze in their packages of tortilla chips to avoid sharing with someone", "video_id": "video12910", "sen_id": 209244}, {"caption": "a group of men begin sneezing into their doritos bags after a man wearing a baseball cap and grey sweatshirt walks into the house the group of men appear to be there for watching a game and each have their own bag of chips except the man who walks in", "video_id": "video12910", "sen_id": 209245}, {"caption": "several men are sneezing into bags of doritos", "video_id": "video12910", "sen_id": 209246}, {"caption": "a group of men sneeze into their bags of chips", "video_id": "video12910", "sen_id": 209247}, {"caption": "there is some one sneezing their snacks at home", "video_id": "video12910", "sen_id": 209248}, {"caption": "there was a room full of men eating doritos and some were sneezing", "video_id": "video12910", "sen_id": 209249}, {"caption": "a group of friends is watching television in a living room everyone has a bag of chips except one person", "video_id": "video12910", "sen_id": 209250}, {"caption": "various gentlemen sitting on a couch begin to sneeze which inspires the rest of their companions to sneeze", "video_id": "video12910", "sen_id": 209251}, {"caption": "a number of boys sitting and standing and snnezing nose eating chips displaying on screen", "video_id": "video12910", "sen_id": 209252}, {"caption": "men sitting and standing in a white living room sneeze into their open bags of chips before an empty-handed man pulls out his own bag from his jacket", "video_id": "video12910", "sen_id": 209253}, {"caption": "some men are sitting and some men are standing", "video_id": "video12910", "sen_id": 209254}, {"caption": "a humorous doritos commercial shows grown men sneezing into bags of doritos to claim them for themselves", "video_id": "video12910", "sen_id": 209255}, {"caption": "there are many friends sitting on a sofa with chips packets in their hand", "video_id": "video12910", "sen_id": 209256}, {"caption": "advertisement section all guys sneeze for the doritos medicine advertisement is being shown the ad is really funny", "video_id": "video12910", "sen_id": 209257}, {"caption": "a video clip about an advertisement of a product doritos", "video_id": "video12910", "sen_id": 209258}, {"caption": "bunch of people eating the product and showing it features", "video_id": "video12910", "sen_id": 209259}, {"caption": "a woman is giving an interview about a little boy", "video_id": "video10921", "sen_id": 209260}, {"caption": "a small boy walking across a stretch of dirt followed by a woman in blue sitting in a chair", "video_id": "video10921", "sen_id": 209261}, {"caption": "akid walking on some sand and a woman in blue talking", "video_id": "video10921", "sen_id": 209262}, {"caption": "an individual walks on a beach while his disorder is discussed", "video_id": "video10921", "sen_id": 209263}, {"caption": "a child is walking down a beach and then a women is talking", "video_id": "video10921", "sen_id": 209264}, {"caption": "a young boy walks along a stretch of highway as the sun goes down", "video_id": "video10921", "sen_id": 209265}, {"caption": "a woman in a blue shirt talks while sitting in a movie theater", "video_id": "video10921", "sen_id": 209266}, {"caption": "someone walking on the sand and a lady sitting down in a chair", "video_id": "video10921", "sen_id": 209267}, {"caption": "a woman telling about the kid walking", "video_id": "video10921", "sen_id": 209268}, {"caption": "a women in blue dress is telling news report", "video_id": "video10921", "sen_id": 209269}, {"caption": "we see a small person walking in the sand and then a woman wearing a blue shirt sitting and talking to the camera", "video_id": "video10921", "sen_id": 209270}, {"caption": "a reporter does a story about a little boy who has a disease who s body is aging very rapidly", "video_id": "video10921", "sen_id": 209271}, {"caption": "sexy brunette in blue top talking to the camera", "video_id": "video10921", "sen_id": 209272}, {"caption": "there is a boy in jacket walking under the clouded sky", "video_id": "video10921", "sen_id": 209273}, {"caption": "a child is walking on the sand and a lady talking about his disease", "video_id": "video10921", "sen_id": 209274}, {"caption": "the lady is wearing a dark blue dress and talking about something", "video_id": "video10921", "sen_id": 209275}, {"caption": "there is a kid walking below the clouded sky", "video_id": "video10921", "sen_id": 209276}, {"caption": "a girl wearing blue dress talking to a man", "video_id": "video10921", "sen_id": 209277}, {"caption": "a news reporter does a story on a small child who is aging very quickly", "video_id": "video10921", "sen_id": 209278}, {"caption": "sexy brunette doctor in blue top talking about her patient", "video_id": "video10921", "sen_id": 209279}, {"caption": "a pair of couples speak to each other and kiss in romantic ways", "video_id": "video12455", "sen_id": 209280}, {"caption": "a man kisses a woman and then another man talks to a woman laying grass", "video_id": "video12455", "sen_id": 209281}, {"caption": "a compilation of men and women romantically kissing each other", "video_id": "video12455", "sen_id": 209282}, {"caption": "a man and a woman kiss each other in front of a dark backdrop in a city", "video_id": "video12455", "sen_id": 209283}, {"caption": "woman talking about seduction scenes on watchmojo television", "video_id": "video12455", "sen_id": 209284}, {"caption": "a show host talks of the romantic scenes in television shows", "video_id": "video12455", "sen_id": 209285}, {"caption": "multiple images of couples appear and they all kiss each other", "video_id": "video12455", "sen_id": 209286}, {"caption": "a hot scenes are playing in the watchmojo", "video_id": "video12455", "sen_id": 209287}, {"caption": "a man and woman kiss then a woman is on the grass with a man leaning over her", "video_id": "video12455", "sen_id": 209288}, {"caption": "a man and woman are interacting outside", "video_id": "video12455", "sen_id": 209289}, {"caption": "there is a suit man kissing his girlfriend", "video_id": "video12455", "sen_id": 209290}, {"caption": "a man and a women are seen kissing each other a lady s voice is heard welcoming the viewers to watchmojo and she further says that today we are counting down our pictures for the top 10 tv seduction scenes", "video_id": "video12455", "sen_id": 209291}, {"caption": "guy in suit making love with beautiful girl", "video_id": "video12455", "sen_id": 209292}, {"caption": "an advertisement about watch moja is going on in a tv", "video_id": "video12455", "sen_id": 209293}, {"caption": "some men and women are being loving with each other", "video_id": "video12455", "sen_id": 209294}, {"caption": "com picks up off the top 10 seduction scene from the movies", "video_id": "video12455", "sen_id": 209295}, {"caption": "the tudors (2007-10) one man and women kissing and romancing in", "video_id": "video12455", "sen_id": 209296}, {"caption": "a couple having romance in the parkthe girl has black color hair", "video_id": "video12455", "sen_id": 209297}, {"caption": "a curly hair women is kissing a man and a women is lying on the garden talking to the man sitting beside her", "video_id": "video12455", "sen_id": 209298}, {"caption": "a couple is kissing each other and the women is lying in the lawn in his partner s lap", "video_id": "video12455", "sen_id": 209299}, {"caption": "body camera footage of someone walking through an industrial facility", "video_id": "video12098", "sen_id": 209300}, {"caption": "a video finding a dog at a work cite", "video_id": "video12098", "sen_id": 209301}, {"caption": "a person is walking through a maze of pipes to find a dog on a roof", "video_id": "video12098", "sen_id": 209302}, {"caption": "a deck lined with metal poles and fences is explored by a dog", "video_id": "video12098", "sen_id": 209303}, {"caption": "a person is walking on a concrete room where there are many pipes", "video_id": "video12098", "sen_id": 209304}, {"caption": "a dog is walking and standing on top of what looks like a building of some sort", "video_id": "video12098", "sen_id": 209305}, {"caption": "a rooftop is shown with many metal bars and railings", "video_id": "video12098", "sen_id": 209306}, {"caption": "someone climbs up a structure and comes upon a dog", "video_id": "video12098", "sen_id": 209307}, {"caption": "a rooftop is shown with a dog walking upon it", "video_id": "video12098", "sen_id": 209308}, {"caption": "music plays in the background while what appears to be a boating station is shown and then at the end a dog is shown", "video_id": "video12098", "sen_id": 209309}, {"caption": "a person walks along a walk way in an industrial type area", "video_id": "video12098", "sen_id": 209310}, {"caption": "a dog catcher slowly approaches an abandoned dog", "video_id": "video12098", "sen_id": 209311}, {"caption": "a large brown and white dog stands on a black surface", "video_id": "video12098", "sen_id": 209312}, {"caption": "one big dog is watching in the road so", "video_id": "video12098", "sen_id": 209313}, {"caption": "point of view video of someone walking with a dog featured at the end", "video_id": "video12098", "sen_id": 209314}, {"caption": "there is a person walking with a stick towards a dog", "video_id": "video12098", "sen_id": 209315}, {"caption": "a man with a dog catching noose tries to sneak up behind a stray dog", "video_id": "video12098", "sen_id": 209316}, {"caption": "a dog is standing on a road moving its neck", "video_id": "video12098", "sen_id": 209317}, {"caption": "a camera is passing through factory and records a giant dog standing", "video_id": "video12098", "sen_id": 209318}, {"caption": "someone is filming themself on top of a roof", "video_id": "video12098", "sen_id": 209319}, {"caption": "commentary about a tv show miami vice", "video_id": "video10505", "sen_id": 209320}, {"caption": "a man is watching a woman in a bathing as she gets up and walks away", "video_id": "video10505", "sen_id": 209321}, {"caption": "a man dances vogue-style near a smoker and onlookers while a woman leaves a chaise lounge pulling her shirt closed over her bikini bottom", "video_id": "video10505", "sen_id": 209322}, {"caption": "a woman is talking about a show from the 80s called miami vice", "video_id": "video10505", "sen_id": 209323}, {"caption": "a man in a suit jacket takes off his glasses then a beautiful woman gets out of a beach chair", "video_id": "video10505", "sen_id": 209324}, {"caption": "a woman announcer is reading off a list showing scenes from miami vice the show at the 10th spot", "video_id": "video10505", "sen_id": 209325}, {"caption": "a man in white over coat and glasses is watching over as a women in green top just gets up", "video_id": "video10505", "sen_id": 209326}, {"caption": "a lady is walking on the ground", "video_id": "video10505", "sen_id": 209327}, {"caption": "a monkey see the dansing programm and a girl go the swimming dreess", "video_id": "video10505", "sen_id": 209328}, {"caption": "a girl with a blue bathing suit stands and walks", "video_id": "video10505", "sen_id": 209329}, {"caption": "a woman in green is sitting on a chair get up and walk away", "video_id": "video10505", "sen_id": 209330}, {"caption": "a puppet in a trench coat talks", "video_id": "video10505", "sen_id": 209331}, {"caption": "a movie is playing in the watchmojo", "video_id": "video10505", "sen_id": 209332}, {"caption": "watch mojo talks about miami vice on their top 10 countdown list", "video_id": "video10505", "sen_id": 209333}, {"caption": "man with cigaret in mouth seen walking down crowded street removing his sun glasses", "video_id": "video10505", "sen_id": 209334}, {"caption": "a woman s voice narrating and video clips playing popular shows from the eighties", "video_id": "video10505", "sen_id": 209335}, {"caption": "a scene about miami vice in 1984-89 is clearly shown the beach containing coconut trees are loveable places the green dressed young cute girls is enjoying well", "video_id": "video10505", "sen_id": 209336}, {"caption": "a black guy going break dance in the street and a white guy watching it", "video_id": "video10505", "sen_id": 209337}, {"caption": "caption of a movie named miami vice is shown at number ten", "video_id": "video10505", "sen_id": 209338}, {"caption": "a man in a white blazer with a light blue shirt smokes a cigarette on a miami street with a man dancing in the background", "video_id": "video10505", "sen_id": 209339}, {"caption": "a person cooking some roasted vegetable adding a topping", "video_id": "video10081", "sen_id": 209340}, {"caption": "a person is adding some filling to roasted vegetables", "video_id": "video10081", "sen_id": 209341}, {"caption": "cooked eggplants are filled with mixed meat and tomatoes", "video_id": "video10081", "sen_id": 209342}, {"caption": "a cook is stuffing vegetables with meat and sauce", "video_id": "video10081", "sen_id": 209343}, {"caption": "a person stuffing halved eggplant with a meat mixture", "video_id": "video10081", "sen_id": 209344}, {"caption": "a man showing how to stuff eggplant with a spoon", "video_id": "video10081", "sen_id": 209345}, {"caption": "in the kitchen a man serving food with a spoon", "video_id": "video10081", "sen_id": 209346}, {"caption": "brinjals are kept sliced lengthwise and masala is put into it using a spoon", "video_id": "video10081", "sen_id": 209347}, {"caption": "a man explaining about some dish prepared by him", "video_id": "video10081", "sen_id": 209348}, {"caption": "a british cook is putting beef on top of vegetable slices", "video_id": "video10081", "sen_id": 209349}, {"caption": "there is a man making dish with a fruit", "video_id": "video10081", "sen_id": 209350}, {"caption": "placing a spoonful of meat mixture on to the vegetables", "video_id": "video10081", "sen_id": 209351}, {"caption": "stuffed roasted eggplant is prepared by a cook", "video_id": "video10081", "sen_id": 209352}, {"caption": "a man puts stuffing into an avocado cut into halves", "video_id": "video10081", "sen_id": 209353}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video10081", "sen_id": 209354}, {"caption": "someone is serving food onto a cooked and halved vegetable", "video_id": "video10081", "sen_id": 209355}, {"caption": "man prepares a vegetarian dish out of various exotic ingredients", "video_id": "video10081", "sen_id": 209356}, {"caption": "halved eggplants have been rosated with garilc and are being stuffed iwth yummy looking filling", "video_id": "video10081", "sen_id": 209357}, {"caption": "a man cooking an eggplant recipe with meat", "video_id": "video10081", "sen_id": 209358}, {"caption": "a person is doing cooking show and telling the ingredients", "video_id": "video10081", "sen_id": 209359}, {"caption": "a doll holding an animal is talking to another doll with a flowered dress", "video_id": "video12023", "sen_id": 209360}, {"caption": "two dolls are talking about petting a puppy and how one set her house on fire", "video_id": "video12023", "sen_id": 209361}, {"caption": "small dolls have a conversation about petting a puppy and setting a town on fire", "video_id": "video12023", "sen_id": 209362}, {"caption": "a woman plays with a series of small dolls in an outdoor setting", "video_id": "video12023", "sen_id": 209363}, {"caption": "two barbie doll toy children wearing floral dresses talk with each other in green grass as one holds a baby deer", "video_id": "video12023", "sen_id": 209364}, {"caption": "a girl playing with dolls talking about the importance of not playing with fire", "video_id": "video12023", "sen_id": 209365}, {"caption": "a girl is playing with some girl dolls and playfully narrating their voices making them talk to each other", "video_id": "video12023", "sen_id": 209366}, {"caption": "a person is talking in a strange voice to pretend two dolls with ponytails are talking to each other", "video_id": "video12023", "sen_id": 209367}, {"caption": "a group of dolls outside on the grass while a person ventriloquist projects a conversation", "video_id": "video12023", "sen_id": 209368}, {"caption": "a person is playing with barbies outside in the grass", "video_id": "video12023", "sen_id": 209369}, {"caption": "there are a bunch of children s play dolls together", "video_id": "video12023", "sen_id": 209370}, {"caption": "there are some toys with beautiful dresses on the grass", "video_id": "video12023", "sen_id": 209371}, {"caption": "a woman plays with a set of dolls outside on the grass on a sunny day", "video_id": "video12023", "sen_id": 209372}, {"caption": "a red-headed doll with a fox in her arms talks to a blonde doll with braids", "video_id": "video12023", "sen_id": 209373}, {"caption": "on a grassland a doll in pink dress speaking to another doll in blue dress", "video_id": "video12023", "sen_id": 209374}, {"caption": "in the grass land various types of dolls are displayed in the tourists", "video_id": "video12023", "sen_id": 209375}, {"caption": "dolls with a puppy in her had talking to another doll", "video_id": "video12023", "sen_id": 209376}, {"caption": "several dolls being manipulated and moved with background voices", "video_id": "video12023", "sen_id": 209377}, {"caption": "the playing dolls four or five dolls are there", "video_id": "video12023", "sen_id": 209378}, {"caption": "toys talking to one another you can pet my little puppy but don t set him on fire a second doll gives her reply", "video_id": "video12023", "sen_id": 209379}, {"caption": "shrimp being seared on a cast iron skillet", "video_id": "video11274", "sen_id": 209380}, {"caption": "there are 3 pieces of chicken cooking and sizzling in a black skillet and you can see a man's hand holding tongs taking them out one by one", "video_id": "video11274", "sen_id": 209381}, {"caption": "someone is frying shrimp and then adding the fried shrimp into a metal bowl with vegetables", "video_id": "video11274", "sen_id": 209382}, {"caption": "a man is cooking shrimp and takes them off the heat after only a few seconds", "video_id": "video11274", "sen_id": 209383}, {"caption": "three pieces of shrimp being cooked on a skillet on the stove", "video_id": "video11274", "sen_id": 209384}, {"caption": "someone is cooking shrimps over sizzling skillet", "video_id": "video11274", "sen_id": 209385}, {"caption": "shrimp that are cooking on a pan get pulled out and put into a silver bowl", "video_id": "video11274", "sen_id": 209386}, {"caption": "shrimp cook briefly on a hot pan and are placed in a bowl with other cooked shrimp", "video_id": "video11274", "sen_id": 209387}, {"caption": "a man is frying shrimp then puts the cooked shrimp into a bowl", "video_id": "video11274", "sen_id": 209388}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11274", "sen_id": 209389}, {"caption": "a man is cooking shrimp in a cast iron skillet on a stovetop", "video_id": "video11274", "sen_id": 209390}, {"caption": "a man is cooking some shrimp on a pan and then takes them out", "video_id": "video11274", "sen_id": 209391}, {"caption": "someone is cooking shrimp in a pan and then transferring it into a bowl", "video_id": "video11274", "sen_id": 209392}, {"caption": "a man is frying shrimp in a pan while giving verbal instructions", "video_id": "video11274", "sen_id": 209393}, {"caption": "a person cooking prawns fry in a bowl", "video_id": "video11274", "sen_id": 209394}, {"caption": "in the kitchen someone frying some prawn", "video_id": "video11274", "sen_id": 209395}, {"caption": "the person fries the food on the black skillet", "video_id": "video11274", "sen_id": 209396}, {"caption": "shrimp are being fried in a very hot pan", "video_id": "video11274", "sen_id": 209397}, {"caption": "from kitchen some one frying prawn fishthen collecting it to a another pot", "video_id": "video11274", "sen_id": 209398}, {"caption": "some shrimp is being boiled in a pot", "video_id": "video11274", "sen_id": 209399}, {"caption": "a guy in front of a camera talking about a series that he has called the pooter series", "video_id": "video12302", "sen_id": 209400}, {"caption": "middle aged man in a black tank top talking about his online videos", "video_id": "video12302", "sen_id": 209401}, {"caption": "jack veil discusses instructions on how to use an item", "video_id": "video12302", "sen_id": 209402}, {"caption": "a man with spiked hair and a black tank top talks about his other videos", "video_id": "video12302", "sen_id": 209403}, {"caption": "a man dressed in a black tank top is sitting and making a video about a product", "video_id": "video12302", "sen_id": 209404}, {"caption": "a middle aged white man in a black tank top is talking to the camera", "video_id": "video12302", "sen_id": 209405}, {"caption": "a white man in a black tank top and spiked brown hair is being interviewed", "video_id": "video12302", "sen_id": 209406}, {"caption": "a man in a black tank top sitting in a chair talking", "video_id": "video12302", "sen_id": 209407}, {"caption": "a man in black vest talking about his pooder series videos and other instructional videos", "video_id": "video12302", "sen_id": 209408}, {"caption": "a man names jack is talking about his pooter series of videos", "video_id": "video12302", "sen_id": 209409}, {"caption": "a man is talking about the videos he makes", "video_id": "video12302", "sen_id": 209410}, {"caption": "a man saying something about the product which is in his hand", "video_id": "video12302", "sen_id": 209411}, {"caption": "a men is sitting in the chair and tell some think about the products on their hand", "video_id": "video12302", "sen_id": 209412}, {"caption": "a man in a black t-shirt talks about an item that he is trying to sell", "video_id": "video12302", "sen_id": 209413}, {"caption": "a man in a black tank top sitting in front of a green plant", "video_id": "video12302", "sen_id": 209414}, {"caption": "a guy in a tank top is talking to the camera", "video_id": "video12302", "sen_id": 209415}, {"caption": "a instructional video preparation by a person who is giving some instruction about a product", "video_id": "video12302", "sen_id": 209416}, {"caption": "a man with uncombed hair is wearing a black tank top while sitting in a director s chair in front of a plant", "video_id": "video12302", "sen_id": 209417}, {"caption": "a man speaking about videos and black equipment holding in his hand", "video_id": "video12302", "sen_id": 209418}, {"caption": "a man in a black shirt is talking to the camera", "video_id": "video12302", "sen_id": 209419}, {"caption": "documentary talking about a boy who lived with wild wolves", "video_id": "video12847", "sen_id": 209420}, {"caption": "a large gray wolf runs along a mountain trail", "video_id": "video12847", "sen_id": 209421}, {"caption": "a narrator describes a boy from the sekandra orphanage who lived with wolves and had incredible difficulties being reintroduced to society over pictures of the person", "video_id": "video12847", "sen_id": 209422}, {"caption": "we see images of a wolf before we see old black and white images of a wolf boy", "video_id": "video12847", "sen_id": 209423}, {"caption": "a large gray wolf runs along a mountain pathway", "video_id": "video12847", "sen_id": 209424}, {"caption": "a man narrates the life of a feral child", "video_id": "video12847", "sen_id": 209425}, {"caption": "a boy raised by wolves sits on a branch", "video_id": "video12847", "sen_id": 209426}, {"caption": "a wolf a boy in a tree and a boy on all fours eating", "video_id": "video12847", "sen_id": 209427}, {"caption": "picture of a boy who was alone in the jungle and acted like a wolf", "video_id": "video12847", "sen_id": 209428}, {"caption": " the wolf boy of sekandra man like a wolf", "video_id": "video12847", "sen_id": 209429}, {"caption": "a wolf and still inside forest picture of persons displaying on screen", "video_id": "video12847", "sen_id": 209430}, {"caption": "there is a dog walking through the field", "video_id": "video12847", "sen_id": 209431}, {"caption": "a man is describing a boy that lived with wolves that died at 35", "video_id": "video12847", "sen_id": 209432}, {"caption": "a man is reporting on the wold boy of sekandra while showing still photos", "video_id": "video12847", "sen_id": 209433}, {"caption": "a tv show showing classic photos of wolf boy of sekandra", "video_id": "video12847", "sen_id": 209434}, {"caption": "an educational video about a boy raised by wolves", "video_id": "video12847", "sen_id": 209435}, {"caption": "there is a wolf walking in to the forest", "video_id": "video12847", "sen_id": 209436}, {"caption": "a man is talking about a boy that believed he was a wolg", "video_id": "video12847", "sen_id": 209437}, {"caption": "a wolf walks kids climb a tree a boy is on his knees a man sits near a plant", "video_id": "video12847", "sen_id": 209438}, {"caption": "a wolf is running around out side", "video_id": "video12847", "sen_id": 209439}, {"caption": "a man is discussing the benefits of joining a certain apps membership", "video_id": "video11832", "sen_id": 209440}, {"caption": "a man explaining how to use an app", "video_id": "video11832", "sen_id": 209441}, {"caption": "a man narrates over a demonstration of a phone application", "video_id": "video11832", "sen_id": 209442}, {"caption": "a hand touching and scrolling up the screen of a smartphone", "video_id": "video11832", "sen_id": 209443}, {"caption": "a person scrolling threw their samsung phone", "video_id": "video11832", "sen_id": 209444}, {"caption": "a person is holding a mobile in hand and looking at features", "video_id": "video11832", "sen_id": 209445}, {"caption": "a mobile is displayed with various features", "video_id": "video11832", "sen_id": 209446}, {"caption": "the man is holding the cell phone in his hand and scrolling up the screen", "video_id": "video11832", "sen_id": 209447}, {"caption": "a man is showing different features on a touchscreen smartphone", "video_id": "video11832", "sen_id": 209448}, {"caption": "a person is holding a new phone and telling its new features by scrolling its screeing", "video_id": "video11832", "sen_id": 209449}, {"caption": "some one watching the images in touch screen mobile in front of the camera", "video_id": "video11832", "sen_id": 209450}, {"caption": "somebody is holding a smart phone and explaining its features", "video_id": "video11832", "sen_id": 209451}, {"caption": "the person scrolls up the cell phone with a band on his hand", "video_id": "video11832", "sen_id": 209452}, {"caption": "a man slides his fingers on a smartphone screen", "video_id": "video11832", "sen_id": 209453}, {"caption": "a man is testing and reviewing a smartphone by browsing apps", "video_id": "video11832", "sen_id": 209454}, {"caption": "some one watching videos in a touch screen mobile", "video_id": "video11832", "sen_id": 209455}, {"caption": "a man explain about how to access rogercom to view movies on mobiles", "video_id": "video11832", "sen_id": 209456}, {"caption": "a man holds a cellphone in his hand and scrolls down to see features", "video_id": "video11832", "sen_id": 209457}, {"caption": "a mobile in hand displaying on the screen beside mobile on the screen displaying", "video_id": "video11832", "sen_id": 209458}, {"caption": "a person is using their cell phone", "video_id": "video11832", "sen_id": 209459}, {"caption": "a woman is sitting next to a man talking to him", "video_id": "video11682", "sen_id": 209460}, {"caption": "a young man and woman talking in a bedroom", "video_id": "video11682", "sen_id": 209461}, {"caption": "two people practicing their lines for a film", "video_id": "video11682", "sen_id": 209462}, {"caption": "a man and woman are talking together on the bed", "video_id": "video11682", "sen_id": 209463}, {"caption": "a man sitting on a bed reading lines with a woman sitting on a chair", "video_id": "video11682", "sen_id": 209464}, {"caption": "a woman and a man are sitting together talking in a pink room", "video_id": "video11682", "sen_id": 209465}, {"caption": "seated on a bed a boy and a girl are holding paper and talking", "video_id": "video11682", "sen_id": 209466}, {"caption": "a women and men are sitting on a sofa and they both are talking to each other", "video_id": "video11682", "sen_id": 209467}, {"caption": "a girl and a boy speaks while the girl reads something from the book", "video_id": "video11682", "sen_id": 209468}, {"caption": "japanese couple laying on the bad while the lady is reading something", "video_id": "video11682", "sen_id": 209469}, {"caption": "two friends reading some books on the bed", "video_id": "video11682", "sen_id": 209470}, {"caption": "a man speaking to the lady holding a book", "video_id": "video11682", "sen_id": 209471}, {"caption": "a man and a woman talk back and forth while seated in a bedroom", "video_id": "video11682", "sen_id": 209472}, {"caption": "a boy and girl sitting holding book in hand displaying on screen", "video_id": "video11682", "sen_id": 209473}, {"caption": "a man and woman sit together on a pink bed", "video_id": "video11682", "sen_id": 209474}, {"caption": "a man and woman are having a conversation while sitting on a bed", "video_id": "video11682", "sen_id": 209475}, {"caption": "a young man and a young woman sit on a pink bed and converse", "video_id": "video11682", "sen_id": 209476}, {"caption": "girl and boy sits near the bed and they talk by holding the book in hand", "video_id": "video11682", "sen_id": 209477}, {"caption": "a boy and girl sitting in bed book pen in hand discusing on topic displaying on screen", "video_id": "video11682", "sen_id": 209478}, {"caption": "sexy brunette in dress talking to the guy sitting on the bed", "video_id": "video11682", "sen_id": 209479}, {"caption": "a person is slicing a cucumber into art forms", "video_id": "video11322", "sen_id": 209480}, {"caption": "a person is carefully slicing a cucumber on a table", "video_id": "video11322", "sen_id": 209481}, {"caption": "cucumber art showing how to cut up and design a cucumber with a knife", "video_id": "video11322", "sen_id": 209482}, {"caption": "a person is showing how a cucumber can be made into art", "video_id": "video11322", "sen_id": 209483}, {"caption": "a person makes cuts in a cucumber in make vegetable art", "video_id": "video11322", "sen_id": 209484}, {"caption": "a video showing how to create art form a cucumber", "video_id": "video11322", "sen_id": 209485}, {"caption": "a man showing the right way to cut a cucumber", "video_id": "video11322", "sen_id": 209486}, {"caption": "a person demonstrating how to slice a cucumber to make art", "video_id": "video11322", "sen_id": 209487}, {"caption": "a person is demonstrating how to cut a cucumber to make a fancy food platter", "video_id": "video11322", "sen_id": 209488}, {"caption": "a sculpture of cucumber is shown and a person prepares a cucumber by cutting it into slices", "video_id": "video11322", "sen_id": 209489}, {"caption": "a knife cutting a cucumber in half and then cutting lines in it", "video_id": "video11322", "sen_id": 209490}, {"caption": "in a kitchen someone is showing the viewer how cucumbers can be turned into art", "video_id": "video11322", "sen_id": 209491}, {"caption": "a woman is cutting a cucumber roundly", "video_id": "video11322", "sen_id": 209492}, {"caption": "a person is using a knife to cut in to a vegitable", "video_id": "video11322", "sen_id": 209493}, {"caption": "a person is cutting up a green vegetable", "video_id": "video11322", "sen_id": 209494}, {"caption": "a person cutting a cucumber with knife", "video_id": "video11322", "sen_id": 209495}, {"caption": "a person is slicing a cucumber in a spiral on a white cutting board", "video_id": "video11322", "sen_id": 209496}, {"caption": "a chef demonstrates how to make artistic displays using cucumbers", "video_id": "video11322", "sen_id": 209497}, {"caption": "man slicing the green cucumber on slices for the meal", "video_id": "video11322", "sen_id": 209498}, {"caption": "someone is cutting up a cucumber with a knife", "video_id": "video11322", "sen_id": 209499}, {"caption": "a woman is in a loud restaurant showing and describing all of the different items on the restaurant's menu", "video_id": "video10957", "sen_id": 209500}, {"caption": "woman goes over menu options at a restaurant", "video_id": "video10957", "sen_id": 209501}, {"caption": "a woman is showing the menu for a restaurant and the foods they serve", "video_id": "video10957", "sen_id": 209502}, {"caption": "a woman points out the items on a menu giving numerous examples", "video_id": "video10957", "sen_id": 209503}, {"caption": "a menu is from beaches and cream is presented and described by a woman", "video_id": "video10957", "sen_id": 209504}, {"caption": "a unseen diner at a shake shop discusses drink options with a fellow diner", "video_id": "video10957", "sen_id": 209505}, {"caption": "a woman holds up a menu while explaining the variety of items on the menu", "video_id": "video10957", "sen_id": 209506}, {"caption": "a woman talking about a menu at a restaurant", "video_id": "video10957", "sen_id": 209507}, {"caption": "woman explains about things on a menu while she shows the menu on the screen", "video_id": "video10957", "sen_id": 209508}, {"caption": "a person opens a menu of a malt shop while sitting at the counter", "video_id": "video10957", "sen_id": 209509}, {"caption": "one fellow is just looking at menu items in a food joint", "video_id": "video10957", "sen_id": 209510}, {"caption": "a girl is talking about the menu of a restaurant", "video_id": "video10957", "sen_id": 209511}, {"caption": "a kitchen sink explain the menu of the product", "video_id": "video10957", "sen_id": 209512}, {"caption": "person is talking about the product and its price with features", "video_id": "video10957", "sen_id": 209513}, {"caption": "menu card with milkshakes its read by a lady sitting in a restaurant its mentioned with sweet endings", "video_id": "video10957", "sen_id": 209514}, {"caption": "women talking about a menu card of a restuarant", "video_id": "video10957", "sen_id": 209515}, {"caption": "a woman explain about milk shake with a cook book", "video_id": "video10957", "sen_id": 209516}, {"caption": "a person looks through a menu at a restaurant", "video_id": "video10957", "sen_id": 209517}, {"caption": "a person is talking about the product and its price", "video_id": "video10957", "sen_id": 209518}, {"caption": "someone is filming a menu at a restaurant inside", "video_id": "video10957", "sen_id": 209519}, {"caption": "a man in a suit and white shirt is talking on a tv show", "video_id": "video10191", "sen_id": 209520}, {"caption": "two middle aged men in suits sitting on a stage with televisions behind them", "video_id": "video10191", "sen_id": 209521}, {"caption": "jimmy dore wears a blue suit coat and talks about how poor people should keep it in their pants", "video_id": "video10191", "sen_id": 209522}, {"caption": "two news reporters for fox discuss the young turks", "video_id": "video10191", "sen_id": 209523}, {"caption": "a man in a suit jacket talks animatedly in front of a fox logo", "video_id": "video10191", "sen_id": 209524}, {"caption": "two men are discussing the current new topics of the day", "video_id": "video10191", "sen_id": 209525}, {"caption": "jimmy dore speaks on fox news about shaming poor people", "video_id": "video10191", "sen_id": 209526}, {"caption": "a guy on a tv show is sitting down and talking", "video_id": "video10191", "sen_id": 209527}, {"caption": "the man in the black suit is talking about poor people and scripture", "video_id": "video10191", "sen_id": 209528}, {"caption": "two guys talking in a news room", "video_id": "video10191", "sen_id": 209529}, {"caption": "jimmy dore mocking someone about how they shamed poor people", "video_id": "video10191", "sen_id": 209530}, {"caption": "a man with glasses is speaking about something", "video_id": "video10191", "sen_id": 209531}, {"caption": "a man in a blue blazer pokes fun at how people blame poor people", "video_id": "video10191", "sen_id": 209532}, {"caption": "two persons in the studio of the news channel speaks about latest news", "video_id": "video10191", "sen_id": 209533}, {"caption": "two men are in the studio and having conversation", "video_id": "video10191", "sen_id": 209534}, {"caption": "news anchor describing his point of view on a certain issue", "video_id": "video10191", "sen_id": 209535}, {"caption": "comedian jimmy dore discussing social issues in front of a large fox logo", "video_id": "video10191", "sen_id": 209536}, {"caption": "in a tv station the middle age man with specsspeaking the current issues through the media", "video_id": "video10191", "sen_id": 209537}, {"caption": " comedian of the young turks speaking on news channel", "video_id": "video10191", "sen_id": 209538}, {"caption": "a person is speaking about something in a tv news show", "video_id": "video10191", "sen_id": 209539}, {"caption": "a man explaining about a world leader coming to the united states", "video_id": "video10493", "sen_id": 209540}, {"caption": "a man is telling a story about a chinese leader and what that leaders plans are", "video_id": "video10493", "sen_id": 209541}, {"caption": "a news segment detailing the chinese president talks about him visiting america", "video_id": "video10493", "sen_id": 209542}, {"caption": "a political analysis between china and america is described by a presenter", "video_id": "video10493", "sen_id": 209543}, {"caption": "president xi of china in a news clip will be visiting president obama at the white house for a dinner", "video_id": "video10493", "sen_id": 209544}, {"caption": "a man is speaking about the chinese in a classified show", "video_id": "video10493", "sen_id": 209545}, {"caption": "a reporter talks about how a foreign diplomat will be visiting america and meeting with president obama", "video_id": "video10493", "sen_id": 209546}, {"caption": "a news person is talking about chinese president s visit to united states", "video_id": "video10493", "sen_id": 209547}, {"caption": "a news anchor is talking about the chinese president coming to america", "video_id": "video10493", "sen_id": 209548}, {"caption": "a chinese man near a flag is listening to people", "video_id": "video10493", "sen_id": 209549}, {"caption": "a news anchor is chatting about the china president", "video_id": "video10493", "sen_id": 209550}, {"caption": "a man is reading a news in the television channel", "video_id": "video10493", "sen_id": 209551}, {"caption": "a old man in blue coat still image and other in white dress speaking on topic discussing news channels displaying on screen", "video_id": "video10493", "sen_id": 209552}, {"caption": "there are pictures of politicians from china and the american and chinese flags", "video_id": "video10493", "sen_id": 209553}, {"caption": "a man with a blue tie is sitting down", "video_id": "video10493", "sen_id": 209554}, {"caption": "a news report about obama having dinner with president xi of china", "video_id": "video10493", "sen_id": 209555}, {"caption": "a news reporter talks about the relationship between america and china", "video_id": "video10493", "sen_id": 209556}, {"caption": "a man talks about politics and visiting foreign leaders", "video_id": "video10493", "sen_id": 209557}, {"caption": "a news report on chinese president xi and his upcoming visit to america", "video_id": "video10493", "sen_id": 209558}, {"caption": "a person in a room is looking as a classified file", "video_id": "video10493", "sen_id": 209559}, {"caption": "there is a drawing being shown while an unseen man tells a story", "video_id": "video12491", "sen_id": 209560}, {"caption": "the video of the voice of a man telling a story of fishes", "video_id": "video12491", "sen_id": 209561}, {"caption": "there is a fish jumping on the water", "video_id": "video12491", "sen_id": 209562}, {"caption": "a man reads a children s story while showing off the colorful illustrations", "video_id": "video12491", "sen_id": 209563}, {"caption": "the red fish is swimming and meeting blue animal", "video_id": "video12491", "sen_id": 209564}, {"caption": "its a animated fish video game", "video_id": "video12491", "sen_id": 209565}, {"caption": "an animated cartoon is shown for the childrens on the screen", "video_id": "video12491", "sen_id": 209566}, {"caption": "a man is narrating an animate book with large pictures", "video_id": "video12491", "sen_id": 209567}, {"caption": "a panning view of a cartoon drawing of sea creatures", "video_id": "video12491", "sen_id": 209568}, {"caption": "a blue fish is questioned about his fingers by a friend", "video_id": "video12491", "sen_id": 209569}, {"caption": "there is a animal with big eyes and smile", "video_id": "video12491", "sen_id": 209570}, {"caption": "2d characters are talking in a feature film", "video_id": "video12491", "sen_id": 209571}, {"caption": "a man describing for the cartoon characters", "video_id": "video12491", "sen_id": 209572}, {"caption": "little fishes swim and play with other sea creatures", "video_id": "video12491", "sen_id": 209573}, {"caption": "there are cartoons of different animals in the ocean", "video_id": "video12491", "sen_id": 209574}, {"caption": "there is a fish jumping on the blue water", "video_id": "video12491", "sen_id": 209575}, {"caption": "there are some cartoon looking like fish among others", "video_id": "video12491", "sen_id": 209576}, {"caption": "cartoon animals are dancing one fire comes and burns", "video_id": "video12491", "sen_id": 209577}, {"caption": "a painting of fish with smiles on their faces", "video_id": "video12491", "sen_id": 209578}, {"caption": "a cartoon character is doing some thing", "video_id": "video12491", "sen_id": 209579}, {"caption": "a man is driving a blue and white sports car", "video_id": "video11457", "sen_id": 209580}, {"caption": "a man is driving a high powered sports car on a closed course and describing the engine and horsepower of the vehicle", "video_id": "video11457", "sen_id": 209581}, {"caption": "a blue car with a white stripe is driving across the road at a high speed", "video_id": "video11457", "sen_id": 209582}, {"caption": "a black and white car is driving on the road", "video_id": "video11457", "sen_id": 209583}, {"caption": "a clip from the bbc show top gear", "video_id": "video11457", "sen_id": 209584}, {"caption": "a car races down a road", "video_id": "video11457", "sen_id": 209585}, {"caption": "blue and white sports car driving fast on an airport runway", "video_id": "video11457", "sen_id": 209586}, {"caption": "a man in a mustang driving around a track", "video_id": "video11457", "sen_id": 209587}, {"caption": "sports car commercial about car's ability to accelerate quickly", "video_id": "video11457", "sen_id": 209588}, {"caption": "a ford mustang gt with a 500 horsepower supercharged v8 racing around might be a shelby cobra", "video_id": "video11457", "sen_id": 209589}, {"caption": "a navy blue car with white stripes races on a track", "video_id": "video11457", "sen_id": 209590}, {"caption": "a beefed up american sports car is reviewed by british television hosts", "video_id": "video11457", "sen_id": 209591}, {"caption": "a man is racing a blue sports car with white stripes along an open road", "video_id": "video11457", "sen_id": 209592}, {"caption": "a blue racing car with white stripes in the middle is going very fast on an open road", "video_id": "video11457", "sen_id": 209593}, {"caption": "a man is describing a very fast sportscar as he drives it around a test track", "video_id": "video11457", "sen_id": 209594}, {"caption": "a man in a blue and white shirt giving a description of a fast driving car", "video_id": "video11457", "sen_id": 209595}, {"caption": "a ford mustang is being driven by a british man", "video_id": "video11457", "sen_id": 209596}, {"caption": "top gear drivers drive a car around their track", "video_id": "video11457", "sen_id": 209597}, {"caption": "this is about the newly branded car and the name of the car is ford gk and the person is driving the car very fast", "video_id": "video11457", "sen_id": 209598}, {"caption": "a person is driving car and showing its features", "video_id": "video11457", "sen_id": 209599}, {"caption": "a man is painting a car right outside", "video_id": "video10365", "sen_id": 209600}, {"caption": "a man is painting words on a care with a brush and roller", "video_id": "video10365", "sen_id": 209601}, {"caption": "man using a paintbrush to paint a word on the side of a parked car", "video_id": "video10365", "sen_id": 209602}, {"caption": "a male is using different paints to paint words on the side of a car", "video_id": "video10365", "sen_id": 209603}, {"caption": "a man paints on the side of an old car he is getting ready to drive", "video_id": "video10365", "sen_id": 209604}, {"caption": "a man painting a message of revenge on a car", "video_id": "video10365", "sen_id": 209605}, {"caption": "a man paints letters on the side of an old car", "video_id": "video10365", "sen_id": 209606}, {"caption": "a man in a light colored shirt is painting a dark colored vehicle questioning what is says", "video_id": "video10365", "sen_id": 209607}, {"caption": "a man is painting some letters on the side of a car", "video_id": "video10365", "sen_id": 209608}, {"caption": "a segment of the show top gear shows one of the hosts painting words on the side of the car", "video_id": "video10365", "sen_id": 209609}, {"caption": "a man paints letters on the side of an old car near some trees", "video_id": "video10365", "sen_id": 209610}, {"caption": "a man is painting words on a car in neon colors", "video_id": "video10365", "sen_id": 209611}, {"caption": "a man is painting words on a car in neon colors", "video_id": "video10365", "sen_id": 209612}, {"caption": "a man paints large letters on the side of an old dark colored car", "video_id": "video10365", "sen_id": 209613}, {"caption": "a man is using paint not meant for cars to paint words on a dark car in yellow and pink", "video_id": "video10365", "sen_id": 209614}, {"caption": "a scene from the popular british show top gear showing their three presenters painting each other s cars with humorous text", "video_id": "video10365", "sen_id": 209615}, {"caption": "a person making the drawing on his car using some paints", "video_id": "video10365", "sen_id": 209616}, {"caption": "a man painting on the side of a car", "video_id": "video10365", "sen_id": 209617}, {"caption": "a man paints words on a car in several colors", "video_id": "video10365", "sen_id": 209618}, {"caption": "a person is painting a thing with a roller", "video_id": "video10365", "sen_id": 209619}, {"caption": "a man impersonating a news anchor or tv host", "video_id": "video10973", "sen_id": 209620}, {"caption": "a man in a black suit talking about media", "video_id": "video10973", "sen_id": 209621}, {"caption": "a man in a coat and tie sits at a desk and talks about tv and movies", "video_id": "video10973", "sen_id": 209622}, {"caption": "a man sitting at a table talking about television shows and movies that you have to watch", "video_id": "video10973", "sen_id": 209623}, {"caption": "a man is talking about what to watch on hbo", "video_id": "video10973", "sen_id": 209624}, {"caption": "adam conover of adam ruins everything breaks down which television shows and movies you must watch", "video_id": "video10973", "sen_id": 209625}, {"caption": "a man in suit talking about some topic on the show", "video_id": "video10973", "sen_id": 209626}, {"caption": "a man in a suit sitting behind a desk and talking with his hands crossed", "video_id": "video10973", "sen_id": 209627}, {"caption": "a man is talking about a tv shows and movies", "video_id": "video10973", "sen_id": 209628}, {"caption": "its originals guy has specs then coat its about hbo channel", "video_id": "video10973", "sen_id": 209629}, {"caption": "the man sitting beside a table and reading about film news", "video_id": "video10973", "sen_id": 209630}, {"caption": "a man is speaking about many different television shows", "video_id": "video10973", "sen_id": 209631}, {"caption": "a man wearing blue dress talking something to media", "video_id": "video10973", "sen_id": 209632}, {"caption": "a male commentator talking about shows and what to watch from various viewpoints", "video_id": "video10973", "sen_id": 209633}, {"caption": "guy in glass with suit and tie talking to the camera", "video_id": "video10973", "sen_id": 209634}, {"caption": "a news reporter is making a report regarding movies and television shows", "video_id": "video10973", "sen_id": 209635}, {"caption": "a man wearing glasses is informing people of official lists of what you can watch on tv shows including hbo", "video_id": "video10973", "sen_id": 209636}, {"caption": "a tv show presenter explains the choice selection of serials or shows the layman prefers to watch", "video_id": "video10973", "sen_id": 209637}, {"caption": "a man in glasses does a funny fake news bit", "video_id": "video10973", "sen_id": 209638}, {"caption": "a man talks about need-to-know tv shows for collegehumor", "video_id": "video10973", "sen_id": 209639}, {"caption": "different men are giving their opinions about things that are happening in this world today", "video_id": "video12389", "sen_id": 209640}, {"caption": "a man in glasses talks as bombs go off in a street", "video_id": "video12389", "sen_id": 209641}, {"caption": "a man talks about a story he is working on for a news program", "video_id": "video12389", "sen_id": 209642}, {"caption": "a news reporter talks about a segment he is working on for a news show", "video_id": "video12389", "sen_id": 209643}, {"caption": "a tv show called vice that documents news and stories around the world", "video_id": "video12389", "sen_id": 209644}, {"caption": "vice is making a news program about what is happening in the world", "video_id": "video12389", "sen_id": 209645}, {"caption": "a man sitting on a couch talking and a military explosion followed by a couple of men talking", "video_id": "video12389", "sen_id": 209646}, {"caption": "different men are speaking about worldly violence and social issues", "video_id": "video12389", "sen_id": 209647}, {"caption": "journalists from vice news talking about their work", "video_id": "video12389", "sen_id": 209648}, {"caption": "a man wearing a suit and talking about muslims", "video_id": "video12389", "sen_id": 209649}, {"caption": "a man wearing a black shirt talking about muslims", "video_id": "video12389", "sen_id": 209650}, {"caption": "several different men are sitting in chairs talking to a camera in an interview format", "video_id": "video12389", "sen_id": 209651}, {"caption": "a man in a purple long sleeve dress shirt is sitting on a couch talking about a movie", "video_id": "video12389", "sen_id": 209652}, {"caption": "some violent scenes are being displayed as an introduction for a tv show while a few men are speaking", "video_id": "video12389", "sen_id": 209653}, {"caption": "a news reporter talks about a series of reports he has been working on", "video_id": "video12389", "sen_id": 209654}, {"caption": "there is a man running on the street", "video_id": "video12389", "sen_id": 209655}, {"caption": "a man with glasses speaks while various explosions happen in india", "video_id": "video12389", "sen_id": 209656}, {"caption": "a man is talking about a film and its scene are playing", "video_id": "video12389", "sen_id": 209657}, {"caption": "the men talk about about the news stories they have covered", "video_id": "video12389", "sen_id": 209658}, {"caption": "some pictures on a wall are being shown", "video_id": "video12389", "sen_id": 209659}, {"caption": "a few goldfish swimming and eating in an rock bedded aquarium", "video_id": "video11962", "sen_id": 209660}, {"caption": "small black fish swimming around a tank with rocks and grass in it", "video_id": "video11962", "sen_id": 209661}, {"caption": "fish are swimming in an aquarium and eating insects found in the gravel", "video_id": "video11962", "sen_id": 209662}, {"caption": "black goldfish swim in an aquarium and eat insects", "video_id": "video11962", "sen_id": 209663}, {"caption": "fish are swimming in an aquarium and eating insects found in the gravel", "video_id": "video11962", "sen_id": 209664}, {"caption": "a large aquarium with many kinds of fishes moving around", "video_id": "video11962", "sen_id": 209665}, {"caption": "an aquarium in which is various types of goldfish are contained", "video_id": "video11962", "sen_id": 209666}, {"caption": "black comet goldfish are searching for food among rocks at the bottom of an aquarium", "video_id": "video11962", "sen_id": 209667}, {"caption": "a group of fish are swimming in a tank with rocks and green things in it", "video_id": "video11962", "sen_id": 209668}, {"caption": "four small fish swim around in an aquarium", "video_id": "video11962", "sen_id": 209669}, {"caption": "there are fish in a fish tank with captions describing what food they eat", "video_id": "video11962", "sen_id": 209670}, {"caption": "a fish tank with a couple of small fish swimming around", "video_id": "video11962", "sen_id": 209671}, {"caption": "a fish is swimming in the aquarium water", "video_id": "video11962", "sen_id": 209672}, {"caption": "a fishtank with small stones on the bottom while several small fish are swimming around", "video_id": "video11962", "sen_id": 209673}, {"caption": "fish swim in a tank with many rocks on the bottom", "video_id": "video11962", "sen_id": 209674}, {"caption": "fish are in a fish tank eating insects they are being fed", "video_id": "video11962", "sen_id": 209675}, {"caption": "several fish in a fish tank feeding off the rocks at the bottom", "video_id": "video11962", "sen_id": 209676}, {"caption": "its tank where fish is nice to seei can see three fishes", "video_id": "video11962", "sen_id": 209677}, {"caption": "black comet goldfish are swimming and eating something from the bottom of the aquarium", "video_id": "video11962", "sen_id": 209678}, {"caption": "several fish in a fish tank eating insects as their meal", "video_id": "video11962", "sen_id": 209679}, {"caption": "a man is kissing a woman's body while the two sit on a couch", "video_id": "video12169", "sen_id": 209680}, {"caption": "the video of a man and a woman having sex on a couch", "video_id": "video12169", "sen_id": 209681}, {"caption": "there is a women having sex with a man", "video_id": "video12169", "sen_id": 209682}, {"caption": "a semi-clothed man and woman are involved in love making on a living room couch", "video_id": "video12169", "sen_id": 209683}, {"caption": "a man with blue trouser and a lady with red bra and a black trouser doing some intimate scene on a sofa", "video_id": "video12169", "sen_id": 209684}, {"caption": "a man and woman making love each other on the couch", "video_id": "video12169", "sen_id": 209685}, {"caption": "two persons are doing romance on a sofa", "video_id": "video12169", "sen_id": 209686}, {"caption": "a man and a woman engage in an intimate love scene together on a couch", "video_id": "video12169", "sen_id": 209687}, {"caption": "a man is kissing a woman all over her body on a couch", "video_id": "video12169", "sen_id": 209688}, {"caption": "a guy and a lady sensually kiss on a couch together", "video_id": "video12169", "sen_id": 209689}, {"caption": "the half naked couple is performing for play on the brown and white couch", "video_id": "video12169", "sen_id": 209690}, {"caption": "there is a woman in red bra having sex with a man", "video_id": "video12169", "sen_id": 209691}, {"caption": "its hot night masti couples having the sex on sofa they hug each other", "video_id": "video12169", "sen_id": 209692}, {"caption": "a man with no shirt is kissing all over a girl with just bra and shorts on", "video_id": "video12169", "sen_id": 209693}, {"caption": "a man and a woman are kissing each other", "video_id": "video12169", "sen_id": 209694}, {"caption": "there is a woman in red bra having sex with a young man", "video_id": "video12169", "sen_id": 209695}, {"caption": "a man kissing a lady from full of her body", "video_id": "video12169", "sen_id": 209696}, {"caption": "a man is seen kissing a woman along her legs and upwards towards her torso then he hugs her", "video_id": "video12169", "sen_id": 209697}, {"caption": "a lady in a red bra and black panties is being kissed all down her body by a man in blue underwear", "video_id": "video12169", "sen_id": 209698}, {"caption": "a woman is lying on a couch as a man kisses her leg", "video_id": "video12169", "sen_id": 209699}, {"caption": "a male volleyball player is celebrating in slow-motion", "video_id": "video12840", "sen_id": 209700}, {"caption": "a volleyball player congratulating his teammates and another player yelling", "video_id": "video12840", "sen_id": 209701}, {"caption": "male volleyball players are celebrating victory during matches", "video_id": "video12840", "sen_id": 209702}, {"caption": "a clash between countries in a sporting event", "video_id": "video12840", "sen_id": 209703}, {"caption": "guys who are playing volleyball are excited to win and cheer each other on", "video_id": "video12840", "sen_id": 209704}, {"caption": "various volleyball players congratulate each other while music plays in the background", "video_id": "video12840", "sen_id": 209705}, {"caption": "there are some people enjoying their victory", "video_id": "video12840", "sen_id": 209706}, {"caption": "men playing volleyball congratulate each other on a win", "video_id": "video12840", "sen_id": 209707}, {"caption": "a group of men are playing volleyball in an arena", "video_id": "video12840", "sen_id": 209708}, {"caption": "professional athletes are playing volleyball for their country s teams", "video_id": "video12840", "sen_id": 209709}, {"caption": "there is a black jersey man enjoying with players", "video_id": "video12840", "sen_id": 209710}, {"caption": "a group of players on a volleyball team are congratulating each other", "video_id": "video12840", "sen_id": 209711}, {"caption": "a smiling athlete high fives another player touches the arm of another player and high fives again while a second player screams with an open mouth and tense arms", "video_id": "video12840", "sen_id": 209712}, {"caption": "a two team of players chasing in the play ground", "video_id": "video12840", "sen_id": 209713}, {"caption": "excited men are congratulating each other on a game of volleyball", "video_id": "video12840", "sen_id": 209714}, {"caption": "there is a black jersey man enjoying with teammates", "video_id": "video12840", "sen_id": 209715}, {"caption": "a group of men giving each other hi-fives after a volleyball match", "video_id": "video12840", "sen_id": 209716}, {"caption": "a volley ball match is going on between usa and poland each won one game the black shirt team finished this point", "video_id": "video12840", "sen_id": 209717}, {"caption": "volley ball players give high fives and commend one another on court", "video_id": "video12840", "sen_id": 209718}, {"caption": "a team which won the match is very happy and shaking hands with one another and the goal keeper is shouting in the joy", "video_id": "video12840", "sen_id": 209719}, {"caption": "a blue-and-green variation of a double helix is the logo for a bio technical group with an announcement in text in stark black and white", "video_id": "video11164", "sen_id": 209720}, {"caption": "the logo for ble and then a video begins about the company", "video_id": "video11164", "sen_id": 209721}, {"caption": "text in blue and white flashes on a black screen", "video_id": "video11164", "sen_id": 209722}, {"caption": "double blue and green helix showing the beginning of a movie", "video_id": "video11164", "sen_id": 209723}, {"caption": "credits are scrolling across the screen", "video_id": "video11164", "sen_id": 209724}, {"caption": "the association of biotechnology unveils the opening of india's third", "video_id": "video11164", "sen_id": 209725}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video11164", "sen_id": 209726}, {"caption": "a introduction scene of a television program on television channel", "video_id": "video11164", "sen_id": 209727}, {"caption": "a graphic design logo apears and dissapears", "video_id": "video11164", "sen_id": 209728}, {"caption": "on a black screen someone is explaining about the opening of i india s third", "video_id": "video11164", "sen_id": 209729}, {"caption": "some blue text is on a black back ground", "video_id": "video11164", "sen_id": 209730}, {"caption": "a label for a biotech company shows prior to the advertisement for india", "video_id": "video11164", "sen_id": 209731}, {"caption": "able means association of biotechnology led enterprises that is located in india", "video_id": "video11164", "sen_id": 209732}, {"caption": "a tittle displaying on the screen still pictures of words", "video_id": "video11164", "sen_id": 209733}, {"caption": "the logo spins into the beginning of the name of the company", "video_id": "video11164", "sen_id": 209734}, {"caption": "some text for a company is shown on a screen", "video_id": "video11164", "sen_id": 209735}, {"caption": "an ad that is blue and green plays on a black background", "video_id": "video11164", "sen_id": 209736}, {"caption": "a words are displaying in the screen", "video_id": "video11164", "sen_id": 209737}, {"caption": "black colour background with blue wording shows the opening of india s third", "video_id": "video11164", "sen_id": 209738}, {"caption": "a logo and some text are on a screen", "video_id": "video11164", "sen_id": 209739}, {"caption": "a music performer sings on the runway during a major fashion show", "video_id": "video10604", "sen_id": 209740}, {"caption": "man in a black suit singing at a lingerie runway show indoors", "video_id": "video10604", "sen_id": 209741}, {"caption": "will iam is rapping for a fashion show as models walk down the runway", "video_id": "video10604", "sen_id": 209742}, {"caption": "one man sings while models walk down the runway to a cheering crowd", "video_id": "video10604", "sen_id": 209743}, {"caption": "models are walking down a runway while a man is singing to them", "video_id": "video10604", "sen_id": 209744}, {"caption": "a model wearing flashing prints stunts down the runway", "video_id": "video10604", "sen_id": 209745}, {"caption": "a runway model is wearing a designer outfit on the runway", "video_id": "video10604", "sen_id": 209746}, {"caption": "a singer performs as different models walk on the cat-walk", "video_id": "video10604", "sen_id": 209747}, {"caption": "blonde model in silver lingerie and high heels walking down a runway", "video_id": "video10604", "sen_id": 209748}, {"caption": "a rapper performs as models walk the runway during a fashion show", "video_id": "video10604", "sen_id": 209749}, {"caption": "an african american man sings while supermodels walk the runway in lingerie", "video_id": "video10604", "sen_id": 209750}, {"caption": "t-pain rapping lyrics as models in lingerie walk down the walkway", "video_id": "video10604", "sen_id": 209751}, {"caption": "will i am is singing at a model show while a model is going down a runway", "video_id": "video10604", "sen_id": 209752}, {"caption": "a man sings on stage while several models strut up and down a catwalk in animal print garbs", "video_id": "video10604", "sen_id": 209753}, {"caption": "a man singing while woman in bikinis walk past him", "video_id": "video10604", "sen_id": 209754}, {"caption": "a man singing into a microphone while a woman in a silver two-piece outfit walks down the stage", "video_id": "video10604", "sen_id": 209755}, {"caption": "women doing ramp walk while guy singing song", "video_id": "video10604", "sen_id": 209756}, {"caption": "a man in a black suit is singing to a cladly dressed model walking down the catwalk", "video_id": "video10604", "sen_id": 209757}, {"caption": "a stage full of enthusiastic spectators while model of fashion show are on cat walk", "video_id": "video10604", "sen_id": 209758}, {"caption": "some models are walking on a cat walk", "video_id": "video10604", "sen_id": 209759}, {"caption": "a man is talking about statistics and saying goodbye", "video_id": "video11172", "sen_id": 209760}, {"caption": "a man standing in front of a book shelf speaking", "video_id": "video11172", "sen_id": 209761}, {"caption": "a man in a checkered white shirt is giving his closing thoughts based on his experiences", "video_id": "video11172", "sen_id": 209762}, {"caption": "a man in a white dress shirt with a bookcase in the background talking about education", "video_id": "video11172", "sen_id": 209763}, {"caption": "a man talks about a course he is teaching", "video_id": "video11172", "sen_id": 209764}, {"caption": "an outro from a professor teaching an online course", "video_id": "video11172", "sen_id": 209765}, {"caption": "a middle-aged man with gray and black hair wearing a pale blue gingham shirt stands and speaks in front of partly-filled bookcases", "video_id": "video11172", "sen_id": 209766}, {"caption": "a man with streaks of gray in his hair and wearing a collared shirt talks", "video_id": "video11172", "sen_id": 209767}, {"caption": "a middle-aged profession in a white shirt gives an online lecture on gamification", "video_id": "video11172", "sen_id": 209768}, {"caption": "older man in a white plaid shirt standing in front of a bookshelf", "video_id": "video11172", "sen_id": 209769}, {"caption": "a man who just gave a course gives closing comments and introduces a closing video", "video_id": "video11172", "sen_id": 209770}, {"caption": "a man in a white shirt sits in front of a bookshelf", "video_id": "video11172", "sen_id": 209771}, {"caption": "a smiling man is making a wrap up video about different elements of a course", "video_id": "video11172", "sen_id": 209772}, {"caption": "a man in a white button up shirt smiles and talks to a camera", "video_id": "video11172", "sen_id": 209773}, {"caption": "there is a man in a white button down shirt is talking while using some hand gestures with a bookshelf filled with several books in the background", "video_id": "video11172", "sen_id": 209774}, {"caption": "a man wearing white color dress talking", "video_id": "video11172", "sen_id": 209775}, {"caption": " with gray hair stands in front of two bookcases with some books placed on two shelves at the same height", "video_id": "video11172", "sen_id": 209776}, {"caption": "a middle-aged man giving statistics based on his experiences", "video_id": "video11172", "sen_id": 209777}, {"caption": "a man in a white shirt stands in front of a bookcase and prepares to offer some final instruction", "video_id": "video11172", "sen_id": 209778}, {"caption": "a guy in a white shirt is talking inside a room", "video_id": "video11172", "sen_id": 209779}, {"caption": "a man is being goofy on the daily vine", "video_id": "video12133", "sen_id": 209780}, {"caption": "a funny man is showing multiple clips of himself being goofy", "video_id": "video12133", "sen_id": 209781}, {"caption": "three different scenes of a man on a plane and with his kids", "video_id": "video12133", "sen_id": 209782}, {"caption": "a man on an airplane removes a small earphone from his ear", "video_id": "video12133", "sen_id": 209783}, {"caption": "a man is listening to headphones on an airplane and playing with his kids", "video_id": "video12133", "sen_id": 209784}, {"caption": "a man on a plane removes a earphone to listen to the captain's message", "video_id": "video12133", "sen_id": 209785}, {"caption": "there is a man sitting inside an airplane taking off his left earbud to listen to an announcement", "video_id": "video12133", "sen_id": 209786}, {"caption": "am an in a hoodie is on a plane", "video_id": "video12133", "sen_id": 209787}, {"caption": "a man and his family do funny little skits", "video_id": "video12133", "sen_id": 209788}, {"caption": "there are two men with a tractor followed by a man pulling his earphone out him with a boy and him with a girl", "video_id": "video12133", "sen_id": 209789}, {"caption": "a men is driving a truck very fast on roads and jungle", "video_id": "video12133", "sen_id": 209790}, {"caption": "a man is having a ear phone and talking with a boy", "video_id": "video12133", "sen_id": 209791}, {"caption": "a man is sitting in the vehicle and more other activities", "video_id": "video12133", "sen_id": 209792}, {"caption": "a kid is screaming and man is hearing the captain s message inside a plane and bunch of other kids playing", "video_id": "video12133", "sen_id": 209793}, {"caption": "a person with a head phone listening in surprise", "video_id": "video12133", "sen_id": 209794}, {"caption": "the boy exclaims i m scared dad as they get lost in a forest", "video_id": "video12133", "sen_id": 209795}, {"caption": "a green dress boy and blue dress girl doing something while playing", "video_id": "video12133", "sen_id": 209796}, {"caption": "a man in vehicle have the head set wearinghear to the song", "video_id": "video12133", "sen_id": 209797}, {"caption": "a man and his son are in forest and looking something and getting shock", "video_id": "video12133", "sen_id": 209798}, {"caption": "a man is talking about two kids outside", "video_id": "video12133", "sen_id": 209799}, {"caption": "a car is being discussed from porsche called spider", "video_id": "video10219", "sen_id": 209800}, {"caption": "a silver porche 918 spider parked inside a building", "video_id": "video10219", "sen_id": 209801}, {"caption": "a slow motion preview of a new fancy modeled car", "video_id": "video10219", "sen_id": 209802}, {"caption": "i silver sports car is shown from all angles", "video_id": "video10219", "sen_id": 209803}, {"caption": "a small sports car is reviewed and showed off by an announcer", "video_id": "video10219", "sen_id": 209804}, {"caption": "a sleek silver porsche spider spins on the screen while a man informs us the spider is electric powered only with a range of up to 25 kilometers", "video_id": "video10219", "sen_id": 209805}, {"caption": "a car looks stunning in display with luxurious appearance", "video_id": "video10219", "sen_id": 209806}, {"caption": "one man talk about new car outerr features in", "video_id": "video10219", "sen_id": 209807}, {"caption": "features of sport car is shown in this video", "video_id": "video10219", "sen_id": 209808}, {"caption": "a person drive a car on the road and view all part of car", "video_id": "video10219", "sen_id": 209809}, {"caption": "a man talks about the details of a sports car", "video_id": "video10219", "sen_id": 209810}, {"caption": "a car that is really fancy is shown and talked about in a grey room", "video_id": "video10219", "sen_id": 209811}, {"caption": "a man is talking about a hybrid car", "video_id": "video10219", "sen_id": 209812}, {"caption": "a machine operates inside a car in a futuristic car", "video_id": "video10219", "sen_id": 209813}, {"caption": "a camera is floating around a white car", "video_id": "video10219", "sen_id": 209814}, {"caption": "a silver car is displayed with its features", "video_id": "video10219", "sen_id": 209815}, {"caption": "the silver porsche 918 spyder customization is shown in many fascinating clips", "video_id": "video10219", "sen_id": 209816}, {"caption": "animation picture of the carthe wheels are so nice and car looks amazing", "video_id": "video10219", "sen_id": 209817}, {"caption": "a newly brand sports car is being advertised in the show", "video_id": "video10219", "sen_id": 209818}, {"caption": "a camera is panning around a shiny car", "video_id": "video10219", "sen_id": 209819}, {"caption": "a man in a soldier uniform peels a banana and then starts using it as a weapon to slash and stab people", "video_id": "video12577", "sen_id": 209820}, {"caption": "a man in a uniform uses a knife to down several attackers", "video_id": "video12577", "sen_id": 209821}, {"caption": "a police officer kills a bunch of men with a knife", "video_id": "video12577", "sen_id": 209822}, {"caption": "a man wearing a brown uniform killing bad guys in the jungle", "video_id": "video12577", "sen_id": 209823}, {"caption": "an indian man slicing a couple of other men", "video_id": "video12577", "sen_id": 209824}, {"caption": "a man is peeling a banana in an angry fashion", "video_id": "video12577", "sen_id": 209825}, {"caption": "a man peels a banana and cuts the throat of another man with it then proceeds to cut down his enemies", "video_id": "video12577", "sen_id": 209826}, {"caption": "a man is peeling a banana and hits people", "video_id": "video12577", "sen_id": 209827}, {"caption": "a man in a military uniform peels a banana and uses it to slash people like a knife", "video_id": "video12577", "sen_id": 209828}, {"caption": "a man peels a banana and then uses it as a weapon to kill people", "video_id": "video12577", "sen_id": 209829}, {"caption": "man slices open a few other men with banana and blood squirts out of the victims", "video_id": "video12577", "sen_id": 209830}, {"caption": "indian man in a police officer's uniform attacking men with a weapon", "video_id": "video12577", "sen_id": 209831}, {"caption": "a man of military status fights several other men using both a banana and a sword", "video_id": "video12577", "sen_id": 209832}, {"caption": "a man in a tan suit cut the necks of several people with a sword", "video_id": "video12577", "sen_id": 209833}, {"caption": "a man wearing a brow shirt and beating people up", "video_id": "video12577", "sen_id": 209834}, {"caption": "a police man eats banana and kills people in banana", "video_id": "video12577", "sen_id": 209835}, {"caption": "an indian man in a uniform peeling a banana and then attacking killing several men as if it were a knife", "video_id": "video12577", "sen_id": 209836}, {"caption": "in a movie police hero look to fight with a man", "video_id": "video12577", "sen_id": 209837}, {"caption": "huge fight between indian men while the one kills them with a banana", "video_id": "video12577", "sen_id": 209838}, {"caption": "a group of people are being killed by a cop", "video_id": "video12577", "sen_id": 209839}, {"caption": "there are several pieces of raw meat and cooking ingredients on a counter next to a cat", "video_id": "video11167", "sen_id": 209840}, {"caption": "a piece of raw beef sugar salt and pepper are displayed on the kitchen counter along with a black cat", "video_id": "video11167", "sen_id": 209841}, {"caption": "there is country instrumental music playing as the camera moves around showing the meat and all of the other cooking equipment along with the cat who's sitting up there right along with the objects", "video_id": "video11167", "sen_id": 209842}, {"caption": "a person is desribing a steak and has the ingredients out", "video_id": "video11167", "sen_id": 209843}, {"caption": "raw meat is on a cutting board and in a bowl with spices a cat a dehydrator all on a counter", "video_id": "video11167", "sen_id": 209844}, {"caption": "in a kitchen counter meat and other ingredients are spread out while a black cat looks", "video_id": "video11167", "sen_id": 209845}, {"caption": "some meat on a cutting board with a knife and a cat sitting next to it", "video_id": "video11167", "sen_id": 209846}, {"caption": "a black cat sitting next to a piece of red meat", "video_id": "video11167", "sen_id": 209847}, {"caption": "a black cat sitting next to a big piece of red meat", "video_id": "video11167", "sen_id": 209848}, {"caption": "red meat is shown on a white cutting board next to a black cat in a kitchen", "video_id": "video11167", "sen_id": 209849}, {"caption": "food is placed on a table and cat is also on table", "video_id": "video11167", "sen_id": 209850}, {"caption": "a black cat watching meat with watered mouth to eat", "video_id": "video11167", "sen_id": 209851}, {"caption": "in a kitchen red meat is placed on white board and packs of sauce salt are placed in order", "video_id": "video11167", "sen_id": 209852}, {"caption": "some red meat is placed in a plate kept in table", "video_id": "video11167", "sen_id": 209853}, {"caption": "some fresh beef is kept on a platter for cooking with a black cat sitting next to the meat", "video_id": "video11167", "sen_id": 209854}, {"caption": "red meat sits on the cuting waiting to be prepared", "video_id": "video11167", "sen_id": 209855}, {"caption": "raw and red meat is in a white bowl on top of a white cutting board and on a black tray wrapped with plastic wrap and a white label", "video_id": "video11167", "sen_id": 209856}, {"caption": "the tray in the meat and watch the cat plan to eat the meat", "video_id": "video11167", "sen_id": 209857}, {"caption": "slabs on meat sitting on the counter with bags of spices and a cat", "video_id": "video11167", "sen_id": 209858}, {"caption": "some music plays while a piece of meat is shown", "video_id": "video11167", "sen_id": 209859}, {"caption": "a man is working with people on directing a show", "video_id": "video10001", "sen_id": 209860}, {"caption": "a person is in a booth as others sit behind the controls in a recording studio", "video_id": "video10001", "sen_id": 209861}, {"caption": "sound production engineers are putting together various tones for a scene", "video_id": "video10001", "sen_id": 209862}, {"caption": "a sound team is going through sounds they will need in a film", "video_id": "video10001", "sen_id": 209863}, {"caption": "some people sitting in a room behind computer monitors", "video_id": "video10001", "sen_id": 209864}, {"caption": "people in a professional recording studio recording sound effects", "video_id": "video10001", "sen_id": 209865}, {"caption": "people in a sound studio recording sound for a movie", "video_id": "video10001", "sen_id": 209866}, {"caption": "a group of people in a sound booth work on mixing an album of sound effects", "video_id": "video10001", "sen_id": 209867}, {"caption": "several men sit in a music recording studio in front of laptops and equipment", "video_id": "video10001", "sen_id": 209868}, {"caption": "people sit in a room in front of computers watching something on screen", "video_id": "video10001", "sen_id": 209869}, {"caption": "a director telling an actor what to do before shooting", "video_id": "video10001", "sen_id": 209870}, {"caption": "a group of men editing material on their laptops", "video_id": "video10001", "sen_id": 209871}, {"caption": "a woman in recording theatre receiving instructions from outside sitting music director with laptops", "video_id": "video10001", "sen_id": 209872}, {"caption": "people in a music studio have a conversation about a scene", "video_id": "video10001", "sen_id": 209873}, {"caption": "a room full of directors and engineers at laptop computers direct some actors in how to provide voice overs for a video", "video_id": "video10001", "sen_id": 209874}, {"caption": "a group of film makers editing sound effect in their studio", "video_id": "video10001", "sen_id": 209875}, {"caption": "a group of men play on computers in a very dark room", "video_id": "video10001", "sen_id": 209876}, {"caption": "a bunch of people are on computers inside a recording studio", "video_id": "video10001", "sen_id": 209877}, {"caption": "students sit in a dark room and watch as a performance is rehearsed", "video_id": "video10001", "sen_id": 209878}, {"caption": "some people are sitting at a desk", "video_id": "video10001", "sen_id": 209879}, {"caption": "man in black shirt and grey hair is talking", "video_id": "video12320", "sen_id": 209880}, {"caption": "man talking about evolutionary tests in regards to problem solving", "video_id": "video12320", "sen_id": 209881}, {"caption": "a man with gray hair wears a gray-and-black pullover shirt and makes a point by gesturing downward with pointed forefingers on both hands", "video_id": "video12320", "sen_id": 209882}, {"caption": "a man is talking enthusiastically with hand gesture", "video_id": "video12320", "sen_id": 209883}, {"caption": "there is a old balding man giving advice", "video_id": "video12320", "sen_id": 209884}, {"caption": "a man in t-shirt talking in front of the camera", "video_id": "video12320", "sen_id": 209885}, {"caption": "the logo for james cameron s visionaries shows across a bright screen", "video_id": "video12320", "sen_id": 209886}, {"caption": "a man talks about humanity going through test", "video_id": "video12320", "sen_id": 209887}, {"caption": "james cameron talks about his work in an interview", "video_id": "video12320", "sen_id": 209888}, {"caption": "a man in a studio talking about how humanity continues to progress and how he can help that progression through the media", "video_id": "video12320", "sen_id": 209889}, {"caption": "a man in a gray and black shirt is talking about helping people with communication", "video_id": "video12320", "sen_id": 209890}, {"caption": "person sitting down and talking about evolution change", "video_id": "video12320", "sen_id": 209891}, {"caption": "james cameron sitting down wearing a black shirt talking", "video_id": "video12320", "sen_id": 209892}, {"caption": "person in black shirt is talking about his project", "video_id": "video12320", "sen_id": 209893}, {"caption": "this is a guy talking on the own network", "video_id": "video12320", "sen_id": 209894}, {"caption": "a man who works in media and communication discusses how he can help humanity and evolutionary change", "video_id": "video12320", "sen_id": 209895}, {"caption": "a man speak to tv programm for visionaries inside the creative mino", "video_id": "video12320", "sen_id": 209896}, {"caption": "a man in a black shirt is discussing how he can be of help to humanity", "video_id": "video12320", "sen_id": 209897}, {"caption": "james cameron talks about humanity on visionaries inside the creative mind", "video_id": "video12320", "sen_id": 209898}, {"caption": "a man who claims to work in the media would like to help fix a problem", "video_id": "video12320", "sen_id": 209899}, {"caption": "little girls dressed in beautiful purple pagent dresses", "video_id": "video12037", "sen_id": 209900}, {"caption": "little girls model formal pageant dresses that are all shades of purple", "video_id": "video12037", "sen_id": 209901}, {"caption": "young girls in several different large fancy pageant dresses", "video_id": "video12037", "sen_id": 209902}, {"caption": "a young girl with blonde hair wears a bright purple dress", "video_id": "video12037", "sen_id": 209903}, {"caption": "a blonde haired teenager models and poses in a purple colored dress against a black background", "video_id": "video12037", "sen_id": 209904}, {"caption": "a commercial for dresscitycom shows a slideshow of girls modeling dresses set to a backstreet boys song", "video_id": "video12037", "sen_id": 209905}, {"caption": "little girls are shown wearing fancy purple dresses", "video_id": "video12037", "sen_id": 209906}, {"caption": "a music powerpoint slideshow advertisement for beautiful dresses", "video_id": "video12037", "sen_id": 209907}, {"caption": "a cute young girl models purple party pageant dresses", "video_id": "video12037", "sen_id": 209908}, {"caption": "music is playing with a male singer and pictures of a little girl start to go accross the screen the little girl is in a fancy purple dress and after a few of her pictures other girls are shown in fancy dresses", "video_id": "video12037", "sen_id": 209909}, {"caption": "a slideshow of young blonde girls in fancy purple dresses", "video_id": "video12037", "sen_id": 209910}, {"caption": "a little girl in a purple gown is being shown ant different ages", "video_id": "video12037", "sen_id": 209911}, {"caption": "several young girls are modeling dresses for a dress shop", "video_id": "video12037", "sen_id": 209912}, {"caption": "there are girls in purple and pink dresses posing for pictures", "video_id": "video12037", "sen_id": 209913}, {"caption": "a young girl is wearing a purple dress", "video_id": "video12037", "sen_id": 209914}, {"caption": "a young blonde girl in a purple dress is posing for pictures", "video_id": "video12037", "sen_id": 209915}, {"caption": "young girl posing in a purple pagent dress", "video_id": "video12037", "sen_id": 209916}, {"caption": "there are numerous females of all ages wearing pretty purple dresses", "video_id": "video12037", "sen_id": 209917}, {"caption": "a little girl in blue dress wearing design dresses still images picture displaying on screen", "video_id": "video12037", "sen_id": 209918}, {"caption": "a woman in a purple dress is moving around", "video_id": "video12037", "sen_id": 209919}, {"caption": "ted cruz discusses syria and isis in an interview on cnn", "video_id": "video12257", "sen_id": 209920}, {"caption": "ted cruz talks about the middle east at a presidential debate", "video_id": "video12257", "sen_id": 209921}, {"caption": "a politician is speaking in a debate about how to defeat isis", "video_id": "video12257", "sen_id": 209922}, {"caption": "american presidental candidate ted cruz defends his views during a debate", "video_id": "video12257", "sen_id": 209923}, {"caption": "a republican presidential candidate attempting to sound tough on isis during a televised debate", "video_id": "video12257", "sen_id": 209924}, {"caption": "sen ted cruz pontificates on isis during a republican presidential debate", "video_id": "video12257", "sen_id": 209925}, {"caption": "senator cruz of texas speaks at a cnn republican presidential debate", "video_id": "video12257", "sen_id": 209926}, {"caption": "presidential candidate ted cruz talks about syria on cnn", "video_id": "video12257", "sen_id": 209927}, {"caption": "a man in a suit speaks at a televised republican debate", "video_id": "video12257", "sen_id": 209928}, {"caption": "ted cruz answering a question during a republican debate on cnn", "video_id": "video12257", "sen_id": 209929}, {"caption": "american presidential candidate ted cruz defends his views at a presidental debate", "video_id": "video12257", "sen_id": 209930}, {"caption": "ted cruz discusses how to handle politic situations in the middle east", "video_id": "video12257", "sen_id": 209931}, {"caption": "a man sitting on a news show and talking", "video_id": "video12257", "sen_id": 209932}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12257", "sen_id": 209933}, {"caption": "a white man in a navy suit with a red tie discusses politics with others", "video_id": "video12257", "sen_id": 209934}, {"caption": "at a usa republican presidential debate candidate ted cruz describes his policy views on supporting dictatorial regimes that ally themselves with the usa to supress terrorist groups", "video_id": "video12257", "sen_id": 209935}, {"caption": "clip of ted cruz speaking about dictatorships and politics in the middle east", "video_id": "video12257", "sen_id": 209936}, {"caption": "ted cruz is on a news network giving an interview", "video_id": "video12257", "sen_id": 209937}, {"caption": "ted cruz describes a plan to take down isis and kill its members to prevent them taking over syria", "video_id": "video12257", "sen_id": 209938}, {"caption": "in a cnn news channel a debate is going on about mubarakkadabi s war against syria and he is questioning about democracy", "video_id": "video12257", "sen_id": 209939}, {"caption": "a woman is visiting with a family and bottle feeding a baby", "video_id": "video12152", "sen_id": 209940}, {"caption": "a woman helps people in a mountain village where she is volunteering", "video_id": "video12152", "sen_id": 209941}, {"caption": "a woman traveled to a different country in order to look after sick children", "video_id": "video12152", "sen_id": 209942}, {"caption": "a woman holding a baby and bottle feeding it", "video_id": "video12152", "sen_id": 209943}, {"caption": "an aid worker spends time with people in a remote small village", "video_id": "video12152", "sen_id": 209944}, {"caption": "a woman is talking to children on the street", "video_id": "video12152", "sen_id": 209945}, {"caption": "a woman visits a poor family and helps with the kids", "video_id": "video12152", "sen_id": 209946}, {"caption": "take some time out of your day to learn about the lives of those less fortunate living in severe poverty", "video_id": "video12152", "sen_id": 209947}, {"caption": "a young woman is doing aid work in a small village", "video_id": "video12152", "sen_id": 209948}, {"caption": "a reporter is visiting poor country talking with people", "video_id": "video12152", "sen_id": 209949}, {"caption": "two ladies are seen walking up stairs to meet other people in a small village then a young woman is sitting down giving a child a bottle", "video_id": "video12152", "sen_id": 209950}, {"caption": "a female aid worker helps people in a small village", "video_id": "video12152", "sen_id": 209951}, {"caption": "a lady is helping children who are a little less fortunate", "video_id": "video12152", "sen_id": 209952}, {"caption": "what looks to be a social worker explaining a bit of their procedure", "video_id": "video12152", "sen_id": 209953}, {"caption": "a woman who is a social worker talks about the priorities of keeping children with their parents", "video_id": "video12152", "sen_id": 209954}, {"caption": "a girl wearing a black fleece is shown in an impoverished area feeding a young child from a bottle", "video_id": "video12152", "sen_id": 209955}, {"caption": "a girl asks about the living habit of the people in hill villages", "video_id": "video12152", "sen_id": 209956}, {"caption": "a girl is in green dress is talking with one family", "video_id": "video12152", "sen_id": 209957}, {"caption": "a person in green visits a family sits with them and feeds the baby", "video_id": "video12152", "sen_id": 209958}, {"caption": "a woman is talking about child protection while talking with a family and then holding a young child being fed with a bottle", "video_id": "video12152", "sen_id": 209959}, {"caption": "a man talks about the insides of a complicated looking mechanical room", "video_id": "video10890", "sen_id": 209960}, {"caption": "a man in white is talking about the pipes and wire", "video_id": "video10890", "sen_id": 209961}, {"caption": "a technology room is shown with many different wires", "video_id": "video10890", "sen_id": 209962}, {"caption": "a man in a white laboratory suit is describing how a machine that is giving off a blue glow is working", "video_id": "video10890", "sen_id": 209963}, {"caption": "a man wearing a white laboratory coat and gloves looks at connected hoses and pipes running through a yellow machine which is giving off a bright blue glow from a lower section", "video_id": "video10890", "sen_id": 209964}, {"caption": "a room full of electrical wires is shown in the room", "video_id": "video10890", "sen_id": 209965}, {"caption": "a man is showing a room full of electrical wires", "video_id": "video10890", "sen_id": 209966}, {"caption": "the inside of a reactor showing the wires and tubing", "video_id": "video10890", "sen_id": 209967}, {"caption": "a man talks about the cooling and processes of a reactor environment", "video_id": "video10890", "sen_id": 209968}, {"caption": "man is shown explaining what he is doing with some kind of scientific water tank that is being shown", "video_id": "video10890", "sen_id": 209969}, {"caption": "this video is showing the inner working of a machine", "video_id": "video10890", "sen_id": 209970}, {"caption": "curved tubes straight pipes and technical instruments connected in a metal casing below ground glow white and bright blue", "video_id": "video10890", "sen_id": 209971}, {"caption": "a technician talks about some of his work and the camera pans over machinery", "video_id": "video10890", "sen_id": 209972}, {"caption": "a news program shows different parts of machinery while a narrator explains what is happening", "video_id": "video10890", "sen_id": 209973}, {"caption": "a man explains how a large piece of scientific equipment works", "video_id": "video10890", "sen_id": 209974}, {"caption": "some techicians wearing white cloths are inspections machines in industry", "video_id": "video10890", "sen_id": 209975}, {"caption": "euro news futuris man talks about a machine", "video_id": "video10890", "sen_id": 209976}, {"caption": "information i from euro newsits full of pipes and wired blue light is on", "video_id": "video10890", "sen_id": 209977}, {"caption": "an old man in white dress explaning about the machinery parts", "video_id": "video10890", "sen_id": 209978}, {"caption": "a bunch of wires in a building are being filmed", "video_id": "video10890", "sen_id": 209979}, {"caption": "a person is riding a dirt bike until it flips at the end", "video_id": "video10993", "sen_id": 209980}, {"caption": "a man rides a motorcycle over a small hill and falls over", "video_id": "video10993", "sen_id": 209981}, {"caption": "a young man on a motorbike tries a jumping stunt from a dirt ramp and rolls forward and off his bike which continues to move forward", "video_id": "video10993", "sen_id": 209982}, {"caption": "a man riding a motorcycle over a dirt hill falls to the ground", "video_id": "video10993", "sen_id": 209983}, {"caption": "a biker is driving down the road and on a hill", "video_id": "video10993", "sen_id": 209984}, {"caption": "man riding mountain bike falls while jumping a hill while person filming is surprised", "video_id": "video10993", "sen_id": 209985}, {"caption": "dirt bike riders practicing jump riding off a hill", "video_id": "video10993", "sen_id": 209986}, {"caption": "a man tries to do a jump on his dirt bike only to fall off", "video_id": "video10993", "sen_id": 209987}, {"caption": "a motorcyclist jumping a dirt jump and having a wreck", "video_id": "video10993", "sen_id": 209988}, {"caption": "a man attempts a jump on a dirt bike and he falls off", "video_id": "video10993", "sen_id": 209989}, {"caption": "a man on a dirt bike goes over a jump and crashes", "video_id": "video10993", "sen_id": 209990}, {"caption": "a crazy man dashes on a motorcycle to fall head down and gets up", "video_id": "video10993", "sen_id": 209991}, {"caption": "a person is driving a motor cycle and met with an accident", "video_id": "video10993", "sen_id": 209992}, {"caption": "a guy on a dirt bike jumps a hill and falls", "video_id": "video10993", "sen_id": 209993}, {"caption": "a man is riding a bike and crashing on the ground after taking jump", "video_id": "video10993", "sen_id": 209994}, {"caption": "a man that is riding a dirt bike over dirt", "video_id": "video10993", "sen_id": 209995}, {"caption": "a motorcyclist dashes and falls down but escapes with little injury", "video_id": "video10993", "sen_id": 209996}, {"caption": "one man driving bike fastly and fell down", "video_id": "video10993", "sen_id": 209997}, {"caption": "the bike rider made a bike jump and unexpectedly fall down", "video_id": "video10993", "sen_id": 209998}, {"caption": "people are riding their dirt bikes in a forest", "video_id": "video10993", "sen_id": 209999}, {"caption": "a computer simulation shows a lander and a rover on the moon", "video_id": "video12690", "sen_id": 210000}, {"caption": "a moon lander and rover on the surface of the moon", "video_id": "video12690", "sen_id": 210001}, {"caption": "a scientist discusses a rover that will be sent to another planet", "video_id": "video12690", "sen_id": 210002}, {"caption": "a man is talking about rover and another figure in space", "video_id": "video12690", "sen_id": 210003}, {"caption": "two satellites are being shown on the surface of the moon or some kind of planet", "video_id": "video12690", "sen_id": 210004}, {"caption": "a space shuttle was landed in moon and send information to space authority", "video_id": "video12690", "sen_id": 210005}, {"caption": "a chinese lander and rover explore the rocky lunar surface", "video_id": "video12690", "sen_id": 210006}, {"caption": "new channel reports of a satellite landing in other planet and images are seen", "video_id": "video12690", "sen_id": 210007}, {"caption": "a person is explaining about space program in a video", "video_id": "video12690", "sen_id": 210008}, {"caption": "in the tv news there are show satellite in the space", "video_id": "video12690", "sen_id": 210009}, {"caption": "a man talking about a graphic of different vehicles that are on another planet", "video_id": "video12690", "sen_id": 210010}, {"caption": "lunar vehicles remaining landed on the land of moon", "video_id": "video12690", "sen_id": 210011}, {"caption": "computer images of a lunar rover is being played", "video_id": "video12690", "sen_id": 210012}, {"caption": "a space picthe satellite is shownits a nice pic", "video_id": "video12690", "sen_id": 210013}, {"caption": "someone is reading and showing a new about space and satellite", "video_id": "video12690", "sen_id": 210014}, {"caption": "a newscaster is describing details of the china lunar exploration program", "video_id": "video12690", "sen_id": 210015}, {"caption": "the vehicle remains landed on the planet for the exploration program", "video_id": "video12690", "sen_id": 210016}, {"caption": "cctv news its been a pleasure for me to come to the moon", "video_id": "video12690", "sen_id": 210017}, {"caption": "a rover is launched for a chinese space program", "video_id": "video12690", "sen_id": 210018}, {"caption": "there are some pieces of machinery on the moon in space", "video_id": "video12690", "sen_id": 210019}, {"caption": "some badminton players are taking a break from their live game", "video_id": "video10308", "sen_id": 210020}, {"caption": "tennis players go for rest after a set in a competition", "video_id": "video10308", "sen_id": 210021}, {"caption": "a badminton team of two wears printed yellow tee shirts with black shorts and walks off the court to towel off during a break in the game", "video_id": "video10308", "sen_id": 210022}, {"caption": "some tennis players walking to the side of the court", "video_id": "video10308", "sen_id": 210023}, {"caption": "badminton players are shown taking a break from the game and then one of the is shown starting to play", "video_id": "video10308", "sen_id": 210024}, {"caption": "a couple of men in yellow jerseys playing doubles tennis", "video_id": "video10308", "sen_id": 210025}, {"caption": "two teams of two athletes battle against each other in a tennis tournament", "video_id": "video10308", "sen_id": 210026}, {"caption": "people gathered to watch shuttle cock game in the stadium", "video_id": "video10308", "sen_id": 210027}, {"caption": "a game of badminton gets finished and another player is about to serve the shuttle", "video_id": "video10308", "sen_id": 210028}, {"caption": "a team steps off the court between matches of doubles tennis", "video_id": "video10308", "sen_id": 210029}, {"caption": "players are taking rest after completing their game show", "video_id": "video10308", "sen_id": 210030}, {"caption": "a tennis match is taking place and one member team is having a break", "video_id": "video10308", "sen_id": 210031}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10308", "sen_id": 210032}, {"caption": "the badminton match rally is ended and the players are taking drinks", "video_id": "video10308", "sen_id": 210033}, {"caption": "two teams of men play a badmitton game in a large stadium in front of many people", "video_id": "video10308", "sen_id": 210034}, {"caption": "in a two player shuttle matchthe players are are taking a break in-between and wiping their face", "video_id": "video10308", "sen_id": 210035}, {"caption": "some guys are playing a sport on a court", "video_id": "video10308", "sen_id": 210036}, {"caption": "two players playing badminton very interesting to watch", "video_id": "video10308", "sen_id": 210037}, {"caption": "a break for the teams playing in a badminton tournament", "video_id": "video10308", "sen_id": 210038}, {"caption": "some people are playing badminton on a court", "video_id": "video10308", "sen_id": 210039}, {"caption": "a man is playing a video game and is shooting different objects", "video_id": "video11594", "sen_id": 210040}, {"caption": "a call of duty commentary clip from youtube", "video_id": "video11594", "sen_id": 210041}, {"caption": "a british man plays a first person shooter video game", "video_id": "video11594", "sen_id": 210042}, {"caption": "a man is playing a video game with a gun shooting at people", "video_id": "video11594", "sen_id": 210043}, {"caption": "a young man plays a first-person shooter video game", "video_id": "video11594", "sen_id": 210044}, {"caption": "there is a commando fighting against enemies", "video_id": "video11594", "sen_id": 210045}, {"caption": "a man is playing a video game while talking about it", "video_id": "video11594", "sen_id": 210046}, {"caption": "one man playing video shooting game and finding target", "video_id": "video11594", "sen_id": 210047}, {"caption": "a youtube type video of a man talking while showing the game he is playing it is some type of shooter game", "video_id": "video11594", "sen_id": 210048}, {"caption": "the player wore a hat and a headset as he played the live shooter video game", "video_id": "video11594", "sen_id": 210049}, {"caption": "there is someone firing against enemies while playing", "video_id": "video11594", "sen_id": 210050}, {"caption": "a young man wearing black and red is in an upper corner commenting while a figure is seen shooting toward a glass panel on a black weapon which is pointing at the figure", "video_id": "video11594", "sen_id": 210051}, {"caption": "a young man describes and demonstrates a video game that he is playing", "video_id": "video11594", "sen_id": 210052}, {"caption": "a man playing a shooting video game hides form the enemy", "video_id": "video11594", "sen_id": 210053}, {"caption": "a person is playing a fps video game", "video_id": "video11594", "sen_id": 210054}, {"caption": "a life stream of a first person shooter game narrated by a british man", "video_id": "video11594", "sen_id": 210055}, {"caption": "a gamer is webcasting while playing a first person shooter video game", "video_id": "video11594", "sen_id": 210056}, {"caption": "guy playing a action game and talking about it", "video_id": "video11594", "sen_id": 210057}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video11594", "sen_id": 210058}, {"caption": "someone is playing a first person video game", "video_id": "video11594", "sen_id": 210059}, {"caption": "a man giving technique direction on using the forehand push with a ping pong paddle", "video_id": "video11176", "sen_id": 210060}, {"caption": "a man giving commentary and showing how to play table tennis", "video_id": "video11176", "sen_id": 210061}, {"caption": "a man describes and demonstrates a table tennis shot", "video_id": "video11176", "sen_id": 210062}, {"caption": "a man in a polo shirt teaches others how to use their paddle in ping pong", "video_id": "video11176", "sen_id": 210063}, {"caption": "a man is standing at a tennis table given an explanation of what he is doing", "video_id": "video11176", "sen_id": 210064}, {"caption": "a man holding a ping pong paddle standing in front of a table", "video_id": "video11176", "sen_id": 210065}, {"caption": "a guy is giving instruction on how to play table tennis or it also be called ping pong", "video_id": "video11176", "sen_id": 210066}, {"caption": "one coach talking about how to play tabletennis in a show", "video_id": "video11176", "sen_id": 210067}, {"caption": "a player is asking some thing about table tennis game", "video_id": "video11176", "sen_id": 210068}, {"caption": "ping pong players in grey tshirt explaining the tricks and moves to be successful player", "video_id": "video11176", "sen_id": 210069}, {"caption": "there is a table tannis player at the practice section", "video_id": "video11176", "sen_id": 210070}, {"caption": "a man giving a tutorial on how to play table tennis", "video_id": "video11176", "sen_id": 210071}, {"caption": "a bold hair guy talking on how to play table tennis", "video_id": "video11176", "sen_id": 210072}, {"caption": "a man table tennis explaining and rules and regulation", "video_id": "video11176", "sen_id": 210073}, {"caption": "a man is standing and talking in a room", "video_id": "video11176", "sen_id": 210074}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video11176", "sen_id": 210075}, {"caption": "a person in black dress explains how to play a table tennis game and how to posture", "video_id": "video11176", "sen_id": 210076}, {"caption": "a man holding a ping pong paddle is talking about a four hand push in front of a ping pong table", "video_id": "video11176", "sen_id": 210077}, {"caption": "a man in a gray shirt with white stripes playing ping pong", "video_id": "video11176", "sen_id": 210078}, {"caption": "some people are playing ping pong on a court", "video_id": "video11176", "sen_id": 210079}, {"caption": "a group of frogs on lilly pads croak at one another", "video_id": "video12841", "sen_id": 210080}, {"caption": "bullfrogs on lily pads ribetting to each other", "video_id": "video12841", "sen_id": 210081}, {"caption": "a group of frogs setting on lily pads croak in unison", "video_id": "video12841", "sen_id": 210082}, {"caption": "a group of small swamp frogs set on large green lily pads", "video_id": "video12841", "sen_id": 210083}, {"caption": "a group of frogs set on lily pads and croak at one another", "video_id": "video12841", "sen_id": 210084}, {"caption": "a group of animated frogs are sitting on lily pads croaking to each other", "video_id": "video12841", "sen_id": 210085}, {"caption": "a frog is breathing and all the frogs around making noise", "video_id": "video12841", "sen_id": 210086}, {"caption": "group of frogs making sounds in a lake", "video_id": "video12841", "sen_id": 210087}, {"caption": "a video animation of movie video cartoon frogs making sound sitting beside displaying on screen", "video_id": "video12841", "sen_id": 210088}, {"caption": "frogs speaking to their leader in water in a animated cartoon", "video_id": "video12841", "sen_id": 210089}, {"caption": "frog are sitting on lily pads in the water talking", "video_id": "video12841", "sen_id": 210090}, {"caption": "a group of frogs sitting on leaf in middle of water making a noise", "video_id": "video12841", "sen_id": 210091}, {"caption": "there are a lot of cartoon frogs croaking to music", "video_id": "video12841", "sen_id": 210092}, {"caption": "a group of tree frogs making music by croaking", "video_id": "video12841", "sen_id": 210093}, {"caption": "some cartoon characters are moving around an area", "video_id": "video12841", "sen_id": 210094}, {"caption": "cartoon frogs are sitting on lilly pads croaking", "video_id": "video12841", "sen_id": 210095}, {"caption": "seven cartoon frogs are sitting on leaves in a pond and croaking", "video_id": "video12841", "sen_id": 210096}, {"caption": "cartoon frogs sit on lilly pads and croak together", "video_id": "video12841", "sen_id": 210097}, {"caption": "its all about the cartoon programme and the cartoon frog is having some food and many frogs are making croacks in the pond", "video_id": "video12841", "sen_id": 210098}, {"caption": "some frogs are sitting outside on lilly pads", "video_id": "video12841", "sen_id": 210099}, {"caption": "many people are shown relaxing and having fun at a popular beach", "video_id": "video12303", "sen_id": 210100}, {"caption": "a man performs tricks on a pole located on a large beach", "video_id": "video12303", "sen_id": 210101}, {"caption": "women in swimsuits are enjoying their vacation", "video_id": "video12303", "sen_id": 210102}, {"caption": "people on a very busy beach participate in various physical activities", "video_id": "video12303", "sen_id": 210103}, {"caption": "people are walking on the beach followed by a person paying out someone spinning on a wire and women laying out", "video_id": "video12303", "sen_id": 210104}, {"caption": "there is some tourists enjoying themselves at a beach", "video_id": "video12303", "sen_id": 210105}, {"caption": "the men are laying in the sea shore they are very happy", "video_id": "video12303", "sen_id": 210106}, {"caption": "people enjoying sun bath and playing games near a sea shore", "video_id": "video12303", "sen_id": 210107}, {"caption": "people are walking up and down the beach on a hot day", "video_id": "video12303", "sen_id": 210108}, {"caption": "many peoples are playing running and sunbathing on a beach", "video_id": "video12303", "sen_id": 210109}, {"caption": "people are doing activities on the beach and sunbathing", "video_id": "video12303", "sen_id": 210110}, {"caption": "in beach men and women relaxing and a man doing gymnastics with the help of pole and some people taking photos", "video_id": "video12303", "sen_id": 210111}, {"caption": "a man preforms some gynastic stunts on the beach", "video_id": "video12303", "sen_id": 210112}, {"caption": "man and women naer beach sleeping on sand with under wear", "video_id": "video12303", "sen_id": 210113}, {"caption": "people on a beach are lying down enjoying themselves", "video_id": "video12303", "sen_id": 210114}, {"caption": "some people are swiming on a beach and two man in white are talking with each other", "video_id": "video12303", "sen_id": 210115}, {"caption": "mens and beautiful womens are there in seashore", "video_id": "video12303", "sen_id": 210116}, {"caption": "a woman sits on top of man and applies sun lotion on his back", "video_id": "video12303", "sen_id": 210117}, {"caption": "people are walking exercising & enjoying in beach side", "video_id": "video12303", "sen_id": 210118}, {"caption": "some people are doing various things on a beach", "video_id": "video12303", "sen_id": 210119}, {"caption": "a man making a presentation for technology", "video_id": "video12663", "sen_id": 210120}, {"caption": "a man in a white shirt is discussing computer science engineering", "video_id": "video12663", "sen_id": 210121}, {"caption": "a young man talks about information systems", "video_id": "video12663", "sen_id": 210122}, {"caption": "a man giving a informational video on some technology", "video_id": "video12663", "sen_id": 210123}, {"caption": "a man is giving a technology presentation for business people", "video_id": "video12663", "sen_id": 210124}, {"caption": "a man discusses a computer program that he has spent time working on", "video_id": "video12663", "sen_id": 210125}, {"caption": "a man wearing a white shirt is talking about technology", "video_id": "video12663", "sen_id": 210126}, {"caption": "a indian individual talking about different computer jobs", "video_id": "video12663", "sen_id": 210127}, {"caption": "a man wearing a white shirt and glasses is talking about computer science", "video_id": "video12663", "sen_id": 210128}, {"caption": "a man in a white shirt and glasses is talking about computer science", "video_id": "video12663", "sen_id": 210129}, {"caption": "a man in a white shirt stands in front of a digital art background discussing information systems", "video_id": "video12663", "sen_id": 210130}, {"caption": "a man with a white button up shirt talks about computer sciences engineering", "video_id": "video12663", "sen_id": 210131}, {"caption": "a man making a presentaion of a technological subject", "video_id": "video12663", "sen_id": 210132}, {"caption": "a man in a white shirt is facing the camera and giving a lecture about computer science", "video_id": "video12663", "sen_id": 210133}, {"caption": "a man wearing a white shirt talking about engineering", "video_id": "video12663", "sen_id": 210134}, {"caption": "a man in white dress explaining something in front of the camera", "video_id": "video12663", "sen_id": 210135}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video12663", "sen_id": 210136}, {"caption": "a person with white shirt is explaining about managing information system", "video_id": "video12663", "sen_id": 210137}, {"caption": "a boy with the tag talks he wear specs he has no beared", "video_id": "video12663", "sen_id": 210138}, {"caption": "a man with glasses is speaking about something", "video_id": "video12663", "sen_id": 210139}, {"caption": "a group of people who vary in age play pinball in a large indoor arcade", "video_id": "video11570", "sen_id": 210140}, {"caption": "a clip that is showing various pinball machines", "video_id": "video11570", "sen_id": 210141}, {"caption": "people are playing pinball on machines in an arcade", "video_id": "video11570", "sen_id": 210142}, {"caption": "various people are playing pinball machines in what appears to be an arcade", "video_id": "video11570", "sen_id": 210143}, {"caption": "young men are playing the games in an arcade", "video_id": "video11570", "sen_id": 210144}, {"caption": "a group of people play pin ball in a large indoor arcade", "video_id": "video11570", "sen_id": 210145}, {"caption": "people play the indoor games in the private game zone area", "video_id": "video11570", "sen_id": 210146}, {"caption": "some video games and people playing on it to win the game", "video_id": "video11570", "sen_id": 210147}, {"caption": "a few people playing the arcade games based on movies or cartoons", "video_id": "video11570", "sen_id": 210148}, {"caption": "many young people like to play pinball machines", "video_id": "video11570", "sen_id": 210149}, {"caption": "bunch of people playing ping ball machine", "video_id": "video11570", "sen_id": 210150}, {"caption": "more peoples are in the game section", "video_id": "video11570", "sen_id": 210151}, {"caption": "a group of people watching the game designed by the students", "video_id": "video11570", "sen_id": 210152}, {"caption": "an arcade filled with people playing games especially pinball", "video_id": "video11570", "sen_id": 210153}, {"caption": "a female in a purple shirt and blue jacket with a red and white baseball cap plays numerous pinball games", "video_id": "video11570", "sen_id": 210154}, {"caption": "some people are in a crowd inside a place", "video_id": "video11570", "sen_id": 210155}, {"caption": "the flashing lights of an arcade game are maneuvered by a young man in an arcade", "video_id": "video11570", "sen_id": 210156}, {"caption": "a lot of people crowded and watching the star trek music box", "video_id": "video11570", "sen_id": 210157}, {"caption": "some players playing video games in a video game parlour", "video_id": "video11570", "sen_id": 210158}, {"caption": "several people in a game room that has a variety of pinball tables", "video_id": "video11570", "sen_id": 210159}, {"caption": "a group of men and women are looking at and trying on clothes watches and purses then standing in a crowd", "video_id": "video11336", "sen_id": 210160}, {"caption": "man models get dressed and ready to walk down the runway", "video_id": "video11336", "sen_id": 210161}, {"caption": "a group of hairdressers clothes designers and a waiting audience prepare for a fashion show", "video_id": "video11336", "sen_id": 210162}, {"caption": "a man wearing glasses and talking to other men", "video_id": "video11336", "sen_id": 210163}, {"caption": "a group of people in a fashion concert", "video_id": "video11336", "sen_id": 210164}, {"caption": "salon hair stylist doing hair in large room", "video_id": "video11336", "sen_id": 210165}, {"caption": "many people are in the dressing room and they are ready for the carnival", "video_id": "video11336", "sen_id": 210166}, {"caption": "people trying on clothes at some sort of modeling convention", "video_id": "video11336", "sen_id": 210167}, {"caption": "there are some fashion trends going on", "video_id": "video11336", "sen_id": 210168}, {"caption": "a man is preparing different models in clothes in a close area", "video_id": "video11336", "sen_id": 210169}, {"caption": "a watches a black dress lady cutting hairs girls sitting on chair and man dressing boys many peoples standing in row", "video_id": "video11336", "sen_id": 210170}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video11336", "sen_id": 210171}, {"caption": "men try on different high style fashion clothes", "video_id": "video11336", "sen_id": 210172}, {"caption": "several people are getting their hair and clothes done", "video_id": "video11336", "sen_id": 210173}, {"caption": "a male fashion show which men are introduced to different stylists and new fashions", "video_id": "video11336", "sen_id": 210174}, {"caption": "some junk is being sold to some people", "video_id": "video11336", "sen_id": 210175}, {"caption": "male fashion models get ready to walk the runway in a large fashion show", "video_id": "video11336", "sen_id": 210176}, {"caption": "guy fixing the models and preparing them for the show", "video_id": "video11336", "sen_id": 210177}, {"caption": "a fashion show models getting ready in dressing room a designer checking some snaps and selecting costumes", "video_id": "video11336", "sen_id": 210178}, {"caption": "men try on outlandish clothes for a fashion tv show", "video_id": "video11336", "sen_id": 210179}, {"caption": "someone showing you how to watch all the episodes", "video_id": "video11583", "sen_id": 210180}, {"caption": "a screen recording of someone explaining how to do something regarding videos", "video_id": "video11583", "sen_id": 210181}, {"caption": "a website designed to allow customers to click on and play whatever movies and television shows that they want to view", "video_id": "video11583", "sen_id": 210182}, {"caption": "a tutorial shows how to open and play a video", "video_id": "video11583", "sen_id": 210183}, {"caption": "a yellow circle is dragged across a computer screen panning videos", "video_id": "video11583", "sen_id": 210184}, {"caption": "music playing in background as navigation happens on a screen", "video_id": "video11583", "sen_id": 210185}, {"caption": "screen capture of online photo and video editing", "video_id": "video11583", "sen_id": 210186}, {"caption": "high tempo music is playing while a video service is explained", "video_id": "video11583", "sen_id": 210187}, {"caption": "a user interacts with a web page and explains how to click on a video on the page", "video_id": "video11583", "sen_id": 210188}, {"caption": "someone is demonstrating how to watch movies on a website", "video_id": "video11583", "sen_id": 210189}, {"caption": "there is a website with lot of options", "video_id": "video11583", "sen_id": 210190}, {"caption": "a user navigates through different episodes of televison on a grey website", "video_id": "video11583", "sen_id": 210191}, {"caption": "one men searching the celebrity in the internet the back ground is super music arriving", "video_id": "video11583", "sen_id": 210192}, {"caption": "an advertisement for something about the media programs", "video_id": "video11583", "sen_id": 210193}, {"caption": "an instructional video on how to download a local copy of videos from a website", "video_id": "video11583", "sen_id": 210194}, {"caption": "a screen cast of someone navigating a website with techno music playing", "video_id": "video11583", "sen_id": 210195}, {"caption": "instructions are being shown on how to properly navigate a web site", "video_id": "video11583", "sen_id": 210196}, {"caption": "some kind of instructional video with loud music playing in the background", "video_id": "video11583", "sen_id": 210197}, {"caption": "a person demonstrates a computer program that looks for movies and tv shows", "video_id": "video11583", "sen_id": 210198}, {"caption": "a computer tutorial is shown where i guy seems to be getting illegal movies", "video_id": "video11583", "sen_id": 210199}, {"caption": "small group of men in construction clothing showing how to break something down", "video_id": "video11507", "sen_id": 210200}, {"caption": "group of men in construction clothing showing how to tear down an area", "video_id": "video11507", "sen_id": 210201}, {"caption": "three people discuss the excavation of someone's home", "video_id": "video11507", "sen_id": 210202}, {"caption": "a woman and two men discuss the work they are doing in a disadvantaged neighborhood", "video_id": "video11507", "sen_id": 210203}, {"caption": "three members of the humane society examine an old house", "video_id": "video11507", "sen_id": 210204}, {"caption": "the rescue of an animal by the humane society using an excavator", "video_id": "video11507", "sen_id": 210205}, {"caption": "two men and a lady are looking at a monitor outside a house and others are on construction equipment", "video_id": "video11507", "sen_id": 210206}, {"caption": "three men talking and trying to fix a house", "video_id": "video11507", "sen_id": 210207}, {"caption": "three men figure out how to fix the corner of a house", "video_id": "video11507", "sen_id": 210208}, {"caption": "a group of people talk about the repair options for a house in a city", "video_id": "video11507", "sen_id": 210209}, {"caption": "a group of crew people discussing home improvements", "video_id": "video11507", "sen_id": 210210}, {"caption": "a guy in grey coat is showing something to the other two people", "video_id": "video11507", "sen_id": 210211}, {"caption": "a group of people look at a small area of land and clear it", "video_id": "video11507", "sen_id": 210212}, {"caption": "a man is opperetting a crane in the road", "video_id": "video11507", "sen_id": 210213}, {"caption": "a television screen and gentle man standing and black dress man wearing hat standing near car and walking people", "video_id": "video11507", "sen_id": 210214}, {"caption": "bearded guy in black cap talking to the camera", "video_id": "video11507", "sen_id": 210215}, {"caption": "there is someone planning to do something on the street", "video_id": "video11507", "sen_id": 210216}, {"caption": "some people are standing outside a house looking at it", "video_id": "video11507", "sen_id": 210217}, {"caption": "the newsreaders are well dressed and the woman is in a black suit and the gentleman is in a black jacket", "video_id": "video11507", "sen_id": 210218}, {"caption": "a group of people are next to a building", "video_id": "video11507", "sen_id": 210219}, {"caption": "a man is wearing a crown and dancing in a video", "video_id": "video10784", "sen_id": 210220}, {"caption": "a music video showing different people and places", "video_id": "video10784", "sen_id": 210221}, {"caption": "there is a man with crown singing on the floor", "video_id": "video10784", "sen_id": 210222}, {"caption": "a man is singing and dancing wearing a black hat", "video_id": "video10784", "sen_id": 210223}, {"caption": "singer with gold king crown on was singing about drinking and rocking out", "video_id": "video10784", "sen_id": 210224}, {"caption": "man is dancing with his crazy outfit and skills", "video_id": "video10784", "sen_id": 210225}, {"caption": "there is a with a crown dancing on the floor", "video_id": "video10784", "sen_id": 210226}, {"caption": "a pop singer with the thrown as king is dancing and singing", "video_id": "video10784", "sen_id": 210227}, {"caption": "the artist known as will i am is in a music video having fun with a crown on his head", "video_id": "video10784", "sen_id": 210228}, {"caption": "man in king crown dancing and singing while bottles of wine break", "video_id": "video10784", "sen_id": 210229}, {"caption": "am singing in the song scream & shout featuring britney spears", "video_id": "video10784", "sen_id": 210230}, {"caption": "a hip hop artist singing while lights flash all around him", "video_id": "video10784", "sen_id": 210231}, {"caption": "a man is singing and dancing with flashy lights around him", "video_id": "video10784", "sen_id": 210232}, {"caption": "a man wearing a golden crown sings and dances on a colorful stage", "video_id": "video10784", "sen_id": 210233}, {"caption": "a man with a crown on is singing and dancing", "video_id": "video10784", "sen_id": 210234}, {"caption": "a black man sings while champagne pops and people dance", "video_id": "video10784", "sen_id": 210235}, {"caption": "a man stands in front of a well lit backdrop with a shiny gold metal cut out of a crown attached to his head that says king", "video_id": "video10784", "sen_id": 210236}, {"caption": "a singer in a music video while images are flashing on the screen", "video_id": "video10784", "sen_id": 210237}, {"caption": "an african man in a strange hat sings and dances", "video_id": "video10784", "sen_id": 210238}, {"caption": "a man is rapping with a crown on his head", "video_id": "video10784", "sen_id": 210239}, {"caption": "cooking food humor commentary showing food in a pan", "video_id": "video11513", "sen_id": 210240}, {"caption": "a chef is discussing how easy it is to make dutch babies in a black frying pan", "video_id": "video11513", "sen_id": 210241}, {"caption": "a man is introducing a recipe for dutch babies", "video_id": "video11513", "sen_id": 210242}, {"caption": "a chef talks about the features of a recipe that he has recently completed", "video_id": "video11513", "sen_id": 210243}, {"caption": "a man talks about a breakfast food called dutch babies in a cash iron skillet", "video_id": "video11513", "sen_id": 210244}, {"caption": "a man discusses a dish called dutch babies which are sitting in a cast iron pan on a striped towel", "video_id": "video11513", "sen_id": 210245}, {"caption": "its a delicious yellowish food in a pan ready to be eat", "video_id": "video11513", "sen_id": 210246}, {"caption": "a man is heard telling us about a meal called dutch babies as an example of it sits in a black pan on a towel", "video_id": "video11513", "sen_id": 210247}, {"caption": "a cook demonstrates how to prepare a delicious german breakfast", "video_id": "video11513", "sen_id": 210248}, {"caption": "a man and a bowl dishes on table inside kitchen to prepared to serve to eat displaying on screen", "video_id": "video11513", "sen_id": 210249}, {"caption": "some one showing some ready snacks on the table", "video_id": "video11513", "sen_id": 210250}, {"caption": "a cooking show with dutch babies a breakfast or brunch food", "video_id": "video11513", "sen_id": 210251}, {"caption": "man talking about dutch babies brunch item video recipe", "video_id": "video11513", "sen_id": 210252}, {"caption": "a man talking about cooking the food called dutch babies", "video_id": "video11513", "sen_id": 210253}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video11513", "sen_id": 210254}, {"caption": "there is a man making a dish named dutch babies", "video_id": "video11513", "sen_id": 210255}, {"caption": "a person talking about food call dutch babies", "video_id": "video11513", "sen_id": 210256}, {"caption": "a well cooked dutch babies places on the table in a pan which is ready to serve", "video_id": "video11513", "sen_id": 210257}, {"caption": "a man describing what dutch babies are by showing a picture", "video_id": "video11513", "sen_id": 210258}, {"caption": "some food is being cooked on a black pan", "video_id": "video11513", "sen_id": 210259}, {"caption": "a baby parrot is in a box with toys and a human hand", "video_id": "video12842", "sen_id": 210260}, {"caption": "a baby parrot is cared for in captivity", "video_id": "video12842", "sen_id": 210261}, {"caption": "a person helps to clean up the area a parrot has been living in", "video_id": "video12842", "sen_id": 210262}, {"caption": "a person is petting a bird that has lost it's feathers", "video_id": "video12842", "sen_id": 210263}, {"caption": "a young parrot with pin feathers is in its box with toys and nesting material it is flapping its wings and interacting with a human hand", "video_id": "video12842", "sen_id": 210264}, {"caption": "there is a bird flying in a cage", "video_id": "video12842", "sen_id": 210265}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video12842", "sen_id": 210266}, {"caption": "two parrots in the home dag 32 makes sound", "video_id": "video12842", "sen_id": 210267}, {"caption": "a man putting a parrot in a cage which has a lot of features", "video_id": "video12842", "sen_id": 210268}, {"caption": "some animated birds are singing and dancing for their freedoms", "video_id": "video12842", "sen_id": 210269}, {"caption": "there is a bird playing inside the house", "video_id": "video12842", "sen_id": 210270}, {"caption": "a bird is shown being taken care of by a person", "video_id": "video12842", "sen_id": 210271}, {"caption": "a bird is playing with a toy which is hanged", "video_id": "video12842", "sen_id": 210272}, {"caption": "a person holding parrot in hand singing music displaying on screen", "video_id": "video12842", "sen_id": 210273}, {"caption": "a parrot in a room is doing things", "video_id": "video12842", "sen_id": 210274}, {"caption": "birds are talking and playing in the", "video_id": "video12842", "sen_id": 210275}, {"caption": "cute parrot is watch some thing in there", "video_id": "video12842", "sen_id": 210276}, {"caption": "music is playing and showing pictures of birds learning to fly", "video_id": "video12842", "sen_id": 210277}, {"caption": "the animated characters are dancing singing and flying with lot of energy", "video_id": "video12842", "sen_id": 210278}, {"caption": "some birds are in a cage and flapping their wings", "video_id": "video12842", "sen_id": 210279}, {"caption": "a national museum of ancient native american treasures", "video_id": "video11471", "sen_id": 210280}, {"caption": "a native american museum being displayed on bookinghuntercom", "video_id": "video11471", "sen_id": 210281}, {"caption": "a male voiceover describes a native american museum as we see a montage of its artifacts and art", "video_id": "video11471", "sen_id": 210282}, {"caption": "a clip from a museum which houses native american items", "video_id": "video11471", "sen_id": 210283}, {"caption": "slide pictures of a museum showing different art exhibits", "video_id": "video11471", "sen_id": 210284}, {"caption": "many people take a walk throughout the art gallery together", "video_id": "video11471", "sen_id": 210285}, {"caption": "a group of people walking through a museum full of artifacts", "video_id": "video11471", "sen_id": 210286}, {"caption": "a museum featuring native american artifacts of art and culture", "video_id": "video11471", "sen_id": 210287}, {"caption": "a man describes a museum that holds a collection of native american treasures", "video_id": "video11471", "sen_id": 210288}, {"caption": "a group of people walking around looking at some artwork", "video_id": "video11471", "sen_id": 210289}, {"caption": "a museum that houses several native american treasures and is being shown to the public", "video_id": "video11471", "sen_id": 210290}, {"caption": "a group of people in business attire walked through a museum", "video_id": "video11471", "sen_id": 210291}, {"caption": "showing of a native american museum that has alot of historical items", "video_id": "video11471", "sen_id": 210292}, {"caption": "people are looking around at a native american museum", "video_id": "video11471", "sen_id": 210293}, {"caption": "a man talks about a museum that features native american culture and creations", "video_id": "video11471", "sen_id": 210294}, {"caption": "the person walks around the museum and look at the items on display", "video_id": "video11471", "sen_id": 210295}, {"caption": "an advertisement for a museum and it s native american collection", "video_id": "video11471", "sen_id": 210296}, {"caption": "some one is talking about the museum and showing the great collection of the history", "video_id": "video11471", "sen_id": 210297}, {"caption": "a man showing off an museum with different things in it", "video_id": "video11471", "sen_id": 210298}, {"caption": "bunch of people walking in the art gallery", "video_id": "video11471", "sen_id": 210299}, {"caption": "a cartoon of isaac newton describing the history of him", "video_id": "video10978", "sen_id": 210300}, {"caption": "an animated girl demonstrates the story of isaac newton", "video_id": "video10978", "sen_id": 210301}, {"caption": "a clip from sci show talking about isaac newton", "video_id": "video10978", "sen_id": 210302}, {"caption": "an animated man sitting under a tree on some grass", "video_id": "video10978", "sen_id": 210303}, {"caption": "an animated issac newton is hit on the head with an apple while he sleeps under a tree", "video_id": "video10978", "sen_id": 210304}, {"caption": "a woman discussing isaac newton gravity and the apple tree story", "video_id": "video10978", "sen_id": 210305}, {"caption": "cartoon of a young blonde girl sitting under a tree with an apple landing on her", "video_id": "video10978", "sen_id": 210306}, {"caption": "an animated character sitting under a tree when an apple falls on her head", "video_id": "video10978", "sen_id": 210307}, {"caption": "animation about isaac newton and the theory of gravity", "video_id": "video10978", "sen_id": 210308}, {"caption": "a lady describe sir issac newton", "video_id": "video10978", "sen_id": 210309}, {"caption": "an animated girl under an apple tree being hit on the head with a falling apple", "video_id": "video10978", "sen_id": 210310}, {"caption": "sir isaac newton famous scientist has a realization when an apple falls from the tree", "video_id": "video10978", "sen_id": 210311}, {"caption": "there is a man sitting under the apple tree", "video_id": "video10978", "sen_id": 210312}, {"caption": "cartoon made sir isaac newton was sitting under a apple tree and an apple falls on his head", "video_id": "video10978", "sen_id": 210313}, {"caption": "women talking about sir isaac newton", "video_id": "video10978", "sen_id": 210314}, {"caption": "a cartoon of sir isaac newton sitting under a tree with an apple falling on his head", "video_id": "video10978", "sen_id": 210315}, {"caption": "the earth radiates light and isaac newton discovers gravity", "video_id": "video10978", "sen_id": 210316}, {"caption": "sir issac newton sits under tree and apple falls which made him think of gravity", "video_id": "video10978", "sen_id": 210317}, {"caption": " who widely studied gravity is mentioned and part of the legend of an apple falling on his head is beginning to be mentioned as the clip ends", "video_id": "video10978", "sen_id": 210318}, {"caption": "an offscreen woman narrates an animated reconstruction of isaac newton being hit by the apple from the tree", "video_id": "video10978", "sen_id": 210319}, {"caption": "a man in a suit and tie discussing wallstreet on the news on cable television", "video_id": "video10948", "sen_id": 210320}, {"caption": "a man in a suit is talking about different stocks", "video_id": "video10948", "sen_id": 210321}, {"caption": "kramer is talking and using his hands alot", "video_id": "video10948", "sen_id": 210322}, {"caption": "a man is speaking on cnbc about the dow", "video_id": "video10948", "sen_id": 210323}, {"caption": "jim kramer wearing a blue suit and talking about chevron", "video_id": "video10948", "sen_id": 210324}, {"caption": "jim kramer in a suit talking about chevron", "video_id": "video10948", "sen_id": 210325}, {"caption": "a bald man in a suit talks about the new york stock exchange", "video_id": "video10948", "sen_id": 210326}, {"caption": "a man in a suit is talking in front of a bunch of screens", "video_id": "video10948", "sen_id": 210327}, {"caption": "a man in a black suit is been interviewed on cnbc", "video_id": "video10948", "sen_id": 210328}, {"caption": "a man wearing blue color dressed is talking", "video_id": "video10948", "sen_id": 210329}, {"caption": "a man is talking about percentages with another person", "video_id": "video10948", "sen_id": 210330}, {"caption": "a news anchor wearing a suit and ties talks while people walk and stand behind him", "video_id": "video10948", "sen_id": 210331}, {"caption": "in a news studio a man in suit is explaining", "video_id": "video10948", "sen_id": 210332}, {"caption": "a man in a blue suit and yellow tie sitting a news set speaking about the stock market", "video_id": "video10948", "sen_id": 210333}, {"caption": "a bald head man wearing suite talks about on an issue", "video_id": "video10948", "sen_id": 210334}, {"caption": "bald guy in suit and tie talking to the colleague in the newsroom", "video_id": "video10948", "sen_id": 210335}, {"caption": "a man in a suit is giving an interview about the stock market", "video_id": "video10948", "sen_id": 210336}, {"caption": "a cnbc news anchor is talking about a topic", "video_id": "video10948", "sen_id": 210337}, {"caption": "a news anchor speaks for an on-camera segment", "video_id": "video10948", "sen_id": 210338}, {"caption": "a bald man in a suit and tie talks about his predictions for the financial market", "video_id": "video10948", "sen_id": 210339}, {"caption": "a person is using a glue stick to fold and glue a small cup together", "video_id": "video12072", "sen_id": 210340}, {"caption": "a tutorial showing how to make a miniature cup out of paper and glue", "video_id": "video12072", "sen_id": 210341}, {"caption": "a mans hand folds and glues a piece of paper while using clips and scissors to modify it", "video_id": "video12072", "sen_id": 210342}, {"caption": "a person is folding a small cutout of a white castle box", "video_id": "video12072", "sen_id": 210343}, {"caption": "a young woman folding a piece of paper", "video_id": "video12072", "sen_id": 210344}, {"caption": "someone folding a tiny white castle box with binder clips", "video_id": "video12072", "sen_id": 210345}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video12072", "sen_id": 210346}, {"caption": "a person is applying a gum in the product to stick it", "video_id": "video12072", "sen_id": 210347}, {"caption": "a girl with paper doing craft work putting gum and sticking to equipment displaying on screen", "video_id": "video12072", "sen_id": 210348}, {"caption": "a person is doing something with a intel card and clips", "video_id": "video12072", "sen_id": 210349}, {"caption": "a person uses gum to apply to some object for sticking purpose", "video_id": "video12072", "sen_id": 210350}, {"caption": "a man cutting a paper and clibed it", "video_id": "video12072", "sen_id": 210351}, {"caption": "a person is doing a some hand made product", "video_id": "video12072", "sen_id": 210352}, {"caption": "a walkthrough video of a woman making some sort of crafts by gluing labels to overlap themselves to make a complete circuit", "video_id": "video12072", "sen_id": 210353}, {"caption": "a person is doing craft with the small pieces of paper", "video_id": "video12072", "sen_id": 210354}, {"caption": "there is a man using gum in a paper", "video_id": "video12072", "sen_id": 210355}, {"caption": "one man make an hand made art on", "video_id": "video12072", "sen_id": 210356}, {"caption": "a woman demonstrates an origami project with paper glue and paper clips", "video_id": "video12072", "sen_id": 210357}, {"caption": "a lady showing the procedure for making some craft work", "video_id": "video12072", "sen_id": 210358}, {"caption": "music plays as a woman glues together some paper stuff", "video_id": "video12072", "sen_id": 210359}, {"caption": "jeopardy commentary showing the host and a man", "video_id": "video11426", "sen_id": 210360}, {"caption": "a tv countdown of game shows including family feud", "video_id": "video11426", "sen_id": 210361}, {"caption": "a watch mojo clip on family feud mess ups", "video_id": "video11426", "sen_id": 210362}, {"caption": "a game show host talks to a man on the set of the show", "video_id": "video11426", "sen_id": 210363}, {"caption": "woman talking about a list of family game shows", "video_id": "video11426", "sen_id": 210364}, {"caption": "a woman describes a clip from the game show family feud", "video_id": "video11426", "sen_id": 210365}, {"caption": "steve harvey and a contestant on family feud prepare to play the game", "video_id": "video11426", "sen_id": 210366}, {"caption": "a top list of games show moments including jeopardy and family feud", "video_id": "video11426", "sen_id": 210367}, {"caption": "a bald african american man with a mustache introduces a game show", "video_id": "video11426", "sen_id": 210368}, {"caption": "the two people performing on the stage show", "video_id": "video11426", "sen_id": 210369}, {"caption": "people applauding a guy on the stage", "video_id": "video11426", "sen_id": 210370}, {"caption": "a voiceover female shows clips from classic game shows", "video_id": "video11426", "sen_id": 210371}, {"caption": "a bald man is talking in the stage of show", "video_id": "video11426", "sen_id": 210372}, {"caption": "a tv game show host stands on stage with large audience and guest in blue dress shirt", "video_id": "video11426", "sen_id": 210373}, {"caption": "a watchmojo clip shows part of a family feud episode", "video_id": "video11426", "sen_id": 210374}, {"caption": " the host of family feud introduces the fast money segment of the show with a contestant in a blue shirt and red tie", "video_id": "video11426", "sen_id": 210375}, {"caption": "a two men are conducting show in the watchmojo", "video_id": "video11426", "sen_id": 210376}, {"caption": "a black man and a tan suit hosting a game show standing next to a man in a blue shirt and red tie", "video_id": "video11426", "sen_id": 210377}, {"caption": "a two persons one in ash and other in blue color dress standing speaking waving hand clapping audience watching displaying on screen", "video_id": "video11426", "sen_id": 210378}, {"caption": "a host of a tv show stands with a guest in front of a lit up display", "video_id": "video11426", "sen_id": 210379}, {"caption": "gordon ramsey is sitting at a table being served food by a waiter", "video_id": "video10434", "sen_id": 210380}, {"caption": "gordon ramsey tasting some dishes at a restaurant", "video_id": "video10434", "sen_id": 210381}, {"caption": "a man in glasses and a black shirt offers food to a blond man at a table", "video_id": "video10434", "sen_id": 210382}, {"caption": "a man sampling different plates of food from a restaurant", "video_id": "video10434", "sen_id": 210383}, {"caption": "a chef tests food prepared for him by one of his employees", "video_id": "video10434", "sen_id": 210384}, {"caption": "a chef judges food presented to him in a large empty restaurant", "video_id": "video10434", "sen_id": 210385}, {"caption": "man tries strange looking white cream which appears to be a greek dish", "video_id": "video10434", "sen_id": 210386}, {"caption": "a old man in a grey button down shirt complains about his food in a restaurant", "video_id": "video10434", "sen_id": 210387}, {"caption": "chef gordon ramsey discussing an unappetizing dish of hummus that he has been served in a restaurant", "video_id": "video10434", "sen_id": 210388}, {"caption": "a man in a jay leno style shirt sits at a table with a bunch of food", "video_id": "video10434", "sen_id": 210389}, {"caption": "a chef taste tests a dish prepared for him by an underling", "video_id": "video10434", "sen_id": 210390}, {"caption": "gordon ramsey is sitting at a table sucking something through a straw off of a plate", "video_id": "video10434", "sen_id": 210391}, {"caption": "a person in a grey shirt is using a straw to eat a humus", "video_id": "video10434", "sen_id": 210392}, {"caption": "in the restaurant the person had a white food in the plate and he try to eat that using the straw", "video_id": "video10434", "sen_id": 210393}, {"caption": "the man is tasting the food in the restaurant and giving his opinions", "video_id": "video10434", "sen_id": 210394}, {"caption": "there is a aged man talking about a dish", "video_id": "video10434", "sen_id": 210395}, {"caption": " gordon ramsey sampling food in an empty restaurant with the cook standing by", "video_id": "video10434", "sen_id": 210396}, {"caption": "a man is taste testing food with voice over", "video_id": "video10434", "sen_id": 210397}, {"caption": "gordan ramsey is eating food at a table", "video_id": "video10434", "sen_id": 210398}, {"caption": "different kinds of food are served in this clean restaurant it is a beautiful sight", "video_id": "video10434", "sen_id": 210399}, {"caption": "jimmy cohan and another man on his talk show are playing with a monkey", "video_id": "video12812", "sen_id": 210400}, {"caption": "a man is holding a monkey on the back of his head and trying to transfer it to another man's head", "video_id": "video12812", "sen_id": 210401}, {"caption": "a man in a suit on a talk show tries to coax a monkey off another mans back", "video_id": "video12812", "sen_id": 210402}, {"caption": "monkey on the head of a man during a tv talk show", "video_id": "video12812", "sen_id": 210403}, {"caption": "a talk show host has a guest that has a monkey on the back of his neck and the monkey wants to lay his head down", "video_id": "video12812", "sen_id": 210404}, {"caption": "conan obrien is interviewing a man on his show who has a monkey on his shoulder", "video_id": "video12812", "sen_id": 210405}, {"caption": "a monkey laying on the back and neck of a bent over man who leaning over to conan o brian", "video_id": "video12812", "sen_id": 210406}, {"caption": "this is the conan late night show broadcasting an interview of a man with a small money on his head the two man put their heads side by side to get the money to switch heads", "video_id": "video12812", "sen_id": 210407}, {"caption": "two men are sitting at a desk and trying to get a monkey to go from one man s shoulder to the other man s head", "video_id": "video12812", "sen_id": 210408}, {"caption": "a man has a monkey on his head and he is talking to conan o brian", "video_id": "video12812", "sen_id": 210409}, {"caption": "a man is being interviewed by conan o brien", "video_id": "video12812", "sen_id": 210410}, {"caption": "a monkey is sitting on the head of the man", "video_id": "video12812", "sen_id": 210411}, {"caption": "two men are sitting together on television a monkey is laying on a mans neck and the audience is laughing hysterically", "video_id": "video12812", "sen_id": 210412}, {"caption": "a monkey is on a man s back while he s on a talk show", "video_id": "video12812", "sen_id": 210413}, {"caption": "a man in a black suit tries to get a monkey to crawl onto his head", "video_id": "video12812", "sen_id": 210414}, {"caption": "a man with a monkey is on the conan show", "video_id": "video12812", "sen_id": 210415}, {"caption": "conan o brien is laughing with a guest holding a monkey", "video_id": "video12812", "sen_id": 210416}, {"caption": "a monkey is on the back of the celebrity and the anchor also lies on him", "video_id": "video12812", "sen_id": 210417}, {"caption": "a monkey in black color upon head person sitting beside him sitting laughing speaking displaying on screen", "video_id": "video12812", "sen_id": 210418}, {"caption": "a monkey is sitting on a man s neck and he is interviewed", "video_id": "video12812", "sen_id": 210419}, {"caption": "a person is picking up metal items with tweezers", "video_id": "video12301", "sen_id": 210420}, {"caption": "voice over explaining nano technology used to print circuitry", "video_id": "video12301", "sen_id": 210421}, {"caption": "a man explains how nanotechnology creates a product known as the world's smallest lens", "video_id": "video12301", "sen_id": 210422}, {"caption": "pointed tools and disks such as a tweezer to lift a metal ring from a round tray are needed for technology to produce microscopic lenses represented by concentric circles", "video_id": "video12301", "sen_id": 210423}, {"caption": "various parts of computers are on being shown", "video_id": "video12301", "sen_id": 210424}, {"caption": "a silver ring is being made using high tech equipment", "video_id": "video12301", "sen_id": 210425}, {"caption": "a demonstration of how nanotechnology is being used with silicone", "video_id": "video12301", "sen_id": 210426}, {"caption": "a news story discusses the intricate details of hard disk drives", "video_id": "video12301", "sen_id": 210427}, {"caption": "a man is explaining an experiment he had done on electrons", "video_id": "video12301", "sen_id": 210428}, {"caption": "a man is speaking about a mechanical arm and nano technology", "video_id": "video12301", "sen_id": 210429}, {"caption": "a description of lenses and their use in nano-technology", "video_id": "video12301", "sen_id": 210430}, {"caption": "there is news footage of new nanotechnology performing operations on a quantum hard drive", "video_id": "video12301", "sen_id": 210431}, {"caption": "a breakdown of a storage medium with quantum lenses drawing circuits instead of data", "video_id": "video12301", "sen_id": 210432}, {"caption": "abc tv one man talks about ring design", "video_id": "video12301", "sen_id": 210433}, {"caption": "different kinds of minute stainless steel equipment are here for micro works", "video_id": "video12301", "sen_id": 210434}, {"caption": "there is a machine with systematic production capacity", "video_id": "video12301", "sen_id": 210435}, {"caption": "a sharp multiple-layered tool and a solid metal disk with raised symbols are behind a metal ring that is being lifted", "video_id": "video12301", "sen_id": 210436}, {"caption": "machine is making some designs in steel plated", "video_id": "video12301", "sen_id": 210437}, {"caption": "graphics of pieces of metal and circles are being described", "video_id": "video12301", "sen_id": 210438}, {"caption": "a person explains about the nano technology and it is the worlds smallest lens and it is made of electrons", "video_id": "video12301", "sen_id": 210439}, {"caption": "a man is looking at another man climb down a building in the rain", "video_id": "video12696", "sen_id": 210440}, {"caption": "a trailer movie was showing with a man jumping from the top of the roof to the ground", "video_id": "video12696", "sen_id": 210441}, {"caption": "man in tight shirt standing in the rain looking at a man committing suicide", "video_id": "video12696", "sen_id": 210442}, {"caption": "while music is playing in the background a man in medieval garments is looking forward when all of a sudden you hear the thrash of a sword while the man looks stunned and appears to have been stabbed in the back", "video_id": "video12696", "sen_id": 210443}, {"caption": "a man stands in the rain and watches someone climb down from a wall", "video_id": "video12696", "sen_id": 210444}, {"caption": "a man in the rain sees another man impaled", "video_id": "video12696", "sen_id": 210445}, {"caption": "man in the raining is watching another man falling from a building onto steaks and his body gets skewed by them", "video_id": "video12696", "sen_id": 210446}, {"caption": "music is playing as a man in a dark shirt stands in the rain and watches another person fall off a building and get impaled on a gate", "video_id": "video12696", "sen_id": 210447}, {"caption": "a man in the pouring rain looks at a building in front of him", "video_id": "video12696", "sen_id": 210448}, {"caption": "a man standing in the rain watching another person die", "video_id": "video12696", "sen_id": 210449}, {"caption": "a lone man stands in the rain as he watches someone climb down the side of a building and be impaled on several spires; he then fall to his knees", "video_id": "video12696", "sen_id": 210450}, {"caption": "a man with a black shirt standing in the rain", "video_id": "video12696", "sen_id": 210451}, {"caption": "a man is running around and watches a building", "video_id": "video12696", "sen_id": 210452}, {"caption": "a man wearing black color dressed thrown out", "video_id": "video12696", "sen_id": 210453}, {"caption": "a man in black dress rans in rain come near to their building watches that how he fell from the building and sits down in rain", "video_id": "video12696", "sen_id": 210454}, {"caption": "man in a soaking shirt running in the rain stops to see a man jumping off a building", "video_id": "video12696", "sen_id": 210455}, {"caption": "a man in black dressing running in the rain", "video_id": "video12696", "sen_id": 210456}, {"caption": "a man stops running in the rain to watch another person escape from a building whose clothing gets caught and causes a fatal fall on a pole", "video_id": "video12696", "sen_id": 210457}, {"caption": "a man in the rain looking up at a building and watching another man jump from it and die", "video_id": "video12696", "sen_id": 210458}, {"caption": "a person is climbing out of a window", "video_id": "video12696", "sen_id": 210459}, {"caption": "a person bottle feeding a new born puppy", "video_id": "video10035", "sen_id": 210460}, {"caption": "a very small puppy eating milk from a syringe", "video_id": "video10035", "sen_id": 210461}, {"caption": "a little puppy is being fed by a person", "video_id": "video10035", "sen_id": 210462}, {"caption": "a man talks while feeding a puppy from a bottle", "video_id": "video10035", "sen_id": 210463}, {"caption": "a vet feeds a small puppy using a small eyedropper filled with milk", "video_id": "video10035", "sen_id": 210464}, {"caption": "a very tiny puppy is being fed by a man using a syringe with a nipple", "video_id": "video10035", "sen_id": 210465}, {"caption": "someone feeding a newborn puppy from a small bottle device", "video_id": "video10035", "sen_id": 210466}, {"caption": "an extremely young puppy drinking nutrition from a mini-bottle administered by a professional", "video_id": "video10035", "sen_id": 210467}, {"caption": "a small brown animal is being fed by a small feeding bottle", "video_id": "video10035", "sen_id": 210468}, {"caption": "a baby animal is being fed with a small dropper", "video_id": "video10035", "sen_id": 210469}, {"caption": "there is a small dog drinking some water", "video_id": "video10035", "sen_id": 210470}, {"caption": "a man is feeding a newborn puppy with milk", "video_id": "video10035", "sen_id": 210471}, {"caption": "a person feeding a baby dog with a syringe type device", "video_id": "video10035", "sen_id": 210472}, {"caption": "a man feeding a tiny tan and white colored animal with a syringe", "video_id": "video10035", "sen_id": 210473}, {"caption": "a person bottle feeding a baby animal", "video_id": "video10035", "sen_id": 210474}, {"caption": "there is a very little puppy drinking some medicines", "video_id": "video10035", "sen_id": 210475}, {"caption": "a man is explaining how to feed a puppy", "video_id": "video10035", "sen_id": 210476}, {"caption": "a man feeding something for the just born puppy", "video_id": "video10035", "sen_id": 210477}, {"caption": "a man is feeding a tiny brown and white puppy", "video_id": "video10035", "sen_id": 210478}, {"caption": "a man feeds a baby animal with a bottle", "video_id": "video10035", "sen_id": 210479}, {"caption": "trucks and cars pass by a car that is being driven until one crashes", "video_id": "video10017", "sen_id": 210480}, {"caption": "a car witnesses multiple cars crashing into different objects", "video_id": "video10017", "sen_id": 210481}, {"caption": "a car is driving down a road and narrowly misses a car crash in front of them", "video_id": "video10017", "sen_id": 210482}, {"caption": "a car dashcam is filming and two separate car wrecks are shown", "video_id": "video10017", "sen_id": 210483}, {"caption": "a clip of a car accident in a foreign country", "video_id": "video10017", "sen_id": 210484}, {"caption": "dashboard cameras capture two accidents while people off camera speak in russia", "video_id": "video10017", "sen_id": 210485}, {"caption": "various cars getting into accidents with other vehicles", "video_id": "video10017", "sen_id": 210486}, {"caption": "a truck is driving down the road near accidents", "video_id": "video10017", "sen_id": 210487}, {"caption": "a car is driving down the street and an accident happen in front of it", "video_id": "video10017", "sen_id": 210488}, {"caption": "a dash camera recording various motor vehicle accidents", "video_id": "video10017", "sen_id": 210489}, {"caption": "driving along and witnessing accidents along the way two accidents shown", "video_id": "video10017", "sen_id": 210490}, {"caption": "a dash view of a car moving fast down the road", "video_id": "video10017", "sen_id": 210491}, {"caption": "showing crashes in front of people who have a dash cam on", "video_id": "video10017", "sen_id": 210492}, {"caption": "a number of car accidents recorded from someone's dash camera", "video_id": "video10017", "sen_id": 210493}, {"caption": "a dashboard camera catches several car wrecks happening in front of them", "video_id": "video10017", "sen_id": 210494}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10017", "sen_id": 210495}, {"caption": "someone driving the car and captures the roadside houses", "video_id": "video10017", "sen_id": 210496}, {"caption": "a dash cam of a car shows car colliding with another going in the opposite direction", "video_id": "video10017", "sen_id": 210497}, {"caption": "two foreign dash cam video show very bad high speed car crashes", "video_id": "video10017", "sen_id": 210498}, {"caption": "a car is driving around on a road", "video_id": "video10017", "sen_id": 210499}, {"caption": "people in casual clothes gather at an outdoor event between and behind temporary metal partitions as the sky changes from clear to dark arches of clouds", "video_id": "video10449", "sen_id": 210500}, {"caption": "a crowd of people are gathered together for an event", "video_id": "video10449", "sen_id": 210501}, {"caption": "a crowd of people are outside and walking around", "video_id": "video10449", "sen_id": 210502}, {"caption": "under overcast skies a large crowd gathers on a road", "video_id": "video10449", "sen_id": 210503}, {"caption": "a large crowd of people are gathered outside for some event", "video_id": "video10449", "sen_id": 210504}, {"caption": "a blue car is parked on the side of an empty country road and young people gather on a paved road located in a grassy area with trees as the sky is filled with arcs of dark clouds", "video_id": "video10449", "sen_id": 210505}, {"caption": "a police men gets out of the police car and comes to a men who is wearind hat and lot of crowds are there", "video_id": "video10449", "sen_id": 210506}, {"caption": "a blue car parked side of the road and large number of people gathered in one place to watch the movie shooting", "video_id": "video10449", "sen_id": 210507}, {"caption": "a large group is assembled during an event", "video_id": "video10449", "sen_id": 210508}, {"caption": "a crowd of people mill about at this countryside event", "video_id": "video10449", "sen_id": 210509}, {"caption": "there is someone enjoying a festival day", "video_id": "video10449", "sen_id": 210510}, {"caption": "a large crowd is found to be assembled for an event", "video_id": "video10449", "sen_id": 210511}, {"caption": "watch more videos here youtubecom spam safe many peoples", "video_id": "video10449", "sen_id": 210512}, {"caption": "a group of people stand and walk around a road under a dark sky", "video_id": "video10449", "sen_id": 210513}, {"caption": "a large group of people are outside and someone is speaking over a microphone", "video_id": "video10449", "sen_id": 210514}, {"caption": "there is someone shopping from festival stalls", "video_id": "video10449", "sen_id": 210515}, {"caption": "a crowd of people are walking in a small confined area", "video_id": "video10449", "sen_id": 210516}, {"caption": "a peoples are celebrating a festival and enjoying", "video_id": "video10449", "sen_id": 210517}, {"caption": "in a street road there was some problem so that there was crowd", "video_id": "video10449", "sen_id": 210518}, {"caption": "a crowd of people are standing around outside", "video_id": "video10449", "sen_id": 210519}, {"caption": "panning of collages and different movies poster in frames", "video_id": "video11522", "sen_id": 210520}, {"caption": "jazz music is playing in the background as a camera pans over different rooms in a movie theater", "video_id": "video11522", "sen_id": 210521}, {"caption": "a group of artistic paintings and drawings decorate a wall", "video_id": "video11522", "sen_id": 210522}, {"caption": "a wall is covered in pictures and two white chairs sit below a flat screen tv", "video_id": "video11522", "sen_id": 210523}, {"caption": "the different walls of an office contain billboards windows and movie posters", "video_id": "video11522", "sen_id": 210524}, {"caption": "a studio office where cartoons and movies are made", "video_id": "video11522", "sen_id": 210525}, {"caption": "a wall with posted papers on it and a purple floor", "video_id": "video11522", "sen_id": 210526}, {"caption": "images of furniture a tv and several movie posters", "video_id": "video11522", "sen_id": 210527}, {"caption": "a bulletin board is full of art work and family pictures", "video_id": "video11522", "sen_id": 210528}, {"caption": "jazz music is played in the background while images of a room filled with disney images and posters is shown", "video_id": "video11522", "sen_id": 210529}, {"caption": "a camera pans around a room to show items hung on the walls", "video_id": "video11522", "sen_id": 210530}, {"caption": "a video of an office setting that has movie posters hanging on the wall", "video_id": "video11522", "sen_id": 210531}, {"caption": "a showing of an dorm room and wall art", "video_id": "video11522", "sen_id": 210532}, {"caption": "a view of a room and pictures on a wall", "video_id": "video11522", "sen_id": 210533}, {"caption": "images of the decorations around an office are shown with lively music in the background", "video_id": "video11522", "sen_id": 210534}, {"caption": "its all arts and painting about the dory", "video_id": "video11522", "sen_id": 210535}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11522", "sen_id": 210536}, {"caption": "orange and green bands are on the top and bottom of two extended windows displaying small cards round objects and little figures", "video_id": "video11522", "sen_id": 210537}, {"caption": "a exploration of interior decorations of the home and the rooms", "video_id": "video11522", "sen_id": 210538}, {"caption": "the inertial of a room pictures and furnitures and all other parts", "video_id": "video11522", "sen_id": 210539}, {"caption": "there are blades of grass swaying with the breeze while waves converge on the sandy beach", "video_id": "video10856", "sen_id": 210540}, {"caption": "there is the ocean in the background with the waves being shown", "video_id": "video10856", "sen_id": 210541}, {"caption": "waves crash on a beach while tall grass blows in the wind", "video_id": "video10856", "sen_id": 210542}, {"caption": "a view of the ocean and beach with a close up of grass blowing in the wind", "video_id": "video10856", "sen_id": 210543}, {"caption": "the tall grass next to the ocean bends from the wind blowing on it", "video_id": "video10856", "sen_id": 210544}, {"caption": "ocean waves are partially driven by the wind near a beach", "video_id": "video10856", "sen_id": 210545}, {"caption": "the words blitzulan media hover mid screen over a backdrop of a beach and grass blowing in the wind", "video_id": "video10856", "sen_id": 210546}, {"caption": "grass blows in the wind while ocean waves roll ashore", "video_id": "video10856", "sen_id": 210547}, {"caption": "green blades of grass with tan seed heads are in front of a narrow beach with small white waves stopped by a thin dark jetty reaching out into the two-toned sea", "video_id": "video10856", "sen_id": 210548}, {"caption": "the ocean waves and sandy beach from behind some tall sea grass on a windy day", "video_id": "video10856", "sen_id": 210549}, {"caption": "ocean waves are streaming towards shore past a pier and in front of dune grass which is waving in the wind", "video_id": "video10856", "sen_id": 210550}, {"caption": "there is a wonderful beach with some plants", "video_id": "video10856", "sen_id": 210551}, {"caption": "tall grass is waving in the wind in front of an ocean", "video_id": "video10856", "sen_id": 210552}, {"caption": "tall grass and weeds blow in a gentle breeze in the foreground while waves on a beautiful sea of blues and greens gently lap up onto a white", "video_id": "video10856", "sen_id": 210553}, {"caption": "sea grass blows in the wind while in the distance small waves are crashing on the shore", "video_id": "video10856", "sen_id": 210554}, {"caption": "sea shore where wind falling on plants", "video_id": "video10856", "sen_id": 210555}, {"caption": "long green grass blowing in the wind on a tropical beach", "video_id": "video10856", "sen_id": 210556}, {"caption": "i see a beach with a nice wind breeze moving some grass it looks relaxing", "video_id": "video10856", "sen_id": 210557}, {"caption": "green grass near a beach blows in the wind", "video_id": "video10856", "sen_id": 210558}, {"caption": "grass is on the seashore and wind is blowing", "video_id": "video10856", "sen_id": 210559}, {"caption": "a woman describes a process in a microscopic image", "video_id": "video10691", "sen_id": 210560}, {"caption": "a video that is walking the audience through a process", "video_id": "video10691", "sen_id": 210561}, {"caption": "a scientist discusses images that are viewing under a high powered microscope", "video_id": "video10691", "sen_id": 210562}, {"caption": "a scientist talks about images being produced by an electron microscope", "video_id": "video10691", "sen_id": 210563}, {"caption": "a woman uses an electron microscope and describes the images she sees", "video_id": "video10691", "sen_id": 210564}, {"caption": "a woman is detailing highly complicated scientific matters", "video_id": "video10691", "sen_id": 210565}, {"caption": "there are people who doing their routine work on computer", "video_id": "video10691", "sen_id": 210566}, {"caption": "a lady operating some machine", "video_id": "video10691", "sen_id": 210567}, {"caption": "a girl explaining something on computer to a person", "video_id": "video10691", "sen_id": 210568}, {"caption": "a woman is working in a lab while narrating about the surface of chemicals", "video_id": "video10691", "sen_id": 210569}, {"caption": "a women in black dress siting in front of monitor and watch the micro-smd top view", "video_id": "video10691", "sen_id": 210570}, {"caption": "shape of the moon is shown and some satellite photographs are checked on the screen by a lady", "video_id": "video10691", "sen_id": 210571}, {"caption": "a woman is demonstrating a scientific experiment on a computer", "video_id": "video10691", "sen_id": 210572}, {"caption": "a engineer applies layers to a micro-construction with spherical components", "video_id": "video10691", "sen_id": 210573}, {"caption": "a guy is looking at some thing on his computer", "video_id": "video10691", "sen_id": 210574}, {"caption": "a men is surfing on wave in deep sea", "video_id": "video10691", "sen_id": 210575}, {"caption": "micro - smd top view nsc 25 kv x80 women operating", "video_id": "video10691", "sen_id": 210576}, {"caption": "a scientist discusses a microscopic experiment she is working on", "video_id": "video10691", "sen_id": 210577}, {"caption": "explaning abou the micro system", "video_id": "video10691", "sen_id": 210578}, {"caption": "a thing is being filmed by a camera", "video_id": "video10691", "sen_id": 210579}, {"caption": "several men are at the start of a ski trail getting psyched up to go", "video_id": "video10633", "sen_id": 210580}, {"caption": "a group of people are wear snow gear and skiing on a mountain", "video_id": "video10633", "sen_id": 210581}, {"caption": "a couple of people on skis going down a slope", "video_id": "video10633", "sen_id": 210582}, {"caption": "skier is beginning his day of skiing down hill with his friends", "video_id": "video10633", "sen_id": 210583}, {"caption": "people on skies going down a snowy slope", "video_id": "video10633", "sen_id": 210584}, {"caption": "there are several people on a snowy area that are beginning to go down the slopes", "video_id": "video10633", "sen_id": 210585}, {"caption": "several men in ski gear are preparing to ski", "video_id": "video10633", "sen_id": 210586}, {"caption": "a group of skiers in a snowy forest ski run area", "video_id": "video10633", "sen_id": 210587}, {"caption": "men preparing to start a sky run down an mountain", "video_id": "video10633", "sen_id": 210588}, {"caption": "in the snow field some persons are plays", "video_id": "video10633", "sen_id": 210589}, {"caption": "there is a man moving on the ice with helmet", "video_id": "video10633", "sen_id": 210590}, {"caption": "a man walking on the snow", "video_id": "video10633", "sen_id": 210591}, {"caption": "a group of men about to go down a hill on skiis", "video_id": "video10633", "sen_id": 210592}, {"caption": "a guy recording himself with gopro camera on the snow field", "video_id": "video10633", "sen_id": 210593}, {"caption": "a group of men are talking before heading down a ski slope", "video_id": "video10633", "sen_id": 210594}, {"caption": "a group of skiers begin to go down a slope", "video_id": "video10633", "sen_id": 210595}, {"caption": "a man is prepared to ski down a big slope that is crowded with trees", "video_id": "video10633", "sen_id": 210596}, {"caption": "a man in red and grey color jacket just starting to skiing very slowly few more are there in black color jacket", "video_id": "video10633", "sen_id": 210597}, {"caption": "some men are starting to ski on a mountain with some trees nearby", "video_id": "video10633", "sen_id": 210598}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video10633", "sen_id": 210599}, {"caption": "a girl is eating french toast with eggs and bacon", "video_id": "video11686", "sen_id": 210600}, {"caption": "a woman is talking about cinnamon french toast for breakfast", "video_id": "video11686", "sen_id": 210601}, {"caption": "a woman wearing a white shirt is eating cinnamon french toast outdoor", "video_id": "video11686", "sen_id": 210602}, {"caption": "a plate of breakfast food is eaten by a woman wearing mouse ears", "video_id": "video11686", "sen_id": 210603}, {"caption": "a plate of cinnamon french toast is tasted by a woman wearing mouse ears", "video_id": "video11686", "sen_id": 210604}, {"caption": "a plate of eggs bacon and pancakes dusted with sugar is eaten by a girl wearing mickey mouse ears", "video_id": "video11686", "sen_id": 210605}, {"caption": "a woman describes her cinnamon french toast breakfast at disney", "video_id": "video11686", "sen_id": 210606}, {"caption": "a young girl wearing mouse eats eats breakfast at a table", "video_id": "video11686", "sen_id": 210607}, {"caption": "a disney mickey mouse employee enjoying a delicious breakfast", "video_id": "video11686", "sen_id": 210608}, {"caption": "an image of cinnamon french toast and eggs is shown while a woman narrates the scene pours syrup on the eggs and then begins to eat the food", "video_id": "video11686", "sen_id": 210609}, {"caption": "a young teen girl with long dark hair in mickey mouse ears is eating eggs", "video_id": "video11686", "sen_id": 210610}, {"caption": "a girl talks about some breakfast items served at a restaurant", "video_id": "video11686", "sen_id": 210611}, {"caption": "a lady pouring sauce in bread", "video_id": "video11686", "sen_id": 210612}, {"caption": "a young girl describes what foods she likes to have for breakfast", "video_id": "video11686", "sen_id": 210613}, {"caption": "a young woman talks about eating a delicious breakfast", "video_id": "video11686", "sen_id": 210614}, {"caption": "there is a woman eating some french dish", "video_id": "video11686", "sen_id": 210615}, {"caption": "a girl is tasting yummy food with jam", "video_id": "video11686", "sen_id": 210616}, {"caption": "items are so delicious the girl has micky cap looks nice", "video_id": "video11686", "sen_id": 210617}, {"caption": "a girl in white t-shirt is eating cinnamon french toast", "video_id": "video11686", "sen_id": 210618}, {"caption": "a woman describing how she thinks breakfast foods are delicious", "video_id": "video11686", "sen_id": 210619}, {"caption": "music plays while an animated screen shows a city scape and some credits", "video_id": "video11263", "sen_id": 210620}, {"caption": "the opening credits of a video game before it starts", "video_id": "video11263", "sen_id": 210621}, {"caption": "credits for a theme tell of the creators of the content", "video_id": "video11263", "sen_id": 210622}, {"caption": "a short snippet of a theme song is played while a pictograph is displayed", "video_id": "video11263", "sen_id": 210623}, {"caption": "the ending and credits of a cartoon called vampire pixel in the neon city", "video_id": "video11263", "sen_id": 210624}, {"caption": "the credits scene of an animation called vampire pixel of the neon city is shown as rock and roll music is played in the background", "video_id": "video11263", "sen_id": 210625}, {"caption": "a city skyline with an eight ball at the top of one building a purple background and a rock and roll theme music playing", "video_id": "video11263", "sen_id": 210626}, {"caption": "the colorful lights are displayed on the screen", "video_id": "video11263", "sen_id": 210627}, {"caption": "some stats are displayed while rock music plays", "video_id": "video11263", "sen_id": 210628}, {"caption": "rock music plays loudly over a colorful title screen", "video_id": "video11263", "sen_id": 210629}, {"caption": "an advertisement of vampire pixel is being displayed", "video_id": "video11263", "sen_id": 210630}, {"caption": "just one screen showing the ending credits for the vampire diaries with rock music playing the background", "video_id": "video11263", "sen_id": 210631}, {"caption": "heavy metal music plays in the background as credits for a video clip are displayed", "video_id": "video11263", "sen_id": 210632}, {"caption": "rock and roll music being played to a screen with a city s night line showing that has an eight ball in it", "video_id": "video11263", "sen_id": 210633}, {"caption": "some neon text is on a futuristic back ground", "video_id": "video11263", "sen_id": 210634}, {"caption": "the video game vampire pixel is shown with its titles", "video_id": "video11263", "sen_id": 210635}, {"caption": "gameplay footage of the game vampire pixel during the title screen", "video_id": "video11263", "sen_id": 210636}, {"caption": "someone is playing a video game with the music turned up", "video_id": "video11263", "sen_id": 210637}, {"caption": "a vampire video game credits are being shown", "video_id": "video11263", "sen_id": 210638}, {"caption": "someone is playing a first person video game", "video_id": "video11263", "sen_id": 210639}, {"caption": "a video race car game is being played", "video_id": "video12807", "sen_id": 210640}, {"caption": "a racecar driver speeds across a straight and curved course past a control tower and palm trees while riding over striped red-and-white side lines", "video_id": "video12807", "sen_id": 210641}, {"caption": "a race car speeds around a race course in a tropical area", "video_id": "video12807", "sen_id": 210642}, {"caption": "a car is driving fast on a racetrack", "video_id": "video12807", "sen_id": 210643}, {"caption": "a video game of a man driving a car at very high speeds", "video_id": "video12807", "sen_id": 210644}, {"caption": "a game review of a professional racing game", "video_id": "video12807", "sen_id": 210645}, {"caption": "a race car is going around the race track", "video_id": "video12807", "sen_id": 210646}, {"caption": "a man in a blue hat drives a race car on a track", "video_id": "video12807", "sen_id": 210647}, {"caption": "a race car is speeding along a track", "video_id": "video12807", "sen_id": 210648}, {"caption": "a driver heads down a racetrack in a narrow black racecar toward a black-and-white control tower passing spectator stands palm trees overhead signs and lit lampposts", "video_id": "video12807", "sen_id": 210649}, {"caption": "a race car speeds around a track in a tropical location", "video_id": "video12807", "sen_id": 210650}, {"caption": "a indy style car is racing around the track in a video game", "video_id": "video12807", "sen_id": 210651}, {"caption": "there is a racing game being played and the car tuns left twice and then right", "video_id": "video12807", "sen_id": 210652}, {"caption": "a race car drives at a high speed around a racetrack", "video_id": "video12807", "sen_id": 210653}, {"caption": "the cockpit of a race car moving down a track", "video_id": "video12807", "sen_id": 210654}, {"caption": "someone is playing a realistic looking video game about professional track car racing", "video_id": "video12807", "sen_id": 210655}, {"caption": "a racain t videogame is being played on the screen", "video_id": "video12807", "sen_id": 210656}, {"caption": "a formula race car navigates track and takes corners at high speeds", "video_id": "video12807", "sen_id": 210657}, {"caption": "a race car driving laps around a track", "video_id": "video12807", "sen_id": 210658}, {"caption": "a race car is driving around on a track", "video_id": "video12807", "sen_id": 210659}, {"caption": "a man showing a car that has been fitted with train wheels on the tracks", "video_id": "video10631", "sen_id": 210660}, {"caption": "a man talks about a parked car that is equipped to ride on train tracks", "video_id": "video10631", "sen_id": 210661}, {"caption": "a man discusses the modifications he has made to a car he owns", "video_id": "video10631", "sen_id": 210662}, {"caption": "a man who hosts a car show is talking about his feet", "video_id": "video10631", "sen_id": 210663}, {"caption": "a man discusses a car that lacks any tires and comments on his shoes", "video_id": "video10631", "sen_id": 210664}, {"caption": "a man talks about car wheels and then talks about his shoes", "video_id": "video10631", "sen_id": 210665}, {"caption": "a man in blue t-shirt standing on the stones and saying some matter", "video_id": "video10631", "sen_id": 210666}, {"caption": "a man in blue is talking about the wheels on a special car that goes on train tracks", "video_id": "video10631", "sen_id": 210667}, {"caption": "a old man in blue dress color wearing cloth standing inside forest beside car speaking displaying on screen", "video_id": "video10631", "sen_id": 210668}, {"caption": "a man is describing an all wheel drive for a car that can drive on a railroad track then he goes off talking about his shoes", "video_id": "video10631", "sen_id": 210669}, {"caption": "a man talking about a car with train wheels with four wheel drive sitting on a railroad track then talking about his own feet being made of flesh and nerves", "video_id": "video10631", "sen_id": 210670}, {"caption": "man in blue shirt talking about a four wheel drive car sitting on rails and his feet", "video_id": "video10631", "sen_id": 210671}, {"caption": "a man describes a car that he has modified to run on railroad tracks", "video_id": "video10631", "sen_id": 210672}, {"caption": "a man in a blue tshirt and brown boots is standing outside next to a car and talking", "video_id": "video10631", "sen_id": 210673}, {"caption": "a person speaking about the car wheels in the road side", "video_id": "video10631", "sen_id": 210674}, {"caption": "a gray haired man in a blue shirt discusses the tires on his car and his brown boots", "video_id": "video10631", "sen_id": 210675}, {"caption": "the owner of the car is telling the feauter he is wearing brown shoe blue jeans and tshirt they are middle aged men", "video_id": "video10631", "sen_id": 210676}, {"caption": "a man in blue shirt looks at wheels of his gray car", "video_id": "video10631", "sen_id": 210677}, {"caption": "a man in blue t-shirt and brown shoes is standing near a car which doesn t have tyres on it", "video_id": "video10631", "sen_id": 210678}, {"caption": "a man in a blue shirt is talking", "video_id": "video10631", "sen_id": 210679}, {"caption": "a man is laying on the floor eating out of a bowl next to a dog who is eating out of a blue bowl", "video_id": "video10972", "sen_id": 210680}, {"caption": "a man lying on the floor eating out of a white bowl while his small black dog stood next to him eating out of a blue bowl", "video_id": "video10972", "sen_id": 210681}, {"caption": "a man eating food with his dog on the floor", "video_id": "video10972", "sen_id": 210682}, {"caption": "a man eats his cereal from a bowl while his puppy also eats from a bowl", "video_id": "video10972", "sen_id": 210683}, {"caption": "a man is laying on the floor next to his puppy eating a bowl of cereal", "video_id": "video10972", "sen_id": 210684}, {"caption": "a man with a mustache eats a bowl of food with a spoon alongside a puppy that is also eating", "video_id": "video10972", "sen_id": 210685}, {"caption": "a man is eating a bowl of cereal next to his dog and talking to his dog", "video_id": "video10972", "sen_id": 210686}, {"caption": "a white man with a mustache and puppy dog eat food from blue and white bowls", "video_id": "video10972", "sen_id": 210687}, {"caption": "a man with a mustache eating breakfast with his small dog", "video_id": "video10972", "sen_id": 210688}, {"caption": "a man laying on the floor eating cereal next to a cat eating out of a bowl", "video_id": "video10972", "sen_id": 210689}, {"caption": "a man lays on the floor next to a small black dog as they both eat from separate bowls", "video_id": "video10972", "sen_id": 210690}, {"caption": "commercial for dog food featuring a man and a puppy eating together", "video_id": "video10972", "sen_id": 210691}, {"caption": "a white guy with a mustache eats cereal with a dog", "video_id": "video10972", "sen_id": 210692}, {"caption": "a man eating from a bowl next to his puppy eating from a bowl", "video_id": "video10972", "sen_id": 210693}, {"caption": "a man is eating a bowl of cereal next to his dog", "video_id": "video10972", "sen_id": 210694}, {"caption": "there is a black dog eating on the table", "video_id": "video10972", "sen_id": 210695}, {"caption": "a man is eating out of a bowl with a puppy", "video_id": "video10972", "sen_id": 210696}, {"caption": "a mustachioed man lies on the floor and eats from a white bowl while his black dog eats puppy chow from a blue bowl", "video_id": "video10972", "sen_id": 210697}, {"caption": "a man eating out of a white bowl with a spoon next to a black puppy eating its food out of a blue bowl", "video_id": "video10972", "sen_id": 210698}, {"caption": "a guy is eating some food in a bowl", "video_id": "video10972", "sen_id": 210699}, {"caption": "a little boy and a little girl are playing with unicorns on the floor", "video_id": "video12381", "sen_id": 210700}, {"caption": "two young children on a wooden floor playing with plastic horses", "video_id": "video12381", "sen_id": 210701}, {"caption": "young children play with some small toy horses in a play room", "video_id": "video12381", "sen_id": 210702}, {"caption": "two young children play with their toys in front of an older woman", "video_id": "video12381", "sen_id": 210703}, {"caption": "there are two kids playing with toy horses", "video_id": "video12381", "sen_id": 210704}, {"caption": "two small children play with some dolls and plastic horses", "video_id": "video12381", "sen_id": 210705}, {"caption": "a couple of kids playing with plastic horses and dolls", "video_id": "video12381", "sen_id": 210706}, {"caption": "a boy and a girl playing toys with each other", "video_id": "video12381", "sen_id": 210707}, {"caption": "two children playing with toy horses and a barbie that is riding backwards while a women takes a video", "video_id": "video12381", "sen_id": 210708}, {"caption": "there are two children's one girl and one boy with colourful dresses and playing with horse and lady dolls", "video_id": "video12381", "sen_id": 210709}, {"caption": "2 kids are playing with horses and dolls", "video_id": "video12381", "sen_id": 210710}, {"caption": "two children playing a horse and princess doll in a playroom on a wooden floor", "video_id": "video12381", "sen_id": 210711}, {"caption": "child videos is likely my children and this image of carton is very likely", "video_id": "video12381", "sen_id": 210712}, {"caption": "a girl and boy playing with horse dolls inside house sitting displaying on screen", "video_id": "video12381", "sen_id": 210713}, {"caption": "bunch of kids playing with their toys on floor", "video_id": "video12381", "sen_id": 210714}, {"caption": "a little boy playing with little toy", "video_id": "video12381", "sen_id": 210715}, {"caption": "one boy and girl playing toys together in home", "video_id": "video12381", "sen_id": 210716}, {"caption": "little kids play on the wooden floor with their toy dolls", "video_id": "video12381", "sen_id": 210717}, {"caption": "two asian children a boy and a girl playing with toy horses and a frozen doll the boy is a little bit younger than the girl", "video_id": "video12381", "sen_id": 210718}, {"caption": "some kids are playing on the floor with toys", "video_id": "video12381", "sen_id": 210719}, {"caption": "an interview in front of a fireplace on cnbc with president barrack obama", "video_id": "video11127", "sen_id": 210720}, {"caption": "john harwood interviews barack obama in the white house", "video_id": "video11127", "sen_id": 210721}, {"caption": "two men in dark suits participate in an interview in a very ornate room", "video_id": "video11127", "sen_id": 210722}, {"caption": "two men in dark suits speak to each other while setting in chairs", "video_id": "video11127", "sen_id": 210723}, {"caption": "a man in a suit interviewing ex president barack obama", "video_id": "video11127", "sen_id": 210724}, {"caption": "two men in suits are talking by a large fireplace", "video_id": "video11127", "sen_id": 210725}, {"caption": "a person in suit is being interviewed by a reporter", "video_id": "video11127", "sen_id": 210726}, {"caption": "the president is under an interview with a fellow man", "video_id": "video11127", "sen_id": 210727}, {"caption": "a news reporter talks to a half african man who seems very confused", "video_id": "video11127", "sen_id": 210728}, {"caption": "a cnbc reporter is interviewing the american president barack obama", "video_id": "video11127", "sen_id": 210729}, {"caption": "this is an interview with president obama talking about re-election in 2012 on the channel cnbc", "video_id": "video11127", "sen_id": 210730}, {"caption": "a middle-aged interviewer in a suit is asking president barack obama about about breaking the fever in the republican party", "video_id": "video11127", "sen_id": 210731}, {"caption": "obama is being interviewed by the other person on cnbc channel", "video_id": "video11127", "sen_id": 210732}, {"caption": "guy interviewing the president of us", "video_id": "video11127", "sen_id": 210733}, {"caption": "obama sits with his legs crossed and patiently waits for the reporter to finish asking his question", "video_id": "video11127", "sen_id": 210734}, {"caption": "a guy is talking to obama in a room", "video_id": "video11127", "sen_id": 210735}, {"caption": "a man taking the interview of american president", "video_id": "video11127", "sen_id": 210736}, {"caption": "the two news reporters of cnbc channel discussing the elections held in the united states", "video_id": "video11127", "sen_id": 210737}, {"caption": "a man asks the president about how to deal with politics", "video_id": "video11127", "sen_id": 210738}, {"caption": "obama is talking to a man inside a room", "video_id": "video11127", "sen_id": 210739}, {"caption": "man playing on computers talking on the phone with a man in a vehicle", "video_id": "video12762", "sen_id": 210740}, {"caption": "a clip from movieclips dot com with di niero", "video_id": "video12762", "sen_id": 210741}, {"caption": "a young man talks to another man on the phone to while working at a computer station", "video_id": "video12762", "sen_id": 210742}, {"caption": "a young man holds a thick handset between his head and shoulder as he moves a computer mouse looks at different glowing monitors in a cramped office and reports his lack of progress over the phone", "video_id": "video12762", "sen_id": 210743}, {"caption": "a young man talks on a telephone while he is working on a bank of computers", "video_id": "video12762", "sen_id": 210744}, {"caption": "a man at his computer talking on the phone to a man in a car", "video_id": "video12762", "sen_id": 210745}, {"caption": "a man is on the computer and on the phone with someone", "video_id": "video12762", "sen_id": 210746}, {"caption": "a sweaty man in a gray sweat shirt talks on the phone and uses a computer at the same time", "video_id": "video12762", "sen_id": 210747}, {"caption": "a man on the phone working on a computer", "video_id": "video12762", "sen_id": 210748}, {"caption": "a young man sitting in a dark room surrounded by several computer screens is talking to a man in a car by phone", "video_id": "video12762", "sen_id": 210749}, {"caption": "a man on the phone with a guy at a desk of computers", "video_id": "video12762", "sen_id": 210750}, {"caption": "a man seated on a car receiving call phone", "video_id": "video12762", "sen_id": 210751}, {"caption": "a man is speaking on the telephone while looking at computer screens", "video_id": "video12762", "sen_id": 210752}, {"caption": "a man is sitting in the vehicle and talking in phone", "video_id": "video12762", "sen_id": 210753}, {"caption": "a man making a call lifting in hand and two man sitting inside car speaking displaying on screen", "video_id": "video12762", "sen_id": 210754}, {"caption": "a man is talking to another man on the telephone", "video_id": "video12762", "sen_id": 210755}, {"caption": "a man is talking on the phone to a man in a car", "video_id": "video12762", "sen_id": 210756}, {"caption": "com in a movie two mans speaking something", "video_id": "video12762", "sen_id": 210757}, {"caption": "a man on the phone with another man working on computers", "video_id": "video12762", "sen_id": 210758}, {"caption": "a man is talking on the phone", "video_id": "video12762", "sen_id": 210759}, {"caption": "a girl is reading a book when she gets a phone call", "video_id": "video10233", "sen_id": 210760}, {"caption": "a woman in a light colored top and dark colored pants sits on a couch a woman gets an upsetting phone call a woman on a couch receives a phone call while reading a book", "video_id": "video10233", "sen_id": 210761}, {"caption": "interrupted from her reading a young lady answers her phone", "video_id": "video10233", "sen_id": 210762}, {"caption": "a blonde woman sitting on a couch reading a book while talking on the phone", "video_id": "video10233", "sen_id": 210763}, {"caption": "a music video showing a story between a couple", "video_id": "video10233", "sen_id": 210764}, {"caption": "a woman sitting on her couch talking on her cellphone", "video_id": "video10233", "sen_id": 210765}, {"caption": "this is a music video in black and white", "video_id": "video10233", "sen_id": 210766}, {"caption": "a blonde woman sitting on a couch reading a book when she picks up the phone", "video_id": "video10233", "sen_id": 210767}, {"caption": "you blond woman sitting on a couch reading until her cell phone rings and she picks it up and starts talking", "video_id": "video10233", "sen_id": 210768}, {"caption": "a woman on a couch with a book that is open while on her phone", "video_id": "video10233", "sen_id": 210769}, {"caption": "a lady in black and white talks on her cell phone while sitting on the couch and holding a book", "video_id": "video10233", "sen_id": 210770}, {"caption": "a black and white animated graphic showing a white woman laying on couch reading a book and answering her cell phone", "video_id": "video10233", "sen_id": 210771}, {"caption": "a woman sitting on a couch talking on the phone", "video_id": "video10233", "sen_id": 210772}, {"caption": "a blonde woman sits on the sofa and talks on her cell phone while music plays", "video_id": "video10233", "sen_id": 210773}, {"caption": "girl is reading on a couch then answers her cell phone where the moss slowly grows is playing", "video_id": "video10233", "sen_id": 210774}, {"caption": "there is a brown hair women talking on mobile", "video_id": "video10233", "sen_id": 210775}, {"caption": "the woman is talking on phone by reeling on sofa", "video_id": "video10233", "sen_id": 210776}, {"caption": "one women talking in mobile with a man music it", "video_id": "video10233", "sen_id": 210777}, {"caption": "a woman on couch sitting & talking over phone", "video_id": "video10233", "sen_id": 210778}, {"caption": "a women siting in the sofa with book and speaking in mobile", "video_id": "video10233", "sen_id": 210779}, {"caption": "two people talking while one shows off the phone screen", "video_id": "video11573", "sen_id": 210780}, {"caption": "two yound men in tee shirts talk while looking at a phone playing videos of skateboards", "video_id": "video11573", "sen_id": 210781}, {"caption": "there is a man skating followed by two men looking at phone in an inside skate park", "video_id": "video11573", "sen_id": 210782}, {"caption": "a man with white tshirt talking with his friend", "video_id": "video11573", "sen_id": 210783}, {"caption": "two men are looking at a phone while standing in an indoors skate park", "video_id": "video11573", "sen_id": 210784}, {"caption": "2 men in tshirts talking inside a skateboard park while one man holds a phone", "video_id": "video11573", "sen_id": 210785}, {"caption": "two guys surfing the net on one of the guys iphone", "video_id": "video11573", "sen_id": 210786}, {"caption": "two skateboarders plan out a series of tricks that they will perform", "video_id": "video11573", "sen_id": 210787}, {"caption": "to skateboarders one in a white shirt the other in a black shirt discuss skateboard tricks", "video_id": "video11573", "sen_id": 210788}, {"caption": "in an indoor skate park two guys look at tricks they should do on their skateboards", "video_id": "video11573", "sen_id": 210789}, {"caption": "skateboarders checking out publi trick requests on a smarphone", "video_id": "video11573", "sen_id": 210790}, {"caption": "a man doing skating and watching something on mobile", "video_id": "video11573", "sen_id": 210791}, {"caption": "two men are talking about skateboard tricks and one of them is looking at his cell phone", "video_id": "video11573", "sen_id": 210792}, {"caption": "two men look at a phone at an indoor skate park", "video_id": "video11573", "sen_id": 210793}, {"caption": "a couple of men in a building are looking", "video_id": "video11573", "sen_id": 210794}, {"caption": "two guys are reading phone a phone about skateboarding", "video_id": "video11573", "sen_id": 210795}, {"caption": "there are two men talking about nose grind trick on a board", "video_id": "video11573", "sen_id": 210796}, {"caption": "two men are looking at a phone and talking", "video_id": "video11573", "sen_id": 210797}, {"caption": "men discussing different skateboarding tricks on a phone", "video_id": "video11573", "sen_id": 210798}, {"caption": "two skateboarders talk to each other about different types of tricks", "video_id": "video11573", "sen_id": 210799}, {"caption": "people are in a green house and are about to start picking tomatoes", "video_id": "video10421", "sen_id": 210800}, {"caption": "a middle-aged couple enter a greenhouse and start to pick tomatoes", "video_id": "video10421", "sen_id": 210801}, {"caption": "a man and a woman hold baskets while standing next to fruit inside of a green house", "video_id": "video10421", "sen_id": 210802}, {"caption": "a man and woman pick tomatos in a large indoor greenhouse", "video_id": "video10421", "sen_id": 210803}, {"caption": "an older man instructs a woman to be careful picking tomatoes", "video_id": "video10421", "sen_id": 210804}, {"caption": "a man and a woman talking and picking tomatoes from a plant", "video_id": "video10421", "sen_id": 210805}, {"caption": "a lady and an older man pick tomatoes and hold baskets in a greenhouse", "video_id": "video10421", "sen_id": 210806}, {"caption": "a man holding a basket leads people into a room to pick fruit", "video_id": "video10421", "sen_id": 210807}, {"caption": "a man and lady talking while picking apples off of a tree", "video_id": "video10421", "sen_id": 210808}, {"caption": "a man showing a group of women tomatoes that need to be picked", "video_id": "video10421", "sen_id": 210809}, {"caption": "a few people holding wicker baskets by some plats", "video_id": "video10421", "sen_id": 210810}, {"caption": "a women is discussing with men regarding the tomatoes", "video_id": "video10421", "sen_id": 210811}, {"caption": "uctv gardens new vintage movies boy eating banana", "video_id": "video10421", "sen_id": 210812}, {"caption": "a old man and a small girl came witht the basket into the glasshouse and plucks the fresh tomato", "video_id": "video10421", "sen_id": 210813}, {"caption": "an older man with a brittish accent tells a blonde lady to carefully pick tomatoes so that the stem is still attached while he puts more air on because it s hot in the greenhouse", "video_id": "video10421", "sen_id": 210814}, {"caption": "a person is picking tomatoes off a vine", "video_id": "video10421", "sen_id": 210815}, {"caption": "an old man with a basket comes into a garden room with a younger woman who picks fruit", "video_id": "video10421", "sen_id": 210816}, {"caption": "a old man and a woman were bringing a basket", "video_id": "video10421", "sen_id": 210817}, {"caption": "a man and woman plucking tomatoes from their home garden", "video_id": "video10421", "sen_id": 210818}, {"caption": "a old man and a lady are talking and collecting some fruits in a garden", "video_id": "video10421", "sen_id": 210819}, {"caption": "a woman is on a news show talking about race", "video_id": "video10585", "sen_id": 210820}, {"caption": "a woman wearing a black and white dress is sitting at a news desk with a large screen television behind her and talking about a current issue", "video_id": "video10585", "sen_id": 210821}, {"caption": "a woman gives her opinion on a news show", "video_id": "video10585", "sen_id": 210822}, {"caption": "a woman is advocating for diversity in response to a news story", "video_id": "video10585", "sen_id": 210823}, {"caption": "a woman sitting at a desk in of a screen talking", "video_id": "video10585", "sen_id": 210824}, {"caption": "a women in stripes top is talking to the other person", "video_id": "video10585", "sen_id": 210825}, {"caption": "the couples talks about a scene from the movie out-cast", "video_id": "video10585", "sen_id": 210826}, {"caption": "a women in black dress speaking about important news in television", "video_id": "video10585", "sen_id": 210827}, {"caption": "aman and a lady are sitting in a studio and lady is explaining some thing", "video_id": "video10585", "sen_id": 210828}, {"caption": "sexy brunette in black top talking to the camera using hand gesture", "video_id": "video10585", "sen_id": 210829}, {"caption": "there is a black hair women talking from a studio", "video_id": "video10585", "sen_id": 210830}, {"caption": "tvt news cast discuss the story frame of the movie out-cast", "video_id": "video10585", "sen_id": 210831}, {"caption": "a girl talking about a person in the media", "video_id": "video10585", "sen_id": 210832}, {"caption": "a lady sits in the news room and talks about the latest", "video_id": "video10585", "sen_id": 210833}, {"caption": "in a talk show a women is talking about something while making hand gestures", "video_id": "video10585", "sen_id": 210834}, {"caption": "there is a woman with black hair talking in a show", "video_id": "video10585", "sen_id": 210835}, {"caption": "a lady talked with a man in a set of some channels", "video_id": "video10585", "sen_id": 210836}, {"caption": "a woman news commentator talks about race relations and tolerance", "video_id": "video10585", "sen_id": 210837}, {"caption": "a lady speaking about the between pimps and prostitutes", "video_id": "video10585", "sen_id": 210838}, {"caption": "a woman on a show is looking at something", "video_id": "video10585", "sen_id": 210839}, {"caption": "an orange bowl of dog food sits next to some toys", "video_id": "video11351", "sen_id": 210840}, {"caption": "a person is explaining how hamster toys can harm the hamster", "video_id": "video11351", "sen_id": 210841}, {"caption": "a group of toys are sitting together on the table", "video_id": "video11351", "sen_id": 210842}, {"caption": "three small brightly colored toys are seen on a table", "video_id": "video11351", "sen_id": 210843}, {"caption": "there is a few toys that are pictured one is orange and round with a hole in it and another is also orange and is a shaped like a bowl and is holding some little objects while the third is a green and yellow table with a couple of holes in it", "video_id": "video11351", "sen_id": 210844}, {"caption": "three small model type toys for a small pet sit on a table", "video_id": "video11351", "sen_id": 210845}, {"caption": "a bowl of pet food sitting next to a couple of toys", "video_id": "video11351", "sen_id": 210846}, {"caption": "it is important to use lightweight toys in hamster cages for the animals' protection", "video_id": "video11351", "sen_id": 210847}, {"caption": "some examples of hamster toys are shown along with dialogue which describes safe toys", "video_id": "video11351", "sen_id": 210848}, {"caption": "a woman talks about a set of small plastic childrens toys", "video_id": "video11351", "sen_id": 210849}, {"caption": "a woman is talking about various hamster toys and how a hamster will react to them", "video_id": "video11351", "sen_id": 210850}, {"caption": "a woman is describing how to set up a toy area for a type of hamster or other pet the image is simply set of a picture of the toy set", "video_id": "video11351", "sen_id": 210851}, {"caption": "there are three toys with holes in them sitting on top of a printed cloth", "video_id": "video11351", "sen_id": 210852}, {"caption": "a colorful graphic showing three colorful toys while a female voiceover speaks about safety riding", "video_id": "video11351", "sen_id": 210853}, {"caption": "a geometric table has round openings on each surface an orange dish with ridged edges holds small food pellets and an open sphere resembles an apple with an open windowed ceiling", "video_id": "video11351", "sen_id": 210854}, {"caption": "three small hampster toys next to eachother on a table", "video_id": "video11351", "sen_id": 210855}, {"caption": "there are baby toys kept for display and women is telling about it", "video_id": "video11351", "sen_id": 210856}, {"caption": "for a kids chair and foods and one of the", "video_id": "video11351", "sen_id": 210857}, {"caption": "a young woman discusses hamster toys that can be used while traveling", "video_id": "video11351", "sen_id": 210858}, {"caption": "some dog food is in an orange bowl on the floor", "video_id": "video11351", "sen_id": 210859}, {"caption": "a woman's voice is discussing a recipe and how to prepare item using food coloring", "video_id": "video10459", "sen_id": 210860}, {"caption": "a woman adds food coloring to a bowl to turn a substance black", "video_id": "video10459", "sen_id": 210861}, {"caption": "a lady stirs black food coloring into a frosting before pouring it over yellow disks", "video_id": "video10459", "sen_id": 210862}, {"caption": "a young woman uses black die to change the color of a sugar solution", "video_id": "video10459", "sen_id": 210863}, {"caption": "a lady illustrates a cookie decoration process and coloring", "video_id": "video10459", "sen_id": 210864}, {"caption": "a person is mixing black food coloring to a sugary liquid and pours it on top of cookies", "video_id": "video10459", "sen_id": 210865}, {"caption": "some one in a kitchen adding black food colouring to the bowl", "video_id": "video10459", "sen_id": 210866}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10459", "sen_id": 210867}, {"caption": "a man is preparing something in the glass bowl", "video_id": "video10459", "sen_id": 210868}, {"caption": "a person poured something in a liquid and prepared something", "video_id": "video10459", "sen_id": 210869}, {"caption": "a person stirring a clear liquid and adding a dark liquid", "video_id": "video10459", "sen_id": 210870}, {"caption": "there is a women making colors to use", "video_id": "video10459", "sen_id": 210871}, {"caption": "a cook puts black food coloring into a small glass bowl for cooking purposes", "video_id": "video10459", "sen_id": 210872}, {"caption": "add black food coloring in the bowl and add", "video_id": "video10459", "sen_id": 210873}, {"caption": "in the glass bowl they add the black drops and mixed it with the strip", "video_id": "video10459", "sen_id": 210874}, {"caption": "a female demonstrating about the preparation of a solution", "video_id": "video10459", "sen_id": 210875}, {"caption": "there is someone making a color with a pot", "video_id": "video10459", "sen_id": 210876}, {"caption": "a woman is mixing a white liquid with a flat wooden stick in a small and clear bowl when she adds a black dye from a small bottle taken out of a box", "video_id": "video10459", "sen_id": 210877}, {"caption": "one women making a recipe with some sauces", "video_id": "video10459", "sen_id": 210878}, {"caption": "a person is preparing some black color material", "video_id": "video10459", "sen_id": 210879}, {"caption": "three guys are talking about a movie and describing it", "video_id": "video12011", "sen_id": 210880}, {"caption": "three men sit together and discuss an hbo television show", "video_id": "video12011", "sen_id": 210881}, {"caption": "three men in different colored shirts and different colored hair discuss a movie they all have seen", "video_id": "video12011", "sen_id": 210882}, {"caption": "three men are talking about a movie on hbo", "video_id": "video12011", "sen_id": 210883}, {"caption": "three men are speaking in front of a movie", "video_id": "video12011", "sen_id": 210884}, {"caption": "three men discuss a tv show that they enjoy viewing", "video_id": "video12011", "sen_id": 210885}, {"caption": "three mens are talking about on movie and the movie clip is shown behind them", "video_id": "video12011", "sen_id": 210886}, {"caption": "three men talking in front of a clip of an hbo series", "video_id": "video12011", "sen_id": 210887}, {"caption": "three young men discuss a movie and give their critique of the action", "video_id": "video12011", "sen_id": 210888}, {"caption": "three men are sitting in front of a hbo trailer discussing it together", "video_id": "video12011", "sen_id": 210889}, {"caption": "there is a check shirt man talking to his friends", "video_id": "video12011", "sen_id": 210890}, {"caption": "three men discuss a movie story with each other", "video_id": "video12011", "sen_id": 210891}, {"caption": "three men are talking about a film story", "video_id": "video12011", "sen_id": 210892}, {"caption": "three young adults talking about a movie story on air", "video_id": "video12011", "sen_id": 210893}, {"caption": "a group of man is talking about the movie", "video_id": "video12011", "sen_id": 210894}, {"caption": "there is a check shirt man talking with friends", "video_id": "video12011", "sen_id": 210895}, {"caption": "the famous channel hbo presents the programme audiance and their loosing", "video_id": "video12011", "sen_id": 210896}, {"caption": "three men were speaking about a film", "video_id": "video12011", "sen_id": 210897}, {"caption": "several men speak to the camera for a video segment", "video_id": "video12011", "sen_id": 210898}, {"caption": "three men are talking about a movie they are placed in the foreground", "video_id": "video12011", "sen_id": 210899}, {"caption": "woman talking about a type of thread used while sewing", "video_id": "video12306", "sen_id": 210900}, {"caption": "a woman holds a a piece green cloth and points at the white stitches on it", "video_id": "video12306", "sen_id": 210901}, {"caption": "a woman is piont to a piece of fabric and thread showing the right measurements to use for stitching", "video_id": "video12306", "sen_id": 210902}, {"caption": "a person points to a seam on a tank top strap sitting on a ruler", "video_id": "video12306", "sen_id": 210903}, {"caption": "a woman demonstrates how to sew a seam on a piece of green-printed fabric", "video_id": "video12306", "sen_id": 210904}, {"caption": "a person pointing out a stitching pattern on a green and brown peice of folded fabric", "video_id": "video12306", "sen_id": 210905}, {"caption": "there are fingers pointing to a green and brown cloth with white string sewn in", "video_id": "video12306", "sen_id": 210906}, {"caption": "a woman uses her fingers to show the pattern of stitching used for a white thread", "video_id": "video12306", "sen_id": 210907}, {"caption": "a woman discusses her method for sewing together a particular kind of cloth", "video_id": "video12306", "sen_id": 210908}, {"caption": "a woman demonstrates a technique for sewing together a type of clothing", "video_id": "video12306", "sen_id": 210909}, {"caption": "a woman is showing a small thin and long price of fabric that she finished sewing using white thread", "video_id": "video12306", "sen_id": 210910}, {"caption": "there are some important measurements in stitching techniques", "video_id": "video12306", "sen_id": 210911}, {"caption": "the women is take the measure of their hand bag strip with the help of scale", "video_id": "video12306", "sen_id": 210912}, {"caption": "a piece of cloth is been measured with the scale for some measurement", "video_id": "video12306", "sen_id": 210913}, {"caption": "a person is showing the measurement for the design", "video_id": "video12306", "sen_id": 210914}, {"caption": "a person is stitching a small thing", "video_id": "video12306", "sen_id": 210915}, {"caption": "a men is doing some craft items with his hands and keep on table", "video_id": "video12306", "sen_id": 210916}, {"caption": "a man explain the inches measurement and tell how is use this", "video_id": "video12306", "sen_id": 210917}, {"caption": "a woman is explaining the type of stitches made on a thin strip of cloth", "video_id": "video12306", "sen_id": 210918}, {"caption": "a person is showing some stitching on a thing", "video_id": "video12306", "sen_id": 210919}, {"caption": "imax theatres are being expanded so you can enjoy movies with surround sound", "video_id": "video12212", "sen_id": 210920}, {"caption": "people are watching a movie in an imax theater", "video_id": "video12212", "sen_id": 210921}, {"caption": "imax information is shown about the expansion", "video_id": "video12212", "sen_id": 210922}, {"caption": "imax information is shown for the expansion of the company", "video_id": "video12212", "sen_id": 210923}, {"caption": "a group of people sitting in a movie theatre and watching a video through some eye glasses", "video_id": "video12212", "sen_id": 210924}, {"caption": "people discuss the equipment used for vision and sound in imax theaters", "video_id": "video12212", "sen_id": 210925}, {"caption": "a news report covers the expansion of a certain type of movie theaters", "video_id": "video12212", "sen_id": 210926}, {"caption": "the ceo of imax talks about imax expansion on a news program", "video_id": "video12212", "sen_id": 210927}, {"caption": "cnbs reports on the technology behind imax theater productions", "video_id": "video12212", "sen_id": 210928}, {"caption": "people talking about the theaters such as imax and its features", "video_id": "video12212", "sen_id": 210929}, {"caption": "guy talking about theaters like imax", "video_id": "video12212", "sen_id": 210930}, {"caption": "video of the new imax bugles spoken by the ceo of the company", "video_id": "video12212", "sen_id": 210931}, {"caption": "imax ceo showing there theater expansion", "video_id": "video12212", "sen_id": 210932}, {"caption": "imax theaters plans to expand to new areas of the us", "video_id": "video12212", "sen_id": 210933}, {"caption": "two persons working with the machine and they covering their faces", "video_id": "video12212", "sen_id": 210934}, {"caption": "imax company ceo is giving interview in cnbc channel regarding expansion of theater", "video_id": "video12212", "sen_id": 210935}, {"caption": "imax ceo describes how his theater works", "video_id": "video12212", "sen_id": 210936}, {"caption": "imax ceo gives a rundown on the new line of product family to enhance the home cinema experience", "video_id": "video12212", "sen_id": 210937}, {"caption": "in a hospital emergency operation for heart specialist", "video_id": "video12212", "sen_id": 210938}, {"caption": "the doctors are doing something in the room", "video_id": "video12212", "sen_id": 210939}, {"caption": "a person is rowing a canoe on the lake", "video_id": "video12760", "sen_id": 210940}, {"caption": "a long canoe with a bike on it a person sitting in it and another paddling it", "video_id": "video12760", "sen_id": 210941}, {"caption": "there is a man traveling in a boat", "video_id": "video12760", "sen_id": 210942}, {"caption": "a man in a canoe sits behind a bike as a man behind him paddles the boat forward", "video_id": "video12760", "sen_id": 210943}, {"caption": "two men are crossing a body of water in a small boat a bike is on board", "video_id": "video12760", "sen_id": 210944}, {"caption": "a man is transporting a bike in a small boat", "video_id": "video12760", "sen_id": 210945}, {"caption": "a person in red shirt sitting on the small boat with bicycle and other person help to move the boat", "video_id": "video12760", "sen_id": 210946}, {"caption": "through the river two persons and and a cycle are moving in a boat", "video_id": "video12760", "sen_id": 210947}, {"caption": "a guy lady and a bike on a boat going who knows where", "video_id": "video12760", "sen_id": 210948}, {"caption": "grandpa is rowing his grandson and his bike to land", "video_id": "video12760", "sen_id": 210949}, {"caption": "bybycle in a boat is being paddles down river", "video_id": "video12760", "sen_id": 210950}, {"caption": "an indian guide is traveling via canoe", "video_id": "video12760", "sen_id": 210951}, {"caption": "there is a man in a red jacket in a boat with his bike while another man behind him paddles through the water", "video_id": "video12760", "sen_id": 210952}, {"caption": "two people are on a boat one person is rowing while the other is sitting by equipment and looking off into the distance", "video_id": "video12760", "sen_id": 210953}, {"caption": "two men ride in a canoe with one rowing and a bicycle as cargo", "video_id": "video12760", "sen_id": 210954}, {"caption": "one man paddles a long boat while another man sits behind a bike on the boat", "video_id": "video12760", "sen_id": 210955}, {"caption": "a man is travelling across the water with his bicycle strapped to a boat", "video_id": "video12760", "sen_id": 210956}, {"caption": "a man in red sitting in a wooden boat with a bike while another man paddles", "video_id": "video12760", "sen_id": 210957}, {"caption": "a man paddles a boat through the water with a passenger who has a bicycle on board", "video_id": "video12760", "sen_id": 210958}, {"caption": "a water scene and boat roaing inside water sitting with bycycle inside boat moving slowly displaying on screen", "video_id": "video12760", "sen_id": 210959}, {"caption": "a woman standing behind a bowl of vegetable talking about making vegetable soup", "video_id": "video11886", "sen_id": 210960}, {"caption": "in a kitchen a woman stands behind a large bowl of vegetables preparing to cook", "video_id": "video11886", "sen_id": 210961}, {"caption": "woman in grey sweater teaching how to cook a recipe in a kitchen", "video_id": "video11886", "sen_id": 210962}, {"caption": "a woman is discussing a group of large vegetables", "video_id": "video11886", "sen_id": 210963}, {"caption": "a clip from a vegetarian receipt stir fry", "video_id": "video11886", "sen_id": 210964}, {"caption": "a person is talking about a bunch of vegetable recipes", "video_id": "video11886", "sen_id": 210965}, {"caption": "a woman giving instructions on how to make a vegetarian meal", "video_id": "video11886", "sen_id": 210966}, {"caption": "a woman with her hair in a bun is talking about vegetables", "video_id": "video11886", "sen_id": 210967}, {"caption": "a woman in a purple shirt is standing in front of a basket of vegetables", "video_id": "video11886", "sen_id": 210968}, {"caption": "a black haired woman is talking in a kitchen with vegetables on the counter", "video_id": "video11886", "sen_id": 210969}, {"caption": "a woman is excitedly explaining why she has several fresh vegetables on her counter today at the start of a recipe", "video_id": "video11886", "sen_id": 210970}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11886", "sen_id": 210971}, {"caption": "a cold season on how to prepare vegeterian soup", "video_id": "video11886", "sen_id": 210972}, {"caption": "the woman is talking while the vegetables are put on table in the kitchen", "video_id": "video11886", "sen_id": 210973}, {"caption": "a lady cutting the vegetables and explain how is easy cutting", "video_id": "video11886", "sen_id": 210974}, {"caption": "a woman stands in the kitchen next to a counter filled with fresh vegetables", "video_id": "video11886", "sen_id": 210975}, {"caption": "lady standing near lot of vegetables and talks about recipe", "video_id": "video11886", "sen_id": 210976}, {"caption": "the woman is giving the information of the vegetables placed on a table", "video_id": "video11886", "sen_id": 210977}, {"caption": "a woman is standing in a kitchen with a lot of fresh vegetables in bags on the counter", "video_id": "video11886", "sen_id": 210978}, {"caption": "women standing and talking with vegetables in a kitchen", "video_id": "video11886", "sen_id": 210979}, {"caption": "a buffet of food laid out on a long table there is a big hunk of meat bowls of other food and various vegetables like onions and zucchini", "video_id": "video12395", "sen_id": 210980}, {"caption": "a man discusses the types of vietnamese buffets he is accustomed to", "video_id": "video12395", "sen_id": 210981}, {"caption": "a display of various meats on a kitchen counter being prepared", "video_id": "video12395", "sen_id": 210982}, {"caption": "a vietnemese buffet of meats and vegetable dishes", "video_id": "video12395", "sen_id": 210983}, {"caption": "different foods are displayed with a focus on the meats", "video_id": "video12395", "sen_id": 210984}, {"caption": "traditional vietnamese buffets are are shown while a california man talks", "video_id": "video12395", "sen_id": 210985}, {"caption": "guy talking about buffets he has eatin at", "video_id": "video12395", "sen_id": 210986}, {"caption": "asian foods are stacked on a counter underneath a red heating light", "video_id": "video12395", "sen_id": 210987}, {"caption": "a male is describing a buffet of vietnamese food meat and vegetables are shown", "video_id": "video12395", "sen_id": 210988}, {"caption": "a buffet is discussed with large piece of meat sitting on cutting board", "video_id": "video12395", "sen_id": 210989}, {"caption": "in a kitchen person is showing the food that has been made", "video_id": "video12395", "sen_id": 210990}, {"caption": "a man in a kitchen filled with meat reminisces about his past", "video_id": "video12395", "sen_id": 210991}, {"caption": "a man taking about vietnamese buffet food while pictures of food are displayed", "video_id": "video12395", "sen_id": 210992}, {"caption": "guy talking about two buffets that comes into his mind", "video_id": "video12395", "sen_id": 210993}, {"caption": "a variety amount of food sits on a chopping board on a counter", "video_id": "video12395", "sen_id": 210994}, {"caption": "fresh meat and vegetables is being prepared for meals", "video_id": "video12395", "sen_id": 210995}, {"caption": "there are delicious food for making on the table", "video_id": "video12395", "sen_id": 210996}, {"caption": "in a kitchen different foods are shown on a table during preparation", "video_id": "video12395", "sen_id": 210997}, {"caption": "a buffet table covered with meat and sides", "video_id": "video12395", "sen_id": 210998}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12395", "sen_id": 210999}, {"caption": "movie characters acting surprised by dish smashing", "video_id": "video12224", "sen_id": 211000}, {"caption": "a policeman interviewing a woman when a flying object hits the post they're standing next to", "video_id": "video12224", "sen_id": 211001}, {"caption": "a bottle broken on a lamp post between a woman in black and a man in a police uniform", "video_id": "video12224", "sen_id": 211002}, {"caption": "two women and a man are startled while on a pier by a group of men who throw a glass bottle at them", "video_id": "video12224", "sen_id": 211003}, {"caption": "a group of three people are standing on a bridge when a plate whips by them and breaks on a pole", "video_id": "video12224", "sen_id": 211004}, {"caption": "a man sitting on a truck and throwing a glass at a woman", "video_id": "video12224", "sen_id": 211005}, {"caption": "a dish is thrown at a man and woman while another man in a group taunts them", "video_id": "video12224", "sen_id": 211006}, {"caption": "a woman and a man are standing on a bridge when another man throws a glass at them which breaks on the light post", "video_id": "video12224", "sen_id": 211007}, {"caption": "a man in a police uniform is sitting on a railing next to a woman in dark colored clothing while the officer is sitting something is thrown at them and a man begins talking to them", "video_id": "video12224", "sen_id": 211008}, {"caption": "a man and two women being threatened by a group of men gathered on an automobile", "video_id": "video12224", "sen_id": 211009}, {"caption": "a group of guys on a pickup truck taunt and throw a bottle to a policeman in an indian movie", "video_id": "video12224", "sen_id": 211010}, {"caption": "a group of people threw something at others and they look in shock", "video_id": "video12224", "sen_id": 211011}, {"caption": "a group of men in a jeep throw a glass bottle at a policeman and two women standing by a railing overlooking a bay", "video_id": "video12224", "sen_id": 211012}, {"caption": "indian men in a car heckling a woman standing at the edge of the road overlooking the ocean", "video_id": "video12224", "sen_id": 211013}, {"caption": "some people are throwing a bottle to a policy man when he is talking to some one", "video_id": "video12224", "sen_id": 211014}, {"caption": "a group of guys throws stone and breaks street light near which a police officer and his family standing by", "video_id": "video12224", "sen_id": 211015}, {"caption": "when a police officer talks to his lover men sitting on jeep throws bottle to them", "video_id": "video12224", "sen_id": 211016}, {"caption": "a indian movie scene is playing in the screen", "video_id": "video12224", "sen_id": 211017}, {"caption": "man and woman are having conversation while other people look at them", "video_id": "video12224", "sen_id": 211018}, {"caption": "a policeman standing near two girls near a lake meanwhilea gangster group sitting in a vehicle at short distance are throwing a glass bottle near policeman", "video_id": "video12224", "sen_id": 211019}, {"caption": "an animation of small balls dropping while the narrator talks about mathematics", "video_id": "video11883", "sen_id": 211020}, {"caption": "a male mathematician talks over an animated graph of a bell curve", "video_id": "video11883", "sen_id": 211021}, {"caption": "an illustration with swirls falling on a mountain shaped graph", "video_id": "video11883", "sen_id": 211022}, {"caption": "the person explain one research by showing the experimental video", "video_id": "video11883", "sen_id": 211023}, {"caption": "a man speaks about how he thinks in pictures over an animation of balls rolling down the screen in between many other circles", "video_id": "video11883", "sen_id": 211024}, {"caption": "the top half of the graph has rows of small circles within circles over a centered blue hump under vertical gray bars", "video_id": "video11883", "sen_id": 211025}, {"caption": "a man discusses pictures and graphs related to mathematical topics", "video_id": "video11883", "sen_id": 211026}, {"caption": "a guy speaking about physics and the movement of the molecules", "video_id": "video11883", "sen_id": 211027}, {"caption": "it talks about mathematics i see dots moving into place the narrator has trouble with math the guy thinks pictures", "video_id": "video11883", "sen_id": 211028}, {"caption": "a guy talking with computer animation playing in the background", "video_id": "video11883", "sen_id": 211029}, {"caption": "there is a man talking about a system", "video_id": "video11883", "sen_id": 211030}, {"caption": "a ball is falling down through a set of pegs like a plinko machine", "video_id": "video11883", "sen_id": 211031}, {"caption": "a diagram with text is displayed", "video_id": "video11883", "sen_id": 211032}, {"caption": "a man narrates about math and pictures while animations are shown", "video_id": "video11883", "sen_id": 211033}, {"caption": "a person is showing graphic presentation of the theory", "video_id": "video11883", "sen_id": 211034}, {"caption": "a person that explained that mathematics are part of his research it seems difficult to him to transcribe to blackboard", "video_id": "video11883", "sen_id": 211035}, {"caption": "a man is narrating a simple illustration about maths and how to illustrate maths", "video_id": "video11883", "sen_id": 211036}, {"caption": "a man talks about the way that he thinks in pictures in his life", "video_id": "video11883", "sen_id": 211037}, {"caption": "a man talks about mathematics and that he thinks in pictures", "video_id": "video11883", "sen_id": 211038}, {"caption": "animated grey circles fall through a series of fixed knobs showing how they flow and bounce from one knob to the other", "video_id": "video11883", "sen_id": 211039}, {"caption": "a person is placing cabbage into a pot of boiling water", "video_id": "video11323", "sen_id": 211040}, {"caption": "an asian woman is demonstrating how to cook cabbage", "video_id": "video11323", "sen_id": 211041}, {"caption": "a receipt video about blanching cabbage using a large spoon", "video_id": "video11323", "sen_id": 211042}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11323", "sen_id": 211043}, {"caption": "a woman puts a handful of cabbage into a pot of boiling water and stirs", "video_id": "video11323", "sen_id": 211044}, {"caption": "a woman cutting cabbage then placing it into boiling water", "video_id": "video11323", "sen_id": 211045}, {"caption": "a woman puts cabbage into a pot of boiling water and cooks it for one minute", "video_id": "video11323", "sen_id": 211046}, {"caption": "a person is cutting vegetables on the cutting board", "video_id": "video11323", "sen_id": 211047}, {"caption": "woman puts vegetable inside boiling water and explains how to cook this vegetable", "video_id": "video11323", "sen_id": 211048}, {"caption": "a lady is putting greens in a pot to cook on the stove", "video_id": "video11323", "sen_id": 211049}, {"caption": "a female chef works on a recipe by putting vegetables into boiling water", "video_id": "video11323", "sen_id": 211050}, {"caption": "a woman in a black shirt is standing in the kitchen giving directions on how to cook cabbage by cutting it up and putting it in a silver pot of boiling water on the stove", "video_id": "video11323", "sen_id": 211051}, {"caption": "a woman dunks cabbage in a pot of boiling water on the stove", "video_id": "video11323", "sen_id": 211052}, {"caption": "a woman dunks cabbage in a pot of boiling water on the stove", "video_id": "video11323", "sen_id": 211053}, {"caption": "a woman places cabbage in boiling water and stirs it with a large spoon", "video_id": "video11323", "sen_id": 211054}, {"caption": "in the kitchen a woman is chopping up cabbage and adding it to a pot of boiling water", "video_id": "video11323", "sen_id": 211055}, {"caption": "women cutting the cabbage and put that into boiling pan and cooking that", "video_id": "video11323", "sen_id": 211056}, {"caption": "a woman is boiling cabbage inside of her kitchen and giving specific instructions on how long the cabbage needs to be cooked for", "video_id": "video11323", "sen_id": 211057}, {"caption": "in a kitchen woman is making meal with some vegetables", "video_id": "video11323", "sen_id": 211058}, {"caption": "a person is cooking food in a silver pot", "video_id": "video11323", "sen_id": 211059}, {"caption": "two men one wearing blue and one wearing white standing behind a bicycle talking about its features", "video_id": "video10298", "sen_id": 211060}, {"caption": "two men in cycling t-shirts talking with a bike standing in front of them", "video_id": "video10298", "sen_id": 211061}, {"caption": "two men discuss biking and the characteristics of a particular bike", "video_id": "video10298", "sen_id": 211062}, {"caption": "two men talking about bike fit techniques to help bikers", "video_id": "video10298", "sen_id": 211063}, {"caption": "two men in cycling clothing talk about cycling", "video_id": "video10298", "sen_id": 211064}, {"caption": "two young men discuss the traits of a racing bicycle", "video_id": "video10298", "sen_id": 211065}, {"caption": "two men standing behind a bike beginning to explain different techniques", "video_id": "video10298", "sen_id": 211066}, {"caption": "two men discuss bicycle techniques and the ways to repair bikes", "video_id": "video10298", "sen_id": 211067}, {"caption": "the man in a blue shirt holds onto the bike handle", "video_id": "video10298", "sen_id": 211068}, {"caption": "two men stand behind a bicycle as they prepare to discuss bike fit techniques", "video_id": "video10298", "sen_id": 211069}, {"caption": "two men standing in front of a bike describing it", "video_id": "video10298", "sen_id": 211070}, {"caption": "2 men in behind a bicycle one with a blue t shirt with the brand cyclery printed on it and the other guy using a white t'shirt with the same brand printed", "video_id": "video10298", "sen_id": 211071}, {"caption": "a man in white is talking to a man in blue in front of a bicycle", "video_id": "video10298", "sen_id": 211072}, {"caption": "two men are describing bike fit techniques for cyclists", "video_id": "video10298", "sen_id": 211073}, {"caption": "two men discuss cycling and how to maintain a particular kind of bike", "video_id": "video10298", "sen_id": 211074}, {"caption": "a man in white and a man in blue discusses the merits of a bike which is in front of them", "video_id": "video10298", "sen_id": 211075}, {"caption": "2 men stand behind a bike while they give biking tips", "video_id": "video10298", "sen_id": 211076}, {"caption": "two white guys in bicycle outfits standing behind a mountain bike talking to one another", "video_id": "video10298", "sen_id": 211077}, {"caption": "two men in biking outfits talking about teaching techniques for biking", "video_id": "video10298", "sen_id": 211078}, {"caption": "two men are standing near a bike and talking", "video_id": "video10298", "sen_id": 211079}, {"caption": "children are standing in the front yard of a house describing something that they are looking at while funny clips from different videos keep interrupting their conversation", "video_id": "video12203", "sen_id": 211080}, {"caption": "a group of young people perform in a tv commercial", "video_id": "video12203", "sen_id": 211081}, {"caption": "a group of young people talk to each other in the front yard of a house", "video_id": "video12203", "sen_id": 211082}, {"caption": "three kids hang out in a neighborhood along with a sports mascot", "video_id": "video12203", "sen_id": 211083}, {"caption": "a person in an orange cat costume is wearing a shirt that says cool cat", "video_id": "video12203", "sen_id": 211084}, {"caption": "there are a group of kids talking and then there are people dancing followed by the kids talking to an orange cat", "video_id": "video12203", "sen_id": 211085}, {"caption": "outside on a sunny day three kids make fun of their friend", "video_id": "video12203", "sen_id": 211086}, {"caption": "three young boy standing outside and talking", "video_id": "video12203", "sen_id": 211087}, {"caption": "three kids were discussing about a jones bbq and foot massage", "video_id": "video12203", "sen_id": 211088}, {"caption": "boys playing and dancing with the cartoon artist", "video_id": "video12203", "sen_id": 211089}, {"caption": "three boys jones bbq and 708-224-6191 cool cat", "video_id": "video12203", "sen_id": 211090}, {"caption": "a children were arguing and the toys were playing in the ground", "video_id": "video12203", "sen_id": 211091}, {"caption": "three children are discussing and a children wearing a animation cap is telling them something", "video_id": "video12203", "sen_id": 211092}, {"caption": "there are some kids playing with a big toy", "video_id": "video12203", "sen_id": 211093}, {"caption": "the few boys are talking about something on the field", "video_id": "video12203", "sen_id": 211094}, {"caption": "3 boys are looking at the other 3 catoonish who wears the dress of cartoon characters", "video_id": "video12203", "sen_id": 211095}, {"caption": "a boy discussing with the cartoon cat with some actions", "video_id": "video12203", "sen_id": 211096}, {"caption": "jones bbq and foot massage 708-224-6191 one boy and cartonist", "video_id": "video12203", "sen_id": 211097}, {"caption": "kids are dancing in cartoon clothes and saying something", "video_id": "video12203", "sen_id": 211098}, {"caption": "the children are happily playing with characters with masks", "video_id": "video12203", "sen_id": 211099}, {"caption": "a girl explaining her want to be the best", "video_id": "video11005", "sen_id": 211100}, {"caption": "a family of dark haired girls walks along a beach", "video_id": "video11005", "sen_id": 211101}, {"caption": "three women and two children standing in front of a car on a beach", "video_id": "video11005", "sen_id": 211102}, {"caption": "a person opening an orange bag at the beach", "video_id": "video11005", "sen_id": 211103}, {"caption": "a woman in a gray shirt has a baby on her shoulders and then there is a man working with an orange bag with a string", "video_id": "video11005", "sen_id": 211104}, {"caption": "a woman holding a baby on her shoulder and a man opening an orange bag", "video_id": "video11005", "sen_id": 211105}, {"caption": "a woman giving a child a piggy back ride", "video_id": "video11005", "sen_id": 211106}, {"caption": "there is a family walking in to the beach", "video_id": "video11005", "sen_id": 211107}, {"caption": "old footage of hippies hanging out with a voiceover of a lady", "video_id": "video11005", "sen_id": 211108}, {"caption": "a man in blue jeans is holding a swatch of orange fabric", "video_id": "video11005", "sen_id": 211109}, {"caption": "bunch of sexy brunette s with shades walking towards the van", "video_id": "video11005", "sen_id": 211110}, {"caption": "few ladies comes near the car while a lady have his son sitting on the shoulder", "video_id": "video11005", "sen_id": 211111}, {"caption": "girls with long hair and blouses walk together around bus during an outdoor event", "video_id": "video11005", "sen_id": 211112}, {"caption": "there is a woman carrying a little boy", "video_id": "video11005", "sen_id": 211113}, {"caption": "a lady is taking a clothe and spread it", "video_id": "video11005", "sen_id": 211114}, {"caption": "there is a family is in a tourists placewhere a small kid placed on his mother shoulder with happy", "video_id": "video11005", "sen_id": 211115}, {"caption": "a woman is carrying a child on her back", "video_id": "video11005", "sen_id": 211116}, {"caption": "a person with a baf is holding it out side", "video_id": "video11005", "sen_id": 211117}, {"caption": "an old video of a girl telling us how she wants to be a race car driver", "video_id": "video11005", "sen_id": 211118}, {"caption": "people outside next to a car and a man holds red cloth with white strings attached to it", "video_id": "video11005", "sen_id": 211119}, {"caption": "a young woman in a bright yellow shirt and rainbow skirt", "video_id": "video12549", "sen_id": 211120}, {"caption": "woman in colorful outfit being recorded by a complimenting woman", "video_id": "video12549", "sen_id": 211121}, {"caption": "many people are dressed up in fun and colorful outfits", "video_id": "video12549", "sen_id": 211122}, {"caption": "a room filled with women who are dressed like dolls with one specifically having purple hair with a pink ribbon", "video_id": "video12549", "sen_id": 211123}, {"caption": "a tour of comic-con and a closeup of some the costumes", "video_id": "video12549", "sen_id": 211124}, {"caption": "a woman wearing a rainbow make ups and pink hair", "video_id": "video12549", "sen_id": 211125}, {"caption": "there is a women in verity dressing standing in the street", "video_id": "video12549", "sen_id": 211126}, {"caption": "a girl wearing a large pink bow in her dark colored hair looks into the camera intensely while smiling and making a silly face", "video_id": "video12549", "sen_id": 211127}, {"caption": "some people decorating themselves posing for the video", "video_id": "video12549", "sen_id": 211128}, {"caption": "a camerawoman compliments a variety of partygoers on their fashion choices", "video_id": "video12549", "sen_id": 211129}, {"caption": "all persons in a fashion show at a hall", "video_id": "video12549", "sen_id": 211130}, {"caption": "a woman with a colorful outfit posing for a camera", "video_id": "video12549", "sen_id": 211131}, {"caption": "the people are on a model wear show out", "video_id": "video12549", "sen_id": 211132}, {"caption": "a girl is colored her hair and posing", "video_id": "video12549", "sen_id": 211133}, {"caption": "various girls dressed as in some comical way is happily moving here and there", "video_id": "video12549", "sen_id": 211134}, {"caption": "a women in verity dressing smiling from a crowed", "video_id": "video12549", "sen_id": 211135}, {"caption": "a young woman is dressed in a colorful costume in a room with people milling around", "video_id": "video12549", "sen_id": 211136}, {"caption": "a girl dressed comic full make up making fear to other", "video_id": "video12549", "sen_id": 211137}, {"caption": "a lady in a unique costume poses to the camera", "video_id": "video12549", "sen_id": 211138}, {"caption": "a person is reacting with surprise to something", "video_id": "video12549", "sen_id": 211139}, {"caption": "tribal individuals doing a chant and dancing together", "video_id": "video12862", "sen_id": 211140}, {"caption": "a group of indians dance together in a long line", "video_id": "video12862", "sen_id": 211141}, {"caption": "men in tribal and war gear dancing in a line in a field", "video_id": "video12862", "sen_id": 211142}, {"caption": "an african tribe is singing and dancing", "video_id": "video12862", "sen_id": 211143}, {"caption": "a group of indians in costumes dance in a long line", "video_id": "video12862", "sen_id": 211144}, {"caption": "some indigenous tribe with spears and shields are singing", "video_id": "video12862", "sen_id": 211145}, {"caption": "a group of man singing a tribal song and stoming", "video_id": "video12862", "sen_id": 211146}, {"caption": "lot of people get together and cheering around enjoying", "video_id": "video12862", "sen_id": 211147}, {"caption": "a large crowd of red indian singing a nation anthem in the wilderness", "video_id": "video12862", "sen_id": 211148}, {"caption": "group of people having weapon in their hand and make some noise", "video_id": "video12862", "sen_id": 211149}, {"caption": "an african chief leads his warrior tribe in a battle dance", "video_id": "video12862", "sen_id": 211150}, {"caption": "a group of people dancing and playing in a grass ground", "video_id": "video12862", "sen_id": 211151}, {"caption": "a large group of tribesmen are singing and stumping together", "video_id": "video12862", "sen_id": 211152}, {"caption": "many people celebrating their festival like carnival in tribal", "video_id": "video12862", "sen_id": 211153}, {"caption": "so many warriors are holding the weapons and making the moise", "video_id": "video12862", "sen_id": 211154}, {"caption": "bunch of tribe people dancing and singing on the field", "video_id": "video12862", "sen_id": 211155}, {"caption": "there are many people gathered and one man among them is fighting with others", "video_id": "video12862", "sen_id": 211156}, {"caption": "the tribal people with their traditional weapons and traditional wear are performing a dance which is related to their culture", "video_id": "video12862", "sen_id": 211157}, {"caption": "a group of warrior tribesmen dance and sing while in formation", "video_id": "video12862", "sen_id": 211158}, {"caption": "the said to walk in many people enjoy nature and sea and aproved", "video_id": "video12862", "sen_id": 211159}, {"caption": "a person is holding a phone and showing a video of canadian hockey games", "video_id": "video11931", "sen_id": 211160}, {"caption": "a person is watching a hockey game on their phone", "video_id": "video11931", "sen_id": 211161}, {"caption": "a hockey app on your phone to look at different views of the games", "video_id": "video11931", "sen_id": 211162}, {"caption": "a man describes and demonstrates a video game system", "video_id": "video11931", "sen_id": 211163}, {"caption": "a smartphone is seen showing a hockey game", "video_id": "video11931", "sen_id": 211164}, {"caption": "a person is scrolling through an app and then watching hockey on his smart phone", "video_id": "video11931", "sen_id": 211165}, {"caption": "a guy is explaining different features of an app to see hockey games", "video_id": "video11931", "sen_id": 211166}, {"caption": "some one watching different videos in their touch screen mobile", "video_id": "video11931", "sen_id": 211167}, {"caption": "a mobile is displayed with various features", "video_id": "video11931", "sen_id": 211168}, {"caption": "one man talks about the skating sports in a mobile", "video_id": "video11931", "sen_id": 211169}, {"caption": "a hockey game series is seen in a touch screem mobile", "video_id": "video11931", "sen_id": 211170}, {"caption": "a person is showing about an mobile and its clarity in the programme", "video_id": "video11931", "sen_id": 211171}, {"caption": "there is a mobile with ultimate options", "video_id": "video11931", "sen_id": 211172}, {"caption": "a man holds his cell phone while showing the different videos that play on it", "video_id": "video11931", "sen_id": 211173}, {"caption": "a man watching match in his mobile phone live", "video_id": "video11931", "sen_id": 211174}, {"caption": "someone is looking at things on their phone", "video_id": "video11931", "sen_id": 211175}, {"caption": "there is someone playing with mobile phone", "video_id": "video11931", "sen_id": 211176}, {"caption": "the sales men teling the feautre of a new smartphone with customer", "video_id": "video11931", "sen_id": 211177}, {"caption": "a man discusses and describes a video game that he is playing", "video_id": "video11931", "sen_id": 211178}, {"caption": "guy giving information and tutorial about a game on iphone 6 plus", "video_id": "video11931", "sen_id": 211179}, {"caption": "two basketball teams playing a game in a gymnasium and the crowd is cheering", "video_id": "video10839", "sen_id": 211180}, {"caption": "a basketball team is playing and a man gets thrown onto the ground", "video_id": "video10839", "sen_id": 211181}, {"caption": "two basketball teams playing a game to a cheering crowd", "video_id": "video10839", "sen_id": 211182}, {"caption": "basketball players compete to gain control of the ball", "video_id": "video10839", "sen_id": 211183}, {"caption": "a young man dribbles a basketball up the floor in a hotly contested game", "video_id": "video10839", "sen_id": 211184}, {"caption": "a clip of a kid making a crazy basketball shot", "video_id": "video10839", "sen_id": 211185}, {"caption": "a basketball player dribbles a ball the length of the court near the end of a game", "video_id": "video10839", "sen_id": 211186}, {"caption": "a clip of a basketball player making an amazing shot", "video_id": "video10839", "sen_id": 211187}, {"caption": "a basketball player in a black uniform falls when trying to touch the ball but gets up and continues playing a player in a white uniform falls backwards while guarding an opponent", "video_id": "video10839", "sen_id": 211188}, {"caption": "there is a high school basketball tournament where the audiences are excited and cheering up when it scroes", "video_id": "video10839", "sen_id": 211189}, {"caption": "a boy gets a rebound in a basketball game and dribbles down the court throws it to another player who shoots and scores then it cuts to someone on the other team dribbling", "video_id": "video10839", "sen_id": 211190}, {"caption": "an american high school basketball game in a gymnasium", "video_id": "video10839", "sen_id": 211191}, {"caption": "a team in black and a team in white play men's basketball", "video_id": "video10839", "sen_id": 211192}, {"caption": "a group of people dressed in white and black playing basketball and one person falls down", "video_id": "video10839", "sen_id": 211193}, {"caption": "people are playing basketball using defensive dribbling tactics to cause the people guarding them to fall", "video_id": "video10839", "sen_id": 211194}, {"caption": "a basketball pllayer in a white uniform is dribbling the ball down the court", "video_id": "video10839", "sen_id": 211195}, {"caption": "people are playing a basketball game while the crowd cheers enthusiastically", "video_id": "video10839", "sen_id": 211196}, {"caption": "high school basketball is being played while the crowd cheers on", "video_id": "video10839", "sen_id": 211197}, {"caption": "two teams playing basket ball on a court with one wearing black jersey and other wearing white jersey", "video_id": "video10839", "sen_id": 211198}, {"caption": "the players in white shirts are celebrating the point", "video_id": "video10839", "sen_id": 211199}, {"caption": "clips of brad pit as a soldier in a new war movie", "video_id": "video10271", "sen_id": 211200}, {"caption": "a preview of a war movie and an interview", "video_id": "video10271", "sen_id": 211201}, {"caption": "war time movie with men in uniforms riding in a tank", "video_id": "video10271", "sen_id": 211202}, {"caption": "in depth discussion of the making of the movie fury starring brad pitt", "video_id": "video10271", "sen_id": 211203}, {"caption": "a group of soldiers moves through the interior portions of a town", "video_id": "video10271", "sen_id": 211204}, {"caption": "a row of army tanks moves slowly along a country road", "video_id": "video10271", "sen_id": 211205}, {"caption": "a long row of army tanks rolls along a country road on a misty morning", "video_id": "video10271", "sen_id": 211206}, {"caption": "trailer of movie fury is being shown while people are explaining about the movie", "video_id": "video10271", "sen_id": 211207}, {"caption": "actors in a movie about the military intensely discuss various aspects of a movie", "video_id": "video10271", "sen_id": 211208}, {"caption": "a military commander is talking to a soldier while scenes are shown of wwii tanks and military fighting men", "video_id": "video10271", "sen_id": 211209}, {"caption": "trailer of a war movie taking place in europe during wwii and called fury", "video_id": "video10271", "sen_id": 211210}, {"caption": "scenes from a military movie and an interview with a cast member", "video_id": "video10271", "sen_id": 211211}, {"caption": "a man is talking about his film military experience", "video_id": "video10271", "sen_id": 211212}, {"caption": "a soldier talking to another soldier as tanks go by", "video_id": "video10271", "sen_id": 211213}, {"caption": "a man gives orders to recruits in a world war two film", "video_id": "video10271", "sen_id": 211214}, {"caption": "brad pitt in fury movie with director s commentary", "video_id": "video10271", "sen_id": 211215}, {"caption": "there are some vehicles moving on the road", "video_id": "video10271", "sen_id": 211216}, {"caption": "fury movie clip showing father and son interaction", "video_id": "video10271", "sen_id": 211217}, {"caption": "brad pitt is a military man in the movie called fury", "video_id": "video10271", "sen_id": 211218}, {"caption": "a video clip of the fury movie", "video_id": "video10271", "sen_id": 211219}, {"caption": "a man is surfing and he falls into the ocean water", "video_id": "video12542", "sen_id": 211220}, {"caption": "a surfer riding a wave and then wiping out", "video_id": "video12542", "sen_id": 211221}, {"caption": "there is fat man falling into the sea", "video_id": "video12542", "sen_id": 211222}, {"caption": "a man doing some adventure while skating on the sea", "video_id": "video12542", "sen_id": 211223}, {"caption": "adventurous sports of sea surfing by crossing high waves in the sea", "video_id": "video12542", "sen_id": 211224}, {"caption": "caucasian male surfing and then falling in bright teal water with white foam", "video_id": "video12542", "sen_id": 211225}, {"caption": "a stout man moves on waves and jumps into the splashes", "video_id": "video12542", "sen_id": 211226}, {"caption": "a surfer zips along a wave and then goes airborne before crashing", "video_id": "video12542", "sen_id": 211227}, {"caption": "a man on a surf board is on the water", "video_id": "video12542", "sen_id": 211228}, {"caption": "a surfer is on a surf board moving at a good speed he moves away from the curl of the wave then falls into the ocean", "video_id": "video12542", "sen_id": 211229}, {"caption": "a person travels by yatch in sea and drown in to the sea by waves attack", "video_id": "video12542", "sen_id": 211230}, {"caption": "a man running on the water", "video_id": "video12542", "sen_id": 211231}, {"caption": "a man surfing a wave and then jumping off his board into the surf afterward", "video_id": "video12542", "sen_id": 211232}, {"caption": "a surfer riding a huge wave and then wiping out", "video_id": "video12542", "sen_id": 211233}, {"caption": "a man is sailing on boat in sea", "video_id": "video12542", "sen_id": 211234}, {"caption": "a man is surfing around on a beach in the day", "video_id": "video12542", "sen_id": 211235}, {"caption": "this is a simulated video of a man surfing on a wave", "video_id": "video12542", "sen_id": 211236}, {"caption": "a man is surfing in the waters without wearing a tshirt", "video_id": "video12542", "sen_id": 211237}, {"caption": "man is doing some surfing on the water and falling in it", "video_id": "video12542", "sen_id": 211238}, {"caption": "a man suring in a beautiful beach which has light greenish water", "video_id": "video12542", "sen_id": 211239}, {"caption": "a girl curling her hair for the camera", "video_id": "video11482", "sen_id": 211240}, {"caption": "a girl is showing how to curl her hair", "video_id": "video11482", "sen_id": 211241}, {"caption": "a young woman in a tank top is curling her brown hair", "video_id": "video11482", "sen_id": 211242}, {"caption": "a young woman demonstrates how to curl hair using a curling iron and hairspray", "video_id": "video11482", "sen_id": 211243}, {"caption": "a woman in purple is curling her hair with a hot curling iron then finishing with hairspray", "video_id": "video11482", "sen_id": 211244}, {"caption": "a woman with long brown hair curls her hair", "video_id": "video11482", "sen_id": 211245}, {"caption": "there is a women applying make by herself", "video_id": "video11482", "sen_id": 211246}, {"caption": "a woman is demonstrating how to use a curling iron and hair style", "video_id": "video11482", "sen_id": 211247}, {"caption": "a women in pink dress shows how to make different hair style", "video_id": "video11482", "sen_id": 211248}, {"caption": "a person wearing a purple shirt curling hair then spray it", "video_id": "video11482", "sen_id": 211249}, {"caption": "a girl is curling her hairs using the curling rod and spray", "video_id": "video11482", "sen_id": 211250}, {"caption": "there is a women applying makeup by herself", "video_id": "video11482", "sen_id": 211251}, {"caption": " in a purple tank top in front a black curtain using a curling iron and styling her hair", "video_id": "video11482", "sen_id": 211252}, {"caption": "a woman is dressing her long hair with instrument", "video_id": "video11482", "sen_id": 211253}, {"caption": "a girl combing her hairs in blue dress rolling and hair spray applying to look beauty", "video_id": "video11482", "sen_id": 211254}, {"caption": "a woman with brown hair is talking about something", "video_id": "video11482", "sen_id": 211255}, {"caption": "a women with long curly hair is curling her hair", "video_id": "video11482", "sen_id": 211256}, {"caption": "the woman is showing the hair styling methods in front of camera", "video_id": "video11482", "sen_id": 211257}, {"caption": "a girl curled her hair using the curler she wear the purple dress", "video_id": "video11482", "sen_id": 211258}, {"caption": "a girl in blue dress hair style and applying hair spray", "video_id": "video11482", "sen_id": 211259}, {"caption": "a man sits at a desk with microphones in front of him speaking from a prepared statement", "video_id": "video10513", "sen_id": 211260}, {"caption": "a man answers reporter questions in front of a bank of microphones", "video_id": "video10513", "sen_id": 211261}, {"caption": "a man sitting at a desk in front of numerous microphones is giving an interview", "video_id": "video10513", "sen_id": 211262}, {"caption": "a man in blue reading something from a piece of paper", "video_id": "video10513", "sen_id": 211263}, {"caption": "a man sits at a desk in front of a bank of microphones and speaks", "video_id": "video10513", "sen_id": 211264}, {"caption": "a person is explaining on the news channel", "video_id": "video10513", "sen_id": 211265}, {"caption": "a man is sitting at a desk and reading from a source on the table", "video_id": "video10513", "sen_id": 211266}, {"caption": "a man is giving a interview to the reporter", "video_id": "video10513", "sen_id": 211267}, {"caption": "a man in a light blue shirt giving an interview", "video_id": "video10513", "sen_id": 211268}, {"caption": "a man not speaking english is speaking into multiple microphones lying on a desk next to his paperwork", "video_id": "video10513", "sen_id": 211269}, {"caption": "a blue shirt man talking in front of a shelf", "video_id": "video10513", "sen_id": 211270}, {"caption": "the old man is telling something while sitting on the chair in the office", "video_id": "video10513", "sen_id": 211271}, {"caption": "a bureaucrat in his office explains allocation of certain bus schedules to the interviewer", "video_id": "video10513", "sen_id": 211272}, {"caption": "a hispaniclatino man at some sort of news conference though the exact nature is hard to determine", "video_id": "video10513", "sen_id": 211273}, {"caption": "a man in a blue shirt is sitting inside", "video_id": "video10513", "sen_id": 211274}, {"caption": "the microphones are on a lay out from different stations", "video_id": "video10513", "sen_id": 211275}, {"caption": "a principal of a college speaks about something to the press people", "video_id": "video10513", "sen_id": 211276}, {"caption": "man sits on chair he has many mikes in front of himhe has pen in pocket", "video_id": "video10513", "sen_id": 211277}, {"caption": "a old man in blue color dress wearing speaking sitting beside table on books displaying on screen", "video_id": "video10513", "sen_id": 211278}, {"caption": "a man is being intereviewed by multiple tv stations", "video_id": "video10513", "sen_id": 211279}, {"caption": "a man is standing and giving a press conference", "video_id": "video10128", "sen_id": 211280}, {"caption": "white house spokesperson josh earnest gives a press conference on the phase out of sanctions which have not yet been agreed to", "video_id": "video10128", "sen_id": 211281}, {"caption": "a man in a suit stands in front of a flag and speaks at a podium", "video_id": "video10128", "sen_id": 211282}, {"caption": "clip of a white house press conference regarding sanctions against iran press info about ending iran sanctions", "video_id": "video10128", "sen_id": 211283}, {"caption": "man in a grey suit standing at a podium giving a press conference", "video_id": "video10128", "sen_id": 211284}, {"caption": "white house press secretary discusses the sanctions of the iran nuclear deal", "video_id": "video10128", "sen_id": 211285}, {"caption": "a white house spokesman discusses sanctions on iran", "video_id": "video10128", "sen_id": 211286}, {"caption": "a man in a dark suit stands at a podium and answers questions", "video_id": "video10128", "sen_id": 211287}, {"caption": "a well dressed speaker is at the podium with an american flag in the background discussing sanctions", "video_id": "video10128", "sen_id": 211288}, {"caption": "a man wearing a black suit talking about politics", "video_id": "video10128", "sen_id": 211289}, {"caption": "a united states representative speaking in front of a podium about sanctions against iran because of nuclear ambitions", "video_id": "video10128", "sen_id": 211290}, {"caption": "a spokesman for the white house is having a press conference about the iran nuclear talks", "video_id": "video10128", "sen_id": 211291}, {"caption": "a person speaks on the white house talks", "video_id": "video10128", "sen_id": 211292}, {"caption": "the white house spokesman explaining about sanctions opposed on iran that have not yet been agreed to", "video_id": "video10128", "sen_id": 211293}, {"caption": "a man in a suit and tie is talking on tv", "video_id": "video10128", "sen_id": 211294}, {"caption": "the man in a neck tie talks at the podium", "video_id": "video10128", "sen_id": 211295}, {"caption": "what looks to be a politician answering a question that had been posed to him", "video_id": "video10128", "sen_id": 211296}, {"caption": "a man is in the white house talking about sanctions on iran", "video_id": "video10128", "sen_id": 211297}, {"caption": "a prime minister is addressing to the gathering regarding the economic and wealth condition of the country and also about the iran nuclear talks", "video_id": "video10128", "sen_id": 211298}, {"caption": "a white house spokesman is spinning the truth", "video_id": "video10128", "sen_id": 211299}, {"caption": "a guy with a cute brown dog in the passenger side of his car", "video_id": "video11913", "sen_id": 211300}, {"caption": "a man in glasses has picked up a new puppy and is taking it to see his girlfriend", "video_id": "video11913", "sen_id": 211301}, {"caption": "a man in glasses has picked up a new puppy and is taking it to see his girlfriend", "video_id": "video11913", "sen_id": 211302}, {"caption": "a man talking about the new puppy a man asking a puppy if he wants to see his new mommy", "video_id": "video11913", "sen_id": 211303}, {"caption": "a man sits in a car with his newly adopted puppy", "video_id": "video11913", "sen_id": 211304}, {"caption": "a man discusses a new puppy that he is picking up for the first time", "video_id": "video11913", "sen_id": 211305}, {"caption": "an indian guy with dark glasses is playing with a dog", "video_id": "video11913", "sen_id": 211306}, {"caption": "a guy in blue shirt has picked up the puppy from the streets and seat belted the puppy in front seat", "video_id": "video11913", "sen_id": 211307}, {"caption": "a person with blue shirt was sitting inside the car and near to him dog was sitting", "video_id": "video11913", "sen_id": 211308}, {"caption": "one man driving car fastly and its like that jet with a dog", "video_id": "video11913", "sen_id": 211309}, {"caption": "smart looking guy sitting in the chair by wearing the seat belthe has the dog near himi", "video_id": "video11913", "sen_id": 211310}, {"caption": "bearded guy in glass talking about his dog while driving the car", "video_id": "video11913", "sen_id": 211311}, {"caption": "a man in blue talking to a puppy inside the car", "video_id": "video11913", "sen_id": 211312}, {"caption": "a man and a dog are sitting in the car", "video_id": "video11913", "sen_id": 211313}, {"caption": "a blue dress wearing boy inside car sitting with dog catching speaking displaying on the screen", "video_id": "video11913", "sen_id": 211314}, {"caption": "a dog is walking as a man is talking", "video_id": "video11913", "sen_id": 211315}, {"caption": "there is a man in blue shirt talking from a car", "video_id": "video11913", "sen_id": 211316}, {"caption": "the man talks as his dog rides in the front seat of the car", "video_id": "video11913", "sen_id": 211317}, {"caption": "a man is pick up puppy in the car", "video_id": "video11913", "sen_id": 211318}, {"caption": "a man in his car shows the small puppy he has just picked up", "video_id": "video11913", "sen_id": 211319}, {"caption": "woman demonstrating cooking; talking about results and machinery", "video_id": "video10705", "sen_id": 211320}, {"caption": "woman in a blue outfit showing how to make dough in a hand crank machine", "video_id": "video10705", "sen_id": 211321}, {"caption": "a woman making a pasta dough using a food processor and rolling machine", "video_id": "video10705", "sen_id": 211322}, {"caption": "a chef in a test kitchen reviewing kitchen appliances", "video_id": "video10705", "sen_id": 211323}, {"caption": "a woman in blue talking about a blender", "video_id": "video10705", "sen_id": 211324}, {"caption": "a woman talks about the use of different kitchen appliances", "video_id": "video10705", "sen_id": 211325}, {"caption": "eggs being stirred in to some flower a woman in a test kitchen touching kitchen appliances and talking", "video_id": "video10705", "sen_id": 211326}, {"caption": "a women in blue dress taking cooking class to the interested candidates", "video_id": "video10705", "sen_id": 211327}, {"caption": "a woman teaching cooking school in front of the camera", "video_id": "video10705", "sen_id": 211328}, {"caption": "a woman is telling a recipe for a cooking", "video_id": "video10705", "sen_id": 211329}, {"caption": "a lady in a blue shirt is explaining how to make pasta", "video_id": "video10705", "sen_id": 211330}, {"caption": "in the kitchen a woman talking about a machine", "video_id": "video10705", "sen_id": 211331}, {"caption": "a lady in blue dress explains on how to make a variety and explains some machine", "video_id": "video10705", "sen_id": 211332}, {"caption": "a woman says a food processor is easiest for consistent results", "video_id": "video10705", "sen_id": 211333}, {"caption": "woman in blue outfit talks about food processor", "video_id": "video10705", "sen_id": 211334}, {"caption": "a woman in a blue shirt is talking", "video_id": "video10705", "sen_id": 211335}, {"caption": "women in cooking class kept some cooking machines in the table and explaining about that", "video_id": "video10705", "sen_id": 211336}, {"caption": "a lady in the kitchen explains how dough and fettuccine can be prepared using the food processor and a hand operated press", "video_id": "video10705", "sen_id": 211337}, {"caption": "a promo from test kitchen about hand held machine for benefit of kitchen and cooking process", "video_id": "video10705", "sen_id": 211338}, {"caption": "a woman in a kitchen is making food", "video_id": "video10705", "sen_id": 211339}, {"caption": "a young woman hand bathing a sickly dog in a concrete enclosure", "video_id": "video11308", "sen_id": 211340}, {"caption": "a young woman washes and cares for an abused and neglected dog", "video_id": "video11308", "sen_id": 211341}, {"caption": "a boy pets a dog recovering from abuse", "video_id": "video11308", "sen_id": 211342}, {"caption": "a young woman in a black shirt is cleaning a hairless dog with a purple sponge", "video_id": "video11308", "sen_id": 211343}, {"caption": "a boy is washing a sick dog", "video_id": "video11308", "sen_id": 211344}, {"caption": "a young boy cleaning a malnourished dog in shelter", "video_id": "video11308", "sen_id": 211345}, {"caption": "there is a child slowly cleaning off a timid dog", "video_id": "video11308", "sen_id": 211346}, {"caption": "a woman in a black tee shirt and orange pants is bathing a dog that appears to be recovering from illness and or abuse", "video_id": "video11308", "sen_id": 211347}, {"caption": "a woman washing a skinny tortured dog with a cloth", "video_id": "video11308", "sen_id": 211348}, {"caption": "a young black women brushes a light colored dog", "video_id": "video11308", "sen_id": 211349}, {"caption": "a girl wearing glasses petting a white sickly dog", "video_id": "video11308", "sen_id": 211350}, {"caption": "a girl sitting down on the ground petting a white dog", "video_id": "video11308", "sen_id": 211351}, {"caption": "a person lovingly caresses a dog with an obvious skin condition with a rag soaked in something that looks like milk", "video_id": "video11308", "sen_id": 211352}, {"caption": "a boy in glasses wipes a damp cloth on a dog", "video_id": "video11308", "sen_id": 211353}, {"caption": "a boy is cleaning his dog from disease", "video_id": "video11308", "sen_id": 211354}, {"caption": "a young boy is tending to a dog that suffered some type of injury or disease to it s skin", "video_id": "video11308", "sen_id": 211355}, {"caption": "there is a girl sitting side of a dog and wiping the dog with a cloth", "video_id": "video11308", "sen_id": 211356}, {"caption": "a boy is cleaning a dog with water", "video_id": "video11308", "sen_id": 211357}, {"caption": "a woman gently tends to an injured dog washing him with a sponge", "video_id": "video11308", "sen_id": 211358}, {"caption": "brunette in glasses giving bath to the dog", "video_id": "video11308", "sen_id": 211359}, {"caption": "a girl with long hair is talking about blush makup and applying some to her cheeks", "video_id": "video12648", "sen_id": 211360}, {"caption": "a woman talking very loud and aggressive put on make up with a brush at the end of the video", "video_id": "video12648", "sen_id": 211361}, {"caption": "young woman with brown hair showing how and why to put on blush makeup", "video_id": "video12648", "sen_id": 211362}, {"caption": "a woman describes the physiological response that causes cheek flushing while demonstrating the use of blush to imitate that response", "video_id": "video12648", "sen_id": 211363}, {"caption": "a girl with brown hair is telling why people wear blush", "video_id": "video12648", "sen_id": 211364}, {"caption": "a young girl describes and demonstrates a makeup technique that she likes to use", "video_id": "video12648", "sen_id": 211365}, {"caption": "a woman is talking about blush and the reason people wear it", "video_id": "video12648", "sen_id": 211366}, {"caption": "here a woman explains why blush was created", "video_id": "video12648", "sen_id": 211367}, {"caption": "a woman applies blush to her cheeks while explaining the reason women wear blush", "video_id": "video12648", "sen_id": 211368}, {"caption": "a girl in purple is talking about blush and why we blush", "video_id": "video12648", "sen_id": 211369}, {"caption": "a girl talks about blush and why girls use it", "video_id": "video12648", "sen_id": 211370}, {"caption": "a girls discusses blush and why females use it", "video_id": "video12648", "sen_id": 211371}, {"caption": "a young woman demonstrates how to apply blush to her face", "video_id": "video12648", "sen_id": 211372}, {"caption": "a young woman explains how and why to wear blush when applying makeup", "video_id": "video12648", "sen_id": 211373}, {"caption": "a white female teenager with brown hair stands in a mirror to explain why women have the need to wear blush properly", "video_id": "video12648", "sen_id": 211374}, {"caption": "a young lady is speaking to camera and applying make up to her face", "video_id": "video12648", "sen_id": 211375}, {"caption": "a girl describing why blush is used for makeup", "video_id": "video12648", "sen_id": 211376}, {"caption": "a teenage girl with long brown hair and purple shirt is showing the camera her makeup", "video_id": "video12648", "sen_id": 211377}, {"caption": "brunette woman is talking about how to do the make up", "video_id": "video12648", "sen_id": 211378}, {"caption": "a woman with brown hair is sitting and talking", "video_id": "video12648", "sen_id": 211379}, {"caption": "a church and its surrounding areas are being viewed", "video_id": "video11398", "sen_id": 211380}, {"caption": "oriental music is playing while different landscapes are being shown", "video_id": "video11398", "sen_id": 211381}, {"caption": "a grey and white church surrounded by mountains and ocean", "video_id": "video11398", "sen_id": 211382}, {"caption": "a solitary church on the water with mountains in the background", "video_id": "video11398", "sen_id": 211383}, {"caption": "there is a beautiful black color house with white windows near the ocean", "video_id": "video11398", "sen_id": 211384}, {"caption": "cultural music plays as various images of scenery are shown", "video_id": "video11398", "sen_id": 211385}, {"caption": "exterior shots of a church and its surrounding landscape are shown", "video_id": "video11398", "sen_id": 211386}, {"caption": "an idyllic single room church sits proudly in the highlands beside the ocean the camera first shows closeups of the church and the pans out to show us its gray paint job and then the majestic ocean tide", "video_id": "video11398", "sen_id": 211387}, {"caption": "set to the sounds of oriental music the beauty of simple designs is shown in clean architecture like the side and windows of a house", "video_id": "video11398", "sen_id": 211388}, {"caption": "a church located near to sea shore", "video_id": "video11398", "sen_id": 211389}, {"caption": "there is a black painted church nearby a beach", "video_id": "video11398", "sen_id": 211390}, {"caption": "pictures of churches building with beautiful scenery at the back ground", "video_id": "video11398", "sen_id": 211391}, {"caption": "various outdoor scenes are shown while asian music plays", "video_id": "video11398", "sen_id": 211392}, {"caption": "a water scene moving church and mountain still images displaying on screen", "video_id": "video11398", "sen_id": 211393}, {"caption": "a church is been constructed and surrounding was empty", "video_id": "video11398", "sen_id": 211394}, {"caption": "there is a white window in a big building", "video_id": "video11398", "sen_id": 211395}, {"caption": "a music video playing music while showing images of buildings landscapes and bodies of water", "video_id": "video11398", "sen_id": 211396}, {"caption": "a small dark colored church house sets in an open plane near a mountain", "video_id": "video11398", "sen_id": 211397}, {"caption": "cinematic landscape scenes with traditional asian music", "video_id": "video11398", "sen_id": 211398}, {"caption": "a person is showing monuments and the river flow", "video_id": "video11398", "sen_id": 211399}, {"caption": "a two person team is playing against another two person team at ping pong", "video_id": "video11862", "sen_id": 211400}, {"caption": "two teams of people play table tennis against each other in a large indoor stadium", "video_id": "video11862", "sen_id": 211401}, {"caption": "two ping pong teams are battling in a game", "video_id": "video11862", "sen_id": 211402}, {"caption": "table tennis being played over seas with four players", "video_id": "video11862", "sen_id": 211403}, {"caption": "four men are playing table tennis and wearing similar colored uniforms", "video_id": "video11862", "sen_id": 211404}, {"caption": "four people play ping pong on a blue table tennis table in a room with a red floor", "video_id": "video11862", "sen_id": 211405}, {"caption": "all persons are playing table tennis game each other on a stadium", "video_id": "video11862", "sen_id": 211406}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video11862", "sen_id": 211407}, {"caption": "a group of men are playing table tennis on a blue table", "video_id": "video11862", "sen_id": 211408}, {"caption": "two teams are playing table tennis doubles in the table tennis court where audiences are clapping and cheering their favorite teams", "video_id": "video11862", "sen_id": 211409}, {"caption": "a doubles table-tennis match is taking place in a stadium", "video_id": "video11862", "sen_id": 211410}, {"caption": "all persons are playing table tennis in a stadium", "video_id": "video11862", "sen_id": 211411}, {"caption": "four boys in their jersey playing table tenice", "video_id": "video11862", "sen_id": 211412}, {"caption": "two sets of men are playing a match of tennis table in front of a crowd", "video_id": "video11862", "sen_id": 211413}, {"caption": "four ping pong tables play inside an arena together", "video_id": "video11862", "sen_id": 211414}, {"caption": "there are someone playing table tennis in a court", "video_id": "video11862", "sen_id": 211415}, {"caption": "four players are playing table tennise", "video_id": "video11862", "sen_id": 211416}, {"caption": "a two versus two pingpong match gets intense", "video_id": "video11862", "sen_id": 211417}, {"caption": "four table tennis players playing a match and hoping for win", "video_id": "video11862", "sen_id": 211418}, {"caption": "four athletes are playing table tennis in a competition", "video_id": "video11862", "sen_id": 211419}, {"caption": "a man walking through a forest giving some ideas", "video_id": "video11080", "sen_id": 211420}, {"caption": "a man in a pink shirt is walking in a forest", "video_id": "video11080", "sen_id": 211421}, {"caption": "a man is talking about eating with his friends", "video_id": "video11080", "sen_id": 211422}, {"caption": "a man criticizes his friends' times of experiencing hunger", "video_id": "video11080", "sen_id": 211423}, {"caption": "guy walking in the woods talking about eating and if it should be to early for that", "video_id": "video11080", "sen_id": 211424}, {"caption": "two guys walking and conversating about animal crackers", "video_id": "video11080", "sen_id": 211425}, {"caption": "a gentleman is talking to another guy about his poor eating habits", "video_id": "video11080", "sen_id": 211426}, {"caption": "i man with blond hair and a beard is walking and talking to his camera", "video_id": "video11080", "sen_id": 211427}, {"caption": "a man is having a conversation with his friend about eating habits", "video_id": "video11080", "sen_id": 211428}, {"caption": "a man with longer blonde hair and facial hair is wearing a pink shirt with a jacket is walking outside", "video_id": "video11080", "sen_id": 211429}, {"caption": "a man is walking around in the forest taking a selfie video of himself", "video_id": "video11080", "sen_id": 211430}, {"caption": "a man in a pink tee shirt is walking in a wooded area", "video_id": "video11080", "sen_id": 211431}, {"caption": "man with a camera chatting with friends about what time to eat", "video_id": "video11080", "sen_id": 211432}, {"caption": "a man walks along a pathway conversing about healthy food", "video_id": "video11080", "sen_id": 211433}, {"caption": "a man is talking about how someone is hungry at 3 pm and what foods are good for him", "video_id": "video11080", "sen_id": 211434}, {"caption": "a man with a short beard and long hair walks through a park", "video_id": "video11080", "sen_id": 211435}, {"caption": "bearded guy in purple tshirt talking to the selfie cam", "video_id": "video11080", "sen_id": 211436}, {"caption": "a man in a pink shirt is walking outside with friends and talking about what time they eat breakfast", "video_id": "video11080", "sen_id": 211437}, {"caption": "a group of males are hiking through the woods and discussing when they get hungry and what they eat for snacks", "video_id": "video11080", "sen_id": 211438}, {"caption": "guy with mustache and red tshirt talking in front of camera", "video_id": "video11080", "sen_id": 211439}, {"caption": "two large snakes with dark eyes and thick bodies", "video_id": "video11987", "sen_id": 211440}, {"caption": "two large brown snakes with black eyes laying next to each other", "video_id": "video11987", "sen_id": 211441}, {"caption": "there is an image of a elephant truck snake being shown along with a soundtrack of dramatic music playing", "video_id": "video11987", "sen_id": 211442}, {"caption": "two elephant truck snakes lie still side by side", "video_id": "video11987", "sen_id": 211443}, {"caption": "a very large snake lays next to a mirror on a white table top", "video_id": "video11987", "sen_id": 211444}, {"caption": "two elephant truck snakes slither side by side", "video_id": "video11987", "sen_id": 211445}, {"caption": "a description of a couple of medium size snakes", "video_id": "video11987", "sen_id": 211446}, {"caption": "elephant truck snake is the best known member of the wart snake family", "video_id": "video11987", "sen_id": 211447}, {"caption": "words are being shown next to 2 posed snakes", "video_id": "video11987", "sen_id": 211448}, {"caption": "a snake is shown laying next to a mirror which makes it look like two snakes are present", "video_id": "video11987", "sen_id": 211449}, {"caption": "two elephant truck snakes are lying", "video_id": "video11987", "sen_id": 211450}, {"caption": "there is two snakes with verity designed skin", "video_id": "video11987", "sen_id": 211451}, {"caption": "a still image of two snakes is displayed while information about them appears at the bottom of the screen", "video_id": "video11987", "sen_id": 211452}, {"caption": "a slideshow of snakes is playing with small text over the pictures", "video_id": "video11987", "sen_id": 211453}, {"caption": "a video is about the snake details", "video_id": "video11987", "sen_id": 211454}, {"caption": "some information about large snakes is being displayed", "video_id": "video11987", "sen_id": 211455}, {"caption": "two snakes that has big eyes and black and brown in color", "video_id": "video11987", "sen_id": 211456}, {"caption": "two types of snakes are lying on the ground", "video_id": "video11987", "sen_id": 211457}, {"caption": " elephant truck snake two in same looking dangerous", "video_id": "video11987", "sen_id": 211458}, {"caption": "an elephant truck snake is being shown in the video", "video_id": "video11987", "sen_id": 211459}, {"caption": "an indian woman tends to the hair of a younger woman", "video_id": "video10468", "sen_id": 211460}, {"caption": "an older woman is brushing a younger woman's hair and they are chatting", "video_id": "video10468", "sen_id": 211461}, {"caption": "an indian mother brushes the hair of one of her daughters", "video_id": "video10468", "sen_id": 211462}, {"caption": "a woman with a red dot on her forehead is brushing a girls hair", "video_id": "video10468", "sen_id": 211463}, {"caption": "a woman brushing another woman's hair in a room", "video_id": "video10468", "sen_id": 211464}, {"caption": "a woman in a blue sari is coming another woman's hair outside a house", "video_id": "video10468", "sen_id": 211465}, {"caption": "a woman is standing and brushing the hair of another woman who is seated", "video_id": "video10468", "sen_id": 211466}, {"caption": "women in blue dress brushing the hair of women in ivory dress with brown hair", "video_id": "video10468", "sen_id": 211467}, {"caption": "a woman is talking with and grooming the hair of a young girl", "video_id": "video10468", "sen_id": 211468}, {"caption": "a woman in a blue dress is brushing a girls hair whom is wearing a peach colored dress", "video_id": "video10468", "sen_id": 211469}, {"caption": "a woman who is standing combs the hair of another woman who is seated", "video_id": "video10468", "sen_id": 211470}, {"caption": "a lady is talking with another lady", "video_id": "video10468", "sen_id": 211471}, {"caption": "a lady in green dress making the hair dress for a girl sitting down", "video_id": "video10468", "sen_id": 211472}, {"caption": "an indian woman in a blue dress is brushing her daughters hair", "video_id": "video10468", "sen_id": 211473}, {"caption": "a old fashion television clip of a woman brushing her daughters hair", "video_id": "video10468", "sen_id": 211474}, {"caption": "the woman in the blue dress is combing the hair of the girl in the white dress", "video_id": "video10468", "sen_id": 211475}, {"caption": "a woman combing younger woman s hair next to a window", "video_id": "video10468", "sen_id": 211476}, {"caption": "a woman in blue with a red dot on her forehead brushing the hair of a girl sitting down", "video_id": "video10468", "sen_id": 211477}, {"caption": "a mother is doing combing to her daughter and they are discussing about it", "video_id": "video10468", "sen_id": 211478}, {"caption": "a woman is speaking to her daughter in an unknown language", "video_id": "video10468", "sen_id": 211479}, {"caption": "a bird is playing dead on a kitchen table", "video_id": "video10100", "sen_id": 211480}, {"caption": "a woman talks about how her pet bird can play dead", "video_id": "video10100", "sen_id": 211481}, {"caption": "a green parrot lays on his back on a wooden table", "video_id": "video10100", "sen_id": 211482}, {"caption": "a green and yellow bird lay lifeless on a wooden kitchen table", "video_id": "video10100", "sen_id": 211483}, {"caption": "a bright green and yellow bird lies on a wooden table dead with feet in the air", "video_id": "video10100", "sen_id": 211484}, {"caption": "a bird is playing dead on a table", "video_id": "video10100", "sen_id": 211485}, {"caption": "a man is disovering a bird is dead on a table", "video_id": "video10100", "sen_id": 211486}, {"caption": "a bug is laying in its back on a table and a voice exclaims she's dead", "video_id": "video10100", "sen_id": 211487}, {"caption": "a green and yellow bird appears dead on a wooden table", "video_id": "video10100", "sen_id": 211488}, {"caption": "short view of a possibly dead bird laying on its back", "video_id": "video10100", "sen_id": 211489}, {"caption": "there is a green sparrow on the table", "video_id": "video10100", "sen_id": 211490}, {"caption": "a parrot is kept on the table and it was found dead", "video_id": "video10100", "sen_id": 211491}, {"caption": "one parrot is died in the table and", "video_id": "video10100", "sen_id": 211492}, {"caption": "a parrot is playing dead on a wood table", "video_id": "video10100", "sen_id": 211493}, {"caption": "there is a animal on the dining table", "video_id": "video10100", "sen_id": 211494}, {"caption": "a dead reveresed bird in on the wooden table along with chairs", "video_id": "video10100", "sen_id": 211495}, {"caption": "a man comes across a bird lying on the table on it s back and legs in the air saying she s dead", "video_id": "video10100", "sen_id": 211496}, {"caption": "the green parrot is found dead on the wooden table", "video_id": "video10100", "sen_id": 211497}, {"caption": "one nice parrot is died in the table", "video_id": "video10100", "sen_id": 211498}, {"caption": "the parrot died and it lay on a table", "video_id": "video10100", "sen_id": 211499}, {"caption": "a woman stands on the stage to sing a song", "video_id": "video11429", "sen_id": 211500}, {"caption": "a woman with dark hair singing on stage", "video_id": "video11429", "sen_id": 211501}, {"caption": "a woman sings into a microphone while on stage", "video_id": "video11429", "sen_id": 211502}, {"caption": "a dark-haired woman sings a personal-sounding song in front of others", "video_id": "video11429", "sen_id": 211503}, {"caption": "a woman singing on stage on front of a crowd", "video_id": "video11429", "sen_id": 211504}, {"caption": "a young brunette woman in a pink shirt sings into a microphone", "video_id": "video11429", "sen_id": 211505}, {"caption": "there is a women singing on the stage", "video_id": "video11429", "sen_id": 211506}, {"caption": "a woman is singing a song into a microphone while a light shines", "video_id": "video11429", "sen_id": 211507}, {"caption": "a lady sings on the stage for music", "video_id": "video11429", "sen_id": 211508}, {"caption": "lana del ray singing one of her hit songs video games", "video_id": "video11429", "sen_id": 211509}, {"caption": "a young woman is holding a microphone and singing for an audience", "video_id": "video11429", "sen_id": 211510}, {"caption": "a woman gives a musical performance on stage at night", "video_id": "video11429", "sen_id": 211511}, {"caption": "a bruntette woman is singing for an audience", "video_id": "video11429", "sen_id": 211512}, {"caption": "a brown-haired woman sings into a microphone on stage", "video_id": "video11429", "sen_id": 211513}, {"caption": "the smart gir lin white shirt is singing very melodiously", "video_id": "video11429", "sen_id": 211514}, {"caption": "a person singing and dancing in a stage", "video_id": "video11429", "sen_id": 211515}, {"caption": "men and women dancing and singing song in a group", "video_id": "video11429", "sen_id": 211516}, {"caption": "a dark haired woman with a microphone and red fingernails is singing on a stage", "video_id": "video11429", "sen_id": 211517}, {"caption": "a dark haired woman in a white shirt singing a pretty song", "video_id": "video11429", "sen_id": 211518}, {"caption": "a women is singing a song in the beautifully decorated stage and she is singing a song according to the tune", "video_id": "video11429", "sen_id": 211519}, {"caption": "two kids running around a park", "video_id": "video12995", "sen_id": 211520}, {"caption": "kid tourists explore a tropical near-beach area", "video_id": "video12995", "sen_id": 211521}, {"caption": "two boys walk around a beach resort looking for bugs", "video_id": "video12995", "sen_id": 211522}, {"caption": "children are wandering through sand in a tropical yard by a cabin playing on a swing set next to a playhouse and looking up at a tree trunk surrounded by palms and other vegetation", "video_id": "video12995", "sen_id": 211523}, {"caption": "a family is having a great time on a beach full of palm trees", "video_id": "video12995", "sen_id": 211524}, {"caption": "a woman walks on the beach while kids run around the hotel and swing outside", "video_id": "video12995", "sen_id": 211525}, {"caption": "at the shore of a beach kids are looking around the plants and trees", "video_id": "video12995", "sen_id": 211526}, {"caption": "a family with young children is staying on the beach in a wooded area enjoying time well spent together", "video_id": "video12995", "sen_id": 211527}, {"caption": "kids play around a cabin in the woods", "video_id": "video12995", "sen_id": 211528}, {"caption": "bunch of kids having fun on the beach", "video_id": "video12995", "sen_id": 211529}, {"caption": "there are some children playing in front of a hut", "video_id": "video12995", "sen_id": 211530}, {"caption": "two boys are walking and talking", "video_id": "video12995", "sen_id": 211531}, {"caption": "a group of kids looking for the bug and bettle", "video_id": "video12995", "sen_id": 211532}, {"caption": "two small white boys playing near the beach and palm trees", "video_id": "video12995", "sen_id": 211533}, {"caption": "a kid out side of a house is talking", "video_id": "video12995", "sen_id": 211534}, {"caption": "a female voice explains the benefits for families with children at a vacation destination while two young caucasian children play on a swingset and then explore some of the native flora and fauna", "video_id": "video12995", "sen_id": 211535}, {"caption": "the travel documentary shows kids walking outside a rural vacation house", "video_id": "video12995", "sen_id": 211536}, {"caption": "a kids are playing in the garden and enjoying", "video_id": "video12995", "sen_id": 211537}, {"caption": "group of people are having nice time on the beach", "video_id": "video12995", "sen_id": 211538}, {"caption": "some kids are walking around a house", "video_id": "video12995", "sen_id": 211539}, {"caption": "a group of men sing and make a music video", "video_id": "video10190", "sen_id": 211540}, {"caption": "a group of people standing in the grass and riding on a bus singing", "video_id": "video10190", "sen_id": 211541}, {"caption": "a group of people in yellow shirts waving at a group of guys dancing", "video_id": "video10190", "sen_id": 211542}, {"caption": "men in yellow sing in a grassy area before riding a yellow car on the street", "video_id": "video10190", "sen_id": 211543}, {"caption": "a group of people in yellow are waving a group of people are dancing", "video_id": "video10190", "sen_id": 211544}, {"caption": "all different happy people dance and sing to music", "video_id": "video10190", "sen_id": 211545}, {"caption": "a yellow dresses of girls and boys waving hands dancing and moving in bus displaying on screen", "video_id": "video10190", "sen_id": 211546}, {"caption": "a young guys with yellow dressing are eating ice creams and three persons are singing song and going by vehicle", "video_id": "video10190", "sen_id": 211547}, {"caption": "men and women wearing yellow t-shirts are waving and dancing", "video_id": "video10190", "sen_id": 211548}, {"caption": "a group of young men in yellow clothes sing and dance", "video_id": "video10190", "sen_id": 211549}, {"caption": "two man and two girls are on the bus", "video_id": "video10190", "sen_id": 211550}, {"caption": "a three men are dancing for a song", "video_id": "video10190", "sen_id": 211551}, {"caption": "a group of two men and women in yellow dance and sing riding in an open bus", "video_id": "video10190", "sen_id": 211552}, {"caption": "a bright yellow carriage brings eager fans to a music video singer s performance", "video_id": "video10190", "sen_id": 211553}, {"caption": "a group of men are singing in a happy music video", "video_id": "video10190", "sen_id": 211554}, {"caption": "people dancing and singing then get on a bus r", "video_id": "video10190", "sen_id": 211555}, {"caption": "a group of people men and woman singing song and dancing", "video_id": "video10190", "sen_id": 211556}, {"caption": "three guys sing and dance on top of grass", "video_id": "video10190", "sen_id": 211557}, {"caption": "the three guys are enjoying with singing as well as dancing for cheer up the public", "video_id": "video10190", "sen_id": 211558}, {"caption": "some people in a yellow bus are driving around", "video_id": "video10190", "sen_id": 211559}, {"caption": "a male singer is performing on stage in front of a large audience with a group of sexy women behind him", "video_id": "video12004", "sen_id": 211560}, {"caption": "a man singing on stage with multiple back up dancers following him around", "video_id": "video12004", "sen_id": 211561}, {"caption": "ricky martin sings a spanish song while scantily clad female dancers perform behind him", "video_id": "video12004", "sen_id": 211562}, {"caption": "a man singing and dancing with a group of women", "video_id": "video12004", "sen_id": 211563}, {"caption": "ricky martin on stage singing a new song in spanish", "video_id": "video12004", "sen_id": 211564}, {"caption": "a group of dancers along with a male lead singer perform for a packed house of fans in an auditorium", "video_id": "video12004", "sen_id": 211565}, {"caption": "a singer sings and dances on stage with various backup dancers", "video_id": "video12004", "sen_id": 211566}, {"caption": "a girl in black dress is dancing with her group", "video_id": "video12004", "sen_id": 211567}, {"caption": "it was supposed to be a fashion show where the artist before starting the show performing the song and the beside him the ladies are dancing on his song", "video_id": "video12004", "sen_id": 211568}, {"caption": "a man is singing and performing on a stage with dancers", "video_id": "video12004", "sen_id": 211569}, {"caption": "a singer dances on stage with a large group of scantily clad women", "video_id": "video12004", "sen_id": 211570}, {"caption": "a band is performing on stage the male singer is singing an song while female dancers are performing on song", "video_id": "video12004", "sen_id": 211571}, {"caption": "a man in black suit singing on the stage and the girls dancing behind him", "video_id": "video12004", "sen_id": 211572}, {"caption": " in a dark jacket sing on stage with six backup dancer in front of a crowd", "video_id": "video12004", "sen_id": 211573}, {"caption": "girls dance on the stage with the boy in the centre they wear black dress", "video_id": "video12004", "sen_id": 211574}, {"caption": "a man is singing with several women backup dancers", "video_id": "video12004", "sen_id": 211575}, {"caption": "there is a man singing loudly with mike", "video_id": "video12004", "sen_id": 211576}, {"caption": "girls are dancing to the musing sung by a man on the stage before a large audience", "video_id": "video12004", "sen_id": 211577}, {"caption": "the man is singing while the women dancers are dancing with him and the audience is enjoying it", "video_id": "video12004", "sen_id": 211578}, {"caption": "dancers surround a star performing on stage", "video_id": "video12004", "sen_id": 211579}, {"caption": "some speaking in a foreign language showing how to mold clay into a bowl", "video_id": "video11187", "sen_id": 211580}, {"caption": "in a kitchen with a glass bowl and pan getting ready to cook the food in the glass bowl", "video_id": "video11187", "sen_id": 211581}, {"caption": "a ball of tan dough sits in a glass bowl which is clouded with flour grease and fingerprints", "video_id": "video11187", "sen_id": 211582}, {"caption": "a woman explaining how to prepare a meal in a foreign language", "video_id": "video11187", "sen_id": 211583}, {"caption": "a woman discusses the items needed to prepare a meal", "video_id": "video11187", "sen_id": 211584}, {"caption": "a woman explain the prep that goes into a dish", "video_id": "video11187", "sen_id": 211585}, {"caption": "a woman is working with bread dough and showing how to make something with it", "video_id": "video11187", "sen_id": 211586}, {"caption": "dough being put into a pan that is filled with oil on a stove", "video_id": "video11187", "sen_id": 211587}, {"caption": "a lady standing over a food product and mixing the food product", "video_id": "video11187", "sen_id": 211588}, {"caption": "a woman is talking about how to prepare a certain type of food", "video_id": "video11187", "sen_id": 211589}, {"caption": "a frying pan with oil in it is cooking and a hand is pointing to it", "video_id": "video11187", "sen_id": 211590}, {"caption": "a graphic with hands and a bowl with dough in it explain how best to prepare a dish with the dough", "video_id": "video11187", "sen_id": 211591}, {"caption": "a woman is talking while her hand is over a piece of dough in a bowl", "video_id": "video11187", "sen_id": 211592}, {"caption": "a clear owl that has a dough like substance in it", "video_id": "video11187", "sen_id": 211593}, {"caption": "a brown dough type substance is in a bowl", "video_id": "video11187", "sen_id": 211594}, {"caption": "a person is cooking a food on a bowel", "video_id": "video11187", "sen_id": 211595}, {"caption": "in a container oil poured on it", "video_id": "video11187", "sen_id": 211596}, {"caption": "a kneaded brown flour is on a glass bowl and there is a brown plate", "video_id": "video11187", "sen_id": 211597}, {"caption": "a bowl dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11187", "sen_id": 211598}, {"caption": "a woman cooks a dough on a nonstick pan", "video_id": "video11187", "sen_id": 211599}, {"caption": "a man demonstrates cracking eggs into a pan then stirs and adds shrimp and vegetables", "video_id": "video11748", "sen_id": 211600}, {"caption": "a person cooking a egg variety in a oil on the pan", "video_id": "video11748", "sen_id": 211601}, {"caption": "the man in the kitchen is preparing a shrimp", "video_id": "video11748", "sen_id": 211602}, {"caption": "in the kitchen the chef is making the best egg item in simply method", "video_id": "video11748", "sen_id": 211603}, {"caption": "a man is breaking a eggs in the cooking pan", "video_id": "video11748", "sen_id": 211604}, {"caption": "a guy in a kitchen cooking a dish in a small black wok", "video_id": "video11748", "sen_id": 211605}, {"caption": "in the kitchen a man making a egg dish", "video_id": "video11748", "sen_id": 211606}, {"caption": "a man is demonstrating how to cook eggs in a pan", "video_id": "video11748", "sen_id": 211607}, {"caption": "a person with a male voice explains and demonstrates how to make a recipe using two eggs and tomato", "video_id": "video11748", "sen_id": 211608}, {"caption": "a man shows how to cook delicious eggs in a pan", "video_id": "video11748", "sen_id": 211609}, {"caption": "eggs are broken and put into frying pan and then shrimps and cut onions are also added", "video_id": "video11748", "sen_id": 211610}, {"caption": "the person cooks the eggs in the big wok", "video_id": "video11748", "sen_id": 211611}, {"caption": "someone is cooking eggs and shrimp and vegetables in a pan on the stove", "video_id": "video11748", "sen_id": 211612}, {"caption": "a man prepares two fried eggs and vegetables in a frying pan", "video_id": "video11748", "sen_id": 211613}, {"caption": "a man in a black shirt is giving instructions on making eggs with various items in them", "video_id": "video11748", "sen_id": 211614}, {"caption": "a man cracks two eggs into the pan and adds some shrimps and some vegetables", "video_id": "video11748", "sen_id": 211615}, {"caption": "a man is frying and stirring eggs and other food into a skillet", "video_id": "video11748", "sen_id": 211616}, {"caption": "a man frying some vegetable in pan for preparation of dish", "video_id": "video11748", "sen_id": 211617}, {"caption": "a man is cooking eggs in a wok on a stove", "video_id": "video11748", "sen_id": 211618}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11748", "sen_id": 211619}, {"caption": "there are different clips of people standing and sitting next to very large stacks of money", "video_id": "video10661", "sen_id": 211620}, {"caption": "scenes from breaking bad being displayed on someones page", "video_id": "video10661", "sen_id": 211621}, {"caption": "pictures from the great show breaking bad", "video_id": "video10661", "sen_id": 211622}, {"caption": "a man and a woman look at a huge stack of cash on the floor in front of them", "video_id": "video10661", "sen_id": 211623}, {"caption": "there is a man wearing a green shirt holding a gun a man and woman are in a room standing in front of a pile of money a man wearing a yellow outfit is sitting in a chair by stacks of something", "video_id": "video10661", "sen_id": 211624}, {"caption": "a man wearing a green shirt and underwear holds a handgun at his side", "video_id": "video10661", "sen_id": 211625}, {"caption": "scenes from the tv drama breaking bad are shown featuring some of the characters and piles of money", "video_id": "video10661", "sen_id": 211626}, {"caption": "a man in blue shirt and black pant is posing with a women in blue coat", "video_id": "video10661", "sen_id": 211627}, {"caption": "a blue and yellow picture is shown on screen an on it subscribe is written", "video_id": "video10661", "sen_id": 211628}, {"caption": "some people are standing and sitting still without moving", "video_id": "video10661", "sen_id": 211629}, {"caption": "a posters about the some movie and asks to subscribe", "video_id": "video10661", "sen_id": 211630}, {"caption": "two young people standing in front of some boxes and a man with yellow colour dress sitting on the chair", "video_id": "video10661", "sen_id": 211631}, {"caption": "its a still from a english movie looking good", "video_id": "video10661", "sen_id": 211632}, {"caption": "in a hollywood movie one man had lot of money", "video_id": "video10661", "sen_id": 211633}, {"caption": "a guy with the gun standing and other two persons are watching bundles of dollars placed in a rack", "video_id": "video10661", "sen_id": 211634}, {"caption": "a blue dress boy and old man in blue dress wearing standing and yellow dress sitting man displaying on screen", "video_id": "video10661", "sen_id": 211635}, {"caption": "there is a men in green shirt who is having a gun in his hand", "video_id": "video10661", "sen_id": 211636}, {"caption": "in a movie man with many cash thanks watching subscribe yo", "video_id": "video10661", "sen_id": 211637}, {"caption": "several images from the show breaking bad set to instrumental hip hop", "video_id": "video10661", "sen_id": 211638}, {"caption": "a girl in blue dress and old man in blue dress standing and yellow dress man sitting on screen", "video_id": "video10661", "sen_id": 211639}, {"caption": "a tv show host is describing the next segment of the show called honest commercials", "video_id": "video12642", "sen_id": 211640}, {"caption": "a man is standing in a shower rubbing a bottle of herbal essences shampoo against his face then an asian man appears talking and pointing right before a pop up of honest soda commercials", "video_id": "video12642", "sen_id": 211641}, {"caption": "an asian man discussing how commercials are never honest", "video_id": "video12642", "sen_id": 211642}, {"caption": "a young man in a tee shirt complains about commercials and introduces a segment about them", "video_id": "video12642", "sen_id": 211643}, {"caption": "a man says that he wishes commercial were more honest", "video_id": "video12642", "sen_id": 211644}, {"caption": "a youtuber talking in his living room followed by a transition stating honest soda commercials", "video_id": "video12642", "sen_id": 211645}, {"caption": "people are talking about colorful shampoos and sodas", "video_id": "video12642", "sen_id": 211646}, {"caption": "a boy is talking about how commercials aren't honest", "video_id": "video12642", "sen_id": 211647}, {"caption": "a young asian man talks about the truth and falsehoods in modern commercials", "video_id": "video12642", "sen_id": 211648}, {"caption": "a young asian man talks about the lack of truth in commercials", "video_id": "video12642", "sen_id": 211649}, {"caption": "a man in a shower holds a pink bottle before a man in a room speaks about commercials", "video_id": "video12642", "sen_id": 211650}, {"caption": "a man in a gray shirt talks about soda commercials", "video_id": "video12642", "sen_id": 211651}, {"caption": "a man with long dark hair holds a pink bottle then a man in a grey tee shirt talks and smiles while gesturing", "video_id": "video12642", "sen_id": 211652}, {"caption": "a young man with black hair wears a gray tee shirt covered with four letters of the alphabet and two black unicorns while standing in a bedroom with a plant painting and lamp", "video_id": "video12642", "sen_id": 211653}, {"caption": "a guy discusses older weird commercials and how dishonest they are", "video_id": "video12642", "sen_id": 211654}, {"caption": "a man in a grey shirt discussing honest tv commercials", "video_id": "video12642", "sen_id": 211655}, {"caption": "a young male hosting an honest commercial show for comedy", "video_id": "video12642", "sen_id": 211656}, {"caption": "a young man does a comedy skit about truth in commercials", "video_id": "video12642", "sen_id": 211657}, {"caption": "a boy in a gray tshirt is talking about how commericials are not honest", "video_id": "video12642", "sen_id": 211658}, {"caption": "a man of asian ethnicity is talking to the camera", "video_id": "video12642", "sen_id": 211659}, {"caption": "two different men are surfing through pretty big waves", "video_id": "video10733", "sen_id": 211660}, {"caption": "people are surfing in the ocean underneath some waves", "video_id": "video10733", "sen_id": 211661}, {"caption": "a clip of a guy surfing using a go pro", "video_id": "video10733", "sen_id": 211662}, {"caption": "two different surfers navigate their ways along ocean waves", "video_id": "video10733", "sen_id": 211663}, {"caption": "a blonde man surfing a wave and a dark haired man surfing a barrel", "video_id": "video10733", "sen_id": 211664}, {"caption": "a young man surfs his way out of a long pipeline in a wave", "video_id": "video10733", "sen_id": 211665}, {"caption": "surfers enjoy riding their surfboards smoothly underneath a giant wave", "video_id": "video10733", "sen_id": 211666}, {"caption": "a shirtless young man with blonde hair surfing", "video_id": "video10733", "sen_id": 211667}, {"caption": "two different men ride waves on their surfboards", "video_id": "video10733", "sen_id": 211668}, {"caption": "two men surf underneath the wave as it is coming down", "video_id": "video10733", "sen_id": 211669}, {"caption": "a man on a surf board surfing a wave that is coming close to shore", "video_id": "video10733", "sen_id": 211670}, {"caption": "two men surfs through a wave tunnel in the ocean", "video_id": "video10733", "sen_id": 211671}, {"caption": "a man doing skating in the sea waves", "video_id": "video10733", "sen_id": 211672}, {"caption": "some persons are playing on surfplate in the sea water", "video_id": "video10733", "sen_id": 211673}, {"caption": "handsome blonde guy surfing down the waves in a ocean", "video_id": "video10733", "sen_id": 211674}, {"caption": "guy surfing in high ocean waves and screaming in joy", "video_id": "video10733", "sen_id": 211675}, {"caption": "men riding inside cresting waves while on surf boards on a sunny day", "video_id": "video10733", "sen_id": 211676}, {"caption": "men are surfing through wave tunnels in the ocean", "video_id": "video10733", "sen_id": 211677}, {"caption": "first person camera view of a number of men surfing large waves", "video_id": "video10733", "sen_id": 211678}, {"caption": "two men surf through clear blue and green waves", "video_id": "video10733", "sen_id": 211679}, {"caption": "a person is laying down in a tube", "video_id": "video11922", "sen_id": 211680}, {"caption": "a video that shows a nasa advertisement where they pay you to not do anything", "video_id": "video11922", "sen_id": 211681}, {"caption": "the voice of a man is talking about threlationship between the body and our bank accounts", "video_id": "video11922", "sen_id": 211682}, {"caption": "photos are displayed while a voice over provides information about space travel", "video_id": "video11922", "sen_id": 211683}, {"caption": "a man discusses a research project related to sleep in space", "video_id": "video11922", "sen_id": 211684}, {"caption": "a man is talking about a test that will be good for your body", "video_id": "video11922", "sen_id": 211685}, {"caption": "the google site has sound and is talking about a test for nasa while showing some scientific space pictures", "video_id": "video11922", "sen_id": 211686}, {"caption": "a man is scrolling down a website and talking about the online article he s looking at", "video_id": "video11922", "sen_id": 211687}, {"caption": "a scientist talks about sleeping at different angles and how that effects your body", "video_id": "video11922", "sen_id": 211688}, {"caption": "a person is showing website in the computer", "video_id": "video11922", "sen_id": 211689}, {"caption": "a person is explaining about a topic on internet", "video_id": "video11922", "sen_id": 211690}, {"caption": "a man giving details on a test where your head is at a sixty degree angle for seventy days in a row", "video_id": "video11922", "sen_id": 211691}, {"caption": "work for nasa clinical experiment", "video_id": "video11922", "sen_id": 211692}, {"caption": "a boy lying on bed suffering injury still picture and woman seeing in microsecope still picture displaying on screen", "video_id": "video11922", "sen_id": 211693}, {"caption": "a web site is displaying various things", "video_id": "video11922", "sen_id": 211694}, {"caption": "information displayed on a computer screen", "video_id": "video11922", "sen_id": 211695}, {"caption": "showing the men at the hospital and medical marketing in the starategy in the lab", "video_id": "video11922", "sen_id": 211696}, {"caption": "a recording of a desktop computer screen is shown", "video_id": "video11922", "sen_id": 211697}, {"caption": "a patient sleeping and explaning about body about science seeing under microscope inside laboratory in blue dress", "video_id": "video11922", "sen_id": 211698}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video11922", "sen_id": 211699}, {"caption": "a typically biotechnology presentation meant for learning", "video_id": "video10179", "sen_id": 211700}, {"caption": "a female voice narrates photos of the products of genetic research", "video_id": "video10179", "sen_id": 211701}, {"caption": "there is a powerpoint showing dna results and comparisons", "video_id": "video10179", "sen_id": 211702}, {"caption": "woman speaks about biotechnology and gene manipulations in criminology and health", "video_id": "video10179", "sen_id": 211703}, {"caption": "a biotechnology presenation is shown here in this slide", "video_id": "video10179", "sen_id": 211704}, {"caption": "the human figure is composed of the genetic double helix to promote dna evidence for rapes better medicines improved food and future technical biology", "video_id": "video10179", "sen_id": 211705}, {"caption": "a powerpoint explaining the uses of the biotechnology field including careers and accomplishments of those in the field", "video_id": "video10179", "sen_id": 211706}, {"caption": "a woman is describing some type of medication", "video_id": "video10179", "sen_id": 211707}, {"caption": "a woman is talking about bio technology and what it can be used for", "video_id": "video10179", "sen_id": 211708}, {"caption": "a scientist talks about how genomic testing is making a brave new world", "video_id": "video10179", "sen_id": 211709}, {"caption": "a female talking about gense and things of that sort", "video_id": "video10179", "sen_id": 211710}, {"caption": "a female narrator discusses using dna to convict criminals and make insulin while a powerpoint presentation shows dna a pig and other photographs", "video_id": "video10179", "sen_id": 211711}, {"caption": "a men in white coat doing science practicles", "video_id": "video10179", "sen_id": 211712}, {"caption": "a screen displaying a brave new world on computer screen", "video_id": "video10179", "sen_id": 211713}, {"caption": "a woman lectures about the subjects surrounding biotechnology and their uses", "video_id": "video10179", "sen_id": 211714}, {"caption": "a woman is educating how we are able to manipulate genes that we can use to help the world", "video_id": "video10179", "sen_id": 211715}, {"caption": "its about the brave new world", "video_id": "video10179", "sen_id": 211716}, {"caption": "a woman talking on biotechnology on the brave new world", "video_id": "video10179", "sen_id": 211717}, {"caption": "a lady gives a powerpoint presentation on manipulating genes with biotechnology", "video_id": "video10179", "sen_id": 211718}, {"caption": "a dna strand spins while a slide show explains its parts", "video_id": "video10179", "sen_id": 211719}, {"caption": "a man in hong kong talking about a harbor while boats go by in the water", "video_id": "video10999", "sen_id": 211720}, {"caption": "man talks about hong kong and his favorite spots", "video_id": "video10999", "sen_id": 211721}, {"caption": "a young man in a tee shirt stands by hong kong harbor and talks about it", "video_id": "video10999", "sen_id": 211722}, {"caption": "a man talks about hong kong while standing next to a river", "video_id": "video10999", "sen_id": 211723}, {"caption": "a young man is by the water describing the harbor that divides hong kong", "video_id": "video10999", "sen_id": 211724}, {"caption": "a bbc documentary about the city of hong kong", "video_id": "video10999", "sen_id": 211725}, {"caption": "a tour of hong kong and it's waters", "video_id": "video10999", "sen_id": 211726}, {"caption": "a man introducing us to hong kong points out the harbor", "video_id": "video10999", "sen_id": 211727}, {"caption": "a young man wearing a white t-shirt talks about a city he is standing accross from", "video_id": "video10999", "sen_id": 211728}, {"caption": "an asian man is talking about the city as a boat passes behind him", "video_id": "video10999", "sen_id": 211729}, {"caption": "a man in a white shirt giving different facts about hong kong", "video_id": "video10999", "sen_id": 211730}, {"caption": "an oriental man is talking about hong kong and different places in hong kong", "video_id": "video10999", "sen_id": 211731}, {"caption": "an asian guy shows off the water at hong kong near tall buildings", "video_id": "video10999", "sen_id": 211732}, {"caption": "a guy talks about a city that he is standing in front of", "video_id": "video10999", "sen_id": 211733}, {"caption": "a guy is talking about a city", "video_id": "video10999", "sen_id": 211734}, {"caption": "a man is singing and near to sea water", "video_id": "video10999", "sen_id": 211735}, {"caption": "guy welcoming to hongkong and showing the monuments next to him", "video_id": "video10999", "sen_id": 211736}, {"caption": "someone is sitting on a boat and talking about the hongkong", "video_id": "video10999", "sen_id": 211737}, {"caption": "a man welcomes viewers to hong kong while sitting on a wall at victory harbor where a large body of water separates two parts of the city", "video_id": "video10999", "sen_id": 211738}, {"caption": "a person in white tshirt talking to camera", "video_id": "video10999", "sen_id": 211739}, {"caption": "a woman in a white dress walks down the hall and into the room of a man suffering from flashbacks", "video_id": "video11921", "sen_id": 211740}, {"caption": "short movie scenes of a man while background music plays", "video_id": "video11921", "sen_id": 211741}, {"caption": "a woman in a white dress walks down the hall and into the room of a man suffering from flashbacks", "video_id": "video11921", "sen_id": 211742}, {"caption": "characters in a show are being shown for a preview", "video_id": "video11921", "sen_id": 211743}, {"caption": "an early georgian era woman looks at a man washed up on a beach an edwardian nurse checks in on a violently ill man a modern day man in blue flannel punches a tree and sobs and a flapper touches a mirror", "video_id": "video11921", "sen_id": 211744}, {"caption": "a man is lying in bed naked and sobbing as a nurse in white walks down a hallway suddenly the screen flashes to a fully dressed man banging his hands against a tree in a forest", "video_id": "video11921", "sen_id": 211745}, {"caption": "a man and a woman set on the side of a hotel bed", "video_id": "video11921", "sen_id": 211746}, {"caption": "a man lying on the beach the man from the knick lying on a bed a man in a forest and a man and woman in a bedroom", "video_id": "video11921", "sen_id": 211747}, {"caption": "trailer for a movie is shown where a man is laying in bed then another image of this man is showing him hitting his head against a tree", "video_id": "video11921", "sen_id": 211748}, {"caption": "different videos of many people doing separate things", "video_id": "video11921", "sen_id": 211749}, {"caption": "a woman a and a man that looks injured a nurse walks into the room of a man in bed another man crying and a couple touching", "video_id": "video11921", "sen_id": 211750}, {"caption": "a man is hurt and very sick and seems to be angry about something too", "video_id": "video11921", "sen_id": 211751}, {"caption": "there is a man that seems very distraught it appears that he is longing for the woman in the video", "video_id": "video11921", "sen_id": 211752}, {"caption": "a group of people are seen going through a series of emotional moments", "video_id": "video11921", "sen_id": 211753}, {"caption": "a nurse walks slowly down a hallway towards a patient's room", "video_id": "video11921", "sen_id": 211754}, {"caption": "injured man and couple involved in making love", "video_id": "video11921", "sen_id": 211755}, {"caption": "a men fight in a song for his love", "video_id": "video11921", "sen_id": 211756}, {"caption": "a person is singing in a sad mood", "video_id": "video11921", "sen_id": 211757}, {"caption": "a scene of a film is playing on", "video_id": "video11921", "sen_id": 211758}, {"caption": "sexy girl walking in the room where bearded guy lies on bed", "video_id": "video11921", "sen_id": 211759}, {"caption": "a male news reporter is giving a short synopsis of the news for students to get caught up on world events", "video_id": "video12768", "sen_id": 211760}, {"caption": "the introduction of the cnn student news show", "video_id": "video12768", "sen_id": 211761}, {"caption": "a clip from cnn student news about the papal trip to cuba video about the pope's visit to cuba from cnn student news", "video_id": "video12768", "sen_id": 211762}, {"caption": "a news anchor for students informs his audience that pope francis traveled to cuba", "video_id": "video12768", "sen_id": 211763}, {"caption": "a man gives a report on a news show designed for students", "video_id": "video12768", "sen_id": 211764}, {"caption": "a male news reporter is reporting on the pope", "video_id": "video12768", "sen_id": 211765}, {"caption": "a man wearing a tie and blue shirt is giving the news", "video_id": "video12768", "sen_id": 211766}, {"caption": "a news anchor is talking about the trip that pope francis took to cuba over the weekend", "video_id": "video12768", "sen_id": 211767}, {"caption": "large crowds of people turned out for the pope's visit", "video_id": "video12768", "sen_id": 211768}, {"caption": "la tour eiffel taj mahal and sphinx followed by a man speaking and then the pope slowly riding by in front of a large crowd", "video_id": "video12768", "sen_id": 211769}, {"caption": "carl azuz is on cnn talking about different events that are available to students", "video_id": "video12768", "sen_id": 211770}, {"caption": "a man is reading about a student news in the television", "video_id": "video12768", "sen_id": 211771}, {"caption": "a tv anchor is talking about various issues happened during the week", "video_id": "video12768", "sen_id": 211772}, {"caption": "a news man is talking about pope francis s worldly travels", "video_id": "video12768", "sen_id": 211773}, {"caption": "cnn news anchor is talking about student news and is talking about the pope traveling the world", "video_id": "video12768", "sen_id": 211774}, {"caption": "a man is speaking about various current events ongoing in the world", "video_id": "video12768", "sen_id": 211775}, {"caption": "formally dressed guy delivering news on current events", "video_id": "video12768", "sen_id": 211776}, {"caption": "a nab wearing a shirt and tie talks about current events", "video_id": "video12768", "sen_id": 211777}, {"caption": "man in blue shirt is talking about the countries in the world", "video_id": "video12768", "sen_id": 211778}, {"caption": "the pope is driving around in a crowd", "video_id": "video12768", "sen_id": 211779}, {"caption": "a retro video game is being start up", "video_id": "video11995", "sen_id": 211780}, {"caption": "a game with a little girl as a character is being played", "video_id": "video11995", "sen_id": 211781}, {"caption": "game is shown on screen with a blond cartoon character inside a virtual world while music plays in the background", "video_id": "video11995", "sen_id": 211782}, {"caption": "the beginning of a low tech 8 bit video game is played", "video_id": "video11995", "sen_id": 211783}, {"caption": "a pixel based female character progresses through a pixel based level in a video game", "video_id": "video11995", "sen_id": 211784}, {"caption": "a animated movie showing a video game in play", "video_id": "video11995", "sen_id": 211785}, {"caption": "there ia boy running fast and jumping into the water", "video_id": "video11995", "sen_id": 211786}, {"caption": "a cartoon lady walks in a land and jumps it looks like a mario video game", "video_id": "video11995", "sen_id": 211787}, {"caption": "it s a animation scene showing one quote i dream in pixels sometimes in red lettersanimation character in red shirt and yellow cap running jumping on road", "video_id": "video11995", "sen_id": 211788}, {"caption": "a pixelated girl video game character is walking through flowers and jumps over the water to a green blob", "video_id": "video11995", "sen_id": 211789}, {"caption": "it was a game starting then a boy appears and jumps on his way later he gets destroy by jumping in to the dig", "video_id": "video11995", "sen_id": 211790}, {"caption": "a pixel animation of a little blonde haired character running through a video game", "video_id": "video11995", "sen_id": 211791}, {"caption": "a video game with a girl walking and hopping over flowers", "video_id": "video11995", "sen_id": 211792}, {"caption": "a person playing old version flash games", "video_id": "video11995", "sen_id": 211793}, {"caption": "someone is playing an old style of video game", "video_id": "video11995", "sen_id": 211794}, {"caption": "a game is showed playing on a screen", "video_id": "video11995", "sen_id": 211795}, {"caption": "a side scroller video game is being played", "video_id": "video11995", "sen_id": 211796}, {"caption": "a game of kids cartoon displaying on screen", "video_id": "video11995", "sen_id": 211797}, {"caption": "a player playing old version flash video game", "video_id": "video11995", "sen_id": 211798}, {"caption": "a computer video game is running in which a lady is wearing cap walking", "video_id": "video11995", "sen_id": 211799}, {"caption": "this is a music video from a boy band showing them walking the beach of an ocean", "video_id": "video10429", "sen_id": 211800}, {"caption": "a group of guys singing a song on the beach", "video_id": "video10429", "sen_id": 211801}, {"caption": "a man and woman ride horses on the beach while five other men sing walking barefoot through the waves", "video_id": "video10429", "sen_id": 211802}, {"caption": "a man walking on the beach and singing with other men", "video_id": "video10429", "sen_id": 211803}, {"caption": "a band is shown performing walking and riding horses on a beach", "video_id": "video10429", "sen_id": 211804}, {"caption": "men are walking and singing on a beach letting the waves hit their feet", "video_id": "video10429", "sen_id": 211805}, {"caption": "a boy band performs in a beach while one of the boys rides a horse", "video_id": "video10429", "sen_id": 211806}, {"caption": "a music video showing various male artist singing on the shores of sea and person riding a horse", "video_id": "video10429", "sen_id": 211807}, {"caption": "a music video of a five member boy band walking on a beach while horses run in the ocean behind them", "video_id": "video10429", "sen_id": 211808}, {"caption": "the two peoples are rding with horse in the seashore and some ones are sing the song", "video_id": "video10429", "sen_id": 211809}, {"caption": "a group of men are singing while walking on the beach", "video_id": "video10429", "sen_id": 211810}, {"caption": "man with green sleeveless t-shirt is singing happily with other people around", "video_id": "video10429", "sen_id": 211811}, {"caption": "a music video showing a 5 member boy band walking on the beach while horses run through the water", "video_id": "video10429", "sen_id": 211812}, {"caption": "a men riding a horse and 4 others singing a song", "video_id": "video10429", "sen_id": 211813}, {"caption": "a boy band is singing a song on the beach while they walk down the beach", "video_id": "video10429", "sen_id": 211814}, {"caption": "there is a man singing on the shore with friends", "video_id": "video10429", "sen_id": 211815}, {"caption": "singers singing while walking on the beach", "video_id": "video10429", "sen_id": 211816}, {"caption": "two people are riding horseback on the beach and a band is singing", "video_id": "video10429", "sen_id": 211817}, {"caption": "a group of people enjoying music by singing on their own in a beach", "video_id": "video10429", "sen_id": 211818}, {"caption": "a man is singing while others play in the water", "video_id": "video10429", "sen_id": 211819}, {"caption": "multicolored goldfish swimming in a tank and eating broccoli", "video_id": "video11722", "sen_id": 211820}, {"caption": "goldfish swim in a fishtank and eat some broccoli together", "video_id": "video11722", "sen_id": 211821}, {"caption": "goldfish swim in an aquarium accompanied by pop music and interesting facts about goldfish", "video_id": "video11722", "sen_id": 211822}, {"caption": "fish swim in an aquarium while eating plants", "video_id": "video11722", "sen_id": 211823}, {"caption": "three orange black and white koi fish swim and eat while moving around an enclosed tropical aquarium", "video_id": "video11722", "sen_id": 211824}, {"caption": "there are gold fishes swiming freely and eating a broccoli-like plant in a crystal clean aquarium", "video_id": "video11722", "sen_id": 211825}, {"caption": "goldfish are swimming around in a tank with vegetation", "video_id": "video11722", "sen_id": 211826}, {"caption": "small goldfishes are swimming in a aquarium with plants", "video_id": "video11722", "sen_id": 211827}, {"caption": "goldfish are swimming around in a fish bowl and there are written facts about the life of a goldfish", "video_id": "video11722", "sen_id": 211828}, {"caption": "the orange fish are eating the food in aquarium", "video_id": "video11722", "sen_id": 211829}, {"caption": "fish are swimming around in a tank with brocilli", "video_id": "video11722", "sen_id": 211830}, {"caption": "there are two fish floating through the water", "video_id": "video11722", "sen_id": 211831}, {"caption": "text gives tips and facts about goldfish while a clip of swimming fish plays to music", "video_id": "video11722", "sen_id": 211832}, {"caption": "beautiful orange and white and red fish are swimming in a fish tank", "video_id": "video11722", "sen_id": 211833}, {"caption": "brightly colored goldfish are swimming around a tank nibbling on broccoli", "video_id": "video11722", "sen_id": 211834}, {"caption": "some gold fish are swimming around in the water", "video_id": "video11722", "sen_id": 211835}, {"caption": "fish is going from left and right in the water", "video_id": "video11722", "sen_id": 211836}, {"caption": "golden fish have been hept as pets for over 2000 grard from china", "video_id": "video11722", "sen_id": 211837}, {"caption": "there are different goldfish swinning in a tank", "video_id": "video11722", "sen_id": 211838}, {"caption": "brightly colored goldfish are swimming around in a fish tank nibbling on pieces of broccoli and fish food", "video_id": "video11722", "sen_id": 211839}, {"caption": "commentary about cartoon drawings and story", "video_id": "video12856", "sen_id": 211840}, {"caption": "someone describes animation process in old disney cartoons", "video_id": "video12856", "sen_id": 211841}, {"caption": "a woman narrates a montage of drawing for the cartoon mickie and the beanstalk", "video_id": "video12856", "sen_id": 211842}, {"caption": "minnie and mickey are interacting with a cow", "video_id": "video12856", "sen_id": 211843}, {"caption": "cartoon clips of mickey mouse are played while someone discusses the cartoon", "video_id": "video12856", "sen_id": 211844}, {"caption": "old drawings of mickey and minnie mouse are shown in the fairy tale of jack and the beanstock", "video_id": "video12856", "sen_id": 211845}, {"caption": "there is a mouse playing on the ground", "video_id": "video12856", "sen_id": 211846}, {"caption": "an old mickey mouse animation with someone narrating what they like about it", "video_id": "video12856", "sen_id": 211847}, {"caption": "an entertainment reporter talks about the variations in a famous movie", "video_id": "video12856", "sen_id": 211848}, {"caption": "cartoon drawings of older versions of mickey and minnie mouse", "video_id": "video12856", "sen_id": 211849}, {"caption": "a man is commenting about old disney animation", "video_id": "video12856", "sen_id": 211850}, {"caption": "a woman is speaking about cartoon characters while they are shown in black and white", "video_id": "video12856", "sen_id": 211851}, {"caption": "drawing of mickey mouse and also including a picture of a cow", "video_id": "video12856", "sen_id": 211852}, {"caption": "a mickey mouse talking to a minnie queen then rides a horse and a cow smiles", "video_id": "video12856", "sen_id": 211853}, {"caption": "cartoon images of mickey and minnie mouse in various scenarios such as jack and the beanstalk", "video_id": "video12856", "sen_id": 211854}, {"caption": "a person speaking of a disney movie while showing animated and drawn features of the film", "video_id": "video12856", "sen_id": 211855}, {"caption": "a man reviewing an old version of jack and the beanstalk", "video_id": "video12856", "sen_id": 211856}, {"caption": "an entertainment reporter talks about some different versions of a disney story", "video_id": "video12856", "sen_id": 211857}, {"caption": "illustrations of mickey mouse as the lead in jack in the beanstalk", "video_id": "video12856", "sen_id": 211858}, {"caption": "mickey mouse clip with him riding the cow from jack and the bean stock", "video_id": "video12856", "sen_id": 211859}, {"caption": "farm animals are filmed playing with each other", "video_id": "video11008", "sen_id": 211860}, {"caption": "animals are walking around an enclosed area outside", "video_id": "video11008", "sen_id": 211861}, {"caption": "three alpacas in solid white brown and tan circle each other by wooden fencing when the brown alpaca leaps and chases the black alpaca away toward some trees", "video_id": "video11008", "sen_id": 211862}, {"caption": "a black white and brown animals that look like camel's are playing", "video_id": "video11008", "sen_id": 211863}, {"caption": "animals walk around in an enclosed area outside", "video_id": "video11008", "sen_id": 211864}, {"caption": "farm animals walk around on an overcast day", "video_id": "video11008", "sen_id": 211865}, {"caption": "three llamas in white black and brown are in the outfield and finally the brown one is chasing off the black one", "video_id": "video11008", "sen_id": 211866}, {"caption": "a number of llamas are outside enclosed in a fenced area", "video_id": "video11008", "sen_id": 211867}, {"caption": "a blackbrown and white llama are walking on grass and mud", "video_id": "video11008", "sen_id": 211868}, {"caption": "one of three llamas on a farm starts to exhibit aggressive dominant behavior", "video_id": "video11008", "sen_id": 211869}, {"caption": "a brownwhite and black llama are walking around on the grass and mud", "video_id": "video11008", "sen_id": 211870}, {"caption": "there are some animals walking in a farm", "video_id": "video11008", "sen_id": 211871}, {"caption": "a horse was playing with a black horse and a white horse joins the team", "video_id": "video11008", "sen_id": 211872}, {"caption": " one brown and one black llama in a coral fighting", "video_id": "video11008", "sen_id": 211873}, {"caption": "three different colored llamas are butting into each other pushing and chasing in the yard of a barn", "video_id": "video11008", "sen_id": 211874}, {"caption": " a black a brown and a white are playing and chasing each other in a penned in area", "video_id": "video11008", "sen_id": 211875}, {"caption": " one white and one brown play in a fenced yard together", "video_id": "video11008", "sen_id": 211876}, {"caption": "farm animals play around", "video_id": "video11008", "sen_id": 211877}, {"caption": "three different colored lamas are playing in a field", "video_id": "video11008", "sen_id": 211878}, {"caption": "there is a group of animals interacting with each other in a field", "video_id": "video11008", "sen_id": 211879}, {"caption": "a girl carrying a backpack walks away from her mother who is lighting up a cigarette on the steps of a building", "video_id": "video11955", "sen_id": 211880}, {"caption": "a girl talking about her mother smoking and looks hella sad", "video_id": "video11955", "sen_id": 211881}, {"caption": "a little girl talks about her mom and her smoking habit as she sits behind her on some steps", "video_id": "video11955", "sen_id": 211882}, {"caption": "two girls sit on the gray steps of a gray house the girl in the purple sweater speaks to the camera", "video_id": "video11955", "sen_id": 211883}, {"caption": "a girls walks away from her mother who is sitting on the stairs and smoking", "video_id": "video11955", "sen_id": 211884}, {"caption": "a little girl walks down the steps and starts talking about how her mom started smoking when the little girl was six years old", "video_id": "video11955", "sen_id": 211885}, {"caption": "a girl in a purple shirt starts smoking with her mom at six years old", "video_id": "video11955", "sen_id": 211886}, {"caption": "a giril with purple shirt on with a backpack and her mom sitting and sommkeing", "video_id": "video11955", "sen_id": 211887}, {"caption": "children are shown in a bad area talking about smoking parents", "video_id": "video11955", "sen_id": 211888}, {"caption": "a little girl in a purple shirt talks about her mom who smokes", "video_id": "video11955", "sen_id": 211889}, {"caption": "a small girl in purple dress explaining about the cigarette smoking by a lady behind her", "video_id": "video11955", "sen_id": 211890}, {"caption": "a young girl in purple tells when her mother started smoking while a person in black lights up a cigarette on the stairs", "video_id": "video11955", "sen_id": 211891}, {"caption": "a young girl carries a bookbag and talks about her mother s smoking habit", "video_id": "video11955", "sen_id": 211892}, {"caption": "a little girl in a purple shirt is talking about her mothers smoking", "video_id": "video11955", "sen_id": 211893}, {"caption": "a little girl in blue dress speaking and girl sitting", "video_id": "video11955", "sen_id": 211894}, {"caption": "there is a violet kid talking in front of her house", "video_id": "video11955", "sen_id": 211895}, {"caption": " with shoulder-length hair carrying a pink backpack is seated below her mother on a cement staircase and moves away when her mother reaches for a cigarette", "video_id": "video11955", "sen_id": 211896}, {"caption": "22 million children in poverty line attacked in the new innovation of life", "video_id": "video11955", "sen_id": 211897}, {"caption": "a girl in a purple shirt saying that her mom started smoking when she was 6 years old", "video_id": "video11955", "sen_id": 211898}, {"caption": "a girl in a purple shirt is talking about something", "video_id": "video11955", "sen_id": 211899}, {"caption": "a commercial explaining the new technology that is being developed", "video_id": "video12630", "sen_id": 211900}, {"caption": "a narrator discusses physical items that engineers can invent out of stuff for various industrial purposes a slideshow flashes through images illustrating examples of the various items possible", "video_id": "video12630", "sen_id": 211901}, {"caption": "a group of materials are being shown to show that engineers help make everything", "video_id": "video12630", "sen_id": 211902}, {"caption": "a woman describes the limitless possibilities of the products that engineers can invent", "video_id": "video12630", "sen_id": 211903}, {"caption": "a group of men wearing sunglasses are staring at a computer screen", "video_id": "video12630", "sen_id": 211904}, {"caption": "many pictures flip one-by-one as an unseen speaker explains what is being discussed", "video_id": "video12630", "sen_id": 211905}, {"caption": "a narrator describes the types of materials engineers could make and their applications", "video_id": "video12630", "sen_id": 211906}, {"caption": "a woman showing pictures of various objects that engineers invent", "video_id": "video12630", "sen_id": 211907}, {"caption": "there is a man in blue shirt talking from his office", "video_id": "video12630", "sen_id": 211908}, {"caption": "person is showing something about the legs and bones", "video_id": "video12630", "sen_id": 211909}, {"caption": "a person is showing bunch of photo on screen", "video_id": "video12630", "sen_id": 211910}, {"caption": "some one showing the daily life of different people", "video_id": "video12630", "sen_id": 211911}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12630", "sen_id": 211912}, {"caption": "a person explains about some scenes of science and others", "video_id": "video12630", "sen_id": 211913}, {"caption": "a woman describes that everything is made of stuff and that there is no limit on what engineers can invent or reinvent", "video_id": "video12630", "sen_id": 211914}, {"caption": "a man is taslking about some stuff on tv", "video_id": "video12630", "sen_id": 211915}, {"caption": "a woman is presenting different materials used by engineers", "video_id": "video12630", "sen_id": 211916}, {"caption": "the achievements in making different materials for different purposes are shown in photographs", "video_id": "video12630", "sen_id": 211917}, {"caption": "a woman is explaining about material and bio-medical", "video_id": "video12630", "sen_id": 211918}, {"caption": "engeneering sounds and looks like a very in teresting job to look into", "video_id": "video12630", "sen_id": 211919}, {"caption": "a woman is posing on different backgrounds while a larger image of her is posted behind the 2 smaller images", "video_id": "video12299", "sen_id": 211920}, {"caption": "an older woman is showing off her different styles as she ages", "video_id": "video12299", "sen_id": 211921}, {"caption": "animated graphics display featuring a woman in stylish clothes", "video_id": "video12299", "sen_id": 211922}, {"caption": "a clip of a woman who is giving style tips", "video_id": "video12299", "sen_id": 211923}, {"caption": "a woman's video opening shows her photos coming together from dominoes in a computer animation", "video_id": "video12299", "sen_id": 211924}, {"caption": "a ball knocking over dominoes to create a picture of a stylish woman", "video_id": "video12299", "sen_id": 211925}, {"caption": "a woman in the background of a commercial video", "video_id": "video12299", "sen_id": 211926}, {"caption": "a ball rolls into some dominoes that make up a portrait of a woman when they all fall", "video_id": "video12299", "sen_id": 211927}, {"caption": "a woman striking different poses during a video introduction for be gorgeous style", "video_id": "video12299", "sen_id": 211928}, {"caption": "a picture frame is formed using jigsaw puzzle pieces", "video_id": "video12299", "sen_id": 211929}, {"caption": "a white ball hits some tiles that were standing over a blue glass as they fall they form the images of two woman and the frace be gorfeous style by mimimie", "video_id": "video12299", "sen_id": 211930}, {"caption": "there are young women s showing different fashionable dresses", "video_id": "video12299", "sen_id": 211931}, {"caption": "an exploration about the lady models giving different poses", "video_id": "video12299", "sen_id": 211932}, {"caption": "a young woman is scene showing different hairstyles", "video_id": "video12299", "sen_id": 211933}, {"caption": "mimme sytel has been demonstrated by some gorgeous looking girls", "video_id": "video12299", "sen_id": 211934}, {"caption": "a woman with long dark hair is getting ready to discuss style", "video_id": "video12299", "sen_id": 211935}, {"caption": "a large set of domino slides fall down to reveal a picture of a woman", "video_id": "video12299", "sen_id": 211936}, {"caption": "a black teenage girl with long brown curly hair s showing pictures of fashion clothes", "video_id": "video12299", "sen_id": 211937}, {"caption": "a ball rolls around on a blue platform hitting a piece of picture set up like dominoes", "video_id": "video12299", "sen_id": 211938}, {"caption": "bunch of photographs of sexy brunette being shown on the screen", "video_id": "video12299", "sen_id": 211939}, {"caption": "a man is pointing to an animated male figure on a monitor", "video_id": "video11073", "sen_id": 211940}, {"caption": "a hand points at a screen with a imitated man and the insides of his throat", "video_id": "video11073", "sen_id": 211941}, {"caption": "a hand points at a blue screen showing a graphic of a human body with the neck arteries and spine exposed across from a cross-section of a heart which then forms a connected recovering body", "video_id": "video11073", "sen_id": 211942}, {"caption": "a man talks about a possible head transplant", "video_id": "video11073", "sen_id": 211943}, {"caption": "a man is talking about a possible head transplant", "video_id": "video11073", "sen_id": 211944}, {"caption": "a doctor gives a presentation on a head transplant", "video_id": "video11073", "sen_id": 211945}, {"caption": "a man touching a video diagram of a human body", "video_id": "video11073", "sen_id": 211946}, {"caption": "there is a man explains about human body", "video_id": "video11073", "sen_id": 211947}, {"caption": "a man give a lecture about various parts of the human body", "video_id": "video11073", "sen_id": 211948}, {"caption": "demonstrating with a three dimensional human model how muscle and blood vessels are attached together", "video_id": "video11073", "sen_id": 211949}, {"caption": "two men discuss the process of doing a head transplant while they gesture at animated 3d diagrams of the procedure", "video_id": "video11073", "sen_id": 211950}, {"caption": "a man is talking on tv in a news channel", "video_id": "video11073", "sen_id": 211951}, {"caption": "a man on the news gives a presentation on the anatomy of the human neck through a digital model", "video_id": "video11073", "sen_id": 211952}, {"caption": "a person is explaining some thing about human body", "video_id": "video11073", "sen_id": 211953}, {"caption": "here someone is showing the working of a human body with illustrations", "video_id": "video11073", "sen_id": 211954}, {"caption": "a person is giving presentable about human body", "video_id": "video11073", "sen_id": 211955}, {"caption": "someone off screen is showing a video of a computer generated body and medical procedures", "video_id": "video11073", "sen_id": 211956}, {"caption": "a news anchor points at an image on the screen of a human and his anatomy", "video_id": "video11073", "sen_id": 211957}, {"caption": "a man describing a ground breaking surgery while an animation of it plays", "video_id": "video11073", "sen_id": 211958}, {"caption": "the blood vessels in the neck of the patient are operated on", "video_id": "video11073", "sen_id": 211959}, {"caption": "people skating over a barrel with background music", "video_id": "video12754", "sen_id": 211960}, {"caption": "skateboarders are jumping over barrels on a boardwalk on a foggy day", "video_id": "video12754", "sen_id": 211961}, {"caption": "skatboarders do tricks along an abandoned ocean board walk", "video_id": "video12754", "sen_id": 211962}, {"caption": "a clip from a music video with people skateboarding", "video_id": "video12754", "sen_id": 211963}, {"caption": "a group of young skate board riders does tricks on a foggy pier", "video_id": "video12754", "sen_id": 211964}, {"caption": "a montage containing skateboarders and a passing view of a bridge and some trees plays", "video_id": "video12754", "sen_id": 211965}, {"caption": "there are some guys doing tricks on their skateboard", "video_id": "video12754", "sen_id": 211966}, {"caption": "fast paced music is played while boys riding skateboards are shown", "video_id": "video12754", "sen_id": 211967}, {"caption": "young skateboarders jump over a horizontal metal canister on a boardwalk by benches on a misty day", "video_id": "video12754", "sen_id": 211968}, {"caption": "a man is moving in the wheel skating and jumping the barrel", "video_id": "video12754", "sen_id": 211969}, {"caption": "players are skating on various locations", "video_id": "video12754", "sen_id": 211970}, {"caption": "there is someone skating in a sunny day", "video_id": "video12754", "sen_id": 211971}, {"caption": "a view of electric lines along the bridge and a boy skating over a barrel", "video_id": "video12754", "sen_id": 211972}, {"caption": "many players are jumps in the barrel quickly", "video_id": "video12754", "sen_id": 211973}, {"caption": "skateboarders perform tricks over obstacles in between scenic clips out of the window of a traveling car", "video_id": "video12754", "sen_id": 211974}, {"caption": "the skateboarders were on the boardwalk and jumping over a barrel", "video_id": "video12754", "sen_id": 211975}, {"caption": "there is someone traveling with family to a picnic", "video_id": "video12754", "sen_id": 211976}, {"caption": "a skateboarder skates in a natural area and hops over a tree", "video_id": "video12754", "sen_id": 211977}, {"caption": "one man skating and jumps in the big barrel", "video_id": "video12754", "sen_id": 211978}, {"caption": "two boys moving in skating upwards on road side", "video_id": "video12754", "sen_id": 211979}, {"caption": "a man is laughing and reading memes on his computer screen", "video_id": "video12239", "sen_id": 211980}, {"caption": "a man laughs and reads a meme about makeup", "video_id": "video12239", "sen_id": 211981}, {"caption": "a crude man makes jokes about the picture of a woman", "video_id": "video12239", "sen_id": 211982}, {"caption": "a guy is making fun of a girl's makeup on her face", "video_id": "video12239", "sen_id": 211983}, {"caption": "a man with an accent and white hair reads off of a picture of a girl with makeup on", "video_id": "video12239", "sen_id": 211984}, {"caption": "there are two blonde women in blue and another woman in blue while a man in black is speaking", "video_id": "video12239", "sen_id": 211985}, {"caption": "a man with blonde hair makes fun of a woman wearing an overabundance of makeup", "video_id": "video12239", "sen_id": 211986}, {"caption": "a man with blonde hair is laughing about a picture of a woman with too much makeup on", "video_id": "video12239", "sen_id": 211987}, {"caption": "a man makes fun of a photo of a woman wearing a lot of makeup", "video_id": "video12239", "sen_id": 211988}, {"caption": "a man in a black shirt reacting to a picture of a woman with terrible make up", "video_id": "video12239", "sen_id": 211989}, {"caption": "there is a white hair man talking with webcam", "video_id": "video12239", "sen_id": 211990}, {"caption": "a man in a black shit and blonde hair making fun of a woman with too much make-up on", "video_id": "video12239", "sen_id": 211991}, {"caption": "a man jokes about photo of woman wearing makeup at an event", "video_id": "video12239", "sen_id": 211992}, {"caption": "a black man with blonde hair laughs and reads a meme of a woman wearing excessive makeup", "video_id": "video12239", "sen_id": 211993}, {"caption": "side by side edited man critiquing woman s makeup", "video_id": "video12239", "sen_id": 211994}, {"caption": "a man talking with laugh another side a lady photo is there", "video_id": "video12239", "sen_id": 211995}, {"caption": "a man is analyzing a woman s makeup in a meme", "video_id": "video12239", "sen_id": 211996}, {"caption": "a man makes fun of a woman s make up during a party event", "video_id": "video12239", "sen_id": 211997}, {"caption": "a boy blue dress color wearing cloth standing speaking laughing on topic and still image girl painted face displaying on screen", "video_id": "video12239", "sen_id": 211998}, {"caption": "a blonde man is laughing and talking inside", "video_id": "video12239", "sen_id": 211999}, {"caption": "a girl holding a small monkey wrapped in a pink blanket", "video_id": "video11011", "sen_id": 212000}, {"caption": "a little girl holding a monkey in a pink blanket", "video_id": "video11011", "sen_id": 212001}, {"caption": "a woman is holding a monkey in a pink blanket while another person touches its hand", "video_id": "video11011", "sen_id": 212002}, {"caption": "a small monkey dressed in pink and snuggled in a pink blanket is held by a woman", "video_id": "video11011", "sen_id": 212003}, {"caption": "a small monkey dressed in doll clothes poses for pictures", "video_id": "video11011", "sen_id": 212004}, {"caption": "a baby monkey is shown cuddling in blankets", "video_id": "video11011", "sen_id": 212005}, {"caption": "a monkey wrapped in soft clothing interacts with some humans", "video_id": "video11011", "sen_id": 212006}, {"caption": "a monkey dressed in children's clothes is held by a small asian woman", "video_id": "video11011", "sen_id": 212007}, {"caption": "woman holding a small black and white monkey that is wearing a dress", "video_id": "video11011", "sen_id": 212008}, {"caption": "a woman holding a monkey dressed in pink clothing", "video_id": "video11011", "sen_id": 212009}, {"caption": "a monkey dressed in pink and white clothes is held by the owner", "video_id": "video11011", "sen_id": 212010}, {"caption": "a girl holding a monkey that is wearing pink clothing", "video_id": "video11011", "sen_id": 212011}, {"caption": "a person holding a baby monkey that is cuddled up in pink blankets", "video_id": "video11011", "sen_id": 212012}, {"caption": "a girl is holding a cute monkey that is dressed in a dress and holding a blanket", "video_id": "video11011", "sen_id": 212013}, {"caption": "a monkey is dressed in white and pink and wrapped in a pink blanket", "video_id": "video11011", "sen_id": 212014}, {"caption": "some one holding a small baby monkey in her hand", "video_id": "video11011", "sen_id": 212015}, {"caption": "a monkey dressed like a baby is held by various people", "video_id": "video11011", "sen_id": 212016}, {"caption": "one monkey sleeps like a human child", "video_id": "video11011", "sen_id": 212017}, {"caption": "a monkey and a pink colour cloth holding displaying on screen", "video_id": "video11011", "sen_id": 212018}, {"caption": "a wrapped monkey in a woolen cloth is in the hands of an young girl", "video_id": "video11011", "sen_id": 212019}, {"caption": "a man is cooking in the kitchen and he is describing the recipe that he is using", "video_id": "video12378", "sen_id": 212020}, {"caption": "in a kitchen a person is preparing burritos in a large glass dish", "video_id": "video12378", "sen_id": 212021}, {"caption": "a man is putting together burritos and putting them in the pan topping it with salsa", "video_id": "video12378", "sen_id": 212022}, {"caption": "a man folds up a burrito to finish off the pan and then tops with salsa", "video_id": "video12378", "sen_id": 212023}, {"caption": "a man carefully folding a burrito and putting on a plate", "video_id": "video12378", "sen_id": 212024}, {"caption": "a man making a lot of burritos and explaining how to do it", "video_id": "video12378", "sen_id": 212025}, {"caption": "ingredients for preparing food are kept in a table", "video_id": "video12378", "sen_id": 212026}, {"caption": "a man is rolling up different ingredients into a tortilla shell in order to make a burrito", "video_id": "video12378", "sen_id": 212027}, {"caption": "a person rolls burritos and places them in a baking dish and tops them with extra meat and salsa", "video_id": "video12378", "sen_id": 212028}, {"caption": "in a kitchen woman is making some sandwiches", "video_id": "video12378", "sen_id": 212029}, {"caption": "the sandwich for snacks is ready by folding inside with vegetable and sauce", "video_id": "video12378", "sen_id": 212030}, {"caption": "there is a man arranging a dish on the table", "video_id": "video12378", "sen_id": 212031}, {"caption": "this person is showing how to make chimichangas and how to serve properly", "video_id": "video12378", "sen_id": 212032}, {"caption": "in a kitchen someone describes how to roll burritos and place them in a pan", "video_id": "video12378", "sen_id": 212033}, {"caption": "a guy is showing you how to make burritos", "video_id": "video12378", "sen_id": 212034}, {"caption": "a person is wrapping burritos and topping them in a dish", "video_id": "video12378", "sen_id": 212035}, {"caption": "a person in a white top demonstrating how to make home made burritos", "video_id": "video12378", "sen_id": 212036}, {"caption": "a person is putting the saws on the food item", "video_id": "video12378", "sen_id": 212037}, {"caption": "a man spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12378", "sen_id": 212038}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video12378", "sen_id": 212039}, {"caption": "this is technology information tying together three different aspects", "video_id": "video10483", "sen_id": 212040}, {"caption": "a man discusses learning software as three logos appear on the screen", "video_id": "video10483", "sen_id": 212041}, {"caption": "a man with a black shirt talking about a bioconductor", "video_id": "video10483", "sen_id": 212042}, {"caption": "2 men talking about commands to sync 3well known softwares", "video_id": "video10483", "sen_id": 212043}, {"caption": "two men in black is seen with the one on the right talking then the screen shows logos of python bioconductor and galaxy", "video_id": "video10483", "sen_id": 212044}, {"caption": "a pair of men discuss computer coding and computer programming", "video_id": "video10483", "sen_id": 212045}, {"caption": "a person informing that anybody can learn python biconductor and galaxy", "video_id": "video10483", "sen_id": 212046}, {"caption": "letters are displayed on the screen", "video_id": "video10483", "sen_id": 212047}, {"caption": "a man is talking about a python and bioconductor", "video_id": "video10483", "sen_id": 212048}, {"caption": "two people are talking about python and galaxy", "video_id": "video10483", "sen_id": 212049}, {"caption": "a man in black tshrit is talking about some education package", "video_id": "video10483", "sen_id": 212050}, {"caption": "some advertisement is shown with pictures and a person telling about it", "video_id": "video10483", "sen_id": 212051}, {"caption": "python bioconductor galaxy open source software for bioinformatics on", "video_id": "video10483", "sen_id": 212052}, {"caption": "a man describes and demonstrates a computer program he is using for his work", "video_id": "video10483", "sen_id": 212053}, {"caption": "two young men in black dresses are expressing their reactions about galaxy and bioconductor", "video_id": "video10483", "sen_id": 212054}, {"caption": "some logos of different companies are being shown", "video_id": "video10483", "sen_id": 212055}, {"caption": "two gentle men discuss about python to bicondutor and raping it all using the galaxy package", "video_id": "video10483", "sen_id": 212056}, {"caption": "two men standing and talking about python bioconductor and galaxy", "video_id": "video10483", "sen_id": 212057}, {"caption": "two guys stand and talk to each other", "video_id": "video10483", "sen_id": 212058}, {"caption": "couple of guys win black tshirt talking to the camera", "video_id": "video10483", "sen_id": 212059}, {"caption": "a man is playing a motorcycle video games and describing how to make certain moves", "video_id": "video12683", "sen_id": 212060}, {"caption": "a man explaining game play from a dirt bike racing game", "video_id": "video12683", "sen_id": 212061}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video12683", "sen_id": 212062}, {"caption": "man talks about playing a driving video game and various options within", "video_id": "video12683", "sen_id": 212063}, {"caption": "a young man is giving viewers a tutorial on how to navigate through a specific video game", "video_id": "video12683", "sen_id": 212064}, {"caption": "a video game motorcyclist makes a first attempt at scrubbing and whipping", "video_id": "video12683", "sen_id": 212065}, {"caption": "a male gamer explains how to set the controls for a racing video game", "video_id": "video12683", "sen_id": 212066}, {"caption": "a man checks out the control settings on a video game about motorcycles", "video_id": "video12683", "sen_id": 212067}, {"caption": "a character is driving down the path on a bike", "video_id": "video12683", "sen_id": 212068}, {"caption": "a man explains the controls for a video game", "video_id": "video12683", "sen_id": 212069}, {"caption": "a man is playing a racing game on xbox and explaining the game", "video_id": "video12683", "sen_id": 212070}, {"caption": "images from a motorcycle riding video game along with omages of a game controller", "video_id": "video12683", "sen_id": 212071}, {"caption": "a guy plays a dirt bike racing game while discussing it", "video_id": "video12683", "sen_id": 212072}, {"caption": "a motocross video game's controls are being shown; then the game continues mid-race", "video_id": "video12683", "sen_id": 212073}, {"caption": "a video game control system is shown for a bike game", "video_id": "video12683", "sen_id": 212074}, {"caption": "the man provides a review of the xbox bike racing video game", "video_id": "video12683", "sen_id": 212075}, {"caption": "a man describes how to play a game on xbox", "video_id": "video12683", "sen_id": 212076}, {"caption": "a young man describes and demonstrates a video game he is playing", "video_id": "video12683", "sen_id": 212077}, {"caption": "certain buttons on the controller device allow you to perform scrub and whip actions on your motorbike", "video_id": "video12683", "sen_id": 212078}, {"caption": "someone is playing a video game on their console", "video_id": "video12683", "sen_id": 212079}, {"caption": "a group of track runners about to begin a race", "video_id": "video11109", "sen_id": 212080}, {"caption": "athletes preparing to race on a large track", "video_id": "video11109", "sen_id": 212081}, {"caption": "a group of young men run a race in a large track and field meet", "video_id": "video11109", "sen_id": 212082}, {"caption": "racers bend down and positioned themselves in front of others on their running lanes before they lift their hips and start running on an outdoor track", "video_id": "video11109", "sen_id": 212083}, {"caption": "many sprinters are getting ready and runs the race", "video_id": "video11109", "sen_id": 212084}, {"caption": "there are some atlethis running on the track very fast inoder to win", "video_id": "video11109", "sen_id": 212085}, {"caption": "athlete players are in running race and runs fast", "video_id": "video11109", "sen_id": 212086}, {"caption": "some participants are going to be ready for racing performance", "video_id": "video11109", "sen_id": 212087}, {"caption": "a group of people are running on a race track", "video_id": "video11109", "sen_id": 212088}, {"caption": "young men are getting ready for a race on a school track", "video_id": "video11109", "sen_id": 212089}, {"caption": "athlete players are warmup for the running race and runs fast", "video_id": "video11109", "sen_id": 212090}, {"caption": "a group of boys getting ready to running inside ground racing each other displaying on screen", "video_id": "video11109", "sen_id": 212091}, {"caption": "people cheering at a group of people who are running in a competition", "video_id": "video11109", "sen_id": 212092}, {"caption": "group of guys were running on the runway to win the race", "video_id": "video11109", "sen_id": 212093}, {"caption": "the conductances p repair to ran they are on the track", "video_id": "video11109", "sen_id": 212094}, {"caption": "some sprinters are running against each other", "video_id": "video11109", "sen_id": 212095}, {"caption": "there are players standing in a line on stadium and sing national athem", "video_id": "video11109", "sen_id": 212096}, {"caption": "the athletes ready to start the running race they are waiting for signal to start they sitted on the knees after signal they started running", "video_id": "video11109", "sen_id": 212097}, {"caption": "athletics are getting ready and completing running race", "video_id": "video11109", "sen_id": 212098}, {"caption": "the video contains the 100 meters sprint event", "video_id": "video11109", "sen_id": 212099}, {"caption": "a baby is sleeping on a man's face", "video_id": "video11894", "sen_id": 212100}, {"caption": "a man with a sleeping newborn on his head is resting on a blue pillow ", "video_id": "video11894", "sen_id": 212101}, {"caption": "a small baby sleeps on the large head of a sleeping man", "video_id": "video11894", "sen_id": 212102}, {"caption": "a man and his child are sleeping together in bed", "video_id": "video11894", "sen_id": 212103}, {"caption": "a baby is laying on their father in the bed", "video_id": "video11894", "sen_id": 212104}, {"caption": "small baby is sleeping on his father while his father is sleeping on the bed", "video_id": "video11894", "sen_id": 212105}, {"caption": "a small baby sleeping on the backs of its father", "video_id": "video11894", "sen_id": 212106}, {"caption": "lovely baby in a deep sleep upon his sleeping father", "video_id": "video11894", "sen_id": 212107}, {"caption": "the cute baby sleeping on the head of father", "video_id": "video11894", "sen_id": 212108}, {"caption": "a child is laying on face of a man and sleeping", "video_id": "video11894", "sen_id": 212109}, {"caption": "a baby is sleeping with his dads face deeply", "video_id": "video11894", "sen_id": 212110}, {"caption": "a baby is sleeping deeply above a man", "video_id": "video11894", "sen_id": 212111}, {"caption": "a baby fast a sleep on his father s face without any disturbances", "video_id": "video11894", "sen_id": 212112}, {"caption": "one baby boy in his father and make deep sleep", "video_id": "video11894", "sen_id": 212113}, {"caption": "a cute baby is sleeping on the face of another person", "video_id": "video11894", "sen_id": 212114}, {"caption": "there is a baby sleeping with father inside the room", "video_id": "video11894", "sen_id": 212115}, {"caption": "daddy and baby sleep a undisturbed peaceful sleep", "video_id": "video11894", "sen_id": 212116}, {"caption": "baby is sleeping on the his father s face", "video_id": "video11894", "sen_id": 212117}, {"caption": "cute baby fell asleep on his dad s head", "video_id": "video11894", "sen_id": 212118}, {"caption": "the tiny cute boy sleeps over his father s face and the father is also sleeping", "video_id": "video11894", "sen_id": 212119}, {"caption": "a man is playing with two dogs at his house", "video_id": "video10392", "sen_id": 212120}, {"caption": "two dogs are playing with a amn", "video_id": "video10392", "sen_id": 212121}, {"caption": "two dogs are playing with their owner who is in an army uniform", "video_id": "video10392", "sen_id": 212122}, {"caption": "two dogs excitedly greet man dressed in army service uniform in living room of home", "video_id": "video10392", "sen_id": 212123}, {"caption": "a man plays with three dogs at the same time on a hardwood floor", "video_id": "video10392", "sen_id": 212124}, {"caption": "two pets playing with their owner", "video_id": "video10392", "sen_id": 212125}, {"caption": "puppies loving their military dad after not seeing him for a long time", "video_id": "video10392", "sen_id": 212126}, {"caption": "two dogs jump up on the man licking his face as he kneels to greet them", "video_id": "video10392", "sen_id": 212127}, {"caption": "a man in military fatigues in a wood floored white living room is kneeling and being greeted by two dogs affectionately", "video_id": "video10392", "sen_id": 212128}, {"caption": "army officer playing with his two happy dogs", "video_id": "video10392", "sen_id": 212129}, {"caption": "the two dogs jumps on the man standing on one knee", "video_id": "video10392", "sen_id": 212130}, {"caption": "a two dogs and one person were playing and fighting with the two dogs", "video_id": "video10392", "sen_id": 212131}, {"caption": "a soldier is being greeted by two large happy dogs in a house", "video_id": "video10392", "sen_id": 212132}, {"caption": "two pet dogs are expressing their love and affection towards their master", "video_id": "video10392", "sen_id": 212133}, {"caption": "a woman flims a soldier playing with two dogs", "video_id": "video10392", "sen_id": 212134}, {"caption": "there is a former military man playing with two big dogs", "video_id": "video10392", "sen_id": 212135}, {"caption": "a military service man is greeted by two excited dogs in home", "video_id": "video10392", "sen_id": 212136}, {"caption": "a bold man dressed in military uniform is playing with 2 black and white dogs", "video_id": "video10392", "sen_id": 212137}, {"caption": "2 dogs greeting his owner who has returned from the war", "video_id": "video10392", "sen_id": 212138}, {"caption": "a couple of dogs are playing with a man", "video_id": "video10392", "sen_id": 212139}, {"caption": "a man interviewing about his weight lifting competition", "video_id": "video10690", "sen_id": 212140}, {"caption": "man wearing a red shirt and shades dead lifting a set of weights", "video_id": "video10690", "sen_id": 212141}, {"caption": "men are outside lifting some large red weights", "video_id": "video10690", "sen_id": 212142}, {"caption": "a weightlifter in a pink tee shirt lifts barbells while another man in gray climbs a rope", "video_id": "video10690", "sen_id": 212143}, {"caption": "a man is training for a fight", "video_id": "video10690", "sen_id": 212144}, {"caption": "athletic young man describing his desire to compete in athletic games", "video_id": "video10690", "sen_id": 212145}, {"caption": "a man lifts a large barbell full of weights in a fitness competition", "video_id": "video10690", "sen_id": 212146}, {"caption": "a young man climbs a rope in a physical fitness competition", "video_id": "video10690", "sen_id": 212147}, {"caption": "while training and competing in weightlifting and fitness events this athlete is not sure if he should keep training to win", "video_id": "video10690", "sen_id": 212148}, {"caption": "man lifting weights and climbing a rope is shown while he speaks in the background about his career", "video_id": "video10690", "sen_id": 212149}, {"caption": "a man is shown in a pink shirt and sunglasses lifting weights competitively", "video_id": "video10690", "sen_id": 212150}, {"caption": "weightlifters are shown in slow motion lifting large weights", "video_id": "video10690", "sen_id": 212151}, {"caption": "a man wearing a red shirt and lifting weights", "video_id": "video10690", "sen_id": 212152}, {"caption": "a guy is talking about lifting weights and other physical activities", "video_id": "video10690", "sen_id": 212153}, {"caption": "a man in a pink shirt lifts weights competitively", "video_id": "video10690", "sen_id": 212154}, {"caption": "a man wearing glasses is lifting weights", "video_id": "video10690", "sen_id": 212155}, {"caption": "weight lifting practice where man drops weight another person runs out from there", "video_id": "video10690", "sen_id": 212156}, {"caption": "three men are lifting weights and a man is climbing a rope", "video_id": "video10690", "sen_id": 212157}, {"caption": "a man is lifting weights and climbing up a rope", "video_id": "video10690", "sen_id": 212158}, {"caption": "a guy outside is climbing up a rope", "video_id": "video10690", "sen_id": 212159}, {"caption": "a person wearing a scary costume is taking a selfie", "video_id": "video12974", "sen_id": 212160}, {"caption": "a man is showing off his very dark costume and tries to take a selfie", "video_id": "video12974", "sen_id": 212161}, {"caption": "a clip of a guy that is imitating people's snapchat", "video_id": "video12974", "sen_id": 212162}, {"caption": "a fremale model wearing a black and white costume talks to a camera and eventually takes of selfie picture of herself", "video_id": "video12974", "sen_id": 212163}, {"caption": "a man in a video game character costume speaks to the camera", "video_id": "video12974", "sen_id": 212164}, {"caption": "a young man wearing a contest talks on camera about social media", "video_id": "video12974", "sen_id": 212165}, {"caption": "a man with dark hair is imitating a girls pose on snapchat", "video_id": "video12974", "sen_id": 212166}, {"caption": "a man with white face make-up and black hair with black shiny wings is taking a selfie into the camera", "video_id": "video12974", "sen_id": 212167}, {"caption": "a goth guy in an over the top costume discusses other people's selfies", "video_id": "video12974", "sen_id": 212168}, {"caption": "someone wearing a costume with many wings attached to the back of it", "video_id": "video12974", "sen_id": 212169}, {"caption": "a man in a futuristic fly costume taking pictures of himself", "video_id": "video12974", "sen_id": 212170}, {"caption": "there is a man with verity makeup on face", "video_id": "video12974", "sen_id": 212171}, {"caption": "a new model is presented in lateset dress for new mobile company", "video_id": "video12974", "sen_id": 212172}, {"caption": "a man is put make differently and shoot him a selfie", "video_id": "video12974", "sen_id": 212173}, {"caption": "a boy in black dress with phone in his hand taking a snap", "video_id": "video12974", "sen_id": 212174}, {"caption": "a girl is showing her beauty for taking picture", "video_id": "video12974", "sen_id": 212175}, {"caption": "a men is wearing a different outfit and removing a selfie photo of himself on a mobile phone", "video_id": "video12974", "sen_id": 212176}, {"caption": "one man talking about girl behind in photo and take selfie", "video_id": "video12974", "sen_id": 212177}, {"caption": "a man dressed as a rockers holds his black cellphone", "video_id": "video12974", "sen_id": 212178}, {"caption": "a girl mobile in his hand with long haire in black dress", "video_id": "video12974", "sen_id": 212179}, {"caption": "a woman with a pink shirt talking about an actor", "video_id": "video11822", "sen_id": 212180}, {"caption": "a female entertainment reporter talks about the possibilty of jason momoa appearing in the next batman movie", "video_id": "video11822", "sen_id": 212181}, {"caption": "a reported is giving a report about actors and movies", "video_id": "video11822", "sen_id": 212182}, {"caption": "an actor is reported to be in negotiations to appear in the batman vs superman film", "video_id": "video11822", "sen_id": 212183}, {"caption": "a lady with an accent is talking about possible movie role castings", "video_id": "video11822", "sen_id": 212184}, {"caption": "a woman talking about an actor in a new movie", "video_id": "video11822", "sen_id": 212185}, {"caption": "a entermainment reporter is discussing a role in batman vs superman", "video_id": "video11822", "sen_id": 212186}, {"caption": "a women in a red shirt describing characters from the tv show game of thrown", "video_id": "video11822", "sen_id": 212187}, {"caption": "a woman in a red shirt is talking while a man without a shirt is on a screen next to her", "video_id": "video11822", "sen_id": 212188}, {"caption": "a female with multiple moving pictures behind her speak about an actor's negoitiations of an upcoming movie", "video_id": "video11822", "sen_id": 212189}, {"caption": "a woman in a red top is giving entertainment news about an actor starring in an upcoming movie", "video_id": "video11822", "sen_id": 212190}, {"caption": "a woman comment a film in t", "video_id": "video11822", "sen_id": 212191}, {"caption": "a female entertainment reporter talks about the next roles for a famous actor", "video_id": "video11822", "sen_id": 212192}, {"caption": "a girl in orange dress and still images displaying on the screen", "video_id": "video11822", "sen_id": 212193}, {"caption": "the announcer spoke with a very noticeable accent", "video_id": "video11822", "sen_id": 212194}, {"caption": "movie scene from a english movie two mens are talking women is speaking", "video_id": "video11822", "sen_id": 212195}, {"caption": "a woman talks about jason momoa potentially joining the cast of the next batman vs superman", "video_id": "video11822", "sen_id": 212196}, {"caption": "a news report about an actor", "video_id": "video11822", "sen_id": 212197}, {"caption": "a girl sitting in orange dress speaking and still image of pictures of man displaying on screen", "video_id": "video11822", "sen_id": 212198}, {"caption": "a woman in a pink shirt is talking", "video_id": "video11822", "sen_id": 212199}, {"caption": "text on a teal background describes renovations to a kitchen", "video_id": "video10816", "sen_id": 212200}, {"caption": "a person talks about the process they went through in remodeling their kitchen", "video_id": "video10816", "sen_id": 212201}, {"caption": "slides with white writing on a teal background describing home renovations", "video_id": "video10816", "sen_id": 212202}, {"caption": "a before shot of a kitchen remodel is being shown", "video_id": "video10816", "sen_id": 212203}, {"caption": "blue slides are shown with white text about a renovation project", "video_id": "video10816", "sen_id": 212204}, {"caption": "a teal screen is showing white text sentences that change after a few seconds", "video_id": "video10816", "sen_id": 212205}, {"caption": "a slideshow of a kitchen renovation is started", "video_id": "video10816", "sen_id": 212206}, {"caption": "a person is telling that everything was turn out", "video_id": "video10816", "sen_id": 212207}, {"caption": "a series of words talking about someone taking pictures of their kitchen has it was being renovated", "video_id": "video10816", "sen_id": 212208}, {"caption": "there is a kitchen and white words on a blue background", "video_id": "video10816", "sen_id": 212209}, {"caption": "a quick slideshow of this persons kitchen renovation", "video_id": "video10816", "sen_id": 212210}, {"caption": "a person explains how their kitchen makeover was effected with one of the walls being pulled down to help the repairs", "video_id": "video10816", "sen_id": 212211}, {"caption": "a person took the snapshot of his kitchen room at the end of each day", "video_id": "video10816", "sen_id": 212212}, {"caption": "white colored words play on screen with a blue background behind it", "video_id": "video10816", "sen_id": 212213}, {"caption": "white text on a blue background talking about a kitchen renovation", "video_id": "video10816", "sen_id": 212214}, {"caption": "the screen is showing words explaining in detail what happened in the scenario", "video_id": "video10816", "sen_id": 212215}, {"caption": "a kitchen and some text about a kitchen renovation", "video_id": "video10816", "sen_id": 212216}, {"caption": "a home is renovated and a the finished room is seen", "video_id": "video10816", "sen_id": 212217}, {"caption": "now here s a quick slideshow of my kitchen reno", "video_id": "video10816", "sen_id": 212218}, {"caption": "a video of an apartment kitchen with different slides telling what is coming next", "video_id": "video10816", "sen_id": 212219}, {"caption": "a man talks about a sport burnt orange audi as he discusses how much he likes it", "video_id": "video10400", "sen_id": 212220}, {"caption": "a clip showing off an orange audi r8", "video_id": "video10400", "sen_id": 212221}, {"caption": "a burnt orange colored sports car is on the car lot with the salesman", "video_id": "video10400", "sen_id": 212222}, {"caption": "a man talks about the features of a small copper colored sports car", "video_id": "video10400", "sen_id": 212223}, {"caption": "a man describes a small golden sports car that he hopes to purchase", "video_id": "video10400", "sen_id": 212224}, {"caption": "orange super car with black detailing in a car dealership display", "video_id": "video10400", "sen_id": 212225}, {"caption": "a man talks about an orange car while walking around the vehicle", "video_id": "video10400", "sen_id": 212226}, {"caption": "a man describes the features of a copper colored sports car", "video_id": "video10400", "sen_id": 212227}, {"caption": "a up close view of a nice car parked on the side of the road", "video_id": "video10400", "sen_id": 212228}, {"caption": "a orange race car with black stripes is shown", "video_id": "video10400", "sen_id": 212229}, {"caption": "a man shows off an orange 2014 audi r8 and describing it's features", "video_id": "video10400", "sen_id": 212230}, {"caption": "a black and burnt orange colored audi car is showcased at a dealership", "video_id": "video10400", "sen_id": 212231}, {"caption": "a rust and black colored audi car is described", "video_id": "video10400", "sen_id": 212232}, {"caption": "there are many beautiful luxury cars being shown in the video they look so expensive", "video_id": "video10400", "sen_id": 212233}, {"caption": "a shinny orange car at a dealership being shown from various angles", "video_id": "video10400", "sen_id": 212234}, {"caption": "there is a car with shine and smooth body", "video_id": "video10400", "sen_id": 212235}, {"caption": "a shiny orange car is shown from many angles", "video_id": "video10400", "sen_id": 212236}, {"caption": "a 2014 r8 is shown while someone discusses it", "video_id": "video10400", "sen_id": 212237}, {"caption": "a 2014 model r8 lexus car is shown off in burnt orange similar to the gt model", "video_id": "video10400", "sen_id": 212238}, {"caption": "a person is showing car and talking its features", "video_id": "video10400", "sen_id": 212239}, {"caption": "a young man trains for a track meet using a set of hurdles", "video_id": "video10204", "sen_id": 212240}, {"caption": "a young man that is doing exercise techniques on the track", "video_id": "video10204", "sen_id": 212241}, {"caption": "a young man gives instruction on doing a drill using a hurdle", "video_id": "video10204", "sen_id": 212242}, {"caption": "a man dressed in workout clothes does different training exercises on a track hurdle", "video_id": "video10204", "sen_id": 212243}, {"caption": "a man demonstrates a drill involving moving his legs around the top of a hurdle", "video_id": "video10204", "sen_id": 212244}, {"caption": "a guy doing exercises on the track", "video_id": "video10204", "sen_id": 212245}, {"caption": "this young man is warming up to do some jumping", "video_id": "video10204", "sen_id": 212246}, {"caption": "a young athlete trains using a set of high hurdles", "video_id": "video10204", "sen_id": 212247}, {"caption": "a boy in a grey shirt is training by raising his leg over hurdles", "video_id": "video10204", "sen_id": 212248}, {"caption": "a young boy in a grey shirt stretches on a running bar", "video_id": "video10204", "sen_id": 212249}, {"caption": "a young man moving his leg over a hurdle", "video_id": "video10204", "sen_id": 212250}, {"caption": "an athlete is lifting a leg over the hurdles from one side to another repeatedly while standing stationaly in order to improve running over hurdles", "video_id": "video10204", "sen_id": 212251}, {"caption": "a man wearing a white cap stands and faces the sides of a set of hurdles he lifts up his left leg and alternates his heel from one side to the other of the top of one hurdle", "video_id": "video10204", "sen_id": 212252}, {"caption": "a man narrates while a man in a grey shirt demonstrates a type of exercise using hurdles", "video_id": "video10204", "sen_id": 212253}, {"caption": "a man wearing a white hat is demonstrating a a track and field hurdles drill", "video_id": "video10204", "sen_id": 212254}, {"caption": "there is a man with white cap exercising at the morning", "video_id": "video10204", "sen_id": 212255}, {"caption": "a male teaching a type of drill where you move your leg back and fourth over a hurdle", "video_id": "video10204", "sen_id": 212256}, {"caption": "a man wearing cap practicing something on the ground", "video_id": "video10204", "sen_id": 212257}, {"caption": "a man on a white hat grey shirt and blue shorts with white lines is demostrating exercise drills", "video_id": "video10204", "sen_id": 212258}, {"caption": "a person is stepping over a bunch of hurdles", "video_id": "video10204", "sen_id": 212259}, {"caption": "a large group of people are running in a road race including children", "video_id": "video10454", "sen_id": 212260}, {"caption": "multiple clips of many marathon runners running a marathon on a nice sunny day", "video_id": "video10454", "sen_id": 212261}, {"caption": "a clip of a running event in ensiatas california", "video_id": "video10454", "sen_id": 212262}, {"caption": "the train passes in the background behimd the group of runners", "video_id": "video10454", "sen_id": 212263}, {"caption": "a group of people cheer on as marathoners try to reach the finish line", "video_id": "video10454", "sen_id": 212264}, {"caption": "a montage of adults and kids running during a marathon", "video_id": "video10454", "sen_id": 212265}, {"caption": "marathon runners of all ages run along the track", "video_id": "video10454", "sen_id": 212266}, {"caption": "a group of runners are making their way through a race course", "video_id": "video10454", "sen_id": 212267}, {"caption": "a group of kids running a city marathon", "video_id": "video10454", "sen_id": 212268}, {"caption": "there is someone running hard for victory", "video_id": "video10454", "sen_id": 212269}, {"caption": "there are many people of different ages participating in some kind of running marathon event", "video_id": "video10454", "sen_id": 212270}, {"caption": "a large group of people run in an organized race on a city street", "video_id": "video10454", "sen_id": 212271}, {"caption": "a montage of footage from the encintas mile race including adult and youth runners", "video_id": "video10454", "sen_id": 212272}, {"caption": "adults and children are running in a race and there are three women holding the american flag", "video_id": "video10454", "sen_id": 212273}, {"caption": "children and adults are shown running in a race on a street", "video_id": "video10454", "sen_id": 212274}, {"caption": "there are someone running on the track at the early morning", "video_id": "video10454", "sen_id": 212275}, {"caption": "more peoples are running on the road", "video_id": "video10454", "sen_id": 212276}, {"caption": "a group of young distance runners race along a railroad track in a race", "video_id": "video10454", "sen_id": 212277}, {"caption": "racers run very fast toward the finish line", "video_id": "video10454", "sen_id": 212278}, {"caption": "some people in colorful shirts are standing around", "video_id": "video10454", "sen_id": 212279}, {"caption": "a large and scary looking spider is sitting atop a mans hand", "video_id": "video10762", "sen_id": 212280}, {"caption": "a man talks about a large spider that is on his arm", "video_id": "video10762", "sen_id": 212281}, {"caption": "a person looks at a spider in the woods", "video_id": "video10762", "sen_id": 212282}, {"caption": "a man talks about the spider that he has on his hand", "video_id": "video10762", "sen_id": 212283}, {"caption": "a man holds a spider on his arm and shows if to the camera", "video_id": "video10762", "sen_id": 212284}, {"caption": "a man has a deadly spider on his arm but doesn't want to hurt it", "video_id": "video10762", "sen_id": 212285}, {"caption": "a man seems to narrate while a spider is sitting on his arm", "video_id": "video10762", "sen_id": 212286}, {"caption": "a person showing a big spider on hand", "video_id": "video10762", "sen_id": 212287}, {"caption": "a man having a spider on his handits a big spider", "video_id": "video10762", "sen_id": 212288}, {"caption": "spider bite one man on his hands man casually left it", "video_id": "video10762", "sen_id": 212289}, {"caption": "a man is holding a big spider on his hand", "video_id": "video10762", "sen_id": 212290}, {"caption": "a guy is holding a spider on his hand", "video_id": "video10762", "sen_id": 212291}, {"caption": "there is a spider walking through the hand", "video_id": "video10762", "sen_id": 212292}, {"caption": "one man talking one danger spider bite on his hand", "video_id": "video10762", "sen_id": 212293}, {"caption": "a man shows us a close-up of a spider species", "video_id": "video10762", "sen_id": 212294}, {"caption": "a small spider was sitting on a person hand and biting", "video_id": "video10762", "sen_id": 212295}, {"caption": "men showing a spider on his hand and describing", "video_id": "video10762", "sen_id": 212296}, {"caption": "one spider is biting a man in his hands", "video_id": "video10762", "sen_id": 212297}, {"caption": "camera focusing a big spider is sitting his hand and he is describing it", "video_id": "video10762", "sen_id": 212298}, {"caption": "a person is showing spider closer to camera and telling information about it", "video_id": "video10762", "sen_id": 212299}, {"caption": "several disney princess cutouts are stood up in front of a red background", "video_id": "video11465", "sen_id": 212300}, {"caption": "a woman is has paper dolls on stands and is showing the accessories", "video_id": "video11465", "sen_id": 212301}, {"caption": "woman talking about cardboard portraits of cartoon characters", "video_id": "video11465", "sen_id": 212302}, {"caption": "a woman is talking about getting elsa and other princesses and the accessories they came with while showing what they look like", "video_id": "video11465", "sen_id": 212303}, {"caption": "a video showing of a disney princess toys", "video_id": "video11465", "sen_id": 212304}, {"caption": "there are various paper dolls and outfitsaccessories for various disney princesses", "video_id": "video11465", "sen_id": 212305}, {"caption": "a video showing off various disney frozen and princess toys", "video_id": "video11465", "sen_id": 212306}, {"caption": "a woman is looking at a set of disney dolls and accessories", "video_id": "video11465", "sen_id": 212307}, {"caption": "many different disney dolls are shown on display", "video_id": "video11465", "sen_id": 212308}, {"caption": "a set of paper dolls and clothing for them", "video_id": "video11465", "sen_id": 212309}, {"caption": "a woman talking about her little mermaid toys", "video_id": "video11465", "sen_id": 212310}, {"caption": "four toy dolls that have many accessories with a female voiceover explaining what the accessories are", "video_id": "video11465", "sen_id": 212311}, {"caption": "a woman showing and discussing disney toys and their accessories", "video_id": "video11465", "sen_id": 212312}, {"caption": "a woman shows the pile of accessories that come with her paper dolls", "video_id": "video11465", "sen_id": 212313}, {"caption": "four traditional cartoon character stand together holding hands", "video_id": "video11465", "sen_id": 212314}, {"caption": "a woman talking about taking the frozen princess out of the box", "video_id": "video11465", "sen_id": 212315}, {"caption": "a woman is showing disney princess cutouts and their accessories", "video_id": "video11465", "sen_id": 212316}, {"caption": "lady speaking about the cartoon toys she got and their cute accessories", "video_id": "video11465", "sen_id": 212317}, {"caption": "this video shoe the doll and pictures and explain it", "video_id": "video11465", "sen_id": 212318}, {"caption": "some one is showing some paper dolls", "video_id": "video11465", "sen_id": 212319}, {"caption": "woman putting on facial spiderweb make-up", "video_id": "video10559", "sen_id": 212320}, {"caption": "a woman uses a narrow brush to paint connected black lines on her forehead to create spider webs which also appear above the corner of her eyes and below her eyebrows", "video_id": "video10559", "sen_id": 212321}, {"caption": "woman with dark hair wearing thick black and white makeup", "video_id": "video10559", "sen_id": 212322}, {"caption": "a makeup artist giving instructions on how to draw a spiderweb", "video_id": "video10559", "sen_id": 212323}, {"caption": "there is a girl showing a makeup tutorial of some horror makeup", "video_id": "video10559", "sen_id": 212324}, {"caption": "a white girl drawing halloween designs on her forehead", "video_id": "video10559", "sen_id": 212325}, {"caption": "a person making some drawing on her face", "video_id": "video10559", "sen_id": 212326}, {"caption": "a woman shows how to apply heavy cobweb styled make-up", "video_id": "video10559", "sen_id": 212327}, {"caption": "a woman with face painted white paints spiderwebs on her face", "video_id": "video10559", "sen_id": 212328}, {"caption": "a woman is putting makeup on her face with a black makeup", "video_id": "video10559", "sen_id": 212329}, {"caption": "a woman applying scary makeup to her forehead that resembles cobwebs", "video_id": "video10559", "sen_id": 212330}, {"caption": "a woman applying dark spider webs onto her painted face with a brush", "video_id": "video10559", "sen_id": 212331}, {"caption": "the lady get a mackup for the ghost act", "video_id": "video10559", "sen_id": 212332}, {"caption": "a lady is doing her face make up by a brush", "video_id": "video10559", "sen_id": 212333}, {"caption": "the web art beautification on face is face is done artistically", "video_id": "video10559", "sen_id": 212334}, {"caption": "a gothic make up artist adds more spider web fashioned lines on her forehead", "video_id": "video10559", "sen_id": 212335}, {"caption": "a woman is drawing a spiderweb on her forehead", "video_id": "video10559", "sen_id": 212336}, {"caption": "a woman applies stage makeup with the colors black and white", "video_id": "video10559", "sen_id": 212337}, {"caption": "a person paints spider webs on her forehead", "video_id": "video10559", "sen_id": 212338}, {"caption": "a woman with black hair and black nail polish demonstrates how to draw spider webs on her face using black eyeliner", "video_id": "video10559", "sen_id": 212339}, {"caption": "a white tshirt man is talking to another white tshirt man as he crawls away", "video_id": "video10760", "sen_id": 212340}, {"caption": "two men in some kind of peril talk to each other", "video_id": "video10760", "sen_id": 212341}, {"caption": "a couple of men crawling across the floor in a wounded like fashion", "video_id": "video10760", "sen_id": 212342}, {"caption": "a man dragging hmiself to a sitting position and another man crying", "video_id": "video10760", "sen_id": 212343}, {"caption": "a man crawling away from another man on the floor", "video_id": "video10760", "sen_id": 212344}, {"caption": "a white man in a white shirt is covered in blood and crawling on the ground", "video_id": "video10760", "sen_id": 212345}, {"caption": "an injured man cries out to another injured man who tries to get himself to his feet they don't think they are going to survive", "video_id": "video10760", "sen_id": 212346}, {"caption": "a man crying on the floor and a man in a bloody t-shirt struggling to crawl", "video_id": "video10760", "sen_id": 212347}, {"caption": "a guy soaked in sweat and blood stains is crawling across the ground", "video_id": "video10760", "sen_id": 212348}, {"caption": "a man in wet clothes tries to crawl out of a small tiled room", "video_id": "video10760", "sen_id": 212349}, {"caption": "two injured men are speaking before one starts crawling on his belly", "video_id": "video10760", "sen_id": 212350}, {"caption": "a movie in which two actor are wounded and crawling to freedom", "video_id": "video10760", "sen_id": 212351}, {"caption": "two scared and wounded men crawling to escape", "video_id": "video10760", "sen_id": 212352}, {"caption": "a man in a dirty shirt crawls away", "video_id": "video10760", "sen_id": 212353}, {"caption": "a guy is whining and trying to get up", "video_id": "video10760", "sen_id": 212354}, {"caption": "a man in a bloody shirt crawling on the ground he is yelling to another man both of them are in distress", "video_id": "video10760", "sen_id": 212355}, {"caption": "a man crying and trying to get up one more guy injured and he is behind", "video_id": "video10760", "sen_id": 212356}, {"caption": "an bloody and injured man climbs up some steps as another talks to him", "video_id": "video10760", "sen_id": 212357}, {"caption": "two injured men trapped in a room badly wounded", "video_id": "video10760", "sen_id": 212358}, {"caption": "a bloodied man in a white shirt screams out to his injured friend", "video_id": "video10760", "sen_id": 212359}, {"caption": "one woman in a striped dress is talking while taking down her dress strap", "video_id": "video11610", "sen_id": 212360}, {"caption": "a woman pulls down the left strap of her shirt while talking on tv", "video_id": "video11610", "sen_id": 212361}, {"caption": "a woman in a lack and white striped dress moves seductively", "video_id": "video11610", "sen_id": 212362}, {"caption": "two women are talking about a football game and the woman in black and white stripes begin to take of her top", "video_id": "video11610", "sen_id": 212363}, {"caption": "a woman withdark hair in a commercial speaking a different language", "video_id": "video11610", "sen_id": 212364}, {"caption": "awoman in a blck and white striped top adjusts her straps in one screen while another screen shows a player scoring a goal in a soccer match", "video_id": "video11610", "sen_id": 212365}, {"caption": "a two young girls doing some actions in sports channel", "video_id": "video11610", "sen_id": 212366}, {"caption": "a woman talks sexy and football play going in insight", "video_id": "video11610", "sen_id": 212367}, {"caption": "sport ro one beautiful and sexy women talks", "video_id": "video11610", "sen_id": 212368}, {"caption": "women stands in front of a green screen posing in small dresses", "video_id": "video11610", "sen_id": 212369}, {"caption": "a sports news reader is telling sports news while undressing herself", "video_id": "video11610", "sen_id": 212370}, {"caption": "there is a women talking from the studio", "video_id": "video11610", "sen_id": 212371}, {"caption": "to sexy ladies stand facing the camera in the background we a footage of a football match is being projected", "video_id": "video11610", "sen_id": 212372}, {"caption": "two very hot sports reporters disrobe as they give a report on soccer", "video_id": "video11610", "sen_id": 212373}, {"caption": "a girl in white and blackstrip and red dress removing her cloth with hand and football game displaying on screen", "video_id": "video11610", "sen_id": 212374}, {"caption": "a woman on tv is acting sexy for viewers", "video_id": "video11610", "sen_id": 212375}, {"caption": "two womens talking to each other", "video_id": "video11610", "sen_id": 212376}, {"caption": "sexy girl are posing on image very very hot", "video_id": "video11610", "sen_id": 212377}, {"caption": "two girls are talking about the football game she looks sexy", "video_id": "video11610", "sen_id": 212378}, {"caption": "a women wearing sexy dress and doing commentary for the footbal match", "video_id": "video11610", "sen_id": 212379}, {"caption": "a woman is discussing a movie and an actor's role", "video_id": "video12858", "sen_id": 212380}, {"caption": "a countdown list points out a dual role played by owen wilson", "video_id": "video12858", "sen_id": 212381}, {"caption": "man on bed talks to man standing up then they talk again in the living room", "video_id": "video12858", "sen_id": 212382}, {"caption": "description of a young mans best movie scenes over the years", "video_id": "video12858", "sen_id": 212383}, {"caption": "a woman is discussing the many acting roles of edward norton", "video_id": "video12858", "sen_id": 212384}, {"caption": "two men goofing off in there bedroom and living room", "video_id": "video12858", "sen_id": 212385}, {"caption": "edward norton actor clip countdown from watch mojo", "video_id": "video12858", "sen_id": 212386}, {"caption": "a top ten list for the actor ed norton", "video_id": "video12858", "sen_id": 212387}, {"caption": "an actor is seen playing two roles and speaking to himself", "video_id": "video12858", "sen_id": 212388}, {"caption": "a man sitting on a bed talking to a man who is standing", "video_id": "video12858", "sen_id": 212389}, {"caption": "a women talks about the top roles played by a famous actor", "video_id": "video12858", "sen_id": 212390}, {"caption": "a compilation of a actor and the movies he has done", "video_id": "video12858", "sen_id": 212391}, {"caption": "two clips of an actor in a role were is two different people within the same film", "video_id": "video12858", "sen_id": 212392}, {"caption": "an entertainment reporter does a count down of a famous actors films", "video_id": "video12858", "sen_id": 212393}, {"caption": "actor top performance countdown", "video_id": "video12858", "sen_id": 212394}, {"caption": "a man kicking with his leg to a young man in white shirt", "video_id": "video12858", "sen_id": 212395}, {"caption": "two men having a conversation in a bed room then in a living room", "video_id": "video12858", "sen_id": 212396}, {"caption": "a review of edward norton s top 10 performances video clips from his movies", "video_id": "video12858", "sen_id": 212397}, {"caption": "two men are arguing about something and trying to kick", "video_id": "video12858", "sen_id": 212398}, {"caption": "a guy with a necklace is talking to some one", "video_id": "video12858", "sen_id": 212399}, {"caption": "first person shooter game is being played by someone", "video_id": "video12153", "sen_id": 212400}, {"caption": "voice over explaining game play in an action rpg game", "video_id": "video12153", "sen_id": 212401}, {"caption": "a man explains the actions of what is going on in a video game level", "video_id": "video12153", "sen_id": 212402}, {"caption": "two men are talking over scenes from a video game", "video_id": "video12153", "sen_id": 212403}, {"caption": "two players in a game are discussing the accessories they are carrying", "video_id": "video12153", "sen_id": 212404}, {"caption": "a man demonstrates how a harmony orb goes on top of his reaper robot for healing", "video_id": "video12153", "sen_id": 212405}, {"caption": "some one holding gun in their hand shooting other people", "video_id": "video12153", "sen_id": 212406}, {"caption": "a tutorial or step by step guide of how to play the game", "video_id": "video12153", "sen_id": 212407}, {"caption": "an animated cartoon character aiming the gun to shoot enemies", "video_id": "video12153", "sen_id": 212408}, {"caption": "a gamer runs around a game shooting characters in a video game", "video_id": "video12153", "sen_id": 212409}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video12153", "sen_id": 212410}, {"caption": "there is a man running hard with a weapon", "video_id": "video12153", "sen_id": 212411}, {"caption": "two men are narrating what is happening to a video game character s energy level as the character is flying through a city", "video_id": "video12153", "sen_id": 212412}, {"caption": "hands on video game walk through and tutorial", "video_id": "video12153", "sen_id": 212413}, {"caption": "a first person shooting video action game with control and configure option", "video_id": "video12153", "sen_id": 212414}, {"caption": "someone is playing a first person video game", "video_id": "video12153", "sen_id": 212415}, {"caption": "a first person shooter game being played with a narrator giving pointers about situations in the video game", "video_id": "video12153", "sen_id": 212416}, {"caption": "very different game children are confirm like this", "video_id": "video12153", "sen_id": 212417}, {"caption": "a futuristic armored player travels down city streets and jumps high onto buildings", "video_id": "video12153", "sen_id": 212418}, {"caption": "two men describing and playing a first person shooter game", "video_id": "video12153", "sen_id": 212419}, {"caption": "food on a stick is reviewed and called spicy", "video_id": "video12369", "sen_id": 212420}, {"caption": "a blueberry doughnut is twirled on a wooden stick", "video_id": "video12369", "sen_id": 212421}, {"caption": "a woman holding food and talking about it", "video_id": "video12369", "sen_id": 212422}, {"caption": "a clip showing a foreign food that is being sold on the streets", "video_id": "video12369", "sen_id": 212423}, {"caption": "a person describes two food dishes that feature meat fried on a stick", "video_id": "video12369", "sen_id": 212424}, {"caption": "food on a stick that is being eaten", "video_id": "video12369", "sen_id": 212425}, {"caption": "a woman that is describing different foods that she has tried from street vendors", "video_id": "video12369", "sen_id": 212426}, {"caption": "a woman is standing on a sidewalk holding a piece of street vendor food on a stick and discussing what it tastes like and what it's made of", "video_id": "video12369", "sen_id": 212427}, {"caption": "a woman is showing several fried on a stick delicacies including a squid one and a burdock root", "video_id": "video12369", "sen_id": 212428}, {"caption": "a person is describing foods on a stick that are made of fish", "video_id": "video12369", "sen_id": 212429}, {"caption": "a woman is describing two items that she has tasted", "video_id": "video12369", "sen_id": 212430}, {"caption": "there is a fish dish tasting some peaople", "video_id": "video12369", "sen_id": 212431}, {"caption": "this person is commenting on how the spicy burdock root and fish is tasting after having a bite", "video_id": "video12369", "sen_id": 212432}, {"caption": "a girl shows off a foreign snack called burdock", "video_id": "video12369", "sen_id": 212433}, {"caption": "a person holding different types of food at a local food", "video_id": "video12369", "sen_id": 212434}, {"caption": "there is someone eating some a dish from a restaurant", "video_id": "video12369", "sen_id": 212435}, {"caption": "woman reviews two different seafood on a stick dishes", "video_id": "video12369", "sen_id": 212436}, {"caption": "different street foods one of which the woman says tastes like takoyaki", "video_id": "video12369", "sen_id": 212437}, {"caption": "a person reviews and bites down on a piece of chicken", "video_id": "video12369", "sen_id": 212438}, {"caption": "a person is showing some food they are eating", "video_id": "video12369", "sen_id": 212439}, {"caption": "a man sits in a car holding a phone to his hear then dexter appears holding his chin in his hand then he is holding a coffee mug stating to have a killer day", "video_id": "video12612", "sen_id": 212440}, {"caption": "a slideshow shows two pictures of the star of dexter", "video_id": "video12612", "sen_id": 212441}, {"caption": "still frames of dexter are displayed over a hip hop soundtrack", "video_id": "video12612", "sen_id": 212442}, {"caption": "a man holding a mug with blood on his face", "video_id": "video12612", "sen_id": 212443}, {"caption": "a man is showing different poses all in a white shirt with some red highlighting", "video_id": "video12612", "sen_id": 212444}, {"caption": "seca man named dexter poses with his hand under his chin and he also poses with blood splattered on his face and a raised coffee mug in one hand", "video_id": "video12612", "sen_id": 212445}, {"caption": "a man wearing a grey shirt holding a coffee cup", "video_id": "video12612", "sen_id": 212446}, {"caption": "several images of a man with brown hair in different poses with one of them where he is carrying a mug", "video_id": "video12612", "sen_id": 212447}, {"caption": "several images of a man are being shown", "video_id": "video12612", "sen_id": 212448}, {"caption": "there is a men with a cup in his hand", "video_id": "video12612", "sen_id": 212449}, {"caption": "a man is posing in different scenes", "video_id": "video12612", "sen_id": 212450}, {"caption": "a man is sitting in a car with a phone to his ear", "video_id": "video12612", "sen_id": 212451}, {"caption": "a still images cup in hand pictures displaying on screen", "video_id": "video12612", "sen_id": 212452}, {"caption": "a guy with a cup has blood on his face", "video_id": "video12612", "sen_id": 212453}, {"caption": "this is a slideshow video of still images from the tv show dexter set to music", "video_id": "video12612", "sen_id": 212454}, {"caption": "a man sits in a car daydreaming of the show dexter", "video_id": "video12612", "sen_id": 212455}, {"caption": "a man dexter 2 having the coffee and giving a still", "video_id": "video12612", "sen_id": 212456}, {"caption": "a man wearing googles holding a coffee cup is sitting", "video_id": "video12612", "sen_id": 212457}, {"caption": "a man who is drinking something in a mug", "video_id": "video12612", "sen_id": 212458}, {"caption": "a person is showing bunch of photo of celebrity", "video_id": "video12612", "sen_id": 212459}, {"caption": "a woman is taking the fat off of the steak", "video_id": "video10960", "sen_id": 212460}, {"caption": "a woman wearing a red shirt cutting a piece of red meat", "video_id": "video10960", "sen_id": 212461}, {"caption": "a woman in a kitchen talking about preparing steaks", "video_id": "video10960", "sen_id": 212462}, {"caption": "a woman is cutting a piece of steak on a wooden board", "video_id": "video10960", "sen_id": 212463}, {"caption": "a woman talks about a recipe involving rump steak and what beef to use for the recipe", "video_id": "video10960", "sen_id": 212464}, {"caption": "a woman talking about and eventually cutting a raw piece of meat on a circular wooden cutting board", "video_id": "video10960", "sen_id": 212465}, {"caption": "a woman in a red shirt and green dress is trimming off the fat from a steak", "video_id": "video10960", "sen_id": 212466}, {"caption": "a female chef is marinating beef but starts by trimming fat", "video_id": "video10960", "sen_id": 212467}, {"caption": "in the kitchen beautiful woman is preparing two pieces of meat", "video_id": "video10960", "sen_id": 212468}, {"caption": "a woman trims the fat off pieces of beef and marinates it", "video_id": "video10960", "sen_id": 212469}, {"caption": "a woman in a red sweater slices rump steak on a round wooden cutting board", "video_id": "video10960", "sen_id": 212470}, {"caption": "one beautiful and lovely women make recipe with meat", "video_id": "video10960", "sen_id": 212471}, {"caption": "an in home chef talks about a steak recipe she is getting ready to prepare", "video_id": "video10960", "sen_id": 212472}, {"caption": "a girl in red color dress inside kitchen cutting meat to prepare dish to cook to eat displaying on screen", "video_id": "video10960", "sen_id": 212473}, {"caption": "a woman talks about how to cook a rump steak", "video_id": "video10960", "sen_id": 212474}, {"caption": "there is a woman in red dressing slicing meet in the kitchen", "video_id": "video10960", "sen_id": 212475}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video10960", "sen_id": 212476}, {"caption": "a lady in red is cutting up meat showing us how to do it and also talking about it", "video_id": "video10960", "sen_id": 212477}, {"caption": "a red colour dress wearing girl meat inside kitchen preparing dish ready to serve to eat", "video_id": "video10960", "sen_id": 212478}, {"caption": "the woman trims off the fat from the meat she is preparing for the meal", "video_id": "video10960", "sen_id": 212479}, {"caption": "a man in jeans and a dark shirt chases after a white van", "video_id": "video12453", "sen_id": 212480}, {"caption": "a man is chasing a white van in a movie clip", "video_id": "video12453", "sen_id": 212481}, {"caption": "a man is running to get on the van", "video_id": "video12453", "sen_id": 212482}, {"caption": "a man chases down a white van that is driving on a dirt road", "video_id": "video12453", "sen_id": 212483}, {"caption": "a man runs down a dirt road after a white suv where a man wearing a black outfit is punching a man below him as they both partly hang out through an open car door", "video_id": "video12453", "sen_id": 212484}, {"caption": "an indian film showing a man chasing a van", "video_id": "video12453", "sen_id": 212485}, {"caption": "a person is running behind a car on the road", "video_id": "video12453", "sen_id": 212486}, {"caption": "a man tries to jump into a white van while it is still moving", "video_id": "video12453", "sen_id": 212487}, {"caption": "men chase a white van through a sandy road", "video_id": "video12453", "sen_id": 212488}, {"caption": "guy in shirt and jean chasing behind the white van on road", "video_id": "video12453", "sen_id": 212489}, {"caption": "a man running fats behind a vehicle as somebody calls him in that vehicle", "video_id": "video12453", "sen_id": 212490}, {"caption": "there is a man running to get in a car", "video_id": "video12453", "sen_id": 212491}, {"caption": "in a movie hero is chasing a car", "video_id": "video12453", "sen_id": 212492}, {"caption": "a well dressed young man is running behind a van very desperately", "video_id": "video12453", "sen_id": 212493}, {"caption": "men are driving in a van down a dirt road and a man is chasing them on foot", "video_id": "video12453", "sen_id": 212494}, {"caption": "in an indian film a man is chasing after other men in a white van", "video_id": "video12453", "sen_id": 212495}, {"caption": "a men is running behind a van very fast", "video_id": "video12453", "sen_id": 212496}, {"caption": "an indian man chases a white van as it drives down a dirt road", "video_id": "video12453", "sen_id": 212497}, {"caption": "a man in brown runs after a speeding white van", "video_id": "video12453", "sen_id": 212498}, {"caption": "a man is running after a van", "video_id": "video12453", "sen_id": 212499}, {"caption": "a woman in a uniform fills a basin with water", "video_id": "video11703", "sen_id": 212500}, {"caption": "a woman is filling a basin with water in a white sink", "video_id": "video11703", "sen_id": 212501}, {"caption": "a woman in scrubs is filling a yellow container at a sink", "video_id": "video11703", "sen_id": 212502}, {"caption": "a woman demonstrates filling a basin with warm water", "video_id": "video11703", "sen_id": 212503}, {"caption": "a woman in blue medical scrubs is filling a yellow bucket with water", "video_id": "video11703", "sen_id": 212504}, {"caption": "a woman in a all blue uniform filling a basin with water", "video_id": "video11703", "sen_id": 212505}, {"caption": "a woman describes and demonstrates a first aid procedure in an office", "video_id": "video11703", "sen_id": 212506}, {"caption": "a female worker wearing blue clothes fills a tub with water for use with a patient", "video_id": "video11703", "sen_id": 212507}, {"caption": "there is a woman treating her patient in a hospital", "video_id": "video11703", "sen_id": 212508}, {"caption": "a woman fills a basin with warm water not hot", "video_id": "video11703", "sen_id": 212509}, {"caption": "a nurse in blue uniform dressing her patient", "video_id": "video11703", "sen_id": 212510}, {"caption": "la lady wearing blue color dressed getting water from tap", "video_id": "video11703", "sen_id": 212511}, {"caption": "a health care professional is making use of the sink at the clinic to fill up some water in a yellow container", "video_id": "video11703", "sen_id": 212512}, {"caption": "in a laundry sink a woman in blue nursing scrubs is filling a yellow bucket with water", "video_id": "video11703", "sen_id": 212513}, {"caption": "a woman in blue talks about filling a bucket with water", "video_id": "video11703", "sen_id": 212514}, {"caption": "a nursing safety video that shows how to perform simple tasks that people on the job need to know", "video_id": "video11703", "sen_id": 212515}, {"caption": "a female narrator gives first aid instruction while a woman in hospital scrubs demonstrates techniques", "video_id": "video11703", "sen_id": 212516}, {"caption": "a nurse in blue dress is working in the hospital", "video_id": "video11703", "sen_id": 212517}, {"caption": "a medical assistant giving tips with a demonstration in a hospital as to how to prepare a wash tub with warm water for a patient", "video_id": "video11703", "sen_id": 212518}, {"caption": "a female nurse in a blue uniform fills a yellow bowl with water", "video_id": "video11703", "sen_id": 212519}, {"caption": "a man explaining the ingredients to a dish", "video_id": "video12234", "sen_id": 212520}, {"caption": "a man pointed a multiple containerss with food items inside of them", "video_id": "video12234", "sen_id": 212521}, {"caption": "on a table is a bowl of shrimp and other ingredients", "video_id": "video12234", "sen_id": 212522}, {"caption": "four bowls of ingredients are being pointed to on a white table", "video_id": "video12234", "sen_id": 212523}, {"caption": "a man points to the ingredients for garlic butter shrimp", "video_id": "video12234", "sen_id": 212524}, {"caption": "a person prepares a recipe that they explain and go over", "video_id": "video12234", "sen_id": 212525}, {"caption": "ingredients for garlic butter shrimp are laid out and explained", "video_id": "video12234", "sen_id": 212526}, {"caption": "a man speaking a combination of a non-english language and english discusses how to make garlic butter shrimp", "video_id": "video12234", "sen_id": 212527}, {"caption": "ingredients for garlic butter shrimp are separated in dishes and resting on top of a table", "video_id": "video12234", "sen_id": 212528}, {"caption": "a man is explaining something and something is kept in the glass bowl", "video_id": "video12234", "sen_id": 212529}, {"caption": "a man prepares to show viewers how to make a delicious dish", "video_id": "video12234", "sen_id": 212530}, {"caption": "the ingredients needed to make garlic butter shrimp are set out on a table", "video_id": "video12234", "sen_id": 212531}, {"caption": "there are various cooking ingredients already measured out resting on a table in their measuring cups", "video_id": "video12234", "sen_id": 212532}, {"caption": "a chef talks about the ingredients he is using for a recipe he is getting ready to prepare", "video_id": "video12234", "sen_id": 212533}, {"caption": "ingredients are prepared in bowls including shrimp and butter", "video_id": "video12234", "sen_id": 212534}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12234", "sen_id": 212535}, {"caption": "someone describing and showing ingredients in a shrimp recipe", "video_id": "video12234", "sen_id": 212536}, {"caption": "making the best vegetable bonda in the south indian style preparation", "video_id": "video12234", "sen_id": 212537}, {"caption": "its ingredients for cooking with straw chef says about the items in glass bowl", "video_id": "video12234", "sen_id": 212538}, {"caption": "some food is being shown on a plate", "video_id": "video12234", "sen_id": 212539}, {"caption": "a clip of a bunch of scenes from various disney movies", "video_id": "video12617", "sen_id": 212540}, {"caption": "a song is playing over several clips of disney movies", "video_id": "video12617", "sen_id": 212541}, {"caption": "a video collection of the walt disney movies", "video_id": "video12617", "sen_id": 212542}, {"caption": "an irish woman sings over several scenes from disney animated movies", "video_id": "video12617", "sen_id": 212543}, {"caption": "a clip form the movie frozen as well as other disney movies", "video_id": "video12617", "sen_id": 212544}, {"caption": "a blonde girl in a blue dress follows a floating green light", "video_id": "video12617", "sen_id": 212545}, {"caption": "a princess is reaching towards a glowing green object a variety of jungle animals are running around and a pack of wild dogs are trying to attack a smaller dog", "video_id": "video12617", "sen_id": 212546}, {"caption": "multiple video clips of very popular disney kids movies", "video_id": "video12617", "sen_id": 212547}, {"caption": "an animation film is playing on a screen", "video_id": "video12617", "sen_id": 212548}, {"caption": "a cartoon animals are discussing something and a cartoon woman is looking something different", "video_id": "video12617", "sen_id": 212549}, {"caption": "there is a blue dressing woman with some animals", "video_id": "video12617", "sen_id": 212550}, {"caption": "an animated character is lit in green and is walking around", "video_id": "video12617", "sen_id": 212551}, {"caption": "the cartoon character is searching the lighiting species in the cort", "video_id": "video12617", "sen_id": 212552}, {"caption": "trailor of a cartoon film or serial is running on screen", "video_id": "video12617", "sen_id": 212553}, {"caption": "clipping from the magical cartoon", "video_id": "video12617", "sen_id": 212554}, {"caption": "the lady in blue walks and dances and animals are fighting", "video_id": "video12617", "sen_id": 212555}, {"caption": "an animated woman in a light blue dress walking threw a dungeon following a green light", "video_id": "video12617", "sen_id": 212556}, {"caption": "a cartoon queen comes out in dark with green dress some wolf fighting", "video_id": "video12617", "sen_id": 212557}, {"caption": "disney princesses are dancing around their castles", "video_id": "video12617", "sen_id": 212558}, {"caption": "some clips from various disney movies with a female singer in the background", "video_id": "video12617", "sen_id": 212559}, {"caption": "a woman standing in front of the ocean describing the scene", "video_id": "video10038", "sen_id": 212560}, {"caption": "the view of a beautiful beach in the town of cambria", "video_id": "video10038", "sen_id": 212561}, {"caption": "a women is talking on a pier in front of a scenic ocean view", "video_id": "video10038", "sen_id": 212562}, {"caption": "ocean waves lap the shore while the town of cambria california is discussed", "video_id": "video10038", "sen_id": 212563}, {"caption": "a young woman gives travel tips along the coast of california", "video_id": "video10038", "sen_id": 212564}, {"caption": "waves crash around a series of rocks that are near the ocean's shoreline", "video_id": "video10038", "sen_id": 212565}, {"caption": "there is a scene of and ocean and the waves are very light then a woman wearing a dress is talking to the camera", "video_id": "video10038", "sen_id": 212566}, {"caption": "several scenes of ocean waves play before a female tv hist comes on and starts to talk", "video_id": "video10038", "sen_id": 212567}, {"caption": "a woman is giving travel tips while on the shore of a beach", "video_id": "video10038", "sen_id": 212568}, {"caption": "the lovely island of cambria", "video_id": "video10038", "sen_id": 212569}, {"caption": "its sea shore where the girl stand and talks her dress has black spots", "video_id": "video10038", "sen_id": 212570}, {"caption": "someone is recording the amazing waves near the beach", "video_id": "video10038", "sen_id": 212571}, {"caption": "a woman is speaking standing near a beach during the daytime", "video_id": "video10038", "sen_id": 212572}, {"caption": "small waves pass and smash into the sea shore", "video_id": "video10038", "sen_id": 212573}, {"caption": "sexy blonde in dress is talking to the camera on beach", "video_id": "video10038", "sen_id": 212574}, {"caption": "there is a woman talking about a shore", "video_id": "video10038", "sen_id": 212575}, {"caption": "sea water comimg fastly on a beach a lady talking", "video_id": "video10038", "sen_id": 212576}, {"caption": "a blond woman stands on a beach in front of waves crashing onto rocks and the shore and describes the area", "video_id": "video10038", "sen_id": 212577}, {"caption": "blonde veronica hill standing in front the sea in cambria", "video_id": "video10038", "sen_id": 212578}, {"caption": "a woman on the beach is talking about something", "video_id": "video10038", "sen_id": 212579}, {"caption": "man in a pool of water describing an area with a waterfall in it", "video_id": "video10385", "sen_id": 212580}, {"caption": "a man wading in a small body of water that a waterfall flows in to", "video_id": "video10385", "sen_id": 212581}, {"caption": "several people and a blonde man swimming near a waterfall", "video_id": "video10385", "sen_id": 212582}, {"caption": "a man is swimming in green water while several people look on", "video_id": "video10385", "sen_id": 212583}, {"caption": "a man swimming in cold water near a water fall holds up a stick that looks like a snake", "video_id": "video10385", "sen_id": 212584}, {"caption": "man swimming in a muddy lake next to a waterfall", "video_id": "video10385", "sen_id": 212585}, {"caption": "a group of male friends are swimming underneath a waterfall", "video_id": "video10385", "sen_id": 212586}, {"caption": "some men play and joke around while swimming in the water", "video_id": "video10385", "sen_id": 212587}, {"caption": "a man walks through chest deep cold water on his way towards a waterfall", "video_id": "video10385", "sen_id": 212588}, {"caption": "a man is swimming outdoors in a river near a waterfall", "video_id": "video10385", "sen_id": 212589}, {"caption": "a man shows a string as he walks in a lake near a waterfall", "video_id": "video10385", "sen_id": 212590}, {"caption": "a shirtless man is in the water talking and takes something out the water a man talks while he swims in the water", "video_id": "video10385", "sen_id": 212591}, {"caption": "a man swims in muddy water at the base of a waterfall while a group of people stand under the waterfall", "video_id": "video10385", "sen_id": 212592}, {"caption": "a man swimming by an waterfall and looking for things in the water", "video_id": "video10385", "sen_id": 212593}, {"caption": "people are in the water at the bottom of a waterfall", "video_id": "video10385", "sen_id": 212594}, {"caption": "there is a half naked man trying to catch a fish", "video_id": "video10385", "sen_id": 212595}, {"caption": "there is a person he is swiming and recording there locations", "video_id": "video10385", "sen_id": 212596}, {"caption": "a man standing apart from several others in a river that is fed by a huge waterfall", "video_id": "video10385", "sen_id": 212597}, {"caption": "a man records himself wading into a water hole in the jungle", "video_id": "video10385", "sen_id": 212598}, {"caption": "a shirtless man on a boat ends up swimming in a river", "video_id": "video10385", "sen_id": 212599}, {"caption": "a young man not knowing how to eat a banana", "video_id": "video10789", "sen_id": 212600}, {"caption": "a man gives a boy a banana and the boy begins to eat the peel", "video_id": "video10789", "sen_id": 212601}, {"caption": "this shows a black and white clip with a ship named tilapa is carrying bananas", "video_id": "video10789", "sen_id": 212602}, {"caption": "a senior naval officer gives a boy a banana from a stack on a plate and takes it back to peel it for the boy who tries to bite through the peel and then later tries to eat the peel", "video_id": "video10789", "sen_id": 212603}, {"caption": "people are about to board the large ship at the dock", "video_id": "video10789", "sen_id": 212604}, {"caption": "a woman mashed a banana in a white bowl with the tines of a metal fork a military ship with triangular banners angled down from the mast enters port with a lighthouse in the background and smaller boats around the ship", "video_id": "video10789", "sen_id": 212605}, {"caption": "a woman makes food as an old ship is described based on bananas", "video_id": "video10789", "sen_id": 212606}, {"caption": "boy never had a banana in ages", "video_id": "video10789", "sen_id": 212607}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10789", "sen_id": 212608}, {"caption": "here we can see a man is giving a banana to a child and instead of eating the banana he is eating the skin of it", "video_id": "video10789", "sen_id": 212609}, {"caption": "an olden days of black and white film is playing", "video_id": "video10789", "sen_id": 212610}, {"caption": "a bowl with spoon mixing ship moving in water and a small boy eating bannnana", "video_id": "video10789", "sen_id": 212611}, {"caption": "a bunch of ships are floating around a bay", "video_id": "video10789", "sen_id": 212612}, {"caption": "a man in a military uniform with double row of brass buttons gives a boy a banana who tries to eat it with the peel still covering it", "video_id": "video10789", "sen_id": 212613}, {"caption": "a large ship pulls into port filled with bananas for the local people", "video_id": "video10789", "sen_id": 212614}, {"caption": "a ship moving in water and spoon inside plate shaking meals and a little boy eating bannana", "video_id": "video10789", "sen_id": 212615}, {"caption": "the captain of the ship give a banana to a boy who does not even know how to peel and eat a banana", "video_id": "video10789", "sen_id": 212616}, {"caption": "some one mixing rice in a bowl and a young men eating banana who in ship", "video_id": "video10789", "sen_id": 212617}, {"caption": "a tilapa ship is shown a man drop something in the bowl he mixes it with the pork", "video_id": "video10789", "sen_id": 212618}, {"caption": "a large ship pulls into the harbor and hands a young boy a banana", "video_id": "video10789", "sen_id": 212619}, {"caption": "a school of fish parts as a shark is shown a dolphin swims across the screen a sea turtle is shown swimming", "video_id": "video12502", "sen_id": 212620}, {"caption": "animals of all kinds living in the ocean", "video_id": "video12502", "sen_id": 212621}, {"caption": "a shark swims in the ocean past many other fish", "video_id": "video12502", "sen_id": 212622}, {"caption": "sharks are swimming in the ocean while a turtle passes by", "video_id": "video12502", "sen_id": 212623}, {"caption": "sharks dolphins and a sea turtle swim through a school of fish", "video_id": "video12502", "sen_id": 212624}, {"caption": "underwater videos showing sealife (fish sharks turtle) from national geographic", "video_id": "video12502", "sen_id": 212625}, {"caption": "marine animals that spend most of the time near the surface of the ocean are shown", "video_id": "video12502", "sen_id": 212626}, {"caption": "a school of baitfish scatter when a shark slowly swims through them", "video_id": "video12502", "sen_id": 212627}, {"caption": "sharks swim through large schools of fish dolphins and turtles", "video_id": "video12502", "sen_id": 212628}, {"caption": "a school of baitfish scatters when a large shark swims through the middle of them", "video_id": "video12502", "sen_id": 212629}, {"caption": "a sea turtle is swimming in the upper zone of the ocean", "video_id": "video12502", "sen_id": 212630}, {"caption": "there is a school of fish with various fish swimming through them", "video_id": "video12502", "sen_id": 212631}, {"caption": "the ocean is home to many animals such as dolphins fish and turtles", "video_id": "video12502", "sen_id": 212632}, {"caption": "several species of animals swim underwater including: sharks fish dolphins and turtles", "video_id": "video12502", "sen_id": 212633}, {"caption": "there are sharks dolphins and fish swimming in the ocean", "video_id": "video12502", "sen_id": 212634}, {"caption": "shark is swiming in the deep sea and dolphin and tortoise seen", "video_id": "video12502", "sen_id": 212635}, {"caption": "small silver fish swim together to form a darker curved mass a tortoise glides under the sea a pointy-nosed shark cuts through a school of small fish", "video_id": "video12502", "sen_id": 212636}, {"caption": "sharks and dolphins swim through schools of fish they are feeding on", "video_id": "video12502", "sen_id": 212637}, {"caption": "a school of fish swimming in a blue ocean then a large shark swimming through the school of fish", "video_id": "video12502", "sen_id": 212638}, {"caption": "the sea is being filmed from high above", "video_id": "video12502", "sen_id": 212639}, {"caption": "recording a snake moving around on the sand", "video_id": "video11325", "sen_id": 212640}, {"caption": "a snake is slithering on the side of a road", "video_id": "video11325", "sen_id": 212641}, {"caption": "a black snake slithers in the sand on the side of a a dirt road", "video_id": "video11325", "sen_id": 212642}, {"caption": "a very slender snake has his head up and looking at something", "video_id": "video11325", "sen_id": 212643}, {"caption": "a snake slowy draws up and it sits in the dirt", "video_id": "video11325", "sen_id": 212644}, {"caption": "a black snake is moving around in the sand", "video_id": "video11325", "sen_id": 212645}, {"caption": "a large skinny snake is resting in the path", "video_id": "video11325", "sen_id": 212646}, {"caption": "a snack slithers across the sand on a warm day with lots of grass around", "video_id": "video11325", "sen_id": 212647}, {"caption": "this video capture the snake in road side area and movement", "video_id": "video11325", "sen_id": 212648}, {"caption": "a black snack slithers on the side of the road", "video_id": "video11325", "sen_id": 212649}, {"caption": "a very large snake is moving in the road when no one is around", "video_id": "video11325", "sen_id": 212650}, {"caption": "there is a snake moving in the road", "video_id": "video11325", "sen_id": 212651}, {"caption": "a long snake on the side of a sandy road slowly moving its tail", "video_id": "video11325", "sen_id": 212652}, {"caption": "one big snake was in the ground looking dangerous", "video_id": "video11325", "sen_id": 212653}, {"caption": "a big black snake is crawling through the sandy road", "video_id": "video11325", "sen_id": 212654}, {"caption": "a snake is moving on the sand on a road", "video_id": "video11325", "sen_id": 212655}, {"caption": "a video of a long snake moving on the sea shore", "video_id": "video11325", "sen_id": 212656}, {"caption": "the snake was lying on the road some ones are catching their video", "video_id": "video11325", "sen_id": 212657}, {"caption": "a large snake on the side of the road coils and uncoils in the sand", "video_id": "video11325", "sen_id": 212658}, {"caption": "a snake on the road is getting ready to attack", "video_id": "video11325", "sen_id": 212659}, {"caption": "a person is describing the process of some technology products", "video_id": "video11826", "sen_id": 212660}, {"caption": "in a warehouse robots are putting together products while humans check", "video_id": "video11826", "sen_id": 212661}, {"caption": "a microprocessor is made and attached to a circuit board", "video_id": "video11826", "sen_id": 212662}, {"caption": "a video about technology and shows some sort of electronics", "video_id": "video11826", "sen_id": 212663}, {"caption": "computer chips are being made in the factory on the line", "video_id": "video11826", "sen_id": 212664}, {"caption": "people in lab coats are examining electronic products", "video_id": "video11826", "sen_id": 212665}, {"caption": "people in white lab coats are looking at electronics under a magnifying glass", "video_id": "video11826", "sen_id": 212666}, {"caption": "a scientist works in a lab to manufacture computer components", "video_id": "video11826", "sen_id": 212667}, {"caption": "new technology not only requires creativity but flexibility and adaptability", "video_id": "video11826", "sen_id": 212668}, {"caption": "a factory making new technology products while the voice over person talks about the company", "video_id": "video11826", "sen_id": 212669}, {"caption": "a man explaining about how technology requires creativity showing various machines performing their jobs", "video_id": "video11826", "sen_id": 212670}, {"caption": "in a factory of some type a mechanical arm is placing parts on product in an assembly line there is also a woman checking the product under a magnifying glass", "video_id": "video11826", "sen_id": 212671}, {"caption": "ther is a person who is cleaning machine parts with help of water in industry", "video_id": "video11826", "sen_id": 212672}, {"caption": "all devices passing automatically and man and woman checking the devices", "video_id": "video11826", "sen_id": 212673}, {"caption": "some machinaries are preparing in a industry", "video_id": "video11826", "sen_id": 212674}, {"caption": "bunch of scientist s working in automated lab with clean room", "video_id": "video11826", "sen_id": 212675}, {"caption": "people are busy in working their routine work", "video_id": "video11826", "sen_id": 212676}, {"caption": "a video that shows the advancement in technology", "video_id": "video11826", "sen_id": 212677}, {"caption": "a man telling about the technology and its features", "video_id": "video11826", "sen_id": 212678}, {"caption": "a machine is making a bunch of things to sell", "video_id": "video11826", "sen_id": 212679}, {"caption": "a man passing a flower to a woman through a little girl", "video_id": "video12839", "sen_id": 212680}, {"caption": "a man picking apples gives a girl a flower and asks her to take it to a woman", "video_id": "video12839", "sen_id": 212681}, {"caption": "a man gives a flower to a little girl so she can run and give it to a girl", "video_id": "video12839", "sen_id": 212682}, {"caption": "a man picking a flower from a tree and handing it to a girl who runs away with it", "video_id": "video12839", "sen_id": 212683}, {"caption": "a man picks a flower out of a tree and hands to a little girl who runs off with it", "video_id": "video12839", "sen_id": 212684}, {"caption": "a man gives a pretty girl a flower and she runs away", "video_id": "video12839", "sen_id": 212685}, {"caption": "a man plucks fruits and calls a girl to fetch the flower to a lady and she runs with it", "video_id": "video12839", "sen_id": 212686}, {"caption": "a man picking a flower from a tree and handing off to a young girl who runs off with it", "video_id": "video12839", "sen_id": 212687}, {"caption": "a child is running with a flower in her hand", "video_id": "video12839", "sen_id": 212688}, {"caption": "a little girl runs up to a man and gets a flower and runs off", "video_id": "video12839", "sen_id": 212689}, {"caption": "a young man gives an adorable girl something to deliver", "video_id": "video12839", "sen_id": 212690}, {"caption": "a man on a ladder picks a flower from a tree and gives it to a little girl to give to someone else", "video_id": "video12839", "sen_id": 212691}, {"caption": "a guy gives something to a small girl to handover it someone", "video_id": "video12839", "sen_id": 212692}, {"caption": "clipping from a film beginning of a romance", "video_id": "video12839", "sen_id": 212693}, {"caption": "a man picking a flower from a tree that he hands to a small child who runs off to give it to the woman he picked it for", "video_id": "video12839", "sen_id": 212694}, {"caption": "a man plucking a fruit from the tree", "video_id": "video12839", "sen_id": 212695}, {"caption": "a boy plugging the flower and sends it through a little girl", "video_id": "video12839", "sen_id": 212696}, {"caption": "a man is picking a piece of fruit and gives it to a young girl", "video_id": "video12839", "sen_id": 212697}, {"caption": "a clip from a movie in which a 6 year old girl runs through an olive orchard to give a girl flowers", "video_id": "video12839", "sen_id": 212698}, {"caption": "some people are interacting out side", "video_id": "video12839", "sen_id": 212699}, {"caption": "a group of men in a laboratory analyzing crystals", "video_id": "video11024", "sen_id": 212700}, {"caption": "commentary and scenes about scientists working on telephone line technologies", "video_id": "video11024", "sen_id": 212701}, {"caption": "man talking about laboratory processes for chemists to create quartz", "video_id": "video11024", "sen_id": 212702}, {"caption": "bell systems developed low cost quartz originally polished quartz can cost more than gold", "video_id": "video11024", "sen_id": 212703}, {"caption": "a man was describing how bell telephone laboratories created low cost quartz", "video_id": "video11024", "sen_id": 212704}, {"caption": "a man holds a transparent crystalline object while he turns it in his hands", "video_id": "video11024", "sen_id": 212705}, {"caption": "a man is drawing lines on a crystal and working with others in a laboratory", "video_id": "video11024", "sen_id": 212706}, {"caption": "there is a man drawing with a pen", "video_id": "video11024", "sen_id": 212707}, {"caption": "the one man is designing on paper and others are doing something", "video_id": "video11024", "sen_id": 212708}, {"caption": "guy drew the stripes using the black color then he shows that to another guys its look like research", "video_id": "video11024", "sen_id": 212709}, {"caption": "a group of men are picking up and drawing on stones", "video_id": "video11024", "sen_id": 212710}, {"caption": "three men working together to keep crystal s low and supply unlimited", "video_id": "video11024", "sen_id": 212711}, {"caption": "a vintage movie show three men researching about something", "video_id": "video11024", "sen_id": 212712}, {"caption": "a woman is making a drawing of an object and some scientists are experimenting in a lab", "video_id": "video11024", "sen_id": 212713}, {"caption": "one chemist wearing a lab coat and two engineers wearing white shirts and ties are working together in a lab making quartz", "video_id": "video11024", "sen_id": 212714}, {"caption": "there are drawingdone on the rock in accient times", "video_id": "video11024", "sen_id": 212715}, {"caption": "three men trying to come up with ideas about the machine", "video_id": "video11024", "sen_id": 212716}, {"caption": "a man see the stone with white and search this stone diamond or other", "video_id": "video11024", "sen_id": 212717}, {"caption": "an older video of men in a laboratory", "video_id": "video11024", "sen_id": 212718}, {"caption": "a person is holding a scrap piece of paper", "video_id": "video11024", "sen_id": 212719}, {"caption": "i woman is cutting green peppers tomatoes and eggplant on a cutting board", "video_id": "video10076", "sen_id": 212720}, {"caption": "a person is slicing green peppers tomatoes and eggplant", "video_id": "video10076", "sen_id": 212721}, {"caption": "a person is slicing up green peppers tomatoes and eggplant", "video_id": "video10076", "sen_id": 212722}, {"caption": "someone cuts up celery and red tomatoes on a white surface", "video_id": "video10076", "sen_id": 212723}, {"caption": "an unseen person slices green onions tomatos and eggplant on a white cutting board", "video_id": "video10076", "sen_id": 212724}, {"caption": "a chef slices vegetables on a large white cutting board", "video_id": "video10076", "sen_id": 212725}, {"caption": "two hands carefully slice white onions green peppers and red tomatoes on a white cutting board and place the vegetables into a metal pot before cutting purple eggplant", "video_id": "video10076", "sen_id": 212726}, {"caption": "a video on how to make a dish with tomatoes and eggplant", "video_id": "video10076", "sen_id": 212727}, {"caption": "woman cutting vegetables on the table", "video_id": "video10076", "sen_id": 212728}, {"caption": "a video of instructions on how to prepare a dish", "video_id": "video10076", "sen_id": 212729}, {"caption": "one man cooking in kitchen some tasty recipes", "video_id": "video10076", "sen_id": 212730}, {"caption": "a person is slicing a green bell pepper tomatoes and eggplants on a cutting board", "video_id": "video10076", "sen_id": 212731}, {"caption": "a woman chopping some ingredients ontop of the working surface", "video_id": "video10076", "sen_id": 212732}, {"caption": "making the south indian vegetables item and the lady cut the vegetabls in the chopping baord in very well", "video_id": "video10076", "sen_id": 212733}, {"caption": "a person is cutting the capsicum and tomato", "video_id": "video10076", "sen_id": 212734}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10076", "sen_id": 212735}, {"caption": "someone carefully chopping tomatoes and green peppers while adding them to a pot", "video_id": "video10076", "sen_id": 212736}, {"caption": "ingreedients are being chopped by the cook", "video_id": "video10076", "sen_id": 212737}, {"caption": "guy chopping vegetables and putting them in a can", "video_id": "video10076", "sen_id": 212738}, {"caption": "in a kitchen a person cutting green onion tomatoes and eggplant in to pieces and kept into a vessel", "video_id": "video10076", "sen_id": 212739}, {"caption": "group of men joking and conversing at dinner table with each other", "video_id": "video10813", "sen_id": 212740}, {"caption": "man in an orange dress shirt seated and having dinner with friends", "video_id": "video10813", "sen_id": 212741}, {"caption": "man wearing a bright orange shirt arguing with his friends at a restaurant", "video_id": "video10813", "sen_id": 212742}, {"caption": "a man in an orange shirt sits at a table with two other men", "video_id": "video10813", "sen_id": 212743}, {"caption": "three men sitting at a table and talking to each other", "video_id": "video10813", "sen_id": 212744}, {"caption": "three men are sepeaking to each other in spanish", "video_id": "video10813", "sen_id": 212745}, {"caption": "a man in red shirt is talking with others in the table having food", "video_id": "video10813", "sen_id": 212746}, {"caption": "friends are at dining table in the college canteen and engaged in a talk", "video_id": "video10813", "sen_id": 212747}, {"caption": "in the hotel the south indian character are waiting for food they talking some important matter", "video_id": "video10813", "sen_id": 212748}, {"caption": "a trio of gentlemen hold discussion while seated at a table in a busy restaurant", "video_id": "video10813", "sen_id": 212749}, {"caption": "three men are sitting in a busy restaurant and talking with each other", "video_id": "video10813", "sen_id": 212750}, {"caption": "the man in a red blouse is tlking among people seated on the table taking a meal", "video_id": "video10813", "sen_id": 212751}, {"caption": "a man sits with some friends while they talk", "video_id": "video10813", "sen_id": 212752}, {"caption": "three men are sitting around a table at a restaurant talking", "video_id": "video10813", "sen_id": 212753}, {"caption": "indian commercial of a group of men sitting around a table together", "video_id": "video10813", "sen_id": 212754}, {"caption": "some people are sitting and dining across a table", "video_id": "video10813", "sen_id": 212755}, {"caption": "three guys are sitting on the table and all are talking", "video_id": "video10813", "sen_id": 212756}, {"caption": "three men at an outdoor table of a restaurant talking amongst eachother", "video_id": "video10813", "sen_id": 212757}, {"caption": "three indian men sit around a table and chat while the logo zoom is shown in the corner of the frame", "video_id": "video10813", "sen_id": 212758}, {"caption": "three persons speaking each other in a hotel in a movie", "video_id": "video10813", "sen_id": 212759}, {"caption": "bbc hosts a discussion about political elections and reform", "video_id": "video11439", "sen_id": 212760}, {"caption": "a man and two women are on a discussion portion of the world news talking about foreign policy reform", "video_id": "video11439", "sen_id": 212761}, {"caption": "commentators discuss how reforms are needed in the european union", "video_id": "video11439", "sen_id": 212762}, {"caption": "a man is speaking with two women about issues that need to be resolved", "video_id": "video11439", "sen_id": 212763}, {"caption": "a guy interviewing a very pretty young lady", "video_id": "video11439", "sen_id": 212764}, {"caption": "a woman with long dark hair and a white shirt is being interviewed", "video_id": "video11439", "sen_id": 212765}, {"caption": "a man in suit questioning a lady in white lady responds to that question", "video_id": "video11439", "sen_id": 212766}, {"caption": "a man and lady talking together and laughtig", "video_id": "video11439", "sen_id": 212767}, {"caption": "a newscaster interviews a woman about upcoming elections in europe", "video_id": "video11439", "sen_id": 212768}, {"caption": "players are very brilliantly playing table tennis and they enjoy it", "video_id": "video11439", "sen_id": 212769}, {"caption": "in a news show a women is having debate with other news anchors", "video_id": "video11439", "sen_id": 212770}, {"caption": "honorable lady nina schick is speaking in bbc tv channel who is a director of communications at the london office of the award-winning eu policy think tank open europe", "video_id": "video11439", "sen_id": 212771}, {"caption": "bbc news telecast in news channel and very important news in", "video_id": "video11439", "sen_id": 212772}, {"caption": "a man and woman are discussing issues at a news desk", "video_id": "video11439", "sen_id": 212773}, {"caption": "a man on the news is talking to a woman", "video_id": "video11439", "sen_id": 212774}, {"caption": "a man and a woman discuss the news as global news scrolls the bottom of the screen", "video_id": "video11439", "sen_id": 212775}, {"caption": "global bbc world news croatia women speaks", "video_id": "video11439", "sen_id": 212776}, {"caption": "a news anchor is taking an interview of a woman", "video_id": "video11439", "sen_id": 212777}, {"caption": "an old man is asking question to a female guest on a news show", "video_id": "video11439", "sen_id": 212778}, {"caption": "a woman with brown hair is talking about something", "video_id": "video11439", "sen_id": 212779}, {"caption": "a person on a stage singing then several other scenes are shown", "video_id": "video11967", "sen_id": 212780}, {"caption": "a man in a dark coat stands on top of a building and looks out at a city", "video_id": "video11967", "sen_id": 212781}, {"caption": "a man stares into the distance then flashes of him with a woman appear followed by flashes of coffins and then fireworks", "video_id": "video11967", "sen_id": 212782}, {"caption": "a row of caskets covered by british flags are lined up in an open area", "video_id": "video11967", "sen_id": 212783}, {"caption": "six scenes faded in then out as somber music played in the background", "video_id": "video11967", "sen_id": 212784}, {"caption": "movie scenes of romance beautiful lights and hardships", "video_id": "video11967", "sen_id": 212785}, {"caption": "a man stands in front of the kremlin an african american woman and the man share an embrace the man stands in front of flag draped coffins while a sultry singer sings", "video_id": "video11967", "sen_id": 212786}, {"caption": "a man in a black coat stands and overlooks a city then a woman shaves a man s face", "video_id": "video11967", "sen_id": 212787}, {"caption": "segment taken from a video clip with dramatic female singing", "video_id": "video11967", "sen_id": 212788}, {"caption": "a roamntic song is being played of holding ur breath and feel the earth move", "video_id": "video11967", "sen_id": 212789}, {"caption": "a man stands on a roof overlooking a city then other city scenes", "video_id": "video11967", "sen_id": 212790}, {"caption": "sad pop music plays as a cityscape is filmed", "video_id": "video11967", "sen_id": 212791}, {"caption": "a person standing on the building a girl shave to her boy friend and a girl stand alone", "video_id": "video11967", "sen_id": 212792}, {"caption": "a woman is singing a song about hold your breath", "video_id": "video11967", "sen_id": 212793}, {"caption": "music plays in the background while a man and woman is in love", "video_id": "video11967", "sen_id": 212794}, {"caption": "a guy is standing around a city out side", "video_id": "video11967", "sen_id": 212795}, {"caption": "a man look out into a city with beautiful architecture a woman is intimately shaving his face and then more beautiful locations appear", "video_id": "video11967", "sen_id": 212796}, {"caption": "a man is standing on top of a building and getting his face shaved", "video_id": "video11967", "sen_id": 212797}, {"caption": "a man stands looking at a city then a girl shaves him and city views appear", "video_id": "video11967", "sen_id": 212798}, {"caption": "a woman inside of a house is doing some thing", "video_id": "video11967", "sen_id": 212799}, {"caption": "a man is in a workshop building some kind of electrical component to a computer", "video_id": "video12357", "sen_id": 212800}, {"caption": "a man is handling computer tech parts and putting them together", "video_id": "video12357", "sen_id": 212801}, {"caption": "a person is assembling an electronic component on a table", "video_id": "video12357", "sen_id": 212802}, {"caption": "a man in a purple shirt pieces together some electronics", "video_id": "video12357", "sen_id": 212803}, {"caption": "a man with a purple shirt works on a black box", "video_id": "video12357", "sen_id": 212804}, {"caption": "a you-tube video displaying how to put together something", "video_id": "video12357", "sen_id": 212805}, {"caption": "a man assembling parts of a computer on a desk", "video_id": "video12357", "sen_id": 212806}, {"caption": "a man in a purple shirt builds a black box", "video_id": "video12357", "sen_id": 212807}, {"caption": "a man stands by a counter while putting together a computer", "video_id": "video12357", "sen_id": 212808}, {"caption": "a man is assembling a computer while narrating to another man", "video_id": "video12357", "sen_id": 212809}, {"caption": "there is a tshirt man fixing a product on the table", "video_id": "video12357", "sen_id": 212810}, {"caption": "a man wearing a purple shirt demonstrates the frame of an electrical device", "video_id": "video12357", "sen_id": 212811}, {"caption": "a person builds a computer from scratch", "video_id": "video12357", "sen_id": 212812}, {"caption": "man in blue shirt is making the product with plastic pieces", "video_id": "video12357", "sen_id": 212813}, {"caption": "the man is putting computer parts together in a desk top computer", "video_id": "video12357", "sen_id": 212814}, {"caption": "a man in a blue twitch shirt pulling out a metal frame and installing a component in it", "video_id": "video12357", "sen_id": 212815}, {"caption": "a white guy with brown hair and twitch tv shirt working on electronics", "video_id": "video12357", "sen_id": 212816}, {"caption": "video will not play", "video_id": "video12357", "sen_id": 212817}, {"caption": "a person with blue tshirt fixing the ic circuits in the board", "video_id": "video12357", "sen_id": 212818}, {"caption": "a man in a purple shirt is building a computer", "video_id": "video12357", "sen_id": 212819}, {"caption": "a person is scooping ice into a bowl with tongs", "video_id": "video11064", "sen_id": 212820}, {"caption": "a young woman uses long silver tongs to remove ice cubes from a small pot into two white bowls before using a metal spoon to quickly scoop out the ice cubes", "video_id": "video11064", "sen_id": 212821}, {"caption": "a person grabbing ice and putting it into a bowl", "video_id": "video11064", "sen_id": 212822}, {"caption": "a woman in sky blue is transforming the ice cubes from one bowl to another bowl", "video_id": "video11064", "sen_id": 212823}, {"caption": "a woman in sky blue is pouring some ice cubes in a bowl", "video_id": "video11064", "sen_id": 212824}, {"caption": "someone in a kitchen placing ice cubes in two white bowls", "video_id": "video11064", "sen_id": 212825}, {"caption": "a woman uses tongs to place ice in a bowl", "video_id": "video11064", "sen_id": 212826}, {"caption": "a person transfering ice cubes from one container to another", "video_id": "video11064", "sen_id": 212827}, {"caption": "two ladies in a kitchen are adding ice cubes to two bowls to chill them", "video_id": "video11064", "sen_id": 212828}, {"caption": "a girl in blue dress and bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11064", "sen_id": 212829}, {"caption": "a women is preparing some special food in kitchen", "video_id": "video11064", "sen_id": 212830}, {"caption": "a lady using tongs takes ingredients to two bowls from a vessel", "video_id": "video11064", "sen_id": 212831}, {"caption": "a woman in a kitchen moves ice cubes from a pan into a bowl first with tongs then with a spoon", "video_id": "video11064", "sen_id": 212832}, {"caption": "a girl is placing ice cubes in a bowl on the counter in the kitchen", "video_id": "video11064", "sen_id": 212833}, {"caption": "a kitchen counter with two bowls and a pot of ice cubes then a woman is dishing the ice ber into the bowls", "video_id": "video11064", "sen_id": 212834}, {"caption": "there is a woman cooling some water with icequbes", "video_id": "video11064", "sen_id": 212835}, {"caption": "in the kitchen the chef is taking glass qube at the pot some other are behind", "video_id": "video11064", "sen_id": 212836}, {"caption": "a woman in blue is using tongs to take ice out of a pan into bowls then uses a spoon", "video_id": "video11064", "sen_id": 212837}, {"caption": "women in a blue shirt grabbing ice from a metal pot", "video_id": "video11064", "sen_id": 212838}, {"caption": "a woman taking ice from a silver bucket and putting it into two bowls", "video_id": "video11064", "sen_id": 212839}, {"caption": "an enthusiastic woman is holding a reacting baby upright in a swimming pool while they are bobbing up and down in the water", "video_id": "video12758", "sen_id": 212840}, {"caption": "a woman is holding a baby in a public indoor pool bouncing up and down in the water an older little girl swims near them", "video_id": "video12758", "sen_id": 212841}, {"caption": "a woman bounces a baby in the water of an indoor pool the baby smiles and kicks as another woman talks to them", "video_id": "video12758", "sen_id": 212842}, {"caption": "a woman wades in a swimming pool with her baby", "video_id": "video12758", "sen_id": 212843}, {"caption": "{}", "video_id": "video12758", "sen_id": 212844}, {"caption": "a woman is in a swimming pool teaching her baby to swim", "video_id": "video12758", "sen_id": 212845}, {"caption": "a man is playing with his kid in water as a small girl is with them", "video_id": "video12758", "sen_id": 212846}, {"caption": "an adult holds a small child in a swimsuit in an indoor pool", "video_id": "video12758", "sen_id": 212847}, {"caption": "women in pool holding kid and jumping", "video_id": "video12758", "sen_id": 212848}, {"caption": "a man teaches his child how to swim in the pool they both enjoy in the action", "video_id": "video12758", "sen_id": 212849}, {"caption": "mom with her baby is showing how to swim looking at the camera", "video_id": "video12758", "sen_id": 212850}, {"caption": "a mother and baby swimming in the water with other people", "video_id": "video12758", "sen_id": 212851}, {"caption": "a woman and her child are playing in the pool water", "video_id": "video12758", "sen_id": 212852}, {"caption": "women playing with kid in water", "video_id": "video12758", "sen_id": 212853}, {"caption": "this video clip is about a swimming pool video", "video_id": "video12758", "sen_id": 212854}, {"caption": "a lady and a baby are swimming in a pool", "video_id": "video12758", "sen_id": 212855}, {"caption": "a man showing to kids how to swim on water", "video_id": "video12758", "sen_id": 212856}, {"caption": "a woman in a black bathing suit bounces a baby on the surface of a pool", "video_id": "video12758", "sen_id": 212857}, {"caption": "a boy try to swim in the pool with the help of his father the cute boy is so happy", "video_id": "video12758", "sen_id": 212858}, {"caption": "in a pool a woman in a bathing suit bounces her toddler a boy in and out of the water", "video_id": "video12758", "sen_id": 212859}, {"caption": "a group of men are pushing a large metal door", "video_id": "video11609", "sen_id": 212860}, {"caption": "many men in only black pants pushing open a very large door in front of a camera crew", "video_id": "video11609", "sen_id": 212861}, {"caption": "eight shirtless men push a large ornate door open on a sound stage", "video_id": "video11609", "sen_id": 212862}, {"caption": "two groups of actors push open large doors on a movie sound stage", "video_id": "video11609", "sen_id": 212863}, {"caption": "men from the movie '300' push open a very large door", "video_id": "video11609", "sen_id": 212864}, {"caption": "several men in costumes push open a giant door", "video_id": "video11609", "sen_id": 212865}, {"caption": "on a movie set a director is shown filming a scene in which men are pushing a gigantic door open", "video_id": "video11609", "sen_id": 212866}, {"caption": "a camera crew films many men opening a large door", "video_id": "video11609", "sen_id": 212867}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11609", "sen_id": 212868}, {"caption": "a group of 8 men pushing a large door open", "video_id": "video11609", "sen_id": 212869}, {"caption": "a group of people are pushing a giant door", "video_id": "video11609", "sen_id": 212870}, {"caption": "there are someone pushing back the gate while shooting", "video_id": "video11609", "sen_id": 212871}, {"caption": "the men are pushing a large door to open and camera crew shoots it", "video_id": "video11609", "sen_id": 212872}, {"caption": "a men are opening the in the film shooting", "video_id": "video11609", "sen_id": 212873}, {"caption": "bunch of shirtless guys in medival outfit opening the giant door", "video_id": "video11609", "sen_id": 212874}, {"caption": "some people are filming a movie clip", "video_id": "video11609", "sen_id": 212875}, {"caption": "there is someone opening a gate in front of a camera", "video_id": "video11609", "sen_id": 212876}, {"caption": "in shooting a movie many mens pulling one door", "video_id": "video11609", "sen_id": 212877}, {"caption": "on a movie set men are driving open a huge door", "video_id": "video11609", "sen_id": 212878}, {"caption": "a person taking the video eight men in black pulling the huge door", "video_id": "video11609", "sen_id": 212879}, {"caption": "a video blog about crackers cream cheese and honey", "video_id": "video12341", "sen_id": 212880}, {"caption": "a woman suggests a recipe for someone who wants a snack that is salty and sweet", "video_id": "video12341", "sen_id": 212881}, {"caption": "a woman with dark hair and black shirt is talking about a sweet and salty snack starting with a raisen cracker blue cheese and honey", "video_id": "video12341", "sen_id": 212882}, {"caption": "a woman speads some brie cheese and drizzles homey on a small raisin cracker", "video_id": "video12341", "sen_id": 212883}, {"caption": "a lady in black dress is preparing some bread materials", "video_id": "video12341", "sen_id": 212884}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12341", "sen_id": 212885}, {"caption": "a woman is explaining about a food item in a channel", "video_id": "video12341", "sen_id": 212886}, {"caption": "the woman making some sandwich with alittle beat of honey", "video_id": "video12341", "sen_id": 212887}, {"caption": "one women adding honey to the recipe prepared", "video_id": "video12341", "sen_id": 212888}, {"caption": "a woman in black dress showing to make a food bread", "video_id": "video12341", "sen_id": 212889}, {"caption": "a women is preparing a dish to eat which she made earlier", "video_id": "video12341", "sen_id": 212890}, {"caption": "a black dressing woman preparing a dish in her house", "video_id": "video12341", "sen_id": 212891}, {"caption": "a woman is describing a way to prepare a cracker with honey and blue cheese", "video_id": "video12341", "sen_id": 212892}, {"caption": "a woman is making a sweet dish with a honey", "video_id": "video12341", "sen_id": 212893}, {"caption": "a girl inside kitchen applying cream on biscuits with knife to prepare serve to eat", "video_id": "video12341", "sen_id": 212894}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video12341", "sen_id": 212895}, {"caption": " wearing a black pullover sweater over a dotted blouse is talking in front of a huge urn on top of a bookshelf by a large window", "video_id": "video12341", "sen_id": 212896}, {"caption": "a girl wearing a black dress pics the piece of meat and puts cheese and olive oil on it", "video_id": "video12341", "sen_id": 212897}, {"caption": "a woman suggests drizzling honey on crackers and cheese", "video_id": "video12341", "sen_id": 212898}, {"caption": "someone is making some kind of small thing", "video_id": "video12341", "sen_id": 212899}, {"caption": "these are highlights from a women's rugby game", "video_id": "video12284", "sen_id": 212900}, {"caption": "a rugby player runs down the field and scores a goal", "video_id": "video12284", "sen_id": 212901}, {"caption": "female rugby players are involved in a game in a large stadium", "video_id": "video12284", "sen_id": 212902}, {"caption": "all persons are playing throw ball on a ground", "video_id": "video12284", "sen_id": 212903}, {"caption": "two team players are playing rugby on ground", "video_id": "video12284", "sen_id": 212904}, {"caption": "a two team of a girls were playing a rugby", "video_id": "video12284", "sen_id": 212905}, {"caption": "a white and blue dresses girls playing game inside stadium ball catching in hand audience watching", "video_id": "video12284", "sen_id": 212906}, {"caption": "in he women handball game a women is running ahead of others to score the goal for her team", "video_id": "video12284", "sen_id": 212907}, {"caption": "hip hop music is playing while scenes from female rugby games are shown", "video_id": "video12284", "sen_id": 212908}, {"caption": "rugby players are running on the green grassy ground", "video_id": "video12284", "sen_id": 212909}, {"caption": "a game the field looks green each player try to snatch the ball", "video_id": "video12284", "sen_id": 212910}, {"caption": "a white t shirt and blue t shirt wearing dress girls playing game inside stadium ball in hands", "video_id": "video12284", "sen_id": 212911}, {"caption": "some females are playing rugby on a field", "video_id": "video12284", "sen_id": 212912}, {"caption": "it was a rugby match playing by women team where one of them have got the ball and she run toward her goal to make a points", "video_id": "video12284", "sen_id": 212913}, {"caption": "a group of people are playing a game on a field", "video_id": "video12284", "sen_id": 212914}, {"caption": "two girl teams are playing rugby and one girl is thrown the ball and runs for a down", "video_id": "video12284", "sen_id": 212915}, {"caption": "in ground two volleyball teams are competing some people are taking ball and running some people are trying to stop", "video_id": "video12284", "sen_id": 212916}, {"caption": "there is a football match betweem two team playing on ground", "video_id": "video12284", "sen_id": 212917}, {"caption": "women players can playing rugby very interesting to watch", "video_id": "video12284", "sen_id": 212918}, {"caption": "all woman team competing each other in a soccer game", "video_id": "video12284", "sen_id": 212919}, {"caption": "women's volleyball and the winning point goes to the gators", "video_id": "video11487", "sen_id": 212920}, {"caption": "two womens volleyball teams play in a match in a large indoor stadium", "video_id": "video11487", "sen_id": 212921}, {"caption": "an announcer is talking while a volleyball game is being played between a team in read and a team in white", "video_id": "video11487", "sen_id": 212922}, {"caption": "two female volleyball teams play a match in a large indoor stadium", "video_id": "video11487", "sen_id": 212923}, {"caption": "two teams are playing volleyball in an arena", "video_id": "video11487", "sen_id": 212924}, {"caption": "two teams of women play a game of competitive volleyball", "video_id": "video11487", "sen_id": 212925}, {"caption": "females play volleyball while an announcer is talking", "video_id": "video11487", "sen_id": 212926}, {"caption": "people are playing volleyball in a gymnasium dressed in red and white", "video_id": "video11487", "sen_id": 212927}, {"caption": "college women playing a competitive indoor tennis match", "video_id": "video11487", "sen_id": 212928}, {"caption": "women in college on a indoor volley ball court making a goal", "video_id": "video11487", "sen_id": 212929}, {"caption": "two teams are playing volley ball on a court", "video_id": "video11487", "sen_id": 212930}, {"caption": "a women s volleyball match plays out from an overhead view", "video_id": "video11487", "sen_id": 212931}, {"caption": "group of players were playing volley ball in the stadium", "video_id": "video11487", "sen_id": 212932}, {"caption": "two teams of ladies playing the volley ball on a court with crowd watching it", "video_id": "video11487", "sen_id": 212933}, {"caption": "two teams of women playing volleyball", "video_id": "video11487", "sen_id": 212934}, {"caption": "a spectacular play of volleyball of women taking place in the court", "video_id": "video11487", "sen_id": 212935}, {"caption": "a woman explain the play in the ground", "video_id": "video11487", "sen_id": 212936}, {"caption": "two women volleyball teams competing in a match up", "video_id": "video11487", "sen_id": 212937}, {"caption": "volleyball players line up waiting for the serve", "video_id": "video11487", "sen_id": 212938}, {"caption": "bunch of volleyball players in red and white jersey s playing against each other in a match", "video_id": "video11487", "sen_id": 212939}, {"caption": "a series of professionally shot pictures of young black women who are all smiling", "video_id": "video11991", "sen_id": 212940}, {"caption": "beautiful women are showcased in a variety of different outfits", "video_id": "video11991", "sen_id": 212941}, {"caption": "pictures of various attractive women posing for the camera are shown", "video_id": "video11991", "sen_id": 212942}, {"caption": "large chested african women pose for fashion photographs and glamour shots", "video_id": "video11991", "sen_id": 212943}, {"caption": "a slideshow of beautiful women are showcased with no music", "video_id": "video11991", "sen_id": 212944}, {"caption": "various beautiful women on a slideshow are showcased", "video_id": "video11991", "sen_id": 212945}, {"caption": "multiple women are shown wearing different dresses and outfits", "video_id": "video11991", "sen_id": 212946}, {"caption": "a picture montage of various different beautiful women plays on the screen", "video_id": "video11991", "sen_id": 212947}, {"caption": "the glamour girls stand in different poses so as to expose their bosoms and legs", "video_id": "video11991", "sen_id": 212948}, {"caption": "there are pictures of many different african american girls", "video_id": "video11991", "sen_id": 212949}, {"caption": "multiple photos of smiling women are in a slideshow", "video_id": "video11991", "sen_id": 212950}, {"caption": "beautiful women in different dresses", "video_id": "video11991", "sen_id": 212951}, {"caption": "still of hot sexy girl they have very big boomlittle acquard to see", "video_id": "video11991", "sen_id": 212952}, {"caption": "looking for some sexy makeover tips well this video has several ideas", "video_id": "video11991", "sen_id": 212953}, {"caption": "photos of several women of color showing their attributes", "video_id": "video11991", "sen_id": 212954}, {"caption": "black women in various outfits being shown as they pose for the camera", "video_id": "video11991", "sen_id": 212955}, {"caption": "women sits and poses in various with various hair styles", "video_id": "video11991", "sen_id": 212956}, {"caption": "a girl still image of picture shown on screen with diferent dresses displaying on screen", "video_id": "video11991", "sen_id": 212957}, {"caption": "a changing view of different women are shown one at a time", "video_id": "video11991", "sen_id": 212958}, {"caption": "a black woman is smiling about some thing", "video_id": "video11991", "sen_id": 212959}, {"caption": "this is a driver's view from an orange race car", "video_id": "video11558", "sen_id": 212960}, {"caption": "a racer in an orange car makes sharp turns under banners and past trees on the outdoor track nearing spectator stadium seating", "video_id": "video11558", "sen_id": 212961}, {"caption": "a man is driving a red formula 1 car on an oval race track", "video_id": "video11558", "sen_id": 212962}, {"caption": "a race car drive speeds around a tight turning course in front of a large crowd", "video_id": "video11558", "sen_id": 212963}, {"caption": "a man is racing in a red race car while an announcer narrates", "video_id": "video11558", "sen_id": 212964}, {"caption": "there is a man driving a car with powerful engine", "video_id": "video11558", "sen_id": 212965}, {"caption": "cockpit view of a formula 1 car doing a lap", "video_id": "video11558", "sen_id": 212966}, {"caption": "someone participated on the car race and capture the road", "video_id": "video11558", "sen_id": 212967}, {"caption": "a man is diving a car very fast in race", "video_id": "video11558", "sen_id": 212968}, {"caption": "you can see the inside of a race car as the driver takes it around the track", "video_id": "video11558", "sen_id": 212969}, {"caption": "racer racing 160km up to 190km per minute while announcer describes it all", "video_id": "video11558", "sen_id": 212970}, {"caption": "f1 race and the orange car is rushing to the final lap point", "video_id": "video11558", "sen_id": 212971}, {"caption": "an announcer giving a blow by blow report of a car race", "video_id": "video11558", "sen_id": 212972}, {"caption": "a race car driver racing around a track", "video_id": "video11558", "sen_id": 212973}, {"caption": "there was a camera mounted in the race driver s car", "video_id": "video11558", "sen_id": 212974}, {"caption": "a man narrates a dash cam video of a formula one racing car drivers trek around a track", "video_id": "video11558", "sen_id": 212975}, {"caption": "dashcam on the frame of what looks like a f1 race car running a track", "video_id": "video11558", "sen_id": 212976}, {"caption": "a race car driver is driving a car on a track", "video_id": "video11558", "sen_id": 212977}, {"caption": "a formula race car driver races around track as announcer describes events", "video_id": "video11558", "sen_id": 212978}, {"caption": "a race car is driving around on a track", "video_id": "video11558", "sen_id": 212979}, {"caption": "a woman wearing a brown coat and helmet is thrown from a brown horse", "video_id": "video10475", "sen_id": 212980}, {"caption": "a child rides on the back of a horse as an adult male tries to calm the horse", "video_id": "video10475", "sen_id": 212981}, {"caption": "a man riding a horse and then falling off", "video_id": "video10475", "sen_id": 212982}, {"caption": "a person falls from a jumping horse as electronic music plays in the background", "video_id": "video10475", "sen_id": 212983}, {"caption": "a person is on a horse with a trainer holding the horse in a round sand arena", "video_id": "video10475", "sen_id": 212984}, {"caption": "a man trying to tame a horse with a rider on the back of the horse and horse makes the rider fall down from his back", "video_id": "video10475", "sen_id": 212985}, {"caption": "a men is pulling hores with rope and other person who was sitting fell down", "video_id": "video10475", "sen_id": 212986}, {"caption": "man riding horse and it fells him down trainer helpless", "video_id": "video10475", "sen_id": 212987}, {"caption": "a girl gets thrown of her horse while riding", "video_id": "video10475", "sen_id": 212988}, {"caption": "girl in brown jacket falling from the horse", "video_id": "video10475", "sen_id": 212989}, {"caption": "a man riding a brown horse and he suddenly fell down", "video_id": "video10475", "sen_id": 212990}, {"caption": "an old man with a horse is standing", "video_id": "video10475", "sen_id": 212991}, {"caption": "one man talk something horse jurks and fell down one man", "video_id": "video10475", "sen_id": 212992}, {"caption": "a trainer in black shirt and horse rider ryding and skidding him down", "video_id": "video10475", "sen_id": 212993}, {"caption": "there is a horse jumping around on sand", "video_id": "video10475", "sen_id": 212994}, {"caption": "two persons are giving training to a horse", "video_id": "video10475", "sen_id": 212995}, {"caption": "a man who is trying to control the horse is thrown off by it while another tries to calm it down", "video_id": "video10475", "sen_id": 212996}, {"caption": "a man holds a rope connected to a horse that has a human on its back", "video_id": "video10475", "sen_id": 212997}, {"caption": "the rider was riding the horse near a lake and mountain", "video_id": "video10475", "sen_id": 212998}, {"caption": "a man rides a brown bucking horse until he eventually gets thrown off", "video_id": "video10475", "sen_id": 212999}, {"caption": "a motorcross rider's jumps are played in multiple visual clips", "video_id": "video11556", "sen_id": 213000}, {"caption": "a person is performing a motocross trick in the air", "video_id": "video11556", "sen_id": 213001}, {"caption": "a biker goes over a large building for a jump", "video_id": "video11556", "sen_id": 213002}, {"caption": "a daredevil jumps his motorcycle over ramps at an x-games event", "video_id": "video11556", "sen_id": 213003}, {"caption": "a seventeen year old boy is jumping high on his dirt bike", "video_id": "video11556", "sen_id": 213004}, {"caption": "a person is riding a dirt bike in a competition for an event", "video_id": "video11556", "sen_id": 213005}, {"caption": "a 17 years old youngster is riding motorcycle performing great stun in the air", "video_id": "video11556", "sen_id": 213006}, {"caption": "a man wearing yellow and red shirt riding a bike", "video_id": "video11556", "sen_id": 213007}, {"caption": "a person does tricks over large dirt mounds on a motorbike", "video_id": "video11556", "sen_id": 213008}, {"caption": "motorcross rider in red and yellow outfit jumping across a ramp", "video_id": "video11556", "sen_id": 213009}, {"caption": "a man is on a dirt bike on a dirt hill doing tricks", "video_id": "video11556", "sen_id": 213010}, {"caption": "a motor bike launching into the air and going up the ramps", "video_id": "video11556", "sen_id": 213011}, {"caption": "a man riding a yellow and red bike", "video_id": "video11556", "sen_id": 213012}, {"caption": "a motorcyclist going on a run and jumping a ramp", "video_id": "video11556", "sen_id": 213013}, {"caption": "a motorbike contestant competing in front of a large crowd", "video_id": "video11556", "sen_id": 213014}, {"caption": "here we can see a 17 year old guy showing his free style biking skills we can even here from the background saying this guy is the future of the free style motor cycling", "video_id": "video11556", "sen_id": 213015}, {"caption": "a cyclist in multi coloured dress performs feats with his cycle", "video_id": "video11556", "sen_id": 213016}, {"caption": "man doing various extreme motorcycle exhibition routines while a huge crowd is watching", "video_id": "video11556", "sen_id": 213017}, {"caption": "17 year old freestyle motocross dirt bike champion doing stunts", "video_id": "video11556", "sen_id": 213018}, {"caption": "the man is considered to be the future of free style motorcross", "video_id": "video11556", "sen_id": 213019}, {"caption": "person using an editing program with a cartoon running character", "video_id": "video12058", "sen_id": 213020}, {"caption": "a software is being used to create animated video", "video_id": "video12058", "sen_id": 213021}, {"caption": "a small box contains a multi colored character on a black screen", "video_id": "video12058", "sen_id": 213022}, {"caption": "a small animal inside a yellow box moves on the black screen", "video_id": "video12058", "sen_id": 213023}, {"caption": "a person is playing around on the program photoshop", "video_id": "video12058", "sen_id": 213024}, {"caption": "a person is working on a picture in photoshop", "video_id": "video12058", "sen_id": 213025}, {"caption": "an animator is working in photoshop to create a pixelated running person", "video_id": "video12058", "sen_id": 213026}, {"caption": "a person describes and demonstrates a computer program he is using", "video_id": "video12058", "sen_id": 213027}, {"caption": "a tiny cartoon character jumps up and down on a computer screen", "video_id": "video12058", "sen_id": 213028}, {"caption": "a computer generated animation character running with a tan background", "video_id": "video12058", "sen_id": 213029}, {"caption": "a video tutorial on how to use a picture editing software", "video_id": "video12058", "sen_id": 213030}, {"caption": "a monitor is making a cartoon cat dance around a bit", "video_id": "video12058", "sen_id": 213031}, {"caption": "some kind of graphics program interface like photoshop is displayed with a close up of an animated character in the middle of the canvas the closeup shrinks and we see different menu options being toggled through", "video_id": "video12058", "sen_id": 213032}, {"caption": "a little man is running inside of a white box on a computer screen", "video_id": "video12058", "sen_id": 213033}, {"caption": "on the computer someone is editing an animation using a program", "video_id": "video12058", "sen_id": 213034}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video12058", "sen_id": 213035}, {"caption": "a tutorial for 3d design of a fun animated character", "video_id": "video12058", "sen_id": 213036}, {"caption": "a cursor goes to different areas on a screen", "video_id": "video12058", "sen_id": 213037}, {"caption": "a cartoon showing on screen displaying still image and software on screen", "video_id": "video12058", "sen_id": 213038}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video12058", "sen_id": 213039}, {"caption": "a man is holding explosives by a river", "video_id": "video12666", "sen_id": 213040}, {"caption": "in the woods a man without a shirt begins to set up a tent", "video_id": "video12666", "sen_id": 213041}, {"caption": "a shirtless man standing outdoors starts to put together a tent", "video_id": "video12666", "sen_id": 213042}, {"caption": "a shirtless man with brown hair wearing a black hat puts together a fishing pole in a tree filled area", "video_id": "video12666", "sen_id": 213043}, {"caption": "a man in a canoe on a body of water then he is trying to put up a tent as he speaks to a woman laughing as they set up camp", "video_id": "video12666", "sen_id": 213044}, {"caption": "a man in shorts and a cap tries to put together a tent on the beach", "video_id": "video12666", "sen_id": 213045}, {"caption": "a guy trying to hook up some fishing gear", "video_id": "video12666", "sen_id": 213046}, {"caption": "a man puts together the poles of a tent", "video_id": "video12666", "sen_id": 213047}, {"caption": "a shirtless man demonstrates how to set-up tent poles", "video_id": "video12666", "sen_id": 213048}, {"caption": "a man in a red and black life vest kayaks on a choppy ocean bay", "video_id": "video12666", "sen_id": 213049}, {"caption": "a man in a jungle unwrapping a tent and putting it together", "video_id": "video12666", "sen_id": 213050}, {"caption": "a half-naked man is joining two sticks together while talking about about his lack of competence", "video_id": "video12666", "sen_id": 213051}, {"caption": "a man is constructing a fishing rod", "video_id": "video12666", "sen_id": 213052}, {"caption": "a young man wearing a hat is trying to put tent poles together", "video_id": "video12666", "sen_id": 213053}, {"caption": "a couple kayaks and then tries to set up a tent", "video_id": "video12666", "sen_id": 213054}, {"caption": "a man paddling on a boat in the ocean", "video_id": "video12666", "sen_id": 213055}, {"caption": "there is a man wearing no shirt brown swim trunks", "video_id": "video12666", "sen_id": 213056}, {"caption": "a whilte male who is shirtless and bearing a black baseball cap backwards is interviewed on the show worldly couple", "video_id": "video12666", "sen_id": 213057}, {"caption": "two beginning outdoor adventures are trying to figure out how to put up a tent", "video_id": "video12666", "sen_id": 213058}, {"caption": "bearded shirtless guy with cap talking to the camera", "video_id": "video12666", "sen_id": 213059}, {"caption": "a couple is lying in a bed talking to each other", "video_id": "video12397", "sen_id": 213060}, {"caption": "a clip from the today show about an old actor", "video_id": "video12397", "sen_id": 213061}, {"caption": "a news anchor discusses the immediate chemistry in a film clip between actors", "video_id": "video12397", "sen_id": 213062}, {"caption": "a lady and a young man lay in bed and talk to each other", "video_id": "video12397", "sen_id": 213063}, {"caption": "john cusack is laying in bed with another person", "video_id": "video12397", "sen_id": 213064}, {"caption": "the audition tape for an actor's first starring role is shown", "video_id": "video12397", "sen_id": 213065}, {"caption": "a woman and a man or lying in a bed and talking to each other", "video_id": "video12397", "sen_id": 213066}, {"caption": "a man and a woman laying in bed talking", "video_id": "video12397", "sen_id": 213067}, {"caption": "a married couple of a man and a woman in bed having a conversation", "video_id": "video12397", "sen_id": 213068}, {"caption": "three men in suits are talking about a john cusack audition tape followed by two people talking in a bed", "video_id": "video12397", "sen_id": 213069}, {"caption": "a man and a woman lie in bed and talk", "video_id": "video12397", "sen_id": 213070}, {"caption": "a young couple lay back on a bed and stare at each other as they talk", "video_id": "video12397", "sen_id": 213071}, {"caption": "the commentator is explaining the process of audition tapes this particular man had very good chemistry with his co-star", "video_id": "video12397", "sen_id": 213072}, {"caption": "a couple lays on the bed and stares at each other", "video_id": "video12397", "sen_id": 213073}, {"caption": "man and woman are talking while lying on the bed", "video_id": "video12397", "sen_id": 213074}, {"caption": "a man and a woman are laying in a bed while a man narrates the scene", "video_id": "video12397", "sen_id": 213075}, {"caption": "an audition tape is shown while a film critic comments", "video_id": "video12397", "sen_id": 213076}, {"caption": "there is a man and a woman laying in bed and talking to each other", "video_id": "video12397", "sen_id": 213077}, {"caption": "a news reporter tells of an actor s role in a film", "video_id": "video12397", "sen_id": 213078}, {"caption": "a woman is lying in a bed and listening", "video_id": "video12397", "sen_id": 213079}, {"caption": "a woman demonstrates a paper and pencil drawing technique", "video_id": "video11006", "sen_id": 213080}, {"caption": "a woman darkens in the circle which is to become the eye of the bird she is sketching", "video_id": "video11006", "sen_id": 213081}, {"caption": "an artist describes and demonstrates a drawing technique", "video_id": "video11006", "sen_id": 213082}, {"caption": "a woman shows how to draw eyes on a cartoon bird", "video_id": "video11006", "sen_id": 213083}, {"caption": "a video tutorial that uses hands to illustrate how to draw eyes using a graphite pencil", "video_id": "video11006", "sen_id": 213084}, {"caption": "a woman draws on circular eyes inside a larger circle with a pencil on a piece of white paper", "video_id": "video11006", "sen_id": 213085}, {"caption": "a women is drawing a heart with pen on paper", "video_id": "video11006", "sen_id": 213086}, {"caption": "a hand holds a pencil and traces over the round shapes which are underneath the white paper that is divided into four sections", "video_id": "video11006", "sen_id": 213087}, {"caption": "a person is drawing circles with a pencil on paper", "video_id": "video11006", "sen_id": 213088}, {"caption": "a person is drawing on the paper with pencil", "video_id": "video11006", "sen_id": 213089}, {"caption": "there is a woman drawing on a white paper", "video_id": "video11006", "sen_id": 213090}, {"caption": "a person drawing using a yellow pencil on a paper", "video_id": "video11006", "sen_id": 213091}, {"caption": "a woman s voice is describing how to draw", "video_id": "video11006", "sen_id": 213092}, {"caption": "an artist sketches a circle on white paper with a pencil", "video_id": "video11006", "sen_id": 213093}, {"caption": "a woman drawing some thing on a white paper with pencil", "video_id": "video11006", "sen_id": 213094}, {"caption": "there is a women drawing on a paper", "video_id": "video11006", "sen_id": 213095}, {"caption": "someone drawing and describing what they are doing as they are doing it", "video_id": "video11006", "sen_id": 213096}, {"caption": "a woman is draw in the white paper", "video_id": "video11006", "sen_id": 213097}, {"caption": "man driving circles with pencil on white paperboard", "video_id": "video11006", "sen_id": 213098}, {"caption": "a person is drawing circles on a paper", "video_id": "video11006", "sen_id": 213099}, {"caption": "a slideshow shows the london head office and the chelmsford office", "video_id": "video12206", "sen_id": 213100}, {"caption": "there is something impressing matters goin on", "video_id": "video12206", "sen_id": 213101}, {"caption": "an advertisement for a london based office shows an impressive conference room and other office images", "video_id": "video12206", "sen_id": 213102}, {"caption": "more cliks london based head office chelmsford based office", "video_id": "video12206", "sen_id": 213103}, {"caption": "pictures of a london head office shown on video", "video_id": "video12206", "sen_id": 213104}, {"caption": "a commercial for a london based company which seems to be in the business of furniture sales", "video_id": "video12206", "sen_id": 213105}, {"caption": "there a state with thumbs up and there are also some sldi show of pictures", "video_id": "video12206", "sen_id": 213106}, {"caption": "this is a advertisment of inline job the company situated in london", "video_id": "video12206", "sen_id": 213107}, {"caption": "a letter showing like a chelmsford based office", "video_id": "video12206", "sen_id": 213108}, {"caption": "london based head officethe building and the interior is awesome", "video_id": "video12206", "sen_id": 213109}, {"caption": "the luxurious office building has many windows in the front", "video_id": "video12206", "sen_id": 213110}, {"caption": "this video shows london based head office conference room main building and relaxing hall", "video_id": "video12206", "sen_id": 213111}, {"caption": "an advertisement of a chelmsford based office", "video_id": "video12206", "sen_id": 213112}, {"caption": "a cgi advertisment switches between photos of a london financial branch", "video_id": "video12206", "sen_id": 213113}, {"caption": "a logo of a thing is on a building outside", "video_id": "video12206", "sen_id": 213114}, {"caption": "a white hand gives a thumbs up for a loan office ad", "video_id": "video12206", "sen_id": 213115}, {"caption": "london based head office big building and rooms", "video_id": "video12206", "sen_id": 213116}, {"caption": "a building with an unusual glass arched entry way holds the headquarters of a large company", "video_id": "video12206", "sen_id": 213117}, {"caption": "it is the office photos from london head office", "video_id": "video12206", "sen_id": 213118}, {"caption": "the outside of a building and interior are being shown", "video_id": "video12206", "sen_id": 213119}, {"caption": "heavy metal music plays over scenes from the movie captain phillips", "video_id": "video12792", "sen_id": 213120}, {"caption": "a man being held hostage by two men with cut off shirts", "video_id": "video12792", "sen_id": 213121}, {"caption": "a man in a blue shirt is being held captive by two other men", "video_id": "video12792", "sen_id": 213122}, {"caption": "a white man is shown being held captive by two black men", "video_id": "video12792", "sen_id": 213123}, {"caption": "a man in the driving area of a ship is talking to a couple of young africans", "video_id": "video12792", "sen_id": 213124}, {"caption": "electronic music plays as movie details as changed on the screen", "video_id": "video12792", "sen_id": 213125}, {"caption": "a caucasian man is being taken hostage by two somalian men", "video_id": "video12792", "sen_id": 213126}, {"caption": "a guy in blue arrested by two other armed guys", "video_id": "video12792", "sen_id": 213127}, {"caption": "there is a blue tshirt man trapped with criminals", "video_id": "video12792", "sen_id": 213128}, {"caption": "men in black jacket shoots with gun a men", "video_id": "video12792", "sen_id": 213129}, {"caption": "captain phillips imdb two man attacks him with", "video_id": "video12792", "sen_id": 213130}, {"caption": "a scene film if high lighting on the screen", "video_id": "video12792", "sen_id": 213131}, {"caption": "a man wearing spectacles and blue shirt is talking to two black people", "video_id": "video12792", "sen_id": 213132}, {"caption": "there is a t-shirt man trapped in front of some criminals", "video_id": "video12792", "sen_id": 213133}, {"caption": "three mens there two man with gun like terror", "video_id": "video12792", "sen_id": 213134}, {"caption": "a man is talking to some somalian pirates", "video_id": "video12792", "sen_id": 213135}, {"caption": "a man in blue t-shirt surrounded with some criminals", "video_id": "video12792", "sen_id": 213136}, {"caption": "people who is talking together in a vehicle", "video_id": "video12792", "sen_id": 213137}, {"caption": "captain philips is being surrounded by two gunmen probably hijacking the ship", "video_id": "video12792", "sen_id": 213138}, {"caption": "a music is playing and scenes are displaying", "video_id": "video12792", "sen_id": 213139}, {"caption": "a black horse with a white streak on his nose sticks his head out of a trailer filled with hay", "video_id": "video11094", "sen_id": 213140}, {"caption": "a woman interacting with a horse that is being transferred", "video_id": "video11094", "sen_id": 213141}, {"caption": "a black and white horse is sticking its head out of its trailor", "video_id": "video11094", "sen_id": 213142}, {"caption": "a horse peeking out of s truck that he's in", "video_id": "video11094", "sen_id": 213143}, {"caption": "a black and white horse is given attention while standing in a trailer", "video_id": "video11094", "sen_id": 213144}, {"caption": "a woman is talking to another woman about a horse", "video_id": "video11094", "sen_id": 213145}, {"caption": "a black horse is looking out from its as there doesn t seem to be anyone", "video_id": "video11094", "sen_id": 213146}, {"caption": "a black horse inside a van is being transported and some kids caresses it", "video_id": "video11094", "sen_id": 213147}, {"caption": "a lady talking about her black horse which is in vehicle", "video_id": "video11094", "sen_id": 213148}, {"caption": "a horse handler praises a black horse who is sticking its head outside a trailer", "video_id": "video11094", "sen_id": 213149}, {"caption": "inside the truck area a women standing near the black horse tied with red rope", "video_id": "video11094", "sen_id": 213150}, {"caption": "a man trying the horse to take outside from the vehicle", "video_id": "video11094", "sen_id": 213151}, {"caption": "an hosre looking outside fromt the car", "video_id": "video11094", "sen_id": 213152}, {"caption": "a young girl talks about a large black and white horse in a trailer", "video_id": "video11094", "sen_id": 213153}, {"caption": "a horse in a stable is being cared for while recorded", "video_id": "video11094", "sen_id": 213154}, {"caption": "a person is talking to a horse as the horse sticks it s head out of a window", "video_id": "video11094", "sen_id": 213155}, {"caption": "there is a horse standing inside a vehicle", "video_id": "video11094", "sen_id": 213156}, {"caption": "the freight area of a truck is opened revealig a nice healthy horse", "video_id": "video11094", "sen_id": 213157}, {"caption": "a lady is talking to a horse inside a horse trailer", "video_id": "video11094", "sen_id": 213158}, {"caption": "a horse in a farm transport vehicle and a girl is taking it s photo in her mobile", "video_id": "video11094", "sen_id": 213159}, {"caption": "a beautiful city brought to you by expedia", "video_id": "video12077", "sen_id": 213160}, {"caption": "a tropical island city has a rich heritage and beautiful colonial sights", "video_id": "video12077", "sen_id": 213161}, {"caption": "a statue and buildings in a small tropical town near the ocean", "video_id": "video12077", "sen_id": 213162}, {"caption": "a statue of a woman and streets of an island", "video_id": "video12077", "sen_id": 213163}, {"caption": "a small group of people mill around a mostly empty city square on a beautiful day", "video_id": "video12077", "sen_id": 213164}, {"caption": "woman explains about the island that is being shown in the video which shows the best spots to go", "video_id": "video12077", "sen_id": 213165}, {"caption": "some beautiful and peaceful places in a small town", "video_id": "video12077", "sen_id": 213166}, {"caption": "there are many people walking in front of the building", "video_id": "video12077", "sen_id": 213167}, {"caption": "the narrator talks about the city that is rich with history and how the island is declared a world heritage site", "video_id": "video12077", "sen_id": 213168}, {"caption": "several images of place out doors at a tourist location", "video_id": "video12077", "sen_id": 213169}, {"caption": "large buildings along with great number of vehiclesvast sea etc are seen here", "video_id": "video12077", "sen_id": 213170}, {"caption": "there is someone walking through the street", "video_id": "video12077", "sen_id": 213171}, {"caption": "in a road peoples are walking near church", "video_id": "video12077", "sen_id": 213172}, {"caption": "a voice telling about a city which is approved as a world heritage centere", "video_id": "video12077", "sen_id": 213173}, {"caption": "a lady telling about the street in some place and its special", "video_id": "video12077", "sen_id": 213174}, {"caption": "the tower and a path to walk and some playing places", "video_id": "video12077", "sen_id": 213175}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video12077", "sen_id": 213176}, {"caption": "peoples are walking on a ground where water are there", "video_id": "video12077", "sen_id": 213177}, {"caption": "big building and the street on the rome its look very calm", "video_id": "video12077", "sen_id": 213178}, {"caption": "in the city center there are many shops and places to visit", "video_id": "video12077", "sen_id": 213179}, {"caption": "an orange cat sits on a white floor shaking its head near its food bowls", "video_id": "video11130", "sen_id": 213180}, {"caption": "a tan tabby cat is sitting on a white kitchen floor and it keeps sneezing repeatedly with its head held up high", "video_id": "video11130", "sen_id": 213181}, {"caption": "an orange cat in front of a food bowl sneezing repeatedly", "video_id": "video11130", "sen_id": 213182}, {"caption": "there is a cat sneezing on the floor", "video_id": "video11130", "sen_id": 213183}, {"caption": "an orange cat sitting on a white tile floor sneezing", "video_id": "video11130", "sen_id": 213184}, {"caption": "a cat on a kitchen floor makes strange sneezing sounds", "video_id": "video11130", "sen_id": 213185}, {"caption": "orange cat sitting on tile flooring sneezing repeatedly by itself", "video_id": "video11130", "sen_id": 213186}, {"caption": "in a kitchen a cat is seeing towards the ceiling and doing some action", "video_id": "video11130", "sen_id": 213187}, {"caption": "a small orange cat is sitting on a while tile floor", "video_id": "video11130", "sen_id": 213188}, {"caption": "an orange car sits on a tile floor next to its food and water plates", "video_id": "video11130", "sen_id": 213189}, {"caption": "an orange cat sitting by a water and food dish sneezing repeatedly", "video_id": "video11130", "sen_id": 213190}, {"caption": "there is a cat which is dressed up in costume and walking", "video_id": "video11130", "sen_id": 213191}, {"caption": "cat on white tile floor near food and water bowl is sneezing", "video_id": "video11130", "sen_id": 213192}, {"caption": "brown cat is sitting on the floor and looking for food", "video_id": "video11130", "sen_id": 213193}, {"caption": "a light-colored cat is sneezing perpetually on a white tiled floor", "video_id": "video11130", "sen_id": 213194}, {"caption": "an orange cat sneezes repeatedly next to his food bowl", "video_id": "video11130", "sen_id": 213195}, {"caption": "lamb bleats outside then a cat sniffs loudly indoors next to food and water bowls", "video_id": "video11130", "sen_id": 213196}, {"caption": "a large yellow cat sneezes repeatedly next to her food bowl", "video_id": "video11130", "sen_id": 213197}, {"caption": "a cat sitting on floor beside food shaking head and a goat in white color displaying on screen", "video_id": "video11130", "sen_id": 213198}, {"caption": "an orange cat on white tile floor making funny noises", "video_id": "video11130", "sen_id": 213199}, {"caption": "a female chef demonstrates a vegetable recipe in her kitchen", "video_id": "video11664", "sen_id": 213200}, {"caption": "a woman is cooking vegetable and spices in a pan and then she is adding rice", "video_id": "video11664", "sen_id": 213201}, {"caption": "someone is stirring vegetables in a frying pan while describing how to cook a meal then she is adding something to the dish", "video_id": "video11664", "sen_id": 213202}, {"caption": "a woman making some seasoned vegetables and adding rice", "video_id": "video11664", "sen_id": 213203}, {"caption": "a woman stirs together sizzling vegetables in a pan on the stove", "video_id": "video11664", "sen_id": 213204}, {"caption": "a woman cooking vegetables and chopped tomatoes in a pan", "video_id": "video11664", "sen_id": 213205}, {"caption": "a woman is stirring spices and vegetables in a red pan then adds rice", "video_id": "video11664", "sen_id": 213206}, {"caption": "a person is using a black spoon to stir and add onions to a dish that is cooking on the stove", "video_id": "video11664", "sen_id": 213207}, {"caption": "vegetables are fried on the tawa by a lady", "video_id": "video11664", "sen_id": 213208}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video11664", "sen_id": 213209}, {"caption": "woman giving instructions on cooking vegetables for recipe in frying pan", "video_id": "video11664", "sen_id": 213210}, {"caption": "a woman is stirring the food she is cooking using a wooden spoon", "video_id": "video11664", "sen_id": 213211}, {"caption": "a woman stirs vegetables together in a frying pan", "video_id": "video11664", "sen_id": 213212}, {"caption": " potato are put in the fry pan and fried to make it boil", "video_id": "video11664", "sen_id": 213213}, {"caption": "a woman cooking some vegetables curry", "video_id": "video11664", "sen_id": 213214}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11664", "sen_id": 213215}, {"caption": "there is a woman making a red chilly paste", "video_id": "video11664", "sen_id": 213216}, {"caption": "a woman is teaching how to prepare a stir fry", "video_id": "video11664", "sen_id": 213217}, {"caption": "an indian chef prepares a vegetable dish in a small red pan", "video_id": "video11664", "sen_id": 213218}, {"caption": "colorful food is stirred in a frying pan by a black spatula", "video_id": "video11664", "sen_id": 213219}, {"caption": "mat lauer is interviewing two men about jurassic park movie", "video_id": "video10180", "sen_id": 213220}, {"caption": "a man is in a suit and talking in an interview", "video_id": "video10180", "sen_id": 213221}, {"caption": "on the today show the host interviews to men in suits regarding celebrities before they were stars the show captions as before they were stars celebrity audition tapes up for auction", "video_id": "video10180", "sen_id": 213222}, {"caption": "three men discuss celebrities on the today show", "video_id": "video10180", "sen_id": 213223}, {"caption": "three men set on a tv sound stage and discuss an upcoming event", "video_id": "video10180", "sen_id": 213224}, {"caption": "men talking about the stars that tried out for some acting roles", "video_id": "video10180", "sen_id": 213225}, {"caption": "matt of the today interveiwing two men about movies", "video_id": "video10180", "sen_id": 213226}, {"caption": "two people are being interviewed on the today show", "video_id": "video10180", "sen_id": 213227}, {"caption": "three men together are having a conversation all dressed up formally", "video_id": "video10180", "sen_id": 213228}, {"caption": "3 people argue about actors and how many times have auditioned for deferent movies", "video_id": "video10180", "sen_id": 213229}, {"caption": "a man wearing black color dress is talking", "video_id": "video10180", "sen_id": 213230}, {"caption": "three men are sitting in chairs speaking to one another a televison screen is behind them", "video_id": "video10180", "sen_id": 213231}, {"caption": "a day time talk host sits on stools with two guests in suit jackets with glass revealing city behind", "video_id": "video10180", "sen_id": 213232}, {"caption": "three men are participating in a talk showbut only the person in blue check shirt talks a lot", "video_id": "video10180", "sen_id": 213233}, {"caption": "some men on the news are talking", "video_id": "video10180", "sen_id": 213234}, {"caption": "a news reporter interviewing two men about a movie", "video_id": "video10180", "sen_id": 213235}, {"caption": "a group of people from the today show are discussing films", "video_id": "video10180", "sen_id": 213236}, {"caption": "three men on a talk show are discussing topics and laughing", "video_id": "video10180", "sen_id": 213237}, {"caption": "two men looking at papers leads into three different men on a talk show with a before they were stars screen up behind them", "video_id": "video10180", "sen_id": 213238}, {"caption": "some people on the tv news are sitting and talking", "video_id": "video10180", "sen_id": 213239}, {"caption": "stirring liquids in a saucepan on the stove top", "video_id": "video10758", "sen_id": 213240}, {"caption": "a female chef describes and demonstrates a recipe she is preparing", "video_id": "video10758", "sen_id": 213241}, {"caption": "a woman in a kitchen is adding ingredients to a cooking pan", "video_id": "video10758", "sen_id": 213242}, {"caption": "a woman is preparing a sauce with soy sauce sesame oil and other ingredients", "video_id": "video10758", "sen_id": 213243}, {"caption": "a person is adding sauce into a cooking pan and stirring it", "video_id": "video10758", "sen_id": 213244}, {"caption": "a woman adds soy sauce and water to a pan on the stove", "video_id": "video10758", "sen_id": 213245}, {"caption": "in a kitchen a woman prepares a sauce using many ingredients", "video_id": "video10758", "sen_id": 213246}, {"caption": "woman cooking on a pan with soy sauce and sesame oil", "video_id": "video10758", "sen_id": 213247}, {"caption": "a woman cooking on the counter with a frying pan", "video_id": "video10758", "sen_id": 213248}, {"caption": "a woman is adding soy sauce and other ingredients to a pan", "video_id": "video10758", "sen_id": 213249}, {"caption": "a woman adds oil soy sauce chopped onions and water to a hot pan and stirs it with wooden chopsticks", "video_id": "video10758", "sen_id": 213250}, {"caption": "in the kitchen a woman mixing souse with water", "video_id": "video10758", "sen_id": 213251}, {"caption": "an japanese chef making something that look like it mite taste good and she have me wanting to make whatever she is cooking", "video_id": "video10758", "sen_id": 213252}, {"caption": "a woman is preparing a dish with a pan", "video_id": "video10758", "sen_id": 213253}, {"caption": "a lady is mixing different kinds of sauces and making a dish out of it", "video_id": "video10758", "sen_id": 213254}, {"caption": "a woman is cooking something differently using source in to the water", "video_id": "video10758", "sen_id": 213255}, {"caption": "a lady pours sauces and water in a frying pan on flames and spreads it with sticks", "video_id": "video10758", "sen_id": 213256}, {"caption": "an asian woman is making a dish with duck sauce and sesame oil", "video_id": "video10758", "sen_id": 213257}, {"caption": "a chef starts a recipe by adding various sauces to a small black pan", "video_id": "video10758", "sen_id": 213258}, {"caption": "someone is stirring food inside of a pot", "video_id": "video10758", "sen_id": 213259}, {"caption": "a man walking on a mountain street near his car", "video_id": "video12777", "sen_id": 213260}, {"caption": "the man with the camera is talking and walking towards a blue car", "video_id": "video12777", "sen_id": 213261}, {"caption": "a car parked on the side of a mountain road", "video_id": "video12777", "sen_id": 213262}, {"caption": "a man walking on a road surrounded by trees", "video_id": "video12777", "sen_id": 213263}, {"caption": "a road on a mountain and a nearby forest are shown along with a car", "video_id": "video12777", "sen_id": 213264}, {"caption": "there is a man walking towards his car", "video_id": "video12777", "sen_id": 213265}, {"caption": "a man walking down a road towards a car showing us the scenery around him", "video_id": "video12777", "sen_id": 213266}, {"caption": "a man stands on a road way and walks the area around the roads", "video_id": "video12777", "sen_id": 213267}, {"caption": "a desert looking mountain road with a silver vehicle that is stopped on the side of the road", "video_id": "video12777", "sen_id": 213268}, {"caption": "a man walks down a road that is set into a cliff looks around at the trees and then gets into his blue car", "video_id": "video12777", "sen_id": 213269}, {"caption": " with first person perspective walks up to car on the highway", "video_id": "video12777", "sen_id": 213270}, {"caption": "this video seems like it was shot by vacationers", "video_id": "video12777", "sen_id": 213271}, {"caption": "guy stopped car and shooting the mountains", "video_id": "video12777", "sen_id": 213272}, {"caption": "a car is pulled over on the side of the road", "video_id": "video12777", "sen_id": 213273}, {"caption": "a man walking with camera on the highway searching to take some good pics", "video_id": "video12777", "sen_id": 213274}, {"caption": "someone is on the side of a mountain road showing the scenery and a car that is stopped", "video_id": "video12777", "sen_id": 213275}, {"caption": "a man talking about something on the hills and road", "video_id": "video12777", "sen_id": 213276}, {"caption": "person leaves car with cardoor open to enjoy the beauty of the mountains", "video_id": "video12777", "sen_id": 213277}, {"caption": "a road is going through the hills a blue car is shown stopped on the road and there is beautiful green trees on the hills", "video_id": "video12777", "sen_id": 213278}, {"caption": "a person is showing mountains and car parked on the road", "video_id": "video12777", "sen_id": 213279}, {"caption": "this looks like a dish of chinese food", "video_id": "video12069", "sen_id": 213280}, {"caption": "a cook is speaking on how to cook and advertising his website", "video_id": "video12069", "sen_id": 213281}, {"caption": "a man adds sunflower oil to his bowl of food then mixes it in", "video_id": "video12069", "sen_id": 213282}, {"caption": "a person is adding oil to a salad and then tossing it", "video_id": "video12069", "sen_id": 213283}, {"caption": "a man is talking about a recipe and how he adds sunflower oil to the ingredients but you can use whichever oil you choose", "video_id": "video12069", "sen_id": 213284}, {"caption": "a bowl of red peppers and other foods are being mixed with sunflower oil", "video_id": "video12069", "sen_id": 213285}, {"caption": "a man adds sunflower oil to food the is in a medium size bowl then precedes to mix", "video_id": "video12069", "sen_id": 213286}, {"caption": "a man adding ingredients into a blue and white bowl and then stirring it around", "video_id": "video12069", "sen_id": 213287}, {"caption": "a variety of vegetable including peppers are mixed with olive oil", "video_id": "video12069", "sen_id": 213288}, {"caption": "a little sunflower oil is added to the dish and stirred with a metal spoon", "video_id": "video12069", "sen_id": 213289}, {"caption": "sunflower oil is mixed into a bowl of vegetables in a blue and white bowl", "video_id": "video12069", "sen_id": 213290}, {"caption": "a man adds sunflower oil to a bowl of food involving peppers and noodles", "video_id": "video12069", "sen_id": 213291}, {"caption": "some onion and red chilli along with oils are put and fried in the bowl", "video_id": "video12069", "sen_id": 213292}, {"caption": "a cooking video shows how to cook vegetable salad with onions and other items", "video_id": "video12069", "sen_id": 213293}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video12069", "sen_id": 213294}, {"caption": "a person is adding some liquid and stirring a bowl full of a vegetable salad", "video_id": "video12069", "sen_id": 213295}, {"caption": "a dish of food with rice and red peppers is being garnished with oil", "video_id": "video12069", "sen_id": 213296}, {"caption": "somebody prepare a dish using red capsicum onion and something with water", "video_id": "video12069", "sen_id": 213297}, {"caption": "a man adds oil to a bowl of shrimp and peppers and mixes together", "video_id": "video12069", "sen_id": 213298}, {"caption": "in a kitchen someone is showing the ingredients needed in the bowl", "video_id": "video12069", "sen_id": 213299}, {"caption": "a human with a camera swims in the water with a giant see turtle", "video_id": "video11269", "sen_id": 213300}, {"caption": "a turtle swims in clear water in an ocean", "video_id": "video11269", "sen_id": 213301}, {"caption": "an underwater photographer watches a sea turtle swimming along a reef", "video_id": "video11269", "sen_id": 213302}, {"caption": "a sea turtle is swimming freely along with the photographer in crystal clear sea water", "video_id": "video11269", "sen_id": 213303}, {"caption": "a diver with a camera is swimming along side of a turtle", "video_id": "video11269", "sen_id": 213304}, {"caption": "a man holding a oxygen swimming inside the sea water", "video_id": "video11269", "sen_id": 213305}, {"caption": "a person inside the water taking a video of a turtle and marine life", "video_id": "video11269", "sen_id": 213306}, {"caption": "info lady elliot island queensland australia turtle swims with a man", "video_id": "video11269", "sen_id": 213307}, {"caption": "a person swimming around in the large ocean", "video_id": "video11269", "sen_id": 213308}, {"caption": "a sea turtle is swimming under the water next to a person that is scuba diving", "video_id": "video11269", "sen_id": 213309}, {"caption": "a man is swimming under water here", "video_id": "video11269", "sen_id": 213310}, {"caption": "a girl is wearing oxygen mask and swiming under water to looks fishes", "video_id": "video11269", "sen_id": 213311}, {"caption": "lady elliot island australia tortoise swims deeply", "video_id": "video11269", "sen_id": 213312}, {"caption": "a seaturtle swims gracefuly in the clear shallow waters in the reefs", "video_id": "video11269", "sen_id": 213313}, {"caption": "someone is diving around in the water", "video_id": "video11269", "sen_id": 213314}, {"caption": "there is a fish floating in the sea", "video_id": "video11269", "sen_id": 213315}, {"caption": "a turtle is swimm in the sea one men ready to catch the video", "video_id": "video11269", "sen_id": 213316}, {"caption": "a sea turtle swims over a coral reef towards a snorkle diver", "video_id": "video11269", "sen_id": 213317}, {"caption": "a turtle swimming in the ocean is joined by a female diver with a camera", "video_id": "video11269", "sen_id": 213318}, {"caption": "someone is using a camera to film the ocean", "video_id": "video11269", "sen_id": 213319}, {"caption": "man in brown suit describing a situation where a man falls down", "video_id": "video11186", "sen_id": 213320}, {"caption": "the man in the tan jacket was speaking to the audience when the man in the black jacket appeared to have tripped", "video_id": "video11186", "sen_id": 213321}, {"caption": "a blooper from a television show in which a man wacks his shine into the stage causing him to fall to the grown and exclaim censored material", "video_id": "video11186", "sen_id": 213322}, {"caption": "a man discusses his favorite products while his guest trips and hurts his leg", "video_id": "video11186", "sen_id": 213323}, {"caption": "a television show host is presenting news in the automotive industry", "video_id": "video11186", "sen_id": 213324}, {"caption": "a man is sitting in a chair talking about his favorite blooper", "video_id": "video11186", "sen_id": 213325}, {"caption": "a man sits on the couch and talks about my favorite top gear show", "video_id": "video11186", "sen_id": 213326}, {"caption": "my favourite top gear bloopers one man talks about", "video_id": "video11186", "sen_id": 213327}, {"caption": "a person discuss about the his favorite top gear bloopers", "video_id": "video11186", "sen_id": 213328}, {"caption": "a men in white suit is talking to other men", "video_id": "video11186", "sen_id": 213329}, {"caption": "a man is sitting and reporting the news while a man sits on the floor in the corner", "video_id": "video11186", "sen_id": 213330}, {"caption": "a gentleman with black court is explaining about something", "video_id": "video11186", "sen_id": 213331}, {"caption": "there is a suit man talking from the studio", "video_id": "video11186", "sen_id": 213332}, {"caption": "the one man is sitting in the sofa and talking about something", "video_id": "video11186", "sen_id": 213333}, {"caption": "a person is talking about his favorite top gear bloopers", "video_id": "video11186", "sen_id": 213334}, {"caption": "a man with a big chin is talking on tv", "video_id": "video11186", "sen_id": 213335}, {"caption": "a man in a tan suit coat is talking while another man laughs", "video_id": "video11186", "sen_id": 213336}, {"caption": "a man wearing grey suit talks another one laughs", "video_id": "video11186", "sen_id": 213337}, {"caption": "the title of the visual reads my favourite top gear bloopers the host is talking about the something on an ongoing show but the other guy seen underneath the chair crying in pain and the with a little giggle he comes up and sits on the chair and the host begins his line from the beginning again", "video_id": "video11186", "sen_id": 213338}, {"caption": "some funny incidents are takes place and people are laughing", "video_id": "video11186", "sen_id": 213339}, {"caption": "a portion of a speech given by then-president obama is aired on a news program", "video_id": "video11239", "sen_id": 213340}, {"caption": "a man talking about the united states of america", "video_id": "video11239", "sen_id": 213341}, {"caption": "an obama quote on religion is presented on the screen and discussed", "video_id": "video11239", "sen_id": 213342}, {"caption": "a photograph of a former president precedes a yellow-text headline and a white-text quote about religion and ends with a yellow-text citation", "video_id": "video11239", "sen_id": 213343}, {"caption": "a graphic showing the text of a speech by president obama is being shown while playing a clip of his voice", "video_id": "video11239", "sen_id": 213344}, {"caption": "there is a man speaking in a tv show", "video_id": "video11239", "sen_id": 213345}, {"caption": "more letters are displayed", "video_id": "video11239", "sen_id": 213346}, {"caption": "a reading on the thoughts of president obama on christianity", "video_id": "video11239", "sen_id": 213347}, {"caption": "a man sits and talks then a board appears with words on religion", "video_id": "video11239", "sen_id": 213348}, {"caption": "a quote from the president of the united states is shown while audio of president talking about religion is played", "video_id": "video11239", "sen_id": 213349}, {"caption": "obama speaks opines about a political issue in us", "video_id": "video11239", "sen_id": 213350}, {"caption": "the us president mr obam telling the press meeting to the relegion factor in their country", "video_id": "video11239", "sen_id": 213351}, {"caption": "president barack obama is giving his opinions to a news station on how he feels about religion", "video_id": "video11239", "sen_id": 213352}, {"caption": "prresident obama speaks on christianity as his words are displayed on the screen in what appears to be a news program", "video_id": "video11239", "sen_id": 213353}, {"caption": "president obama talking about religion and christian interpretation being us versus them", "video_id": "video11239", "sen_id": 213354}, {"caption": "the words of obama is shown and his voice accompanies", "video_id": "video11239", "sen_id": 213355}, {"caption": "a person with black coat is pointing something and some another person is talking in the background", "video_id": "video11239", "sen_id": 213356}, {"caption": "a man is showing his middle finger on some captions about obama on screen", "video_id": "video11239", "sen_id": 213357}, {"caption": "president obama s views on christianity in the united states", "video_id": "video11239", "sen_id": 213358}, {"caption": "a news show displays a quote of president obama on religion while the presenters says the quote aloud", "video_id": "video11239", "sen_id": 213359}, {"caption": "a large gladiator is taunting a smaller gladiator", "video_id": "video12259", "sen_id": 213360}, {"caption": "a man in a gladiator outfit makes fun of a prisoner", "video_id": "video12259", "sen_id": 213361}, {"caption": "many people gathered in a public place and watching the fighting of people", "video_id": "video12259", "sen_id": 213362}, {"caption": "a man talking with another man they are ready for fighting", "video_id": "video12259", "sen_id": 213363}, {"caption": "a man with a helmet in movie about ancient rome is fighting with another person", "video_id": "video12259", "sen_id": 213364}, {"caption": "a movie scene about warriors surronded by a crowd of people", "video_id": "video12259", "sen_id": 213365}, {"caption": "a man in a helmet is talking to a prisoner while a crowd laughs", "video_id": "video12259", "sen_id": 213366}, {"caption": "caucasian men with british accents in ancient roman gladiatorial costumes harass a caucasian male prisoner while the predominately caucasian male crowd laughs in derision and one lone caucasian male looks on in mild concern", "video_id": "video12259", "sen_id": 213367}, {"caption": "two man are looking and other peoples are around them", "video_id": "video12259", "sen_id": 213368}, {"caption": "the mans are in romans and public peoples", "video_id": "video12259", "sen_id": 213369}, {"caption": "a group of gladiators talk to a group of people that they plan on killing", "video_id": "video12259", "sen_id": 213370}, {"caption": "a large shirtless man in gladiator armor is taunting a smaller man", "video_id": "video12259", "sen_id": 213371}, {"caption": "a man in a spiked black helmet humiliates a man in a brown shirt", "video_id": "video12259", "sen_id": 213372}, {"caption": "a movie scene is playing in the screen", "video_id": "video12259", "sen_id": 213373}, {"caption": "a gladiator getting ready to fight in front of a crowd", "video_id": "video12259", "sen_id": 213374}, {"caption": "two gladiators in the middle of a sand receiving insults from your enemy while people make fun", "video_id": "video12259", "sen_id": 213375}, {"caption": "a man is looking and talking with another person with so much of crowd", "video_id": "video12259", "sen_id": 213376}, {"caption": "two persons with mask starts to fight with the man without mask", "video_id": "video12259", "sen_id": 213377}, {"caption": "men in armor and wearing weapons are laughing at a weaponless man", "video_id": "video12259", "sen_id": 213378}, {"caption": "a gladiator in a place is ready to fight", "video_id": "video12259", "sen_id": 213379}, {"caption": "a man and woman are sitting at a desk delivering the news", "video_id": "video11082", "sen_id": 213380}, {"caption": "a bbc anchor woman interviews tom mitchell from the overseas development institute", "video_id": "video11082", "sen_id": 213381}, {"caption": "a woman in a red outfit is delivering the news", "video_id": "video11082", "sen_id": 213382}, {"caption": "a blond woman in a red dress interviews a white male in a blue shirt", "video_id": "video11082", "sen_id": 213383}, {"caption": "news broadcasters discuss the philippines with a special guest", "video_id": "video11082", "sen_id": 213384}, {"caption": "a news anchor team talking about people in the philippines", "video_id": "video11082", "sen_id": 213385}, {"caption": "there is a red dressing woman talking to a shirt man", "video_id": "video11082", "sen_id": 213386}, {"caption": "a female news reporter in a red dress introduces her guest a man in a pale blue shirt named ted mitchell", "video_id": "video11082", "sen_id": 213387}, {"caption": "a man and lady is talking and she is red colored dress", "video_id": "video11082", "sen_id": 213388}, {"caption": "a reporter in red dress interviewing a person on climatic changes", "video_id": "video11082", "sen_id": 213389}, {"caption": "a lady news editor taking interview of a person on philippines issues", "video_id": "video11082", "sen_id": 213390}, {"caption": "a woman interviewing a political analyst about issues in the philippines", "video_id": "video11082", "sen_id": 213391}, {"caption": "a lady wearing red color dress is talking with a man", "video_id": "video11082", "sen_id": 213392}, {"caption": "a male and female pair of news correspondents sitting at the news desk", "video_id": "video11082", "sen_id": 213393}, {"caption": "a news host in red introduces guest who is a climate professional", "video_id": "video11082", "sen_id": 213394}, {"caption": "a man in a place is being interviewed on tv", "video_id": "video11082", "sen_id": 213395}, {"caption": "a beautiful red dressed bbc world news anchor interviewing another man in red", "video_id": "video11082", "sen_id": 213396}, {"caption": "a lady wearing red color dress is talking with another man", "video_id": "video11082", "sen_id": 213397}, {"caption": "a lady is wearing red and speaking to another man regarding the world news", "video_id": "video11082", "sen_id": 213398}, {"caption": "a news anchor woman is talking about environment and or the philippines", "video_id": "video11082", "sen_id": 213399}, {"caption": "horses are walking on the the infield preparing to run a race", "video_id": "video11031", "sen_id": 213400}, {"caption": "a group of people are riding horses in a race", "video_id": "video11031", "sen_id": 213401}, {"caption": "several jockeys riding horses in circles and the starting around a track", "video_id": "video11031", "sen_id": 213402}, {"caption": "horses and horseman preparing for a horse race", "video_id": "video11031", "sen_id": 213403}, {"caption": "a group of twelve jockeys and twelve horses prance around on a grassy green racing track and head off to race", "video_id": "video11031", "sen_id": 213404}, {"caption": "there are some people riding the horse", "video_id": "video11031", "sen_id": 213405}, {"caption": "people riding horses in the field", "video_id": "video11031", "sen_id": 213406}, {"caption": "a polo match announcer is calling the plays of an ongoing polo match", "video_id": "video11031", "sen_id": 213407}, {"caption": "there are people on horses circling yet scattered", "video_id": "video11031", "sen_id": 213408}, {"caption": "horses and their jockeys are riding through an area and then they start racing", "video_id": "video11031", "sen_id": 213409}, {"caption": "there is a group of people riding on the grass", "video_id": "video11031", "sen_id": 213410}, {"caption": "there are horse riders in the field with ech one of them rding a horse", "video_id": "video11031", "sen_id": 213411}, {"caption": "participants in a horse race at the starting line up on a green field full of spectators", "video_id": "video11031", "sen_id": 213412}, {"caption": "a group of horses walk around in a circle and get ready to run in a race", "video_id": "video11031", "sen_id": 213413}, {"caption": "a group of horses and their riders are walking around in circles", "video_id": "video11031", "sen_id": 213414}, {"caption": "a horse race with rider galloping their horses on the field", "video_id": "video11031", "sen_id": 213415}, {"caption": "one or more horses and man making horse race", "video_id": "video11031", "sen_id": 213416}, {"caption": "a horse race show group of horses running on the ground", "video_id": "video11031", "sen_id": 213417}, {"caption": "a group of jockeys on horses walk in circles at a race course before breaking into a run", "video_id": "video11031", "sen_id": 213418}, {"caption": "horses and their riders are riding around while a crowd watches", "video_id": "video11031", "sen_id": 213419}, {"caption": "a man in a sweat jacket standing and talking in a room", "video_id": "video12906", "sen_id": 213420}, {"caption": "a man wearing a zip up sweatshirt standing and talking about parrots", "video_id": "video12906", "sen_id": 213421}, {"caption": "a guy in a grey sweat shirt is talking about something", "video_id": "video12906", "sen_id": 213422}, {"caption": "a man with dark short hair talks about how to get your parrot to dance to music", "video_id": "video12906", "sen_id": 213423}, {"caption": "a man trying to explain how to get a parrot to react to its owner", "video_id": "video12906", "sen_id": 213424}, {"caption": "a man in a gray hoodie stands in front of a white door and talks about how to find a song for your parrot to dance to", "video_id": "video12906", "sen_id": 213425}, {"caption": "a man in shirt talking in front of a door", "video_id": "video12906", "sen_id": 213426}, {"caption": "a man is talking about a music video", "video_id": "video12906", "sen_id": 213427}, {"caption": "a very handsome man saying something on looking to camera", "video_id": "video12906", "sen_id": 213428}, {"caption": "a boy in white dress wearing standing speaking displaying on screen", "video_id": "video12906", "sen_id": 213429}, {"caption": "a person explaining a concept in a show", "video_id": "video12906", "sen_id": 213430}, {"caption": "young man explaining how to make a parrot dance", "video_id": "video12906", "sen_id": 213431}, {"caption": "guy in informal wear talking with the door shut", "video_id": "video12906", "sen_id": 213432}, {"caption": "a man telling about something in the room", "video_id": "video12906", "sen_id": 213433}, {"caption": "guy in grey shirt talking to the camera", "video_id": "video12906", "sen_id": 213434}, {"caption": "a person is explaining about a topic", "video_id": "video12906", "sen_id": 213435}, {"caption": "a man is talking on the room", "video_id": "video12906", "sen_id": 213436}, {"caption": "a man is communicating some thing on a screen", "video_id": "video12906", "sen_id": 213437}, {"caption": "a boy in white dress color wearing cloth standing and speaking displaying on screen", "video_id": "video12906", "sen_id": 213438}, {"caption": "a boy standing in his house is talking while looking in camera", "video_id": "video12906", "sen_id": 213439}, {"caption": "a woman is talking about her events in her underwear", "video_id": "video10491", "sen_id": 213440}, {"caption": "a girl is sitting on her bed introducing herself", "video_id": "video10491", "sen_id": 213441}, {"caption": "a woman is waking up and talking about her daily activities", "video_id": "video10491", "sen_id": 213442}, {"caption": "an advertisement showing a young woman in underwear in her morning routine", "video_id": "video10491", "sen_id": 213443}, {"caption": "a 24 years old young girl named ploy-nyam wakes up in the morning petting her little puppy still scantily dressed as she spray feeds her flower plants she speaks of how difficult rather challenging & even occasionally dangerous life can be for a young woman in bangkok where she lives especially when she would be on her way back home from work at night alone after a long day", "video_id": "video10491", "sen_id": 213444}, {"caption": "a woman in a bathrobe sitting on the edge of a bed talking about herself", "video_id": "video10491", "sen_id": 213445}, {"caption": "a woman in a blue robe talking to the camera", "video_id": "video10491", "sen_id": 213446}, {"caption": "a woman towel dries her hair while going through her morning", "video_id": "video10491", "sen_id": 213447}, {"caption": "a lady is enjoying the nice weather doing various things", "video_id": "video10491", "sen_id": 213448}, {"caption": "dark haired woman in lingerie walking around a garden watering plants", "video_id": "video10491", "sen_id": 213449}, {"caption": "a woman gets out of bed aand does things around the house", "video_id": "video10491", "sen_id": 213450}, {"caption": "a 24 year old asian woman showing parts of her life", "video_id": "video10491", "sen_id": 213451}, {"caption": "a woman that is scantily clad talks while music is playing in the background", "video_id": "video10491", "sen_id": 213452}, {"caption": "a woman wearing lingerie wakes up and gets out of bed", "video_id": "video10491", "sen_id": 213453}, {"caption": "a woman towel drying her hair after a shower reminisces over her day", "video_id": "video10491", "sen_id": 213454}, {"caption": "24 year old lady shows her daily activities like bathing dancing etc", "video_id": "video10491", "sen_id": 213455}, {"caption": "a lady in a bathrobe with long hair sits on a bed speaks gets up and waters the plants", "video_id": "video10491", "sen_id": 213456}, {"caption": "its bunny bun then nice looking girl sits on her she got up and do the work using bikini dress", "video_id": "video10491", "sen_id": 213457}, {"caption": "a girl named ploy nyam does her day to day chores in her robe and underwear", "video_id": "video10491", "sen_id": 213458}, {"caption": "a woman in a robe is sitting inside a room", "video_id": "video10491", "sen_id": 213459}, {"caption": "a cooking tutorial made by a woman of chicken breast", "video_id": "video12671", "sen_id": 213460}, {"caption": "a person turns on an eye under a skillet and puts oil chicken and spices in it", "video_id": "video12671", "sen_id": 213461}, {"caption": "a woman is cooking food on a stove", "video_id": "video12671", "sen_id": 213462}, {"caption": "a woman gave a description on how she use coconut oil to cook her chicken breasts and seasonings she enjoys", "video_id": "video12671", "sen_id": 213463}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video12671", "sen_id": 213464}, {"caption": "woman is heating a pan and using coconut oil to fry a chicken breast and seasoning it", "video_id": "video12671", "sen_id": 213465}, {"caption": "a pan is heated and chicken breasts are seasoned a placed in the pan", "video_id": "video12671", "sen_id": 213466}, {"caption": "a woman is seasoning and cooking chicken on a gas stove", "video_id": "video12671", "sen_id": 213467}, {"caption": "a woman with pink nail polish heats coconut oil on a pan", "video_id": "video12671", "sen_id": 213468}, {"caption": "a young lady is cooking and talking about it", "video_id": "video12671", "sen_id": 213469}, {"caption": "young woman explaining how to fry chicken breast using coconut oil", "video_id": "video12671", "sen_id": 213470}, {"caption": "a woman puts a pan on the stove and starts cooking chicken", "video_id": "video12671", "sen_id": 213471}, {"caption": "a woman lights a stove and adds oil and chicken into a pan", "video_id": "video12671", "sen_id": 213472}, {"caption": "a girl cooks a chicken breast meal over a pan", "video_id": "video12671", "sen_id": 213473}, {"caption": "a young girl starts a recipe by warming some oil in a skillet", "video_id": "video12671", "sen_id": 213474}, {"caption": "a woman heats up two frying pans and puts coconut oil in the larger pan", "video_id": "video12671", "sen_id": 213475}, {"caption": "a lady keep fry pan in the stove and put some oil then puts the stuff with some salt to boil", "video_id": "video12671", "sen_id": 213476}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video12671", "sen_id": 213477}, {"caption": "someone is preparing pancakes in a black pan and in the end is served a good dish", "video_id": "video12671", "sen_id": 213478}, {"caption": "a person is putting some stuff in a pan", "video_id": "video12671", "sen_id": 213479}, {"caption": "man in grey jacket and blue shirt describing the sentencing of a woman", "video_id": "video12358", "sen_id": 213480}, {"caption": "a new anchor reading a story about a convict", "video_id": "video12358", "sen_id": 213481}, {"caption": "a newshow commentator talk about a depressed woman in jail", "video_id": "video12358", "sen_id": 213482}, {"caption": "a man is giving a news report on tv discussing a depressed prisoner", "video_id": "video12358", "sen_id": 213483}, {"caption": "a man with a blue shirt is telling the story about the lady that was incarcerated in the orange", "video_id": "video12358", "sen_id": 213484}, {"caption": "a male news anchor wears a blue shirt open at the neck and a dark gray jacket while making comments about a woman wearing an orange top and a serious expression", "video_id": "video12358", "sen_id": 213485}, {"caption": "a man in a black suit talking a woman who got put in prison", "video_id": "video12358", "sen_id": 213486}, {"caption": "a news reporter discusses the plight of a young african woman", "video_id": "video12358", "sen_id": 213487}, {"caption": "a broad-shouldered male news anchor sits in front of a screen with red swirls moving against a blue background and talks about a closed-mouth woman whose photograph is being shown", "video_id": "video12358", "sen_id": 213488}, {"caption": "an news commentator does and odd report related to the plight of an african woman", "video_id": "video12358", "sen_id": 213489}, {"caption": "a news anchor reports a story about a legal case where a person who is wrongly at a jail", "video_id": "video12358", "sen_id": 213490}, {"caption": "a news anchor in a blue shirt and black suit jacket discusses a female defendant", "video_id": "video12358", "sen_id": 213491}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12358", "sen_id": 213492}, {"caption": "man in gray suit with blue shirt underneath speaks about the woman on the top right wearing an orange prison suit", "video_id": "video12358", "sen_id": 213493}, {"caption": "a man in a dark suit and blue button up shirt is giving the background story about a lady", "video_id": "video12358", "sen_id": 213494}, {"caption": "a male news anchor is reading news and a pic of a girl is shown on news channel", "video_id": "video12358", "sen_id": 213495}, {"caption": "there is a man with black suit talking from a studio", "video_id": "video12358", "sen_id": 213496}, {"caption": "a man is sitting and reporting on a news story about a woman", "video_id": "video12358", "sen_id": 213497}, {"caption": "a news story on the wrongful arrest of sandra bland is read over the air", "video_id": "video12358", "sen_id": 213498}, {"caption": "a man commenting on a woman who was thrown into jail without a reason", "video_id": "video12358", "sen_id": 213499}, {"caption": "female models walking one at a time down a fashion runway", "video_id": "video10094", "sen_id": 213500}, {"caption": "several women are walking down a runway wearing different clothes", "video_id": "video10094", "sen_id": 213501}, {"caption": "models walking down a catwalk carrying handbags in front of a large crowd", "video_id": "video10094", "sen_id": 213502}, {"caption": "women walking a fashion runway carrying purses in their right hands", "video_id": "video10094", "sen_id": 213503}, {"caption": "models are walking the run way modeling clothes and bags", "video_id": "video10094", "sen_id": 213504}, {"caption": "fashion modles in white dresses walking the runway", "video_id": "video10094", "sen_id": 213505}, {"caption": "women holding hand bags walk down long catwalks in front of crowds", "video_id": "video10094", "sen_id": 213506}, {"caption": "four lady models walking down a run way with hand bags", "video_id": "video10094", "sen_id": 213507}, {"caption": "model walking down a runway in front of a crowd", "video_id": "video10094", "sen_id": 213508}, {"caption": "several models are walking various parts of the runway at a fashion show as spectators watch and snap photos", "video_id": "video10094", "sen_id": 213509}, {"caption": "people are watching models walk down a runway as part of a fashion show", "video_id": "video10094", "sen_id": 213510}, {"caption": "a catwalk of models is being displayed to viewers", "video_id": "video10094", "sen_id": 213511}, {"caption": "on the fashion show ramb the girls are appeared on very sexy looks their gown is like as flower", "video_id": "video10094", "sen_id": 213512}, {"caption": "models wearing unusual clothese walk a long runway at a large fashion show", "video_id": "video10094", "sen_id": 213513}, {"caption": "several beautiful models walk down a runway in sporty outfits carrying short handled bags", "video_id": "video10094", "sen_id": 213514}, {"caption": "a woman in a ramp walk on a fashion show", "video_id": "video10094", "sen_id": 213515}, {"caption": "a lady in a short white dress and black shoes walking infront of people", "video_id": "video10094", "sen_id": 213516}, {"caption": "various fashion models walk down a run way as music plays", "video_id": "video10094", "sen_id": 213517}, {"caption": "a runway show where not only do they display clothe but also purses", "video_id": "video10094", "sen_id": 213518}, {"caption": "some models are walking on a cat walk", "video_id": "video10094", "sen_id": 213519}, {"caption": "a person is talking while explaining about human cells", "video_id": "video12230", "sen_id": 213520}, {"caption": "a man talks about applying a waveform in an experiment with hiv-infected cells while cells are displayed in a still frame", "video_id": "video12230", "sen_id": 213521}, {"caption": "a man explains a medical experiment applied to hiv cells", "video_id": "video12230", "sen_id": 213522}, {"caption": "a magnification of cells is displayed while a man talks about an experiment with hiv", "video_id": "video12230", "sen_id": 213523}, {"caption": "explanation of cell experiement", "video_id": "video12230", "sen_id": 213524}, {"caption": "there is a clip of human celss displayed as a man talks about hiv", "video_id": "video12230", "sen_id": 213525}, {"caption": "a man describes his scientific research on human cells while showing a microscope slide of his work", "video_id": "video12230", "sen_id": 213526}, {"caption": "a microscopic slide image of human cells with hiv infection are depicted", "video_id": "video12230", "sen_id": 213527}, {"caption": "a man witha heavy accent describes cell structure while observing an image from a microscope", "video_id": "video12230", "sen_id": 213528}, {"caption": "a man is telling about a experiment of human cell", "video_id": "video12230", "sen_id": 213529}, {"caption": "a man s voice describes an experiment about hiv cells over a visual of purple cells under a microscope", "video_id": "video12230", "sen_id": 213530}, {"caption": "a man shows cells and talks about treating of hiv", "video_id": "video12230", "sen_id": 213531}, {"caption": "a male talks about hiv as a photo of human cells is displayed", "video_id": "video12230", "sen_id": 213532}, {"caption": "a scientist discusses an experiment he is doing with hiv and cells", "video_id": "video12230", "sen_id": 213533}, {"caption": "a man is talking about cells seen under a microscope", "video_id": "video12230", "sen_id": 213534}, {"caption": "a man talks about experiments on cells with hiv", "video_id": "video12230", "sen_id": 213535}, {"caption": "man discussing that he applied a waveform in an experiment using hiv infected human cells", "video_id": "video12230", "sen_id": 213536}, {"caption": "a scientist talks about an experiement he has attmepted on hiv cells", "video_id": "video12230", "sen_id": 213537}, {"caption": "a researcher compares the microscope slide of cells to their tactic of treating the disease of hiv", "video_id": "video12230", "sen_id": 213538}, {"caption": "a doctor describing the new wave form in the cells of human having hiv", "video_id": "video12230", "sen_id": 213539}, {"caption": "a group of people hiking in the mountains", "video_id": "video10766", "sen_id": 213540}, {"caption": "a valley is described as images are shown of the location", "video_id": "video10766", "sen_id": 213541}, {"caption": "a nature film that includes mountains and hikers flowers and fields with them", "video_id": "video10766", "sen_id": 213542}, {"caption": "an advertisement or documentary shows scenery", "video_id": "video10766", "sen_id": 213543}, {"caption": "a group of people are hiking followed by nature shots of plants and mountains", "video_id": "video10766", "sen_id": 213544}, {"caption": "a group of people hiking and the showing of the alpines", "video_id": "video10766", "sen_id": 213545}, {"caption": "there are different noof flowers near the forest", "video_id": "video10766", "sen_id": 213546}, {"caption": "beautiful shots of a mountainous region with stunning wildflowers and scenery", "video_id": "video10766", "sen_id": 213547}, {"caption": "beautiful alpine scenery is display as a narrator discusses it", "video_id": "video10766", "sen_id": 213548}, {"caption": "flowers grow in grassy fields beside the big mountains", "video_id": "video10766", "sen_id": 213549}, {"caption": "there are many people walking in the mountain with stones on the small road", "video_id": "video10766", "sen_id": 213550}, {"caption": "a group of people goes hiking in a trail between mountains in the spring", "video_id": "video10766", "sen_id": 213551}, {"caption": "a high valley surrounded by mountains is filled with trees and flowering plants", "video_id": "video10766", "sen_id": 213552}, {"caption": "a tourist are walking in the flower garden and enjoying the scenery", "video_id": "video10766", "sen_id": 213553}, {"caption": "the valley there is people walking and flowers are there", "video_id": "video10766", "sen_id": 213554}, {"caption": "there are some people walking in to the mountain", "video_id": "video10766", "sen_id": 213555}, {"caption": "people are hiking in the mountains on a beautiful day and there are pretty purple flowers everywhere", "video_id": "video10766", "sen_id": 213556}, {"caption": "several people walk through a grass field which has many flowers that are blooming", "video_id": "video10766", "sen_id": 213557}, {"caption": "high valley that contains seven lakes the climb is testy but very worth it in the end beautiful trails", "video_id": "video10766", "sen_id": 213558}, {"caption": "some tourist are climbing a hill as they pass though green field", "video_id": "video10766", "sen_id": 213559}, {"caption": "a happy woman sings about a tardis tea pot as she holds it in her hand", "video_id": "video11276", "sen_id": 213560}, {"caption": "someone picking up a dr who teapot in the kitchen", "video_id": "video11276", "sen_id": 213561}, {"caption": "a person holding a blue teapot shaped like a house", "video_id": "video11276", "sen_id": 213562}, {"caption": "woman holding a small blue teapot in a kitchen and singing to it", "video_id": "video11276", "sen_id": 213563}, {"caption": "someone take a teapot off of a shelf then shows all the sides of it", "video_id": "video11276", "sen_id": 213564}, {"caption": "a woman in a dirty kitchen is singing about how much she loves her tardis tea pot and all of the things it can do", "video_id": "video11276", "sen_id": 213565}, {"caption": "the girl have a blue tea pot and singing a song", "video_id": "video11276", "sen_id": 213566}, {"caption": "there is a women explains about a jug", "video_id": "video11276", "sen_id": 213567}, {"caption": "a girl explaining about some product in her kitchen", "video_id": "video11276", "sen_id": 213568}, {"caption": "a woman is singing about a teapot that looks like a blue phone booth", "video_id": "video11276", "sen_id": 213569}, {"caption": "a man in a kitchen showing and explaining about the jug in his hand", "video_id": "video11276", "sen_id": 213570}, {"caption": "a woman is singing while moving around a blue novelty teapot over the sink", "video_id": "video11276", "sen_id": 213571}, {"caption": "a man holds a blue teapot shaped like dr who s tardis", "video_id": "video11276", "sen_id": 213572}, {"caption": "women holding a black colored tea pot and singing", "video_id": "video11276", "sen_id": 213573}, {"caption": "a person is showing tea cup in shape of phone booth", "video_id": "video11276", "sen_id": 213574}, {"caption": "a person picks up a jug like thing and shakes it well", "video_id": "video11276", "sen_id": 213575}, {"caption": "a men in white tshirt is telling about something", "video_id": "video11276", "sen_id": 213576}, {"caption": "one women had a nice and lovely coffee pot", "video_id": "video11276", "sen_id": 213577}, {"caption": "a woman sings joyful about her favorite ceramic teapot", "video_id": "video11276", "sen_id": 213578}, {"caption": "a man is showing a coffee kettle in his kitchen", "video_id": "video11276", "sen_id": 213579}, {"caption": "a man and a woman are lying in bed and she begins singing", "video_id": "video10436", "sen_id": 213580}, {"caption": "couple in bed are shown while music is being played in the background", "video_id": "video10436", "sen_id": 213581}, {"caption": "a young girl singing a song while sleeping on the bed", "video_id": "video10436", "sen_id": 213582}, {"caption": "a woman is laying in bed with her boyfriend and he tries to kiss her but she denies him the kiss", "video_id": "video10436", "sen_id": 213583}, {"caption": "a man and a woman are awaking in bed the woman denies the man a kiss", "video_id": "video10436", "sen_id": 213584}, {"caption": "a girl wakes up in bed and starts singing", "video_id": "video10436", "sen_id": 213585}, {"caption": "from a private room to private mood a song from bed", "video_id": "video10436", "sen_id": 213586}, {"caption": "a girl and guy are are sleeping together and then the girl wakes up and starts to sing", "video_id": "video10436", "sen_id": 213587}, {"caption": "a woman laying in bed with a man singing and fluffing her hair", "video_id": "video10436", "sen_id": 213588}, {"caption": "in the private room the husband and wife is sleeping and suddenly she gets up and singing and going some where and the husband is seening where she going", "video_id": "video10436", "sen_id": 213589}, {"caption": "a lady is dancing with a boyh", "video_id": "video10436", "sen_id": 213590}, {"caption": "a lady and boy acting out to a song that is being played", "video_id": "video10436", "sen_id": 213591}, {"caption": "a young woman and boy wake up in bed denies attempts to hug", "video_id": "video10436", "sen_id": 213592}, {"caption": "a girl and boy sleeping in bed getting up and singing song hairs in hand displaying on screen", "video_id": "video10436", "sen_id": 213593}, {"caption": "sexy brunette in black tshirt sleeping on bed with the guy in white tshirt", "video_id": "video10436", "sen_id": 213594}, {"caption": "a man and a lsy is sleeping on the bed", "video_id": "video10436", "sen_id": 213595}, {"caption": "very good musical song a girl is busty and beauty", "video_id": "video10436", "sen_id": 213596}, {"caption": "a girl recreates a music video of avril lavigne s", "video_id": "video10436", "sen_id": 213597}, {"caption": "the romantic bed room show of the couple before climax she leaves the bed", "video_id": "video10436", "sen_id": 213598}, {"caption": "a man and a woman are lying in a bed", "video_id": "video10436", "sen_id": 213599}, {"caption": "will smith jaden smith and bradley cooper are on a talk show", "video_id": "video11392", "sen_id": 213600}, {"caption": "four people on a couch and one man in a chair are talking to each other", "video_id": "video11392", "sen_id": 213601}, {"caption": "a group of people are talking about searching for themselves online", "video_id": "video11392", "sen_id": 213602}, {"caption": "man in grey suit interviewing a group of celebrities on a set", "video_id": "video11392", "sen_id": 213603}, {"caption": "four celebrities are sitting on a couch talking to a talkshow host", "video_id": "video11392", "sen_id": 213604}, {"caption": "a group of celebrities are being interviewed", "video_id": "video11392", "sen_id": 213605}, {"caption": "a comedian asks celebrities questions on a panel comedy show", "video_id": "video11392", "sen_id": 213606}, {"caption": "a group of celebrities are interviewed on a couch by a man in a brown suit", "video_id": "video11392", "sen_id": 213607}, {"caption": "a guy hosts a show where he asks celebrities funny questions", "video_id": "video11392", "sen_id": 213608}, {"caption": "a group of people are having a discussion on the graham norton show", "video_id": "video11392", "sen_id": 213609}, {"caption": "the woman is mentioning that you should not google yourself and will smith agrees with her", "video_id": "video11392", "sen_id": 213610}, {"caption": "in a television show a group of men and brown color haired woman talking each other and laughing in the show", "video_id": "video11392", "sen_id": 213611}, {"caption": "a talk show with celebrities speaking about the danger of googling themselves", "video_id": "video11392", "sen_id": 213612}, {"caption": "a pretty blonde woman sits with people and makes them all laugh", "video_id": "video11392", "sen_id": 213613}, {"caption": " bradley cooper and heather graham on the graham norton show", "video_id": "video11392", "sen_id": 213614}, {"caption": "tv host show in an orange purple studio with men and woman celebrities", "video_id": "video11392", "sen_id": 213615}, {"caption": "it about a meeting of film stars and their enjoyment", "video_id": "video11392", "sen_id": 213616}, {"caption": "a man in a gray suit is interviewing four famous people", "video_id": "video11392", "sen_id": 213617}, {"caption": "some celebrities are having a good time on a talk show where jamie fox and his son appear", "video_id": "video11392", "sen_id": 213618}, {"caption": "a woman with blonde hair is talking about something", "video_id": "video11392", "sen_id": 213619}, {"caption": "men in a rain forest looking to discover something new with hummingbirds", "video_id": "video10055", "sen_id": 213620}, {"caption": "a man in a blue rain jacket and a beige hat is in the wilderness interacting with leaves and a bird", "video_id": "video10055", "sen_id": 213621}, {"caption": "a woman shows the scientists out in nature that she says helped her produce a film", "video_id": "video10055", "sen_id": 213622}, {"caption": "a woman is sitting in front of a green curtain and a man is looking for humming birds", "video_id": "video10055", "sen_id": 213623}, {"caption": "guys use mirrors out in nature to try and take pictures of various wild life", "video_id": "video10055", "sen_id": 213624}, {"caption": "a man uses a mirror on a pole to see what kind of birds are in a nest", "video_id": "video10055", "sen_id": 213625}, {"caption": "some scientists are in the forest using equipment and then the scene changes to a woman talking to the camera", "video_id": "video10055", "sen_id": 213626}, {"caption": "people record wildlife in the woods a woman sits and talks", "video_id": "video10055", "sen_id": 213627}, {"caption": "a group of scientists study birds in the wild", "video_id": "video10055", "sen_id": 213628}, {"caption": "a nature interactive video seems to be as self explaineda man shows a nest by nature and bird sucks honey from the flower", "video_id": "video10055", "sen_id": 213629}, {"caption": "there is a man plucking a flower from a plant", "video_id": "video10055", "sen_id": 213630}, {"caption": "a person seeing the net of a bird using a mirror on the stick", "video_id": "video10055", "sen_id": 213631}, {"caption": "a man is looking at plants and birds in nature", "video_id": "video10055", "sen_id": 213632}, {"caption": "a group of scientists inspect nature for a film", "video_id": "video10055", "sen_id": 213633}, {"caption": "mirror is been used for finding whether the egg is present inside the nest or not", "video_id": "video10055", "sen_id": 213634}, {"caption": "the women say about the experience about the making of her film she says that without the help of the scientist she could nt make the film", "video_id": "video10055", "sen_id": 213635}, {"caption": "in forest man is trying to take video of flowera colorful bird comes to suck honey", "video_id": "video10055", "sen_id": 213636}, {"caption": "a man holds a pole with a mirror on it to see whats in a birds nest", "video_id": "video10055", "sen_id": 213637}, {"caption": "people out in nature filming and observing it", "video_id": "video10055", "sen_id": 213638}, {"caption": "a man research a plant and bird is touching the flower to suck honey", "video_id": "video10055", "sen_id": 213639}, {"caption": "a cook slices a red tomato in half and then into even slices on a cutting board on a counter placed near a gray poodle", "video_id": "video11361", "sen_id": 213640}, {"caption": "a woman demonstrates a recipe by slicing up a red tomato", "video_id": "video11361", "sen_id": 213641}, {"caption": "a man is speaking about how to cut big red tomatoes while demonstrating the action in the kitchen with a knife and cutting board", "video_id": "video11361", "sen_id": 213642}, {"caption": "a person is slicing a tomato in various ways on a wooden cutting board", "video_id": "video11361", "sen_id": 213643}, {"caption": "a woman is standing at a counter slicing a tomato", "video_id": "video11361", "sen_id": 213644}, {"caption": "a video that shows how to cut a tomato", "video_id": "video11361", "sen_id": 213645}, {"caption": "a chef slices a tomato into uniform slices on a wooden cutting board", "video_id": "video11361", "sen_id": 213646}, {"caption": "a chef preps for a recipe by thinly slicing a red tomato", "video_id": "video11361", "sen_id": 213647}, {"caption": "a woman cutting a tomato on a cutting board", "video_id": "video11361", "sen_id": 213648}, {"caption": "a person is cutting a tomato", "video_id": "video11361", "sen_id": 213649}, {"caption": "a man talking to the camera and cutting a tomato", "video_id": "video11361", "sen_id": 213650}, {"caption": "a guy talks about food as he cuts up a tomato into slices", "video_id": "video11361", "sen_id": 213651}, {"caption": "a man cuts up a tomato into into thin and small slices", "video_id": "video11361", "sen_id": 213652}, {"caption": "a man is slicing a tomato half with a knife on a cutting board", "video_id": "video11361", "sen_id": 213653}, {"caption": "a woman is cutting a tomato in half and removing its stem", "video_id": "video11361", "sen_id": 213654}, {"caption": "a man slicing potatoes into small pieces on the table", "video_id": "video11361", "sen_id": 213655}, {"caption": "a chef prepares a tomato with a sharp knife", "video_id": "video11361", "sen_id": 213656}, {"caption": "a woman is in the kitchen slicing tomatoes on the counter", "video_id": "video11361", "sen_id": 213657}, {"caption": "a man cuts up a tomato with a big knife", "video_id": "video11361", "sen_id": 213658}, {"caption": "a female chef is cutting tomato into fine slices", "video_id": "video11361", "sen_id": 213659}, {"caption": "a woman's voice over discussing a recipe and what she uses", "video_id": "video10949", "sen_id": 213660}, {"caption": "a woman was teaching and explaing the recipe cookie", "video_id": "video10949", "sen_id": 213661}, {"caption": "a woman discusses the best ratio of water to nuts for making almond milk", "video_id": "video10949", "sen_id": 213662}, {"caption": "a cup of frothy milk with a measurement device around it", "video_id": "video10949", "sen_id": 213663}, {"caption": "this is an image of a white creamy milky substance with bubbles throughout the mixture", "video_id": "video10949", "sen_id": 213664}, {"caption": "a frothy white liquid sits on a counter top while a woman discusses making her own nut milk", "video_id": "video10949", "sen_id": 213665}, {"caption": "a woman describes how to make a hot drink to an audience", "video_id": "video10949", "sen_id": 213666}, {"caption": "making recipe with like milk in the cup", "video_id": "video10949", "sen_id": 213667}, {"caption": "person presenting the ingredients which are necessary for the dessert", "video_id": "video10949", "sen_id": 213668}, {"caption": "a person is talking about the size and shape", "video_id": "video10949", "sen_id": 213669}, {"caption": "in the kitchen a woman making a verity dish", "video_id": "video10949", "sen_id": 213670}, {"caption": "milk on the glass is displayed", "video_id": "video10949", "sen_id": 213671}, {"caption": "we see a container of almond milk and a narrator instructs", "video_id": "video10949", "sen_id": 213672}, {"caption": "a egg and milk inside bowl inside kitchen to prepare to serve to eat dish displaying on screen", "video_id": "video10949", "sen_id": 213673}, {"caption": "short spoken presentation of a gooey material", "video_id": "video10949", "sen_id": 213674}, {"caption": "there is a women cooking food in untensil", "video_id": "video10949", "sen_id": 213675}, {"caption": "a woman and talking about almond milk she says she buys it and makes her own as well", "video_id": "video10949", "sen_id": 213676}, {"caption": "a bowl has white milk with bubbles on top in it", "video_id": "video10949", "sen_id": 213677}, {"caption": "a woman discusses the ingredients and necessary ratio amounts needed for homemade nut milk", "video_id": "video10949", "sen_id": 213678}, {"caption": "some white liquid is in a place inside", "video_id": "video10949", "sen_id": 213679}, {"caption": "a car is on the road in a busy city", "video_id": "video11999", "sen_id": 213680}, {"caption": "a reporter is speaking the back ground while a man walks away from a parked taxi on a street", "video_id": "video11999", "sen_id": 213681}, {"caption": "a taxi drives down a city street with a tall building in the background", "video_id": "video11999", "sen_id": 213682}, {"caption": "a car drives down an empty street while a man walks behind it", "video_id": "video11999", "sen_id": 213683}, {"caption": "a reporter is doing a story on an arabic man while video plays of an arabic city", "video_id": "video11999", "sen_id": 213684}, {"caption": "a taxi is shown on a street while a narrator talks about fighting in gaza", "video_id": "video11999", "sen_id": 213685}, {"caption": "a journalist from euronews is giving a news about a certain place", "video_id": "video11999", "sen_id": 213686}, {"caption": "there is man walking in to the street", "video_id": "video11999", "sen_id": 213687}, {"caption": "the yellow car is standing on the road on a sunny day", "video_id": "video11999", "sen_id": 213688}, {"caption": "a car drives down a road on a sunny day on the news station", "video_id": "video11999", "sen_id": 213689}, {"caption": "the news in the tele vision show euro news", "video_id": "video11999", "sen_id": 213690}, {"caption": "a man s afternoon routine is narrated showing his exit of a taxi", "video_id": "video11999", "sen_id": 213691}, {"caption": "the person is walking behind the yellow car", "video_id": "video11999", "sen_id": 213692}, {"caption": "a grey sedan drives off and a yellow taxi stays behind", "video_id": "video11999", "sen_id": 213693}, {"caption": "a car is parked by a city side walk", "video_id": "video11999", "sen_id": 213694}, {"caption": "its a sunrise near the building and a car on raod", "video_id": "video11999", "sen_id": 213695}, {"caption": "a gentleman is giving a news report of abu ali and his involvement in fata while showing a picture of a taxi sitting across the street from a mosque in gaza", "video_id": "video11999", "sen_id": 213696}, {"caption": "a car stands still on the road and its clip of a news channel", "video_id": "video11999", "sen_id": 213697}, {"caption": "a black car takes off while a taxi remains idle on a city street brightly illuminated by the sun", "video_id": "video11999", "sen_id": 213698}, {"caption": "a person is walking in the road at day", "video_id": "video11999", "sen_id": 213699}, {"caption": "two men in sports coats are talking to one man in a tie", "video_id": "video12022", "sen_id": 213700}, {"caption": "a man speaking a foreign language to two other men sitting across from a table", "video_id": "video12022", "sen_id": 213701}, {"caption": "a man sits in a room talking to two other men who are sitting behind a desk interviewing him", "video_id": "video12022", "sen_id": 213702}, {"caption": "a man sitting in a large office talking to two other men", "video_id": "video12022", "sen_id": 213703}, {"caption": "a man in a white shirt and black tie is answering the questions of two men seated behind a table at an engineering college campus interview", "video_id": "video12022", "sen_id": 213704}, {"caption": "a man is speaking in hindi to two others sitting at a table", "video_id": "video12022", "sen_id": 213705}, {"caption": "a man in a white shirt is been asked questions by two men in suits", "video_id": "video12022", "sen_id": 213706}, {"caption": "a man talking with another two man in aroom", "video_id": "video12022", "sen_id": 213707}, {"caption": "a man is speaking in foreign language to the camera", "video_id": "video12022", "sen_id": 213708}, {"caption": "guy in an interview telling about his family details", "video_id": "video12022", "sen_id": 213709}, {"caption": "a young man in a white shirt speaks to a table of people", "video_id": "video12022", "sen_id": 213710}, {"caption": "one of the company taking interview with the engineering student in the campus selection", "video_id": "video12022", "sen_id": 213711}, {"caption": "a man is being interviewed by two other men", "video_id": "video12022", "sen_id": 213712}, {"caption": "a man is delightfully talking to another person", "video_id": "video12022", "sen_id": 213713}, {"caption": "a person giving a campus interview is seen explaining about himself to the panel", "video_id": "video12022", "sen_id": 213714}, {"caption": "a foreign man talking to two other men in a video with subtitles", "video_id": "video12022", "sen_id": 213715}, {"caption": "a white shirt young man attending a interview", "video_id": "video12022", "sen_id": 213716}, {"caption": "an indian man talking to another group of people for some sort of an interview", "video_id": "video12022", "sen_id": 213717}, {"caption": "a man is speaking in a language other than english", "video_id": "video12022", "sen_id": 213718}, {"caption": "a scene from the nanban movie directed by the shankar", "video_id": "video12022", "sen_id": 213719}, {"caption": "a man is explaining the meaning behind a quote by albert o hirschman", "video_id": "video12933", "sen_id": 213720}, {"caption": "a professor gave a power point presentation on exit voice and loyalty: responses to decline in firms organizations and states", "video_id": "video12933", "sen_id": 213721}, {"caption": "a man describes a slide that offers responses to decline in firms", "video_id": "video12933", "sen_id": 213722}, {"caption": "a man gives a presentation featuring an older man looking rather somber", "video_id": "video12933", "sen_id": 213723}, {"caption": "a man speaks while standing next to an image of an older man sitting down", "video_id": "video12933", "sen_id": 213724}, {"caption": "an old white man in a button down shirt with thinning hair", "video_id": "video12933", "sen_id": 213725}, {"caption": "a man in a suit is speaking followed by a black and white photo of a albert o hirschman", "video_id": "video12933", "sen_id": 213726}, {"caption": "a man in a black suit gives a presentation in front of a slideshow", "video_id": "video12933", "sen_id": 213727}, {"caption": "an old man in a shirt watching from a room", "video_id": "video12933", "sen_id": 213728}, {"caption": "a men in black suit is talking about someone", "video_id": "video12933", "sen_id": 213729}, {"caption": "there is a person on the screen while a man is standing becides giving explanation about him", "video_id": "video12933", "sen_id": 213730}, {"caption": "a person explains about exit voice and loyalty by albert o hirschman", "video_id": "video12933", "sen_id": 213731}, {"caption": "there is a man in shirt looking and thinking", "video_id": "video12933", "sen_id": 213732}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video12933", "sen_id": 213733}, {"caption": "a man in a suit is giving a presentation and talking about firms and organizations", "video_id": "video12933", "sen_id": 213734}, {"caption": "the entittle is exit and loyality:responses to deccline in firmshippo is the group protecter", "video_id": "video12933", "sen_id": 213735}, {"caption": "an old man in a picture is near some text", "video_id": "video12933", "sen_id": 213736}, {"caption": "a new anchor talks about exit and loyalty: responses to decline in firms organizations and states", "video_id": "video12933", "sen_id": 213737}, {"caption": " and loyalty: responses to decline in firms and states", "video_id": "video12933", "sen_id": 213738}, {"caption": "a reporter explaining about albert o hirschman words", "video_id": "video12933", "sen_id": 213739}, {"caption": "fire surrounding a car to make it look more dramatic", "video_id": "video11438", "sen_id": 213740}, {"caption": "a car is in a field about to catch fire", "video_id": "video11438", "sen_id": 213741}, {"caption": "a car is parked on the street while a line of fire burns down the side of the street", "video_id": "video11438", "sen_id": 213742}, {"caption": "a car's attributes are being described by a reporter", "video_id": "video11438", "sen_id": 213743}, {"caption": "a stream of fire passes by images of a nice car", "video_id": "video11438", "sen_id": 213744}, {"caption": "flames are going across the screen as a narrator describes some of the new features on a grey chevrolet corvette", "video_id": "video11438", "sen_id": 213745}, {"caption": "a car parked on the road while being surrounded by flames", "video_id": "video11438", "sen_id": 213746}, {"caption": "a white is placed on the open area and a fire is moving beside the car", "video_id": "video11438", "sen_id": 213747}, {"caption": "a video that is showing a car and all its features with fire around it", "video_id": "video11438", "sen_id": 213748}, {"caption": "a fire is put on around the costly car and the car was about to start and rush", "video_id": "video11438", "sen_id": 213749}, {"caption": "a silver car sits on the ground as a fire is lit around it", "video_id": "video11438", "sen_id": 213750}, {"caption": "a chevrolet corvette newer model being reviewed for its changes", "video_id": "video11438", "sen_id": 213751}, {"caption": "a car shown on a road with flames next to it", "video_id": "video11438", "sen_id": 213752}, {"caption": "a silver luxurious vehicle is surrounded by fire and smoke", "video_id": "video11438", "sen_id": 213753}, {"caption": "a corvette car sits on a highway as fire moves around it", "video_id": "video11438", "sen_id": 213754}, {"caption": "a corvette with flames rollings in front of it while a man describes the features of the car", "video_id": "video11438", "sen_id": 213755}, {"caption": "a silver car is surrounded by flames as the voice of a british man describes it s merits", "video_id": "video11438", "sen_id": 213756}, {"caption": "fire approaching and passing a silver corvette while the car s features are being talked about", "video_id": "video11438", "sen_id": 213757}, {"caption": "a circle of flames surround a silver colored sports car", "video_id": "video11438", "sen_id": 213758}, {"caption": "a fire is burning towards a silver car", "video_id": "video11438", "sen_id": 213759}, {"caption": "someone is using a cup to dig in the soil that is on the ground followed by kids sitting at a red lunch table", "video_id": "video12706", "sen_id": 213760}, {"caption": "young children are discussing the consistency of dirt in their backyard", "video_id": "video12706", "sen_id": 213761}, {"caption": "a group of children set together at a cafeteria table in a school", "video_id": "video12706", "sen_id": 213762}, {"caption": "a man talks over a video of children learning about soil", "video_id": "video12706", "sen_id": 213763}, {"caption": "someone digging with a cup into dirt and children in the classroom", "video_id": "video12706", "sen_id": 213764}, {"caption": "children are digging in a soil and examining the soil in their hands", "video_id": "video12706", "sen_id": 213765}, {"caption": "a man is digging soil using a cup and later students sit in front of coffee which is on a table", "video_id": "video12706", "sen_id": 213766}, {"caption": "a presenter talks about environmental practices with schoolchildren", "video_id": "video12706", "sen_id": 213767}, {"caption": "school children in uniform test weather the s oil is good for planting", "video_id": "video12706", "sen_id": 213768}, {"caption": "the kids are playing with the mudthey take the cup and fill it with mudchildrens sit on the chair", "video_id": "video12706", "sen_id": 213769}, {"caption": "a mud digging with hands glass a little kids sitting on the table touching the cups in hands", "video_id": "video12706", "sen_id": 213770}, {"caption": "children s ordered some hot drink and one boy saying it is hot", "video_id": "video12706", "sen_id": 213771}, {"caption": "racing of bike on normal mud road very fast", "video_id": "video12706", "sen_id": 213772}, {"caption": "a man and a young girl talk about earth and staff at a location while examining dirt and sitting at a table", "video_id": "video12706", "sen_id": 213773}, {"caption": "guy is picking up the mud through the cup and the school boys are having a cup of coffee", "video_id": "video12706", "sen_id": 213774}, {"caption": "a man talking about planting seeds kids discussing environmentally friendly stuff", "video_id": "video12706", "sen_id": 213775}, {"caption": "there is a man testing land with a child", "video_id": "video12706", "sen_id": 213776}, {"caption": "children are digging out soil suitable for seeding and assembles around a table", "video_id": "video12706", "sen_id": 213777}, {"caption": "two persons are collecting some send and four students are sitting arround a table in a restaurant", "video_id": "video12706", "sen_id": 213778}, {"caption": "a person is digging with the students in the class room", "video_id": "video12706", "sen_id": 213779}, {"caption": "a woman in a red shirt holds the hand of a blond child as they slide down a ride at an amusement park", "video_id": "video10061", "sen_id": 213780}, {"caption": "watch more hilarious family fails tonight with new episodes of america's funniest videos", "video_id": "video10061", "sen_id": 213781}, {"caption": "kids are playing in a slide or divider of the escalator", "video_id": "video10061", "sen_id": 213782}, {"caption": "a woman and a child sit atop a large blue slide then come down together holding hands", "video_id": "video10061", "sen_id": 213783}, {"caption": "a girl is dragging a small child down a large blue indoor slide", "video_id": "video10061", "sen_id": 213784}, {"caption": "a little girl sliding down a slide with her little sister", "video_id": "video10061", "sen_id": 213785}, {"caption": "a child is going down a blue slide", "video_id": "video10061", "sen_id": 213786}, {"caption": "a small girl in red t-shirt is playing in slider", "video_id": "video10061", "sen_id": 213787}, {"caption": "a woman in a red shirt makes a baby go down a long slide", "video_id": "video10061", "sen_id": 213788}, {"caption": "the man critizes his wife for hurting their child", "video_id": "video10061", "sen_id": 213789}, {"caption": "a baby slope game where some babies are playing with presence of their mother while some of them are crying", "video_id": "video10061", "sen_id": 213790}, {"caption": "there is a women sliding with her baby", "video_id": "video10061", "sen_id": 213791}, {"caption": "a girl in blue jeans and orange t-shirt is sliding down dragging a kid along with her", "video_id": "video10061", "sen_id": 213792}, {"caption": "a young girl in a red shirt slides down a large slide while holding a toddler s hand who is sitting in a different lane", "video_id": "video10061", "sen_id": 213793}, {"caption": "a woman with a child is playing and a child get injured starts crying", "video_id": "video10061", "sen_id": 213794}, {"caption": "a boy is climbing up on a slider and running", "video_id": "video10061", "sen_id": 213795}, {"caption": "one girl with a baby and skates in up and comes down", "video_id": "video10061", "sen_id": 213796}, {"caption": "a little kids slides down the slide upside down", "video_id": "video10061", "sen_id": 213797}, {"caption": "in this video clip a child is crying", "video_id": "video10061", "sen_id": 213798}, {"caption": "a person is sliding down the center of a staircase", "video_id": "video10061", "sen_id": 213799}, {"caption": "a music video with lady gaga singing her song love game", "video_id": "video12894", "sen_id": 213800}, {"caption": "a woman dances and sings in various locations and in various outfits", "video_id": "video12894", "sen_id": 213801}, {"caption": "a woman is dancing and singing", "video_id": "video12894", "sen_id": 213802}, {"caption": "lady gaga is singing a song in multiple costumes", "video_id": "video12894", "sen_id": 213803}, {"caption": "a blonde woman sings and dances around other people", "video_id": "video12894", "sen_id": 213804}, {"caption": "clips from a lady gaga video selections from a lady gaga video", "video_id": "video12894", "sen_id": 213805}, {"caption": "lady gaga and her show of her music videos", "video_id": "video12894", "sen_id": 213806}, {"caption": "a clip from a lady gaga music video", "video_id": "video12894", "sen_id": 213807}, {"caption": "a video compilation of lady gaga with a variety of her songs", "video_id": "video12894", "sen_id": 213808}, {"caption": "a young blonde woman sings and dances in various locations", "video_id": "video12894", "sen_id": 213809}, {"caption": "lady gaga is dancing and singing in music video", "video_id": "video12894", "sen_id": 213810}, {"caption": "there are many models posing the camera in different angels", "video_id": "video12894", "sen_id": 213811}, {"caption": "a girl singing nad dancing while some others also dancing behind her", "video_id": "video12894", "sen_id": 213812}, {"caption": "lady gaga sings love game and other songs", "video_id": "video12894", "sen_id": 213813}, {"caption": "a music video with a lady wearing a wierd wig", "video_id": "video12894", "sen_id": 213814}, {"caption": "an album song small portion", "video_id": "video12894", "sen_id": 213815}, {"caption": "there is a woman singing a song with a group of people", "video_id": "video12894", "sen_id": 213816}, {"caption": "various clips of lady gaga play to music", "video_id": "video12894", "sen_id": 213817}, {"caption": "a blonde woman poses while pop music plays", "video_id": "video12894", "sen_id": 213818}, {"caption": "lady gaga sings in different costumes while dancers move oddly", "video_id": "video12894", "sen_id": 213819}, {"caption": "jamaican steel drum music plays as the camera pans around a hotel room", "video_id": "video11521", "sen_id": 213820}, {"caption": "an couple of ocean-themed rooms for a child is explored", "video_id": "video11521", "sen_id": 213821}, {"caption": "a hotel room is decorated with a series of colorful disney themed decorations", "video_id": "video11521", "sen_id": 213822}, {"caption": "the themed hotel room furniture depicts and underwater scene", "video_id": "video11521", "sen_id": 213823}, {"caption": "a camera is panning around a child's bedroom showing the viewer the colorful furniture", "video_id": "video11521", "sen_id": 213824}, {"caption": "there is a room with a ocean themed bed and coral colored chairs", "video_id": "video11521", "sen_id": 213825}, {"caption": "a computer and sofa bed dining table are displayed", "video_id": "video11521", "sen_id": 213826}, {"caption": "in a house for a small boys designs very well", "video_id": "video11521", "sen_id": 213827}, {"caption": "a tv is placed on the blue table and a orange chair is with the dinning table and a cute bedroom set", "video_id": "video11521", "sen_id": 213828}, {"caption": "a beautiful kids room with their things fantastic kids room", "video_id": "video11521", "sen_id": 213829}, {"caption": "men explaing a room with beds and chairs", "video_id": "video11521", "sen_id": 213830}, {"caption": "a child s room is featured with many very colorful pieces of furniture", "video_id": "video11521", "sen_id": 213831}, {"caption": "a man exploring the interiors of his home and explains about it", "video_id": "video11521", "sen_id": 213832}, {"caption": "a vedio clip of an advertisement about interrior of children room", "video_id": "video11521", "sen_id": 213833}, {"caption": "a camera moves through a mult-room space decorated in an under the sea motif", "video_id": "video11521", "sen_id": 213834}, {"caption": "women show the various room in her houe", "video_id": "video11521", "sen_id": 213835}, {"caption": "a room that is decorated in underwater theme", "video_id": "video11521", "sen_id": 213836}, {"caption": "the camera pans around the room of a child", "video_id": "video11521", "sen_id": 213837}, {"caption": "a video shows painted sea-themed furniture including a table and a bed frame", "video_id": "video11521", "sen_id": 213838}, {"caption": "an advertisemnt of a topical sea inspired hotel room were everything has an under the sea inspiration", "video_id": "video11521", "sen_id": 213839}, {"caption": "a man is sitting in front of a monitors on a table while speaking about technology", "video_id": "video10867", "sen_id": 213840}, {"caption": "a man describing how business will be ran in the future", "video_id": "video10867", "sen_id": 213841}, {"caption": "a man sits by a computer desk while talking to another person", "video_id": "video10867", "sen_id": 213842}, {"caption": "a man in a striped shirt sits in front of a computer station discussing business practices", "video_id": "video10867", "sen_id": 213843}, {"caption": "a man in a blue stripped shirt is talking about algorithms", "video_id": "video10867", "sen_id": 213844}, {"caption": "a man speaks about economic growth for our country", "video_id": "video10867", "sen_id": 213845}, {"caption": "a man in blue and white stripped button up shirt sits in front of two computer screens", "video_id": "video10867", "sen_id": 213846}, {"caption": "a man in a blue shirt sitting by computers and talking", "video_id": "video10867", "sen_id": 213847}, {"caption": "instructor roger barga describing how algorithms and machine learning to questions over data", "video_id": "video10867", "sen_id": 213848}, {"caption": "roger barga discusses how algorithms and artificial intelligence will have benefits for society", "video_id": "video10867", "sen_id": 213849}, {"caption": "an instructor is talking about computers to the camera", "video_id": "video10867", "sen_id": 213850}, {"caption": "a college professor talks about the future of business development", "video_id": "video10867", "sen_id": 213851}, {"caption": "a man in a blue and white shirt is talking on camera", "video_id": "video10867", "sen_id": 213852}, {"caption": "a man sits by a computer and talks about the future of business", "video_id": "video10867", "sen_id": 213853}, {"caption": "the man in the striped shirt sits at the desk with two computer monitors", "video_id": "video10867", "sen_id": 213854}, {"caption": "a instructor speaks about his experience of the teaching to students", "video_id": "video10867", "sen_id": 213855}, {"caption": "an interview with a guy that looks like scott baio with bug eyes", "video_id": "video10867", "sen_id": 213856}, {"caption": "the instructor roger barga is talking about his study and some facts", "video_id": "video10867", "sen_id": 213857}, {"caption": "an instructor talking about economic growth via algorithms", "video_id": "video10867", "sen_id": 213858}, {"caption": "a man in a striped shirt is sitting and talk", "video_id": "video10867", "sen_id": 213859}, {"caption": "two men are talking at a conference table", "video_id": "video12448", "sen_id": 213860}, {"caption": "two men are discussing the details of how you can listen in on other cell phones", "video_id": "video12448", "sen_id": 213861}, {"caption": "two men in suits discuss surveillance of mobile phones with a picture of snowden in the background", "video_id": "video12448", "sen_id": 213862}, {"caption": "two men in suits discuss news issues in a large tv studio", "video_id": "video12448", "sen_id": 213863}, {"caption": "two mean are sitting at a news desk having a discussion", "video_id": "video12448", "sen_id": 213864}, {"caption": "two white men in suits are telling a news story", "video_id": "video12448", "sen_id": 213865}, {"caption": "two men on a television set speaking about smartphones there is a large picture of a man wearing glasses in the background", "video_id": "video12448", "sen_id": 213866}, {"caption": "there is a suit man talking from the studio", "video_id": "video12448", "sen_id": 213867}, {"caption": "a man is speaking to a second man on a news show", "video_id": "video12448", "sen_id": 213868}, {"caption": "two men were talking in the tv channel", "video_id": "video12448", "sen_id": 213869}, {"caption": "man in black coat is saying something in tv show", "video_id": "video12448", "sen_id": 213870}, {"caption": "there is a women talking from the studio", "video_id": "video12448", "sen_id": 213871}, {"caption": "in a stage two man talking about something", "video_id": "video12448", "sen_id": 213872}, {"caption": "two people in suites sitting in a news room talking", "video_id": "video12448", "sen_id": 213873}, {"caption": "guys in suits with glass are talking in the studio", "video_id": "video12448", "sen_id": 213874}, {"caption": "discussion of new ways to control smart phones", "video_id": "video12448", "sen_id": 213875}, {"caption": "a man is talking on tv in a news channel", "video_id": "video12448", "sen_id": 213876}, {"caption": "one man talk to another in a news center", "video_id": "video12448", "sen_id": 213877}, {"caption": "a media person speaks with the common man in a tv show", "video_id": "video12448", "sen_id": 213878}, {"caption": "a couple men are speaking about edward snowdem", "video_id": "video12448", "sen_id": 213879}, {"caption": "a group of men running a race on an outdoor track", "video_id": "video10992", "sen_id": 213880}, {"caption": "people are running as fast as they can in a track competition", "video_id": "video10992", "sen_id": 213881}, {"caption": "a group of runners race each other on the race track", "video_id": "video10992", "sen_id": 213882}, {"caption": "people are running in a track race", "video_id": "video10992", "sen_id": 213883}, {"caption": "a group of racers are racing on a track field", "video_id": "video10992", "sen_id": 213884}, {"caption": "a track race with spectators where five male runners are racing on a reddish colored track", "video_id": "video10992", "sen_id": 213885}, {"caption": "many runners are running all the way down the track", "video_id": "video10992", "sen_id": 213886}, {"caption": "the start of a sprinting race between many men", "video_id": "video10992", "sen_id": 213887}, {"caption": "at a track meet a starter pistol sounds and five men run", "video_id": "video10992", "sen_id": 213888}, {"caption": "a group of men running a race on an outdoor track", "video_id": "video10992", "sen_id": 213889}, {"caption": "a bunch of kids running the 100 meter race on a track", "video_id": "video10992", "sen_id": 213890}, {"caption": "several people compete in a sprint race at an outdoor track", "video_id": "video10992", "sen_id": 213891}, {"caption": "the start of a relay race with runners running towards the camera", "video_id": "video10992", "sen_id": 213892}, {"caption": "racers are running in a race", "video_id": "video10992", "sen_id": 213893}, {"caption": "runners begin a race and compete outdoors on a reddish-brown running track with white lines for a short distance", "video_id": "video10992", "sen_id": 213894}, {"caption": "there are someone running on the track with power", "video_id": "video10992", "sen_id": 213895}, {"caption": "a bunch of runner start a race and run towards the finish line", "video_id": "video10992", "sen_id": 213896}, {"caption": "a group of sprinters run a race a a large high school aged track meet", "video_id": "video10992", "sen_id": 213897}, {"caption": "five black men sprinting down a track at a track meet", "video_id": "video10992", "sen_id": 213898}, {"caption": "some sprinters are running against each other", "video_id": "video10992", "sen_id": 213899}, {"caption": "a woman explaining in spanish how to prepare a meal", "video_id": "video12050", "sen_id": 213900}, {"caption": "a person is demonstrating a recipe with meat in a bowl", "video_id": "video12050", "sen_id": 213901}, {"caption": "a woman is tossing raw chicken legs in a bowl of spices", "video_id": "video12050", "sen_id": 213902}, {"caption": "a woman fingers several pieces of chicken working in the spices", "video_id": "video12050", "sen_id": 213903}, {"caption": "a woman mixes spiced chicken in a bowl", "video_id": "video12050", "sen_id": 213904}, {"caption": "a woman preparing for a spicy chicken dish", "video_id": "video12050", "sen_id": 213905}, {"caption": "a woman seasons chicken with her hands in a white bowl", "video_id": "video12050", "sen_id": 213906}, {"caption": "a lady in a kitchen giving tips on how to marinate chicken with the spices by giving deep gashes on the surface of the chicken", "video_id": "video12050", "sen_id": 213907}, {"caption": "a bowl mixing chicken dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12050", "sen_id": 213908}, {"caption": "in a kitchen someone is preparing to cook with the chicken pieces", "video_id": "video12050", "sen_id": 213909}, {"caption": "there is a woman making a chicken dish in avessel", "video_id": "video12050", "sen_id": 213910}, {"caption": "in a kitchen a woman adds various spices to chicken as she explains what she s doing", "video_id": "video12050", "sen_id": 213911}, {"caption": "lady in kitchen mixes the meat with the hands she apply the coating nicely", "video_id": "video12050", "sen_id": 213912}, {"caption": "a person mixes various ingredients into a plastic bowl", "video_id": "video12050", "sen_id": 213913}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12050", "sen_id": 213914}, {"caption": "a person preparing to cook chicken legs seasons them in a bowl", "video_id": "video12050", "sen_id": 213915}, {"caption": "the video shows hands preparing raw chicken as a women describes the process using two languages", "video_id": "video12050", "sen_id": 213916}, {"caption": "a person is prepairing some kababs in a bowl", "video_id": "video12050", "sen_id": 213917}, {"caption": "a woman narrates as she prepares a delicious meal", "video_id": "video12050", "sen_id": 213918}, {"caption": "a person is mixing up food in a bowl", "video_id": "video12050", "sen_id": 213919}, {"caption": "woman describing the waste and toxic atmosphere of companies overseas", "video_id": "video11797", "sen_id": 213920}, {"caption": "multiple scenes of water with a narrator talking about dirty water", "video_id": "video11797", "sen_id": 213921}, {"caption": "a news reporter discusses a water way and some of the concerns related to it", "video_id": "video11797", "sen_id": 213922}, {"caption": "euronews is talking about factories recycling waste water", "video_id": "video11797", "sen_id": 213923}, {"caption": "a woman sitting by a pool and then different bodies of water in a city", "video_id": "video11797", "sen_id": 213924}, {"caption": "a news piece on recycling waste water", "video_id": "video11797", "sen_id": 213925}, {"caption": "different buildings located near lakes are displayed one after another", "video_id": "video11797", "sen_id": 213926}, {"caption": "a man is speaking about the recycling of waste water from a factory", "video_id": "video11797", "sen_id": 213927}, {"caption": "a man we ith a brittish accent narrates about waste water and recycling while doing dirty water and a barge on a river", "video_id": "video11797", "sen_id": 213928}, {"caption": "a report of recycling in large enterprises and that should improve", "video_id": "video11797", "sen_id": 213929}, {"caption": "sexy red hair in grey coat talking to the camera", "video_id": "video11797", "sen_id": 213930}, {"caption": "a man is challenging the current regulations that require factories to recycle their waste water as inadequate", "video_id": "video11797", "sen_id": 213931}, {"caption": "the euro news channel is speaking about news in europe", "video_id": "video11797", "sen_id": 213932}, {"caption": "a large river is seen and a woman sits by waste water facility", "video_id": "video11797", "sen_id": 213933}, {"caption": "european news talking recycling in europe", "video_id": "video11797", "sen_id": 213934}, {"caption": "a bridge over the water is standing still", "video_id": "video11797", "sen_id": 213935}, {"caption": "a man from euronews is reporting about waste water", "video_id": "video11797", "sen_id": 213936}, {"caption": "some news about the ocean and the shipping a ship moving in the water below the bridge", "video_id": "video11797", "sen_id": 213937}, {"caption": "a very big ship is going to cross the bridge", "video_id": "video11797", "sen_id": 213938}, {"caption": "a woman is talking about a european city", "video_id": "video11797", "sen_id": 213939}, {"caption": "two kids explaining how to cook a meal", "video_id": "video10135", "sen_id": 213940}, {"caption": "in a kitchen two kids are cooking vegetables", "video_id": "video10135", "sen_id": 213941}, {"caption": "a young girl and a young boy ask an adult to transfer vegetables from a pan to a larger pot on a stove", "video_id": "video10135", "sen_id": 213942}, {"caption": "a little girl and a little boy telling that the vegetables need to be transfered to a bigger pot by an adult", "video_id": "video10135", "sen_id": 213943}, {"caption": "two childrens is going to be explained a cooking with coloured vegetables by a lady and men voice", "video_id": "video10135", "sen_id": 213944}, {"caption": "a little girl and boy and adult is putting vegitables in a big pan", "video_id": "video10135", "sen_id": 213945}, {"caption": "two adorable children give instructions of an unidentifiable recipe", "video_id": "video10135", "sen_id": 213946}, {"caption": "in the kitchen two kids are talking then a person adds cooked vegetables into another vessel", "video_id": "video10135", "sen_id": 213947}, {"caption": "two young children talk about how to cook vegetables", "video_id": "video10135", "sen_id": 213948}, {"caption": "a woman and her two children demonstrate cooking some vegetables", "video_id": "video10135", "sen_id": 213949}, {"caption": "there are two children making something in the kitchen", "video_id": "video10135", "sen_id": 213950}, {"caption": "a young girl and her little brother are talking about how to add vegetables to a pot", "video_id": "video10135", "sen_id": 213951}, {"caption": "two children cooking with the supervision of a parent", "video_id": "video10135", "sen_id": 213952}, {"caption": "two young children are preparing a meal with an adult", "video_id": "video10135", "sen_id": 213953}, {"caption": "couple of kids talking to the camera as mom cooks the dinner", "video_id": "video10135", "sen_id": 213954}, {"caption": "a little boy and girl transfering the vegetables to a bigger pot had to have a adult to do it for them", "video_id": "video10135", "sen_id": 213955}, {"caption": "two young people are cooking vegetables in the kitchen", "video_id": "video10135", "sen_id": 213956}, {"caption": "two kids standing behind stove and talking in a kitchen", "video_id": "video10135", "sen_id": 213957}, {"caption": "two children are standing in a kitchen one child wearing red color frok weaing beads chain in her neck and another child in black and white checked shit", "video_id": "video10135", "sen_id": 213958}, {"caption": "someone is stirring food inside of a pot", "video_id": "video10135", "sen_id": 213959}, {"caption": "several girls are trying to jump over hurdles in a gym", "video_id": "video11278", "sen_id": 213960}, {"caption": "track and field athletes practice jumping over hurdles", "video_id": "video11278", "sen_id": 213961}, {"caption": "a group of women try and jump hurdles as a part of a fitness competition", "video_id": "video11278", "sen_id": 213962}, {"caption": "two academic competitors fall down while performing a jump", "video_id": "video11278", "sen_id": 213963}, {"caption": "women compete jumping over hurdles and some women fall over", "video_id": "video11278", "sen_id": 213964}, {"caption": "girl atheletes practicing and running in a huge hall with their coaches", "video_id": "video11278", "sen_id": 213965}, {"caption": "a group of people are attempting to jump over hurdles inside of a building", "video_id": "video11278", "sen_id": 213966}, {"caption": "a young women both attempt to jump over hurdles and both fail and fall", "video_id": "video11278", "sen_id": 213967}, {"caption": "women are participating some type of hurdle race inside an indoor area", "video_id": "video11278", "sen_id": 213968}, {"caption": "a group of people are playing in a place with colourful dress", "video_id": "video11278", "sen_id": 213969}, {"caption": "many people practising some game in front of their coaches", "video_id": "video11278", "sen_id": 213970}, {"caption": "a group of people working out together two ladies fall", "video_id": "video11278", "sen_id": 213971}, {"caption": "an athlete jumps over several hurdles in a track", "video_id": "video11278", "sen_id": 213972}, {"caption": "there are several women in a large gym who are practicing jumping hurdles", "video_id": "video11278", "sen_id": 213973}, {"caption": "in an indoor stadium athlets practicing hurdles and some one falling when they jump", "video_id": "video11278", "sen_id": 213974}, {"caption": "all people are practicing sports on a open hall with coch", "video_id": "video11278", "sen_id": 213975}, {"caption": "women jump over and fall over rows of hurdles aligned in a geometric-designed gym with a black floor separated into yellow lanes", "video_id": "video11278", "sen_id": 213976}, {"caption": "a girl with white hair try to jump and she feels down by hitting the hurdle", "video_id": "video11278", "sen_id": 213977}, {"caption": "a girl falls trying to jump over a hurl", "video_id": "video11278", "sen_id": 213978}, {"caption": "some people are doing exercises inside of a large room", "video_id": "video11278", "sen_id": 213979}, {"caption": "tv commentator talks to an interviewee about a clip they watched", "video_id": "video10988", "sen_id": 213980}, {"caption": "bill o'rielly asking a question to a man about violence", "video_id": "video10988", "sen_id": 213981}, {"caption": "bill o'reilly is interviewing a man live on the fox news channel", "video_id": "video10988", "sen_id": 213982}, {"caption": "bill o'reilly questions a man with a purple tie on television", "video_id": "video10988", "sen_id": 213983}, {"caption": "a news reporter interviews a man about something he said in the past", "video_id": "video10988", "sen_id": 213984}, {"caption": "a tv host in a dark suit and gold tie interviews a guest on his show", "video_id": "video10988", "sen_id": 213985}, {"caption": "two news broadcasters with ties on tv", "video_id": "video10988", "sen_id": 213986}, {"caption": "bill o'reilly asks a guest if he wants to stand by a comment", "video_id": "video10988", "sen_id": 213987}, {"caption": "a male news reporter questioning a male in a light blue shirt and purple tie", "video_id": "video10988", "sen_id": 213988}, {"caption": "a black man wearing a purple tie attempts to defend himself against the disparaging questions of a white older man in a suit", "video_id": "video10988", "sen_id": 213989}, {"caption": "a clip from the o reilly factor in which bill is asking if his guest is going to stand by something he previously said on the president", "video_id": "video10988", "sen_id": 213990}, {"caption": "there is a suit man talking to a man in a blue shirt", "video_id": "video10988", "sen_id": 213991}, {"caption": "bill oreilly talking to a man in a blue shirt on his show", "video_id": "video10988", "sen_id": 213992}, {"caption": "bill o reilly interviews a gentleman on his show", "video_id": "video10988", "sen_id": 213993}, {"caption": "fox news personality bill o reilly asks a man whether he stands by his previous statement", "video_id": "video10988", "sen_id": 213994}, {"caption": "a person interview another person regarding something in cnn news", "video_id": "video10988", "sen_id": 213995}, {"caption": "two man are talking with ech other", "video_id": "video10988", "sen_id": 213996}, {"caption": "two news readers reading news while a splash of live news is running on screen", "video_id": "video10988", "sen_id": 213997}, {"caption": "bill o reilly grills a black reporter in a purple tie about his earlier statements", "video_id": "video10988", "sen_id": 213998}, {"caption": "two men on the news are talking", "video_id": "video10988", "sen_id": 213999}, {"caption": "people are sitting and speaking about a child playing tennis", "video_id": "video11917", "sen_id": 214000}, {"caption": "a man on an outdoor tennis court points with his racket at a girl wearing a white tennis dress and gives her instruction to move", "video_id": "video11917", "sen_id": 214001}, {"caption": "man shown with tennis racket is shown teaching a girl how to play tennis while they speak about her training in the background", "video_id": "video11917", "sen_id": 214002}, {"caption": "there is a tennis coach teaching a young girl how to hit while the narrator is talking about the responsibilities of the parents", "video_id": "video11917", "sen_id": 214003}, {"caption": "parents need to be involved in order for children to succeed in sports", "video_id": "video11917", "sen_id": 214004}, {"caption": "a man wearing a white t-shirt and black shorts holding a tennis racket and ball is teaching a little girl wearing a tennis dress how to play", "video_id": "video11917", "sen_id": 214005}, {"caption": "there are coach and mom sharing their parenting advises and experiences about growing the kids to become greater tennis player", "video_id": "video11917", "sen_id": 214006}, {"caption": "a narrator explaining over a shot of a tennis match that parents need to be involved in sports", "video_id": "video11917", "sen_id": 214007}, {"caption": "a man is teaching a young girl how to play tennis", "video_id": "video11917", "sen_id": 214008}, {"caption": "a man with a tennis racket is preparing to play tennis with a young girl", "video_id": "video11917", "sen_id": 214009}, {"caption": "one man talks to girl how to play tennis", "video_id": "video11917", "sen_id": 214010}, {"caption": "a man points a racket at a girl dresses in white then serves the ball to her", "video_id": "video11917", "sen_id": 214011}, {"caption": "a person in white and girl in white dress playing tennis in the ground", "video_id": "video11917", "sen_id": 214012}, {"caption": "a man is training a girl on tennis", "video_id": "video11917", "sen_id": 214013}, {"caption": "a person is explaining about teaching sports to children", "video_id": "video11917", "sen_id": 214014}, {"caption": "a man and a girl are playing a tennis", "video_id": "video11917", "sen_id": 214015}, {"caption": "a man is training the girl on lawn tennis", "video_id": "video11917", "sen_id": 214016}, {"caption": "a marvelous tennis training is given to a young child by her coach", "video_id": "video11917", "sen_id": 214017}, {"caption": "a man and a girl were playing a tennis", "video_id": "video11917", "sen_id": 214018}, {"caption": "a man is teaching a girl how to play tennis in the field", "video_id": "video11917", "sen_id": 214019}, {"caption": "there is an indian man speaking in a suit", "video_id": "video11381", "sen_id": 214020}, {"caption": "man in a black suit standing in front of a backdrop of boats", "video_id": "video11381", "sen_id": 214021}, {"caption": "a man in a blazer and open blue shirt talks in front of a board covered in images of boats", "video_id": "video11381", "sen_id": 214022}, {"caption": "a man in a suit is walking and talking on a stage with a backdrop of a harbor", "video_id": "video11381", "sen_id": 214023}, {"caption": "a man in a suit is talking on a stage with a background of a marina", "video_id": "video11381", "sen_id": 214024}, {"caption": "a man gives a lecture to a room full of people", "video_id": "video11381", "sen_id": 214025}, {"caption": "a middle-aged man dressed in a dark suit is standing and speaking", "video_id": "video11381", "sen_id": 214026}, {"caption": "an indian man in a suit is talking about a stimulus", "video_id": "video11381", "sen_id": 214027}, {"caption": "there is a baseball player followed by a man in a suit speaking in from of a picture of boats", "video_id": "video11381", "sen_id": 214028}, {"caption": "a man is speaking at a conference about a digital brain", "video_id": "video11381", "sen_id": 214029}, {"caption": "there is a suit man talking on the stage about digital brain", "video_id": "video11381", "sen_id": 214030}, {"caption": "the business men wearing the black blaizer suit and their back ground is ship and boat", "video_id": "video11381", "sen_id": 214031}, {"caption": "a person giving lecture about oil platform system", "video_id": "video11381", "sen_id": 214032}, {"caption": "the man talks of the brain and the way it can be used", "video_id": "video11381", "sen_id": 214033}, {"caption": "a man giving a lecture about having a digital brain", "video_id": "video11381", "sen_id": 214034}, {"caption": "a man wearing black color dressed is talking", "video_id": "video11381", "sen_id": 214035}, {"caption": "a man talking on stage in a suit", "video_id": "video11381", "sen_id": 214036}, {"caption": "a man gives a lecture about installing a digital brain in our electronic devices", "video_id": "video11381", "sen_id": 214037}, {"caption": "a old man wearing blue shirt dress speaking on topic brain to audience watching displaying on screen", "video_id": "video11381", "sen_id": 214038}, {"caption": "a guy with a beard is talking to some people", "video_id": "video11381", "sen_id": 214039}, {"caption": "many people are going around the water outside", "video_id": "video12464", "sen_id": 214040}, {"caption": "a narration about low and high tides on the beach", "video_id": "video12464", "sen_id": 214041}, {"caption": "people quickly moving in and out of brown water", "video_id": "video12464", "sen_id": 214042}, {"caption": "a man is talking about the different tides of the beach", "video_id": "video12464", "sen_id": 214043}, {"caption": "a man talks about high tide and low tide footage", "video_id": "video12464", "sen_id": 214044}, {"caption": "a fast motion view of a sea cove with a tide change", "video_id": "video12464", "sen_id": 214045}, {"caption": "a man is talking about how the beaches tidal wave's rise and fall", "video_id": "video12464", "sen_id": 214046}, {"caption": "a man discusses ocean tides over a time-lapse video", "video_id": "video12464", "sen_id": 214047}, {"caption": "a narrator describes the difference between low and high tide while a time lapse video shows the tide rise and fall", "video_id": "video12464", "sen_id": 214048}, {"caption": "the tide ebbs and flows on a tropical beach", "video_id": "video12464", "sen_id": 214049}, {"caption": "a tide rises and falls as a narrator explains the process", "video_id": "video12464", "sen_id": 214050}, {"caption": "a view of high tide and low tide on a beach", "video_id": "video12464", "sen_id": 214051}, {"caption": "a public beach demonstrates the rise and fall of tide as the narrator explains the process", "video_id": "video12464", "sen_id": 214052}, {"caption": "scientific explanation of an ocean natural phenomenon", "video_id": "video12464", "sen_id": 214053}, {"caption": "an inlet with a small rock in the middle jutting out while the tide gets higher", "video_id": "video12464", "sen_id": 214054}, {"caption": "a time lapse of a beach with rock formations as the tide rises to become high tide", "video_id": "video12464", "sen_id": 214055}, {"caption": "a place near the beach fills with water in later days", "video_id": "video12464", "sen_id": 214056}, {"caption": "an exploration about the river in which the water level is raising", "video_id": "video12464", "sen_id": 214057}, {"caption": "a commentator tries to understand how low tide and high tide are defined or can even occur on a spinning planet", "video_id": "video12464", "sen_id": 214058}, {"caption": "a beach where high tide and low tide are discussed", "video_id": "video12464", "sen_id": 214059}, {"caption": "a woman is trying to a man to salsa dance with her", "video_id": "video12689", "sen_id": 214060}, {"caption": "a young woman in a red tank top talks a man into dancing with her", "video_id": "video12689", "sen_id": 214061}, {"caption": "a man and woman are dancing in the street", "video_id": "video12689", "sen_id": 214062}, {"caption": "a hispanic woman trying to convince a hispanic man to dance with her in the street", "video_id": "video12689", "sen_id": 214063}, {"caption": "a woman is dancing in front of a man while trying to get him to dance", "video_id": "video12689", "sen_id": 214064}, {"caption": "a woman is asking a man to dance with her and does not want to", "video_id": "video12689", "sen_id": 214065}, {"caption": "a woman dances on a street and tries to get a man to join her", "video_id": "video12689", "sen_id": 214066}, {"caption": "a woman dancing in front of a man and enticing him to join her", "video_id": "video12689", "sen_id": 214067}, {"caption": "spanish music plays while a woman attempts to get a man to dance with her", "video_id": "video12689", "sen_id": 214068}, {"caption": "woman dancing to music with a man in a tank top in the street", "video_id": "video12689", "sen_id": 214069}, {"caption": "a woman is dancing and trying to entice a man to dance with her she grabs him by the hand and pulls him up from sitting on a car", "video_id": "video12689", "sen_id": 214070}, {"caption": "a woman dancing in front of a man and making him dance with her", "video_id": "video12689", "sen_id": 214071}, {"caption": "a woman dancing then grabbing a man's hand to dance with her", "video_id": "video12689", "sen_id": 214072}, {"caption": "a woman is dancing and trying to get a man to dance with her", "video_id": "video12689", "sen_id": 214073}, {"caption": "a lady in red dances in front of a man in a black tank top", "video_id": "video12689", "sen_id": 214074}, {"caption": "there is a red dressed beauty talking to her friend", "video_id": "video12689", "sen_id": 214075}, {"caption": "women in red and men in banyan dancing", "video_id": "video12689", "sen_id": 214076}, {"caption": "women dancing with the man who is sitting in a car and both dancing together", "video_id": "video12689", "sen_id": 214077}, {"caption": "girl in red top and blue jeans dancing with a guy", "video_id": "video12689", "sen_id": 214078}, {"caption": "a short hair women is dancing and dragging the men to dance with her", "video_id": "video12689", "sen_id": 214079}, {"caption": "a bird is walking along in the sand and then the scene changes to two other birds in a nest", "video_id": "video12242", "sen_id": 214080}, {"caption": "a bird is shown walking on a beach and then two other birds are shown standing still", "video_id": "video12242", "sen_id": 214081}, {"caption": "a black and white bird is walking making bird noises", "video_id": "video12242", "sen_id": 214082}, {"caption": "a white and black bird with a long beak walks on the sand", "video_id": "video12242", "sen_id": 214083}, {"caption": "a bird waddles towards the camera at a slow pace", "video_id": "video12242", "sen_id": 214084}, {"caption": "an albatross is making funny sounds while walking towards the camera over the sand then we see another albatross sitting in its nest", "video_id": "video12242", "sen_id": 214085}, {"caption": "birds making sounds like a cross sport motorcycle", "video_id": "video12242", "sen_id": 214086}, {"caption": "a white bird is strutting down a road while a female sits on her nest", "video_id": "video12242", "sen_id": 214087}, {"caption": "a duck is slowing walking and making sounds that seem like mating calls", "video_id": "video12242", "sen_id": 214088}, {"caption": "there is a bird walking on the ground", "video_id": "video12242", "sen_id": 214089}, {"caption": "birds in the forest in the closes on", "video_id": "video12242", "sen_id": 214090}, {"caption": "a white pigeon walking and color pigeon on screen shown", "video_id": "video12242", "sen_id": 214091}, {"caption": "there is a bird walking on the shore", "video_id": "video12242", "sen_id": 214092}, {"caption": "one beautiful bird is making funny noise in forest", "video_id": "video12242", "sen_id": 214093}, {"caption": "about a white duck with black shade in wings walking in ground and some other birds are present in branches", "video_id": "video12242", "sen_id": 214094}, {"caption": "a bird is lying down on a outdoor area", "video_id": "video12242", "sen_id": 214095}, {"caption": "a bird is giving sound and walking in the ground", "video_id": "video12242", "sen_id": 214096}, {"caption": "a white seagull walking along the beach while capturing some of his natural living areas", "video_id": "video12242", "sen_id": 214097}, {"caption": "a white-and-black bird plods along the ground and a blue-beaked bird sits in its nest", "video_id": "video12242", "sen_id": 214098}, {"caption": "a weird looking bird is looking ahead", "video_id": "video12242", "sen_id": 214099}, {"caption": "a black man in a white shirt and blue hat is giving directions to a camera crew before he says action", "video_id": "video11565", "sen_id": 214100}, {"caption": "a group of people converging in a parking lot and a director giving directions", "video_id": "video11565", "sen_id": 214101}, {"caption": "a man in a blue baseball cap is directing a music video", "video_id": "video11565", "sen_id": 214102}, {"caption": "the director of a movie gathers his crew and cast on a location set", "video_id": "video11565", "sen_id": 214103}, {"caption": "a black man in a white shirt and black hat is directing people", "video_id": "video11565", "sen_id": 214104}, {"caption": "behind the scene during the filing of an outdoor presentation", "video_id": "video11565", "sen_id": 214105}, {"caption": "a man in a blue hat and white tee shirt calls action on a movie set", "video_id": "video11565", "sen_id": 214106}, {"caption": "men moving about outside a house as a director calls down the shot", "video_id": "video11565", "sen_id": 214107}, {"caption": "a man in a blue cap shouting directions to a group of people", "video_id": "video11565", "sen_id": 214108}, {"caption": "a man in a blue baseball cap directs people filming", "video_id": "video11565", "sen_id": 214109}, {"caption": "a group of people working around a house", "video_id": "video11565", "sen_id": 214110}, {"caption": "a man in a blue baseball cap is directing people what to do", "video_id": "video11565", "sen_id": 214111}, {"caption": "a group of people are standing outside of a home a single man with a hat is speaking", "video_id": "video11565", "sen_id": 214112}, {"caption": "a group of people is making a movie and a director is telling them to ready", "video_id": "video11565", "sen_id": 214113}, {"caption": "a director of an scene that is telling the actor to be prepared because he want to start to rolling", "video_id": "video11565", "sen_id": 214114}, {"caption": "music plays as a man starts to direct a music video", "video_id": "video11565", "sen_id": 214115}, {"caption": "a man is wearing a hat with sunglasses he is directing the starting of an event", "video_id": "video11565", "sen_id": 214116}, {"caption": "music plays while a film crew is preparing to shoot in someones front yard", "video_id": "video11565", "sen_id": 214117}, {"caption": "a black man who appears to be the director of a film or video being shot at a home on the coast of a beach", "video_id": "video11565", "sen_id": 214118}, {"caption": "a director for a production is doing work getting a scene together", "video_id": "video11565", "sen_id": 214119}, {"caption": "an interview with stephen colbert on cable television", "video_id": "video11909", "sen_id": 214120}, {"caption": "a popular tv news opinion show host lavishes heavy praise on another popular news opinion show's host", "video_id": "video11909", "sen_id": 214121}, {"caption": "stephen colbert talks to bill o'reilly and answers his questions", "video_id": "video11909", "sen_id": 214122}, {"caption": "a comedian tries to act serious with a news reporter", "video_id": "video11909", "sen_id": 214123}, {"caption": "stephen colbert talks to bill o'reily about his experience and life", "video_id": "video11909", "sen_id": 214124}, {"caption": "stephen colbert talking on the bill o'reilly show", "video_id": "video11909", "sen_id": 214125}, {"caption": "stephen colbert is on bill o'reilly talking about the spin zone", "video_id": "video11909", "sen_id": 214126}, {"caption": "a man sitting and talking at a news show", "video_id": "video11909", "sen_id": 214127}, {"caption": "a person speaking on a news channel", "video_id": "video11909", "sen_id": 214128}, {"caption": "there is a men talking on news channel", "video_id": "video11909", "sen_id": 214129}, {"caption": "a news reader interviewing a man in the news program", "video_id": "video11909", "sen_id": 214130}, {"caption": "two gentleman with grey and black dress are talking in a conference", "video_id": "video11909", "sen_id": 214131}, {"caption": "some one on tv is talking to a crowd", "video_id": "video11909", "sen_id": 214132}, {"caption": "stephen colbert is speaking on the bill o reily show", "video_id": "video11909", "sen_id": 214133}, {"caption": "a man with glasses and a surly attitude talks on the news to another man", "video_id": "video11909", "sen_id": 214134}, {"caption": "stephen colbert is talking to bill o reilly about political issues", "video_id": "video11909", "sen_id": 214135}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video11909", "sen_id": 214136}, {"caption": "oreilly fox news the colbert report host stephen colbert", "video_id": "video11909", "sen_id": 214137}, {"caption": "a news reader with formal dress is interviewing with someone", "video_id": "video11909", "sen_id": 214138}, {"caption": "steven colbert talking to bill o reilly on the o reilly factor", "video_id": "video11909", "sen_id": 214139}, {"caption": "we look at rugged craggy brown rocks on a beach", "video_id": "video11450", "sen_id": 214140}, {"caption": "a rocky hillside is shown then muddy ground with a plant sprouting in it and then rough rocky terrain", "video_id": "video11450", "sen_id": 214141}, {"caption": "a man standing near a rocky shore at the sunset", "video_id": "video11450", "sen_id": 214142}, {"caption": "scenes of a rocky seashore landscape accompanied by modern music", "video_id": "video11450", "sen_id": 214143}, {"caption": "small plants grow in rocky terrain near the ocean", "video_id": "video11450", "sen_id": 214144}, {"caption": "a person is showing the rocking reef being create at beach", "video_id": "video11450", "sen_id": 214145}, {"caption": "there are some hard rocks nearby the beach", "video_id": "video11450", "sen_id": 214146}, {"caption": "rocky and dangerous area near the beach", "video_id": "video11450", "sen_id": 214147}, {"caption": "a young man on a sandy beach shows various cliff rock scenes around beach", "video_id": "video11450", "sen_id": 214148}, {"caption": "a man is on the beach which is surrounded with big rocks", "video_id": "video11450", "sen_id": 214149}, {"caption": "there is a hardest place with dry sharp rocks", "video_id": "video11450", "sen_id": 214150}, {"caption": "a view of a sunny and mountainous region with little plant life", "video_id": "video11450", "sen_id": 214151}, {"caption": "nature rocks and beautiful of waters and nice relax", "video_id": "video11450", "sen_id": 214152}, {"caption": "a video of mountain scene and man in black color dress wearing cloth displaying on screen", "video_id": "video11450", "sen_id": 214153}, {"caption": "some mountains and rocks are filmed out side", "video_id": "video11450", "sen_id": 214154}, {"caption": "there is calm and cool place with with sun shine", "video_id": "video11450", "sen_id": 214155}, {"caption": "an aerial view of moutains is shown in the clip", "video_id": "video11450", "sen_id": 214156}, {"caption": "nice rocks in the nature of sun coming on it", "video_id": "video11450", "sen_id": 214157}, {"caption": "a beach scene showing diffrent rugged and sharp rocks", "video_id": "video11450", "sen_id": 214158}, {"caption": "the camera pans over some nature scenes as music plays", "video_id": "video11450", "sen_id": 214159}, {"caption": "three men look over the edge of something while a woman looks up at them", "video_id": "video11048", "sen_id": 214160}, {"caption": "three boys are looking down at a girl while music plays", "video_id": "video11048", "sen_id": 214161}, {"caption": "a music video is meshed with a scene from the movie titanic", "video_id": "video11048", "sen_id": 214162}, {"caption": "scenes from the movie titanic are shown as a love song plays", "video_id": "video11048", "sen_id": 214163}, {"caption": "a woman looks up at a man that is on a boat", "video_id": "video11048", "sen_id": 214164}, {"caption": "three men look over the railing of a ship as a boat is slowly lowered", "video_id": "video11048", "sen_id": 214165}, {"caption": "a girl sings as scenes from a famous dramatic movie play on the screen", "video_id": "video11048", "sen_id": 214166}, {"caption": "a scene from the titanic movie when the girl is lowered down in a safety boat", "video_id": "video11048", "sen_id": 214167}, {"caption": "a young man watching his girl friends face very seriousely", "video_id": "video11048", "sen_id": 214168}, {"caption": "titanic movie ships to go in the first scene", "video_id": "video11048", "sen_id": 214169}, {"caption": "three men watch as a woman is lowered over the railing of a boat in a lifeboat", "video_id": "video11048", "sen_id": 214170}, {"caption": "a clip from the titanic showing the two main characters falling in love", "video_id": "video11048", "sen_id": 214171}, {"caption": "movie scene from a english movie many people are talking", "video_id": "video11048", "sen_id": 214172}, {"caption": "a holly wood movie scene a girl and a guy watching together", "video_id": "video11048", "sen_id": 214173}, {"caption": "in the titanic movie the hero sends the heroine in the life boat", "video_id": "video11048", "sen_id": 214174}, {"caption": "a men and a women are looking at each other sensually", "video_id": "video11048", "sen_id": 214175}, {"caption": "there is a cute guy looking to her lover romantically", "video_id": "video11048", "sen_id": 214176}, {"caption": "three men look over the railing of a ship while a life boat is lowered to the water", "video_id": "video11048", "sen_id": 214177}, {"caption": "men stand near the railing of ship and look overboard at other passengers", "video_id": "video11048", "sen_id": 214178}, {"caption": "some men are staring at a woman with red hair", "video_id": "video11048", "sen_id": 214179}, {"caption": "a chef is putting meat in a circular mold with sauce", "video_id": "video10769", "sen_id": 214180}, {"caption": "a chef is decorating a dish with meat and sauce", "video_id": "video10769", "sen_id": 214181}, {"caption": "a chef arranges a red meat in a small mold before pouring a sauce over it", "video_id": "video10769", "sen_id": 214182}, {"caption": "a chef is preparing a high cost dish at a restaurant", "video_id": "video10769", "sen_id": 214183}, {"caption": "a animated graphic showing a pair of hands pouring brown sauce over a dish prepared on a white plate", "video_id": "video10769", "sen_id": 214184}, {"caption": "a man putting a meal together on a white plate", "video_id": "video10769", "sen_id": 214185}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video10769", "sen_id": 214186}, {"caption": "a man is dressing a plate with sauce his goal is to get an amazing dish presentation", "video_id": "video10769", "sen_id": 214187}, {"caption": "a man is putting meat in a circular mold and pouring gravy around it", "video_id": "video10769", "sen_id": 214188}, {"caption": "a man is plating food using a metal ring", "video_id": "video10769", "sen_id": 214189}, {"caption": "there is a man making a dish with souse", "video_id": "video10769", "sen_id": 214190}, {"caption": "someone is arrganging food item in a white plate", "video_id": "video10769", "sen_id": 214191}, {"caption": "heavily accented chef preparing what i assume is a french gourmet meal", "video_id": "video10769", "sen_id": 214192}, {"caption": "a man arranges meat and sauce with a metal ring", "video_id": "video10769", "sen_id": 214193}, {"caption": "a person is slicing some meat in a circle shape and he is pouring sauce on it", "video_id": "video10769", "sen_id": 214194}, {"caption": "a chef prepares an elegant dish of roast beef au jus", "video_id": "video10769", "sen_id": 214195}, {"caption": "man in kitchen preparing a lamb meal", "video_id": "video10769", "sen_id": 214196}, {"caption": "a person prepares a meal in a small tin plate", "video_id": "video10769", "sen_id": 214197}, {"caption": "in a a kitchen person is decorating the dessert in white dish", "video_id": "video10769", "sen_id": 214198}, {"caption": "a person is putting some food in a can", "video_id": "video10769", "sen_id": 214199}, {"caption": "bamboo shoots tofu and vegetable are shown together", "video_id": "video12787", "sen_id": 214200}, {"caption": "man describing all the essential ingredients to cook a meal", "video_id": "video12787", "sen_id": 214201}, {"caption": "bamboo shoots green onions sliced tofu and mushrooms on separate plates", "video_id": "video12787", "sen_id": 214202}, {"caption": "a chef describes and demonstrates a recipe they are getting ready to prepare", "video_id": "video12787", "sen_id": 214203}, {"caption": "this is a depiction of how some of our food appears some of our food plated for your pleasure", "video_id": "video12787", "sen_id": 214204}, {"caption": "a plate of cut vegetables sit on top of white plates", "video_id": "video12787", "sen_id": 214205}, {"caption": "ingredients are placed on white plates with a green rim with sliced bamboo shoots sharing a plate with sliced green onions moist sliced tofu on its own plate and two different kinds of mushrooms sharing a plate", "video_id": "video12787", "sen_id": 214206}, {"caption": "bamboo shoots green onions tofu and mushrooms sit on several plates", "video_id": "video12787", "sen_id": 214207}, {"caption": "diced up tofu green onions and mushrooms on white plates together", "video_id": "video12787", "sen_id": 214208}, {"caption": "there are bamboo shoots green onions tofu and mushrooms on white plates with green trim", "video_id": "video12787", "sen_id": 214209}, {"caption": "a chef catalogues the ingredients they are going to use in a recipe", "video_id": "video12787", "sen_id": 214210}, {"caption": "a chef shows the various ingredients she is using in a recipe", "video_id": "video12787", "sen_id": 214211}, {"caption": "plates full of bamboo shoots onions tofu and mushrooms", "video_id": "video12787", "sen_id": 214212}, {"caption": "some vegetables and tofu cut on individual plates", "video_id": "video12787", "sen_id": 214213}, {"caption": "prepared food set out on plates for a recipe", "video_id": "video12787", "sen_id": 214214}, {"caption": "video shows some food items and spices placed on a table", "video_id": "video12787", "sen_id": 214215}, {"caption": "vegetables are cut and kept in the plates which is ready to cook", "video_id": "video12787", "sen_id": 214216}, {"caption": "there is no audio with this video presentation the camera slow pans over several plates of food and a description of each item is printed at the bottom of the video screen", "video_id": "video12787", "sen_id": 214217}, {"caption": "various ingredients for a dish are laid out on plates", "video_id": "video12787", "sen_id": 214218}, {"caption": "there are white plates laid won t with cooking ingredients on them", "video_id": "video12787", "sen_id": 214219}, {"caption": "a person on a motorcycle filming traffic that ahead of them", "video_id": "video10787", "sen_id": 214220}, {"caption": "a motorcylist is discussing what he has captured on his gopro", "video_id": "video10787", "sen_id": 214221}, {"caption": "a motorcylist is discussing what he has captured on his gopro", "video_id": "video10787", "sen_id": 214222}, {"caption": "a clip from a motorcyclist of a biker", "video_id": "video10787", "sen_id": 214223}, {"caption": "a man a green motorcycle laughs while watching a bicyclist", "video_id": "video10787", "sen_id": 214224}, {"caption": "a man speeds down the road on a motorcycle and talks about going for it", "video_id": "video10787", "sen_id": 214225}, {"caption": "a motorcycle rider speeds down a street and watches another rider", "video_id": "video10787", "sen_id": 214226}, {"caption": "a green motorcycle driving behind a car to a stop light", "video_id": "video10787", "sen_id": 214227}, {"caption": "a man on a motorcycle shows people running red lights", "video_id": "video10787", "sen_id": 214228}, {"caption": "a man is talking while he is riding on his motorcycle and stops at the traffic light", "video_id": "video10787", "sen_id": 214229}, {"caption": "a guy on a motorcycle is out riding on the street during the day", "video_id": "video10787", "sen_id": 214230}, {"caption": "a man on a motorcycle sees a bicyclist behaving dangerously", "video_id": "video10787", "sen_id": 214231}, {"caption": "a man rides his motorcycle through an intersection", "video_id": "video10787", "sen_id": 214232}, {"caption": "a man on a motorcycle watching someone cross the street and telling them to go for it", "video_id": "video10787", "sen_id": 214233}, {"caption": "a man on a green motorcycle cheers on a bicyclist who carelessly darts across a busy street", "video_id": "video10787", "sen_id": 214234}, {"caption": "there is a bike rider breaking in front of traffic signal", "video_id": "video10787", "sen_id": 214235}, {"caption": "a man on a motorcycle is filming someone riding through an intersection", "video_id": "video10787", "sen_id": 214236}, {"caption": "a motorcycle rider pulls up to a stoplight and waits for his chance to turn", "video_id": "video10787", "sen_id": 214237}, {"caption": "a person on a motorcycle is driving on the street", "video_id": "video10787", "sen_id": 214238}, {"caption": "someone is filming themself riding on a motor cycle", "video_id": "video10787", "sen_id": 214239}, {"caption": "a person mixing some sauce for green peppers", "video_id": "video11838", "sen_id": 214240}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11838", "sen_id": 214241}, {"caption": "a woman mixes a sauce in a small bowl with a spoon", "video_id": "video11838", "sen_id": 214242}, {"caption": "someone is stirring a brown sauce in a small glass bowl with a silver spoon", "video_id": "video11838", "sen_id": 214243}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11838", "sen_id": 214244}, {"caption": "a woman stirs a brown sauce with a spoon", "video_id": "video11838", "sen_id": 214245}, {"caption": "a woman is mixing a bowl with a spoon and speaking in a foreign language", "video_id": "video11838", "sen_id": 214246}, {"caption": "a woman makes a paste of spices for her recipe", "video_id": "video11838", "sen_id": 214247}, {"caption": "a white woman mixes peppers and other ingredients for a recipe", "video_id": "video11838", "sen_id": 214248}, {"caption": "a woman talking and making peppers and sauce", "video_id": "video11838", "sen_id": 214249}, {"caption": "a lady with a cup of dressing and seasoning being mixed a plate of jaholopenoes also in on the counter", "video_id": "video11838", "sen_id": 214250}, {"caption": "there is a person mixing a liquid on a grey countertop next to a plate of chilis", "video_id": "video11838", "sen_id": 214251}, {"caption": "a woman explains what she is doing as a part of her recipe", "video_id": "video11838", "sen_id": 214252}, {"caption": "a woman is stirring a mixture while talking in hindi", "video_id": "video11838", "sen_id": 214253}, {"caption": "a person is mixing something in a small bowl and adding another ingredient", "video_id": "video11838", "sen_id": 214254}, {"caption": "there is a women cooking food in untensil", "video_id": "video11838", "sen_id": 214255}, {"caption": "a man is stirring up some kind of sauce with a small spoon in a dish", "video_id": "video11838", "sen_id": 214256}, {"caption": "using spoon brown ingredients are mixed using spoon then green chili placed on plate", "video_id": "video11838", "sen_id": 214257}, {"caption": "a woman preparing food in a small dish next to a plate with several green peppers on it", "video_id": "video11838", "sen_id": 214258}, {"caption": "a person is making food in their home", "video_id": "video11838", "sen_id": 214259}, {"caption": "a street race of two old school cars", "video_id": "video11105", "sen_id": 214260}, {"caption": "a blue car and a black car line up on a track and begin to race", "video_id": "video11105", "sen_id": 214261}, {"caption": "a man in a white shirt announces cars lining up to be in a drag race", "video_id": "video11105", "sen_id": 214262}, {"caption": "its a racing car on the road", "video_id": "video11105", "sen_id": 214263}, {"caption": "a car is ready for a race and race started", "video_id": "video11105", "sen_id": 214264}, {"caption": "a blue car about to race but has some trouble at the beginning", "video_id": "video11105", "sen_id": 214265}, {"caption": "a black car chasing the blue car in the street car semi finals", "video_id": "video11105", "sen_id": 214266}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video11105", "sen_id": 214267}, {"caption": "two cars for race and practicing in the stadium", "video_id": "video11105", "sen_id": 214268}, {"caption": "a cars are ready for a race and race is started", "video_id": "video11105", "sen_id": 214269}, {"caption": "two cars moving one in blue the other black a boy in his hand catching mic race", "video_id": "video11105", "sen_id": 214270}, {"caption": "one car is going fast and hit on the road", "video_id": "video11105", "sen_id": 214271}, {"caption": "a street race between a black car and blue car", "video_id": "video11105", "sen_id": 214272}, {"caption": "a man speaks to the camera for a video segment at a race track", "video_id": "video11105", "sen_id": 214273}, {"caption": "a person is driving a very fantastic royal blue car", "video_id": "video11105", "sen_id": 214274}, {"caption": "someone is filming two cars racing each other", "video_id": "video11105", "sen_id": 214275}, {"caption": "a man in a white tshirt walks on the road as other cars enter into the arena for a car race", "video_id": "video11105", "sen_id": 214276}, {"caption": "a loud blue car revving up its engine and racing on a long track", "video_id": "video11105", "sen_id": 214277}, {"caption": "there is a blue car racing a black car on a race track", "video_id": "video11105", "sen_id": 214278}, {"caption": "guy in white shirt walking in middle of road getting drag cars to race each other", "video_id": "video11105", "sen_id": 214279}, {"caption": "firefighters and emt responding to a injured person on the side of the road", "video_id": "video12443", "sen_id": 214280}, {"caption": "a video of cars driving past a firetruck and fireman on the side of the road", "video_id": "video12443", "sen_id": 214281}, {"caption": "firefighters and paramedics at a accident scene on the side of the road", "video_id": "video12443", "sen_id": 214282}, {"caption": "a resue team with a crew of firefighters paramedic along with victims are having activities on the road side of freeway", "video_id": "video12443", "sen_id": 214283}, {"caption": "firemen help a person on a stretcher on the side of a highway on a sunny day", "video_id": "video12443", "sen_id": 214284}, {"caption": "firefighters and medics try to revive a person on the side of the road on a gurney", "video_id": "video12443", "sen_id": 214285}, {"caption": "a person is on a stretcher on the side of the road", "video_id": "video12443", "sen_id": 214286}, {"caption": "road workers are doing their job as the traffic moves by", "video_id": "video12443", "sen_id": 214287}, {"caption": "rescue workers help a person on the side of the road while cars pass by", "video_id": "video12443", "sen_id": 214288}, {"caption": "fireman are helping people on the side of the road", "video_id": "video12443", "sen_id": 214289}, {"caption": "helping people on the road side taking care of the accident that happened", "video_id": "video12443", "sen_id": 214290}, {"caption": "some fire fighters are standing around a street", "video_id": "video12443", "sen_id": 214291}, {"caption": "a person dies of the road accident and ambulance and police visits", "video_id": "video12443", "sen_id": 214292}, {"caption": "men s who are working in fire service station sitting in road side", "video_id": "video12443", "sen_id": 214293}, {"caption": "paramedics are assisting an injured person on the side of the road as traffic passes by", "video_id": "video12443", "sen_id": 214294}, {"caption": "a car driving on road and red bus standing and blue shirt wearing standing beside bus displaying on screen", "video_id": "video12443", "sen_id": 214295}, {"caption": "there are cop side of the road taking a person to the hospital", "video_id": "video12443", "sen_id": 214296}, {"caption": "several fireman standing on the side of a road helping a person", "video_id": "video12443", "sen_id": 214297}, {"caption": "a group of rescue people near a fire truck tending to an injured person", "video_id": "video12443", "sen_id": 214298}, {"caption": "slostringer brings out the news of police departments escorted social service providers through the transient camps", "video_id": "video12443", "sen_id": 214299}, {"caption": "cartoon of jesus sitting on a ship during a strong storm", "video_id": "video12281", "sen_id": 214300}, {"caption": "a cartoon of people riding in a boat", "video_id": "video12281", "sen_id": 214301}, {"caption": "a man lays down in a small boat to take a nap", "video_id": "video12281", "sen_id": 214302}, {"caption": "a cartoon of jesus on the sea of galilea", "video_id": "video12281", "sen_id": 214303}, {"caption": "a storm brews while bearded men row aboard a fishing boat", "video_id": "video12281", "sen_id": 214304}, {"caption": "a cartoon depicting jesus sleeping in a boat while a storm rages", "video_id": "video12281", "sen_id": 214305}, {"caption": "a group of men are sailing a boat in the ocean", "video_id": "video12281", "sen_id": 214306}, {"caption": "a cartoon of a man with long hair and a beard is lost at sea with other men in a small sail boat", "video_id": "video12281", "sen_id": 214307}, {"caption": "a man with beard sleeping in a a boat just wakes up", "video_id": "video12281", "sen_id": 214308}, {"caption": "a sailboat with men rowing through rough waters during a storm", "video_id": "video12281", "sen_id": 214309}, {"caption": "a religious figure is on a bout and several men are trying to keep it afloat", "video_id": "video12281", "sen_id": 214310}, {"caption": "there is a man sleeping in a boat", "video_id": "video12281", "sen_id": 214311}, {"caption": "itls a man on a boat in a movie", "video_id": "video12281", "sen_id": 214312}, {"caption": "a man sleeping on the boat", "video_id": "video12281", "sen_id": 214313}, {"caption": "a cartoon of men in a boat on the ocean transporting a sleeping man in blue and white", "video_id": "video12281", "sen_id": 214314}, {"caption": "a small cartoon video clip being played as a trailer", "video_id": "video12281", "sen_id": 214315}, {"caption": "jesus is sleeping in the boat and the boat gets in cyclone", "video_id": "video12281", "sen_id": 214316}, {"caption": "jesus lies down in the boat while the disciples row and a storm comes up on the sea", "video_id": "video12281", "sen_id": 214317}, {"caption": "heavy storm and high waves were rushing water in to the boat but the man was sleeping paecefully", "video_id": "video12281", "sen_id": 214318}, {"caption": "some cartoon characters are moving around an area", "video_id": "video12281", "sen_id": 214319}, {"caption": "a player in a rpg style video game is running in and out of a building with a weapon while the announcer describes what is going on in a foreign language", "video_id": "video12444", "sen_id": 214320}, {"caption": "a german man narrates a pov sequence in a combat video game", "video_id": "video12444", "sen_id": 214321}, {"caption": "a walk through of a palace is shown in a video game", "video_id": "video12444", "sen_id": 214322}, {"caption": "a video game player has his character run through a large building with a gun", "video_id": "video12444", "sen_id": 214323}, {"caption": "a man playing call of duty video game", "video_id": "video12444", "sen_id": 214324}, {"caption": "a person is speaking while playing a first-person shooter video game", "video_id": "video12444", "sen_id": 214325}, {"caption": "the gun player move forward and search the enemies to shoot", "video_id": "video12444", "sen_id": 214326}, {"caption": "there is gun going through different parts and shoot", "video_id": "video12444", "sen_id": 214327}, {"caption": "animated commando going into the building to find out the enemie", "video_id": "video12444", "sen_id": 214328}, {"caption": "a man is talking and showing various rooms of a house", "video_id": "video12444", "sen_id": 214329}, {"caption": "an video game on shooting with one person looking out for", "video_id": "video12444", "sen_id": 214330}, {"caption": "some one holding a gun in their hand searching other people", "video_id": "video12444", "sen_id": 214331}, {"caption": "a person running through buildings with a gun looking around then throwing a grenade", "video_id": "video12444", "sen_id": 214332}, {"caption": "a soldier running up stairs in a battle", "video_id": "video12444", "sen_id": 214333}, {"caption": "a man narrates a combat video game in a foreign language", "video_id": "video12444", "sen_id": 214334}, {"caption": "someone is playing a first person video game", "video_id": "video12444", "sen_id": 214335}, {"caption": "there is a man walking with a gun to shoot someone", "video_id": "video12444", "sen_id": 214336}, {"caption": "gunman climbs steps and searching the targets in a video game", "video_id": "video12444", "sen_id": 214337}, {"caption": "a militarty person runs through the building onto balcony searching for enemies", "video_id": "video12444", "sen_id": 214338}, {"caption": "man is running so fast and looks for the enemies", "video_id": "video12444", "sen_id": 214339}, {"caption": "a woman is heating 4 tablespoons of mustard oil in a non-stick pan", "video_id": "video12104", "sen_id": 214340}, {"caption": "a woman places oil in a pan on the stove", "video_id": "video12104", "sen_id": 214341}, {"caption": "a woman is putting a pan on the burner and adding oil", "video_id": "video12104", "sen_id": 214342}, {"caption": "a woman places a black skillet on a low blue flame on a cooktop and uses a spoon to measure out yellow oil from a small metal bowl from a counter filled with ingredients", "video_id": "video12104", "sen_id": 214343}, {"caption": "a woman wearing bracelets spoons four tablespoons of mustard oil into a frying pan on a gas powered stove", "video_id": "video12104", "sen_id": 214344}, {"caption": "someone cooking with some oil in a pan", "video_id": "video12104", "sen_id": 214345}, {"caption": "someone is pouring clear oil into a silver cooking pot on a stove", "video_id": "video12104", "sen_id": 214346}, {"caption": "asian lady cooking with olive oil with fresh food around her", "video_id": "video12104", "sen_id": 214347}, {"caption": "a woman puts oil into a black pan", "video_id": "video12104", "sen_id": 214348}, {"caption": "a woman places a pan over a gas burner then reaches over to pick up a bowl of mustard oil and begins to add spoonfuls of this to the pan", "video_id": "video12104", "sen_id": 214349}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video12104", "sen_id": 214350}, {"caption": "a person is pouring a scoop of oil into a skillet", "video_id": "video12104", "sen_id": 214351}, {"caption": "a lady is adding oil to a fry pan and there are various ingredients that are shown as well", "video_id": "video12104", "sen_id": 214352}, {"caption": "a woman is preparing to cook her meal with mustard oil", "video_id": "video12104", "sen_id": 214353}, {"caption": "a woman in a kitchen with food teaching a food recipe", "video_id": "video12104", "sen_id": 214354}, {"caption": "in the kitchen a woman making a dish with oil", "video_id": "video12104", "sen_id": 214355}, {"caption": "someone is putting oil in the pan while the ingredients are placed on the desk in the kitchen", "video_id": "video12104", "sen_id": 214356}, {"caption": "in kitchen a women sharing procedure for making some food she put musted oil on the pan", "video_id": "video12104", "sen_id": 214357}, {"caption": "a woman places a pan on a small stove then adds yellow oil to the inside of it", "video_id": "video12104", "sen_id": 214358}, {"caption": "a woman is putting cooking oil in a cooking pan", "video_id": "video12104", "sen_id": 214359}, {"caption": "a short gentleman in a dark shirt is being interviewed by an exceptionally taller man in a red sport coat on a busy city street", "video_id": "video12693", "sen_id": 214360}, {"caption": "two men talk to each other on the sidewalk", "video_id": "video12693", "sen_id": 214361}, {"caption": "two men discuss the topic of picture taking on a city street", "video_id": "video12693", "sen_id": 214362}, {"caption": "a man in a black shirt is interviewed by a man in a burnt orange jacket", "video_id": "video12693", "sen_id": 214363}, {"caption": "commentary on the challenges of being a photographer how to make people realize that you want their picture not their phone number", "video_id": "video12693", "sen_id": 214364}, {"caption": "a man is being interviewed on the street by a reporter in a red jacket", "video_id": "video12693", "sen_id": 214365}, {"caption": "two men have a discussion on the sidewalk in front of a large brick building", "video_id": "video12693", "sen_id": 214366}, {"caption": "a man holding a pair of glasses talking to a taller man on a sidewalk", "video_id": "video12693", "sen_id": 214367}, {"caption": "a photographer has to be careful his requests to take photos of women is not misconstrued", "video_id": "video12693", "sen_id": 214368}, {"caption": "two men are talking during a show that is filming them", "video_id": "video12693", "sen_id": 214369}, {"caption": "a man with a black collared shirt explains that women think he's hitting on them while he's doing his job", "video_id": "video12693", "sen_id": 214370}, {"caption": "two men talk to each other about photography on a city street", "video_id": "video12693", "sen_id": 214371}, {"caption": "men are walking out on a sidewalk and discussing talking to girls", "video_id": "video12693", "sen_id": 214372}, {"caption": "two men smiling and talking to each other", "video_id": "video12693", "sen_id": 214373}, {"caption": "two men are standing on a sidewalk having a discussion", "video_id": "video12693", "sen_id": 214374}, {"caption": "a man black color dressed talking with another man", "video_id": "video12693", "sen_id": 214375}, {"caption": "pbs newshour one man talks in road with anothe man", "video_id": "video12693", "sen_id": 214376}, {"caption": "conversation between the guyshey were standing in the road side", "video_id": "video12693", "sen_id": 214377}, {"caption": "two persons are talking about some thing in the road-side", "video_id": "video12693", "sen_id": 214378}, {"caption": "a man in a dark shirt is talking to a tall guy", "video_id": "video12693", "sen_id": 214379}, {"caption": "weird music playing on top of a awkward picture", "video_id": "video11670", "sen_id": 214380}, {"caption": "a still photo of a golden design on a black background", "video_id": "video11670", "sen_id": 214381}, {"caption": "dramatic music plays while a mostly still image of what looks like space is shown", "video_id": "video11670", "sen_id": 214382}, {"caption": "a hot planet is shown flaming yellow in a game", "video_id": "video11670", "sen_id": 214383}, {"caption": "a scientist discusses a blown up picture of the sun", "video_id": "video11670", "sen_id": 214384}, {"caption": "a scientist shows the details of a picture taken of the surface of the sun", "video_id": "video11670", "sen_id": 214385}, {"caption": "a picture of what looks like a gold planet", "video_id": "video11670", "sen_id": 214386}, {"caption": "a microscopic view of an egg cell being fertilized by a sperm cell", "video_id": "video11670", "sen_id": 214387}, {"caption": "music plays as an image of a planet is viewed with golden bright lights", "video_id": "video11670", "sen_id": 214388}, {"caption": "an exploration about the earth in the television show", "video_id": "video11670", "sen_id": 214389}, {"caption": "slow music is playing to a short slide show", "video_id": "video11670", "sen_id": 214390}, {"caption": "a picture of something yellow is shown with calming music in the background", "video_id": "video11670", "sen_id": 214391}, {"caption": "there is a yellow color lights all around", "video_id": "video11670", "sen_id": 214392}, {"caption": "it seems something like different the light behind the glass and it looks in yellow shade", "video_id": "video11670", "sen_id": 214393}, {"caption": "the coronal mass ejection shoots away from the sun", "video_id": "video11670", "sen_id": 214394}, {"caption": "there is something impressing matters going on about science", "video_id": "video11670", "sen_id": 214395}, {"caption": "satelite image of the sun with a zoomed inset showing greater detail", "video_id": "video11670", "sen_id": 214396}, {"caption": "one looking like a space in the way near something", "video_id": "video11670", "sen_id": 214397}, {"caption": "here is the picture of something which seems to be of atmosphere and the particles there", "video_id": "video11670", "sen_id": 214398}, {"caption": "music is playing to a scene of a yellow sun", "video_id": "video11670", "sen_id": 214399}, {"caption": "on the screen is a picture of a sphynx with a man's voice heard speaking", "video_id": "video12670", "sen_id": 214400}, {"caption": "a group of ancient egyptians looks at a statute they have completed", "video_id": "video12670", "sen_id": 214401}, {"caption": "a group of egyptians look at a statue that they helped to construct", "video_id": "video12670", "sen_id": 214402}, {"caption": "an egyptian statue of a leader in the sunset", "video_id": "video12670", "sen_id": 214403}, {"caption": "an egyptian god statue is shown and a man's voice is narrating about how detail and dazzling paintwork was added to it", "video_id": "video12670", "sen_id": 214404}, {"caption": "a large pyramid sitting off in the distance being looked upon by people", "video_id": "video12670", "sen_id": 214405}, {"caption": "a sphinx and ancient egyptians lined up by it", "video_id": "video12670", "sen_id": 214406}, {"caption": "a large pyramid with a group of people standing and looking at it", "video_id": "video12670", "sen_id": 214407}, {"caption": "there is a statue with different color designs", "video_id": "video12670", "sen_id": 214408}, {"caption": "a mummy statue colored light blue and other persons are sround it", "video_id": "video12670", "sen_id": 214409}, {"caption": "stone faces are seen and people of medieval ages are seen carrying a palak", "video_id": "video12670", "sen_id": 214410}, {"caption": "its a egypt praying by all persons", "video_id": "video12670", "sen_id": 214411}, {"caption": "a group of people looking at a statue", "video_id": "video12670", "sen_id": 214412}, {"caption": "a digital recreation of the great sphinx of giza with egyptian onlookers", "video_id": "video12670", "sen_id": 214413}, {"caption": "an egyptian ruin sits in the sand in the desert", "video_id": "video12670", "sen_id": 214414}, {"caption": "bunch of people praying to the mummy statue", "video_id": "video12670", "sen_id": 214415}, {"caption": "there are some people standing in front of a mummy", "video_id": "video12670", "sen_id": 214416}, {"caption": "there are drawingdone on the rock in accient times", "video_id": "video12670", "sen_id": 214417}, {"caption": "a large statue painted with lots of color and detail of the sphinx", "video_id": "video12670", "sen_id": 214418}, {"caption": "an image of a sphinx is shown in clear video slowly rotating and zooming a male narrator describes the egyptians adding detail and dazzling paint work to the sphinx", "video_id": "video12670", "sen_id": 214419}, {"caption": "a man with a blue apron is mass cooking a dozen flat bread dishes on a large cooktop", "video_id": "video11477", "sen_id": 214420}, {"caption": "a street vendor prepares multiple meals at one time with the help of an asisstant", "video_id": "video11477", "sen_id": 214421}, {"caption": "a man cooking many tortillas on a large grill in a public area", "video_id": "video11477", "sen_id": 214422}, {"caption": "two men put assorted toppings and sauce on many round pieces of pizza dough", "video_id": "video11477", "sen_id": 214423}, {"caption": "a man is putting sauce and other ingredients onto flatbread which is cooking", "video_id": "video11477", "sen_id": 214424}, {"caption": "a man stands in front of a long hot grill saucing twelve round food items", "video_id": "video11477", "sen_id": 214425}, {"caption": "a number of masala dosa is being prepared by cook and a person helps him to separate them to serve", "video_id": "video11477", "sen_id": 214426}, {"caption": "a chef is preparing a dosa in the tawa", "video_id": "video11477", "sen_id": 214427}, {"caption": "a man is spreading paste onto thin circles of bread on the streetside", "video_id": "video11477", "sen_id": 214428}, {"caption": "a man spreading the masala on the dhosa and leaving onion and potato and another man cutting the dhosai", "video_id": "video11477", "sen_id": 214429}, {"caption": "there is man making dosa and putting ingredients onion and all", "video_id": "video11477", "sen_id": 214430}, {"caption": "a man spreads sauce over lines of flat bread on a large grill before sprinkling cheese and adding filling ingredients", "video_id": "video11477", "sen_id": 214431}, {"caption": "chef makes more number of dosa at the same time he splutter the onion and all other masala", "video_id": "video11477", "sen_id": 214432}, {"caption": "a cook pours sauce over hot plates full of food", "video_id": "video11477", "sen_id": 214433}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11477", "sen_id": 214434}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11477", "sen_id": 214435}, {"caption": "an indian man making masala dosa which is yellow in color", "video_id": "video11477", "sen_id": 214436}, {"caption": "a local chef in a hotel prepares 14 dosa in one big hot rod", "video_id": "video11477", "sen_id": 214437}, {"caption": "people are in a kitchen putting different topings on dough", "video_id": "video11477", "sen_id": 214438}, {"caption": "some food on a plate is being filmed for tv", "video_id": "video11477", "sen_id": 214439}, {"caption": "women getting water from a well and men walking up to see the women", "video_id": "video10011", "sen_id": 214440}, {"caption": "women are getting water at a well when two men notice them", "video_id": "video10011", "sen_id": 214441}, {"caption": "two men carrying a change of clothes towels and buckets stop when they see two young women at the well pulling up water", "video_id": "video10011", "sen_id": 214442}, {"caption": "three women with long brown hair gather water from a well", "video_id": "video10011", "sen_id": 214443}, {"caption": "three long haired women pump water from a well", "video_id": "video10011", "sen_id": 214444}, {"caption": "three long haired women pump water from a well", "video_id": "video10011", "sen_id": 214445}, {"caption": "women are taking water out of a well when two men with buckets approach the area", "video_id": "video10011", "sen_id": 214446}, {"caption": "all womans are speaking each other near a well", "video_id": "video10011", "sen_id": 214447}, {"caption": "women retrieving water from a well while two men approach", "video_id": "video10011", "sen_id": 214448}, {"caption": "near the well three girls are standing and they are taking water out from well and again pouring it inside", "video_id": "video10011", "sen_id": 214449}, {"caption": "three females are around a well and two are pulling up a pail of water when two men see them", "video_id": "video10011", "sen_id": 214450}, {"caption": "two young girl who appear to be in india are retrieving water from a well while a third girl reads and two older men approach with buckets", "video_id": "video10011", "sen_id": 214451}, {"caption": "an indian woman draws water from a well as two men approach", "video_id": "video10011", "sen_id": 214452}, {"caption": "three young indian girls one reading a book two drawing water from a well two indian men are walking towards them", "video_id": "video10011", "sen_id": 214453}, {"caption": "a woman in blue sari takes out water from well and 2 men see her", "video_id": "video10011", "sen_id": 214454}, {"caption": "several women taking water out from a well while two men approach", "video_id": "video10011", "sen_id": 214455}, {"caption": "two men walk up on three woman getting pails of water from a well", "video_id": "video10011", "sen_id": 214456}, {"caption": "group of ladies are outdoors and meeting their husbands", "video_id": "video10011", "sen_id": 214457}, {"caption": "some women drawing water from a well as men who are approaching stop to watch", "video_id": "video10011", "sen_id": 214458}, {"caption": "a group of women are talking out side", "video_id": "video10011", "sen_id": 214459}, {"caption": "an older man is cooking meat on the stove a chef is describing how to cook meat on a hot stove a professional chef describes how to cook meat in a saucepan", "video_id": "video10232", "sen_id": 214460}, {"caption": "a man in an apron stands in front of a stove and cooks meat", "video_id": "video10232", "sen_id": 214461}, {"caption": "a bald chef wearing eyeglasses stands at a stove holds a pot handle places a narrow meaty bone in the pot and cooks using a medium flame in a commercial kitchen", "video_id": "video10232", "sen_id": 214462}, {"caption": "a chef puts a cut of meat into a pan while explaining what he's doing", "video_id": "video10232", "sen_id": 214463}, {"caption": "a guy cooking in a kitchen in a white chef jacket", "video_id": "video10232", "sen_id": 214464}, {"caption": "a chef is demonstrating a cooking recipe by example", "video_id": "video10232", "sen_id": 214465}, {"caption": "a old man with spectacles is working in kitchen", "video_id": "video10232", "sen_id": 214466}, {"caption": "there is a men showing food that he had cooked", "video_id": "video10232", "sen_id": 214467}, {"caption": "a man wearing white is cooking in an industrial kitchen", "video_id": "video10232", "sen_id": 214468}, {"caption": "a fresh leg piece is placed in the hot water in the pan for cooking", "video_id": "video10232", "sen_id": 214469}, {"caption": "a guy in a chef outfit is making some food", "video_id": "video10232", "sen_id": 214470}, {"caption": "here the old man in his kitchen is heating the pan and then he is keeping a piece of meat in it", "video_id": "video10232", "sen_id": 214471}, {"caption": "an old man cooking with tawa", "video_id": "video10232", "sen_id": 214472}, {"caption": "one old man making recipe with sauce pan", "video_id": "video10232", "sen_id": 214473}, {"caption": "a person in the kitchen is placing a bone in a vessel on the stove", "video_id": "video10232", "sen_id": 214474}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video10232", "sen_id": 214475}, {"caption": "men is cooking in the utensil with water in it", "video_id": "video10232", "sen_id": 214476}, {"caption": "an older chef cooking a tubular piece of red meat stands by a large range supporting two metal pots in a white kitchen with shelving holding a few appliances", "video_id": "video10232", "sen_id": 214477}, {"caption": "a chef with a white moustache starts frying a piece of meat in a small pot", "video_id": "video10232", "sen_id": 214478}, {"caption": "bald old guy in glasses doing a cooking session", "video_id": "video10232", "sen_id": 214479}, {"caption": "people who are walking on the street make a pause when they get close to a car parked on the side", "video_id": "video10465", "sen_id": 214480}, {"caption": "people seeing the car that they are going to take their drivers test in", "video_id": "video10465", "sen_id": 214481}, {"caption": "people are dumbfounded when they learn that their driving test is in a mercedes car", "video_id": "video10465", "sen_id": 214482}, {"caption": "people are shocked to see a yellow sports car out in the wild", "video_id": "video10465", "sen_id": 214483}, {"caption": "people coming around a corner and looking confused at a gold car", "video_id": "video10465", "sen_id": 214484}, {"caption": "several people both men and women stopped walking and admire a yellow car near a park", "video_id": "video10465", "sen_id": 214485}, {"caption": "a man showing a new car to his girl friend which is parked near the plant", "video_id": "video10465", "sen_id": 214486}, {"caption": "a woman walking over to a car looking at it", "video_id": "video10465", "sen_id": 214487}, {"caption": "people walk around a large bush and look at a yellow card", "video_id": "video10465", "sen_id": 214488}, {"caption": "black guy in long hair asking people to see the car", "video_id": "video10465", "sen_id": 214489}, {"caption": "a man in white shirt walking in to the street", "video_id": "video10465", "sen_id": 214490}, {"caption": "there is a women walking and talking in jungle", "video_id": "video10465", "sen_id": 214491}, {"caption": "young people are surprised by a car that is parked behind some bushes", "video_id": "video10465", "sen_id": 214492}, {"caption": "people stops and stares at a yellow car that is parked in the bushes", "video_id": "video10465", "sen_id": 214493}, {"caption": "a couple men are walking out side", "video_id": "video10465", "sen_id": 214494}, {"caption": "there is a man with black hair walking on the road", "video_id": "video10465", "sen_id": 214495}, {"caption": "a man walking on a road and talking something about a car", "video_id": "video10465", "sen_id": 214496}, {"caption": "people looking at a silver colored car", "video_id": "video10465", "sen_id": 214497}, {"caption": "a man and a woman is talking something about the car", "video_id": "video10465", "sen_id": 214498}, {"caption": "a person is walking around looking at a car", "video_id": "video10465", "sen_id": 214499}, {"caption": "two people telling about how to make a dead person look alive", "video_id": "video12516", "sen_id": 214500}, {"caption": "a person dressed in blue scrubs talks to a man in a white shirt and tie", "video_id": "video12516", "sen_id": 214501}, {"caption": "a doctor talking to a man wearing a white shirt", "video_id": "video12516", "sen_id": 214502}, {"caption": "a woman wearing a medical gown mouth mask and lifted face guard stands by the curved hand of a deceased person who is lying on a preparation table attached to a brown hose", "video_id": "video12516", "sen_id": 214503}, {"caption": "a medical professional in a full gown and face mask works on a decease patient", "video_id": "video12516", "sen_id": 214504}, {"caption": "a funeral home discusses how they deal with people's bodies", "video_id": "video12516", "sen_id": 214505}, {"caption": "in a room a man is lying on a bed while someone standing beside him", "video_id": "video12516", "sen_id": 214506}, {"caption": "a sickly person is being operated on while a man begs for a doctor to help", "video_id": "video12516", "sen_id": 214507}, {"caption": "the doctors are doing their task in the hospital", "video_id": "video12516", "sen_id": 214508}, {"caption": "surgeon talking about the procedure done on the patient", "video_id": "video12516", "sen_id": 214509}, {"caption": "a white shirt man talking inside the room", "video_id": "video12516", "sen_id": 214510}, {"caption": "a woman giving details on her job embalming and a man crediting her work", "video_id": "video12516", "sen_id": 214511}, {"caption": "a mortician talking about embalming and then a man talking about the pride in appearance of the diseased", "video_id": "video12516", "sen_id": 214512}, {"caption": "a woman describes an aspect of her work as an embalmer a man compliments the woman", "video_id": "video12516", "sen_id": 214513}, {"caption": "a man is sitting in a room and talking", "video_id": "video12516", "sen_id": 214514}, {"caption": "there is a woman treating her patient with care", "video_id": "video12516", "sen_id": 214515}, {"caption": "a man is wearing white color dress is talking about a man", "video_id": "video12516", "sen_id": 214516}, {"caption": "doctors with safety masks on doing a surgery to an old man", "video_id": "video12516", "sen_id": 214517}, {"caption": "man describing a woman s ability to make dead people look good", "video_id": "video12516", "sen_id": 214518}, {"caption": "a man with a white shirt is talking in a room", "video_id": "video12516", "sen_id": 214519}, {"caption": "a man is putting food in a food processor on a cooking show", "video_id": "video11259", "sen_id": 214520}, {"caption": "a man is putting a mix into a food processor", "video_id": "video11259", "sen_id": 214521}, {"caption": "man putting yogurt in a blender machine to make a recipe", "video_id": "video11259", "sen_id": 214522}, {"caption": "a man in a plaid shirt is in a kitchen holding a bowl filled with cream ", "video_id": "video11259", "sen_id": 214523}, {"caption": "a man prepares food on a counter while speaking aloud", "video_id": "video11259", "sen_id": 214524}, {"caption": "an in-home chef puts ingredients into a blender that is setting on his kitchen counter", "video_id": "video11259", "sen_id": 214525}, {"caption": "a amn is speaking in a different language mixing something in a blender", "video_id": "video11259", "sen_id": 214526}, {"caption": "a man scooping yogurt into a juicer in a kitchen", "video_id": "video11259", "sen_id": 214527}, {"caption": "a man scooping a creamy substance in a blender", "video_id": "video11259", "sen_id": 214528}, {"caption": "a man puts several spoonfulls of yogurt into a blender and speaks a foreign language", "video_id": "video11259", "sen_id": 214529}, {"caption": "a man in a plaid shirt is putting yogurt into a blender in a kitchen setting", "video_id": "video11259", "sen_id": 214530}, {"caption": "a man making a mix inside of a blender", "video_id": "video11259", "sen_id": 214531}, {"caption": "a man is spooning a white cream from a glass bowl he holds in his left hand into a blender pitcher on the table", "video_id": "video11259", "sen_id": 214532}, {"caption": "a chef showing some food prepration", "video_id": "video11259", "sen_id": 214533}, {"caption": "a guy talking in a different language in the kitchen showing you how to cook", "video_id": "video11259", "sen_id": 214534}, {"caption": "a man in a plaid shirt spoons yogurt into a blender", "video_id": "video11259", "sen_id": 214535}, {"caption": "there is a check shirt man making a dish with cheese", "video_id": "video11259", "sen_id": 214536}, {"caption": "a man walks through a recipe utilizing yogurt and a blender", "video_id": "video11259", "sen_id": 214537}, {"caption": "a man spoons pudding like ingredients into a blender from bowl", "video_id": "video11259", "sen_id": 214538}, {"caption": "preparation of sweetened curd drink lazi with sugar free sweetner", "video_id": "video11259", "sen_id": 214539}, {"caption": "a man in white shirt discussing how hard it is to get the balloons in his car", "video_id": "video12825", "sen_id": 214540}, {"caption": "a man describing getting balloons into his with traffic passing in the background", "video_id": "video12825", "sen_id": 214541}, {"caption": "a man in the shade talking about getting balloons", "video_id": "video12825", "sen_id": 214542}, {"caption": "a man in a white shirt with spiky hair talks to a held camera", "video_id": "video12825", "sen_id": 214543}, {"caption": "a man in a white shirt putting something in his car he is talking about getting balloons in his car", "video_id": "video12825", "sen_id": 214544}, {"caption": "a man with a white shirt talking to the camera", "video_id": "video12825", "sen_id": 214545}, {"caption": "a man with blonde spiked hair talks about how hard it is to shove balloons into his car", "video_id": "video12825", "sen_id": 214546}, {"caption": "a man talking about his struggle of fitting some balloons inside of the his car", "video_id": "video12825", "sen_id": 214547}, {"caption": "a man is in white shirt is speaking in the road", "video_id": "video12825", "sen_id": 214548}, {"caption": "a guy wearing a white t-shirt talks outside while looking into the camera", "video_id": "video12825", "sen_id": 214549}, {"caption": "a person repairs his vehicle and then talks to the camera", "video_id": "video12825", "sen_id": 214550}, {"caption": "a man in a white shirt is out side", "video_id": "video12825", "sen_id": 214551}, {"caption": "a man wearing white color dress is talking", "video_id": "video12825", "sen_id": 214552}, {"caption": "a man films himself trying to load his trunk", "video_id": "video12825", "sen_id": 214553}, {"caption": "a man with white t shirt having red face is wearing a earring telling about functioning of a engine", "video_id": "video12825", "sen_id": 214554}, {"caption": "a man with his car in the middle of a street explaining an everyday topic", "video_id": "video12825", "sen_id": 214555}, {"caption": "a young man in white shirt with a red face is talking earnestly", "video_id": "video12825", "sen_id": 214556}, {"caption": "a man is outside trying to figure out the best way to fit all of his things inside of a car", "video_id": "video12825", "sen_id": 214557}, {"caption": "a man wearing a white shirt is outside with cars driving behind him", "video_id": "video12825", "sen_id": 214558}, {"caption": "a man in white teeshirt is talking to camera", "video_id": "video12825", "sen_id": 214559}, {"caption": "someone is driving a jeep through a field trying to flag down a man on a horse and carriage", "video_id": "video11253", "sen_id": 214560}, {"caption": "a man and a woman are driving in a car when they see a man in a buggy", "video_id": "video11253", "sen_id": 214561}, {"caption": "a car driving through a wooded area and comes across a man on a hours and carriage", "video_id": "video11253", "sen_id": 214562}, {"caption": "there are two people in a red car followed by a black car driving and a man driving a horse and buggy", "video_id": "video11253", "sen_id": 214563}, {"caption": "a couple driving an old model t down a country road honk their horn and wave at the man in a vest riding a horse and buggey in their direction", "video_id": "video11253", "sen_id": 214564}, {"caption": "a man and woman speaking french in a horse drawn carriage through grassland", "video_id": "video11253", "sen_id": 214565}, {"caption": "people speaking in french as a car drives up a grassy road", "video_id": "video11253", "sen_id": 214566}, {"caption": "a car is travelling in the rural area", "video_id": "video11253", "sen_id": 214567}, {"caption": "a person is riding a car and another person is coming with horse", "video_id": "video11253", "sen_id": 214568}, {"caption": "in a forest a jeep coming another person riding hose", "video_id": "video11253", "sen_id": 214569}, {"caption": "there is a car coming towards a horse vehicle", "video_id": "video11253", "sen_id": 214570}, {"caption": "a man and a woman are talking riding in a forest on a dirt road", "video_id": "video11253", "sen_id": 214571}, {"caption": "one car is going and a man is riding horse", "video_id": "video11253", "sen_id": 214572}, {"caption": "there are rolling green hills with trees in the background then a vehicle appears from behind one of the hills", "video_id": "video11253", "sen_id": 214573}, {"caption": "a guy is riding in a horse carriage", "video_id": "video11253", "sen_id": 214574}, {"caption": "there is a car moving in to the village", "video_id": "video11253", "sen_id": 214575}, {"caption": "people are riding through the country side in a car and encounter a horse and buggy", "video_id": "video11253", "sen_id": 214576}, {"caption": "a man in a horse drawn carriage riding in the country", "video_id": "video11253", "sen_id": 214577}, {"caption": "people in a car honking to try to get the attention of a man with a horse drawn wagon", "video_id": "video11253", "sen_id": 214578}, {"caption": "a man in a carriage is driving around", "video_id": "video11253", "sen_id": 214579}, {"caption": "man showing how to cook thin filet in a stainless steel fry pan", "video_id": "video10595", "sen_id": 214580}, {"caption": "a man heats up a frying pan before adding hamburgers", "video_id": "video10595", "sen_id": 214581}, {"caption": "a man adds oil to a pan and swirls it around before adding patties to the pan", "video_id": "video10595", "sen_id": 214582}, {"caption": "oil being poured into a metal pan followed by beef paties", "video_id": "video10595", "sen_id": 214583}, {"caption": "a man cooks hamburgers in a skillet on the stove", "video_id": "video10595", "sen_id": 214584}, {"caption": "two hands pour oil in a fryin pan and then adds a couple of raw hamburgers to the pan while the voiceover talks", "video_id": "video10595", "sen_id": 214585}, {"caption": "a person has added oil on a pan and later places thin slices of meat", "video_id": "video10595", "sen_id": 214586}, {"caption": "in a kitchen the person cooks a spicy snacks item is in the color of red where the pan and the stove is keeping very clean", "video_id": "video10595", "sen_id": 214587}, {"caption": "a man is making oil coat the bottom of the pan and then adds meat to the pan", "video_id": "video10595", "sen_id": 214588}, {"caption": "a man pours oil into a pan and when the oil is hot put hamburger patties into the pan", "video_id": "video10595", "sen_id": 214589}, {"caption": "a man prepares to cook some meat in an oiled pan", "video_id": "video10595", "sen_id": 214590}, {"caption": "a man is placing oil and then met into a hot skillet", "video_id": "video10595", "sen_id": 214591}, {"caption": "a man preparing a skillet before placing what looks like beef patties in it", "video_id": "video10595", "sen_id": 214592}, {"caption": "a man talks about different oils for cooking before adding meat to a pan to fry", "video_id": "video10595", "sen_id": 214593}, {"caption": "someone is heating the pan with oil and adding the meat", "video_id": "video10595", "sen_id": 214594}, {"caption": "someone frying some food in the cooking pan", "video_id": "video10595", "sen_id": 214595}, {"caption": "a man is placing a pan in to the stove", "video_id": "video10595", "sen_id": 214596}, {"caption": "mason oil in a silver pan with meat being added to the pan", "video_id": "video10595", "sen_id": 214597}, {"caption": "a man is searing steaks in an oiled silver frying pan on a granite stove top", "video_id": "video10595", "sen_id": 214598}, {"caption": "someone is frying up meat in a pan", "video_id": "video10595", "sen_id": 214599}, {"caption": "a platter with grapes cheese and ham while a woman narrates", "video_id": "video11622", "sen_id": 214600}, {"caption": "a woman is talking about different types of snacks on a snack tray", "video_id": "video11622", "sen_id": 214601}, {"caption": "a woman is discussing the addition of different chees's to her platter", "video_id": "video11622", "sen_id": 214602}, {"caption": "different types of food included cheeses and meats are being presented", "video_id": "video11622", "sen_id": 214603}, {"caption": "woman is speaking about different cheeses like gouta", "video_id": "video11622", "sen_id": 214604}, {"caption": "woman talking about cheese plate and pesto gouda", "video_id": "video11622", "sen_id": 214605}, {"caption": "woman describes meats and cheeses that are displayed on a silver platter", "video_id": "video11622", "sen_id": 214606}, {"caption": "a woman assembles a cheese plate of meat nuts and cheeses", "video_id": "video11622", "sen_id": 214607}, {"caption": "a woman is describing how to arrange a party platter of cheese and other charcuterie and suggests having something unusual and unexpected such as a green-hued pesto-flavored cheese", "video_id": "video11622", "sen_id": 214608}, {"caption": "different types of sweets and fruits are arranged in a plate", "video_id": "video11622", "sen_id": 214609}, {"caption": "a round and silver tray is divided into sections holding various cheeses rolled ham purple grapes sliced salami and seasoned nuts", "video_id": "video11622", "sen_id": 214610}, {"caption": "a woman talking about green cheese which is next to sharp yellow cheese", "video_id": "video11622", "sen_id": 214611}, {"caption": "cheese and meats are displayed on a tray", "video_id": "video11622", "sen_id": 214612}, {"caption": "a person describes the food items displayed on a large silver tray", "video_id": "video11622", "sen_id": 214613}, {"caption": "chelsea fruits and meats are on a serving tray", "video_id": "video11622", "sen_id": 214614}, {"caption": "a woman giving information about the green cheese which she claims is the perfect", "video_id": "video11622", "sen_id": 214615}, {"caption": "on a plate few sweets and other other fruits are kept for the guest", "video_id": "video11622", "sen_id": 214616}, {"caption": "a woman is talking about different cheese on a plate", "video_id": "video11622", "sen_id": 214617}, {"caption": "a woman discusses properties of delicious cheese", "video_id": "video11622", "sen_id": 214618}, {"caption": "some meat and cheese is lying on a plate", "video_id": "video11622", "sen_id": 214619}, {"caption": "person in purple tie is talking about the apple ipad being delayed", "video_id": "video10610", "sen_id": 214620}, {"caption": "a news anchor man from the tech bet announces the release of the apple 129 inch ipad is delayed and is expected to be released during the second portion of this year", "video_id": "video10610", "sen_id": 214621}, {"caption": "asian anchor man with purple tie discusses delay of ipad", "video_id": "video10610", "sen_id": 214622}, {"caption": "a commentater talking about something called tech bet", "video_id": "video10610", "sen_id": 214623}, {"caption": "a man in a gray suit gives a report on a development related to a computer company", "video_id": "video10610", "sen_id": 214624}, {"caption": "a man on a cable news channel talks about apple delaying the release of a new ipad", "video_id": "video10610", "sen_id": 214625}, {"caption": "a man in black coat reading the cnbc business news in the chaneel", "video_id": "video10610", "sen_id": 214626}, {"caption": "a news clip of dominic chu discussing the apple ipad delay", "video_id": "video10610", "sen_id": 214627}, {"caption": "a man is speaking in the television cahnnel", "video_id": "video10610", "sen_id": 214628}, {"caption": "news reporter wearing a suit and purple tie discussing the production of apple ipad delay", "video_id": "video10610", "sen_id": 214629}, {"caption": "man presenting an article about apple ipad product", "video_id": "video10610", "sen_id": 214630}, {"caption": "the tech bet apple ipad delay expected in", "video_id": "video10610", "sen_id": 214631}, {"caption": "the tech bet guy with the purple tie reads the news he wear the coat", "video_id": "video10610", "sen_id": 214632}, {"caption": "a news anchor is talking about the delay of the new apple ipad", "video_id": "video10610", "sen_id": 214633}, {"caption": "a male reporter saying that apple s 129 ipad production may be delayed", "video_id": "video10610", "sen_id": 214634}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10610", "sen_id": 214635}, {"caption": "a news reader reading a news in news program", "video_id": "video10610", "sen_id": 214636}, {"caption": "a man in a dark gray suit with a blue shirt and purple tie giving a report on a product", "video_id": "video10610", "sen_id": 214637}, {"caption": "a news anchor in a suit is talking about an ipad", "video_id": "video10610", "sen_id": 214638}, {"caption": "a man on the news is talking about things", "video_id": "video10610", "sen_id": 214639}, {"caption": "a man with glasses talks about trees", "video_id": "video10164", "sen_id": 214640}, {"caption": "a man standing next to a tree talking about it", "video_id": "video10164", "sen_id": 214641}, {"caption": "a man talking about the compost in a tree and explaing how it makes the tree hard and strond instead of soft", "video_id": "video10164", "sen_id": 214642}, {"caption": "a man wearing a brown shirt talks about scientific facts about trees", "video_id": "video10164", "sen_id": 214643}, {"caption": "an explanation of what trees contain which makes them grow tall", "video_id": "video10164", "sen_id": 214644}, {"caption": "a man with glasses discusses why trees are able to grow tall and are tough", "video_id": "video10164", "sen_id": 214645}, {"caption": "a man in glasses is teaching about the differences between plant cell and the animal cell", "video_id": "video10164", "sen_id": 214646}, {"caption": "a boy talking about a tree and stand under a tree", "video_id": "video10164", "sen_id": 214647}, {"caption": "a man with a button down shirt and glasses is explaining why trees grow tall while standing next to a tree", "video_id": "video10164", "sen_id": 214648}, {"caption": "a person is saying about a tree in the forests and the tree is very strong and it is very high also", "video_id": "video10164", "sen_id": 214649}, {"caption": "a young man is explaining the cell biology of trees", "video_id": "video10164", "sen_id": 214650}, {"caption": "a slender young man wearing glasses is standing by a tree", "video_id": "video10164", "sen_id": 214651}, {"caption": "a man gives a lecture on traits of a tree", "video_id": "video10164", "sen_id": 214652}, {"caption": "a famous youtuber giving an example in a video about a certain life form that has cellulose", "video_id": "video10164", "sen_id": 214653}, {"caption": "guy in glass with shirt talking to the camera under the tree", "video_id": "video10164", "sen_id": 214654}, {"caption": "a man in shirt talking about a tree", "video_id": "video10164", "sen_id": 214655}, {"caption": "a man with blond hair and glasses describes tree growth near a walking bridge", "video_id": "video10164", "sen_id": 214656}, {"caption": "a scientist pokes a tree and goes over its biology", "video_id": "video10164", "sen_id": 214657}, {"caption": "a youtuber giving a lesson about trees and describing the physical properties of cellulose", "video_id": "video10164", "sen_id": 214658}, {"caption": "a brown tree is being filmed outside", "video_id": "video10164", "sen_id": 214659}, {"caption": "a math assignment shown with vectors and other angles", "video_id": "video10527", "sen_id": 214660}, {"caption": "a person is explaining a homework assignment on a computer", "video_id": "video10527", "sen_id": 214661}, {"caption": "pages in a microsoft word document are scrolled through while a man discusses the contents", "video_id": "video10527", "sen_id": 214662}, {"caption": "someone narrating how to solve a math problem", "video_id": "video10527", "sen_id": 214663}, {"caption": "a word document on white paper displaying a diagram", "video_id": "video10527", "sen_id": 214664}, {"caption": "on a computer screen a man is scrolling through some sort of report", "video_id": "video10527", "sen_id": 214665}, {"caption": "something explain mathematics on the computer very clearly", "video_id": "video10527", "sen_id": 214666}, {"caption": "a person is scrolling through the screen past many mathematical equations", "video_id": "video10527", "sen_id": 214667}, {"caption": "a male math teacher demonstrates how to work a particular math problem", "video_id": "video10527", "sen_id": 214668}, {"caption": "a man speaking a foreign language is talking while a computer screenshot is showing a graph with writing under it", "video_id": "video10527", "sen_id": 214669}, {"caption": "a person gives a computer tutorial with graphs", "video_id": "video10527", "sen_id": 214670}, {"caption": "there is a man explains a important note", "video_id": "video10527", "sen_id": 214671}, {"caption": "a math problem worksheet is shown on a computer screen", "video_id": "video10527", "sen_id": 214672}, {"caption": "a scientist talks about the items that have gone in to a problem he has been working on", "video_id": "video10527", "sen_id": 214673}, {"caption": "a guy giving instructions about using microsoft office word 2007", "video_id": "video10527", "sen_id": 214674}, {"caption": "a person is showing document in the screen of the computer", "video_id": "video10527", "sen_id": 214675}, {"caption": "in a computer screen mathematical problems are displayed", "video_id": "video10527", "sen_id": 214676}, {"caption": "someone is talking about and showing a word document", "video_id": "video10527", "sen_id": 214677}, {"caption": "someone talking about some science or math in another language", "video_id": "video10527", "sen_id": 214678}, {"caption": "a diagram of a device is being shown to someone", "video_id": "video10527", "sen_id": 214679}, {"caption": "a woman is trying something together with her hands", "video_id": "video11723", "sen_id": 214680}, {"caption": "a woman showing to make a bracelet made of rubber bands", "video_id": "video11723", "sen_id": 214681}, {"caption": "woman filming her hands demonstrating how to make bracelets", "video_id": "video11723", "sen_id": 214682}, {"caption": "a woman is using different colored bands to weave a bracelet", "video_id": "video11723", "sen_id": 214683}, {"caption": "a person is making crafting and making jewelry", "video_id": "video11723", "sen_id": 214684}, {"caption": "someone making a multi colored rubber band craft bracelet", "video_id": "video11723", "sen_id": 214685}, {"caption": "there is a women fixing a toy with her hand", "video_id": "video11723", "sen_id": 214686}, {"caption": "a lady is making something with threads and hooks", "video_id": "video11723", "sen_id": 214687}, {"caption": "a lady is teaching the viewers how to make a colorful and attractive bracelet on your own she is explaining every bit of it", "video_id": "video11723", "sen_id": 214688}, {"caption": "a lady showing how to do knitting with colourful bands", "video_id": "video11723", "sen_id": 214689}, {"caption": "a person is looping some string on a stick", "video_id": "video11723", "sen_id": 214690}, {"caption": "there is a women making toys on the table", "video_id": "video11723", "sen_id": 214691}, {"caption": "someone is making a model with thread and hook", "video_id": "video11723", "sen_id": 214692}, {"caption": "a girl explains about to do some product to another girl", "video_id": "video11723", "sen_id": 214693}, {"caption": "someone is doing something with a niddle", "video_id": "video11723", "sen_id": 214694}, {"caption": "a person is using string on a metal stick", "video_id": "video11723", "sen_id": 214695}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11723", "sen_id": 214696}, {"caption": "a woman shows and talks about how to knit a small bracelet", "video_id": "video11723", "sen_id": 214697}, {"caption": "somebody making something with elastic this is a lady voice", "video_id": "video11723", "sen_id": 214698}, {"caption": "someone is putting together a small thing", "video_id": "video11723", "sen_id": 214699}, {"caption": "a person sitting in a wheelchair on a tennis court hit a tennis ball", "video_id": "video12249", "sen_id": 214700}, {"caption": "a tennis comedy sketch showing a man in a wheelchair and a man in a skirt", "video_id": "video12249", "sen_id": 214701}, {"caption": "a man in a skirt teaches a man in a wheelchair how to play tennis", "video_id": "video12249", "sen_id": 214702}, {"caption": "a guy in a wheelchair playing tennis and a man wearing a tennis skirt", "video_id": "video12249", "sen_id": 214703}, {"caption": "a guy in a purple shirt is helping a guy in a wheelchair play against a guy in a white skirt", "video_id": "video12249", "sen_id": 214704}, {"caption": "a man in a wheel chair hits tennis balls that are tossed to him", "video_id": "video12249", "sen_id": 214705}, {"caption": "spoof of guy in wheelchair trying to learn how to play tennis", "video_id": "video12249", "sen_id": 214706}, {"caption": "a man throws tennis balls at a man in a wheelchair who tries to hit them as his partner stretches", "video_id": "video12249", "sen_id": 214707}, {"caption": "someone serving tennis ball for a disabled person in a wheelchair to hit", "video_id": "video12249", "sen_id": 214708}, {"caption": "a man in a skirt plays tennis with a man in a wheel chair", "video_id": "video12249", "sen_id": 214709}, {"caption": "handicapped man is on a tennis court learning how to play tennis with another man", "video_id": "video12249", "sen_id": 214710}, {"caption": "a man is fooling around on a tennis court with a wheelchair", "video_id": "video12249", "sen_id": 214711}, {"caption": "watch some hilarious out takes from recent tappings of the hit show the office", "video_id": "video12249", "sen_id": 214712}, {"caption": "a guy in a tennis skirt stretches", "video_id": "video12249", "sen_id": 214713}, {"caption": "a man in a wheelchair is learning to play tennis", "video_id": "video12249", "sen_id": 214714}, {"caption": "a wheelchair bound man plays tennis with a friend", "video_id": "video12249", "sen_id": 214715}, {"caption": "a man in a wheelchair tries to learn how to play tennis", "video_id": "video12249", "sen_id": 214716}, {"caption": "a man in a wheelchair on a tennis court is trying very hard to play tennis with his partner", "video_id": "video12249", "sen_id": 214717}, {"caption": "the players are practicing and doing warm ups before starting the game", "video_id": "video12249", "sen_id": 214718}, {"caption": "a man in a skirt plays tennis with a man in a motorized wheelchair", "video_id": "video12249", "sen_id": 214719}, {"caption": "a man laying down while his new born daughter sleeps on top of him", "video_id": "video11831", "sen_id": 214720}, {"caption": "a man is napping with his baby while the tv in on", "video_id": "video11831", "sen_id": 214721}, {"caption": "a dark-haired man lying down sleeping with a sleeping baby on his shoulder and a television can be heard in the background", "video_id": "video11831", "sen_id": 214722}, {"caption": "a man is taking a nap while his little baby is sleeping with him", "video_id": "video11831", "sen_id": 214723}, {"caption": "a baby who is resting on his dad's chest", "video_id": "video11831", "sen_id": 214724}, {"caption": "a small baby sleeps on the chest of man sleeping in a bed", "video_id": "video11831", "sen_id": 214725}, {"caption": "a man laying down in his bed with a small infant sleeping on top of his chest", "video_id": "video11831", "sen_id": 214726}, {"caption": "a man with a baby lying on his chest both of them sleeping and the man is snoring", "video_id": "video11831", "sen_id": 214727}, {"caption": "a man sleeps with his new born baby asleep on his chest", "video_id": "video11831", "sen_id": 214728}, {"caption": "a tiny baby sleeps on the chest of his father", "video_id": "video11831", "sen_id": 214729}, {"caption": "a baby has fallen asleep on its father", "video_id": "video11831", "sen_id": 214730}, {"caption": "a man lays sleeping in a bed while a small baby sleeps with its head on the man's soldier and his body across the man's chest", "video_id": "video11831", "sen_id": 214731}, {"caption": "a man takes a nap with his newborn baby asleep on his chest", "video_id": "video11831", "sen_id": 214732}, {"caption": "a person in a t shirt on bed with one kid and both are sleeping", "video_id": "video11831", "sen_id": 214733}, {"caption": "a newly born baby is sleeping with mouth slightly open on father's chest and the father falls into sleep as well while there are noise of tv and snore and suddenly the baby jerks a bit", "video_id": "video11831", "sen_id": 214734}, {"caption": "a television can be heard in the background as a little bab sleeps on his sleeping father s chest", "video_id": "video11831", "sen_id": 214735}, {"caption": "a father and his child were sleeping on bed in home", "video_id": "video11831", "sen_id": 214736}, {"caption": "a baby in a green onsie sleeping on its fathers chest", "video_id": "video11831", "sen_id": 214737}, {"caption": "a baby is sleeping on top of his father on top of a bed", "video_id": "video11831", "sen_id": 214738}, {"caption": "a man and a baby are lying down inside", "video_id": "video11831", "sen_id": 214739}, {"caption": "a woman lying in bed with a man is singing", "video_id": "video11613", "sen_id": 214740}, {"caption": "one of the rihanna videos is being played with rihanna singing", "video_id": "video11613", "sen_id": 214741}, {"caption": "a woman and man are laying in bed while she sings", "video_id": "video11613", "sen_id": 214742}, {"caption": "a woman with red hair is laying on a man's chest", "video_id": "video11613", "sen_id": 214743}, {"caption": "a woman in a peach colored dress followed by her laying next to a man touching his chest", "video_id": "video11613", "sen_id": 214744}, {"caption": "a young woman and man are shown in bed together while she sings", "video_id": "video11613", "sen_id": 214745}, {"caption": "a man and woman lay together in a bed while the woman sings a song", "video_id": "video11613", "sen_id": 214746}, {"caption": "a couple are laying in bed", "video_id": "video11613", "sen_id": 214747}, {"caption": "a woman in a white sheer dress is laying in bed singing a song", "video_id": "video11613", "sen_id": 214748}, {"caption": "a woman with red hair and nails stands in a white flowing dress then sings while she lays down next to a man with an unclothed chest", "video_id": "video11613", "sen_id": 214749}, {"caption": "a man and a women with red hair are laying together under a tent", "video_id": "video11613", "sen_id": 214750}, {"caption": "a woman behind a flowing curtain and rheanna singing while laying in bed with a man", "video_id": "video11613", "sen_id": 214751}, {"caption": "a man and a woman in bed together with her rubbing his chest and then her singing", "video_id": "video11613", "sen_id": 214752}, {"caption": "rihanna is cuddled up to a muscular man while caressing his body and singing", "video_id": "video11613", "sen_id": 214753}, {"caption": "a woman with bright red hair is touching a man", "video_id": "video11613", "sen_id": 214754}, {"caption": "rihanna performing her music video for the song california king bed", "video_id": "video11613", "sen_id": 214755}, {"caption": "segment of a video clip displaying sensual scenes between actors", "video_id": "video11613", "sen_id": 214756}, {"caption": "music video for a song being sung by what looks to be rhianna", "video_id": "video11613", "sen_id": 214757}, {"caption": "the singer rihanna is laying with a man and singing", "video_id": "video11613", "sen_id": 214758}, {"caption": "a woman with red hair is singing a song", "video_id": "video11613", "sen_id": 214759}, {"caption": "a woman puts makeup on her eyebrows and then looks into the camera", "video_id": "video12631", "sen_id": 214760}, {"caption": "a woman with long eyelashes eyeliner and arched eyebrows blinks and looks around and then directly at the camera", "video_id": "video12631", "sen_id": 214761}, {"caption": "a woman discusses and demonstrates a make-up technique she uses", "video_id": "video12631", "sen_id": 214762}, {"caption": "a woman is talking about her eye brow tutorial", "video_id": "video12631", "sen_id": 214763}, {"caption": "a woman in eye makeup and lashes blinking her eyes slowly", "video_id": "video12631", "sen_id": 214764}, {"caption": "get help getting ready for a night out with our simple makeup tutorial", "video_id": "video12631", "sen_id": 214765}, {"caption": "there is a woman with beautiful eyes watching", "video_id": "video12631", "sen_id": 214766}, {"caption": "video shows a face young lady", "video_id": "video12631", "sen_id": 214767}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video12631", "sen_id": 214768}, {"caption": "a woman does a tutorial on how to trim and perfect eyebrows", "video_id": "video12631", "sen_id": 214769}, {"caption": "an asian woman giving a tutorial on how to do eyebrows", "video_id": "video12631", "sen_id": 214770}, {"caption": "a woman finishes a tutorial on making eyebrows fuller", "video_id": "video12631", "sen_id": 214771}, {"caption": "a beautiful asian giving a tutorial of how to apply make-up", "video_id": "video12631", "sen_id": 214772}, {"caption": "the face of a female that has just been transformed by makeup and narrated by a female voice", "video_id": "video12631", "sen_id": 214773}, {"caption": "an asian woman has just completed an eyebrow makeup tutorial and thanks her audience for watching", "video_id": "video12631", "sen_id": 214774}, {"caption": "a girl brushing eye browse for make up look face beauty displaying on screen", "video_id": "video12631", "sen_id": 214775}, {"caption": "the woman puts the make up on her eye lids", "video_id": "video12631", "sen_id": 214776}, {"caption": "the girl looks sexy while closing her eyesshe looks beautiful", "video_id": "video12631", "sen_id": 214777}, {"caption": "a woman is in front of a camera doing her makeup", "video_id": "video12631", "sen_id": 214778}, {"caption": "a woman is showing how to do her makeup", "video_id": "video12631", "sen_id": 214779}, {"caption": "a covered fry pan cooking meat in oil on a stove", "video_id": "video10139", "sen_id": 214780}, {"caption": "shows food in a pot simmering and covered", "video_id": "video10139", "sen_id": 214781}, {"caption": "someone is cooking in a pot on the stove the pot is covered and the food is simmering", "video_id": "video10139", "sen_id": 214782}, {"caption": "a silver pot on a stove with black handles and a glass lid", "video_id": "video10139", "sen_id": 214783}, {"caption": "a chef prepares a recipe by covering a boiling pot", "video_id": "video10139", "sen_id": 214784}, {"caption": "sliced fish were cooked inside a bowl a hand closed it by a lid", "video_id": "video10139", "sen_id": 214785}, {"caption": "pot with a cover that is simmering on the stove", "video_id": "video10139", "sen_id": 214786}, {"caption": "the person cooks the food in a stainless steel pot", "video_id": "video10139", "sen_id": 214787}, {"caption": "cover pot and simmer for one minute in", "video_id": "video10139", "sen_id": 214788}, {"caption": "a person is cooking food in a pot on the stove with a lid on it", "video_id": "video10139", "sen_id": 214789}, {"caption": "in the kitchensomeone cooking food in a pan", "video_id": "video10139", "sen_id": 214790}, {"caption": "a pot simmering on a stove", "video_id": "video10139", "sen_id": 214791}, {"caption": "a glass lid with black knob is placed over a simmering pot of cut fish with black scaly skin in a gray broth", "video_id": "video10139", "sen_id": 214792}, {"caption": "a person is cooking some dish on the pot", "video_id": "video10139", "sen_id": 214793}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10139", "sen_id": 214794}, {"caption": "a person puts a top on a cooking pot", "video_id": "video10139", "sen_id": 214795}, {"caption": "a bigpot placed on the fier which has food boiling in it", "video_id": "video10139", "sen_id": 214796}, {"caption": "in a pot ingredients simmer for one whole minute", "video_id": "video10139", "sen_id": 214797}, {"caption": "an in home chef prepares a dishes that calls for slow simmering in the preparation", "video_id": "video10139", "sen_id": 214798}, {"caption": "a black pot is on a top with a cover with a black knob", "video_id": "video10139", "sen_id": 214799}, {"caption": "people dressed in colorful outfits with flowing garb on a busy beach", "video_id": "video11927", "sen_id": 214800}, {"caption": "four people dressed in colorful costumes run on the beach", "video_id": "video11927", "sen_id": 214801}, {"caption": "four people dressed in costumes run along a beach filled with people", "video_id": "video11927", "sen_id": 214802}, {"caption": "gumby characters are running and laughing through a public beach", "video_id": "video11927", "sen_id": 214803}, {"caption": "four individuals in costumes run down the beach and leap over beach goers", "video_id": "video11927", "sen_id": 214804}, {"caption": "two men running after one another", "video_id": "video11927", "sen_id": 214805}, {"caption": "a person recorded a group of people who were running on the beach in seemingly inflatable jumpsuits", "video_id": "video11927", "sen_id": 214806}, {"caption": "some persons are enjoying on a sea beach area", "video_id": "video11927", "sen_id": 214807}, {"caption": "people dressed in costumes on a beach seem to pull a prank on someone and then run", "video_id": "video11927", "sen_id": 214808}, {"caption": "people are running on the beach in strange outfits", "video_id": "video11927", "sen_id": 214809}, {"caption": "so many hurdles in the beach is happening and people are running", "video_id": "video11927", "sen_id": 214810}, {"caption": "there is a shore with lot of tourists", "video_id": "video11927", "sen_id": 214811}, {"caption": "four people dressed in different color caftans are running down the beach as the one in white hurdles over an unsuspecting man sitting there", "video_id": "video11927", "sen_id": 214812}, {"caption": "participants in a beach hurdle event running across the beach after one of them falls", "video_id": "video11927", "sen_id": 214813}, {"caption": "a bunch of people are hanging out and playing on the beach", "video_id": "video11927", "sen_id": 214814}, {"caption": "the people are swimming and playing in the sea and beach enjoying themselves", "video_id": "video11927", "sen_id": 214815}, {"caption": "a group of men wearing long costumes are running on the beach having fun", "video_id": "video11927", "sen_id": 214816}, {"caption": "a group of men in animal jumpsuits jog down the beach", "video_id": "video11927", "sen_id": 214817}, {"caption": "girl and boys near beach sleeping and few persons are running displaying on screen", "video_id": "video11927", "sen_id": 214818}, {"caption": "people in strange attire run along the beach and jump over unsuspecting bystanders", "video_id": "video11927", "sen_id": 214819}, {"caption": "a woman records a tutorial of how to play on a song on guitar", "video_id": "video10138", "sen_id": 214820}, {"caption": "a guitar fretboard is shows while a girl talks about playing it", "video_id": "video10138", "sen_id": 214821}, {"caption": "a girl is explaining her tutorial for a song using the optional cords or repeating cords", "video_id": "video10138", "sen_id": 214822}, {"caption": "there is a person holding a guitar chord and then there are words shown", "video_id": "video10138", "sen_id": 214823}, {"caption": "a girl is giving a tutorial on how to play a certain song on guitar", "video_id": "video10138", "sen_id": 214824}, {"caption": "a tutorial showing how to play the guitar", "video_id": "video10138", "sen_id": 214825}, {"caption": "a young girl describes her method for playing the guitar", "video_id": "video10138", "sen_id": 214826}, {"caption": "a women is holding a guitar in hand and playing it", "video_id": "video10138", "sen_id": 214827}, {"caption": "a girl demonstrates how to play the guitar in a how-to video", "video_id": "video10138", "sen_id": 214828}, {"caption": "a girl with guitar in her hand speaking on screen and explaining", "video_id": "video10138", "sen_id": 214829}, {"caption": "one girl is holding guitar in hand is learning to play", "video_id": "video10138", "sen_id": 214830}, {"caption": "a girl is playing a guitar and singing a song", "video_id": "video10138", "sen_id": 214831}, {"caption": "a man playing the guitar and notes are displayed on the screen", "video_id": "video10138", "sen_id": 214832}, {"caption": "a young woman teaches how to play guitar chords as part of a lesson", "video_id": "video10138", "sen_id": 214833}, {"caption": "a girl with guitar in his hand showing", "video_id": "video10138", "sen_id": 214834}, {"caption": "there is a guitarist playing preparing to play", "video_id": "video10138", "sen_id": 214835}, {"caption": "a woman is giving tutorial on playing song on guitar", "video_id": "video10138", "sen_id": 214836}, {"caption": "someone is showing instructions on how to play a guitar", "video_id": "video10138", "sen_id": 214837}, {"caption": "a girl is giving a tutorial on how to play the guitar and sing a song", "video_id": "video10138", "sen_id": 214838}, {"caption": "a woman is giving a tutorial on playing a guitar", "video_id": "video10138", "sen_id": 214839}, {"caption": "a woman in a polka dot bikini wading in clear blue water", "video_id": "video10644", "sen_id": 214840}, {"caption": "a blonde woman in a bikini walking on a beach and then standing in water", "video_id": "video10644", "sen_id": 214841}, {"caption": "music is playing while a woman walks on a beach in a bikini", "video_id": "video10644", "sen_id": 214842}, {"caption": "a white woman walking in the water on a beach", "video_id": "video10644", "sen_id": 214843}, {"caption": "a white chick in a bikini walking on the beach", "video_id": "video10644", "sen_id": 214844}, {"caption": "a woman is walking around on the beach and in the water", "video_id": "video10644", "sen_id": 214845}, {"caption": "a woman in a pink and white bikini walks along the beach and swims in the ocean", "video_id": "video10644", "sen_id": 214846}, {"caption": "girls in bikinis are frolicking at a clear water beach", "video_id": "video10644", "sen_id": 214847}, {"caption": "a woman in a bikini makes seductive poses on a beach", "video_id": "video10644", "sen_id": 214848}, {"caption": "a blond woman in a bikini on a beach and in the water", "video_id": "video10644", "sen_id": 214849}, {"caption": "there is a woman walking in a bra", "video_id": "video10644", "sen_id": 214850}, {"caption": "rock music playing over shots of a girl in swim wear walking down a beach", "video_id": "video10644", "sen_id": 214851}, {"caption": "a woman in a bikini plays in the ocean and walks along a beach", "video_id": "video10644", "sen_id": 214852}, {"caption": "the beautiful girl in two piece swim suit is singing and dancing in the beach", "video_id": "video10644", "sen_id": 214853}, {"caption": "a bikini model on the sea shore for the photo shoot", "video_id": "video10644", "sen_id": 214854}, {"caption": "a blonde haired woman on a beach and in the water wearing a bikini", "video_id": "video10644", "sen_id": 214855}, {"caption": "a lady wear in swiming dress and go to swiming", "video_id": "video10644", "sen_id": 214856}, {"caption": "it is a girl wading into the water in a bikini", "video_id": "video10644", "sen_id": 214857}, {"caption": "a model is wearing a two piece bathing suit while walking in the ocean", "video_id": "video10644", "sen_id": 214858}, {"caption": "a model walking on the beach and in the water wearing a bikini", "video_id": "video10644", "sen_id": 214859}, {"caption": "a man in a white t-shirt gesticulating wildly with his hands", "video_id": "video10641", "sen_id": 214860}, {"caption": "a young man in a tee shirt gives a motivational message while hand jiving", "video_id": "video10641", "sen_id": 214861}, {"caption": "a man is doing handmotions in his room in front of a poster", "video_id": "video10641", "sen_id": 214862}, {"caption": "a guy demonstrating a hand dance technique on himself", "video_id": "video10641", "sen_id": 214863}, {"caption": "a guy tries to be inspirational as he does a few hand based dance moves", "video_id": "video10641", "sen_id": 214864}, {"caption": "an inspirational message telling kids not to limit themselves that they can all be superheros", "video_id": "video10641", "sen_id": 214865}, {"caption": "a guy does some dance moves while trying to be inspirational", "video_id": "video10641", "sen_id": 214866}, {"caption": "a white t-shirt man doing some steps in a room", "video_id": "video10641", "sen_id": 214867}, {"caption": "a young man in a white t-shirt moves his elbows wrists and fingers in angled and twisted robotic gestures", "video_id": "video10641", "sen_id": 214868}, {"caption": "a man is doing some thing inhis hand action", "video_id": "video10641", "sen_id": 214869}, {"caption": "young man showing how to dance in a video filmed at home", "video_id": "video10641", "sen_id": 214870}, {"caption": "a guy in a red hat is talking about something", "video_id": "video10641", "sen_id": 214871}, {"caption": "a men explainging car is displayed with its features", "video_id": "video10641", "sen_id": 214872}, {"caption": "a young boy in white showing some handsome skills with hands", "video_id": "video10641", "sen_id": 214873}, {"caption": "a youngman discusses not limiting yourself and shows dance moves", "video_id": "video10641", "sen_id": 214874}, {"caption": "guy in white tshirt showing his dancing skills with his hand", "video_id": "video10641", "sen_id": 214875}, {"caption": "strobe teaches how to tutu with his hands is a small video clip", "video_id": "video10641", "sen_id": 214876}, {"caption": "learn tutting from strobe subscribe status silver boy funs", "video_id": "video10641", "sen_id": 214877}, {"caption": "a man in white t-shirt is doing something like dance steps", "video_id": "video10641", "sen_id": 214878}, {"caption": "the man in the white shirt uses his hands to gesture while he is talking", "video_id": "video10641", "sen_id": 214879}, {"caption": "a woman and a man are standing in a field having a conversation", "video_id": "video12394", "sen_id": 214880}, {"caption": "a scene from a romance movie in a foreign film", "video_id": "video12394", "sen_id": 214881}, {"caption": "man and woman talking on a grassy hill", "video_id": "video12394", "sen_id": 214882}, {"caption": "a woman is having an argument with a man outside in a field", "video_id": "video12394", "sen_id": 214883}, {"caption": "a young woman and young man standing in a grassy field", "video_id": "video12394", "sen_id": 214884}, {"caption": "a man and a woman speak to each other in a field", "video_id": "video12394", "sen_id": 214885}, {"caption": "a man and a woman have a heated conversation in a grassy field", "video_id": "video12394", "sen_id": 214886}, {"caption": "a young man and young woman have a serious conversation in a very grassy field", "video_id": "video12394", "sen_id": 214887}, {"caption": "a man and woman talking by a hillside", "video_id": "video12394", "sen_id": 214888}, {"caption": "a man and a woman have a discussion in a field full of tall yellow grass", "video_id": "video12394", "sen_id": 214889}, {"caption": "a man in a yellow shirt is talking with a woman in a white shirt", "video_id": "video12394", "sen_id": 214890}, {"caption": "two young adults standing next to each other and having a conversation", "video_id": "video12394", "sen_id": 214891}, {"caption": "a man in a yellow shirt and a woman are talking in a field", "video_id": "video12394", "sen_id": 214892}, {"caption": "a hispanic woman and man in a tv show speaking spanish", "video_id": "video12394", "sen_id": 214893}, {"caption": "a guy is having a conversation with his chica", "video_id": "video12394", "sen_id": 214894}, {"caption": "a woman is standing in a field talking to another man wearing a yellow shirt", "video_id": "video12394", "sen_id": 214895}, {"caption": "guy and women talking to each other in fields", "video_id": "video12394", "sen_id": 214896}, {"caption": "a man and a woman are speaking in spanish and talking rather passionately", "video_id": "video12394", "sen_id": 214897}, {"caption": "two foreign people acting in a scene", "video_id": "video12394", "sen_id": 214898}, {"caption": "a woman is talking to a man in a field", "video_id": "video12394", "sen_id": 214899}, {"caption": "a man in a sports coat is giving a lecture to an audience", "video_id": "video10250", "sen_id": 214900}, {"caption": "a man giving a seminar on making yourself better", "video_id": "video10250", "sen_id": 214901}, {"caption": "a man gives a presentation on paradoxes in front of an audience", "video_id": "video10250", "sen_id": 214902}, {"caption": "a man iwearing glasses n a gray suit that has gray hair addresses a crowd of people in an aditorium", "video_id": "video10250", "sen_id": 214903}, {"caption": "a man is giving a speech", "video_id": "video10250", "sen_id": 214904}, {"caption": "a man explians how technological tools are only as useful as the principles guiding their users", "video_id": "video10250", "sen_id": 214905}, {"caption": "there is a suit man talking on the stage", "video_id": "video10250", "sen_id": 214906}, {"caption": "an older gentleman in a grey suit coat white shirt and glasses is giving a speech titled get comfortable by paradox explaining the key principles", "video_id": "video10250", "sen_id": 214907}, {"caption": "a man wearing brown dress explaining about something", "video_id": "video10250", "sen_id": 214908}, {"caption": "in an auditorium a well dressed presenter talks to an audience about key engagement principles", "video_id": "video10250", "sen_id": 214909}, {"caption": "a man in grey over coat is saying something to the crowd", "video_id": "video10250", "sen_id": 214910}, {"caption": "a man standing in front of people doing a lecture", "video_id": "video10250", "sen_id": 214911}, {"caption": "the man dressed in the suit coat talks on the stage", "video_id": "video10250", "sen_id": 214912}, {"caption": "a stage with an older white man in a dress shirt and a suit jacket addressing an audience", "video_id": "video10250", "sen_id": 214913}, {"caption": "a guy in a grey siut talks to an auditorium full of people", "video_id": "video10250", "sen_id": 214914}, {"caption": "a person explaining a concept in a show infront of all people on stage", "video_id": "video10250", "sen_id": 214915}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10250", "sen_id": 214916}, {"caption": "a lecture is being given on paradoxes in life", "video_id": "video10250", "sen_id": 214917}, {"caption": "a man lectures to a large crowd in a darkened room on paradoxes", "video_id": "video10250", "sen_id": 214918}, {"caption": "a man on the stage telling something to the people", "video_id": "video10250", "sen_id": 214919}, {"caption": "bikers doing bike tricks down the street at night while the cops chase them", "video_id": "video10810", "sen_id": 214920}, {"caption": "a group of motorcyclists doing tricks at night on a freeway", "video_id": "video10810", "sen_id": 214921}, {"caption": "several motorcyclists are riding around in a city at night and the cops pull up", "video_id": "video10810", "sen_id": 214922}, {"caption": "motorcycle dash camera showing riders doing tricks at night", "video_id": "video10810", "sen_id": 214923}, {"caption": "many people on motorcycles are shown racing each other", "video_id": "video10810", "sen_id": 214924}, {"caption": "a biker on red bike is doing a wheelie while other bikers zoom past him", "video_id": "video10810", "sen_id": 214925}, {"caption": "a bunch of bikers cruising on the highway one performs a wheelie", "video_id": "video10810", "sen_id": 214926}, {"caption": "a group of motorcyclists at night performing stunts while driving", "video_id": "video10810", "sen_id": 214927}, {"caption": "a group of motorcycle riders do a series of illegal tricks on a major highway", "video_id": "video10810", "sen_id": 214928}, {"caption": "several motorcycles are being shown riding on a road when a cop appears and scares them", "video_id": "video10810", "sen_id": 214929}, {"caption": "a group of motorcyclists riding and doing tricks at night", "video_id": "video10810", "sen_id": 214930}, {"caption": "several motorcyclists are riding around and doing different tricks at night", "video_id": "video10810", "sen_id": 214931}, {"caption": "a group of motorcyclists one of which is doing tricks while going at a high rate of speed", "video_id": "video10810", "sen_id": 214932}, {"caption": "a group of motorcycle riders move along at night doing tricks", "video_id": "video10810", "sen_id": 214933}, {"caption": "a motorcyclist stands up on his motorcycle and pops a wheelie", "video_id": "video10810", "sen_id": 214934}, {"caption": "there is a man riding bike dangerously in to the street", "video_id": "video10810", "sen_id": 214935}, {"caption": "movie scene from a tamil movie two mens are talking", "video_id": "video10810", "sen_id": 214936}, {"caption": "the bike racers running the race and the road", "video_id": "video10810", "sen_id": 214937}, {"caption": "some people are doing stunts on their bike at a busy highway", "video_id": "video10810", "sen_id": 214938}, {"caption": "numerous riders are on crotch rockets doing tricks in traffic and then a police siren is heard", "video_id": "video10810", "sen_id": 214939}, {"caption": "a man in a dark blue suit talking about stocks and shares", "video_id": "video11585", "sen_id": 214940}, {"caption": "a man talking about saving and security with cisco", "video_id": "video11585", "sen_id": 214941}, {"caption": "two men in a television studio discuss technology", "video_id": "video11585", "sen_id": 214942}, {"caption": "a man in a blue shirt is watching another man advertise on cisco products on a tv", "video_id": "video11585", "sen_id": 214943}, {"caption": "a financial analyst gives his opinions on the future of a financial market", "video_id": "video11585", "sen_id": 214944}, {"caption": "a financial analyst talking about cisco on profit for the next decade", "video_id": "video11585", "sen_id": 214945}, {"caption": "there is an old man in a suit and plaid collared shirt in front of a picture of the cisco logo moving his hand and talking", "video_id": "video11585", "sen_id": 214946}, {"caption": "kramer the financial guru has a guest on his show who talks about an investment opportunity", "video_id": "video11585", "sen_id": 214947}, {"caption": "a man wearing a suit and speaking to the camera", "video_id": "video11585", "sen_id": 214948}, {"caption": "a man speaking about profits and savings for a company in the future", "video_id": "video11585", "sen_id": 214949}, {"caption": "a persona talking about the cisco", "video_id": "video11585", "sen_id": 214950}, {"caption": "a man is talking about financial issues on cisco", "video_id": "video11585", "sen_id": 214951}, {"caption": "cisco one old man talks about something in", "video_id": "video11585", "sen_id": 214952}, {"caption": "a person is seeing the another person who was explaining about the profit of the cisco company", "video_id": "video11585", "sen_id": 214953}, {"caption": "a man in a plaid shirt talks about financial matters", "video_id": "video11585", "sen_id": 214954}, {"caption": "a man is talking about serious matter simply and briefly", "video_id": "video11585", "sen_id": 214955}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video11585", "sen_id": 214956}, {"caption": "cisco appears to be interviewing a who man explains the profits to be gained over the next decade", "video_id": "video11585", "sen_id": 214957}, {"caption": "a man reading the news on the channel", "video_id": "video11585", "sen_id": 214958}, {"caption": "some body standing there the other one in a tv interact with him", "video_id": "video11585", "sen_id": 214959}, {"caption": "a hand moves a purplish-blue balloon from a bathroom sink to over a flame which turns the bottom black without popping the balloon", "video_id": "video11481", "sen_id": 214960}, {"caption": "a man pouring water to the balloon and holding the balloon to the flame", "video_id": "video11481", "sen_id": 214961}, {"caption": "a man is conducting an experiment with a balloon and a candle", "video_id": "video11481", "sen_id": 214962}, {"caption": "a person is holding a purple water-filled balloon over a candle explaining that the water prevents the balloon from popping", "video_id": "video11481", "sen_id": 214963}, {"caption": "purple balloon filled with water is being held over a candle flame", "video_id": "video11481", "sen_id": 214964}, {"caption": "there is a ball touching the candle with fire", "video_id": "video11481", "sen_id": 214965}, {"caption": "a man holding a purple balloon above the flame of a candle", "video_id": "video11481", "sen_id": 214966}, {"caption": "a balloon filled with water held over a flame of a candle will not bust because the water cools the balloon", "video_id": "video11481", "sen_id": 214967}, {"caption": "a man holding blue color baloon into light baloon get efected displaying on screen", "video_id": "video11481", "sen_id": 214968}, {"caption": "a demonstration of how a balloon that is filled with water wont pop over a flame because the water keeps it cool", "video_id": "video11481", "sen_id": 214969}, {"caption": "a man holds a purple balloon on top of a candle flame", "video_id": "video11481", "sen_id": 214970}, {"caption": "a purple color balloon is heated with by a handle flamethen its color is changed in to black", "video_id": "video11481", "sen_id": 214971}, {"caption": "a person places a balloon over a burning candle to show the results", "video_id": "video11481", "sen_id": 214972}, {"caption": "a blue balloon filled with water that is putted in a flame but is not ignited because the water contained inside the balloon", "video_id": "video11481", "sen_id": 214973}, {"caption": "man demonstrates and describes what happens when a purple balloon filled with water is held over a lit candle and even lowered directly into the flame", "video_id": "video11481", "sen_id": 214974}, {"caption": "a ball showed on a handle which is fire", "video_id": "video11481", "sen_id": 214975}, {"caption": "a balloon is held over a lit candle the balloon does not pop", "video_id": "video11481", "sen_id": 214976}, {"caption": "a person holds a balloon over a candle flame", "video_id": "video11481", "sen_id": 214977}, {"caption": "a man shows a cool trick with a water balloon and fire", "video_id": "video11481", "sen_id": 214978}, {"caption": "a peerson is making some scientific experimenat with balloon and he is putting some thing inside the balloon and he is showing balloon to a fire", "video_id": "video11481", "sen_id": 214979}, {"caption": "a mens two on two bat mitten competition", "video_id": "video10170", "sen_id": 214980}, {"caption": "a swing is missed in a doubles tennis game", "video_id": "video10170", "sen_id": 214981}, {"caption": "there is a couples badminton contest between a blue clad team and a yellow clad team they are vollowing the birdie back and forth", "video_id": "video10170", "sen_id": 214982}, {"caption": "four players are shown playing badminton while commentators are speaking about the game", "video_id": "video10170", "sen_id": 214983}, {"caption": "two teams playing ranking match of a version of tennis", "video_id": "video10170", "sen_id": 214984}, {"caption": "four males play a doubles match in tennis while commentators review slow-motion replays", "video_id": "video10170", "sen_id": 214985}, {"caption": "two teams of two athletes battle against each other in a tennis tournament", "video_id": "video10170", "sen_id": 214986}, {"caption": "two players are playing badminton match watched by crowd", "video_id": "video10170", "sen_id": 214987}, {"caption": "four men are playing doubles in a tennis like event", "video_id": "video10170", "sen_id": 214988}, {"caption": "four men play a badmitton match in a stadium in front of many people", "video_id": "video10170", "sen_id": 214989}, {"caption": "professional game of badminton with commentators talking both teams are male one is wearing yellow the other is in blue", "video_id": "video10170", "sen_id": 214990}, {"caption": "some people are playing badminton on a court", "video_id": "video10170", "sen_id": 214991}, {"caption": "two man teams playing tennis one team is yellow and the othere is blue", "video_id": "video10170", "sen_id": 214992}, {"caption": " one in yellow and one in blue volley a shuttlecock back and forth on a court", "video_id": "video10170", "sen_id": 214993}, {"caption": "a doubles shuttle match is played between two teams with referre beside", "video_id": "video10170", "sen_id": 214994}, {"caption": "badminton player in black and yellow shorts playing doubles against each other in a match", "video_id": "video10170", "sen_id": 214995}, {"caption": "some people are playing tennis outside on a court", "video_id": "video10170", "sen_id": 214996}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10170", "sen_id": 214997}, {"caption": "the doubles badminton match rally between the players with blue shirt and yellow is seen", "video_id": "video10170", "sen_id": 214998}, {"caption": "blue shirt and yellow t shirt wearing players playing batmanton game inside stadium", "video_id": "video10170", "sen_id": 214999}, {"caption": "a black man is singing in a music video", "video_id": "video12810", "sen_id": 215000}, {"caption": "a music video focuses on a black family and their relationship", "video_id": "video12810", "sen_id": 215001}, {"caption": "people sing of how their parents made sacrifices for them", "video_id": "video12810", "sen_id": 215002}, {"caption": "michael jackson is shown singing with his brothers in a music video", "video_id": "video12810", "sen_id": 215003}, {"caption": "smokey robinson singing a song in a music video", "video_id": "video12810", "sen_id": 215004}, {"caption": "a young black male artist performs in a music video", "video_id": "video12810", "sen_id": 215005}, {"caption": "a family of african people sing and dance in various locations", "video_id": "video12810", "sen_id": 215006}, {"caption": "a man consoles his daughter and a group is having fun", "video_id": "video12810", "sen_id": 215007}, {"caption": "a man sits and hugs a little girl then a family sits together outside", "video_id": "video12810", "sen_id": 215008}, {"caption": "black male singer dancing and singing in the music video", "video_id": "video12810", "sen_id": 215009}, {"caption": "there are many parents sitting in the chair holding their children", "video_id": "video12810", "sen_id": 215010}, {"caption": "a group of black people look at each other and celebrate", "video_id": "video12810", "sen_id": 215011}, {"caption": "a group of people were singing a song", "video_id": "video12810", "sen_id": 215012}, {"caption": "a trailer of an album sung by a male person", "video_id": "video12810", "sen_id": 215013}, {"caption": "male singer dancing and singing in his music video", "video_id": "video12810", "sen_id": 215014}, {"caption": "there is a man singing with a group of people", "video_id": "video12810", "sen_id": 215015}, {"caption": "the love of the family revealing in the video secssion", "video_id": "video12810", "sen_id": 215016}, {"caption": "a large african family works together to sing a song", "video_id": "video12810", "sen_id": 215017}, {"caption": "a man is singing a song and group people listing it", "video_id": "video12810", "sen_id": 215018}, {"caption": "a man is singing a song with other people", "video_id": "video12810", "sen_id": 215019}, {"caption": "a female singer on stage singing her song while dancing with her dancers", "video_id": "video10763", "sen_id": 215020}, {"caption": "a group of people are dancing together on the floor", "video_id": "video10763", "sen_id": 215021}, {"caption": "a singer and her dancers perform in front a a live audience", "video_id": "video10763", "sen_id": 215022}, {"caption": "a band is dancing on stage wearing shiny clothes", "video_id": "video10763", "sen_id": 215023}, {"caption": "a female performer is singing and dancing accompanied with dancer crew on stage", "video_id": "video10763", "sen_id": 215024}, {"caption": "a singer in silver suit singing song and dancing on stage", "video_id": "video10763", "sen_id": 215025}, {"caption": "a woman is singing and preforming on a stage with dancers", "video_id": "video10763", "sen_id": 215026}, {"caption": "one girl singing with boys in big stage near crowd", "video_id": "video10763", "sen_id": 215027}, {"caption": "a musical show is going and some are dancing and singing in an auditorium", "video_id": "video10763", "sen_id": 215028}, {"caption": "a band is playing a concert for their fans", "video_id": "video10763", "sen_id": 215029}, {"caption": "all persons are dancing and singing in an event", "video_id": "video10763", "sen_id": 215030}, {"caption": "the woman sings and dances on the stage wtih a mic near her mouth", "video_id": "video10763", "sen_id": 215031}, {"caption": "the girl perfoms the song and dances on stage", "video_id": "video10763", "sen_id": 215032}, {"caption": "sexy brunette singer dancing and singing live on stage", "video_id": "video10763", "sen_id": 215033}, {"caption": "a group of people are perfomring for a crowd", "video_id": "video10763", "sen_id": 215034}, {"caption": "there is a stage show and sing a song", "video_id": "video10763", "sen_id": 215035}, {"caption": "a lady is seen performing live on stage and the co artists are seeing dancing with her", "video_id": "video10763", "sen_id": 215036}, {"caption": "a dance show in which the girl sings song in the mike the stage reflects the blue olor", "video_id": "video10763", "sen_id": 215037}, {"caption": "a women is singing on stage while back dancers are dancing on stage", "video_id": "video10763", "sen_id": 215038}, {"caption": "some people in silver jackets are moving around", "video_id": "video10763", "sen_id": 215039}, {"caption": "a chef is going to show us how to prepare red indian curry", "video_id": "video12255", "sen_id": 215040}, {"caption": "a man in a kitchen is going to make indian red curry", "video_id": "video12255", "sen_id": 215041}, {"caption": "a chef is wearing a red suit and talking about food", "video_id": "video12255", "sen_id": 215042}, {"caption": "a male indian chef describes a recipe that he is about to prepare", "video_id": "video12255", "sen_id": 215043}, {"caption": "a man in a red shirt is standing in a kitchen talking about indian red curry", "video_id": "video12255", "sen_id": 215044}, {"caption": "a thick stew is shown as a man in a red shirt talks in a kitchen", "video_id": "video12255", "sen_id": 215045}, {"caption": "a man with an orange shirt talking about an indian dish", "video_id": "video12255", "sen_id": 215046}, {"caption": "a man in a red chef's shirt is getting ready to teach how to make red curry", "video_id": "video12255", "sen_id": 215047}, {"caption": "man in red chef's outfit standing in a kitchen showing how to cook a meal", "video_id": "video12255", "sen_id": 215048}, {"caption": "a chef talks about a meat dish that he has prepared and displayed in a white bowl", "video_id": "video12255", "sen_id": 215049}, {"caption": "a man in an orange button down uniform is describing food", "video_id": "video12255", "sen_id": 215050}, {"caption": "the video starts with a curry in a bowl and bread on the side a man in a red shirt starts speaking about the curry", "video_id": "video12255", "sen_id": 215051}, {"caption": "a close up view of some food and a man talking about it", "video_id": "video12255", "sen_id": 215052}, {"caption": "meaty bones sit in a square white dish with brown gravy next to rolled flat bread while a chef in an orange jacket greets with hands together from his kitchen", "video_id": "video12255", "sen_id": 215053}, {"caption": "a man is showing how to make indian red curry", "video_id": "video12255", "sen_id": 215054}, {"caption": "there is a chicken dish on the table", "video_id": "video12255", "sen_id": 215055}, {"caption": "a man wearing red is going to show the viewer how to make indian red curry", "video_id": "video12255", "sen_id": 215056}, {"caption": "a white bowl full of curry and chapathi and master chef explaining about the dish", "video_id": "video12255", "sen_id": 215057}, {"caption": "someone is talking about the indian non veg curry and how to prepare it", "video_id": "video12255", "sen_id": 215058}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12255", "sen_id": 215059}, {"caption": "a man giving instructions on cooking the meal in the video", "video_id": "video10226", "sen_id": 215060}, {"caption": "a man describing how to prepare the meal", "video_id": "video10226", "sen_id": 215061}, {"caption": "a man cooking mushrooms in a frying pan", "video_id": "video10226", "sen_id": 215062}, {"caption": "a chef discusses a recipe that he is preparing in a small skillet", "video_id": "video10226", "sen_id": 215063}, {"caption": "a man cooking mushrooms with butter and talking about how to make it", "video_id": "video10226", "sen_id": 215064}, {"caption": "mushrooms in sauce are being cooked using a stainless steel pan and wooden spoon", "video_id": "video10226", "sen_id": 215065}, {"caption": "a tawa cashew are cooking deeply and paneer mixed on it", "video_id": "video10226", "sen_id": 215066}, {"caption": "a man is heating pan and saute with an ingredient", "video_id": "video10226", "sen_id": 215067}, {"caption": "in pan something is added it looks like mushroom then they added water to it", "video_id": "video10226", "sen_id": 215068}, {"caption": "in a saucepan a man is sauteing mushrooms and giving cooking instructions", "video_id": "video10226", "sen_id": 215069}, {"caption": "there is a man making a dish with cheese", "video_id": "video10226", "sen_id": 215070}, {"caption": "few cashew nuts was fried in the pan and cheese put into it", "video_id": "video10226", "sen_id": 215071}, {"caption": "a man stirs mushrooms in a hot sauce with juice", "video_id": "video10226", "sen_id": 215072}, {"caption": "it is someone cooking mushrooms in a pan", "video_id": "video10226", "sen_id": 215073}, {"caption": "a person is cooking chicken with some butter", "video_id": "video10226", "sen_id": 215074}, {"caption": "there is a man making a dish with oil", "video_id": "video10226", "sen_id": 215075}, {"caption": "man cooking a pan of mushrooms and adds butter", "video_id": "video10226", "sen_id": 215076}, {"caption": "a chef demonstrates and describes a mushroom recipe he is working on", "video_id": "video10226", "sen_id": 215077}, {"caption": "a guy in a kitchen is cooking mushrooms is a big stainless steel pan", "video_id": "video10226", "sen_id": 215078}, {"caption": "a person is pouring stuff on walnuts", "video_id": "video10226", "sen_id": 215079}, {"caption": "two people walking down a white hallway touching the walls", "video_id": "video10912", "sen_id": 215080}, {"caption": "there are two friends dancing in a corridoor", "video_id": "video10912", "sen_id": 215081}, {"caption": "two people are dancing in a hallway to justin beiber", "video_id": "video10912", "sen_id": 215082}, {"caption": "a girl and a guy sings a song and dances together by leaning on the side wall of the house", "video_id": "video10912", "sen_id": 215083}, {"caption": "two people walks down a narrow hall dancing", "video_id": "video10912", "sen_id": 215084}, {"caption": "couple walking into the room doing various poses for the camera", "video_id": "video10912", "sen_id": 215085}, {"caption": "two people dancing in and out of doors in a narrow hallway for a music video", "video_id": "video10912", "sen_id": 215086}, {"caption": "two people are performing different dance moves as they go down a hallway", "video_id": "video10912", "sen_id": 215087}, {"caption": "the person is singing the song and other two couples are in romance", "video_id": "video10912", "sen_id": 215088}, {"caption": "two friends are having fun in the room", "video_id": "video10912", "sen_id": 215089}, {"caption": "a men and a women are playing in a gallery making different poses", "video_id": "video10912", "sen_id": 215090}, {"caption": "two young dancers perform in the small hallway space", "video_id": "video10912", "sen_id": 215091}, {"caption": "a man and woman come from a bedroom moving and walking down a hallway to a justin beaber song", "video_id": "video10912", "sen_id": 215092}, {"caption": "a man tries to stop a woman from passing him in a hallway", "video_id": "video10912", "sen_id": 215093}, {"caption": "two young dancers repeatedly move and pause along a white hallway to a pop music song", "video_id": "video10912", "sen_id": 215094}, {"caption": "a person is talking towards a man in a hallway", "video_id": "video10912", "sen_id": 215095}, {"caption": "a ldy dancing and a man following her", "video_id": "video10912", "sen_id": 215096}, {"caption": "a man and woman dancing to a song down the hallway", "video_id": "video10912", "sen_id": 215097}, {"caption": "a young man in shirt and tshirt and woman in tank top dance in hallway of house", "video_id": "video10912", "sen_id": 215098}, {"caption": "a man and a women dancing to some song", "video_id": "video10912", "sen_id": 215099}, {"caption": "man talking about marijuana dispensaries and security", "video_id": "video11378", "sen_id": 215100}, {"caption": "several clips of the security being implemented in a particular state", "video_id": "video11378", "sen_id": 215101}, {"caption": "marijuana is being prepared by hand a trimmed then put in buckets", "video_id": "video11378", "sen_id": 215102}, {"caption": "a pot shop is being showed case to show how weed is made in colorado", "video_id": "video11378", "sen_id": 215103}, {"caption": "guards are used to protect the product of marijuana dispensaries in colorado", "video_id": "video11378", "sen_id": 215104}, {"caption": "people working in a marijuana dispenary in colorado", "video_id": "video11378", "sen_id": 215105}, {"caption": "a man describing the number of dispensaries as the images transition to marijuana being loaded into plastic containers", "video_id": "video11378", "sen_id": 215106}, {"caption": "a man talks about providing security to legal marijuana dispensaries in colorado", "video_id": "video11378", "sen_id": 215107}, {"caption": "a man in a suit is speaking followed by police officers raiding a dispensary and people trimming marijuana", "video_id": "video11378", "sen_id": 215108}, {"caption": "a marijuana dispensary in denver colorado is processing and packaging their product", "video_id": "video11378", "sen_id": 215109}, {"caption": "a man wearing a suit and tie with a mustache uses video clips and photo stills to discuss the budding marijuana industry", "video_id": "video11378", "sen_id": 215110}, {"caption": "a man with beard and black suit is talking to somebody in office", "video_id": "video11378", "sen_id": 215111}, {"caption": "a person with black coat is speaking by sitting in the office as other persons are walking", "video_id": "video11378", "sen_id": 215112}, {"caption": "there is a suit man talking from the studio", "video_id": "video11378", "sen_id": 215113}, {"caption": "marijuana dispensaries in colorado and the steps taken to keep them safe are discussed", "video_id": "video11378", "sen_id": 215114}, {"caption": "a man is telling something about starbucks and then police entering into a room", "video_id": "video11378", "sen_id": 215115}, {"caption": "there is a suit man talking in front of a wall", "video_id": "video11378", "sen_id": 215116}, {"caption": "a man in a suit talks about dispensaries in colorado", "video_id": "video11378", "sen_id": 215117}, {"caption": "few people are packing medicine and putting into baskets and one person bringing baskets", "video_id": "video11378", "sen_id": 215118}, {"caption": "a man is speaking about colorado marijuana", "video_id": "video11378", "sen_id": 215119}, {"caption": "a motorcyclist accidentally sees a naked man who is trying on expensive clothes a naked man accidentally exposes himself to another man riding a motorcycle while trying on clothes", "video_id": "video12953", "sen_id": 215120}, {"caption": "this is a movie clip with a woman in a closet", "video_id": "video12953", "sen_id": 215121}, {"caption": "a black woman opens a garage to show a man a rack of clothes", "video_id": "video12953", "sen_id": 215122}, {"caption": "a woman and a man changing clothes in a storage unit", "video_id": "video12953", "sen_id": 215123}, {"caption": "a man tries on clothes that are being stored in a storage facility", "video_id": "video12953", "sen_id": 215124}, {"caption": "a man trying on clothes in a store is surprised by a woman's boyfriend", "video_id": "video12953", "sen_id": 215125}, {"caption": "tom hanks talks to a woman in a room full of clothing", "video_id": "video12953", "sen_id": 215126}, {"caption": "a man tries to put on clothes with a woman as a man drives up on a motorcycle", "video_id": "video12953", "sen_id": 215127}, {"caption": "a movie preview plays with an annoying celebrity gossip banner underneath", "video_id": "video12953", "sen_id": 215128}, {"caption": "a new tom hanks film is being promoted in an entertainment editorial program", "video_id": "video12953", "sen_id": 215129}, {"caption": "a woman in a giant store room of clothes a man undresses and another man pulls up on a motorcycle", "video_id": "video12953", "sen_id": 215130}, {"caption": "a man and a women going through a storage locker and the man starts to change his clothing", "video_id": "video12953", "sen_id": 215131}, {"caption": "there is a good looking man with bike and helmet", "video_id": "video12953", "sen_id": 215132}, {"caption": "women opening the shop and both the man and the women go into the shop and choose some clothes for them", "video_id": "video12953", "sen_id": 215133}, {"caption": "a man and woman go through a storage locker full of clothes looking for an outfit", "video_id": "video12953", "sen_id": 215134}, {"caption": "there is a man handsome guy with bike and helmet", "video_id": "video12953", "sen_id": 215135}, {"caption": "a woman and tom hanks discuss the fact that he can be cool", "video_id": "video12953", "sen_id": 215136}, {"caption": "a movie trailer shows various scenes from a movie", "video_id": "video12953", "sen_id": 215137}, {"caption": "tom hanks is asked to take his pants off as a girl s boyfriend arrives on the scene", "video_id": "video12953", "sen_id": 215138}, {"caption": "a women is opening gate of a clothing shop and searching for some clothes", "video_id": "video12953", "sen_id": 215139}, {"caption": "a screen of a video game with various players discussing things with one another over a microphone", "video_id": "video10693", "sen_id": 215140}, {"caption": "a man talks about a video game that he is getting ready to play with friends", "video_id": "video10693", "sen_id": 215141}, {"caption": "a man discusses a video game with a group of other players", "video_id": "video10693", "sen_id": 215142}, {"caption": "a call of duty commentary clip from youtube", "video_id": "video10693", "sen_id": 215143}, {"caption": "we see a lobby for a first person shooter game with a spinning globe in the background", "video_id": "video10693", "sen_id": 215144}, {"caption": "a person is talking while a graphic is displayed", "video_id": "video10693", "sen_id": 215145}, {"caption": "a man describes a video game that he is getting ready to play with friends", "video_id": "video10693", "sen_id": 215146}, {"caption": "it is a lobby list full of gamers speaking with each other there is a big f logo in the middle possibly the gaming organization fnatic", "video_id": "video10693", "sen_id": 215147}, {"caption": "a chart with stats for a game and a team logo", "video_id": "video10693", "sen_id": 215148}, {"caption": "a man demonstrates and describes a video game he is getting ready to play", "video_id": "video10693", "sen_id": 215149}, {"caption": "people are talking to each over a live gaming system about ghosts", "video_id": "video10693", "sen_id": 215150}, {"caption": "there is something impressing matters going on", "video_id": "video10693", "sen_id": 215151}, {"caption": "the men tell and analyist the fluctaution of the market research", "video_id": "video10693", "sen_id": 215152}, {"caption": "players online are speaking about the authenticity of spirits in the material world", "video_id": "video10693", "sen_id": 215153}, {"caption": "people talking while a list is being displayed on a screen", "video_id": "video10693", "sen_id": 215154}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10693", "sen_id": 215155}, {"caption": "animated game of racing dashboard is shown with the options", "video_id": "video10693", "sen_id": 215156}, {"caption": "people talking through an on-line video game vulgarly talk about ghosts", "video_id": "video10693", "sen_id": 215157}, {"caption": "a group of people inside of a game lobby is discussing the possibility of ghosts", "video_id": "video10693", "sen_id": 215158}, {"caption": "a person is browsing lobbies in a game", "video_id": "video10693", "sen_id": 215159}, {"caption": "a man talking about ingredients being used to prepare a meal", "video_id": "video12106", "sen_id": 215160}, {"caption": "meat marinates in a bowl as a woman shares what she used and alternatives you might add", "video_id": "video12106", "sen_id": 215161}, {"caption": "a woman discussing how to marinate the meat in a glass bowl", "video_id": "video12106", "sen_id": 215162}, {"caption": "meat in a glass bowl marinating and being flipped by a man", "video_id": "video12106", "sen_id": 215163}, {"caption": "person is turning raw chicken pieces in a bowl with marinade", "video_id": "video12106", "sen_id": 215164}, {"caption": "man marinates meat in different spices and sauce adds it to a bowl before cooking", "video_id": "video12106", "sen_id": 215165}, {"caption": "person is picking up meat that ha been marinated", "video_id": "video12106", "sen_id": 215166}, {"caption": "chicken is marinating in a bowl as a recipe is described", "video_id": "video12106", "sen_id": 215167}, {"caption": "an indian man talks about how he prepared meat while touching it", "video_id": "video12106", "sen_id": 215168}, {"caption": "this is a cooking terminal on how to cook a type of chicken using yogurt salt chilli powder and pineapple juice", "video_id": "video12106", "sen_id": 215169}, {"caption": "a man explains a recipe for marinating chicken", "video_id": "video12106", "sen_id": 215170}, {"caption": "a woman takes meat out of its marinade of yogurt pineapple juice salt chili powder and a little bit of meat tenderizer", "video_id": "video12106", "sen_id": 215171}, {"caption": "a chef talks about a piece of chicken that has been marinating in a glasss bowl", "video_id": "video12106", "sen_id": 215172}, {"caption": "a man is showing the meat he is marinating for a recipe", "video_id": "video12106", "sen_id": 215173}, {"caption": "someone is preparing some chicken on a skillet", "video_id": "video12106", "sen_id": 215174}, {"caption": "there is a women cooking food in untensil", "video_id": "video12106", "sen_id": 215175}, {"caption": "a person is marrinading some sort of meat in a clear bowl on a skillet", "video_id": "video12106", "sen_id": 215176}, {"caption": "guy mixing chicken pieces in a vessel", "video_id": "video12106", "sen_id": 215177}, {"caption": "a person is talking while they marinate pork chops in a glass dish inside a frying pan", "video_id": "video12106", "sen_id": 215178}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video12106", "sen_id": 215179}, {"caption": "a man explaining how the world has changed", "video_id": "video10148", "sen_id": 215180}, {"caption": "a green man on a screen with words scrolling to the right", "video_id": "video10148", "sen_id": 215181}, {"caption": "some one explaining a great personality of famous person in the picture", "video_id": "video10148", "sen_id": 215182}, {"caption": "an image with a man with greed head brown suit yellow shirt and purple tie is portaited", "video_id": "video10148", "sen_id": 215183}, {"caption": "a man with a brown coat is on the left and some sentences are being scrolled on the right", "video_id": "video10148", "sen_id": 215184}, {"caption": "documentary about war weapons and the war heads with some bald guy photo", "video_id": "video10148", "sen_id": 215185}, {"caption": "there is a green old man with red suit looking", "video_id": "video10148", "sen_id": 215186}, {"caption": "a man is reading a speech while it scrolls on the screen next to a picture of a man", "video_id": "video10148", "sen_id": 215187}, {"caption": "a man is reading a quote from a famous person", "video_id": "video10148", "sen_id": 215188}, {"caption": "a man is reading a quote of a man with his picture next to the quote", "video_id": "video10148", "sen_id": 215189}, {"caption": "a men is telling about a person which is shown in the picture", "video_id": "video10148", "sen_id": 215190}, {"caption": "an american leader colored with a green head yellow shirt and brown jacket has his anti-war remarks quoted in pink and white lettering", "video_id": "video10148", "sen_id": 215191}, {"caption": "a slideshow shows a quote from a man being read by a narrator", "video_id": "video10148", "sen_id": 215192}, {"caption": "an old man in still imageon screen in brown and yellow shirt", "video_id": "video10148", "sen_id": 215193}, {"caption": "a picture of a green president eisenhower with scrolling text", "video_id": "video10148", "sen_id": 215194}, {"caption": "mens talks on the tv news telling someting about movie", "video_id": "video10148", "sen_id": 215195}, {"caption": "every gun that is made every warship launched every rocket fired signifies", "video_id": "video10148", "sen_id": 215196}, {"caption": "news reporter quotes a famous person in a news report", "video_id": "video10148", "sen_id": 215197}, {"caption": "it is the detailed description of the popular leader", "video_id": "video10148", "sen_id": 215198}, {"caption": "a man with green skin is smiling at the camera", "video_id": "video10148", "sen_id": 215199}, {"caption": "a person is in a video game underwater being eaten by sharks", "video_id": "video10002", "sen_id": 215200}, {"caption": "a man is pointing a gun at a shark and then shoots it", "video_id": "video10002", "sen_id": 215201}, {"caption": "a man gets attacked by a virtual shark and attempts to kill it", "video_id": "video10002", "sen_id": 215202}, {"caption": "a person holds a gun underwater and attempts to shoot an animated shark", "video_id": "video10002", "sen_id": 215203}, {"caption": "a video game that shows how are you nurder by a shark", "video_id": "video10002", "sen_id": 215204}, {"caption": "there is a man playing game with high attention", "video_id": "video10002", "sen_id": 215205}, {"caption": "a man shooted", "video_id": "video10002", "sen_id": 215206}, {"caption": "in a sea under the water two persons shootout the shark because it is arriving to caught them", "video_id": "video10002", "sen_id": 215207}, {"caption": "some one is playing video game in which shark is attacking player", "video_id": "video10002", "sen_id": 215208}, {"caption": "two men are playing a video game where they try to shoot a shark before being eaten by it", "video_id": "video10002", "sen_id": 215209}, {"caption": "two men that were looking at virtual reality being murdered by a shark", "video_id": "video10002", "sen_id": 215210}, {"caption": "some is playing a video game and a shark pops out the guy gets scared and the kill it", "video_id": "video10002", "sen_id": 215211}, {"caption": "a man narrates a gameplay video where he gets killed by a shark", "video_id": "video10002", "sen_id": 215212}, {"caption": "men chat during game play and shark attacks player underwater", "video_id": "video10002", "sen_id": 215213}, {"caption": "a first person shooter takes on a shark", "video_id": "video10002", "sen_id": 215214}, {"caption": "a man going and a letter displayed", "video_id": "video10002", "sen_id": 215215}, {"caption": "someone is playing a computer game with great interest", "video_id": "video10002", "sen_id": 215216}, {"caption": "a gun in a video game is shooting sharks", "video_id": "video10002", "sen_id": 215217}, {"caption": "few boys are playing the game of shark and shooting it", "video_id": "video10002", "sen_id": 215218}, {"caption": "someone is playing a first person video game", "video_id": "video10002", "sen_id": 215219}, {"caption": "a man standing at a table gives a photo to the man sitting at the table", "video_id": "video11086", "sen_id": 215220}, {"caption": "a man wearing a cap makes a fan-obsessed comment followed by a compliment to an author at a book signing in a store", "video_id": "video11086", "sen_id": 215221}, {"caption": "a man goes to a book signing and tries to act like borat", "video_id": "video11086", "sen_id": 215222}, {"caption": "a reader is conversing with a writer at a book signing", "video_id": "video11086", "sen_id": 215223}, {"caption": "a man with a european accent wearing a suit glasses and a hat asks questions of another man sitting at what appears to be a book signing", "video_id": "video11086", "sen_id": 215224}, {"caption": "man is shown giving a paper to another man at what appears to be a book signing", "video_id": "video11086", "sen_id": 215225}, {"caption": "two men in business attire speak to each other in a busy book store", "video_id": "video11086", "sen_id": 215226}, {"caption": "two men discuss a object on the table one guy grabs it", "video_id": "video11086", "sen_id": 215227}, {"caption": "a man showing standing in front of a man sitting at a desk talking to him9", "video_id": "video11086", "sen_id": 215228}, {"caption": "a man in a hat talks to a man sitting at a table", "video_id": "video11086", "sen_id": 215229}, {"caption": "a black suit man showing a drawings from the street", "video_id": "video11086", "sen_id": 215230}, {"caption": "a young man with cap is talking to a man sitting at the table", "video_id": "video11086", "sen_id": 215231}, {"caption": "a man in a black suit holding a newspaper and talking to man with a hat", "video_id": "video11086", "sen_id": 215232}, {"caption": "a guy goes to a book signing and makes the author feel uncomfortable", "video_id": "video11086", "sen_id": 215233}, {"caption": "a man wearing a black cap and glasses is speaking to another man in a suit and glasses seated behind a desk", "video_id": "video11086", "sen_id": 215234}, {"caption": "a man in a hat is speaking to a man sitting at a desk", "video_id": "video11086", "sen_id": 215235}, {"caption": "a man who is a big fan of a certain author bringing him artistic suggestions and asking if he can follow him home", "video_id": "video11086", "sen_id": 215236}, {"caption": "a man standing in front of a desk talking to a man sitting down", "video_id": "video11086", "sen_id": 215237}, {"caption": "a young man at a book signing shows the author his work and askes to follow him the author is polite and says sure", "video_id": "video11086", "sen_id": 215238}, {"caption": "a man with a black jacket is talking to another man in a suit at a table", "video_id": "video11086", "sen_id": 215239}, {"caption": "a car is riding around in a circle outside", "video_id": "video10686", "sen_id": 215240}, {"caption": "i remote controlled care is be is being operate to travel along the wall of temporary round fencing", "video_id": "video10686", "sen_id": 215241}, {"caption": "red vehicle driving around the inside of a wooden course on its side", "video_id": "video10686", "sen_id": 215242}, {"caption": "a car drives on a wall in circles", "video_id": "video10686", "sen_id": 215243}, {"caption": "a small vehicle doing laps on a circular wooden wall track", "video_id": "video10686", "sen_id": 215244}, {"caption": "a small motorized vehicle is going completely sideways along a fence in circles", "video_id": "video10686", "sen_id": 215245}, {"caption": "a jeep driven on the small round", "video_id": "video10686", "sen_id": 215246}, {"caption": "a vehicle drives into a wooden pit but it continues to ride along the walls of the interior", "video_id": "video10686", "sen_id": 215247}, {"caption": "an off road vehicle defies gravity and drives sideways in circular wooden post track", "video_id": "video10686", "sen_id": 215248}, {"caption": "a race care is traveling on the inside walls of a circular fence", "video_id": "video10686", "sen_id": 215249}, {"caption": "a small red atv car rolling around a place with wood", "video_id": "video10686", "sen_id": 215250}, {"caption": "a red all terrain vehicle drives into a large bowl shaped ditch lined with planks of wood and drives around and around it sideways", "video_id": "video10686", "sen_id": 215251}, {"caption": "a mini cart rider drives inside a wooden circular ring", "video_id": "video10686", "sen_id": 215252}, {"caption": "a car rides around in cirles on the side of a wooden wall", "video_id": "video10686", "sen_id": 215253}, {"caption": "carriage circularly rotating in a cylinder made of wood", "video_id": "video10686", "sen_id": 215254}, {"caption": "a red off road vehicle travels at a high rate of speed and drops down into a hole the is lined with wood planks and drives around the sides", "video_id": "video10686", "sen_id": 215255}, {"caption": "video of a toy truck inside a hole going around in a circle", "video_id": "video10686", "sen_id": 215256}, {"caption": "an off road car drives sideways around a wooden planked donut shaped track curve", "video_id": "video10686", "sen_id": 215257}, {"caption": "a guy rides a vehicle around the wooden walls of a track", "video_id": "video10686", "sen_id": 215258}, {"caption": "a car is driving around a circular area", "video_id": "video10686", "sen_id": 215259}, {"caption": "two woman are discussing what one is wearing and fashion on the streets in a city", "video_id": "video10944", "sen_id": 215260}, {"caption": "two women describing a kimono and new style outfit", "video_id": "video10944", "sen_id": 215261}, {"caption": "a young woman in a white shirt and floral kimono stands on a sidewalk", "video_id": "video10944", "sen_id": 215262}, {"caption": "a woman's fashion is showcased she is wearing jeans a white crop top and a floral jacket", "video_id": "video10944", "sen_id": 215263}, {"caption": "two girls discussing about the new top and jeans dress on the streets", "video_id": "video10944", "sen_id": 215264}, {"caption": "two women describe their fashion choices on a busy street", "video_id": "video10944", "sen_id": 215265}, {"caption": "couple of sexy girls wearing hat and fashionable outfit are talking to the camera", "video_id": "video10944", "sen_id": 215266}, {"caption": "a girl with colourful dress is talking to another girl with a hat", "video_id": "video10944", "sen_id": 215267}, {"caption": "two womens in roadways and watching his jeans & socks - topshop another girl loves it", "video_id": "video10944", "sen_id": 215268}, {"caption": "a girl with white top with two hand bag taking to another girl in black dress", "video_id": "video10944", "sen_id": 215269}, {"caption": "here the two girls are making conversation on dress what the had wore and after that one of them wanted to have even to her and feeling excitement", "video_id": "video10944", "sen_id": 215270}, {"caption": "two women in black is talking to eachother and appriciatating each other choices", "video_id": "video10944", "sen_id": 215271}, {"caption": "two women talking about where the female on the right purchased her outfit", "video_id": "video10944", "sen_id": 215272}, {"caption": "a younger woman talking about her style and the jeans she is wearing to another girl wearing a black hat", "video_id": "video10944", "sen_id": 215273}, {"caption": "two women standing in a street talking about the clothes one of them is wearing", "video_id": "video10944", "sen_id": 215274}, {"caption": "two beautiful girls are there one is wearing jeans and another girl is with cap", "video_id": "video10944", "sen_id": 215275}, {"caption": "the young beautiful girl is very nice very sexy look and their navel is super", "video_id": "video10944", "sen_id": 215276}, {"caption": "a white flowered coat is worn by a lady and another lady dressed in black is admiring it", "video_id": "video10944", "sen_id": 215277}, {"caption": "couple of girls on street showing their fashionable outfits and hat", "video_id": "video10944", "sen_id": 215278}, {"caption": "two women are standing in a street and talking", "video_id": "video10944", "sen_id": 215279}, {"caption": "a man scoots over on a swivel chair along with a globe on the other side to a white desk in front of a chalkboard in a classroom he explains that he will talk about india", "video_id": "video12196", "sen_id": 215280}, {"caption": "a man in a suit discusses the intro of india and a crash course of its history", "video_id": "video12196", "sen_id": 215281}, {"caption": "a man wearing a gray suit slides into view on a wheeled business chair to a desk by a blackboard laptop and globes a student wearing a black tee shirt with team name and logo raises his hand to ask a question", "video_id": "video12196", "sen_id": 215282}, {"caption": "a man prepares to give a lecture on a variety of topics", "video_id": "video12196", "sen_id": 215283}, {"caption": "john green while sitting behind a desk with a computer says that he is going to talk india which will be hard because he has only 10 minutes", "video_id": "video12196", "sen_id": 215284}, {"caption": "john green talking about india on crash course", "video_id": "video12196", "sen_id": 215285}, {"caption": "a man lectures on the history of india from an american peerspective", "video_id": "video12196", "sen_id": 215286}, {"caption": "a man with spectacles and wearing a grey coloured coat is saying something", "video_id": "video12196", "sen_id": 215287}, {"caption": "a man sitting at the desk in a chair with a globe beside him", "video_id": "video12196", "sen_id": 215288}, {"caption": "man in grey blazer and pink shirt talking about the world history of india", "video_id": "video12196", "sen_id": 215289}, {"caption": "a man is talking about history of the india", "video_id": "video12196", "sen_id": 215290}, {"caption": "the man in the sport coat slides the chair over to the desk to talk about history", "video_id": "video12196", "sen_id": 215291}, {"caption": "a man wearing a suit is introducing the region of india", "video_id": "video12196", "sen_id": 215292}, {"caption": "a men in dark brown suit is sitting and talking", "video_id": "video12196", "sen_id": 215293}, {"caption": "the man wearing the purple shirt sits in the chair and talks", "video_id": "video12196", "sen_id": 215294}, {"caption": "its the black board on which the buddha status is drawn and a white globe is placed on the table", "video_id": "video12196", "sen_id": 215295}, {"caption": "a guy is talking loudly about things about india", "video_id": "video12196", "sen_id": 215296}, {"caption": "there is a suit man talking in front of a glob", "video_id": "video12196", "sen_id": 215297}, {"caption": "a men is sitting on chair and talking", "video_id": "video12196", "sen_id": 215298}, {"caption": " with wavy dark hair wearing a gray suit rolls on his chair to his desk as his globe does the same from the opposite side to meet between a chalkboard and a laptop", "video_id": "video12196", "sen_id": 215299}, {"caption": "young man listing out how to edit and not plagiarize a film", "video_id": "video11333", "sen_id": 215300}, {"caption": "a voice reads the blue text on a screen showing horse statues and warns against plagiarism and nasty comments", "video_id": "video11333", "sen_id": 215301}, {"caption": "voice over explaining photography copyright in relation to a video blog channel", "video_id": "video11333", "sen_id": 215302}, {"caption": "a person is talking about the rights of photo owners", "video_id": "video11333", "sen_id": 215303}, {"caption": "boy goes through different rules of using others photos or rules of conduct online", "video_id": "video11333", "sen_id": 215304}, {"caption": "blue words are flashed on a screen against an image of a horse", "video_id": "video11333", "sen_id": 215305}, {"caption": "a young boy talks about comments that can be posted online", "video_id": "video11333", "sen_id": 215306}, {"caption": "a person rants at another person in writing on an image of a cat", "video_id": "video11333", "sen_id": 215307}, {"caption": "a woman narrates video copyright", "video_id": "video11333", "sen_id": 215308}, {"caption": "a young person is cautioning against posting videos that do not belong to you and about commenting hatefully on other people's channels", "video_id": "video11333", "sen_id": 215309}, {"caption": "a video describing hateful words on photos", "video_id": "video11333", "sen_id": 215310}, {"caption": "a video with words are explaining how someone feels", "video_id": "video11333", "sen_id": 215311}, {"caption": "a child explaining rules for posting video on their channel", "video_id": "video11333", "sen_id": 215312}, {"caption": "a photo of a horse with blue letters and a gray background", "video_id": "video11333", "sen_id": 215313}, {"caption": "its about the data entry sheet of a website on the computer", "video_id": "video11333", "sen_id": 215314}, {"caption": "blue text is scrolling on the screen with horses in the background", "video_id": "video11333", "sen_id": 215315}, {"caption": "when you edit someone else s photo and say belongs to the", "video_id": "video11333", "sen_id": 215316}, {"caption": "a review about the editing of photos and videos and comments about it", "video_id": "video11333", "sen_id": 215317}, {"caption": "a person is showing information on screen", "video_id": "video11333", "sen_id": 215318}, {"caption": "as the voice of a child reads the words two posters are portrayed with messages about plagiarism and bullying are portrayed", "video_id": "video11333", "sen_id": 215319}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video10783", "sen_id": 215320}, {"caption": "this is an explanation and video of a match 3 computer game", "video_id": "video10783", "sen_id": 215321}, {"caption": "a video game is being played while a man gives a voiceover", "video_id": "video10783", "sen_id": 215322}, {"caption": "man speaks on how to play a game it looks like a computer game", "video_id": "video10783", "sen_id": 215323}, {"caption": "a man is describing a video game in a foreign language", "video_id": "video10783", "sen_id": 215324}, {"caption": "a person demonstrates and describes a video game that they are playing", "video_id": "video10783", "sen_id": 215325}, {"caption": "an ad for hexic hd which is ranked number 7 in a list narrated in a foreign language", "video_id": "video10783", "sen_id": 215326}, {"caption": "there is someone playing video game", "video_id": "video10783", "sen_id": 215327}, {"caption": "a man is playing a game with different color balls", "video_id": "video10783", "sen_id": 215328}, {"caption": "a video game is being shown in the picture and the persons explains about the game", "video_id": "video10783", "sen_id": 215329}, {"caption": "its a animated video game for kids", "video_id": "video10783", "sen_id": 215330}, {"caption": "a foreign speaker explains and illustrates how to play the game hexloc using computer generated screen shots", "video_id": "video10783", "sen_id": 215331}, {"caption": "a puzzle style video game is played onscreen", "video_id": "video10783", "sen_id": 215332}, {"caption": "multi colored hexagons fall down into lines on a black screen", "video_id": "video10783", "sen_id": 215333}, {"caption": "there is a board of different colored jewels and they disappear as the colors are matched", "video_id": "video10783", "sen_id": 215334}, {"caption": "there is someone playing a colorful video game", "video_id": "video10783", "sen_id": 215335}, {"caption": "a man talks while showing a puzzle style video game", "video_id": "video10783", "sen_id": 215336}, {"caption": "multi coloured balls keep falling down and fill up the spaces", "video_id": "video10783", "sen_id": 215337}, {"caption": "a person giving in foreign language about the game hexic", "video_id": "video10783", "sen_id": 215338}, {"caption": "a person is playing a color puzzle game", "video_id": "video10783", "sen_id": 215339}, {"caption": "woman showing how to fold paper with written directions on screen", "video_id": "video10095", "sen_id": 215340}, {"caption": "hands fold a piece of white page on a brown table as captions describe the action", "video_id": "video10095", "sen_id": 215341}, {"caption": "a woman is folding a piece of paper while writing instructions are displayed at the bottom of the screen", "video_id": "video10095", "sen_id": 215342}, {"caption": "a woman with red nails folding a blank piece of white paper into an envelope", "video_id": "video10095", "sen_id": 215343}, {"caption": "a woman is folding a white piece of paper", "video_id": "video10095", "sen_id": 215344}, {"caption": "a woman is folding a paper into two and then folds it again", "video_id": "video10095", "sen_id": 215345}, {"caption": "paper folding instructions filmed from the person doing the folding", "video_id": "video10095", "sen_id": 215346}, {"caption": "a woman is folding a paper and doing some thing", "video_id": "video10095", "sen_id": 215347}, {"caption": "a woman is folding a white piece of paper into a square shape on a desk", "video_id": "video10095", "sen_id": 215348}, {"caption": "preparing to make some paper craft by folding white paper to many folds", "video_id": "video10095", "sen_id": 215349}, {"caption": "a women holds a paper in her hand and folds it", "video_id": "video10095", "sen_id": 215350}, {"caption": "a female person is folding a piece of paper in half and then in half again", "video_id": "video10095", "sen_id": 215351}, {"caption": "someone is folding paper while instructions are given in text on the screen", "video_id": "video10095", "sen_id": 215352}, {"caption": "a woman folds a peice of white paper in half doing a craft project", "video_id": "video10095", "sen_id": 215353}, {"caption": "a woman folding a piece of paper in half twice", "video_id": "video10095", "sen_id": 215354}, {"caption": "there is something making by cutting the paper", "video_id": "video10095", "sen_id": 215355}, {"caption": "person showing how to fold a piece of paper", "video_id": "video10095", "sen_id": 215356}, {"caption": "a person holds a white paper and folds it into smaller squares", "video_id": "video10095", "sen_id": 215357}, {"caption": "a girl folding piece of white paper with her hands on the table to form a paper craft", "video_id": "video10095", "sen_id": 215358}, {"caption": "womans hands seen folding paper in half scissors laying right next to the paper being folded", "video_id": "video10095", "sen_id": 215359}, {"caption": "a man bouncing and juggling multiple basketballs on a court and other places", "video_id": "video10062", "sen_id": 215360}, {"caption": "this vine compilation is showing different basketball skills", "video_id": "video10062", "sen_id": 215361}, {"caption": "a man is dribbling 3 basketballs then a man slam dunks a basketball into a grocery cart and it bounces back out and hits him in the face", "video_id": "video10062", "sen_id": 215362}, {"caption": "a man is juggling balls outside on the court", "video_id": "video10062", "sen_id": 215363}, {"caption": "a man is doing tricks with a basketball", "video_id": "video10062", "sen_id": 215364}, {"caption": "there is a man doing some tricks with balls", "video_id": "video10062", "sen_id": 215365}, {"caption": "several boys are seen showcasing their skills with basketballs by dribbling juggling and at one time performing a blooper", "video_id": "video10062", "sen_id": 215366}, {"caption": "a man is juggling three basketballs in various places and there is popular pop song music in the background", "video_id": "video10062", "sen_id": 215367}, {"caption": "young boys do basketball dribbling tricks in a variety of locations", "video_id": "video10062", "sen_id": 215368}, {"caption": "a boy in black dress wearing cloth playing with red color balls displaying on screen", "video_id": "video10062", "sen_id": 215369}, {"caption": "guys do tricks with various numbers of basketballs", "video_id": "video10062", "sen_id": 215370}, {"caption": "the men are doing juggling and some stunts using the ball", "video_id": "video10062", "sen_id": 215371}, {"caption": "a man with basketballs performs multiple juggling and dribbling tricks before mistakenly bouncing a ball off a shopping cart and back into his face", "video_id": "video10062", "sen_id": 215372}, {"caption": "a compilation of several people performing basketball tricks", "video_id": "video10062", "sen_id": 215373}, {"caption": "there is a man dribbling multiple basketballs and another man accidentally hurting himself with a basketball", "video_id": "video10062", "sen_id": 215374}, {"caption": "men are shown doing trick with balls accompanied by music", "video_id": "video10062", "sen_id": 215375}, {"caption": "a man dribbles basketballs in different settings to different songs", "video_id": "video10062", "sen_id": 215376}, {"caption": "a man bounces basketballs in different locations and hits himself in the face", "video_id": "video10062", "sen_id": 215377}, {"caption": "few guys dribbling with three basketballs in the street", "video_id": "video10062", "sen_id": 215378}, {"caption": "a guy is bouncing some basket balls outside", "video_id": "video10062", "sen_id": 215379}, {"caption": "a person standing on a stage giving a speech", "video_id": "video11463", "sen_id": 215380}, {"caption": "a man speaking on a microphone in front of a lot of people", "video_id": "video11463", "sen_id": 215381}, {"caption": "robert downey jr making an acceptance speech for an award", "video_id": "video11463", "sen_id": 215382}, {"caption": "a man in a grey suit addresses a large audience and dedicated an award to an elderly fan", "video_id": "video11463", "sen_id": 215383}, {"caption": "a man wearing a gray suit glasses and a black tie speaks at a crowded awards ceremony", "video_id": "video11463", "sen_id": 215384}, {"caption": "there is a suit man talking in a stage show", "video_id": "video11463", "sen_id": 215385}, {"caption": "a man accepting an award is telling a story about a woman", "video_id": "video11463", "sen_id": 215386}, {"caption": "a man wearing grey dress talking about something on stage", "video_id": "video11463", "sen_id": 215387}, {"caption": "a big show in which the person talks in the mike infront of the big audience", "video_id": "video11463", "sen_id": 215388}, {"caption": "a man in a suit talks to cheering fans on stage", "video_id": "video11463", "sen_id": 215389}, {"caption": "robert downey jr is wearing a suit and tie and glasses while talking on stage into a microphone", "video_id": "video11463", "sen_id": 215390}, {"caption": "a man in a grey suit robert downey jr on stage at an award show speaking about a woman who died", "video_id": "video11463", "sen_id": 215391}, {"caption": "a cute man is talking in the studio", "video_id": "video11463", "sen_id": 215392}, {"caption": "a man speask in front of a large screen adressing an audience wearing a grey suit and glasses", "video_id": "video11463", "sen_id": 215393}, {"caption": "a man telling in the mike to the audience about something", "video_id": "video11463", "sen_id": 215394}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video11463", "sen_id": 215395}, {"caption": "three identical portraits of a tall man next to shorter woman are divided by curved bands of golden lights on a dark stage", "video_id": "video11463", "sen_id": 215396}, {"caption": "a man with a ey coat and striped tie", "video_id": "video11463", "sen_id": 215397}, {"caption": "a man on stage is speaking about friendship", "video_id": "video11463", "sen_id": 215398}, {"caption": "a man wearing suit with tie is talking in front of mike on the stage and a group of audience are listing", "video_id": "video11463", "sen_id": 215399}, {"caption": "a variety of traditional russian cuisine is presented", "video_id": "video10625", "sen_id": 215400}, {"caption": "the best russian dishes being shown to the world", "video_id": "video10625", "sen_id": 215401}, {"caption": "a black and white vintage shot of a dessert table with various prepared dishes", "video_id": "video10625", "sen_id": 215402}, {"caption": "a woman talks happily about old russian cuisine", "video_id": "video10625", "sen_id": 215403}, {"caption": "a table is being shown with many different dishes and meals", "video_id": "video10625", "sen_id": 215404}, {"caption": "a table covered with a white cloth is filled with platters and plates of food ranging from sliced meats dressed poultry iced cakes jellied desserts and carved vegetables", "video_id": "video10625", "sen_id": 215405}, {"caption": "a woman discusses several food items spread out on a table", "video_id": "video10625", "sen_id": 215406}, {"caption": "the camera pans over a table full of various dishes filled with different kinds of food", "video_id": "video10625", "sen_id": 215407}, {"caption": "on a dining room table there are platters of different food", "video_id": "video10625", "sen_id": 215408}, {"caption": "a large amount of plated dinners are shown while the narrator talks about russian food", "video_id": "video10625", "sen_id": 215409}, {"caption": "a table is set with a feast of food including desserts and gelatin dishes", "video_id": "video10625", "sen_id": 215410}, {"caption": "a variety of dishes are resting on a clothed table", "video_id": "video10625", "sen_id": 215411}, {"caption": "dishes are shown while russian cuisine is explained", "video_id": "video10625", "sen_id": 215412}, {"caption": "a woman in a restaraunt enjoying her food", "video_id": "video10625", "sen_id": 215413}, {"caption": "a number of russian dishes are set on a table", "video_id": "video10625", "sen_id": 215414}, {"caption": "a table set with many different kinds of food and drink is shown", "video_id": "video10625", "sen_id": 215415}, {"caption": "a black and white video capturing decorative desserts on a banquet table", "video_id": "video10625", "sen_id": 215416}, {"caption": "a woman is telling about a various dish", "video_id": "video10625", "sen_id": 215417}, {"caption": "a girl telling about the food variety and all the dishes which is on the table", "video_id": "video10625", "sen_id": 215418}, {"caption": "some stuff is sitting on a table in a room", "video_id": "video10625", "sen_id": 215419}, {"caption": "a person wearing snow gear is walking through the snow", "video_id": "video11893", "sen_id": 215420}, {"caption": "man walking in about six inches of snow on a sunny day", "video_id": "video11893", "sen_id": 215421}, {"caption": "a man in a hat coat and gloves is walking through a snowy field and turns to run back", "video_id": "video11893", "sen_id": 215422}, {"caption": "there is a person in coat and stocking cap walking through snow", "video_id": "video11893", "sen_id": 215423}, {"caption": "a man tries to walk and run through a field of knee deep snow", "video_id": "video11893", "sen_id": 215424}, {"caption": "a person in black is trekking through powdery snow", "video_id": "video11893", "sen_id": 215425}, {"caption": "a person is walking and running in deep snowwhile music is playing in the video", "video_id": "video11893", "sen_id": 215426}, {"caption": "a man in a hat and parka trudging through deep snow on a clear sunny day", "video_id": "video11893", "sen_id": 215427}, {"caption": "a man walking threw snow and there is a woman singing along", "video_id": "video11893", "sen_id": 215428}, {"caption": "a man is walking across feet of snow", "video_id": "video11893", "sen_id": 215429}, {"caption": "a person walking through deep snow with a music overlay", "video_id": "video11893", "sen_id": 215430}, {"caption": "man in a long parka coat black pants and pom pom beanie trudges through foot-deep snow in a large field surrounded by pine trees", "video_id": "video11893", "sen_id": 215431}, {"caption": "a man walking in knee deep snow while wearing winter clothes", "video_id": "video11893", "sen_id": 215432}, {"caption": "a man dressed in winter clothes walks through heavy snow and then run towards the camera", "video_id": "video11893", "sen_id": 215433}, {"caption": "someone is wearing jacket and moving in the snow", "video_id": "video11893", "sen_id": 215434}, {"caption": "a person in black dress with cap walking slowly in a snow area", "video_id": "video11893", "sen_id": 215435}, {"caption": "a man walk away a few meters from the camera in deep snow turns around and starts running toward the camera", "video_id": "video11893", "sen_id": 215436}, {"caption": "a man trudges through deep snow on a sunny day", "video_id": "video11893", "sen_id": 215437}, {"caption": "a great view of a person wading through almost knee deep snow on a mountain side", "video_id": "video11893", "sen_id": 215438}, {"caption": "a person hikes through the deep snow as pretty music plays", "video_id": "video11893", "sen_id": 215439}, {"caption": "a woman demonstrating how to prepare a dish", "video_id": "video10715", "sen_id": 215440}, {"caption": "a chef shows the ingredients she is going to use to preare a recipe", "video_id": "video10715", "sen_id": 215441}, {"caption": "a chef talks about the ingredients she will be using to put together a recipe", "video_id": "video10715", "sen_id": 215442}, {"caption": "music plays as a woman talks about cooking what seems to be octopus tentacles", "video_id": "video10715", "sen_id": 215443}, {"caption": "a table of vegetables and seasonings and a person washing a food in the sink", "video_id": "video10715", "sen_id": 215444}, {"caption": "vegetables and spices on display and a woman preparing what appears to be octopus", "video_id": "video10715", "sen_id": 215445}, {"caption": "a plate of vegetables and seasonings and a woman washing eels", "video_id": "video10715", "sen_id": 215446}, {"caption": "a chef preps for a recipe by seasoning and washing some seafood", "video_id": "video10715", "sen_id": 215447}, {"caption": "a woman in a kitchen prepares octopus in a sink", "video_id": "video10715", "sen_id": 215448}, {"caption": "woman explains how to prepare nakji for cooking", "video_id": "video10715", "sen_id": 215449}, {"caption": "glass bowls and a white plate with ingredients holding seasonings vegetables and octopus are aligned in rows on a counter and a female cook washes the salted octopus which foams in the sink", "video_id": "video10715", "sen_id": 215450}, {"caption": "a woman sprinkles salt and massages an octopus-like creature to prepare to eat it", "video_id": "video10715", "sen_id": 215451}, {"caption": "a woman is describing how to prepare nakji for a meal", "video_id": "video10715", "sen_id": 215452}, {"caption": "a cook shows how to make prepare vegetables and calamari", "video_id": "video10715", "sen_id": 215453}, {"caption": "a table holding dishes and ingredients is present then a woman is speaking with her hands visible as she prepares shrimp to be cooked by rinsing them in a metal bowl in a sink", "video_id": "video10715", "sen_id": 215454}, {"caption": "a lot of little bowls of ingredients and a woman is washing shrimps", "video_id": "video10715", "sen_id": 215455}, {"caption": "some of the things required is kept salt is put and the massage is done then washed off", "video_id": "video10715", "sen_id": 215456}, {"caption": "a nakij meal is prepared by a woman", "video_id": "video10715", "sen_id": 215457}, {"caption": "a girl and wash basin pawn washing vegetables dishes inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10715", "sen_id": 215458}, {"caption": "a person is mixing up some food in a bowl", "video_id": "video10715", "sen_id": 215459}, {"caption": "group of characters showing how to fight with knifes in movies", "video_id": "video11151", "sen_id": 215460}, {"caption": "an advertisement for programming of movies with the top ten knife fights begins with a little girl playing with knives", "video_id": "video11151", "sen_id": 215461}, {"caption": "a kid in pink t-shirt is talking to her dad", "video_id": "video11151", "sen_id": 215462}, {"caption": "two guys fighting in an office environment by the windows", "video_id": "video11151", "sen_id": 215463}, {"caption": "a little girl plays with a knife while her dad sits there not paying attention", "video_id": "video11151", "sen_id": 215464}, {"caption": "a little girl is swinging around a knife", "video_id": "video11151", "sen_id": 215465}, {"caption": "a girl is playing with a spoon and then a man is fighting with criminals", "video_id": "video11151", "sen_id": 215466}, {"caption": "a small girl in pink dress is talking to her dad", "video_id": "video11151", "sen_id": 215467}, {"caption": "two men are fighting in an office building", "video_id": "video11151", "sen_id": 215468}, {"caption": "a man is fighting with an another man", "video_id": "video11151", "sen_id": 215469}, {"caption": "the two men use knives when they fight against each other", "video_id": "video11151", "sen_id": 215470}, {"caption": "there is a man fighting against his enemies", "video_id": "video11151", "sen_id": 215471}, {"caption": "the trailer of a movie the bourne supremacy which shows a girl playing and a fight between two guys", "video_id": "video11151", "sen_id": 215472}, {"caption": "a girl does tricks with a knife while her dad reads the paper", "video_id": "video11151", "sen_id": 215473}, {"caption": "a girl in pink dress rotating thing in her hand old man beside fighting with each other displaying on screen", "video_id": "video11151", "sen_id": 215474}, {"caption": "some people in suits are fighting in an office", "video_id": "video11151", "sen_id": 215475}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video11151", "sen_id": 215476}, {"caption": "a small child is playing with something and two men are fighting with each other", "video_id": "video11151", "sen_id": 215477}, {"caption": "a young girl who is doing tricks with a knife tries to get her dad to watch her trick", "video_id": "video11151", "sen_id": 215478}, {"caption": "a old man sitting and a little girl shaking with hands fighting with two guys and hero wearing glass on scene", "video_id": "video11151", "sen_id": 215479}, {"caption": "a man explaining his love for the music he plays", "video_id": "video11036", "sen_id": 215480}, {"caption": "a man explaining how long he has played music", "video_id": "video11036", "sen_id": 215481}, {"caption": "shots of music and an old man while he was young and playing the piano", "video_id": "video11036", "sen_id": 215482}, {"caption": "a older man in a white shirt is talking about when he began pursuing music while showing a flashback of him as a child in front of a piano and a quick view of a music sheet", "video_id": "video11036", "sen_id": 215483}, {"caption": "an older man talks about his history with playing the piano", "video_id": "video11036", "sen_id": 215484}, {"caption": "there was an old picture of a boy playing a piano and sheet music", "video_id": "video11036", "sen_id": 215485}, {"caption": "an old man is talking to the camera then there is a picture of a boy playing a piano", "video_id": "video11036", "sen_id": 215486}, {"caption": "a man with gray hair and black-frame eyeglasses sits by a black piano with papers and a cell phone on top", "video_id": "video11036", "sen_id": 215487}, {"caption": "an older man in a blue shirt is describing playing the piano and his love for music", "video_id": "video11036", "sen_id": 215488}, {"caption": "a man wearing a collard shirt discusses first time playing a song", "video_id": "video11036", "sen_id": 215489}, {"caption": "man talking about a piece of music he played on a recital 60 years ago", "video_id": "video11036", "sen_id": 215490}, {"caption": "the old man is talking while different photographs are shown", "video_id": "video11036", "sen_id": 215491}, {"caption": "a young girl learning music and there are some musical notes also be found", "video_id": "video11036", "sen_id": 215492}, {"caption": "a classic piture of a boy playing piano and in the background piano music was playing", "video_id": "video11036", "sen_id": 215493}, {"caption": "old guy in glass talking to camera", "video_id": "video11036", "sen_id": 215494}, {"caption": "a guy saying he has been playing music for 60 years and shows a music sheet and piano", "video_id": "video11036", "sen_id": 215495}, {"caption": "a old musician explains how he made music while he was in young age", "video_id": "video11036", "sen_id": 215496}, {"caption": "a man talks about his experience as a musician throughout his life", "video_id": "video11036", "sen_id": 215497}, {"caption": "an older man describing his feelings ispired by a piece of musice by beethoven that he first played as a boy and that he still plays", "video_id": "video11036", "sen_id": 215498}, {"caption": "a sheet of music is being shown to some people", "video_id": "video11036", "sen_id": 215499}, {"caption": "a woman talks as she sautes cumin and onions", "video_id": "video10499", "sen_id": 215500}, {"caption": "a woman giving instructions on how to prepare a certain dish", "video_id": "video10499", "sen_id": 215501}, {"caption": "a woman adding cumin seeds and chopped onions to heated oil in a pan to make onion paste", "video_id": "video10499", "sen_id": 215502}, {"caption": "a cook adds cumin seeds and then cubed purple onion into an oiled black skillet on a black electric stove and stirs with a red spatula ", "video_id": "video10499", "sen_id": 215503}, {"caption": "step by step to add ingredients to recipe", "video_id": "video10499", "sen_id": 215504}, {"caption": "some seasoning being added to a hot pan and then food being added to the pan", "video_id": "video10499", "sen_id": 215505}, {"caption": "a person is preparing dinner for themselves", "video_id": "video10499", "sen_id": 215506}, {"caption": "a woman is cooking onions in a frying pan and explaining what she is doing", "video_id": "video10499", "sen_id": 215507}, {"caption": "a woman is cooking at home and making her own cooking video it starts by showing her frying some minced garlic and onion", "video_id": "video10499", "sen_id": 215508}, {"caption": "a chef prepares a recipe by putting ingredients in a small skillet", "video_id": "video10499", "sen_id": 215509}, {"caption": "there is a woman making a dish with mustard", "video_id": "video10499", "sen_id": 215510}, {"caption": "a small pan sizzles as the woman adds items to prepare the receipt", "video_id": "video10499", "sen_id": 215511}, {"caption": "some tasty potato chunks are cooked", "video_id": "video10499", "sen_id": 215512}, {"caption": "a woman adds cumin seeds and onions to a hot pan", "video_id": "video10499", "sen_id": 215513}, {"caption": "a woman adds cumin seed and onions into a black pan on the stove", "video_id": "video10499", "sen_id": 215514}, {"caption": "a woman is adding cumin seeds and onions to hot oil in a frying pan on a stove", "video_id": "video10499", "sen_id": 215515}, {"caption": "a woman adding onions and cumin seeds into a hot pan", "video_id": "video10499", "sen_id": 215516}, {"caption": "in a kitchen a woman with the cooking pan by adding oil and then after cumin seeds onion for the onion paste", "video_id": "video10499", "sen_id": 215517}, {"caption": "onion paste is prepared by heating the pieces of onion in a hot pan", "video_id": "video10499", "sen_id": 215518}, {"caption": "a woman mixes things in a pan on the stove", "video_id": "video10499", "sen_id": 215519}, {"caption": "nude women frolic in the water on a sunny day", "video_id": "video11413", "sen_id": 215520}, {"caption": "a group of native women gathering water for their village", "video_id": "video11413", "sen_id": 215521}, {"caption": "several nude women are working and swimming in a body of water", "video_id": "video11413", "sen_id": 215522}, {"caption": "some naked women going into the ocean", "video_id": "video11413", "sen_id": 215523}, {"caption": "a group of naked women shucking corn and jumping into the water", "video_id": "video11413", "sen_id": 215524}, {"caption": "a family of naked amazonian tribeswomen swim in the river", "video_id": "video11413", "sen_id": 215525}, {"caption": "the girls wearing no dress swimming and playing in the river", "video_id": "video11413", "sen_id": 215526}, {"caption": "tribal women go for a swim in the local river", "video_id": "video11413", "sen_id": 215527}, {"caption": "naked people are swimming at a beach together", "video_id": "video11413", "sen_id": 215528}, {"caption": "girls naked swimming inside water diving putting luggage inside box displaying on screen", "video_id": "video11413", "sen_id": 215529}, {"caption": "nude indigenous people collect food and play in the water in a beautiful natural environment", "video_id": "video11413", "sen_id": 215530}, {"caption": "possibly native or tribal women swimming or fishing in water while nude", "video_id": "video11413", "sen_id": 215531}, {"caption": "native women gathering food and swimming", "video_id": "video11413", "sen_id": 215532}, {"caption": "naked women gathering produce and going for a swim", "video_id": "video11413", "sen_id": 215533}, {"caption": "a video of naked women from a foreign country", "video_id": "video11413", "sen_id": 215534}, {"caption": "naked women going for a swim after sanding material", "video_id": "video11413", "sen_id": 215535}, {"caption": "naked tribal women are swimming and playing in river and also collecting wood for the tribe", "video_id": "video11413", "sen_id": 215536}, {"caption": "young unclothed natives in africa gather food then go for a swim", "video_id": "video11413", "sen_id": 215537}, {"caption": "there are nude indigenous women swimming in the ocean", "video_id": "video11413", "sen_id": 215538}, {"caption": "naked women clean vegetable and throw them into a basket other naked women swim in a river", "video_id": "video11413", "sen_id": 215539}, {"caption": "a man explaining what the yellow low battery light means", "video_id": "video11545", "sen_id": 215540}, {"caption": "a man is discussing the battery power of his metal detector", "video_id": "video11545", "sen_id": 215541}, {"caption": "a man in a hat demonstrates the use of a metal detector", "video_id": "video11545", "sen_id": 215542}, {"caption": "a scanner is being used by a man in a field who is wearing a ball cap and grey and brown clothing", "video_id": "video11545", "sen_id": 215543}, {"caption": "a man explains that a blinking light means that his metal detector has low battery", "video_id": "video11545", "sen_id": 215544}, {"caption": "a man is demonstrating how to a metal detector", "video_id": "video11545", "sen_id": 215545}, {"caption": "a man with a cap and stick on hand is searching for something in an empty field", "video_id": "video11545", "sen_id": 215546}, {"caption": "there is a men with a bomb detector in his hand", "video_id": "video11545", "sen_id": 215547}, {"caption": "garrett iron ck (hold) freq scan thresh lightening", "video_id": "video11545", "sen_id": 215548}, {"caption": "a man shows how to read the low battery display on a metal detector", "video_id": "video11545", "sen_id": 215549}, {"caption": "the flashing light indicated the battery needed to be replaced", "video_id": "video11545", "sen_id": 215550}, {"caption": "there is a man searching something with a machine", "video_id": "video11545", "sen_id": 215551}, {"caption": "on the forest the naturalist are searching some think about the profession", "video_id": "video11545", "sen_id": 215552}, {"caption": "a guy walks through the desert with a metal detector", "video_id": "video11545", "sen_id": 215553}, {"caption": "a old man showing battery near the water flashing light displaying on the screen", "video_id": "video11545", "sen_id": 215554}, {"caption": "a man is using a yellow metal detector", "video_id": "video11545", "sen_id": 215555}, {"caption": "a person is shooting with gun in his hand", "video_id": "video11545", "sen_id": 215556}, {"caption": "a man wearing brown cap holding a checking machine checking on the ground", "video_id": "video11545", "sen_id": 215557}, {"caption": "a man is talking about a battery light and battery life", "video_id": "video11545", "sen_id": 215558}, {"caption": "a person while in a opporation his chacking device beeping and led indicates for low battery and the battery may continue for 30 minutes only", "video_id": "video11545", "sen_id": 215559}, {"caption": "a person pouring green liquid onto a green glass plate", "video_id": "video12564", "sen_id": 215560}, {"caption": "a woman pours hot gelatin in a container to help prepare chest peels", "video_id": "video12564", "sen_id": 215561}, {"caption": "a tutorial that is showing how to spread gellitan on a plate", "video_id": "video12564", "sen_id": 215562}, {"caption": "a person holding a blue plate is demonstrating how to make a green plastic chest for a plastic figure", "video_id": "video12564", "sen_id": 215563}, {"caption": "hot gel is poured into a bowl to set and used later for crafts", "video_id": "video12564", "sen_id": 215564}, {"caption": "a woman talks about making chest fills using hot gelatin", "video_id": "video12564", "sen_id": 215565}, {"caption": "a woman shows how to prepare green gelatin", "video_id": "video12564", "sen_id": 215566}, {"caption": "a girl discusses how to do a part of an art project", "video_id": "video12564", "sen_id": 215567}, {"caption": "she is holding a plate and then pours some oil oil on the plate", "video_id": "video12564", "sen_id": 215568}, {"caption": "green liquid is poured in a plate", "video_id": "video12564", "sen_id": 215569}, {"caption": "a person is pouring a green liquid on a plate then dripping it onto a table", "video_id": "video12564", "sen_id": 215570}, {"caption": "woman explains how to produce a nice layer of green goo out of a green culinary gel", "video_id": "video12564", "sen_id": 215571}, {"caption": "woman explaining a craft project with hot wax and a plate", "video_id": "video12564", "sen_id": 215572}, {"caption": "a lady is pouring something green onto a plastic plate", "video_id": "video12564", "sen_id": 215573}, {"caption": "a person is holding a green balloon inside", "video_id": "video12564", "sen_id": 215574}, {"caption": "a woman pours hot gelatin on to the rim of a green plate", "video_id": "video12564", "sen_id": 215575}, {"caption": "a woman giving verbal instructions while demonstrating how to make chess bills", "video_id": "video12564", "sen_id": 215576}, {"caption": "the girl is showing a step in using gelatine to make a part of her project", "video_id": "video12564", "sen_id": 215577}, {"caption": "a women is applying hot gel to an arts and craft project", "video_id": "video12564", "sen_id": 215578}, {"caption": "a person is holding a thing in a room", "video_id": "video12564", "sen_id": 215579}, {"caption": "the view of earth from a particular satellite", "video_id": "video11749", "sen_id": 215580}, {"caption": "a man was explaining the movie that was showing about the earth", "video_id": "video11749", "sen_id": 215581}, {"caption": "a look at earth and other planets from space", "video_id": "video11749", "sen_id": 215582}, {"caption": "earth is shown from outer space as an explosion takes place", "video_id": "video11749", "sen_id": 215583}, {"caption": "a documentary clip from earth which is interesting", "video_id": "video11749", "sen_id": 215584}, {"caption": "the view of planets from outer space and a explosion", "video_id": "video11749", "sen_id": 215585}, {"caption": "a woman's voice describes venus before a man asks question's about venus", "video_id": "video11749", "sen_id": 215586}, {"caption": "this is part of a documentary on planets in our solar system describing how scorched and hot the surface is of one planet compared to its nearest neighboring planet", "video_id": "video11749", "sen_id": 215587}, {"caption": "speaking about acid rain on other planets with the possibility of venus s history enabling us to get information on earths past and possible future", "video_id": "video11749", "sen_id": 215588}, {"caption": "in earth one man talks about something back", "video_id": "video11749", "sen_id": 215589}, {"caption": "two scientists discuss characteristics of the various planets in our solar system", "video_id": "video11749", "sen_id": 215590}, {"caption": "its all about the earth and all planets", "video_id": "video11749", "sen_id": 215591}, {"caption": "the planets are revolving in the dark universe", "video_id": "video11749", "sen_id": 215592}, {"caption": "on space earth is nearing to the other", "video_id": "video11749", "sen_id": 215593}, {"caption": "earth shown from space along with other planets", "video_id": "video11749", "sen_id": 215594}, {"caption": "something is exploding on a big planet", "video_id": "video11749", "sen_id": 215595}, {"caption": "there are some lights and earth is moving", "video_id": "video11749", "sen_id": 215596}, {"caption": "a man exploring and explaining something about the earth", "video_id": "video11749", "sen_id": 215597}, {"caption": " sky and plannet are shown in this video", "video_id": "video11749", "sen_id": 215598}, {"caption": "the exterior of a planet is scrolling across the screen", "video_id": "video11749", "sen_id": 215599}, {"caption": "two guys sitting on a couch talking to eachother while watching television", "video_id": "video10650", "sen_id": 215600}, {"caption": "a couple of men sitting on a leather couch watching television together", "video_id": "video10650", "sen_id": 215601}, {"caption": "there are two men on a couch talking wile one holds a remote and then they snuggle and appear to watch tv", "video_id": "video10650", "sen_id": 215602}, {"caption": "two men are watching television together and providing commentary on their opinions of the shows", "video_id": "video10650", "sen_id": 215603}, {"caption": "a man wearing a cat-in-the-hat tee shirt sits next to a man in a pink-and-blue tee shirt while they use a remote to check what is on television and sit on a black leather sofa", "video_id": "video10650", "sen_id": 215604}, {"caption": "there is a blue shirt man sitting with his friend", "video_id": "video10650", "sen_id": 215605}, {"caption": "two men sit on the couch and one of the men wave the television remote control around declares that this is a television challenge", "video_id": "video10650", "sen_id": 215606}, {"caption": "two people sitting on sofa with a remote on the hand talking each other", "video_id": "video10650", "sen_id": 215607}, {"caption": "two young men watching television on a couch playing a game involving finding bad tv shows", "video_id": "video10650", "sen_id": 215608}, {"caption": "two men seated on a leather sofa making fun", "video_id": "video10650", "sen_id": 215609}, {"caption": "a male couple sit together on the couch and cuddle wuddle", "video_id": "video10650", "sen_id": 215610}, {"caption": "a two boys sitting on sofa one in blue dress wearing color cloth remote in his hand pressing button displaying on screen", "video_id": "video10650", "sen_id": 215611}, {"caption": "two men sitting in the sofa and one of them is holding a remote in his hand discussing something", "video_id": "video10650", "sen_id": 215612}, {"caption": "two guys sit on a couch in graphic tees and talk about their phones and remote controls", "video_id": "video10650", "sen_id": 215613}, {"caption": "two men are sitting on a sofa talking about the tv challenge", "video_id": "video10650", "sen_id": 215614}, {"caption": "web review of a tv show with 2 hosts on a couch", "video_id": "video10650", "sen_id": 215615}, {"caption": "two men are sitting on a large brown couch talking", "video_id": "video10650", "sen_id": 215616}, {"caption": "two men on a couch discuss the rules of the tv challenge", "video_id": "video10650", "sen_id": 215617}, {"caption": "two gay men on a leather couch wave a remote control around and ponder what might be good to watch on television", "video_id": "video10650", "sen_id": 215618}, {"caption": "two guys on a couch are wearing really gay clothes", "video_id": "video10650", "sen_id": 215619}, {"caption": "a woman getting a lot breakfast in the hospital", "video_id": "video11780", "sen_id": 215620}, {"caption": "there is a woman on a hospital bed describing her breakfast in bed", "video_id": "video11780", "sen_id": 215621}, {"caption": "a young asian woman with glasses on is talking to the camera", "video_id": "video11780", "sen_id": 215622}, {"caption": "a woman talking about the breakfast of pancakes and beans and eggs", "video_id": "video11780", "sen_id": 215623}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video11780", "sen_id": 215624}, {"caption": "a new mother is about the breakfast that the hospital offered to her was not so appealing so she asked for some bacon", "video_id": "video11780", "sen_id": 215625}, {"caption": "the breakfast in the hospital and she had just had a baby and her husband adoring his new baby", "video_id": "video11780", "sen_id": 215626}, {"caption": "a man and woman in white dress inside kitchen preparing dishes", "video_id": "video11780", "sen_id": 215627}, {"caption": "a father leans over a newborn while the mother describes breakfast of watermelon and pancakes on a tray with plastic utensils", "video_id": "video11780", "sen_id": 215628}, {"caption": "a woman with her baby and husband in hospital bed is eating breakfast", "video_id": "video11780", "sen_id": 215629}, {"caption": "hey man looking at a baby and a woman talking about food", "video_id": "video11780", "sen_id": 215630}, {"caption": "a patient who just had a baby is about to eat breakfast from the hospital", "video_id": "video11780", "sen_id": 215631}, {"caption": "a woman in a hospital discusses the items she is eating for breakfast", "video_id": "video11780", "sen_id": 215632}, {"caption": "a person gives a piece of cake to a lady in a hospital bed", "video_id": "video11780", "sen_id": 215633}, {"caption": "woman at hospital bed showing the food she gonna eat", "video_id": "video11780", "sen_id": 215634}, {"caption": "a father is talking to baby women is eating fruits", "video_id": "video11780", "sen_id": 215635}, {"caption": "a patient is speaking to the camera with breakkfast on her lap", "video_id": "video11780", "sen_id": 215636}, {"caption": "a woman speaks to the camera for a video segment", "video_id": "video11780", "sen_id": 215637}, {"caption": "a woman in a hospital next to a baby starts showing and describing her breakfast", "video_id": "video11780", "sen_id": 215638}, {"caption": "a woman who just had a baby who didn t like the hospital food had someone bring her a breakfast of pancakes", "video_id": "video11780", "sen_id": 215639}, {"caption": "person with long hair is playing a guitar", "video_id": "video10260", "sen_id": 215640}, {"caption": "a woman plays chords displayed on the screen and sings", "video_id": "video10260", "sen_id": 215641}, {"caption": "a young asian girl with long brown hair playing guitar", "video_id": "video10260", "sen_id": 215642}, {"caption": "a woman shown in black and white is playing a guitar as a part of a tutorial of some sort", "video_id": "video10260", "sen_id": 215643}, {"caption": "a young woman plays acoustic guitar in a black and white video", "video_id": "video10260", "sen_id": 215644}, {"caption": "a black and white graphic showing a asian female playing the folk guitar", "video_id": "video10260", "sen_id": 215645}, {"caption": "a girl with long hairs teaching basic of guitar playing", "video_id": "video10260", "sen_id": 215646}, {"caption": "a woman singing a song with her musial instrument guiter", "video_id": "video10260", "sen_id": 215647}, {"caption": "the girl with the guitar and she is playing in very well", "video_id": "video10260", "sen_id": 215648}, {"caption": "the girl is playing the guitar she has long hair", "video_id": "video10260", "sen_id": 215649}, {"caption": "girl is practicing musical instrument and with short cut codes", "video_id": "video10260", "sen_id": 215650}, {"caption": "a beautiful women holding guitar in hand is singing", "video_id": "video10260", "sen_id": 215651}, {"caption": "there is a women playing guitar with notes", "video_id": "video10260", "sen_id": 215652}, {"caption": "a girl is with smiling face is playing her guitar and the chords she is playing are being displayed on the screen", "video_id": "video10260", "sen_id": 215653}, {"caption": "a girl is sitting and playing an acoustic guitar", "video_id": "video10260", "sen_id": 215654}, {"caption": "a woman with a guitar is singing a song", "video_id": "video10260", "sen_id": 215655}, {"caption": "a female holding a guitar is happily singing", "video_id": "video10260", "sen_id": 215656}, {"caption": "women is singing a song and playing guitar", "video_id": "video10260", "sen_id": 215657}, {"caption": "a beauty girl is practicing the music instrument", "video_id": "video10260", "sen_id": 215658}, {"caption": "a lady sits and plays her guitar softly", "video_id": "video10260", "sen_id": 215659}, {"caption": "a view of someone showing their pet tank", "video_id": "video11510", "sen_id": 215660}, {"caption": "a man is filming his tarantula set up", "video_id": "video11510", "sen_id": 215661}, {"caption": "a plastic box is filled with organic matter and some tree limbs", "video_id": "video11510", "sen_id": 215662}, {"caption": "a man showing and explaining the setup he has for a tarantula spider", "video_id": "video11510", "sen_id": 215663}, {"caption": "a man describes the box he has set up to hold his pet spider", "video_id": "video11510", "sen_id": 215664}, {"caption": "a guy showing off his tarantula spider cage", "video_id": "video11510", "sen_id": 215665}, {"caption": "a man looking into a plastic container for a tarantula that he has", "video_id": "video11510", "sen_id": 215666}, {"caption": "there is a glass tank in front of a store", "video_id": "video11510", "sen_id": 215667}, {"caption": "a man shows a home he has made for a tarantula spider while saying its unconventional", "video_id": "video11510", "sen_id": 215668}, {"caption": "a terarruim with a large tree branch and rock with dirt the lid is off", "video_id": "video11510", "sen_id": 215669}, {"caption": "man recording the conventional habitat of an animal", "video_id": "video11510", "sen_id": 215670}, {"caption": "a man showing the inside of a cage where there is supposed to be a tarantula", "video_id": "video11510", "sen_id": 215671}, {"caption": "a narrator describing a tree spider as a taranula in a terrarium", "video_id": "video11510", "sen_id": 215672}, {"caption": "a closeup of a clear enclosure while a man speaks about a tarantula", "video_id": "video11510", "sen_id": 215673}, {"caption": "a man showing off his pet spider living quarters but the spider being camera shy", "video_id": "video11510", "sen_id": 215674}, {"caption": "a man is looking at the habitat for a tarantula and talking about it", "video_id": "video11510", "sen_id": 215675}, {"caption": "a bowl having something and its on the table", "video_id": "video11510", "sen_id": 215676}, {"caption": "a container made of glass with barks of tree and a small piece of tree branch", "video_id": "video11510", "sen_id": 215677}, {"caption": "something from a tree is pulled of and kept in the bowl", "video_id": "video11510", "sen_id": 215678}, {"caption": "a chef shows his creation inside a glass bowl", "video_id": "video11510", "sen_id": 215679}, {"caption": "two people in blue jackets are playing in the snow", "video_id": "video10447", "sen_id": 215680}, {"caption": "a group of friends are playing in the snow", "video_id": "video10447", "sen_id": 215681}, {"caption": "children outdoors having fun playing in the asnow", "video_id": "video10447", "sen_id": 215682}, {"caption": "a group of girl friends are dress in winter gear and playing in snow", "video_id": "video10447", "sen_id": 215683}, {"caption": "girls using a gopro film them selves playing in the snow", "video_id": "video10447", "sen_id": 215684}, {"caption": "two women drill holes in the ice and dance around", "video_id": "video10447", "sen_id": 215685}, {"caption": "some women spinning around in the snow then skipping", "video_id": "video10447", "sen_id": 215686}, {"caption": "three girls wearing knit caps are playind and dancing", "video_id": "video10447", "sen_id": 215687}, {"caption": "a young woman with a red hat on plays in the snow outside with another girl", "video_id": "video10447", "sen_id": 215688}, {"caption": "two women are playing in the snow covered ground", "video_id": "video10447", "sen_id": 215689}, {"caption": "on a snowy field kids dancing around while music is playing", "video_id": "video10447", "sen_id": 215690}, {"caption": "many people are singing and dancing", "video_id": "video10447", "sen_id": 215691}, {"caption": "two women wearing a red cap are enjoying together", "video_id": "video10447", "sen_id": 215692}, {"caption": "three women s playing in the ice hill and wore red cap", "video_id": "video10447", "sen_id": 215693}, {"caption": "two young women play around in the show before a third person joins in", "video_id": "video10447", "sen_id": 215694}, {"caption": "girls are having fun and dancing in the snow", "video_id": "video10447", "sen_id": 215695}, {"caption": "people in blue coats and red beanies playing and skipping in the snow", "video_id": "video10447", "sen_id": 215696}, {"caption": "there are two blonde girls wearing coats fooling around in the snow", "video_id": "video10447", "sen_id": 215697}, {"caption": "they are dancing and enjoy in cool place", "video_id": "video10447", "sen_id": 215698}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video10447", "sen_id": 215699}, {"caption": "a woman talking and demonstrating how to prepare a meal", "video_id": "video11173", "sen_id": 215700}, {"caption": "a woman with a heavy accent marinates chicken in a type of sauce while describing what she is doing", "video_id": "video11173", "sen_id": 215701}, {"caption": "a woman is in the kitchen putting raw chicken into a bowl with a red marinade", "video_id": "video11173", "sen_id": 215702}, {"caption": "a woman spreads marinade over chicken in a bowl", "video_id": "video11173", "sen_id": 215703}, {"caption": "a woman is talking while mixing what appears to be chicken in a bowl with other ingredients", "video_id": "video11173", "sen_id": 215704}, {"caption": "a lady chef showing how to marinate the chicken", "video_id": "video11173", "sen_id": 215705}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11173", "sen_id": 215706}, {"caption": "making recipe of chicken and marinate it with masala", "video_id": "video11173", "sen_id": 215707}, {"caption": "a woman is prepping a piece of chicken in a marinade", "video_id": "video11173", "sen_id": 215708}, {"caption": "a woman is playing with meat in a bowl and seasoning it", "video_id": "video11173", "sen_id": 215709}, {"caption": "a woman places pieces of chicken into a white bowl of marinade and rubs the marinade over them", "video_id": "video11173", "sen_id": 215710}, {"caption": "there is a women preparing chicken for cooking", "video_id": "video11173", "sen_id": 215711}, {"caption": "one women marinate chicken for half an hour", "video_id": "video11173", "sen_id": 215712}, {"caption": "a woman is applying masala to chicken and marine it", "video_id": "video11173", "sen_id": 215713}, {"caption": "a person is using their hands to mix some food", "video_id": "video11173", "sen_id": 215714}, {"caption": "a woman marinating the meat in a bowl with many ingredients", "video_id": "video11173", "sen_id": 215715}, {"caption": "a woman prepares a meat recipe in a plastic bowl", "video_id": "video11173", "sen_id": 215716}, {"caption": "a woman seasons meat in a white bowl on a counter", "video_id": "video11173", "sen_id": 215717}, {"caption": "a woman is showing how to put sauce onto pieces of chicken", "video_id": "video11173", "sen_id": 215718}, {"caption": "someone is preparing some food in a bowl", "video_id": "video11173", "sen_id": 215719}, {"caption": "a father is on a tube going down a river with a young child and the tube flips over leaving both of them inside the water", "video_id": "video11700", "sen_id": 215720}, {"caption": "a girl and her dad are outside on a tube flipping over", "video_id": "video11700", "sen_id": 215721}, {"caption": "an adult and child tip over while going down a river in a tube", "video_id": "video11700", "sen_id": 215722}, {"caption": "a man with a young girl in his lap flipping a tube in a river", "video_id": "video11700", "sen_id": 215723}, {"caption": "a man with a little girl are floating on an inner tube on a river when they both fall off into the river", "video_id": "video11700", "sen_id": 215724}, {"caption": "a father and a daughter floating in a lake on a inner tube and flips over very suddenly", "video_id": "video11700", "sen_id": 215725}, {"caption": "a man and his daughter are playing on a tire float in the river", "video_id": "video11700", "sen_id": 215726}, {"caption": "a man and a child floating on a intertube in a stream fell over into the water", "video_id": "video11700", "sen_id": 215727}, {"caption": "a dad and his daughter capsizing an intertube", "video_id": "video11700", "sen_id": 215728}, {"caption": "a man and his daughter are peacefully floating down a river then all of a sudden wipeout", "video_id": "video11700", "sen_id": 215729}, {"caption": "a black tshirt man swimming with his child", "video_id": "video11700", "sen_id": 215730}, {"caption": "a man is riding a tire tube in the river with his young daughter and they accidentally fall off", "video_id": "video11700", "sen_id": 215731}, {"caption": "a man is sitting on an innertube with a young girl sitting in his lap the two people fall off of the tube into the water", "video_id": "video11700", "sen_id": 215732}, {"caption": "a little girl is riding on a man on a raft", "video_id": "video11700", "sen_id": 215733}, {"caption": "man in black tshirt with her daughter wearing pink top on his lap in swim tube playing in water stream", "video_id": "video11700", "sen_id": 215734}, {"caption": "a man going on the water with a baby", "video_id": "video11700", "sen_id": 215735}, {"caption": "person with a young child on a tube swimming and fell off the tube", "video_id": "video11700", "sen_id": 215736}, {"caption": "a father floating around a river in a supporting tyre suddenly overturns but much to his relief manages to quickly pick up the daughter and come face up", "video_id": "video11700", "sen_id": 215737}, {"caption": "man floating on an inter tube with child then proceeding to tip the inter-tube over", "video_id": "video11700", "sen_id": 215738}, {"caption": "a person is swimming in a blue lake", "video_id": "video11700", "sen_id": 215739}, {"caption": "a famous actor is describing some events in one of his movies", "video_id": "video11222", "sen_id": 215740}, {"caption": "tobey maguire in an interview talking about his role in the great gatsby", "video_id": "video11222", "sen_id": 215741}, {"caption": "an actor describes a scene in a movie he was in", "video_id": "video11222", "sen_id": 215742}, {"caption": "toby macguire talking in an interview about the movie the great gatsby", "video_id": "video11222", "sen_id": 215743}, {"caption": "an actor talking about filming events talk about events surrounding a movie shoot", "video_id": "video11222", "sen_id": 215744}, {"caption": "toby mcguire is wearing a brown shirt and talking about a movie", "video_id": "video11222", "sen_id": 215745}, {"caption": "a man gives an interview about his movie the great gatsby", "video_id": "video11222", "sen_id": 215746}, {"caption": "toby mcguire sitting and talking about gatsby the movie", "video_id": "video11222", "sen_id": 215747}, {"caption": "a man sitting in a room and sgiving an interview", "video_id": "video11222", "sen_id": 215748}, {"caption": "tobey maguire describes shooting the film the great gatsby", "video_id": "video11222", "sen_id": 215749}, {"caption": "a man in a brown button up shirt talks while sitting next to lamp", "video_id": "video11222", "sen_id": 215750}, {"caption": "toby maguire is being interviewed about the great gatsby in a 1920s setting", "video_id": "video11222", "sen_id": 215751}, {"caption": "a dark haired actor gives an interview about his movie the great gatsby", "video_id": "video11222", "sen_id": 215752}, {"caption": "an actor discusses some of the work he does in an interview", "video_id": "video11222", "sen_id": 215753}, {"caption": "an actor describing some of the scenes he was involded in and how fantastic it was to be able to be involed", "video_id": "video11222", "sen_id": 215754}, {"caption": "a white person with dark brown dressing is sharing about his past memorable days experiences in sitting position", "video_id": "video11222", "sen_id": 215755}, {"caption": "a man is sitting in the room and talking", "video_id": "video11222", "sen_id": 215756}, {"caption": "a man in a brown jacket talking about his role in a movie", "video_id": "video11222", "sen_id": 215757}, {"caption": "a man being interviewed for the movie: the great gatsby", "video_id": "video11222", "sen_id": 215758}, {"caption": "a man is sitting in a chair and talking", "video_id": "video11222", "sen_id": 215759}, {"caption": "there is a man that is talking about different means and ways to spend money on health services", "video_id": "video10486", "sen_id": 215760}, {"caption": "a man in a suit is discussing the benefits of donating to charity", "video_id": "video10486", "sen_id": 215761}, {"caption": "this shows a news show where a man speaks armed forces charities", "video_id": "video10486", "sen_id": 215762}, {"caption": "a man in a suit and tie speaks in front of a blue backdrop", "video_id": "video10486", "sen_id": 215763}, {"caption": "a man in a suit talks about why military charities should be donated to more", "video_id": "video10486", "sen_id": 215764}, {"caption": "a man speaks passionately about a charity or social issue of some sort", "video_id": "video10486", "sen_id": 215765}, {"caption": "prime minister david cameron discusses political issues in a speech", "video_id": "video10486", "sen_id": 215766}, {"caption": "a british politician talking about the arm forces charity", "video_id": "video10486", "sen_id": 215767}, {"caption": "man in black suit is talking on some topic", "video_id": "video10486", "sen_id": 215768}, {"caption": "a man in a suit sits with a blue tie", "video_id": "video10486", "sen_id": 215769}, {"caption": "guy in suit and tie talking to audience", "video_id": "video10486", "sen_id": 215770}, {"caption": "a man in a suit debates something with several people", "video_id": "video10486", "sen_id": 215771}, {"caption": "a man speaking ina news channel", "video_id": "video10486", "sen_id": 215772}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10486", "sen_id": 215773}, {"caption": "their is a man talking about politics and the armed forces", "video_id": "video10486", "sen_id": 215774}, {"caption": "in tv news channel a person in black coat with blue tie giving speech", "video_id": "video10486", "sen_id": 215775}, {"caption": "there is a suit man talking from the studio", "video_id": "video10486", "sen_id": 215776}, {"caption": "the person states that people those who come out of armed services should be put under armed forced charity", "video_id": "video10486", "sen_id": 215777}, {"caption": "a man in black dress wearing tie speaking", "video_id": "video10486", "sen_id": 215778}, {"caption": "a man in a suit is talking on the news", "video_id": "video10486", "sen_id": 215779}, {"caption": "the tiny white goldfish is swimming its way across the tank", "video_id": "video12454", "sen_id": 215780}, {"caption": "a silvery goldfish with orange and yellow highlights moves its delicate fins across a reflective tank in front of a green plant anchored in a white stone", "video_id": "video12454", "sen_id": 215781}, {"caption": "a small gold fish swims next to a leafy plant", "video_id": "video12454", "sen_id": 215782}, {"caption": "a smal white and gold fish swims in a small aquarium", "video_id": "video12454", "sen_id": 215783}, {"caption": "a white goldfish swimming around an aquarium and looking up", "video_id": "video12454", "sen_id": 215784}, {"caption": "a whit colored fish with gold accents is swimming in an aquarium containing a green plant", "video_id": "video12454", "sen_id": 215785}, {"caption": "a white fish is swimming in a tank with a green plant", "video_id": "video12454", "sen_id": 215786}, {"caption": "a fish on a aquarium is swimmiing", "video_id": "video12454", "sen_id": 215787}, {"caption": "a small yellow fish swimming in the container with a green plant", "video_id": "video12454", "sen_id": 215788}, {"caption": "a fish swimming around in a tank with stats about it s length and weight overlayed onto the screen", "video_id": "video12454", "sen_id": 215789}, {"caption": "a cute white jelly fish with beautiful feathers swimming in the aquarium with freely", "video_id": "video12454", "sen_id": 215790}, {"caption": "a silver in white in orange fish swimming in a aquarium", "video_id": "video12454", "sen_id": 215791}, {"caption": "there is a white fish floating in the water", "video_id": "video12454", "sen_id": 215792}, {"caption": "a white and gold fish is swimming in a fish tank", "video_id": "video12454", "sen_id": 215793}, {"caption": "a beautiful golden fish with veiled wings some wings are orange swiming gracefully in a fish tank with green plants and white small rocks", "video_id": "video12454", "sen_id": 215794}, {"caption": "video of a gold fish that was swimming and only 20 grams in weight", "video_id": "video12454", "sen_id": 215795}, {"caption": "a white and gold goldfish is swimming around in a fishtank with one plant in the tank behind it", "video_id": "video12454", "sen_id": 215796}, {"caption": "a pretty fish is swimming in a fish tank", "video_id": "video12454", "sen_id": 215797}, {"caption": "a silver goldfish with a yellow nose dark bulging eyes orange markings swims by a plant with oval green leaves and long roots", "video_id": "video12454", "sen_id": 215798}, {"caption": "a very nice fish which is white and yellow colour is swimming inside the water", "video_id": "video12454", "sen_id": 215799}, {"caption": "a subscription post for the jimmy kimmel show", "video_id": "video10156", "sen_id": 215800}, {"caption": "text that says jimmy kimmel live along with clips from other videos playing on the side", "video_id": "video10156", "sen_id": 215801}, {"caption": "a group of people perform various stunts in a comedy routine", "video_id": "video10156", "sen_id": 215802}, {"caption": "a talk show sign flashes on the screen as his image is shown", "video_id": "video10156", "sen_id": 215803}, {"caption": "a jimmy kimmel live commercial plays showing a man in a grape costume and more", "video_id": "video10156", "sen_id": 215804}, {"caption": "a comedian has many ads about himself for the show", "video_id": "video10156", "sen_id": 215805}, {"caption": "a person dressed in a purple grape costume makes a vulgar gesture", "video_id": "video10156", "sen_id": 215806}, {"caption": "a man dressed in an outfit that looks like a bunch of grapes dances around", "video_id": "video10156", "sen_id": 215807}, {"caption": "red and white letters advertising a television late night show", "video_id": "video10156", "sen_id": 215808}, {"caption": "a video advertisement for the jimmy kimmel show", "video_id": "video10156", "sen_id": 215809}, {"caption": "jimmy kimmel's video ad includes him dressed as grapes and other famous moments", "video_id": "video10156", "sen_id": 215810}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10156", "sen_id": 215811}, {"caption": "jimmy kimmel live abc weeknights 11:35 subscribe from visionary", "video_id": "video10156", "sen_id": 215812}, {"caption": "its a week nights the jimmy kimmel live its a show", "video_id": "video10156", "sen_id": 215813}, {"caption": "jimmy kimmel live an american late-night talk show created and hosted by jimmy kimmel and broadcast-ed on abc- is shown in the presentation for subscription", "video_id": "video10156", "sen_id": 215814}, {"caption": "some scenes of a tv show are showing on tv", "video_id": "video10156", "sen_id": 215815}, {"caption": "an advertisement for a jimmy kimmel with different movie clips", "video_id": "video10156", "sen_id": 215816}, {"caption": "a various videos are displaying in same screen", "video_id": "video10156", "sen_id": 215817}, {"caption": "a youtube outtro video for jimmy kimmel clips advertising the show", "video_id": "video10156", "sen_id": 215818}, {"caption": "a man wearing balloon dress is standing up and various comedy acts are played on screen", "video_id": "video10156", "sen_id": 215819}, {"caption": "a blonde woman wearing a black tank top and colorful pants working out", "video_id": "video12013", "sen_id": 215820}, {"caption": "a blond girl doing exercise in a mat outside her house", "video_id": "video12013", "sen_id": 215821}, {"caption": "a blonde haired woman exercises on a mat in the driveway", "video_id": "video12013", "sen_id": 215822}, {"caption": "a blonde woman in workout attire displays how to perform planks and leg lifts the woman is working out on a black mat outside of a garage on level cement", "video_id": "video12013", "sen_id": 215823}, {"caption": "a blonde woman laying on a mat and doing excersizes", "video_id": "video12013", "sen_id": 215824}, {"caption": "a fit young woman does a series of exercises outside of her house", "video_id": "video12013", "sen_id": 215825}, {"caption": "a blonde-haired woman wearing a gray tank top and multiple-striped leggings does variations of planks leg lifts and pushups on a gray mat in front of her beige garage door", "video_id": "video12013", "sen_id": 215826}, {"caption": "a person with colorful clothes on is exercising on a workout mat", "video_id": "video12013", "sen_id": 215827}, {"caption": "a woman is doing exercises on a black mat outside", "video_id": "video12013", "sen_id": 215828}, {"caption": "a lady in curious pants taking ground excercises", "video_id": "video12013", "sen_id": 215829}, {"caption": " in colorful exercise and a dark grey shirt with red shoes exercising on a black mat in front of a garage door", "video_id": "video12013", "sen_id": 215830}, {"caption": "a girl in multi color pant doing the exercise on the mat she does the leg exercise", "video_id": "video12013", "sen_id": 215831}, {"caption": "a woman is doing leg lifts on a yoga mat in a driveway outside", "video_id": "video12013", "sen_id": 215832}, {"caption": "a woman is taking exercises on the ground", "video_id": "video12013", "sen_id": 215833}, {"caption": "one women making exercise for legs very hardly", "video_id": "video12013", "sen_id": 215834}, {"caption": "a girl in black dress sleeping and moving legs up and down exercise her body", "video_id": "video12013", "sen_id": 215835}, {"caption": "here the lady in this video is showing her exercise which would be benefit", "video_id": "video12013", "sen_id": 215836}, {"caption": "a young woman taking exercises on the ground", "video_id": "video12013", "sen_id": 215837}, {"caption": "a slim girl is doing a exercise in the floor", "video_id": "video12013", "sen_id": 215838}, {"caption": "a girl sleeping and doing exercise her body lying down moving legs", "video_id": "video12013", "sen_id": 215839}, {"caption": "guy painting a figure on a computer program", "video_id": "video11251", "sen_id": 215840}, {"caption": "black and grey figure moving around on a computer design program", "video_id": "video11251", "sen_id": 215841}, {"caption": "a man mumbles while making an animated stick figure", "video_id": "video11251", "sen_id": 215842}, {"caption": "a computer screen displays a sprite animation creating program while a person narrates", "video_id": "video11251", "sen_id": 215843}, {"caption": "a animating software is used to create an animation", "video_id": "video11251", "sen_id": 215844}, {"caption": "display of software that does the animation for animation moview", "video_id": "video11251", "sen_id": 215845}, {"caption": "in system one of the app is there animaiton", "video_id": "video11251", "sen_id": 215846}, {"caption": "an animated creature is sketched in dancing motions", "video_id": "video11251", "sen_id": 215847}, {"caption": "a person is showing how to create a movable cartoon", "video_id": "video11251", "sen_id": 215848}, {"caption": "its animated cartoon jumping on a computer software", "video_id": "video11251", "sen_id": 215849}, {"caption": "the experience of the human telling in the animal pictures in the secssion", "video_id": "video11251", "sen_id": 215850}, {"caption": "a man doing animation drawing on his personnel computer", "video_id": "video11251", "sen_id": 215851}, {"caption": "here animated characters are running doing something with machines in high speed", "video_id": "video11251", "sen_id": 215852}, {"caption": "there is design work progressing in a software", "video_id": "video11251", "sen_id": 215853}, {"caption": "someone is using simple animation software on a computer", "video_id": "video11251", "sen_id": 215854}, {"caption": "a man doing some animation work on his computer", "video_id": "video11251", "sen_id": 215855}, {"caption": "someone is creating some pixel art", "video_id": "video11251", "sen_id": 215856}, {"caption": "the architectureart and demonstration of animation", "video_id": "video11251", "sen_id": 215857}, {"caption": "a man is making a animation film", "video_id": "video11251", "sen_id": 215858}, {"caption": "a voice narrates how to use a particular animation program", "video_id": "video11251", "sen_id": 215859}, {"caption": "a person is playing a shooting video game in the forest", "video_id": "video10847", "sen_id": 215860}, {"caption": "a gun fires at soldiers and a make believe war camp", "video_id": "video10847", "sen_id": 215861}, {"caption": "a man talks over game play footage of a first-person shooter game about an encounter with a trash talker", "video_id": "video10847", "sen_id": 215862}, {"caption": "a character is walking through the woods with his rifle", "video_id": "video10847", "sen_id": 215863}, {"caption": "someone is playing the video game known as call of duty", "video_id": "video10847", "sen_id": 215864}, {"caption": "in a video game someone talking to another person of an individual using vulgarity during a game run", "video_id": "video10847", "sen_id": 215865}, {"caption": "there is a man walking with a gun", "video_id": "video10847", "sen_id": 215866}, {"caption": "video game shooting fire game is play by man makes it", "video_id": "video10847", "sen_id": 215867}, {"caption": "an avatar runs through the wooded landscape while firing his automatic weapon", "video_id": "video10847", "sen_id": 215868}, {"caption": "some one following the people to shoot in a forest", "video_id": "video10847", "sen_id": 215869}, {"caption": "there is someone fighting against his enemies on the grass", "video_id": "video10847", "sen_id": 215870}, {"caption": "there are big tees and logs in the forest", "video_id": "video10847", "sen_id": 215871}, {"caption": "a young man describes and demonstrates a video game he is playing while reporting a third person for violating rules", "video_id": "video10847", "sen_id": 215872}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video10847", "sen_id": 215873}, {"caption": "there are lot of trees in a grassland place", "video_id": "video10847", "sen_id": 215874}, {"caption": "a person is shooting with gun in his hand", "video_id": "video10847", "sen_id": 215875}, {"caption": "a man going and shooting on a forest", "video_id": "video10847", "sen_id": 215876}, {"caption": "someone is playing a first person video game", "video_id": "video10847", "sen_id": 215877}, {"caption": "in a video game a gun is displayed and the player fires the gun to the enemies", "video_id": "video10847", "sen_id": 215878}, {"caption": "a character shoots his machine gun in the jungle", "video_id": "video10847", "sen_id": 215879}, {"caption": "a traveler returns from his first trip abroad in the united states", "video_id": "video11821", "sen_id": 215880}, {"caption": "an older man collecting luggage from the airport and then waiting there", "video_id": "video11821", "sen_id": 215881}, {"caption": "on old man takes his bag off a luggage carousel and waits in an airport", "video_id": "video11821", "sen_id": 215882}, {"caption": "a man from poland will see his twin brother for the first time in over seventy years", "video_id": "video11821", "sen_id": 215883}, {"caption": "an older man with a camera around his next at an airport waiting to see his family", "video_id": "video11821", "sen_id": 215884}, {"caption": "two men are separately shown i a polish airport one man stands at a baggage claim terminal waiting for his luggage to arrive the second man leans against a chrome banister waiting for his brother to arrive", "video_id": "video11821", "sen_id": 215885}, {"caption": "a man with white hair wearing a jean jacket is waiting for his luggage at the airport", "video_id": "video11821", "sen_id": 215886}, {"caption": "a man taking his bag from container", "video_id": "video11821", "sen_id": 215887}, {"caption": "a man is at the airport waiting to meet his twin brother for the first time", "video_id": "video11821", "sen_id": 215888}, {"caption": "older man is taking his bags in the airport", "video_id": "video11821", "sen_id": 215889}, {"caption": "a man who has lived his whole life in poland and didn t know he had a twin brother is being reunited with him after 70 years", "video_id": "video11821", "sen_id": 215890}, {"caption": "it was supposed that a man has just arrived and his luggage has been checked by the custom department people", "video_id": "video11821", "sen_id": 215891}, {"caption": "a man is picking up his luggage off of the conveyor belt at an airport", "video_id": "video11821", "sen_id": 215892}, {"caption": "at the air port the baggage carried by conveyor belt is taken off by its owners", "video_id": "video11821", "sen_id": 215893}, {"caption": "a man getting his luggage at an airport", "video_id": "video11821", "sen_id": 215894}, {"caption": "an old man is taking his luggage from the conveyor belt", "video_id": "video11821", "sen_id": 215895}, {"caption": "in an airport the wise man with checked shirt taking his luggage after customs checking", "video_id": "video11821", "sen_id": 215896}, {"caption": "a man in a airport terminal waiting for his suitcase while his twin brother outside is waiting to see him", "video_id": "video11821", "sen_id": 215897}, {"caption": "old men are at the airport and about to meet", "video_id": "video11821", "sen_id": 215898}, {"caption": "an old man inside is holding on a rail", "video_id": "video11821", "sen_id": 215899}, {"caption": "a snake slithering sideways to the right over red dirt", "video_id": "video10508", "sen_id": 215900}, {"caption": "a patterned gray snake slithers across ridged brown sand with its black tongue stretching out", "video_id": "video10508", "sen_id": 215901}, {"caption": "a snake slithers on dirt while a man talks about the snake in a voice over", "video_id": "video10508", "sen_id": 215902}, {"caption": "the snake can reach speeds of up to 18mph", "video_id": "video10508", "sen_id": 215903}, {"caption": "a man voices over a scene of a sidewinder in the desert", "video_id": "video10508", "sen_id": 215904}, {"caption": "a light colored snake is crawling through a dessert area as a commenter states that the adder can travel up to 18 miles per hour", "video_id": "video10508", "sen_id": 215905}, {"caption": "a guy talks about how fast a snake can move around on dirt and sand", "video_id": "video10508", "sen_id": 215906}, {"caption": "there is a snake moving on the floor", "video_id": "video10508", "sen_id": 215907}, {"caption": "a documentary of a snake in a dessert the commentator gives many details", "video_id": "video10508", "sen_id": 215908}, {"caption": "a television show about the movement of very poisonous snake", "video_id": "video10508", "sen_id": 215909}, {"caption": "a snake slithers across a red dessert and stops to strike", "video_id": "video10508", "sen_id": 215910}, {"caption": "the dim white snake on the floor it will try to find out something and want to reached at that place", "video_id": "video10508", "sen_id": 215911}, {"caption": "a white snake slithers over orange sand while a man s voice details its speed", "video_id": "video10508", "sen_id": 215912}, {"caption": "a gray looking snake crawls across brown sand", "video_id": "video10508", "sen_id": 215913}, {"caption": "a brown snake is slithering around on its belly", "video_id": "video10508", "sen_id": 215914}, {"caption": "a snake species from a movement scale of crawl walk", "video_id": "video10508", "sen_id": 215915}, {"caption": "from speed kills this snake is going side ways", "video_id": "video10508", "sen_id": 215916}, {"caption": "a snake that is tan with white spots is seen gliding over the dark brown colored sand", "video_id": "video10508", "sen_id": 215917}, {"caption": " with a description of how fast it can travel and what kind it is", "video_id": "video10508", "sen_id": 215918}, {"caption": "a narrator talks about the sidewinder a desert dwelling snake", "video_id": "video10508", "sen_id": 215919}, {"caption": "a girl live streaming herself playing an online game", "video_id": "video10694", "sen_id": 215920}, {"caption": "a man films himself while he plays a video game", "video_id": "video10694", "sen_id": 215921}, {"caption": "a man with glasses is stretching and playing a video game", "video_id": "video10694", "sen_id": 215922}, {"caption": "a pop up box with an accelerating bar and a wall with a v and an s on it", "video_id": "video10694", "sen_id": 215923}, {"caption": "a person is shown in a small screen as the screen shows characters in a game", "video_id": "video10694", "sen_id": 215924}, {"caption": "there is a man with specs talking with webcam", "video_id": "video10694", "sen_id": 215925}, {"caption": "man plays video game while sitting in his chair", "video_id": "video10694", "sen_id": 215926}, {"caption": "a guy playing a computer game while streching his arms", "video_id": "video10694", "sen_id": 215927}, {"caption": "its game lady with specs and curly hair stretch her hair", "video_id": "video10694", "sen_id": 215928}, {"caption": "a tv presentation begins and due to technical trouble nothing is clear", "video_id": "video10694", "sen_id": 215929}, {"caption": "a man on the left lower corner of the screen talks about a video game that s show on the rest of the screen", "video_id": "video10694", "sen_id": 215930}, {"caption": "the lady talking about the game verses two teams", "video_id": "video10694", "sen_id": 215931}, {"caption": "a person on the left of the screen live streaming a video of him playing a type of video game where on character battles another", "video_id": "video10694", "sen_id": 215932}, {"caption": "an asian man is streaming the online card game hearthstone", "video_id": "video10694", "sen_id": 215933}, {"caption": "person discussing a video game through a taped video session", "video_id": "video10694", "sen_id": 215934}, {"caption": "an online multiplayer game is being played by a young woman in glasses", "video_id": "video10694", "sen_id": 215935}, {"caption": "a woman stretches and narrates a video game between two characters", "video_id": "video10694", "sen_id": 215936}, {"caption": "guy stretching his hands and talking about a video game", "video_id": "video10694", "sen_id": 215937}, {"caption": "there is a woman with black long hair talking on a split screen that has different characters shown", "video_id": "video10694", "sen_id": 215938}, {"caption": "some video game things are showing on screen", "video_id": "video10694", "sen_id": 215939}, {"caption": "a woman working out with her baby in her arms", "video_id": "video11968", "sen_id": 215940}, {"caption": "a woman doing sit ups while her baby rests in her lap", "video_id": "video11968", "sen_id": 215941}, {"caption": "a woman is holding her baby and playing with him", "video_id": "video11968", "sen_id": 215942}, {"caption": "a woman is doing sit up with her baby in her lap", "video_id": "video11968", "sen_id": 215943}, {"caption": "a woman holding a baby giving it attention and doing yoga exercises", "video_id": "video11968", "sen_id": 215944}, {"caption": "a woman with young baby sitting on top of her laps is doing sit-up exercise", "video_id": "video11968", "sen_id": 215945}, {"caption": "a new mom works out while holding her baby", "video_id": "video11968", "sen_id": 215946}, {"caption": "woman in a purple tank top working out with a baby in her lap", "video_id": "video11968", "sen_id": 215947}, {"caption": "a woman is sitting on the floor with a baby doing pilates exercises", "video_id": "video11968", "sen_id": 215948}, {"caption": "a lady in a purple tank top and black yoga pants is exercising with her infant child", "video_id": "video11968", "sen_id": 215949}, {"caption": "woman does abdominal exercises while holding a baby on her lap", "video_id": "video11968", "sen_id": 215950}, {"caption": "a woman in a purple top is doing exercises while holding her baby", "video_id": "video11968", "sen_id": 215951}, {"caption": "a woman does exercise while holding her newborn baby in her lap", "video_id": "video11968", "sen_id": 215952}, {"caption": "a mother exercising with her baby on her belly", "video_id": "video11968", "sen_id": 215953}, {"caption": "a woman exercising on the floor with a baby", "video_id": "video11968", "sen_id": 215954}, {"caption": "a baby is with her mother in the hospital crying loudly", "video_id": "video11968", "sen_id": 215955}, {"caption": "a woman is showing how she is doing exercise while taking care of her baby at the same time", "video_id": "video11968", "sen_id": 215956}, {"caption": "one women exercise with his baby in hip and down", "video_id": "video11968", "sen_id": 215957}, {"caption": "a girl in blue dress cloth wearing and baby in black dress sleeping on lap kissing shown on screen", "video_id": "video11968", "sen_id": 215958}, {"caption": "a woman in a room is playing with a baby", "video_id": "video11968", "sen_id": 215959}, {"caption": "a woman is stirring chicken drumsticks into a sauce in pan on the stove", "video_id": "video10473", "sen_id": 215960}, {"caption": "a woman browning chicken in a pot on the stove", "video_id": "video10473", "sen_id": 215961}, {"caption": "a person is stirring chicken in a wok with a wooden spoon on an electric stove only his hands are visible", "video_id": "video10473", "sen_id": 215962}, {"caption": "a woman is pan-frying breaded chicken drumsticks in a sauce which could be made spicy if one wishes to have it that way", "video_id": "video10473", "sen_id": 215963}, {"caption": "a chef works on a recipe by putting chicken pieces into a skillet", "video_id": "video10473", "sen_id": 215964}, {"caption": "a woman making chicken and putting sauce on it", "video_id": "video10473", "sen_id": 215965}, {"caption": "a woman cooking the fantastic chicken dish and explain that also", "video_id": "video10473", "sen_id": 215966}, {"caption": "the men making the griled chicken and he is poring the spices in the kitchen other receipes are on the stand", "video_id": "video10473", "sen_id": 215967}, {"caption": "a women is cooking the leg piece with sause", "video_id": "video10473", "sen_id": 215968}, {"caption": "someone is coating fried chicken in a red sauce", "video_id": "video10473", "sen_id": 215969}, {"caption": "a young woman explains the process of cooking food", "video_id": "video10473", "sen_id": 215970}, {"caption": "there is a women making chicken dish with its leg part", "video_id": "video10473", "sen_id": 215971}, {"caption": "a woman describing how to put sauces on chicken while its cooking in a pan", "video_id": "video10473", "sen_id": 215972}, {"caption": "someone is cooking delicious chicken curry adding salt and chilli powder in a black cooker", "video_id": "video10473", "sen_id": 215973}, {"caption": "this is a video of a woman cooking fried chicken in a skillet on the stove and saying that this is going to be a spicy fried chicken", "video_id": "video10473", "sen_id": 215974}, {"caption": "a woman is cooking fried chicken on the stove", "video_id": "video10473", "sen_id": 215975}, {"caption": "on hot stove in pan meat is placed its cooked on both sides by rotating it", "video_id": "video10473", "sen_id": 215976}, {"caption": "a lady is cooking chicken in a sauce on the stove", "video_id": "video10473", "sen_id": 215977}, {"caption": "a woman is stirring chicken legs in red sauce in a wide mouthed saute pan on the stove", "video_id": "video10473", "sen_id": 215978}, {"caption": "a women is frying and tossing chicken pieces in frying pan", "video_id": "video10473", "sen_id": 215979}, {"caption": "a man is lying on the ground bleeding while another man points at him", "video_id": "video12157", "sen_id": 215980}, {"caption": "two men fighting in an action scene in a foreign film", "video_id": "video12157", "sen_id": 215981}, {"caption": "a man bleeding from his head on the ground with another man pointing and sternly talking to the man", "video_id": "video12157", "sen_id": 215982}, {"caption": "a man points his finger at another man that is on the floor", "video_id": "video12157", "sen_id": 215983}, {"caption": "a large man kills another man and then walks away", "video_id": "video12157", "sen_id": 215984}, {"caption": "foreign film", "video_id": "video12157", "sen_id": 215985}, {"caption": "a man who is bloody in the face is being talked to by another man in a white tank top", "video_id": "video12157", "sen_id": 215986}, {"caption": "two foreign actors complete a fight scene complete with back talk and one actor passing out from his injuries", "video_id": "video12157", "sen_id": 215987}, {"caption": "a hero is beating villian in tamil flim", "video_id": "video12157", "sen_id": 215988}, {"caption": "man is fighting and talking with his opponent on the floor", "video_id": "video12157", "sen_id": 215989}, {"caption": "there is a man with red shirt falling down on the floor", "video_id": "video12157", "sen_id": 215990}, {"caption": "a bloody man is on the ground defeated by another man standing over him", "video_id": "video12157", "sen_id": 215991}, {"caption": "two men fighting then one man walks away the victor", "video_id": "video12157", "sen_id": 215992}, {"caption": "an actor from a native language movie warns the actor he has thrown down and walks away in style", "video_id": "video12157", "sen_id": 215993}, {"caption": "a man makes threats to a bloody man on the floor", "video_id": "video12157", "sen_id": 215994}, {"caption": "a man is bleeding on the floor in a red shirt while a man in a white shirt speaks to him", "video_id": "video12157", "sen_id": 215995}, {"caption": "the hero of the movie beats up the villain and throws him down to the ground", "video_id": "video12157", "sen_id": 215996}, {"caption": "a man angrily talking to a injured man on the floor", "video_id": "video12157", "sen_id": 215997}, {"caption": "a very well built hispanic man in a white undershirt is threatening a man that is laying on the floor the man on lying on the floor looks as if he has been badly beaten", "video_id": "video12157", "sen_id": 215998}, {"caption": "a man who has just knocked another man down in a fight stands over him and taunts him before walking out of the room", "video_id": "video12157", "sen_id": 215999}, {"caption": "a clip of a boy on a video game planting and making things", "video_id": "video12515", "sen_id": 216000}, {"caption": "a man giving his reviews on a certain online game", "video_id": "video12515", "sen_id": 216001}, {"caption": "an anime character is cutting wood and building a house", "video_id": "video12515", "sen_id": 216002}, {"caption": "man talks about a computer game in which a character is manipulating objects", "video_id": "video12515", "sen_id": 216003}, {"caption": "a video game character doing various activities outside", "video_id": "video12515", "sen_id": 216004}, {"caption": "its a animated snow game for kids", "video_id": "video12515", "sen_id": 216005}, {"caption": "a small figure is chopping gray rocks and small trees carrying a wood structure with pointed top building a low partition", "video_id": "video12515", "sen_id": 216006}, {"caption": "a player is giving impressions for kingdom for keflings", "video_id": "video12515", "sen_id": 216007}, {"caption": "a man is describing a video game he is currently playing", "video_id": "video12515", "sen_id": 216008}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video12515", "sen_id": 216009}, {"caption": "there is a man working hard on the ground", "video_id": "video12515", "sen_id": 216010}, {"caption": "a man is playing a game and talking about the games features and what he thinks about it", "video_id": "video12515", "sen_id": 216011}, {"caption": "we see an avatar in a video game and hear a man reviewing the game", "video_id": "video12515", "sen_id": 216012}, {"caption": "a cartoon dolls picture video walking and lifting things displaying on screen", "video_id": "video12515", "sen_id": 216013}, {"caption": "a person is playing some dumb little game", "video_id": "video12515", "sen_id": 216014}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video12515", "sen_id": 216015}, {"caption": "an animated cartoon character doing something on the home", "video_id": "video12515", "sen_id": 216016}, {"caption": "a young gentleman describes and reviews the game kingdom for keflings", "video_id": "video12515", "sen_id": 216017}, {"caption": "animated characters are movingdancing talking and playing", "video_id": "video12515", "sen_id": 216018}, {"caption": "someone is playing a stupid looking game", "video_id": "video12515", "sen_id": 216019}, {"caption": "a person is cooking some starch in a pan", "video_id": "video11568", "sen_id": 216020}, {"caption": "a person is putting chopped onions in a skillet of hot oil", "video_id": "video11568", "sen_id": 216021}, {"caption": "a chef starts a recipe by adding chopped onions to hot oil", "video_id": "video11568", "sen_id": 216022}, {"caption": "a man adds chopped onions to hot oil in a pot on the stove", "video_id": "video11568", "sen_id": 216023}, {"caption": "a man demonstrating how to cook as he adds chopped onions into the pot", "video_id": "video11568", "sen_id": 216024}, {"caption": "a bowl placed in a electric stove with oil and heated and grinded paste of the onions are put in the bowl and stirr well with spoon", "video_id": "video11568", "sen_id": 216025}, {"caption": "a man cooking with choped onions an stiring well", "video_id": "video11568", "sen_id": 216026}, {"caption": "someone is showing how they make a particular dish", "video_id": "video11568", "sen_id": 216027}, {"caption": "a cook adds onions to a hot pot of oil", "video_id": "video11568", "sen_id": 216028}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11568", "sen_id": 216029}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11568", "sen_id": 216030}, {"caption": "a black color bowl some food items are poured and mixed", "video_id": "video11568", "sen_id": 216031}, {"caption": "step-by-step directions with visuals for a recipe a man is narrating", "video_id": "video11568", "sen_id": 216032}, {"caption": "a man telling to put the onion on the pan and mix it well", "video_id": "video11568", "sen_id": 216033}, {"caption": "the chef adds the onions to the pan with hot oil", "video_id": "video11568", "sen_id": 216034}, {"caption": "in the kitchen a man cooking with onion", "video_id": "video11568", "sen_id": 216035}, {"caption": "a lady pouring some food on a tawa which is full of oil", "video_id": "video11568", "sen_id": 216036}, {"caption": "an instructor pouring chopped onions into a pan to demonstrate a cooking method", "video_id": "video11568", "sen_id": 216037}, {"caption": "a person with wooden tool cooking in the kitchen", "video_id": "video11568", "sen_id": 216038}, {"caption": "a person is making some food in a pot", "video_id": "video11568", "sen_id": 216039}, {"caption": "cartoon of ships in space with fighter pilots and robots on asteroids", "video_id": "video11665", "sen_id": 216040}, {"caption": "a cartoon spaceship flies past meteors and other vessels", "video_id": "video11665", "sen_id": 216041}, {"caption": "animated video of spaceships flying through space while dramatic music plays", "video_id": "video11665", "sen_id": 216042}, {"caption": "animated ships navigate through a meteor field as a robot looks on", "video_id": "video11665", "sen_id": 216043}, {"caption": "there is a squadron in space of fighters and space fleet heading through an asteroid field", "video_id": "video11665", "sen_id": 216044}, {"caption": "a cartoon version of star wars that shows a rebel x-wing fighter passing through an asteroid field", "video_id": "video11665", "sen_id": 216045}, {"caption": "a cartoon of a robot on top of some rocks", "video_id": "video11665", "sen_id": 216046}, {"caption": "an animated fighter jet is flying through space", "video_id": "video11665", "sen_id": 216047}, {"caption": "a man in a spaceship is flying through asteroids in a military setting to tense music", "video_id": "video11665", "sen_id": 216048}, {"caption": "this looks like a scene from an animated movie with flying aircraft", "video_id": "video11665", "sen_id": 216049}, {"caption": "some out of space star wars on a mission", "video_id": "video11665", "sen_id": 216050}, {"caption": "a cartoon character is flying a ship in outer space with other ships", "video_id": "video11665", "sen_id": 216051}, {"caption": "a space craft flier navigates between larger space ships and meteors", "video_id": "video11665", "sen_id": 216052}, {"caption": "person is playing game and flying into the space", "video_id": "video11665", "sen_id": 216053}, {"caption": "bunch of cartoon characters talking on the screen", "video_id": "video11665", "sen_id": 216054}, {"caption": "a flight is coming and a man sitting on that", "video_id": "video11665", "sen_id": 216055}, {"caption": "an animated space ship with a driver is flying around the galaxy", "video_id": "video11665", "sen_id": 216056}, {"caption": "a group of space ships move their way through an asteroid field", "video_id": "video11665", "sen_id": 216057}, {"caption": "video game in attack and counter attack on earth by the aleins", "video_id": "video11665", "sen_id": 216058}, {"caption": "a x wing fighter is flying around in space", "video_id": "video11665", "sen_id": 216059}, {"caption": "a woman in a black business suit gives an oral presentation", "video_id": "video11865", "sen_id": 216060}, {"caption": "a professional woman speaker provided an example of how to use a pinball machine she was dressed in a black suite with a white collar shirt and had shoulder length brown hair she also wore glasses", "video_id": "video11865", "sen_id": 216061}, {"caption": "a woman giving a seminar on a toy", "video_id": "video11865", "sen_id": 216062}, {"caption": "a lady in a suit standing beside a large x speaking about a pinball", "video_id": "video11865", "sen_id": 216063}, {"caption": "a woman in a suit is delivering a presentation of a technical nature probably about a technology product", "video_id": "video11865", "sen_id": 216064}, {"caption": "a woman is wearing a suit and is giving a lecture on a stage", "video_id": "video11865", "sen_id": 216065}, {"caption": "a woman holds a microphone while standing next to a giant x and talks about pinball", "video_id": "video11865", "sen_id": 216066}, {"caption": "a woman in a suit is explaining how the game of pinball works", "video_id": "video11865", "sen_id": 216067}, {"caption": "a woamn is standing on a stage by a big letter x", "video_id": "video11865", "sen_id": 216068}, {"caption": "a woman in a pant suit talking about a pinball", "video_id": "video11865", "sen_id": 216069}, {"caption": "a woman standing by a giant x giving a lecture", "video_id": "video11865", "sen_id": 216070}, {"caption": "a woman in black explaining something on a stage with a large x to an audience", "video_id": "video11865", "sen_id": 216071}, {"caption": "a woman dressed in a buisness suit and sanding up giving a presentation", "video_id": "video11865", "sen_id": 216072}, {"caption": "a talking woman in a black pantsuit stands by a large white x in front of a crinkled metallic wall", "video_id": "video11865", "sen_id": 216073}, {"caption": "a woman in a suit giving a speech with an x behind her", "video_id": "video11865", "sen_id": 216074}, {"caption": "a woman in a black suit and white shirt is on stage with a big white letter x", "video_id": "video11865", "sen_id": 216075}, {"caption": "a woman wearing black pant and coat speaking about something from a room", "video_id": "video11865", "sen_id": 216076}, {"caption": "a woman talks to a crowb while standing next to a big x", "video_id": "video11865", "sen_id": 216077}, {"caption": "a woman on stage is describing how to play pinball", "video_id": "video11865", "sen_id": 216078}, {"caption": "a woman with a black suit is talking on tv", "video_id": "video11865", "sen_id": 216079}, {"caption": "there is an enormous brown spider with long legs crawling on a man's hand the camera zooms in on the spider", "video_id": "video12637", "sen_id": 216080}, {"caption": "a small spider is crawling on the hand of a person", "video_id": "video12637", "sen_id": 216081}, {"caption": "a man lets a small brown spider crawl on his hand", "video_id": "video12637", "sen_id": 216082}, {"caption": "a spider which is crawling on a human hand", "video_id": "video12637", "sen_id": 216083}, {"caption": "a man is holding a small spider in one of his hands", "video_id": "video12637", "sen_id": 216084}, {"caption": "a hand removes a large spider from a container and the spider then crawls on the hand", "video_id": "video12637", "sen_id": 216085}, {"caption": "a person examines spider like thing sitting on his hand", "video_id": "video12637", "sen_id": 216086}, {"caption": "a women is displaying and describing a spider in a hand", "video_id": "video12637", "sen_id": 216087}, {"caption": "one spider can come to hand of a man and bites", "video_id": "video12637", "sen_id": 216088}, {"caption": "a man takes a spider out of a tupperware bowl and allowed it to wonder up his hand while you can hear the sound of sirens in the back ground", "video_id": "video12637", "sen_id": 216089}, {"caption": "spider in the arms it may be bite and it will be dangerous", "video_id": "video12637", "sen_id": 216090}, {"caption": "a man allows a wild spider to crawl on this hands without any fear", "video_id": "video12637", "sen_id": 216091}, {"caption": "a spider is lifted from an object and it goes around the palms of a person", "video_id": "video12637", "sen_id": 216092}, {"caption": "a person holding a spider in their hands and talking to it", "video_id": "video12637", "sen_id": 216093}, {"caption": "a person lets spider climb on the hand and shows it closer to camera", "video_id": "video12637", "sen_id": 216094}, {"caption": "a spider is moving on the hand of a man", "video_id": "video12637", "sen_id": 216095}, {"caption": "a mad takes a spider out of a box and allows it to crawl on his hand", "video_id": "video12637", "sen_id": 216096}, {"caption": "a man took a a spider in his hand and its moving in his hand", "video_id": "video12637", "sen_id": 216097}, {"caption": "a black spider is just walking on the person hand", "video_id": "video12637", "sen_id": 216098}, {"caption": "spider climbing on the persons hand and show closer to camera", "video_id": "video12637", "sen_id": 216099}, {"caption": "a person twisting and molding something from what looks like clay", "video_id": "video10818", "sen_id": 216100}, {"caption": "a person rolling pieces of cookery into a strand", "video_id": "video10818", "sen_id": 216101}, {"caption": "a person twists up different pieces of food on a plate", "video_id": "video10818", "sen_id": 216102}, {"caption": "a person using clay and molding it into a twist", "video_id": "video10818", "sen_id": 216103}, {"caption": "the twisting of a red matterial and brown material", "video_id": "video10818", "sen_id": 216104}, {"caption": "a person is putting some dough together in a swirl", "video_id": "video10818", "sen_id": 216105}, {"caption": "someone is twisting read material around a tan colored material to make a shape on a plate", "video_id": "video10818", "sen_id": 216106}, {"caption": "a female chef constructs some small appetizers and places them on a white plate", "video_id": "video10818", "sen_id": 216107}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10818", "sen_id": 216108}, {"caption": "a person who is making some kind of dish in which you twist two types of things together", "video_id": "video10818", "sen_id": 216109}, {"caption": "a person is molding dough for baking cookies or dessert", "video_id": "video10818", "sen_id": 216110}, {"caption": "a person molds two substances together while directions are posted along the bottom of the screen and soft guitar music is playing in the background", "video_id": "video10818", "sen_id": 216111}, {"caption": "there is someone preparing a dish in a plate", "video_id": "video10818", "sen_id": 216112}, {"caption": "someone making a receipe with 2 ingredients", "video_id": "video10818", "sen_id": 216113}, {"caption": "a woman is showing how to prepare a dish using twisting motion of the ingredients", "video_id": "video10818", "sen_id": 216114}, {"caption": "someone is doing something like designing in clay", "video_id": "video10818", "sen_id": 216115}, {"caption": "a person mixing diferent doughs together", "video_id": "video10818", "sen_id": 216116}, {"caption": "a person is demonstrating how to make cookie twists", "video_id": "video10818", "sen_id": 216117}, {"caption": "a person is decorating some dish in a white plate", "video_id": "video10818", "sen_id": 216118}, {"caption": "a person braiding a strip of red dough and a strip of white dough together", "video_id": "video10818", "sen_id": 216119}, {"caption": "women are running around a track", "video_id": "video10456", "sen_id": 216120}, {"caption": "women competing in the track and field distance race", "video_id": "video10456", "sen_id": 216121}, {"caption": "a group of young girls are racing around a school track", "video_id": "video10456", "sen_id": 216122}, {"caption": "people are running a track race with someone commentating", "video_id": "video10456", "sen_id": 216123}, {"caption": "multiple girls race across a track in a long distance race", "video_id": "video10456", "sen_id": 216124}, {"caption": "commentator gives details about a women's track race", "video_id": "video10456", "sen_id": 216125}, {"caption": "a group of women are racing on a track while spectators watch them", "video_id": "video10456", "sen_id": 216126}, {"caption": "a group of young women running on an outdoor track", "video_id": "video10456", "sen_id": 216127}, {"caption": "multiple girls running on a track in a track field in a competition", "video_id": "video10456", "sen_id": 216128}, {"caption": "women race in a track meet while men comment with tips for running", "video_id": "video10456", "sen_id": 216129}, {"caption": "men discuss track and field while a video of women running plays", "video_id": "video10456", "sen_id": 216130}, {"caption": "young girls running a long distance track race", "video_id": "video10456", "sen_id": 216131}, {"caption": "a group of females running on a track outside", "video_id": "video10456", "sen_id": 216132}, {"caption": "a man commentating a girls track race that is being held outside infront of a live audience", "video_id": "video10456", "sen_id": 216133}, {"caption": "a girls track team running while being narrated by a man", "video_id": "video10456", "sen_id": 216134}, {"caption": "there is a yellow jersey woman running on the track", "video_id": "video10456", "sen_id": 216135}, {"caption": "a group of athletes running on running track and a referee shows his hand to signal the athletes run on a single track", "video_id": "video10456", "sen_id": 216136}, {"caption": "there are women running the 200-400 meter race at the home stretch", "video_id": "video10456", "sen_id": 216137}, {"caption": "people discussing a track race that is happening on a black track with white lines on it", "video_id": "video10456", "sen_id": 216138}, {"caption": "an announcer is talking about the 200 meter and how to finish the home stretch while the girl runners are finishing the race", "video_id": "video10456", "sen_id": 216139}, {"caption": "a line of princess dolls and clothing to fit them", "video_id": "video11310", "sen_id": 216140}, {"caption": "a woman who collects doll clothing shows her collection and plays with it", "video_id": "video11310", "sen_id": 216141}, {"caption": "a polly pocket collection with many accessories to choose from", "video_id": "video11310", "sen_id": 216142}, {"caption": "doll clothes are laid out in rows then a woman picks up a miniature doll", "video_id": "video11310", "sen_id": 216143}, {"caption": "three doll figures smile doll garments are neatly aligned in two long rows in front of a row of dolls and a hand chooses and lifts up certain molded garments", "video_id": "video11310", "sen_id": 216144}, {"caption": "colourful toys are placed in a table and a man picks up some of the toys", "video_id": "video11310", "sen_id": 216145}, {"caption": "there are all the characters of barbie dolls", "video_id": "video11310", "sen_id": 216146}, {"caption": "and different kind of dresses for the small doll", "video_id": "video11310", "sen_id": 216147}, {"caption": "many coloured dolls are arranged in a row and their dresses are arranged beneath them", "video_id": "video11310", "sen_id": 216148}, {"caption": "a lady explains how easy and enjoyable it would be to dress up these dolls with plastic pop out dresses coming in the pack", "video_id": "video11310", "sen_id": 216149}, {"caption": "a dollys are arranged on a show", "video_id": "video11310", "sen_id": 216150}, {"caption": "there are some verity toys with interesting designs", "video_id": "video11310", "sen_id": 216151}, {"caption": "a person is videotaping a collection of toy barbies", "video_id": "video11310", "sen_id": 216152}, {"caption": "a woman explains a toy s various outfit selection", "video_id": "video11310", "sen_id": 216153}, {"caption": "small little dolls with different dress its so colorful to see", "video_id": "video11310", "sen_id": 216154}, {"caption": "all dolls are placed on a table by a person", "video_id": "video11310", "sen_id": 216155}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video11310", "sen_id": 216156}, {"caption": "a woman showing outfits and dolls called the magic clip dolls", "video_id": "video11310", "sen_id": 216157}, {"caption": "polly pocket toys are being reviewed while many of the toys are shown", "video_id": "video11310", "sen_id": 216158}, {"caption": "a woman displaying polly pocket clothing options", "video_id": "video11310", "sen_id": 216159}, {"caption": "an xbox live tutorial on what to do when a certain screen pops up", "video_id": "video10470", "sen_id": 216160}, {"caption": "the xbox live sign-in screen displays different avatars on the screen", "video_id": "video10470", "sen_id": 216161}, {"caption": "a man is talking about how to get into xbox live", "video_id": "video10470", "sen_id": 216162}, {"caption": "an animated ninja a boy with a teddy bear and a pale white man spin or sleep onscreen", "video_id": "video10470", "sen_id": 216163}, {"caption": "three cute boys are animated and dancing", "video_id": "video10470", "sen_id": 216164}, {"caption": "a person explains how he will be showing you around using the tools in a program on the pc", "video_id": "video10470", "sen_id": 216165}, {"caption": "a young guy gives an xbox live tutorial", "video_id": "video10470", "sen_id": 216166}, {"caption": "there are three figures being shown on a video game", "video_id": "video10470", "sen_id": 216167}, {"caption": "three videogame characters moving around on a login screen", "video_id": "video10470", "sen_id": 216168}, {"caption": "man talks about a way to log into xbox live", "video_id": "video10470", "sen_id": 216169}, {"caption": "man going through his person friends list on xbox one or similar device", "video_id": "video10470", "sen_id": 216170}, {"caption": "there is a helmet man standing on the floor", "video_id": "video10470", "sen_id": 216171}, {"caption": "a man describes and demonstrates how to use a video game system", "video_id": "video10470", "sen_id": 216172}, {"caption": "the black man trounces around trying to get the attention of others", "video_id": "video10470", "sen_id": 216173}, {"caption": "a guy talks as a character wearing a black suit and helmet floats and spins around on the footage", "video_id": "video10470", "sen_id": 216174}, {"caption": "a young man is talking about characters he uses while playing xbox live", "video_id": "video10470", "sen_id": 216175}, {"caption": "a boy demonstrates a video game menu", "video_id": "video10470", "sen_id": 216176}, {"caption": "a boy is giving tips to play xbox games and he has got lots information", "video_id": "video10470", "sen_id": 216177}, {"caption": "little animated people stand in front of a gray background", "video_id": "video10470", "sen_id": 216178}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10470", "sen_id": 216179}, {"caption": "a person in a wet suit riding a wave near other surfers in the water", "video_id": "video11924", "sen_id": 216180}, {"caption": "a person surfing a very large wave in the ocean near rock cliffs", "video_id": "video11924", "sen_id": 216181}, {"caption": "man riding on top of large blue and green waves near rocks", "video_id": "video11924", "sen_id": 216182}, {"caption": "a surfer is riding the waves at the beach", "video_id": "video11924", "sen_id": 216183}, {"caption": "a man riding waves with music playing in th background", "video_id": "video11924", "sen_id": 216184}, {"caption": "a surfer rides a very large wave near a rocky coast line", "video_id": "video11924", "sen_id": 216185}, {"caption": "a surfer wearing a black wet suit effortless glides up and down along the edge of a wave which is curling over while being sprayed with ocean water", "video_id": "video11924", "sen_id": 216186}, {"caption": "a man surfing a wave all the way to the beach", "video_id": "video11924", "sen_id": 216187}, {"caption": "a man rides waves surrounded by steep cliffs", "video_id": "video11924", "sen_id": 216188}, {"caption": "a person is catching some waves while surfing they had a solid wave they conquered", "video_id": "video11924", "sen_id": 216189}, {"caption": "a sufer is maneuvering in big waves under big wind", "video_id": "video11924", "sen_id": 216190}, {"caption": "a person in a black wet suit surfs a large wave in heavy surf", "video_id": "video11924", "sen_id": 216191}, {"caption": "surfers surf on a large wave at the beach", "video_id": "video11924", "sen_id": 216192}, {"caption": "a person surfing on waves in the ocean", "video_id": "video11924", "sen_id": 216193}, {"caption": "a surfer surfs on a large wave at the beach", "video_id": "video11924", "sen_id": 216194}, {"caption": "there is a man surfing beautifully with waves", "video_id": "video11924", "sen_id": 216195}, {"caption": "a men is surfing on wave in deep sea", "video_id": "video11924", "sen_id": 216196}, {"caption": "a surfer on a board riding along waves along a rocky shore", "video_id": "video11924", "sen_id": 216197}, {"caption": "a person is surfing on the waves in the sea", "video_id": "video11924", "sen_id": 216198}, {"caption": "guy surfing in high ocean waves near the rocks", "video_id": "video11924", "sen_id": 216199}, {"caption": "a tour of the inside of an older rv", "video_id": "video11965", "sen_id": 216200}, {"caption": "a bbc clip from the show top gear", "video_id": "video11965", "sen_id": 216201}, {"caption": "this shows a motor home while a man speaks about whether someone should lose sleep extracting everything out of the home or not to participate in a race", "video_id": "video11965", "sen_id": 216202}, {"caption": "a man is talking about what choice to make for an upcoming race while showing the inside of a camper", "video_id": "video11965", "sen_id": 216203}, {"caption": "presentation of the inside of a trailer", "video_id": "video11965", "sen_id": 216204}, {"caption": "the interior of a recreational vehicle bedroom and bathroom", "video_id": "video11965", "sen_id": 216205}, {"caption": "a narrator for the show top gear describes the ways one could reconstruct the innards of a recreational vehicle", "video_id": "video11965", "sen_id": 216206}, {"caption": " bedroom and bathroom of a house built on wood", "video_id": "video11965", "sen_id": 216207}, {"caption": "a jeep white color shown and other furniture are shown", "video_id": "video11965", "sen_id": 216208}, {"caption": "an exploration of car and interiors of the home", "video_id": "video11965", "sen_id": 216209}, {"caption": "in the house there is nobody and also in all of the rooms are empty", "video_id": "video11965", "sen_id": 216210}, {"caption": "its a white color car having all furniture inside it", "video_id": "video11965", "sen_id": 216211}, {"caption": "furniture items are displayed on the room", "video_id": "video11965", "sen_id": 216212}, {"caption": "an inside video tour of a travel trailer", "video_id": "video11965", "sen_id": 216213}, {"caption": "the interior of a trailer is displayed with renovations discussed", "video_id": "video11965", "sen_id": 216214}, {"caption": "a man shows the many amenities offered in an rv", "video_id": "video11965", "sen_id": 216215}, {"caption": "indoor shots of the interior of a transortable mobile trailer", "video_id": "video11965", "sen_id": 216216}, {"caption": "inside of a small camper with a kitchen chairs and cabinets", "video_id": "video11965", "sen_id": 216217}, {"caption": "a man is showing the inside of a mobile trailer", "video_id": "video11965", "sen_id": 216218}, {"caption": "the interior of an rv is shown while a man narrates discussing whether or not racing the rv with all of its amenities would be better than keeping them in", "video_id": "video11965", "sen_id": 216219}, {"caption": "an instructional video in a foreign language describing use of a website", "video_id": "video10908", "sen_id": 216220}, {"caption": "a narrator talks about online courses in spanish", "video_id": "video10908", "sen_id": 216221}, {"caption": "an online college is shown on the website", "video_id": "video10908", "sen_id": 216222}, {"caption": "a website contains many information which is useful to the society", "video_id": "video10908", "sen_id": 216223}, {"caption": "information displayed on a computer screen", "video_id": "video10908", "sen_id": 216224}, {"caption": "guy talking about world s best courses online for free", "video_id": "video10908", "sen_id": 216225}, {"caption": "a person is browing on the inter net", "video_id": "video10908", "sen_id": 216226}, {"caption": "there is a university with world s best courses", "video_id": "video10908", "sen_id": 216227}, {"caption": "a website is displayed while a mans voice speaks about it", "video_id": "video10908", "sen_id": 216228}, {"caption": "in the system they search on the topic worlds best coursetech building is shown", "video_id": "video10908", "sen_id": 216229}, {"caption": "man presenting a website about best courses to learn oniline", "video_id": "video10908", "sen_id": 216230}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video10908", "sen_id": 216231}, {"caption": "someone is talking about a website and showing a demonstration at the same time", "video_id": "video10908", "sen_id": 216232}, {"caption": "to check for the worlds best course online for free a building with tech is displayed", "video_id": "video10908", "sen_id": 216233}, {"caption": "a man describes how to use courseracom in spanish", "video_id": "video10908", "sen_id": 216234}, {"caption": "some images of a thing are being shown", "video_id": "video10908", "sen_id": 216235}, {"caption": "a website page filled with advertisements and information", "video_id": "video10908", "sen_id": 216236}, {"caption": "a man reviews the world s best courses online for free", "video_id": "video10908", "sen_id": 216237}, {"caption": "a person is listing various courses available for free and can be learnt online", "video_id": "video10908", "sen_id": 216238}, {"caption": "some various buildings are shown on the internet", "video_id": "video10908", "sen_id": 216239}, {"caption": "parts of a wired machine work together to cut openings of various shapes and sizes across a flat metal panel", "video_id": "video10274", "sen_id": 216240}, {"caption": "machine laser cutting designs into a large metal sheet in a workshop", "video_id": "video10274", "sen_id": 216241}, {"caption": "machine using a heated laser to cut into a metal sheet with precision", "video_id": "video10274", "sen_id": 216242}, {"caption": "a robotic cutting machine uses flame to cut pieces of sheet steel", "video_id": "video10274", "sen_id": 216243}, {"caption": "fire and sparks are underneath a metal plate with cutout circles ovals and rectangles while on a machine producing the openings in a factory room", "video_id": "video10274", "sen_id": 216244}, {"caption": "a machine is cutting holes in a flat sheet of metal", "video_id": "video10274", "sen_id": 216245}, {"caption": "a machine is welding a flat metal plate", "video_id": "video10274", "sen_id": 216246}, {"caption": "a machine is sparking fire from wires on the machine", "video_id": "video10274", "sen_id": 216247}, {"caption": "the fire burn in the machine as the sparks flies", "video_id": "video10274", "sen_id": 216248}, {"caption": "a large automated machine uses a small torch to cut through a sheet of steel", "video_id": "video10274", "sen_id": 216249}, {"caption": "the white colour machine doing its routine job", "video_id": "video10274", "sen_id": 216250}, {"caption": "a robotic metal cutting machine cut and removes circular shapes from a strip of metal", "video_id": "video10274", "sen_id": 216251}, {"caption": "a white and black machine working on a piece of metal", "video_id": "video10274", "sen_id": 216252}, {"caption": "a machine cuts a steel plate in round shape using lazer", "video_id": "video10274", "sen_id": 216253}, {"caption": "person is presenting how to machine works with full power", "video_id": "video10274", "sen_id": 216254}, {"caption": "there is a machine working properly in a company", "video_id": "video10274", "sen_id": 216255}, {"caption": "shapes are being cut out of a metal plate by a robotic cutting machine", "video_id": "video10274", "sen_id": 216256}, {"caption": "a robotic machine cuts through metal making sparks fly into the air", "video_id": "video10274", "sen_id": 216257}, {"caption": "a visual of an automatic laser sheet cutting machine in action making perfect cutouts", "video_id": "video10274", "sen_id": 216258}, {"caption": "there is a machine cutting a sheet of metal", "video_id": "video10274", "sen_id": 216259}, {"caption": "a woman in a red dress is combing her hair as someone is watching television and waiting for her", "video_id": "video10341", "sen_id": 216260}, {"caption": "a woman is brushing her hair and calls out to a man who answers her", "video_id": "video10341", "sen_id": 216261}, {"caption": "a young woman brushes her long dark hair while conversing with a man who is using a sharp knife to eat", "video_id": "video10341", "sen_id": 216262}, {"caption": "a young woman combs her hair in front of a mirror in her bedroom", "video_id": "video10341", "sen_id": 216263}, {"caption": "woman is shown combing her hair while music is playing in the background then a man is shown with a knife", "video_id": "video10341", "sen_id": 216264}, {"caption": "there is a woman combing her hair inside the room", "video_id": "video10341", "sen_id": 216265}, {"caption": "a woman in a red sari is combing her hair and speaking to a man in a red tshirt", "video_id": "video10341", "sen_id": 216266}, {"caption": "a latin woman in a pink blouse combs her hair", "video_id": "video10341", "sen_id": 216267}, {"caption": "an indian woman combs out the tangles in her hair while a guy nearby is using a knife", "video_id": "video10341", "sen_id": 216268}, {"caption": "a woman in red sari combs her hair and talks to a man", "video_id": "video10341", "sen_id": 216269}, {"caption": "accustic guitar playing as a girl brushes her long dark hair and then shouts something out to a man in the other room", "video_id": "video10341", "sen_id": 216270}, {"caption": "a woman is combing her hair with a blue comb", "video_id": "video10341", "sen_id": 216271}, {"caption": "women in sari combing her dress", "video_id": "video10341", "sen_id": 216272}, {"caption": "and indian couple talk to each other while the young man opens a package", "video_id": "video10341", "sen_id": 216273}, {"caption": "a lady is standing in a mirror combing her hair and calls out to a man in the next room filled with televisions", "video_id": "video10341", "sen_id": 216274}, {"caption": "a woman combs her hair and talks to a man holding a big knife", "video_id": "video10341", "sen_id": 216275}, {"caption": "an indian woman combing her hair speaks to her male partner", "video_id": "video10341", "sen_id": 216276}, {"caption": "a woman is brushing her long dark hair while speaking to a man in another room", "video_id": "video10341", "sen_id": 216277}, {"caption": "the indian lady in the film is dressing her hair and the dialogue is in malyalam", "video_id": "video10341", "sen_id": 216278}, {"caption": "a lady is adjusting the hair using cheep and speaking to a person in a movie scene", "video_id": "video10341", "sen_id": 216279}, {"caption": "a man is cooking a breaded meat item in a skillet", "video_id": "video10994", "sen_id": 216280}, {"caption": "a man flips chunks of meat that are frying in a frying pan", "video_id": "video10994", "sen_id": 216281}, {"caption": "a person is cooking chicken on a stove top turning over each piece in the pan", "video_id": "video10994", "sen_id": 216282}, {"caption": "a man is frying chicken while narrating how great his breading was", "video_id": "video10994", "sen_id": 216283}, {"caption": "a man frying meat in a skillet pan of oil", "video_id": "video10994", "sen_id": 216284}, {"caption": "man is pan-frying meat in oil using everglades all purpose breading mix", "video_id": "video10994", "sen_id": 216285}, {"caption": "a person frying food of some sort like chicken in a frying pan", "video_id": "video10994", "sen_id": 216286}, {"caption": "a man walking in through a sliding door another man talking about everglades all purpose breader as he is frying food", "video_id": "video10994", "sen_id": 216287}, {"caption": "fried food cooking on a white pan while tongs are used to move the food around", "video_id": "video10994", "sen_id": 216288}, {"caption": "someone is frying some chicken", "video_id": "video10994", "sen_id": 216289}, {"caption": "some one in a kitchen frying food items in a pan", "video_id": "video10994", "sen_id": 216290}, {"caption": "a guy frying breaded meat in a frying pan on the stove", "video_id": "video10994", "sen_id": 216291}, {"caption": "several pieces of a breaded meat cooking in a frying pan and being tossed with tongs", "video_id": "video10994", "sen_id": 216292}, {"caption": "the sound of a hot frying pan and someone turning food over in the oil", "video_id": "video10994", "sen_id": 216293}, {"caption": "chicken is being deep fried in a shallow pan", "video_id": "video10994", "sen_id": 216294}, {"caption": "a man using tongs to cook the meat in the pan", "video_id": "video10994", "sen_id": 216295}, {"caption": "a man frying meat in a pan turning it over with tongs", "video_id": "video10994", "sen_id": 216296}, {"caption": "a man is frying meat and flipping the meat in the oil", "video_id": "video10994", "sen_id": 216297}, {"caption": "a person prepares food in a hot pan on the stove", "video_id": "video10994", "sen_id": 216298}, {"caption": "someone is making some food in a metal bowl", "video_id": "video10994", "sen_id": 216299}, {"caption": "a black man in sunglasses signs against a black background as colorful lights flash on him", "video_id": "video12767", "sen_id": 216300}, {"caption": "kanye west wearing a light green shirt was rapping in one of his video", "video_id": "video12767", "sen_id": 216301}, {"caption": "a man under a strobe light raps about his family problems", "video_id": "video12767", "sen_id": 216302}, {"caption": "a man wearing sunglasses in rapping in a music video", "video_id": "video12767", "sen_id": 216303}, {"caption": "kanye west rapping lyrics in a music video", "video_id": "video12767", "sen_id": 216304}, {"caption": "kanye west signing a rap song with sunglasses on", "video_id": "video12767", "sen_id": 216305}, {"caption": "a music video by kanye west in which he raps about his life", "video_id": "video12767", "sen_id": 216306}, {"caption": "an artists in sunglasses performing under blinking lights", "video_id": "video12767", "sen_id": 216307}, {"caption": "a man wearing black glasses dancing to a hip-hop song", "video_id": "video12767", "sen_id": 216308}, {"caption": "a successful rapper performs a song under a flashing light", "video_id": "video12767", "sen_id": 216309}, {"caption": "a man in sunglasses wearing a green shirt raps as lights flash all around him", "video_id": "video12767", "sen_id": 216310}, {"caption": "kanye west is wearing sun glasses and singing", "video_id": "video12767", "sen_id": 216311}, {"caption": "a black male wearing sunglasses and a gold chain has a multi colored strobe light bouncing off of him while he sings in a dark room", "video_id": "video12767", "sen_id": 216312}, {"caption": "a famous rapper sings while different lighting flashes on him", "video_id": "video12767", "sen_id": 216313}, {"caption": "a man wearing sunglasses is singing with lights flashing around him", "video_id": "video12767", "sen_id": 216314}, {"caption": "the man person is a skilled singer in rap scenes", "video_id": "video12767", "sen_id": 216315}, {"caption": "a man in a green shirt raps with gold chains and dark sunglasses", "video_id": "video12767", "sen_id": 216316}, {"caption": "a black man is rapping and dancing while lights flash", "video_id": "video12767", "sen_id": 216317}, {"caption": "kayne west is preforming one of his songs", "video_id": "video12767", "sen_id": 216318}, {"caption": "kanye west is performing one of his hit songs under flashing lights", "video_id": "video12767", "sen_id": 216319}, {"caption": "a lion and a person look out over a field of zebras then a group of dark complected people in colorful garb jump and stand together", "video_id": "video12019", "sen_id": 216320}, {"caption": "a lion an aborigine and a safari scene followed by a group of villagers dancing", "video_id": "video12019", "sen_id": 216321}, {"caption": "a group of africans dance and jump in an area near their village", "video_id": "video12019", "sen_id": 216322}, {"caption": "in deep dark africa with the villagers dancing", "video_id": "video12019", "sen_id": 216323}, {"caption": "a group of african people are in a circle dancing", "video_id": "video12019", "sen_id": 216324}, {"caption": "in africa tribespeople in traditional dress sing and dance", "video_id": "video12019", "sen_id": 216325}, {"caption": "an african tribe dancing with african music in the background", "video_id": "video12019", "sen_id": 216326}, {"caption": "a group of black women dressed in colorful dresses dance together", "video_id": "video12019", "sen_id": 216327}, {"caption": "a group of african ladies dancing their national dance in the wilderness", "video_id": "video12019", "sen_id": 216328}, {"caption": "bunch of african tribe member singing and dancing", "video_id": "video12019", "sen_id": 216329}, {"caption": "there is a lion waiting for hunting at the evening", "video_id": "video12019", "sen_id": 216330}, {"caption": "there are some people wearing different outfil and walking on streets", "video_id": "video12019", "sen_id": 216331}, {"caption": "see this video and get tempted to visit beautiful wild africa", "video_id": "video12019", "sen_id": 216332}, {"caption": "forest tribal peoples are singing and dancing nicely", "video_id": "video12019", "sen_id": 216333}, {"caption": "african music is playing and a tribe of people are jumping up and down", "video_id": "video12019", "sen_id": 216334}, {"caption": "there is a lion waiting to hunt a animal", "video_id": "video12019", "sen_id": 216335}, {"caption": "there are women jumping and talking in a group", "video_id": "video12019", "sen_id": 216336}, {"caption": "a lion ladyhorse are displayedgropu of people are dancing", "video_id": "video12019", "sen_id": 216337}, {"caption": "zebras stand and eat grass on a grassy plain in africa", "video_id": "video12019", "sen_id": 216338}, {"caption": "a group of african tribe people are outside", "video_id": "video12019", "sen_id": 216339}, {"caption": "person in grey shirt and curly hair in front of a bookshelf is talking into a camera", "video_id": "video11185", "sen_id": 216340}, {"caption": "a amn stands in front of a white wall filled with shelves", "video_id": "video11185", "sen_id": 216341}, {"caption": "a man is shown in front of a wall of posters", "video_id": "video11185", "sen_id": 216342}, {"caption": "a man in a grey shirt is talking in front shelfs", "video_id": "video11185", "sen_id": 216343}, {"caption": "a man is standing in front of many books andy talking", "video_id": "video11185", "sen_id": 216344}, {"caption": "a slightly overweight man with a chin beard speaking portuguese", "video_id": "video11185", "sen_id": 216345}, {"caption": "a man standing in front of a book shelf talking", "video_id": "video11185", "sen_id": 216346}, {"caption": "a man talks tot he camera in a room with three shelves of books on the wall", "video_id": "video11185", "sen_id": 216347}, {"caption": "a man with a small beard talks to the camera while standing in front of alien paraphernalia", "video_id": "video11185", "sen_id": 216348}, {"caption": "a man speaks to the camera he talks about his passion and hobbies", "video_id": "video11185", "sen_id": 216349}, {"caption": "a guy is talking in front of a shelf of books", "video_id": "video11185", "sen_id": 216350}, {"caption": "a person is explaining about a fashion tips on a channel", "video_id": "video11185", "sen_id": 216351}, {"caption": "a man is speaking to the camera there are many objects behind him", "video_id": "video11185", "sen_id": 216352}, {"caption": "a man with a strange beard talks in front of shelves full of ufo information", "video_id": "video11185", "sen_id": 216353}, {"caption": "a man is speaking a language other than english", "video_id": "video11185", "sen_id": 216354}, {"caption": "there is a fat man talking about something inside a room", "video_id": "video11185", "sen_id": 216355}, {"caption": "a man with small beard and wearing t-shirt is explaining something", "video_id": "video11185", "sen_id": 216356}, {"caption": "a woman speaks to the camera for a video segment", "video_id": "video11185", "sen_id": 216357}, {"caption": "a sweat guy stands in his room full of toys and books", "video_id": "video11185", "sen_id": 216358}, {"caption": "a man with a gay little beard is talking", "video_id": "video11185", "sen_id": 216359}, {"caption": "a tennis match being played while commentators talk", "video_id": "video10183", "sen_id": 216360}, {"caption": "two women play a badmitton match ina large stadium in front of a large crowd", "video_id": "video10183", "sen_id": 216361}, {"caption": "two people one in red and one in blue are playing in a tennis match", "video_id": "video10183", "sen_id": 216362}, {"caption": "two people playing tennis on an indoor court", "video_id": "video10183", "sen_id": 216363}, {"caption": "a tennis match replay showing two people hitting a tennis ball back and forth", "video_id": "video10183", "sen_id": 216364}, {"caption": "the shuttle players are playing in the cort at very well", "video_id": "video10183", "sen_id": 216365}, {"caption": "a woman dressed in red plays badminton against an opponent dressed in blue and white", "video_id": "video10183", "sen_id": 216366}, {"caption": "badminton player in blue and red top playing against each other in a match", "video_id": "video10183", "sen_id": 216367}, {"caption": "two people play a badmitton game in a stadium full of people", "video_id": "video10183", "sen_id": 216368}, {"caption": "two people are playing tennis while people watch", "video_id": "video10183", "sen_id": 216369}, {"caption": "two players are playing badminton in a sports event", "video_id": "video10183", "sen_id": 216370}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10183", "sen_id": 216371}, {"caption": "two players is playing batminton used with bat", "video_id": "video10183", "sen_id": 216372}, {"caption": "two people play badmitton in a stadium full of people", "video_id": "video10183", "sen_id": 216373}, {"caption": "a blue and red colour wearing dress player playing tennis game inside stadium", "video_id": "video10183", "sen_id": 216374}, {"caption": "the women play badminton against each other in front of the crowd", "video_id": "video10183", "sen_id": 216375}, {"caption": "two tennis players compete in a fast-paced competitive game", "video_id": "video10183", "sen_id": 216376}, {"caption": " in a red dress and blue shirt over white shorts oppose each other on a rectangular green court with white lines on a larger red surface", "video_id": "video10183", "sen_id": 216377}, {"caption": "one bay and a girl playing tennis seriously boy with blue and girl with red dress", "video_id": "video10183", "sen_id": 216378}, {"caption": "some people are playing badminton on a court", "video_id": "video10183", "sen_id": 216379}, {"caption": "a man and woman sitting on a couch talking", "video_id": "video10043", "sen_id": 216380}, {"caption": "a man and woman are talking together in an interview", "video_id": "video10043", "sen_id": 216381}, {"caption": "a man and an actress sit on a couch and discuss her casting", "video_id": "video10043", "sen_id": 216382}, {"caption": "emily blunt running through lines with jimmy kimmel for a skit", "video_id": "video10043", "sen_id": 216383}, {"caption": "a woman is talking to a man in hat", "video_id": "video10043", "sen_id": 216384}, {"caption": "a man talking to a woman and sitting on a couch", "video_id": "video10043", "sen_id": 216385}, {"caption": "a man and a woman are participating in a talk show style interview", "video_id": "video10043", "sen_id": 216386}, {"caption": "a women with brown hair talking to a man", "video_id": "video10043", "sen_id": 216387}, {"caption": "there are men and women talking for a live show shown on tv", "video_id": "video10043", "sen_id": 216388}, {"caption": "emily blunt and jimmy fallon sitting on a couch talking to each other", "video_id": "video10043", "sen_id": 216389}, {"caption": "there is a hot blue shirt man with a women", "video_id": "video10043", "sen_id": 216390}, {"caption": "women dancing and singing song in a group", "video_id": "video10043", "sen_id": 216391}, {"caption": "one man and women are talking in stage", "video_id": "video10043", "sen_id": 216392}, {"caption": "one lady and one men both of them talking and joking", "video_id": "video10043", "sen_id": 216393}, {"caption": "sexy blonde in brown top talking to the guy with hat", "video_id": "video10043", "sen_id": 216394}, {"caption": "there is a woman in black dressing talking to a man", "video_id": "video10043", "sen_id": 216395}, {"caption": "a woman wears black and sits on the couch with a man who has a hat on", "video_id": "video10043", "sen_id": 216396}, {"caption": "one man and women are talking inside room", "video_id": "video10043", "sen_id": 216397}, {"caption": "a gentleman and beautiful woman is talking to each other in a talk show", "video_id": "video10043", "sen_id": 216398}, {"caption": "a guy in a hat is talking to a woman", "video_id": "video10043", "sen_id": 216399}, {"caption": "a statue of a woman milking a cow is being shown", "video_id": "video11230", "sen_id": 216400}, {"caption": "a man is deciphering the drawings that have been etched into a rock", "video_id": "video11230", "sen_id": 216401}, {"caption": "a man looks at and describes a woman getting milk from a mare", "video_id": "video11230", "sen_id": 216402}, {"caption": "a man discusses a cave drawing of a woman milking a horse", "video_id": "video11230", "sen_id": 216403}, {"caption": "an old carving showing a woman milking a horse is being shown while an older man in a grey suit talks about a feminist principle", "video_id": "video11230", "sen_id": 216404}, {"caption": "a bah relief depicts a woman milking a cow while a man in a suit discusses it", "video_id": "video11230", "sen_id": 216405}, {"caption": "a man wearing a grey suit talking to the camera", "video_id": "video11230", "sen_id": 216406}, {"caption": "a man is kneeling by an ancient carving while talking about history", "video_id": "video11230", "sen_id": 216407}, {"caption": "a british man explains a wall carving of a woman milking an animal", "video_id": "video11230", "sen_id": 216408}, {"caption": "a man sits and talks about a stone carving which depicts a woman milking a mare and the image's symbolic meaning", "video_id": "video11230", "sen_id": 216409}, {"caption": "there is a suit man talking about some sculptures", "video_id": "video11230", "sen_id": 216410}, {"caption": "a man is speaking about hieroglyphics which are engraved on the wall", "video_id": "video11230", "sen_id": 216411}, {"caption": "a man wearing a grayish suit is explaining ancient artifacts", "video_id": "video11230", "sen_id": 216412}, {"caption": "an older man is describing a scene on a stone wall", "video_id": "video11230", "sen_id": 216413}, {"caption": "glyphs on a wall are explained by a skilled person", "video_id": "video11230", "sen_id": 216414}, {"caption": "an archaeologist describes the mythological importance of character carved into a stone relief", "video_id": "video11230", "sen_id": 216415}, {"caption": "some stone art a lady sitting near the horse and the person explains it", "video_id": "video11230", "sen_id": 216416}, {"caption": "a man in a grey suit is talking about an ancient artifact on a rock", "video_id": "video11230", "sen_id": 216417}, {"caption": "a old man sitting and seeing the structure of horse painted on wall and baby speaking displaying on screen", "video_id": "video11230", "sen_id": 216418}, {"caption": "a man explains an ancient cave carving of a woman and a mare", "video_id": "video11230", "sen_id": 216419}, {"caption": "a small white dog and a small dark colored dog are chasing each other and playing on the living room floor", "video_id": "video10956", "sen_id": 216420}, {"caption": "a white dog and a dark dog play on a carpeted living room floor taking turns as the aggressor before one takes cover by the owner", "video_id": "video10956", "sen_id": 216421}, {"caption": "a man introduces a scene of two small dog one black and one white playing in a living room", "video_id": "video10956", "sen_id": 216422}, {"caption": "a white dog and a black dog playing together", "video_id": "video10956", "sen_id": 216423}, {"caption": "some small dogs running around nipping at each other", "video_id": "video10956", "sen_id": 216424}, {"caption": "two little dogs running around and playing with each other", "video_id": "video10956", "sen_id": 216425}, {"caption": "two dogs one white and one black with tufts of browngrey chase each other around a room playfully", "video_id": "video10956", "sen_id": 216426}, {"caption": "a dark dog and a white dog play with one another while background music plays", "video_id": "video10956", "sen_id": 216427}, {"caption": "there is a man driving a car with a smile", "video_id": "video10956", "sen_id": 216428}, {"caption": "two dogs fight in a living room of a home", "video_id": "video10956", "sen_id": 216429}, {"caption": "two small dogs running and jumping around each other", "video_id": "video10956", "sen_id": 216430}, {"caption": "a couple of small dogs are playing together", "video_id": "video10956", "sen_id": 216431}, {"caption": "there is a white dog playing with a black dog", "video_id": "video10956", "sen_id": 216432}, {"caption": "two puppy dogs are playing each other in a", "video_id": "video10956", "sen_id": 216433}, {"caption": "two small dogs one is white and other black color playing on the floor", "video_id": "video10956", "sen_id": 216434}, {"caption": "a black and a white puppy playing chase", "video_id": "video10956", "sen_id": 216435}, {"caption": "two little puppies are quarrling each other very cutely", "video_id": "video10956", "sen_id": 216436}, {"caption": "two small puppies playing with each other", "video_id": "video10956", "sen_id": 216437}, {"caption": "two puppys run around the living room playing", "video_id": "video10956", "sen_id": 216438}, {"caption": "some dogs on the floor are running around", "video_id": "video10956", "sen_id": 216439}, {"caption": "a silver and gold fish is swimming in a small bucket while a woman speak about the fish", "video_id": "video12140", "sen_id": 216440}, {"caption": "a white and gold colored fish is swimming in a very small bowl", "video_id": "video12140", "sen_id": 216441}, {"caption": "a person gently places a white and orange fish in a gallon water in a ice cream bucket", "video_id": "video12140", "sen_id": 216442}, {"caption": "a woman demonstrates a technique she uses for working with goldfish", "video_id": "video12140", "sen_id": 216443}, {"caption": "a person places an orange and silver fish into a bucket of water", "video_id": "video12140", "sen_id": 216444}, {"caption": "woman holds fish with her hand then lets it go under the water while she explains how to she swabed the fish with hydrogene peroxide", "video_id": "video12140", "sen_id": 216445}, {"caption": "the girl put the white colour fish into the water and talk about that", "video_id": "video12140", "sen_id": 216446}, {"caption": "a person is putting a small silver and orange fish into an ice cream bucket full of water", "video_id": "video12140", "sen_id": 216447}, {"caption": "a woman is submerging a fish into a bowl", "video_id": "video12140", "sen_id": 216448}, {"caption": "a white and gold fish was cleaned with hydrogen peroxide", "video_id": "video12140", "sen_id": 216449}, {"caption": "this lady is showing how she is nursing her fish back to health with hydrogen peroxide", "video_id": "video12140", "sen_id": 216450}, {"caption": "there is a white and orange fish in a plastic cup that a girl is treating", "video_id": "video12140", "sen_id": 216451}, {"caption": "a woman dropping an aquarium fish in a bowl with water", "video_id": "video12140", "sen_id": 216452}, {"caption": "a woman talking and handling fish in a bucket", "video_id": "video12140", "sen_id": 216453}, {"caption": "a dying fish is inside of a white bowl", "video_id": "video12140", "sen_id": 216454}, {"caption": "some one put a small fish in to the water", "video_id": "video12140", "sen_id": 216455}, {"caption": "someone is gently placing a gold fish into a bowl of water", "video_id": "video12140", "sen_id": 216456}, {"caption": "a king fish with white body and red fins and tails looks beautiful", "video_id": "video12140", "sen_id": 216457}, {"caption": "white and gold fish being put into a bowl of water", "video_id": "video12140", "sen_id": 216458}, {"caption": "a fish is struggling to live in a bowl", "video_id": "video12140", "sen_id": 216459}, {"caption": "man walking and then the video footage is reversed while background music plays", "video_id": "video10740", "sen_id": 216460}, {"caption": "a man is walking back and forth in front of a garage door", "video_id": "video10740", "sen_id": 216461}, {"caption": "man with black jacket is being filmed walking back and forth slowly", "video_id": "video10740", "sen_id": 216462}, {"caption": "a man walks in front of a brown garage door then reverses", "video_id": "video10740", "sen_id": 216463}, {"caption": "a man wearing sunglasses a black jacket and denim pants walks in slow motion in front of a pair of large doors the man walks to the edge of the second door then walks backwards back toward where he started", "video_id": "video10740", "sen_id": 216464}, {"caption": "a man walking by a building and then going in reverse", "video_id": "video10740", "sen_id": 216465}, {"caption": "a man walking fprwad then backwards past a barn door", "video_id": "video10740", "sen_id": 216466}, {"caption": "a man in a leather jacket walking in front of a garage", "video_id": "video10740", "sen_id": 216467}, {"caption": "a man walks by while music plays and then it is rolled backward", "video_id": "video10740", "sen_id": 216468}, {"caption": "a young boy wearing glasses walks in front of the gate elaborately", "video_id": "video10740", "sen_id": 216469}, {"caption": "a man in a black jacket is walking past a garage door", "video_id": "video10740", "sen_id": 216470}, {"caption": "a man in a leather jacket walking in front of an old warehouse door", "video_id": "video10740", "sen_id": 216471}, {"caption": "a young man in dark glasses and dark boots walks along a street", "video_id": "video10740", "sen_id": 216472}, {"caption": "a man slowly walks by a garage door and then returns", "video_id": "video10740", "sen_id": 216473}, {"caption": "the smart boy walking on the road he cross the big shop closed door the scene will revised", "video_id": "video10740", "sen_id": 216474}, {"caption": "a man is walking in front of some big doors", "video_id": "video10740", "sen_id": 216475}, {"caption": "a person wearing black glass with black dressing is walking forward and backward through street", "video_id": "video10740", "sen_id": 216476}, {"caption": "a guy walks like a model wearing a black leather jacket and jeans", "video_id": "video10740", "sen_id": 216477}, {"caption": "a man in a leather jacket walking forward then in reverse", "video_id": "video10740", "sen_id": 216478}, {"caption": "a modeling male person is walking stylish front and back in a way", "video_id": "video10740", "sen_id": 216479}, {"caption": "a man wearing shorts and a jacket slowly practices clearing a set of hurdles in an outdoor recreation field before bending under the first hurdle", "video_id": "video12208", "sen_id": 216480}, {"caption": "a man in black is walking over and under hurdles on a field", "video_id": "video12208", "sen_id": 216481}, {"caption": "a man in dark clothes demonstrates exercises using track and field hurdles", "video_id": "video12208", "sen_id": 216482}, {"caption": "a guy does some workout training out on a field by going over hurdles", "video_id": "video12208", "sen_id": 216483}, {"caption": "a pop rap instrumental plays as a man walks over hurdles then the screen changes to show the words over under and him going over and under", "video_id": "video12208", "sen_id": 216484}, {"caption": "a men is jumping between stands which are kept in the garden", "video_id": "video12208", "sen_id": 216485}, {"caption": "a man in exercise clothes walks over hurdles", "video_id": "video12208", "sen_id": 216486}, {"caption": "a man in dark clothes straddles four connected jumping hurdles one at a time on green grass in a sports field", "video_id": "video12208", "sen_id": 216487}, {"caption": "a young man does an outdoor workout using track and field gates as props", "video_id": "video12208", "sen_id": 216488}, {"caption": "a old man in blue dress legs up and down exercising on grass land", "video_id": "video12208", "sen_id": 216489}, {"caption": "man walks easily over hurdles placed on a lawn", "video_id": "video12208", "sen_id": 216490}, {"caption": "a man in a green jacket on a track does leg work on jumps", "video_id": "video12208", "sen_id": 216491}, {"caption": "a man doing hurdle walk over and under with hurdles on the grassland", "video_id": "video12208", "sen_id": 216492}, {"caption": "a man wearing black short and tops is doing obstacle routine exercise", "video_id": "video12208", "sen_id": 216493}, {"caption": "a man in a black track suit stepping over bars", "video_id": "video12208", "sen_id": 216494}, {"caption": "a man is demonstrating how to practice going over and under hurdles", "video_id": "video12208", "sen_id": 216495}, {"caption": "the man steps over the herdles wearing the black shorts", "video_id": "video12208", "sen_id": 216496}, {"caption": "a man in black is practicing hurdle pass over and under", "video_id": "video12208", "sen_id": 216497}, {"caption": "the person try to cross the hurdle he wear the shoe", "video_id": "video12208", "sen_id": 216498}, {"caption": "a man in workout clothes is demonstrating how to step over and under hurdles", "video_id": "video12208", "sen_id": 216499}, {"caption": "a man is spinning a large wheel and then add a nail to it with a hammer", "video_id": "video12042", "sen_id": 216500}, {"caption": "a man is showing how to work on a railroad wheel", "video_id": "video12042", "sen_id": 216501}, {"caption": "a man turns a wheel and then stops it to repair a nail", "video_id": "video12042", "sen_id": 216502}, {"caption": "a man uses a hammer to work on a large metal wheel", "video_id": "video12042", "sen_id": 216503}, {"caption": "a team of scientists formed a coalition to research tire failure and test tires before they were cleared for commercial use", "video_id": "video12042", "sen_id": 216504}, {"caption": "man beating the inner lining of a metal wheel with a hammer and nail", "video_id": "video12042", "sen_id": 216505}, {"caption": "vintage documentary about railway tire failures and the exhaustive preventive studies that followed them a man examines and performs work on a railway tire", "video_id": "video12042", "sen_id": 216506}, {"caption": "man explains about tire failure while the video shows a man hammering what appears to be a nail to a wooden tire", "video_id": "video12042", "sen_id": 216507}, {"caption": "an old man inspecting and fixing a wheel taller than himself", "video_id": "video12042", "sen_id": 216508}, {"caption": "a man in a vintage film is testing tires for the railway", "video_id": "video12042", "sen_id": 216509}, {"caption": "a man stands by a large rotating spoke wheel by a mechanical belt attached to a wall a man hammers the rim of a wheel while carrying a cone-shaped object and a man hammers a metal pin into a wheel", "video_id": "video12042", "sen_id": 216510}, {"caption": "a man does detailed inspection of various railroad things", "video_id": "video12042", "sen_id": 216511}, {"caption": "stock footage about constructing large wheels in black and white", "video_id": "video12042", "sen_id": 216512}, {"caption": "a man inspects a railroad tyre and explains why the railroad tyres were having failures in previous years", "video_id": "video12042", "sen_id": 216513}, {"caption": "a man with a hammer fixes a large wheel", "video_id": "video12042", "sen_id": 216514}, {"caption": "a huge wheel is rotating and a man is mending it", "video_id": "video12042", "sen_id": 216515}, {"caption": "railroad tire failure is being addressed by a narrator with black and white footages of working engineers", "video_id": "video12042", "sen_id": 216516}, {"caption": "a man stands near a big turning wheel and uses a hammer", "video_id": "video12042", "sen_id": 216517}, {"caption": "a black and white documentary is shown of tyre failures concerning engineering projects", "video_id": "video12042", "sen_id": 216518}, {"caption": "a person is fixing an object with a hammer", "video_id": "video12042", "sen_id": 216519}, {"caption": "a woman with dark hair is shown making instructional videos on various topics", "video_id": "video12657", "sen_id": 216520}, {"caption": "a blog for average women explaining daily tasks", "video_id": "video12657", "sen_id": 216521}, {"caption": "a woman is looking at various items while examining them", "video_id": "video12657", "sen_id": 216522}, {"caption": "a woman says goodbye then other videos of hers are shown as options to click on", "video_id": "video12657", "sen_id": 216523}, {"caption": "a woman with brown hair gives advice to people", "video_id": "video12657", "sen_id": 216524}, {"caption": "a woman says goodbye then other videos of hers are shown as options to click on", "video_id": "video12657", "sen_id": 216525}, {"caption": "this appears to be a landing page of a website called your average jane", "video_id": "video12657", "sen_id": 216526}, {"caption": "a woman in a closet wearing a jean jacket waives goodbye followed by showing her in three separate videos working on projects while showing her social media information", "video_id": "video12657", "sen_id": 216527}, {"caption": "a girl wearing blue dress talking something in her home", "video_id": "video12657", "sen_id": 216528}, {"caption": "a lady has made videos about running a household", "video_id": "video12657", "sen_id": 216529}, {"caption": "a webshot of a your average joe you tube page with links to other social media", "video_id": "video12657", "sen_id": 216530}, {"caption": "a woman is featured in three videos on couponing meal planning and organization", "video_id": "video12657", "sen_id": 216531}, {"caption": "a woman is showing different things in her video blog called your average jane", "video_id": "video12657", "sen_id": 216532}, {"caption": "a woman in blue jacket is standing near dressing hanger and telling bye", "video_id": "video12657", "sen_id": 216533}, {"caption": "an outro to a womans video showing her doing three other things in other videos", "video_id": "video12657", "sen_id": 216534}, {"caption": "an outro video to a youtube channel video the channel name is named your average jane", "video_id": "video12657", "sen_id": 216535}, {"caption": "a woman in a closet is waving goodbye to her viewers", "video_id": "video12657", "sen_id": 216536}, {"caption": "a woman with long dark hair stands in her walk in closet and talks about clothes", "video_id": "video12657", "sen_id": 216537}, {"caption": "a long dark-haired woman is talking about meal planning kitchen tips freebiescouponing in various videos", "video_id": "video12657", "sen_id": 216538}, {"caption": "some various movie clips of a woman", "video_id": "video12657", "sen_id": 216539}, {"caption": "a man walks up to a llama to try and pet it but it ends up kicking him", "video_id": "video10621", "sen_id": 216540}, {"caption": "the man in a black shirt and jean shorts walks up to pet a llama but it kicks him instead", "video_id": "video10621", "sen_id": 216541}, {"caption": "a man tries to pet an alpaca and gets kicked", "video_id": "video10621", "sen_id": 216542}, {"caption": "a man who tries to pet an alpaca gets kicked in the stomach", "video_id": "video10621", "sen_id": 216543}, {"caption": "a man standing with two alpacas gets kicked by one", "video_id": "video10621", "sen_id": 216544}, {"caption": "girl watches as man attempts to pet an alpaca when the brown alpaca kicks him", "video_id": "video10621", "sen_id": 216545}, {"caption": "alpacas are shown in a fenced area in slow motion while one of them kicks a man", "video_id": "video10621", "sen_id": 216546}, {"caption": "we see a little girl and man who goes to pet a llama who kicks him the action of the llama kicking is played again in slow motion", "video_id": "video10621", "sen_id": 216547}, {"caption": "a black alpaca stands by a brown alpaca who kicks a man in a black shirt and blue shorts", "video_id": "video10621", "sen_id": 216548}, {"caption": "a man approaches an alpaca who kicks him and runs away", "video_id": "video10621", "sen_id": 216549}, {"caption": "lama trying to kick the guy in black tshirt for feeding him", "video_id": "video10621", "sen_id": 216550}, {"caption": "a person is hitted by a animal in a yard", "video_id": "video10621", "sen_id": 216551}, {"caption": "people in an enclosed cage with two alpacas as one of the people try to pet an alpacas it picks him with a thud in his chest", "video_id": "video10621", "sen_id": 216552}, {"caption": "when a person going to touch a kangaroo he suddenly give one kick to the person", "video_id": "video10621", "sen_id": 216553}, {"caption": "a man is trying to touch alpaca who in return kicked him", "video_id": "video10621", "sen_id": 216554}, {"caption": "there is a black shirt man touching an animal", "video_id": "video10621", "sen_id": 216555}, {"caption": "animals are there man and kid touching it", "video_id": "video10621", "sen_id": 216556}, {"caption": "a dad and his daughter play in a petting zoo", "video_id": "video10621", "sen_id": 216557}, {"caption": "a man in a black shirt and jean shorts walks up to a llama and the llama kicks him", "video_id": "video10621", "sen_id": 216558}, {"caption": "a guy in shorts is standing near animals", "video_id": "video10621", "sen_id": 216559}, {"caption": "a woman is pointing a finger at another woman", "video_id": "video11612", "sen_id": 216560}, {"caption": "a bunch of different horror movies including vampires and werewolves", "video_id": "video11612", "sen_id": 216561}, {"caption": "a website that portrays the mythical beast from old movies and tv shows a new film is being created combining these beasts into one movie", "video_id": "video11612", "sen_id": 216562}, {"caption": "a man wearing a black shirt shooting a gun", "video_id": "video11612", "sen_id": 216563}, {"caption": "a woman talks about various fantasy movies while showing clips of various movies", "video_id": "video11612", "sen_id": 216564}, {"caption": "there is a man running hard on the floor", "video_id": "video11612", "sen_id": 216565}, {"caption": "a top ten showcasing of the top ten fanatasy shows on watch mojo", "video_id": "video11612", "sen_id": 216566}, {"caption": "a film is playing in the watcmojocom and talking about films", "video_id": "video11612", "sen_id": 216567}, {"caption": "a woman is speaking and various movie scenes are shown", "video_id": "video11612", "sen_id": 216568}, {"caption": "a woman talks about a list of fantasy tv shows", "video_id": "video11612", "sen_id": 216569}, {"caption": "there is a man shooting a person with a gun", "video_id": "video11612", "sen_id": 216570}, {"caption": "a woman sayingpack your crucifix and silver bullets and watch out for werewolves", "video_id": "video11612", "sen_id": 216571}, {"caption": "a movie scene is playing in the watchmojo", "video_id": "video11612", "sen_id": 216572}, {"caption": "a woman talks about the top ten picks for fantasy shows on watch mojo", "video_id": "video11612", "sen_id": 216573}, {"caption": "the man putting gun and there is some unhuman activities", "video_id": "video11612", "sen_id": 216574}, {"caption": "there is a man shooting inside the house", "video_id": "video11612", "sen_id": 216575}, {"caption": "a man shooting another person and other scary movie scenes", "video_id": "video11612", "sen_id": 216576}, {"caption": "an entertainment reporter does a countdown show related to the top ten fantasy shows", "video_id": "video11612", "sen_id": 216577}, {"caption": "top ten fantasy shows of matchmojo they chose shows that incorporate magical elements and magical creatures", "video_id": "video11612", "sen_id": 216578}, {"caption": "a review of the top ten fantasy shows by mojo with magical elements and mythical creatures", "video_id": "video11612", "sen_id": 216579}, {"caption": "a man in w white doctors jacket is doing an indian dance around a man in blue sweater who is on the ground while a boy in a brown jacket sits in a chair with a bow and arrow", "video_id": "video12615", "sen_id": 216580}, {"caption": "a man with an arrow in his chest sitting next to someone with a bow while a native american doctor performs a ritual to make him better", "video_id": "video12615", "sen_id": 216581}, {"caption": "a native american doctor performs ancient healing techniques on a man with a fake injury", "video_id": "video12615", "sen_id": 216582}, {"caption": "a doctor uses humorous parody of old remedies to heal a man from an arrow wound", "video_id": "video12615", "sen_id": 216583}, {"caption": "a man and a boy playing indian with a doctor wearing feathers", "video_id": "video12615", "sen_id": 216584}, {"caption": "two men and a boy act out a man being shot with an arrow in a doctors office", "video_id": "video12615", "sen_id": 216585}, {"caption": "a boy with a bow sits with a man who has been punctured with an arrow while another man tries an unconventional approach to heal the injured man", "video_id": "video12615", "sen_id": 216586}, {"caption": "two men in doctor's coats mimic a native american dance around a man on the floor", "video_id": "video12615", "sen_id": 216587}, {"caption": "doctor office but the doctor is acting like a native american stereotype", "video_id": "video12615", "sen_id": 216588}, {"caption": "a man dressed as an indian acts like a bird in a small white room", "video_id": "video12615", "sen_id": 216589}, {"caption": "a boy with a bow sits with a man who has been punctured with an arrow while another man tries an unconventional approach to heal the injured man", "video_id": "video12615", "sen_id": 216590}, {"caption": "a man in a white coat and indian headband dances around a small white room", "video_id": "video12615", "sen_id": 216591}, {"caption": "a boy holds bow and a man stuck with an arrow sit on chairs and the man lies down while a funny man does an indian dance over him", "video_id": "video12615", "sen_id": 216592}, {"caption": "a man is struck by an arrow and lays to the floor as the boy and indian doctor look on", "video_id": "video12615", "sen_id": 216593}, {"caption": "a man dressed in an indian outfit dances around a man who is laying on the floor", "video_id": "video12615", "sen_id": 216594}, {"caption": "there is a man with arrows in a room", "video_id": "video12615", "sen_id": 216595}, {"caption": "an native american doctor performing a dance over an arrow struck man while his son watches with a bow", "video_id": "video12615", "sen_id": 216596}, {"caption": "a doctor dressed as an indian tries to help a man with an arrow in his chest", "video_id": "video12615", "sen_id": 216597}, {"caption": "a white dress man standing and dancing and playing record sleeping man boy sitting on chair", "video_id": "video12615", "sen_id": 216598}, {"caption": "a man in a white suit is talking about things", "video_id": "video12615", "sen_id": 216599}, {"caption": "two men are taking care of their dogs together", "video_id": "video10779", "sen_id": 216600}, {"caption": "two men have their dogs on leashes together", "video_id": "video10779", "sen_id": 216601}, {"caption": "a man giving advice to another man and picking up his dog", "video_id": "video10779", "sen_id": 216602}, {"caption": "a man picks his brown dog up and carries him off in front of another man with a dog", "video_id": "video10779", "sen_id": 216603}, {"caption": "two men walking dogs on a street stop to talk to one another", "video_id": "video10779", "sen_id": 216604}, {"caption": "two men with their dogs and a man in a plaid shirt picks his dog up", "video_id": "video10779", "sen_id": 216605}, {"caption": "a man picking up a big dog and walking off", "video_id": "video10779", "sen_id": 216606}, {"caption": "man wearing plaid shirt explains how he puts down the phone and then picks up a friend which is his dog while other man with blue shirt watches with his dog and thinks he is phsyco the man in the blue shirt then goes on to show his dog how he is uploading his facebook video", "video_id": "video10779", "sen_id": 216607}, {"caption": "two men talking to each other and standing with their dogs", "video_id": "video10779", "sen_id": 216608}, {"caption": "two men talking to each other and standing next to their dogs", "video_id": "video10779", "sen_id": 216609}, {"caption": "two guys with large dogs describe what they rather do", "video_id": "video10779", "sen_id": 216610}, {"caption": "a man in a plaid shirt picks up a very large dog", "video_id": "video10779", "sen_id": 216611}, {"caption": "two men stand outdoors with their dogs until one leaves after picking up his dog", "video_id": "video10779", "sen_id": 216612}, {"caption": "two men who are walking their dogs stop to talk to one another", "video_id": "video10779", "sen_id": 216613}, {"caption": "two men outside with their dogs on a sunny day one man picks up his dog and skips away while the other just pats his dog", "video_id": "video10779", "sen_id": 216614}, {"caption": "a man with a dog talking to the same", "video_id": "video10779", "sen_id": 216615}, {"caption": "two man having dog with their hand", "video_id": "video10779", "sen_id": 216616}, {"caption": "two strange beared men act strangely with the dogs they are walking", "video_id": "video10779", "sen_id": 216617}, {"caption": "while two men are talking one picks up his dog and walks away while the other shows his dog a photo on his phone", "video_id": "video10779", "sen_id": 216618}, {"caption": "a man with a hat is standing next to a dog", "video_id": "video10779", "sen_id": 216619}, {"caption": "a woman and two men are seated in a semicircle when a screen with white lettering identifies them and fades into a star and then an entertainment logo", "video_id": "video12684", "sen_id": 216620}, {"caption": "man in a black suit interviewing a male and female actor on a set", "video_id": "video12684", "sen_id": 216621}, {"caption": "two people conclude an interview with liv tyler", "video_id": "video12684", "sen_id": 216622}, {"caption": "white text sits below a moviefone logo in front of a red background", "video_id": "video12684", "sen_id": 216623}, {"caption": "an animated graphic showing two men wearing black jackets and a woman wearing a white dress sitting on a stage talking while music can be heard", "video_id": "video12684", "sen_id": 216624}, {"caption": "there is a woman smiling while sitting with two other men and an advertisement for moviefone", "video_id": "video12684", "sen_id": 216625}, {"caption": "an interview has concluded involving edward norton liv tyler and louis leterrier", "video_id": "video12684", "sen_id": 216626}, {"caption": "a women in white dress is talking to two people in black dress", "video_id": "video12684", "sen_id": 216627}, {"caption": "three people are sitting in black chairs on a talk show set", "video_id": "video12684", "sen_id": 216628}, {"caption": "three people on a discussion panel followed by an invitation for questions for next week s guests", "video_id": "video12684", "sen_id": 216629}, {"caption": "sexy brunette in white dress on couch with couple of guys in black shirt talking to camera", "video_id": "video12684", "sen_id": 216630}, {"caption": "three people sitting on the chair answering to the question send by public", "video_id": "video12684", "sen_id": 216631}, {"caption": "two gentle men along with a lady discussing about the hottest upcoming movie releases", "video_id": "video12684", "sen_id": 216632}, {"caption": "thank you for submitting your questions for this exclusive", "video_id": "video12684", "sen_id": 216633}, {"caption": "texts of moviefone and its website is shown", "video_id": "video12684", "sen_id": 216634}, {"caption": "moviefone seems to be a viable source for movie information", "video_id": "video12684", "sen_id": 216635}, {"caption": "all three persons are communicating each other", "video_id": "video12684", "sen_id": 216636}, {"caption": "a title card thanks people for their questions while mellow music plays", "video_id": "video12684", "sen_id": 216637}, {"caption": "two men and a girl talking about something in the television show", "video_id": "video12684", "sen_id": 216638}, {"caption": "there was two men and a woman on a couch", "video_id": "video12684", "sen_id": 216639}, {"caption": "a man explaining the news of a tv show called fringe", "video_id": "video10313", "sen_id": 216640}, {"caption": "a man is talking to the camera he is explaining a video playing to the side", "video_id": "video10313", "sen_id": 216641}, {"caption": "a man with dark hair wearing a blue shirt is talking about the final season of fringe", "video_id": "video10313", "sen_id": 216642}, {"caption": "a man wearing a shirt explaining some matter in front of the camera", "video_id": "video10313", "sen_id": 216643}, {"caption": "a man in a black shirt talks directly to the camera and a screen appears to his right displaying an image of what he is discussing", "video_id": "video10313", "sen_id": 216644}, {"caption": "a man speaks to the camera about the fringe tv show", "video_id": "video10313", "sen_id": 216645}, {"caption": "the commentator is wearing a black shirt and talking about the games and players", "video_id": "video10313", "sen_id": 216646}, {"caption": "a man is talking about the end of a popular tv show", "video_id": "video10313", "sen_id": 216647}, {"caption": "a young male entertainment reporter discusses the premiere of a tv show he likes", "video_id": "video10313", "sen_id": 216648}, {"caption": "a man is talking about a man who is yelling to a child", "video_id": "video10313", "sen_id": 216649}, {"caption": "a young white guy in a blue shirt talking while a tv clip plays off to the side the guy is talking about the tv show and also speaks to someone off camera", "video_id": "video10313", "sen_id": 216650}, {"caption": "a guy in a dark shirt is talking to some one", "video_id": "video10313", "sen_id": 216651}, {"caption": "a man in a blue button up shirt describing the final season of fringe", "video_id": "video10313", "sen_id": 216652}, {"caption": "an entertainment reporter talks about one of his favorite tv shows", "video_id": "video10313", "sen_id": 216653}, {"caption": "a person speaking some thing about the video and also lancing", "video_id": "video10313", "sen_id": 216654}, {"caption": "a man is talking about a tv show called fringe", "video_id": "video10313", "sen_id": 216655}, {"caption": "september 28 machinima one man running fast to near little girl", "video_id": "video10313", "sen_id": 216656}, {"caption": "a smart looking guy talk with the great joy by moving his hands", "video_id": "video10313", "sen_id": 216657}, {"caption": "man in blue button up shirt announces the series fringe s air date", "video_id": "video10313", "sen_id": 216658}, {"caption": "guy in blue shirt is smiling and talking to the camera", "video_id": "video10313", "sen_id": 216659}, {"caption": "this is a review of a ddr4x99 motherboard", "video_id": "video12294", "sen_id": 216660}, {"caption": "a man is talking abot the worlds 1st motherboard", "video_id": "video12294", "sen_id": 216661}, {"caption": "a person is explaining the features of a software and the upgrades that are included in the new version", "video_id": "video12294", "sen_id": 216662}, {"caption": "a male voiceover an advertising picture explain about a new hardrive that's available for sale", "video_id": "video12294", "sen_id": 216663}, {"caption": "tiny round straight and square silver components are affixed to a partly ridged vertical black panel placed next to a note with letters and symbol and next to a black description with letters and numbers", "video_id": "video12294", "sen_id": 216664}, {"caption": "there is a machine working with multiple functions", "video_id": "video12294", "sen_id": 216665}, {"caption": "a machine circuts are displayed on the board", "video_id": "video12294", "sen_id": 216666}, {"caption": "world s 1st ddr4 x99 motherboard for the systems", "video_id": "video12294", "sen_id": 216667}, {"caption": "a man describing the specifics of a computer motherboard", "video_id": "video12294", "sen_id": 216668}, {"caption": "a motherboard for a computer is discussed in terms of pros and cons", "video_id": "video12294", "sen_id": 216669}, {"caption": "a man explaining something about ddr4 x99 motherboard", "video_id": "video12294", "sen_id": 216670}, {"caption": "a man is talking about the specs of a motherboard", "video_id": "video12294", "sen_id": 216671}, {"caption": "a company displays it motherboard of make ddr4x99", "video_id": "video12294", "sen_id": 216672}, {"caption": "explaning the best mother world in the world telling the market expert", "video_id": "video12294", "sen_id": 216673}, {"caption": "a man explains something about ddr4 x99 motherboard", "video_id": "video12294", "sen_id": 216674}, {"caption": "a man speaking about an update for a motherboard for a computer", "video_id": "video12294", "sen_id": 216675}, {"caption": "there is a men telling about the intel processor chip and drives", "video_id": "video12294", "sen_id": 216676}, {"caption": "world s 1st ddr4 x99 motherboard", "video_id": "video12294", "sen_id": 216677}, {"caption": "a person is giving some demo about mother board", "video_id": "video12294", "sen_id": 216678}, {"caption": "a pc motherboard is being shown for sale", "video_id": "video12294", "sen_id": 216679}, {"caption": "a woman explaining her love for beach volleyball", "video_id": "video11492", "sen_id": 216680}, {"caption": "a woman talks in a voiceover of a video showing her play beach volleyball", "video_id": "video11492", "sen_id": 216681}, {"caption": "some women play some two on two volleyball in the sand", "video_id": "video11492", "sen_id": 216682}, {"caption": "a group of women in bikinis playing volleyball on a beach", "video_id": "video11492", "sen_id": 216683}, {"caption": "two groups of women play volleyball on the beach", "video_id": "video11492", "sen_id": 216684}, {"caption": "the group of people are playing volleyball as they scream and music plays", "video_id": "video11492", "sen_id": 216685}, {"caption": "people playing volleyball on a white sand beach", "video_id": "video11492", "sen_id": 216686}, {"caption": "women play doubles volleyball on the beach", "video_id": "video11492", "sen_id": 216687}, {"caption": "four people are on a beach playing a game of volleyball", "video_id": "video11492", "sen_id": 216688}, {"caption": "women playing beach volleyball on the beach in the sand", "video_id": "video11492", "sen_id": 216689}, {"caption": "there are some people playing volleyball on the beach", "video_id": "video11492", "sen_id": 216690}, {"caption": "girl having fun playing beach volley ball in the bright day light", "video_id": "video11492", "sen_id": 216691}, {"caption": "a girls are playing a beach volley ball", "video_id": "video11492", "sen_id": 216692}, {"caption": "two teams playing volleyball on a white sandy beach", "video_id": "video11492", "sen_id": 216693}, {"caption": "people are playing volleyball on a court in the sand", "video_id": "video11492", "sen_id": 216694}, {"caption": "a bird s eye view of a volleyball game with a woman discussing her motivation", "video_id": "video11492", "sen_id": 216695}, {"caption": "a group of females are playiing volleyball on the beach a lady spikes the ball", "video_id": "video11492", "sen_id": 216696}, {"caption": "two pairs of women play in a beach volley ball game", "video_id": "video11492", "sen_id": 216697}, {"caption": "woman playing volleyball on a beach with a yellow and white volleyball", "video_id": "video11492", "sen_id": 216698}, {"caption": "some girls are playing volleyball against each other", "video_id": "video11492", "sen_id": 216699}, {"caption": "a guy with white hair is talking in front of a blue screen", "video_id": "video11348", "sen_id": 216700}, {"caption": "a man is sitting in a room and is explaining an online course", "video_id": "video11348", "sen_id": 216701}, {"caption": "a man talks about teachable courses as an open-source project", "video_id": "video11348", "sen_id": 216702}, {"caption": "there is a man with white hair talking from the studio", "video_id": "video11348", "sen_id": 216703}, {"caption": "this video is a man talking about how you can teach a topic to people online", "video_id": "video11348", "sen_id": 216704}, {"caption": "an old man is talking about a tecnology", "video_id": "video11348", "sen_id": 216705}, {"caption": "a man is talking about the release of technology", "video_id": "video11348", "sen_id": 216706}, {"caption": "power searching with google taught by dan russel", "video_id": "video11348", "sen_id": 216707}, {"caption": "a man with white hair with a blue back drop is talking to a camera", "video_id": "video11348", "sen_id": 216708}, {"caption": "a man advertises opensource technology for teaching topics via the internet", "video_id": "video11348", "sen_id": 216709}, {"caption": " white-haired man with pink skin wearing busy button-down patterned shirt with diamonds and an open collarstands against a blue backdrop", "video_id": "video11348", "sen_id": 216710}, {"caption": "a man talking about something in the media show", "video_id": "video11348", "sen_id": 216711}, {"caption": "a man describes an open source project which helps people present online courses on various topics", "video_id": "video11348", "sen_id": 216712}, {"caption": "a old man standing speaking still picture on screen speaking about technology project displaying on screen", "video_id": "video11348", "sen_id": 216713}, {"caption": "old blonde in colorful shirt talking to the camera", "video_id": "video11348", "sen_id": 216714}, {"caption": "a man is talking about a project that is being released to the public", "video_id": "video11348", "sen_id": 216715}, {"caption": "a white haired old man with a patterned shirt is speaking", "video_id": "video11348", "sen_id": 216716}, {"caption": "an elderly gentleman announces the availability of open source courseware tools", "video_id": "video11348", "sen_id": 216717}, {"caption": "a man describes how to make your own instructional videos for online distribution", "video_id": "video11348", "sen_id": 216718}, {"caption": "an old guy with white hair is teaching soemthing", "video_id": "video11348", "sen_id": 216719}, {"caption": "a group of people traveling through a forest", "video_id": "video10366", "sen_id": 216720}, {"caption": "a group of hikers traveling a foreign land", "video_id": "video10366", "sen_id": 216721}, {"caption": "a group of men hiking up a mountain", "video_id": "video10366", "sen_id": 216722}, {"caption": "people in backpacks hike up a hill and the camera pans over cabins", "video_id": "video10366", "sen_id": 216723}, {"caption": "a group of young people wearing backpacks walk along a mountain trail", "video_id": "video10366", "sen_id": 216724}, {"caption": "four friends are trekking through the dense forest with huge bags on their shoulder", "video_id": "video10366", "sen_id": 216725}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10366", "sen_id": 216726}, {"caption": "four backpacker trekking though the forest and scenes of the countryside", "video_id": "video10366", "sen_id": 216727}, {"caption": "few travelers having a walk in the mountains", "video_id": "video10366", "sen_id": 216728}, {"caption": "bunch of people with back packs walking into woods", "video_id": "video10366", "sen_id": 216729}, {"caption": "there are some tourists walking with luggage s", "video_id": "video10366", "sen_id": 216730}, {"caption": "backpackers hike and different scenes of the houses and paths in the area are shown", "video_id": "video10366", "sen_id": 216731}, {"caption": "a group of hikers walks in the woods a group of houses near each other", "video_id": "video10366", "sen_id": 216732}, {"caption": "this is a travel channel and shows the places which interests the people", "video_id": "video10366", "sen_id": 216733}, {"caption": "some people are hiking in a forest area", "video_id": "video10366", "sen_id": 216734}, {"caption": "artuch travel channel commercial showing four backpackers in a small remote village", "video_id": "video10366", "sen_id": 216735}, {"caption": "a group men traveling by walk inside the forest", "video_id": "video10366", "sen_id": 216736}, {"caption": "five hikers walk into the woods together", "video_id": "video10366", "sen_id": 216737}, {"caption": "some hiking campers are shown in a scenic area while music plays to advertise artuch travel channel", "video_id": "video10366", "sen_id": 216738}, {"caption": "the exterior of some houses are being filmed", "video_id": "video10366", "sen_id": 216739}, {"caption": "there is a man on a stage singing in front of a large audience", "video_id": "video12763", "sen_id": 216740}, {"caption": "singer is singing in front of a huge crowd", "video_id": "video12763", "sen_id": 216741}, {"caption": "a man is talking about one of the most successful singers of all time while a man is singing on stage in front of an extremely large crowd", "video_id": "video12763", "sen_id": 216742}, {"caption": "a singer runs back and forth on a stage in front of a large crowd of people", "video_id": "video12763", "sen_id": 216743}, {"caption": "there is a person followed by a crowd of people being sung to by someone in a white jacket running around", "video_id": "video12763", "sen_id": 216744}, {"caption": "concert is being shown with a man singing for many people there is someone commenting in the background as this video appears to be a documentary of this artist", "video_id": "video12763", "sen_id": 216745}, {"caption": "a man singing at a concert in front of a large crowd", "video_id": "video12763", "sen_id": 216746}, {"caption": "a man performs on a stage in front of a large audience", "video_id": "video12763", "sen_id": 216747}, {"caption": "a boy talks a crowd is cherring inside an auditorium while a singer is singing on stage", "video_id": "video12763", "sen_id": 216748}, {"caption": "the life story of a famous music artist", "video_id": "video12763", "sen_id": 216749}, {"caption": "famous pop-singer rod stewart in concert for a documentary", "video_id": "video12763", "sen_id": 216750}, {"caption": "a singer on stage singing with a packed house enjoying his music", "video_id": "video12763", "sen_id": 216751}, {"caption": "a haunted looking man discusses events on a black and white film", "video_id": "video12763", "sen_id": 216752}, {"caption": "a man is singing a song on the stage", "video_id": "video12763", "sen_id": 216753}, {"caption": "a man is speaking about a successful singer and the singer is also famous", "video_id": "video12763", "sen_id": 216754}, {"caption": "a narrator talking about one of the most successful singers of all time", "video_id": "video12763", "sen_id": 216755}, {"caption": "there is big crowd lessening a song from the stage", "video_id": "video12763", "sen_id": 216756}, {"caption": "a band is performing a song with passionate rendering from the singer", "video_id": "video12763", "sen_id": 216757}, {"caption": "a man is singing a song on the stage and a people are watching it", "video_id": "video12763", "sen_id": 216758}, {"caption": "a person on stage holding a mic and singing to crowds of people", "video_id": "video12763", "sen_id": 216759}, {"caption": "a man cooks meat patties on an outdoor grill placed over a small fire pit", "video_id": "video10307", "sen_id": 216760}, {"caption": "a man cleans a grittle in order to prepare to cook on it", "video_id": "video10307", "sen_id": 216761}, {"caption": "a man is cleaning a flat metal plate that is on a camp fire in preparation for cooking", "video_id": "video10307", "sen_id": 216762}, {"caption": "a man is wiping off an outdoor griddle which he is preparing to cook hamburgers on", "video_id": "video10307", "sen_id": 216763}, {"caption": "a man wipes off the cooktop of an outdoor grill he is preparing to use", "video_id": "video10307", "sen_id": 216764}, {"caption": "a guy cleaning his outside mojo griddle getting it ready to cook some food on it over a fire", "video_id": "video10307", "sen_id": 216765}, {"caption": "a male artist prepares a piece of round metal with oil outside on the ground", "video_id": "video10307", "sen_id": 216766}, {"caption": "a man greases his mojo griddle so he can add meat to it", "video_id": "video10307", "sen_id": 216767}, {"caption": "a man is oiling an outdoor grill and placing some meat on it", "video_id": "video10307", "sen_id": 216768}, {"caption": "a man cleaning a griddle on a camp fire preparing to cook food", "video_id": "video10307", "sen_id": 216769}, {"caption": "a man showing how to oil a griddle on an outdoor campfire", "video_id": "video10307", "sen_id": 216770}, {"caption": "a man is explaining how to cook on an outdoor campfire rock ring using a stone as a griddle for hamburger patties", "video_id": "video10307", "sen_id": 216771}, {"caption": "a man cleans off the surface of an outdoor grill then begins to place food atop the clean surface", "video_id": "video10307", "sen_id": 216772}, {"caption": "a man is showing how to get a griddle ready", "video_id": "video10307", "sen_id": 216773}, {"caption": "a man is using a stone griddle to cook some food on it", "video_id": "video10307", "sen_id": 216774}, {"caption": "there is a man in tshirt cooking some food outside", "video_id": "video10307", "sen_id": 216775}, {"caption": "a man is cleaning a hot plate over flames and puts some food upon it", "video_id": "video10307", "sen_id": 216776}, {"caption": "guy is cleaning gridle guide to cooking outside", "video_id": "video10307", "sen_id": 216777}, {"caption": "a man scrubs a grill in his outdoor campfire", "video_id": "video10307", "sen_id": 216778}, {"caption": "a man is cleaning a black iron stove kept outside and putting a dish on it", "video_id": "video10307", "sen_id": 216779}, {"caption": "a woman explaining the changes of the heat in the ocean", "video_id": "video10599", "sen_id": 216780}, {"caption": "a graph shows how the ocean is warming and a woman speaks on the issue", "video_id": "video10599", "sen_id": 216781}, {"caption": "a scientist is discussing of the warming of the ocean", "video_id": "video10599", "sen_id": 216782}, {"caption": "a man with short blonde hair talks while sitting down", "video_id": "video10599", "sen_id": 216783}, {"caption": "a woman talks about the effects of global warming", "video_id": "video10599", "sen_id": 216784}, {"caption": "a woman talks about her theories related to warmer ocean waters", "video_id": "video10599", "sen_id": 216785}, {"caption": "a person is giving information about the warming of the ocean and demonstrates the increase with a graph", "video_id": "video10599", "sen_id": 216786}, {"caption": "a woman talking about the ocean heat content", "video_id": "video10599", "sen_id": 216787}, {"caption": "a bar chart a woman talking and some people pushing tanks on a ship deck", "video_id": "video10599", "sen_id": 216788}, {"caption": "a woman speaking about global warming accompanied by a graph", "video_id": "video10599", "sen_id": 216789}, {"caption": "two people pulling some instrument in the ship and one man is watching them", "video_id": "video10599", "sen_id": 216790}, {"caption": "a graph demonstrates what will happen if the warming of the oceans continues", "video_id": "video10599", "sen_id": 216791}, {"caption": "the lines on the graph all rise upward", "video_id": "video10599", "sen_id": 216792}, {"caption": "a woman talking and showing graphs on average heat", "video_id": "video10599", "sen_id": 216793}, {"caption": "an old lady inside ship discusing about the graph of atmosphere and moving machine", "video_id": "video10599", "sen_id": 216794}, {"caption": "change in global average upper ocean heat content", "video_id": "video10599", "sen_id": 216795}, {"caption": "change in global average upper ocean heat content", "video_id": "video10599", "sen_id": 216796}, {"caption": "graphs and opinion corroborating the gradual heating of the ocean", "video_id": "video10599", "sen_id": 216797}, {"caption": "a graph image and ship inside man moving machine and lady speaking", "video_id": "video10599", "sen_id": 216798}, {"caption": "some guys on a boat are moving something", "video_id": "video10599", "sen_id": 216799}, {"caption": "people are talking about an automated laser tech operation", "video_id": "video12008", "sen_id": 216800}, {"caption": "a large piece of machinery is at work inside a factory", "video_id": "video12008", "sen_id": 216801}, {"caption": "an assembly line is putting together some sort of object", "video_id": "video12008", "sen_id": 216802}, {"caption": "large machines that print paper are shown herre", "video_id": "video12008", "sen_id": 216803}, {"caption": "a large industrial machine manufactures product as people look on in amazement", "video_id": "video12008", "sen_id": 216804}, {"caption": "someone pans the window of a restaurant at dusk", "video_id": "video12008", "sen_id": 216805}, {"caption": "a white colored machine labeled lasertech is operating using large metallic parts", "video_id": "video12008", "sen_id": 216806}, {"caption": "a large machine encased in glass in being shown", "video_id": "video12008", "sen_id": 216807}, {"caption": "a laser machine of some sort works in a concerted effort whle a group of people watch and pass by", "video_id": "video12008", "sen_id": 216808}, {"caption": "a large industrial machine is being demonstrated while men in suits walk past in the room", "video_id": "video12008", "sen_id": 216809}, {"caption": "a n inside view of a subway train", "video_id": "video12008", "sen_id": 216810}, {"caption": "technical machinery is inside blue-tinted windowed cases elevated on white platforms near a space with reflective mirrored glass above yellow-and-white tape", "video_id": "video12008", "sen_id": 216811}, {"caption": "a rectangular and reflective blue screen has a control panel on the side and is above a small machine processing flat white and yellow rods", "video_id": "video12008", "sen_id": 216812}, {"caption": "a large industrial machine performs operations that construct a final product", "video_id": "video12008", "sen_id": 216813}, {"caption": "a machine making sound and people are working beside", "video_id": "video12008", "sen_id": 216814}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video12008", "sen_id": 216815}, {"caption": "kal 330 optimal laser tec patented machine running", "video_id": "video12008", "sen_id": 216816}, {"caption": "laser tec machine works with great sound a person in coat crosses the machine", "video_id": "video12008", "sen_id": 216817}, {"caption": "from an industrial place a machine name & model printed like laser teckal 330 is on running mode", "video_id": "video12008", "sen_id": 216818}, {"caption": "a group of people looking at and discussing an assembly line robot", "video_id": "video12008", "sen_id": 216819}, {"caption": "a young girl is crying while sitting on the couch next to her father watching tv", "video_id": "video12488", "sen_id": 216820}, {"caption": "a young girls makeup runs as she cries because her father will not share the video games", "video_id": "video12488", "sen_id": 216821}, {"caption": "a young girl that is sitting on a couch has mascara running down her face as she points to a drawing of her and her dad", "video_id": "video12488", "sen_id": 216822}, {"caption": "a little girl is crying and then holds up a drawing and points to it", "video_id": "video12488", "sen_id": 216823}, {"caption": "a little girl with blonde hair cries while her dad plays video games", "video_id": "video12488", "sen_id": 216824}, {"caption": "a little girl in a pink shirt that was crying and slowly puts a sign up in front of her face", "video_id": "video12488", "sen_id": 216825}, {"caption": "a young blonde girl with running mascara shows a picture she has drawn of herself and her father", "video_id": "video12488", "sen_id": 216826}, {"caption": "the girl with blond hair and pink tops expressing the feeling of unhappy and she is suffering from something", "video_id": "video12488", "sen_id": 216827}, {"caption": "a sad girl with bruises on her eyes shows the evidence of domestic violence while the song i want to be all by myself plays", "video_id": "video12488", "sen_id": 216828}, {"caption": "a girl with a man is showing a figure", "video_id": "video12488", "sen_id": 216829}, {"caption": " wearing a pink top has black marks under her eyes and sits on the sofa with her busy father and she lifts a drawing of the two of them", "video_id": "video12488", "sen_id": 216830}, {"caption": "a young girl with a crying face points to a drawing as a song plays in the background", "video_id": "video12488", "sen_id": 216831}, {"caption": "a kid is crying and showing the painting", "video_id": "video12488", "sen_id": 216832}, {"caption": "a girl sits near to a man and shows her drawing on a paper", "video_id": "video12488", "sen_id": 216833}, {"caption": "a small blond girl is crying so much her makeup is running down her face", "video_id": "video12488", "sen_id": 216834}, {"caption": "a daughter feels so bad about her daddy and shows it on the paper", "video_id": "video12488", "sen_id": 216835}, {"caption": "cute blonde girl showing her hurt face and the drawing about her dad", "video_id": "video12488", "sen_id": 216836}, {"caption": "a girl is sitting nearby a man on the chair", "video_id": "video12488", "sen_id": 216837}, {"caption": "a young blond girl is crying on a couch holding up a hand drawn picture", "video_id": "video12488", "sen_id": 216838}, {"caption": "a music video where a kid is showing a drawing of her missing her daddy", "video_id": "video12488", "sen_id": 216839}, {"caption": "a collie sitting on a lavender carpet and talking", "video_id": "video10797", "sen_id": 216840}, {"caption": "a dog gets all excited and growls when he hears a voice on the phone", "video_id": "video10797", "sen_id": 216841}, {"caption": "a dog reacts to a voice recorded message", "video_id": "video10797", "sen_id": 216842}, {"caption": "a dog barking to someone on the phone", "video_id": "video10797", "sen_id": 216843}, {"caption": "a dog is barking at someone over the phone", "video_id": "video10797", "sen_id": 216844}, {"caption": "a woman holds a phone up to her dog so the dog can talk to a person on the line", "video_id": "video10797", "sen_id": 216845}, {"caption": "a furry dog talks to their owner over the phone", "video_id": "video10797", "sen_id": 216846}, {"caption": "some one showing the mobile to a cute dog", "video_id": "video10797", "sen_id": 216847}, {"caption": "a dog that is orange and white barks into a cell phone", "video_id": "video10797", "sen_id": 216848}, {"caption": "a dog listening to a cell phone that a person is holding near the dog", "video_id": "video10797", "sen_id": 216849}, {"caption": " i want that dog he is so smart", "video_id": "video10797", "sen_id": 216850}, {"caption": "a dog listens to a voice coming through a phone and growls in response", "video_id": "video10797", "sen_id": 216851}, {"caption": "a man is talking to a dog over a cellphone", "video_id": "video10797", "sen_id": 216852}, {"caption": "a collie sits on a rug that is scattered with toys responding to the voice on a cell phone that is held out by a person s hand", "video_id": "video10797", "sen_id": 216853}, {"caption": "a dog is barking at the person talking on the phone", "video_id": "video10797", "sen_id": 216854}, {"caption": "a video of someone holding a phone so as the person on the other end can talk to a dog", "video_id": "video10797", "sen_id": 216855}, {"caption": "a dog is responding to a person on the other line of the telephone", "video_id": "video10797", "sen_id": 216856}, {"caption": "a person is holding a cellphone screen in front of a puppy", "video_id": "video10797", "sen_id": 216857}, {"caption": "a dog is barking at a phone while the person on the phone talks to the dog", "video_id": "video10797", "sen_id": 216858}, {"caption": "a man talking over a speaker phone and a dog baring softly at him", "video_id": "video10797", "sen_id": 216859}, {"caption": "a man talks about a piece of machinery as it is displayed", "video_id": "video12508", "sen_id": 216860}, {"caption": "a piece of equipment is described in detail", "video_id": "video12508", "sen_id": 216861}, {"caption": "a video talk of the features of this electric tool", "video_id": "video12508", "sen_id": 216862}, {"caption": "a man discusses the various features of a piece of equipment", "video_id": "video12508", "sen_id": 216863}, {"caption": "a male voiceover describe stills of an enclosed piece of equipment and a drill press", "video_id": "video12508", "sen_id": 216864}, {"caption": "large grey and black shop tool sitting next to a mechanical control keypad", "video_id": "video12508", "sen_id": 216865}, {"caption": "some one showing the display of new machine", "video_id": "video12508", "sen_id": 216866}, {"caption": "a voice of a man is explaining what this robot is and what it does", "video_id": "video12508", "sen_id": 216867}, {"caption": "here is very advanced technology based computerand the description is about its advantages", "video_id": "video12508", "sen_id": 216868}, {"caption": "machines like thing its in silver colorjet word is displayed on black screen", "video_id": "video12508", "sen_id": 216869}, {"caption": "a machinery equipment still picture shown on screen explayning displaying on screen", "video_id": "video12508", "sen_id": 216870}, {"caption": "its a machine for all purpose in factories", "video_id": "video12508", "sen_id": 216871}, {"caption": "machine is making some designs in steel plated", "video_id": "video12508", "sen_id": 216872}, {"caption": "a man is speaking about various applications of a computer", "video_id": "video12508", "sen_id": 216873}, {"caption": "a man talks about a drill press that looks very advanced", "video_id": "video12508", "sen_id": 216874}, {"caption": "there is a machine with multi functions and easy to use", "video_id": "video12508", "sen_id": 216875}, {"caption": "computer science engineers have a wide scope of practising in various fields", "video_id": "video12508", "sen_id": 216876}, {"caption": "electronic device has metal and functions properly in video", "video_id": "video12508", "sen_id": 216877}, {"caption": "a big metal woodworking machine is being described", "video_id": "video12508", "sen_id": 216878}, {"caption": "a man is unintelligibly speaking about computers and scope of practice", "video_id": "video12508", "sen_id": 216879}, {"caption": "a children's choir composed of children wearing matching shirts sings beautiful music", "video_id": "video10963", "sen_id": 216880}, {"caption": "a group of children singing a song in harmony", "video_id": "video10963", "sen_id": 216881}, {"caption": "a group of children wearing black and blue are singing in the choir", "video_id": "video10963", "sen_id": 216882}, {"caption": "children singing a song", "video_id": "video10963", "sen_id": 216883}, {"caption": "kids are singing they are wearing a black t-shirt with blue squares going in a circle on the shirt", "video_id": "video10963", "sen_id": 216884}, {"caption": "several singers both male and female wear black and blue tee shirts while singing a song", "video_id": "video10963", "sen_id": 216885}, {"caption": "a group of young people singing in a choir", "video_id": "video10963", "sen_id": 216886}, {"caption": "watch children from bay city's holy cross school sing at the state capitol", "video_id": "video10963", "sen_id": 216887}, {"caption": "children in a choir sing wearing black shirts with blue", "video_id": "video10963", "sen_id": 216888}, {"caption": "a youth choir singing an religious song wearing black shirts", "video_id": "video10963", "sen_id": 216889}, {"caption": "a group of children are singing in a gospel choir", "video_id": "video10963", "sen_id": 216890}, {"caption": "a choir of children sing in black shirts with blue embellishments", "video_id": "video10963", "sen_id": 216891}, {"caption": "a group of young people in a choir singing a hymn", "video_id": "video10963", "sen_id": 216892}, {"caption": "a choir of children sing in black shirts with blue embellishments", "video_id": "video10963", "sen_id": 216893}, {"caption": "a couple of kids standing on stage singing a song together", "video_id": "video10963", "sen_id": 216894}, {"caption": "a group of kids in uniform are standing and singing", "video_id": "video10963", "sen_id": 216895}, {"caption": "a choir black tee shirts with blue writing and made up of both boys and girls sing a religious hymm for the viewing audience", "video_id": "video10963", "sen_id": 216896}, {"caption": "several people in a choir wearing matching black and blue shirts sing hymns", "video_id": "video10963", "sen_id": 216897}, {"caption": "a choir of young people singing while wearing matching black shirts", "video_id": "video10963", "sen_id": 216898}, {"caption": "a church devotional song sung by the young chorus devotionally", "video_id": "video10963", "sen_id": 216899}, {"caption": "a person talking about a motorcycle while on the street behind another car", "video_id": "video11319", "sen_id": 216900}, {"caption": "a man on a motorcycle stops behind a car on the left lane", "video_id": "video11319", "sen_id": 216901}, {"caption": "a motorcycle is on the road in traffic behind another vehicle at night", "video_id": "video11319", "sen_id": 216902}, {"caption": "a person is driving a motorcycle late at night with many lights around", "video_id": "video11319", "sen_id": 216903}, {"caption": "a man talks about having a leader bike from his perspective on a motorcycle", "video_id": "video11319", "sen_id": 216904}, {"caption": "a man rides a motorcycle in traffic at night on a busy city street", "video_id": "video11319", "sen_id": 216905}, {"caption": "the taillights of a car on a street at night", "video_id": "video11319", "sen_id": 216906}, {"caption": "man discusses how batteries do not last long when you want speed", "video_id": "video11319", "sen_id": 216907}, {"caption": "a person is riding a motorcycle out on the road at night", "video_id": "video11319", "sen_id": 216908}, {"caption": "a motorcyclists talks about the differences between bikes while stopped behind a car", "video_id": "video11319", "sen_id": 216909}, {"caption": "there is a car keep going and blinking it s break light", "video_id": "video11319", "sen_id": 216910}, {"caption": "a man on a motorcycle sets in a line of traffic and discusses the performance of his bike", "video_id": "video11319", "sen_id": 216911}, {"caption": "a guy is at a red light behind a car on his motorcycle", "video_id": "video11319", "sen_id": 216912}, {"caption": "a man is riding a bike on road and telling its features and his experience", "video_id": "video11319", "sen_id": 216913}, {"caption": "the person is following the car in bike with head camera", "video_id": "video11319", "sen_id": 216914}, {"caption": "a man riding the bike in the night time on the road", "video_id": "video11319", "sen_id": 216915}, {"caption": "a motorcyclist narrates over a first person video of him riding down the road", "video_id": "video11319", "sen_id": 216916}, {"caption": "an man explaning about the speeding bike changing motion", "video_id": "video11319", "sen_id": 216917}, {"caption": "in a dark place and person is talking with another guy about a car", "video_id": "video11319", "sen_id": 216918}, {"caption": "a car on the road has its rear lights on", "video_id": "video11319", "sen_id": 216919}, {"caption": "video game being played in which a man character gets into a car", "video_id": "video10407", "sen_id": 216920}, {"caption": "a video game character is running around the streets and gets into a car", "video_id": "video10407", "sen_id": 216921}, {"caption": "video game shows player carrying gun and going to a red car driving off", "video_id": "video10407", "sen_id": 216922}, {"caption": "a red car is driving through an old area", "video_id": "video10407", "sen_id": 216923}, {"caption": "a vidio game of guy stealing a red convertible ", "video_id": "video10407", "sen_id": 216924}, {"caption": "a man wearing a brown shirt and holding a gun", "video_id": "video10407", "sen_id": 216925}, {"caption": "a man in a video game getting into a red convertible car", "video_id": "video10407", "sen_id": 216926}, {"caption": "someone is playing a video game in which a man hits someone with his gun and then sits in a red car and drives off", "video_id": "video10407", "sen_id": 216927}, {"caption": "fighting on street with gun in his hand and running towards a car", "video_id": "video10407", "sen_id": 216928}, {"caption": "one man playing video shooting game and finding target", "video_id": "video10407", "sen_id": 216929}, {"caption": "a cartoon hero is running with his gun and went in the car", "video_id": "video10407", "sen_id": 216930}, {"caption": "there is a commando fighting against enemies", "video_id": "video10407", "sen_id": 216931}, {"caption": "the man shows how to play this video game", "video_id": "video10407", "sen_id": 216932}, {"caption": "a man holding a gun runs up to a red car and gets in", "video_id": "video10407", "sen_id": 216933}, {"caption": "a man in a video game is running around carrying a gun", "video_id": "video10407", "sen_id": 216934}, {"caption": "an animated movie is going on the video one person was hit by a rifle and he is escaping by a car", "video_id": "video10407", "sen_id": 216935}, {"caption": "there is a man running in to a red color car", "video_id": "video10407", "sen_id": 216936}, {"caption": "its a 3d animated person goes and drive a car", "video_id": "video10407", "sen_id": 216937}, {"caption": "this is a game video one person is holding a gun and running and finally he drive a car", "video_id": "video10407", "sen_id": 216938}, {"caption": "someone is making a tutorial on a video game they are playing", "video_id": "video10407", "sen_id": 216939}, {"caption": "two men are walking their dogs outside and talking", "video_id": "video12692", "sen_id": 216940}, {"caption": "two men are having a mild confrontation about dog ownership", "video_id": "video12692", "sen_id": 216941}, {"caption": "a dog sits by his owner who is texting outside a building when another man skips by with his dog and stops with accusing questions while pointing at them", "video_id": "video12692", "sen_id": 216942}, {"caption": "man in blue is texting while holding his dogs leash while another man in plaid with another dog approaches and asks him who he is texting", "video_id": "video12692", "sen_id": 216943}, {"caption": "guys are out hanging out with their large dogs", "video_id": "video12692", "sen_id": 216944}, {"caption": "there is a check shirt man talking with a man with dog", "video_id": "video12692", "sen_id": 216945}, {"caption": "two men standing and holding dogs on leashes while talking", "video_id": "video12692", "sen_id": 216946}, {"caption": "the two men with their dogs are talking to each other", "video_id": "video12692", "sen_id": 216947}, {"caption": "two men who are out with their dogs start talking to each other about the dogs", "video_id": "video12692", "sen_id": 216948}, {"caption": "a dog sits and hangs out with its master on the sidewalk", "video_id": "video12692", "sen_id": 216949}, {"caption": "two man are holding their dogs and walking", "video_id": "video12692", "sen_id": 216950}, {"caption": "two men in hats meeting on a sidewalk while with leashed dogs discussing being a responsible owner", "video_id": "video12692", "sen_id": 216951}, {"caption": "a man lecturing a man on how to be a better dog owner", "video_id": "video12692", "sen_id": 216952}, {"caption": "two men are talking about their dogs the first is asking the other what he was doing and he replies that he was texting the dogs therapist", "video_id": "video12692", "sen_id": 216953}, {"caption": "two young guys do a funny bit about owning dogs", "video_id": "video12692", "sen_id": 216954}, {"caption": "men showing examples of how to be bad dog owners in a comical way", "video_id": "video12692", "sen_id": 216955}, {"caption": "a man skips around the corner with his dog on a leash and then stops to talk to another man with a dog", "video_id": "video12692", "sen_id": 216956}, {"caption": "a male dog owner criticizes another male dog owner for the way he feeds his pet", "video_id": "video12692", "sen_id": 216957}, {"caption": "two men walking their dogs on a sidewalk", "video_id": "video12692", "sen_id": 216958}, {"caption": "two men with dogs with one asking what the other feeds his dog", "video_id": "video12692", "sen_id": 216959}, {"caption": "welcome to the philippines is displayed then a beautiful green mountain is shown", "video_id": "video11359", "sen_id": 216960}, {"caption": "a video introduction of the philipines and there mountain ranges", "video_id": "video11359", "sen_id": 216961}, {"caption": "green hills with narrowing levels that look like steps", "video_id": "video11359", "sen_id": 216962}, {"caption": "a black background with words written in white and then pretty green hills", "video_id": "video11359", "sen_id": 216963}, {"caption": "a message reads welcome to the philippines and is followed by an image of a mountain with steps", "video_id": "video11359", "sen_id": 216964}, {"caption": "a sign that says welcome to the philippines", "video_id": "video11359", "sen_id": 216965}, {"caption": "words scrolling on a black screen into a mountain scenery", "video_id": "video11359", "sen_id": 216966}, {"caption": "text displays welcome to the philippines while an easy-going whistling song is played panning out to an underwater scene", "video_id": "video11359", "sen_id": 216967}, {"caption": "the beautiful scene of nature in the country of philippenes", "video_id": "video11359", "sen_id": 216968}, {"caption": "landscape shot from a drone highlight the landscape of the phillipines", "video_id": "video11359", "sen_id": 216969}, {"caption": "tourist video for the tourism sites located in the philippines", "video_id": "video11359", "sen_id": 216970}, {"caption": "there is a a mountain with full of green", "video_id": "video11359", "sen_id": 216971}, {"caption": "it is the philippine mountains and it is beautiful", "video_id": "video11359", "sen_id": 216972}, {"caption": "welcome to the philippines is displayed and then a picture of possible underwater caverns", "video_id": "video11359", "sen_id": 216973}, {"caption": "phillippines country pictures and sceneries are being shown here", "video_id": "video11359", "sen_id": 216974}, {"caption": "a vast landscape is being filmed from above", "video_id": "video11359", "sen_id": 216975}, {"caption": "there is a huge mountain with plants around", "video_id": "video11359", "sen_id": 216976}, {"caption": "a tourist advertisement to welcome tourists to the philippines", "video_id": "video11359", "sen_id": 216977}, {"caption": "a adventures scene displaying on the scene beautiful to look historical", "video_id": "video11359", "sen_id": 216978}, {"caption": "a place which was green in colour and really nice to see", "video_id": "video11359", "sen_id": 216979}, {"caption": "the man is explaining how best to teach online courses using a diagram", "video_id": "video11746", "sen_id": 216980}, {"caption": "a blonde hair man is explaining the chart next to him dealing with online courses", "video_id": "video11746", "sen_id": 216981}, {"caption": "a man in front of a blue screen gives a presentation", "video_id": "video11746", "sen_id": 216982}, {"caption": "a man gives a lecture that relates to a flow chart that he has prepared", "video_id": "video11746", "sen_id": 216983}, {"caption": "a man talking about best practices for online classes next to a flow chart", "video_id": "video11746", "sen_id": 216984}, {"caption": "a man talks about information he has compiled in a flow chart", "video_id": "video11746", "sen_id": 216985}, {"caption": "a white haired man lectures about information he has compiled on a flow chart", "video_id": "video11746", "sen_id": 216986}, {"caption": "a man with white hair talking about a process map for best practices for online content", "video_id": "video11746", "sen_id": 216987}, {"caption": "a white-haired man wearing a gray shirt with a diamond pattern speaks while a long diagram with rectangles ovals and arrows scrolls down to his side", "video_id": "video11746", "sen_id": 216988}, {"caption": "a man is talking about teaching online courses", "video_id": "video11746", "sen_id": 216989}, {"caption": "a man going over a flow chart describing teaching styles of online courses", "video_id": "video11746", "sen_id": 216990}, {"caption": "an older man with white hair speaking about a verbal tree of some sort", "video_id": "video11746", "sen_id": 216991}, {"caption": "a old man talking some inportant matter in front of the camera", "video_id": "video11746", "sen_id": 216992}, {"caption": "old man with white hair is talking with illustrations", "video_id": "video11746", "sen_id": 216993}, {"caption": "a man in a button down shirt explaining a chain of events", "video_id": "video11746", "sen_id": 216994}, {"caption": "a man is detailing a chart on a screen", "video_id": "video11746", "sen_id": 216995}, {"caption": "a man with white hair describing patient practices", "video_id": "video11746", "sen_id": 216996}, {"caption": "a white man with white hair and printed shirt explanes a bubble chart", "video_id": "video11746", "sen_id": 216997}, {"caption": "an old man in black design dress is talking to other person very seriously", "video_id": "video11746", "sen_id": 216998}, {"caption": "a man with white hair is talking about thigns", "video_id": "video11746", "sen_id": 216999}, {"caption": "several slides promise to give us more because we deserve it", "video_id": "video11576", "sen_id": 217000}, {"caption": "a man is singing while the lyrics to his song are being broadcast", "video_id": "video11576", "sen_id": 217001}, {"caption": "a song about deserving more where a group of men in armor walk by pushing jesus who is carrying a cross", "video_id": "video11576", "sen_id": 217002}, {"caption": "a group sings a song in a video for a song they are performing", "video_id": "video11576", "sen_id": 217003}, {"caption": "a commercial stating it will give more is playing with the words flashing across different backgrounds and one scene of medieval soldiers", "video_id": "video11576", "sen_id": 217004}, {"caption": "lyrics appear on screen while a man sings the words", "video_id": "video11576", "sen_id": 217005}, {"caption": "this advertisement features a man singing about giving more", "video_id": "video11576", "sen_id": 217006}, {"caption": "some words on the screen and some people laughing", "video_id": "video11576", "sen_id": 217007}, {"caption": "deserve and more all this so i give you more", "video_id": "video11576", "sen_id": 217008}, {"caption": "a man stands with his hands waiving in the air", "video_id": "video11576", "sen_id": 217009}, {"caption": "there is a wounded man carrying cross with pain", "video_id": "video11576", "sen_id": 217010}, {"caption": "the heartbreaking journey of jesus christ for crucification is being pictured for a song", "video_id": "video11576", "sen_id": 217011}, {"caption": "words appearing on colored screens with a man singing", "video_id": "video11576", "sen_id": 217012}, {"caption": "its a ad with a back ground", "video_id": "video11576", "sen_id": 217013}, {"caption": "a movie of jesus is been shown in the video", "video_id": "video11576", "sen_id": 217014}, {"caption": "there is something impressing matters goin on", "video_id": "video11576", "sen_id": 217015}, {"caption": "a man is singing a song i give more", "video_id": "video11576", "sen_id": 217016}, {"caption": "an african american man sings a song and holds his hands up to the sky", "video_id": "video11576", "sen_id": 217017}, {"caption": "words giving advice and care about your current life with music", "video_id": "video11576", "sen_id": 217018}, {"caption": "some white text is being shown on a yellow background", "video_id": "video11576", "sen_id": 217019}, {"caption": "computer simulations are shown while a woman is being interviewed", "video_id": "video10574", "sen_id": 217020}, {"caption": "a woman watches a computer showing the landscape", "video_id": "video10574", "sen_id": 217021}, {"caption": "a woman in a black coat invetigates computers simulated elements", "video_id": "video10574", "sen_id": 217022}, {"caption": "man speaks about computer simulated elements while woman is shown with computer and explaining about them as well", "video_id": "video10574", "sen_id": 217023}, {"caption": "a man breezily describes software developers were creating a woman in a black jacket goes further into detail about the software", "video_id": "video10574", "sen_id": 217024}, {"caption": "a woman with short hair and dark clothing sits at a desk and works on her laptop", "video_id": "video10574", "sen_id": 217025}, {"caption": "a woman looks at a rectangular object on her laptop while the man to her right looks over her shoulder at her screen as they sit in a white tent while a truck passes outside", "video_id": "video10574", "sen_id": 217026}, {"caption": "a computer generated image is being shown on the screen of a laptop", "video_id": "video10574", "sen_id": 217027}, {"caption": "there is a women working with her laptop", "video_id": "video10574", "sen_id": 217028}, {"caption": "a woman with a computer looks at various images of nature", "video_id": "video10574", "sen_id": 217029}, {"caption": "a lady in black dress in front of laptop speaking with grass land cartoon displaying on the screen", "video_id": "video10574", "sen_id": 217030}, {"caption": "a men is looking and doing some work on monitor", "video_id": "video10574", "sen_id": 217031}, {"caption": " in a black coat and blue scarf discussing computer generated elements", "video_id": "video10574", "sen_id": 217032}, {"caption": "a woman is talking about a photograpic", "video_id": "video10574", "sen_id": 217033}, {"caption": "compiuter simulators are described by the developers who put the programs together", "video_id": "video10574", "sen_id": 217034}, {"caption": "part of film that shows robots(aliens) animated figures are approaching the land which is being seen through remote sensing and is being reported by the lady", "video_id": "video10574", "sen_id": 217035}, {"caption": "a lady is telling about the 3d computer graphics she and her team has created probably they are making some 3d maps for gps devices", "video_id": "video10574", "sen_id": 217036}, {"caption": "a woman is talking about photography with a computer", "video_id": "video10574", "sen_id": 217037}, {"caption": "an old lady talk about the robotshe has brown hair and laptopshe looks brave", "video_id": "video10574", "sen_id": 217038}, {"caption": "a mature women with short hair is working on a laptop", "video_id": "video10574", "sen_id": 217039}, {"caption": "a woman in a blue tank top is talking about making buttered noodles", "video_id": "video12250", "sen_id": 217040}, {"caption": "this chef likes to make buttered noodles for her children because they are picky eaters", "video_id": "video12250", "sen_id": 217041}, {"caption": "the woman stands at the counter explaining what kind of noodles she will make", "video_id": "video12250", "sen_id": 217042}, {"caption": "a woman appears and talks about making butter noodles and then a plate of them is shown rotating around", "video_id": "video12250", "sen_id": 217043}, {"caption": "a woman talks about one of her favorite pasta recipes", "video_id": "video12250", "sen_id": 217044}, {"caption": "a woman in a blue shirt is in a kitchen", "video_id": "video12250", "sen_id": 217045}, {"caption": "a women in blue top is saying something about cooking", "video_id": "video12250", "sen_id": 217046}, {"caption": "a girl in blue shirt says that the pasta is her favorite recipeshe spread that in a plate", "video_id": "video12250", "sen_id": 217047}, {"caption": "a blonde woman in a blue shirt is making a pasta recipe in her kitchen", "video_id": "video12250", "sen_id": 217048}, {"caption": "one lady in skyblue dress teaching how to cook butter noodles", "video_id": "video12250", "sen_id": 217049}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12250", "sen_id": 217050}, {"caption": "one women making a tasty recipe pasta in a bowl", "video_id": "video12250", "sen_id": 217051}, {"caption": "a woman discusses her favorite family recipe", "video_id": "video12250", "sen_id": 217052}, {"caption": "a blue dress girl meal on the table plate dish explaning", "video_id": "video12250", "sen_id": 217053}, {"caption": "a women is pouring pasta into a serving plate garnished with green leaves", "video_id": "video12250", "sen_id": 217054}, {"caption": "the lady with blue tops talks about making butter noodles for her family and says her family member are big eater", "video_id": "video12250", "sen_id": 217055}, {"caption": "a woman is making a pasta and placing it in the serving plate", "video_id": "video12250", "sen_id": 217056}, {"caption": "a woman discusses making butter noodles for picky eaters", "video_id": "video12250", "sen_id": 217057}, {"caption": "a paper a girl in blue dress noodles inside plate kitchen prepared to serve to eat dish displaying on screen", "video_id": "video12250", "sen_id": 217058}, {"caption": "some noodles and parsley are on a plate", "video_id": "video12250", "sen_id": 217059}, {"caption": "text is scrolling across the right hand side of the screen as music plays", "video_id": "video12308", "sen_id": 217060}, {"caption": "the creation of a cute manga pixel character", "video_id": "video12308", "sen_id": 217061}, {"caption": "a tutorial gives instructions on how to create an animated character", "video_id": "video12308", "sen_id": 217062}, {"caption": "a cartoon of a little girl and a small pony", "video_id": "video12308", "sen_id": 217063}, {"caption": "a girl with blond hair and blue eyes is standing next to a puppy", "video_id": "video12308", "sen_id": 217064}, {"caption": "a tutorial of a paint shop looking program displaying a picture of a cartoon looking girl", "video_id": "video12308", "sen_id": 217065}, {"caption": "someone is creating a doll on the computer and explaining how", "video_id": "video12308", "sen_id": 217066}, {"caption": "instructions appeared on the screen as music played in the background", "video_id": "video12308", "sen_id": 217067}, {"caption": "a person typing in microsoft word about how to create an animated character", "video_id": "video12308", "sen_id": 217068}, {"caption": "an art clipping of a girl and a animal and a word document open", "video_id": "video12308", "sen_id": 217069}, {"caption": "there is a girl with cap standing with her toy", "video_id": "video12308", "sen_id": 217070}, {"caption": "there is a cartoonbecides some typing words on the computer", "video_id": "video12308", "sen_id": 217071}, {"caption": "someone on a photo software program is in the process of expleining the next step on a tutorial", "video_id": "video12308", "sen_id": 217072}, {"caption": "a person is shown making a tutorial on how to design a girl and her dog on the computer", "video_id": "video12308", "sen_id": 217073}, {"caption": "words being typed on a computer screen beside a cartoon drawing of a girl and a small animal", "video_id": "video12308", "sen_id": 217074}, {"caption": "a software is drawing one lady kid with wearing cap in standing position", "video_id": "video12308", "sen_id": 217075}, {"caption": "a person is explaining how to create art on the left side of the wondow while typing the instructions on the right side", "video_id": "video12308", "sen_id": 217076}, {"caption": "a person demonstrates a computer program that allows them to draw different dolls", "video_id": "video12308", "sen_id": 217077}, {"caption": "someone doing a tutorial on how to do something in photoshop or some type of art and graphic program", "video_id": "video12308", "sen_id": 217078}, {"caption": "a person is using a drawing program on their pc", "video_id": "video12308", "sen_id": 217079}, {"caption": "a large machine is being displayed for the air", "video_id": "video10246", "sen_id": 217080}, {"caption": "the beginning of a movie with a man in a suit", "video_id": "video10246", "sen_id": 217081}, {"caption": "this is a music video for a movie with credits showing", "video_id": "video10246", "sen_id": 217082}, {"caption": "scenes of an industrial town are being shown", "video_id": "video10246", "sen_id": 217083}, {"caption": "images of various men and rural landscape scenery flashes by", "video_id": "video10246", "sen_id": 217084}, {"caption": "a large factory sets on a large open field in a rural area", "video_id": "video10246", "sen_id": 217085}, {"caption": "credits flash on a screen on the into of a tv show", "video_id": "video10246", "sen_id": 217086}, {"caption": "this is a movie trailer containing silhouettes and half images of faces", "video_id": "video10246", "sen_id": 217087}, {"caption": "a large industrial complex sets on the outskirts of a small town", "video_id": "video10246", "sen_id": 217088}, {"caption": "a man in a dark suit in the shadows of a city", "video_id": "video10246", "sen_id": 217089}, {"caption": "a show is introduced as the names of people who act and work on it flash on the screen", "video_id": "video10246", "sen_id": 217090}, {"caption": "all persons are communicating each other", "video_id": "video10246", "sen_id": 217091}, {"caption": "intro of a movie with the actors listed", "video_id": "video10246", "sen_id": 217092}, {"caption": "an opening of a television show showing the people who worked on the series", "video_id": "video10246", "sen_id": 217093}, {"caption": "this is the visual of a tv soap opera true detectives episode 5 it s the intro of the soap opera", "video_id": "video10246", "sen_id": 217094}, {"caption": "a man in a suit stands by an old church by the dust road", "video_id": "video10246", "sen_id": 217095}, {"caption": "movie scene from a english movie showing a life of person", "video_id": "video10246", "sen_id": 217096}, {"caption": "the opening segment of an acclaimed tv show", "video_id": "video10246", "sen_id": 217097}, {"caption": "a movie in which the man looks and the interior of the vehicle is shown", "video_id": "video10246", "sen_id": 217098}, {"caption": "the beginning of a movie with a man with a suit singing a music video", "video_id": "video10246", "sen_id": 217099}, {"caption": "many dishes sit on a counter top displaying tasty looking foods", "video_id": "video11985", "sen_id": 217100}, {"caption": "a row of three fish filets are presented on a yellow dish among a variety of other foods", "video_id": "video11985", "sen_id": 217101}, {"caption": "some uncooked fish on a plate near a bowl of food", "video_id": "video11985", "sen_id": 217102}, {"caption": "three pieces of meat are staggered on a yellow plate", "video_id": "video11985", "sen_id": 217103}, {"caption": "there is a tray with pieces of salted cod on it while the narrator tells what salted cod is", "video_id": "video11985", "sen_id": 217104}, {"caption": "there are three pieces of food sitting on a yellow tray surrounded by other foods", "video_id": "video11985", "sen_id": 217105}, {"caption": "a woman is talking about how they preserved meat when there was no refrigerator", "video_id": "video11985", "sen_id": 217106}, {"caption": "a lady explains about the food items displayed on the table", "video_id": "video11985", "sen_id": 217107}, {"caption": "raw cod meat sitting on table as a woman talks", "video_id": "video11985", "sen_id": 217108}, {"caption": "a woman is telling about a food items", "video_id": "video11985", "sen_id": 217109}, {"caption": "three pieces of salted cod sit on a yellow plate among several other dishes of food as a woman talks about salted cod", "video_id": "video11985", "sen_id": 217110}, {"caption": "three fillets of cod are on a long yellow tray resting on a counter with other ingredients", "video_id": "video11985", "sen_id": 217111}, {"caption": "chees are sliced into a container and other food items also there on a table", "video_id": "video11985", "sen_id": 217112}, {"caption": "in a kitchen a couple different angles of food", "video_id": "video11985", "sen_id": 217113}, {"caption": "a person is showing food on a plate", "video_id": "video11985", "sen_id": 217114}, {"caption": "there is someone talking about a favorite recipe", "video_id": "video11985", "sen_id": 217115}, {"caption": "some meat is kept for cooking and other required integerands kept near", "video_id": "video11985", "sen_id": 217116}, {"caption": "a woman is telling a recipe for cooking", "video_id": "video11985", "sen_id": 217117}, {"caption": "three pieces of chicken on a orange plate", "video_id": "video11985", "sen_id": 217118}, {"caption": "a person is showing some meat on a tray", "video_id": "video11985", "sen_id": 217119}, {"caption": "a group of young men standing around talking", "video_id": "video11404", "sen_id": 217120}, {"caption": "a group of friends are standing outside and are talking", "video_id": "video11404", "sen_id": 217121}, {"caption": "five boys were debating on what to do whether to go or not to go to a place", "video_id": "video11404", "sen_id": 217122}, {"caption": "a group of young boys standing and talking", "video_id": "video11404", "sen_id": 217123}, {"caption": "five young men have a discussion with the camera man", "video_id": "video11404", "sen_id": 217124}, {"caption": "a group of men are standing around and chatting", "video_id": "video11404", "sen_id": 217125}, {"caption": "five boys four with shoulder bags", "video_id": "video11404", "sen_id": 217126}, {"caption": "a group of young people stand together for an interview with a news show", "video_id": "video11404", "sen_id": 217127}, {"caption": "a group of young men are standing together while talking", "video_id": "video11404", "sen_id": 217128}, {"caption": "a group of five asian young men are standing in the street while talking on camera", "video_id": "video11404", "sen_id": 217129}, {"caption": "a group of young men talking about their trip", "video_id": "video11404", "sen_id": 217130}, {"caption": "this video is five boys with accents describing how long it will take t get to a destination", "video_id": "video11404", "sen_id": 217131}, {"caption": "four young men standing in a half circle talking to the camera", "video_id": "video11404", "sen_id": 217132}, {"caption": "five teenage males stand outside talking about a subject that interests them while car sounds can be heard in the background", "video_id": "video11404", "sen_id": 217133}, {"caption": "five young men stand outside a building and talk", "video_id": "video11404", "sen_id": 217134}, {"caption": "there is some guys in front of a building", "video_id": "video11404", "sen_id": 217135}, {"caption": "five boy going to school after crosses runs", "video_id": "video11404", "sen_id": 217136}, {"caption": "a group of young asian men are talking to an interviewer", "video_id": "video11404", "sen_id": 217137}, {"caption": "5 asian male teens talking to the camera surrounded by motorcycles", "video_id": "video11404", "sen_id": 217138}, {"caption": "bunch of guys talking to each other at parking lot", "video_id": "video11404", "sen_id": 217139}, {"caption": "a man describing outer space and the galaxies", "video_id": "video11503", "sen_id": 217140}, {"caption": "a scientist discusses the characteristics of a far away planet", "video_id": "video11503", "sen_id": 217141}, {"caption": "a scientist discusses the rings around a far away planet", "video_id": "video11503", "sen_id": 217142}, {"caption": "a man in a grey short describes the kuiper belt a band of icy pre-solar system objects and a fifth mission called neocam", "video_id": "video11503", "sen_id": 217143}, {"caption": "a scientist lectures about the rings around a far away planet", "video_id": "video11503", "sen_id": 217144}, {"caption": "a planet with orbits around it and a man talking about them", "video_id": "video11503", "sen_id": 217145}, {"caption": "a scientist talks about the rings around a far away planet", "video_id": "video11503", "sen_id": 217146}, {"caption": "a man talks about the kuiper belt and the development of our solar system", "video_id": "video11503", "sen_id": 217147}, {"caption": "kuiper belt neptune s orbit one man talks about it", "video_id": "video11503", "sen_id": 217148}, {"caption": "a solar system orbit is seen and explained by a scientist", "video_id": "video11503", "sen_id": 217149}, {"caption": "a man wearing glasses is discussing on science topics", "video_id": "video11503", "sen_id": 217150}, {"caption": "there is a man explaining about near earth object camera", "video_id": "video11503", "sen_id": 217151}, {"caption": "an knowledgeable individual relays factual scientific information regarding certain aspects of space", "video_id": "video11503", "sen_id": 217152}, {"caption": "a scientist discusses the solar system and spouts his opinions as if they are facts", "video_id": "video11503", "sen_id": 217153}, {"caption": "an ash colour shirt wearing dress speaking standing still image displaying on screen", "video_id": "video11503", "sen_id": 217154}, {"caption": "a target thing is being discussed by a man", "video_id": "video11503", "sen_id": 217155}, {"caption": "there is a man talking from the studio", "video_id": "video11503", "sen_id": 217156}, {"caption": "a person with full hand shit explaining about space", "video_id": "video11503", "sen_id": 217157}, {"caption": "a man speaks to the camera in front of a green screen", "video_id": "video11503", "sen_id": 217158}, {"caption": "a person in light color gray shirt with spec is explaining about kuiper belt on neptune s orbit and finally a wording near earth object camera is seen", "video_id": "video11503", "sen_id": 217159}, {"caption": "a still silhouette of a man stands in front of colored bands while a voice describes the human genome project", "video_id": "video12417", "sen_id": 217160}, {"caption": "a genome project is being talked about for the presentation", "video_id": "video12417", "sen_id": 217161}, {"caption": "a man describes the various aspects of a large scientific project", "video_id": "video12417", "sen_id": 217162}, {"caption": "a presentation on biology is being shown here", "video_id": "video12417", "sen_id": 217163}, {"caption": "a shadow of a man sitting next to a colorful display of lights", "video_id": "video12417", "sen_id": 217164}, {"caption": "a man is talking about the human genome project he talks about the main goals of the project a picture of a man and colored columns (dyed dna) is shown", "video_id": "video12417", "sen_id": 217165}, {"caption": "some dna sequence is shown in the video of computer", "video_id": "video12417", "sen_id": 217166}, {"caption": "a male narrating a scientific study to the introductory slide of a powerpoint presentation", "video_id": "video12417", "sen_id": 217167}, {"caption": "human genome project many colorful background but person in shadow", "video_id": "video12417", "sen_id": 217168}, {"caption": "a man narrates about the point of the human genome project", "video_id": "video12417", "sen_id": 217169}, {"caption": "human genome project is being shown and explained by someone", "video_id": "video12417", "sen_id": 217170}, {"caption": "the person wearing eye glasses sits in front of a colorful background", "video_id": "video12417", "sen_id": 217171}, {"caption": "a man explaining something about the human genome project", "video_id": "video12417", "sen_id": 217172}, {"caption": "voice over describing the human genome project with a human silhouette over a background of colored beads", "video_id": "video12417", "sen_id": 217173}, {"caption": "a man talks about the history of the human genome project", "video_id": "video12417", "sen_id": 217174}, {"caption": "a man wearing glasses is staring at a wall full of multiple colors", "video_id": "video12417", "sen_id": 217175}, {"caption": "the psychologist is telling the human genome project and ther schema of the human", "video_id": "video12417", "sen_id": 217176}, {"caption": "the silhouette of a man is shown with a colorful background while a narrator instructs", "video_id": "video12417", "sen_id": 217177}, {"caption": "a silhouette in front of a background that shows sequences of human dna while a voice over talks about the human genome project", "video_id": "video12417", "sen_id": 217178}, {"caption": "a man s image in down against a background of human dna sequencing as a voice over explains the goal and projected cost of the human genome project", "video_id": "video12417", "sen_id": 217179}, {"caption": "a scene from back to the future with chris lloyd and mj fox", "video_id": "video12604", "sen_id": 217180}, {"caption": "christopher lloyd and michael j fox in a scene from back to the future", "video_id": "video12604", "sen_id": 217181}, {"caption": "a man is holding a clock and a dog is watching", "video_id": "video12604", "sen_id": 217182}, {"caption": "this is a scene from back to the future starring michael j fox", "video_id": "video12604", "sen_id": 217183}, {"caption": "a dog is petted by someone as they stand in the doorway of a car", "video_id": "video12604", "sen_id": 217184}, {"caption": "characters from one of the back to the future movies discuss a clock and pet a dog", "video_id": "video12604", "sen_id": 217185}, {"caption": "a man with wild white hair is talking about einstein's clock while holding up two control stop watches", "video_id": "video12604", "sen_id": 217186}, {"caption": "a old man with white hair in a lab coat talking to a young boy", "video_id": "video12604", "sen_id": 217187}, {"caption": "a scene from the move franchise back to the future with christopher lloyd and michael j fox", "video_id": "video12604", "sen_id": 217188}, {"caption": "a clip from a movie plays this movie is back to the future", "video_id": "video12604", "sen_id": 217189}, {"caption": "a man shows two clocks are sychronized to a man using a video camera", "video_id": "video12604", "sen_id": 217190}, {"caption": "a white dressing old woman talking with a dog", "video_id": "video12604", "sen_id": 217191}, {"caption": "guy showing two clocks to a guy", "video_id": "video12604", "sen_id": 217192}, {"caption": "a man jumps in a futuristic car with a dog", "video_id": "video12604", "sen_id": 217193}, {"caption": "an old scientist showing some sort of a clock to another guy", "video_id": "video12604", "sen_id": 217194}, {"caption": "this is a clip from the popular movie back to the future there is a scientist talking to a teenager", "video_id": "video12604", "sen_id": 217195}, {"caption": "an old man having digital watch", "video_id": "video12604", "sen_id": 217196}, {"caption": "two timers with same tine is shown display is in red colorthen dog sits in car", "video_id": "video12604", "sen_id": 217197}, {"caption": "a scene from the hit movie back to the future", "video_id": "video12604", "sen_id": 217198}, {"caption": "in back to the future doc sends his dog back in time to test his time machine", "video_id": "video12604", "sen_id": 217199}, {"caption": "models walking and showing various dress styles while background music plays", "video_id": "video10278", "sen_id": 217200}, {"caption": "woman are walking in a fashion show", "video_id": "video10278", "sen_id": 217201}, {"caption": "many ladies are all walking straight", "video_id": "video10278", "sen_id": 217202}, {"caption": "women are walking down a runway in new fashions at a show", "video_id": "video10278", "sen_id": 217203}, {"caption": "mulitple women walk through a busy area modeling clothes and purses", "video_id": "video10278", "sen_id": 217204}, {"caption": "a fashion show has models walking through a restaurant", "video_id": "video10278", "sen_id": 217205}, {"caption": "there are models walking around a large room wearing various combinations of grey black and white", "video_id": "video10278", "sen_id": 217206}, {"caption": "a woman is walking on a fashion show", "video_id": "video10278", "sen_id": 217207}, {"caption": "more ladies different color dressed walking", "video_id": "video10278", "sen_id": 217208}, {"caption": "models that are oddly dressed walk around a large restaurant in some sort of fashion show", "video_id": "video10278", "sen_id": 217209}, {"caption": "some ladies walk in different fashions in a fashion show", "video_id": "video10278", "sen_id": 217210}, {"caption": "models walking down the ramp with their fashionable oufits", "video_id": "video10278", "sen_id": 217211}, {"caption": "there is a someone walking on the ramp", "video_id": "video10278", "sen_id": 217212}, {"caption": "on the fashion show ramb the gir lpresented like as butterfly on the day light their eye is very well", "video_id": "video10278", "sen_id": 217213}, {"caption": "a women carrying a white purse and walks around the stage where too many women are looking so fashionable", "video_id": "video10278", "sen_id": 217214}, {"caption": "fashion model walking on the ramp with beautiful dreses", "video_id": "video10278", "sen_id": 217215}, {"caption": "it was a fashion show where the model are wearing the costumes and walking on the ramp", "video_id": "video10278", "sen_id": 217216}, {"caption": "fashion girl cat walk in fashion show crowd watching it", "video_id": "video10278", "sen_id": 217217}, {"caption": "models with some carrying handbags walk in a runway show", "video_id": "video10278", "sen_id": 217218}, {"caption": "ladies wearing beautiful dresses and walk carrying costly bags and clutch purses", "video_id": "video10278", "sen_id": 217219}, {"caption": "a young badminton player talks to camera about his desire to be an olympic champion", "video_id": "video11152", "sen_id": 217220}, {"caption": "a boy in orange talking about being a tennis player", "video_id": "video11152", "sen_id": 217221}, {"caption": "hong fei lut a 15-year-old badminton player talks about his olympic dreams", "video_id": "video11152", "sen_id": 217222}, {"caption": "teenager hong fei lut discusses his successes in sports", "video_id": "video11152", "sen_id": 217223}, {"caption": "a kid talking in a gym while people are playing behind him", "video_id": "video11152", "sen_id": 217224}, {"caption": "a man in red and blue t-shirt wearing spectacles is talking", "video_id": "video11152", "sen_id": 217225}, {"caption": "a teenage boy is speaking about being an olympic champion", "video_id": "video11152", "sen_id": 217226}, {"caption": "a boy in a red jersey and glasses poses with his badminton racquet", "video_id": "video11152", "sen_id": 217227}, {"caption": "a child athlete speaks to the camera for a video segment", "video_id": "video11152", "sen_id": 217228}, {"caption": "a fifteen-year old athletic prodigy talks about his goals in the game", "video_id": "video11152", "sen_id": 217229}, {"caption": "hey boy holding a ping pong racket and talking about the sport", "video_id": "video11152", "sen_id": 217230}, {"caption": "a young man holds his tennis racket then he talks to the camera", "video_id": "video11152", "sen_id": 217231}, {"caption": "hong fei lut batmiton player in men s singles looking confident", "video_id": "video11152", "sen_id": 217232}, {"caption": "a boy being interviewed on camera talking about the sport he likes to play", "video_id": "video11152", "sen_id": 217233}, {"caption": "hong fei lut talks about his ambition to make to the olympics", "video_id": "video11152", "sen_id": 217234}, {"caption": "a boy in orange and oink jersey is talking to someone", "video_id": "video11152", "sen_id": 217235}, {"caption": "a young man in glasses with thick black hair is wearing a shirt in primary colors of red blue and yellow inside a gym", "video_id": "video11152", "sen_id": 217236}, {"caption": "an interview of an older teen male tennis player wearing glasses and a red and blue t-shirt", "video_id": "video11152", "sen_id": 217237}, {"caption": "a boy in red and blue dress bat in his hand", "video_id": "video11152", "sen_id": 217238}, {"caption": "the teenager talks about his dream to play badminton in the olympics", "video_id": "video11152", "sen_id": 217239}, {"caption": "two men are discussing the oil markets and premiums", "video_id": "video11520", "sen_id": 217240}, {"caption": "two men are discussing the routing of a product", "video_id": "video11520", "sen_id": 217241}, {"caption": "executive tv interview regarding oil pipelines tv interview with a businessman regarding oil pipeline production", "video_id": "video11520", "sen_id": 217242}, {"caption": "a news reporter interviewing a man in a ping shirt sitting on a tall chair", "video_id": "video11520", "sen_id": 217243}, {"caption": "two men in chairs talk about a political matter in a well-lit room", "video_id": "video11520", "sen_id": 217244}, {"caption": "two men talk on a news program about oil", "video_id": "video11520", "sen_id": 217245}, {"caption": "two men sit facing each other on high chairs on the set of a television program and discuss oil products", "video_id": "video11520", "sen_id": 217246}, {"caption": "two mens are discussing with each other by actions", "video_id": "video11520", "sen_id": 217247}, {"caption": "two men are seated on stools at a small table in a studio with electronic red and blue banners over grey screens with words", "video_id": "video11520", "sen_id": 217248}, {"caption": "two men talk on a tv set about what is happening with oil production", "video_id": "video11520", "sen_id": 217249}, {"caption": "there is a black suit man talking with a old man", "video_id": "video11520", "sen_id": 217250}, {"caption": "a man is being interviewed in the channel show", "video_id": "video11520", "sen_id": 217251}, {"caption": "two mans are in the news stage and speaking", "video_id": "video11520", "sen_id": 217252}, {"caption": "two men are talking to each other on a television show", "video_id": "video11520", "sen_id": 217253}, {"caption": "a two men are sitting on a couple of stools", "video_id": "video11520", "sen_id": 217254}, {"caption": "there is a suit man talking from the studio", "video_id": "video11520", "sen_id": 217255}, {"caption": "two men seated on next to one another having a conversation", "video_id": "video11520", "sen_id": 217256}, {"caption": "two men discuss the financial set up of a oil company", "video_id": "video11520", "sen_id": 217257}, {"caption": "the ceo of magellan talking with jim cramer on his talkshow", "video_id": "video11520", "sen_id": 217258}, {"caption": "two men are talking on the tv news", "video_id": "video11520", "sen_id": 217259}, {"caption": "a peacock is presenting itself during a ritual mating dance followed by a view of flamingos", "video_id": "video11202", "sen_id": 217260}, {"caption": "peacocks are deciding with whom to copulate with", "video_id": "video11202", "sen_id": 217261}, {"caption": "a peacock spreads out his vivid feathers in an attempt to impress some females", "video_id": "video11202", "sen_id": 217262}, {"caption": "a pair of brightly colored parrots sits high on a tree branch a peacock proudly displays his full iridescent green-and-blue feathers and flamingoes drink water though their angled pink beaks with black points", "video_id": "video11202", "sen_id": 217263}, {"caption": "a male peacock with its feathers in full display trying to attract a mate", "video_id": "video11202", "sen_id": 217264}, {"caption": "a green feathered peacock with a dark blue body walks around a dirt terrain", "video_id": "video11202", "sen_id": 217265}, {"caption": "peacocks walk around outside displaying their feathers", "video_id": "video11202", "sen_id": 217266}, {"caption": "a peacock spreads out all of his feathers as he slowly walks among some short trees", "video_id": "video11202", "sen_id": 217267}, {"caption": "a peacock spreads its feathers while other peacocks walk around it", "video_id": "video11202", "sen_id": 217268}, {"caption": "there is a peacock with is feather flared out walking on the dirt road", "video_id": "video11202", "sen_id": 217269}, {"caption": "there is a peacock walking in to the forest", "video_id": "video11202", "sen_id": 217270}, {"caption": "a man describing different types birds atmospheres while a peacock turns around", "video_id": "video11202", "sen_id": 217271}, {"caption": "guy talking about indian peacocks", "video_id": "video11202", "sen_id": 217272}, {"caption": "a brightly colored parrot is high up on a tree screeching then a peacock is showing off his colorful plumage for the females", "video_id": "video11202", "sen_id": 217273}, {"caption": "a peacock exposes his colorful feathers to the ladies", "video_id": "video11202", "sen_id": 217274}, {"caption": "a peacock is walking around displaying it s colorful feathers in order to find a mate", "video_id": "video11202", "sen_id": 217275}, {"caption": "a peacock with its wings spread is walking through the wilderness", "video_id": "video11202", "sen_id": 217276}, {"caption": "super peacock many togetherso colorful awesome then beak of birds", "video_id": "video11202", "sen_id": 217277}, {"caption": "beauty of natures gift- the aviation fauna is diverse in nature", "video_id": "video11202", "sen_id": 217278}, {"caption": "a peacock flashes his tail feathers in search of a mate", "video_id": "video11202", "sen_id": 217279}, {"caption": "someone is making small cuts into a slice of a carrot", "video_id": "video11123", "sen_id": 217280}, {"caption": "a person cutting lines in a piece of carrot", "video_id": "video11123", "sen_id": 217281}, {"caption": "a person slices then slits in a round of sliced carrot", "video_id": "video11123", "sen_id": 217282}, {"caption": "a person is slicing slits into a round piece of sliced carrot", "video_id": "video11123", "sen_id": 217283}, {"caption": "a man chops a carrot carefully on a bamboo cutting board", "video_id": "video11123", "sen_id": 217284}, {"caption": "someone cutting up carrots on a wooden cutting board", "video_id": "video11123", "sen_id": 217285}, {"caption": "a man is making small cuts into a slice of carrot", "video_id": "video11123", "sen_id": 217286}, {"caption": "a pair of hands illustrate how to cut up orange carrots into fancy shapes on a wooden carving board", "video_id": "video11123", "sen_id": 217287}, {"caption": "a person carefully cutting a piece of carrot", "video_id": "video11123", "sen_id": 217288}, {"caption": "someone is cutting a slice of a carrot with a knife", "video_id": "video11123", "sen_id": 217289}, {"caption": "a person is making precision cuts into a carrot", "video_id": "video11123", "sen_id": 217290}, {"caption": "someone is making some precision cuts in a slice of carrot on a wooden board", "video_id": "video11123", "sen_id": 217291}, {"caption": "using knife carrot is cut into many small pieces and few decorative things", "video_id": "video11123", "sen_id": 217292}, {"caption": "a cook shows how to make tiny cuts into a disk of carrot for decorative purposes", "video_id": "video11123", "sen_id": 217293}, {"caption": "in a kitchen a person cuts and slices the carrot using knife", "video_id": "video11123", "sen_id": 217294}, {"caption": "a slice of carrot is having small delicate slits cut into it with a small paring knife while soothing instrumental music plays in the background", "video_id": "video11123", "sen_id": 217295}, {"caption": "a person s hand holds a carrot while a knife cuts small slices into it", "video_id": "video11123", "sen_id": 217296}, {"caption": "a person cuts into a piece of carrot using a small knife", "video_id": "video11123", "sen_id": 217297}, {"caption": "someone is slicing pieces of a carrot", "video_id": "video11123", "sen_id": 217298}, {"caption": "some vegetables are sitting on a cutting board", "video_id": "video11123", "sen_id": 217299}, {"caption": "man rolling out a red carpet inside a small wooden room outdoors", "video_id": "video11945", "sen_id": 217300}, {"caption": "a man in denim while rolling out carpet over grass in a roofless room", "video_id": "video11945", "sen_id": 217301}, {"caption": "a man is given a tour of a room's design with a focus on the carpet", "video_id": "video11945", "sen_id": 217302}, {"caption": "man in leather jacket rolling out a red carpet on top of grass", "video_id": "video11945", "sen_id": 217303}, {"caption": "a man rolls out a red carpet in an ouside room with wood paneled walls and a dart board", "video_id": "video11945", "sen_id": 217304}, {"caption": "a man talking about darts and unrolling carpet", "video_id": "video11945", "sen_id": 217305}, {"caption": "there is a jacket man working on the floor", "video_id": "video11945", "sen_id": 217306}, {"caption": "a man dancing with carpet and arranging it", "video_id": "video11945", "sen_id": 217307}, {"caption": "a man checking the carped and making it steady from fold", "video_id": "video11945", "sen_id": 217308}, {"caption": "a man in a very strange hat rolls out a piece of carpeting", "video_id": "video11945", "sen_id": 217309}, {"caption": "a man in a jester s hat in a room with no ceiling or floor rolls a carpet out onto the grass", "video_id": "video11945", "sen_id": 217310}, {"caption": "a man is unrolling a carpet in a fake room", "video_id": "video11945", "sen_id": 217311}, {"caption": "man rolling out a rug outdoors in a man cave with darts on wall", "video_id": "video11945", "sen_id": 217312}, {"caption": "a man is rolling out carpet in a room he has built", "video_id": "video11945", "sen_id": 217313}, {"caption": "man laying out a red carpet on the floor of a small bedroom", "video_id": "video11945", "sen_id": 217314}, {"caption": "a man with jeans and a jester s hat putting a rug in a thin club room built outdoors and laying a red carpet down", "video_id": "video11945", "sen_id": 217315}, {"caption": "the men open the carpet the colour of the carpet is red", "video_id": "video11945", "sen_id": 217316}, {"caption": "a man is action some thing and spread a floor mat", "video_id": "video11945", "sen_id": 217317}, {"caption": "a man introducing the small club room and unfolding the carpet in it", "video_id": "video11945", "sen_id": 217318}, {"caption": "guy showing the martial of the carpet and putting on floor", "video_id": "video11945", "sen_id": 217319}, {"caption": "people standing on the sidelines of a football field", "video_id": "video12725", "sen_id": 217320}, {"caption": "some men are walking on the side of a football field with a screen", "video_id": "video12725", "sen_id": 217321}, {"caption": "a man is being filmed on an nfl field", "video_id": "video12725", "sen_id": 217322}, {"caption": "a tall man walking out onto the side of a playing field and being filmed conducting an interview", "video_id": "video12725", "sen_id": 217323}, {"caption": "an american football star is being filmed on the field", "video_id": "video12725", "sen_id": 217324}, {"caption": "all persons are talking each other on stadium", "video_id": "video12725", "sen_id": 217325}, {"caption": "a group of people standing around on a field", "video_id": "video12725", "sen_id": 217326}, {"caption": "a man in a blue shirt hugs another person while a film crew surrounds him filming the scene at a football field", "video_id": "video12725", "sen_id": 217327}, {"caption": "a wide shot set to music of a video shoot of a man in a blue shirt who says something we don t hear and hugs someone", "video_id": "video12725", "sen_id": 217328}, {"caption": "people on the sidelines of a sports field are taking videos of someone who looks to be an athlete or famous person", "video_id": "video12725", "sen_id": 217329}, {"caption": "a blue shirt man talking to his co-workers", "video_id": "video12725", "sen_id": 217330}, {"caption": "people are on a football field with a big microphone overhead", "video_id": "video12725", "sen_id": 217331}, {"caption": "a men are doing some thing in the play ground", "video_id": "video12725", "sen_id": 217332}, {"caption": "a kick ass camera team interviewing a man in stadium", "video_id": "video12725", "sen_id": 217333}, {"caption": "a production team shoot video of a man and woman meeting and hugging beside a sports field", "video_id": "video12725", "sen_id": 217334}, {"caption": "there is a blue shirt man walking in to the track", "video_id": "video12725", "sen_id": 217335}, {"caption": "a group of people on the side of a football field", "video_id": "video12725", "sen_id": 217336}, {"caption": "people prepping for a sports game and setting up gear", "video_id": "video12725", "sen_id": 217337}, {"caption": "reporters are interviewing a man on the sidelines of a football field", "video_id": "video12725", "sen_id": 217338}, {"caption": "some football players are competing on the grid iron", "video_id": "video12725", "sen_id": 217339}, {"caption": "a cartoon commercial about calorie counts", "video_id": "video12552", "sen_id": 217340}, {"caption": "information is provided about low calorie sweeteners governmental bodies around the globe have approved the use of low calorie sweeteners in food and beverages", "video_id": "video12552", "sen_id": 217341}, {"caption": "an animation describing how governments are approving the use of low calorie sweeteners", "video_id": "video12552", "sen_id": 217342}, {"caption": "a woman invoice speaks on the governmental rules of low calorie sweeteners usage and a man comes in at the end to ask where could they be used", "video_id": "video12552", "sen_id": 217343}, {"caption": "a woman is talking about low calorie sweeteners", "video_id": "video12552", "sen_id": 217344}, {"caption": "cartoon government buildings are shown followed by cartoon arms and hands stamping seals of approval for artificial sweeteners", "video_id": "video12552", "sen_id": 217345}, {"caption": "slides of buildings and people stamping red stamps on paper", "video_id": "video12552", "sen_id": 217346}, {"caption": "small children s standing in a line and saying something", "video_id": "video12552", "sen_id": 217347}, {"caption": "a cartoon ad about low-calorie sweeteners in beverages", "video_id": "video12552", "sen_id": 217348}, {"caption": "in this video telling about low calorie sweeters", "video_id": "video12552", "sen_id": 217349}, {"caption": "its a animated video about low calorie sweeteners", "video_id": "video12552", "sen_id": 217350}, {"caption": "when you are looking at the building when you look at the creation", "video_id": "video12552", "sen_id": 217351}, {"caption": "approved where are low calorie sweeteners used in", "video_id": "video12552", "sen_id": 217352}, {"caption": "a video clip of a cartoon film on a screen", "video_id": "video12552", "sen_id": 217353}, {"caption": "a cartoon dolls of building of colour and standing dolls still image on screen", "video_id": "video12552", "sen_id": 217354}, {"caption": "there are some clear explanations low calorie", "video_id": "video12552", "sen_id": 217355}, {"caption": "the governmental body s around the globe has approved the low calories sweetener", "video_id": "video12552", "sen_id": 217356}, {"caption": "in a cartoon where are low calorie sweeteners used", "video_id": "video12552", "sen_id": 217357}, {"caption": "a lady explains about low calorie sweeteners approved by various government bodies around the world", "video_id": "video12552", "sen_id": 217358}, {"caption": "a person is showing how calorie can be brought down", "video_id": "video12552", "sen_id": 217359}, {"caption": "a man is looking at his dirty shoes in the square", "video_id": "video12144", "sen_id": 217360}, {"caption": "a man talks about the clothes he is wearing next to a long line of people", "video_id": "video12144", "sen_id": 217361}, {"caption": "a man in a public square trying on a funny black suit that he doesn't like", "video_id": "video12144", "sen_id": 217362}, {"caption": "a man explaining what he is wearing who made what he is wearing and the inspiration behind what he is wearing", "video_id": "video12144", "sen_id": 217363}, {"caption": "a guy tat is interview another person's fashion", "video_id": "video12144", "sen_id": 217364}, {"caption": "a man wearing a black hat and glasses is standing around a large amount of people describing what type of fashion clothes he is wearing", "video_id": "video12144", "sen_id": 217365}, {"caption": "a man wearing a stocking cap and glasses talks about his wardrobe", "video_id": "video12144", "sen_id": 217366}, {"caption": "a man wearing a black shirt and a black hat talking to the camera", "video_id": "video12144", "sen_id": 217367}, {"caption": "a man standing in a crowded square wearing an uncomfortable suit", "video_id": "video12144", "sen_id": 217368}, {"caption": "a fashion editorial invites individuals with style to explain their outfit choices", "video_id": "video12144", "sen_id": 217369}, {"caption": "a woman in a brown jacket is being interviewed followed by a man in black being interviewed about his attire", "video_id": "video12144", "sen_id": 217370}, {"caption": "a man talking about his outfit and inspiration behind it", "video_id": "video12144", "sen_id": 217371}, {"caption": "a man is describing the brand of clothing that he is wearing", "video_id": "video12144", "sen_id": 217372}, {"caption": "a man with an accent is describing his clothes to the camera on a very populated street", "video_id": "video12144", "sen_id": 217373}, {"caption": "a man is showing off his wardrobe in which he is wearing", "video_id": "video12144", "sen_id": 217374}, {"caption": "a black women is extremely happy while talking with another person", "video_id": "video12144", "sen_id": 217375}, {"caption": "on the street a young man with a beard and glasses shows off and explains his clothing articles", "video_id": "video12144", "sen_id": 217376}, {"caption": "a man in a black hat is on a very busy street and explaining what he is wearing as fashion", "video_id": "video12144", "sen_id": 217377}, {"caption": "a guy shows off his fashion in all black at the university", "video_id": "video12144", "sen_id": 217378}, {"caption": "man being interviewed in front of a big crowd entering old building", "video_id": "video12144", "sen_id": 217379}, {"caption": "a group of people are giving an interview about music", "video_id": "video12214", "sen_id": 217380}, {"caption": "a group of men discuss the casting process used for their video", "video_id": "video12214", "sen_id": 217381}, {"caption": "five asian men dressed in flamboyant clothing talking in a foreign language while sitting in chairs", "video_id": "video12214", "sen_id": 217382}, {"caption": "a group of people both males and females sitting outside by a wooden fence talking", "video_id": "video12214", "sen_id": 217383}, {"caption": "two asian men in brightly colored costumes talks to a reporter", "video_id": "video12214", "sen_id": 217384}, {"caption": "this is a video where an asian man is speaking about what steps he took to improve his music", "video_id": "video12214", "sen_id": 217385}, {"caption": "a group of young asian performers are interviewed about their careers", "video_id": "video12214", "sen_id": 217386}, {"caption": "a group of young asian performers are interviewed about their on-going careers", "video_id": "video12214", "sen_id": 217387}, {"caption": "a couple of young men sitting and talking in a asian language", "video_id": "video12214", "sen_id": 217388}, {"caption": "a japanese man in a pink jacket is speaking in japanese", "video_id": "video12214", "sen_id": 217389}, {"caption": "five young men are sitting together wearing bright clothes and having a discussion", "video_id": "video12214", "sen_id": 217390}, {"caption": "a group of young asian men are interviewed about thier upcoming tour", "video_id": "video12214", "sen_id": 217391}, {"caption": "a man wearing a pink shirt and talking", "video_id": "video12214", "sen_id": 217392}, {"caption": "a man with purple hair is listen to a man in a pink jacket speak", "video_id": "video12214", "sen_id": 217393}, {"caption": "five people are doing an interview in a asian language", "video_id": "video12214", "sen_id": 217394}, {"caption": "a man pink dressed talking with other man", "video_id": "video12214", "sen_id": 217395}, {"caption": "a boy band is talking in a show about their music all members have different hair colors", "video_id": "video12214", "sen_id": 217396}, {"caption": "five japanese men are dressed in bright colors and are interviewed together", "video_id": "video12214", "sen_id": 217397}, {"caption": "two young men in different colored dresses are expressing their reaction about something", "video_id": "video12214", "sen_id": 217398}, {"caption": "a group of asian people are sitting and talking", "video_id": "video12214", "sen_id": 217399}, {"caption": "a seated toddler girl wearing a ruffled orange dress pets a fluffy white puppy that moves backwards onto her lap", "video_id": "video10938", "sen_id": 217400}, {"caption": "a baby playing with a little white dog", "video_id": "video10938", "sen_id": 217401}, {"caption": "a red dress cute baby playing with a white dog", "video_id": "video10938", "sen_id": 217402}, {"caption": "a baby is sitting on the floor with a fluffy white puppy", "video_id": "video10938", "sen_id": 217403}, {"caption": "an infant in a bright red jumper sits on the floor and plays with a small white dog", "video_id": "video10938", "sen_id": 217404}, {"caption": "a small kid in red trying to hit a cute white dog", "video_id": "video10938", "sen_id": 217405}, {"caption": "a toddler in a bright pink dress and socks is playing and grabbing a white puppy dog", "video_id": "video10938", "sen_id": 217406}, {"caption": "the pet dogs is playing with her child and sits on the lap and enjoying", "video_id": "video10938", "sen_id": 217407}, {"caption": "a baby in a pink dress is playing with a white dog", "video_id": "video10938", "sen_id": 217408}, {"caption": "white dog backs baby in red back into a corner", "video_id": "video10938", "sen_id": 217409}, {"caption": "there is a dog sitting nearby a baby", "video_id": "video10938", "sen_id": 217410}, {"caption": "a dog is playing with a baby in a house", "video_id": "video10938", "sen_id": 217411}, {"caption": "a baby in an orange outfit sitting with a white puppy and the puppy sits on the baby", "video_id": "video10938", "sen_id": 217412}, {"caption": "a baby girl in a bright pink dress plays with a white puppy", "video_id": "video10938", "sen_id": 217413}, {"caption": "there were several little babies playing with puppies", "video_id": "video10938", "sen_id": 217414}, {"caption": "a baby wearing bright pink is on the floor petting and grabbing a white puppy dog", "video_id": "video10938", "sen_id": 217415}, {"caption": "small baby in red dress playing with the white dog", "video_id": "video10938", "sen_id": 217416}, {"caption": "a baby girl in an orange dress playing with a little white dog", "video_id": "video10938", "sen_id": 217417}, {"caption": "little babies are playing with pet dogs while the dogs seem pretty patient with all this", "video_id": "video10938", "sen_id": 217418}, {"caption": "a baby in a red dress is playing with a dog", "video_id": "video10938", "sen_id": 217419}, {"caption": "the computer science group offering information on how to enter into the field of computer science", "video_id": "video12584", "sen_id": 217420}, {"caption": "a video tutorial on computer science by an indian fellow", "video_id": "video12584", "sen_id": 217421}, {"caption": "a man standing up in front of a circuit board backdrop", "video_id": "video12584", "sen_id": 217422}, {"caption": "a video tutorial on computer science by an indian fellow", "video_id": "video12584", "sen_id": 217423}, {"caption": "a man an all white outfit explains careers in computer science", "video_id": "video12584", "sen_id": 217424}, {"caption": "a man wearing glasses a white shirt and id tag speaks in front of a dark screen showing a white sphere covered with symbols between angled vertical white lines", "video_id": "video12584", "sen_id": 217425}, {"caption": "a man in a white shirt is talking about computer science", "video_id": "video12584", "sen_id": 217426}, {"caption": "a man with a white long sleeve dress shirt is staning in front of a computer module talking", "video_id": "video12584", "sen_id": 217427}, {"caption": "there is a picture of a computer followed about a man in a white shirt speaking about computer science in front of a mother board", "video_id": "video12584", "sen_id": 217428}, {"caption": "a man in white talking about computer science", "video_id": "video12584", "sen_id": 217429}, {"caption": "a man in white shirt is speaking about some subject", "video_id": "video12584", "sen_id": 217430}, {"caption": "some programming of computers are detated by a men", "video_id": "video12584", "sen_id": 217431}, {"caption": "a man is talking in the computer science technologies", "video_id": "video12584", "sen_id": 217432}, {"caption": "a man wearing a white shirt standing in front of a tech designed globe", "video_id": "video12584", "sen_id": 217433}, {"caption": "guy in glass and white shirt talking to the camera", "video_id": "video12584", "sen_id": 217434}, {"caption": "a man in white shirt talking in front of a design", "video_id": "video12584", "sen_id": 217435}, {"caption": "vishwas from freshersworldcom is talking about career opportunities in computer science", "video_id": "video12584", "sen_id": 217436}, {"caption": "a guy with the tag and spec in his eye talks about something", "video_id": "video12584", "sen_id": 217437}, {"caption": "a man in white shirt explains about the globe", "video_id": "video12584", "sen_id": 217438}, {"caption": "a man with glasses is speaking about something", "video_id": "video12584", "sen_id": 217439}, {"caption": "someone is in the kitchen adding hot milk to a mixture in a skillet and stirring it with a whisk", "video_id": "video10289", "sen_id": 217440}, {"caption": "boiling milk is being transferred from a pot to a pan", "video_id": "video10289", "sen_id": 217441}, {"caption": "hot milk is whisked into a roux until the mixture is thickened", "video_id": "video10289", "sen_id": 217442}, {"caption": "a woman is making a pastry with hot steaming milk", "video_id": "video10289", "sen_id": 217443}, {"caption": "instructions on how to make an intricate delicacy with hot milk and other ingredients", "video_id": "video10289", "sen_id": 217444}, {"caption": "a person is mixing up ingredients while preparing food", "video_id": "video10289", "sen_id": 217445}, {"caption": "a women is showing and telling how to cook food", "video_id": "video10289", "sen_id": 217446}, {"caption": "making of recipe gradually add the hot milk over low heat", "video_id": "video10289", "sen_id": 217447}, {"caption": "a person is wisking milk together with other ingredients", "video_id": "video10289", "sen_id": 217448}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video10289", "sen_id": 217449}, {"caption": "a person cooking a cake in a pan", "video_id": "video10289", "sen_id": 217450}, {"caption": "in a tawa some remedy added and mixed by spoon", "video_id": "video10289", "sen_id": 217451}, {"caption": "making recipe: gradually add the hot milk over low heat website: allrecipes", "video_id": "video10289", "sen_id": 217452}, {"caption": "a lady preparing stuff in the kitchen", "video_id": "video10289", "sen_id": 217453}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10289", "sen_id": 217454}, {"caption": "a person preparing a cake with a hot milk", "video_id": "video10289", "sen_id": 217455}, {"caption": "a lady is preparing some dish and is seen pouring hot milk and whisking it subtitles can be seen on the video for a better understanding", "video_id": "video10289", "sen_id": 217456}, {"caption": "a chef prepares some ingredients in a kitchen", "video_id": "video10289", "sen_id": 217457}, {"caption": "someone is adding milk to something and continuously mixing it", "video_id": "video10289", "sen_id": 217458}, {"caption": "a person is using their hands to mix some food", "video_id": "video10289", "sen_id": 217459}, {"caption": "footage showing the career of edward norton including red carpet clips", "video_id": "video10566", "sen_id": 217460}, {"caption": "a man is being hauled off by cops a lady on a red carpet and an actor being interviewed are shown", "video_id": "video10566", "sen_id": 217461}, {"caption": "a man is shown with multiple people on the red carpet and he is holding a trophy", "video_id": "video10566", "sen_id": 217462}, {"caption": "an actor being interviewed on the red carpet", "video_id": "video10566", "sen_id": 217463}, {"caption": "hollywood reporting newsmagazine describes a male actor's career beginnings in the nineteen nineties", "video_id": "video10566", "sen_id": 217464}, {"caption": "there are different shots of a celebrity man at award shows and personal history photos", "video_id": "video10566", "sen_id": 217465}, {"caption": "a woman is speaking about an actor while he is appearing at a red carpet event and other places", "video_id": "video10566", "sen_id": 217466}, {"caption": "actor edward norton is smiling to fans at an awards ceremony answering questions for an interview and is shown in clips from his movies", "video_id": "video10566", "sen_id": 217467}, {"caption": "a group of people in formal attire mill around outside an awards ceremony", "video_id": "video10566", "sen_id": 217468}, {"caption": "photographs and videos of edward norton at various red carpets and award shows", "video_id": "video10566", "sen_id": 217469}, {"caption": "a female narrator describes edward norton s early career", "video_id": "video10566", "sen_id": 217470}, {"caption": "a woman discusses the the career of a famous actor", "video_id": "video10566", "sen_id": 217471}, {"caption": "large number of celebrities gathered in an award ceremony", "video_id": "video10566", "sen_id": 217472}, {"caption": "a man speaks to an interviewer outside on the red carpet", "video_id": "video10566", "sen_id": 217473}, {"caption": "a women is telling some news about the celebrates and some is nominated for the oscar award and oscar award winnin function is going on", "video_id": "video10566", "sen_id": 217474}, {"caption": "there is a black suit man receiving a award", "video_id": "video10566", "sen_id": 217475}, {"caption": "a woman is talking while a different pictures of an actor are shown", "video_id": "video10566", "sen_id": 217476}, {"caption": "a movie actor misses out on the oscars but is still successful", "video_id": "video10566", "sen_id": 217477}, {"caption": "its function where person walks on red carpethe holds award in hand", "video_id": "video10566", "sen_id": 217478}, {"caption": "bunch of actors walking down the red carpet and getting their picture taken by reporters", "video_id": "video10566", "sen_id": 217479}, {"caption": "a man in a red chef shirt is cooking in a kitchen", "video_id": "video10334", "sen_id": 217480}, {"caption": "a guy in a red shirt is giving cooking instructions", "video_id": "video10334", "sen_id": 217481}, {"caption": "indian man in red shirt standing in a kitchen demonstrating something", "video_id": "video10334", "sen_id": 217482}, {"caption": "a chef in a red jacket explaining a meal", "video_id": "video10334", "sen_id": 217483}, {"caption": "the man discusses the recipe for making a certain food", "video_id": "video10334", "sen_id": 217484}, {"caption": "a man talks to the camera about mixing his food together", "video_id": "video10334", "sen_id": 217485}, {"caption": "a chef in an orange coat speaks about a recipe he is getting ready to prepare", "video_id": "video10334", "sen_id": 217486}, {"caption": "a chef in an orange coat talks about a recipe he is preparing", "video_id": "video10334", "sen_id": 217487}, {"caption": "a man in a red shirt is talking about how to mix masala spices", "video_id": "video10334", "sen_id": 217488}, {"caption": "a man in a kitchen showing some tips how to cook", "video_id": "video10334", "sen_id": 217489}, {"caption": "a man is explaining what he is cooking and how he is doing it", "video_id": "video10334", "sen_id": 217490}, {"caption": "a plate of masalas is shown followed by a man in coral speaking about it", "video_id": "video10334", "sen_id": 217491}, {"caption": "a chef in an orange jacket talks about a recipe he is preparing", "video_id": "video10334", "sen_id": 217492}, {"caption": "an indian chef is discussing how to make some authentic food", "video_id": "video10334", "sen_id": 217493}, {"caption": "a chef in a bright orange uniform mixes a a few masalas to create a curry", "video_id": "video10334", "sen_id": 217494}, {"caption": "a man in red shirt is speaking and is ready to do some cooking", "video_id": "video10334", "sen_id": 217495}, {"caption": "an indian chef in a red apron stands in the kitchen", "video_id": "video10334", "sen_id": 217496}, {"caption": "a man in a red coat is discussing making marsalis", "video_id": "video10334", "sen_id": 217497}, {"caption": "a person is doing a cooking show and showing various ingredients", "video_id": "video10334", "sen_id": 217498}, {"caption": "a red color dressed chef is talking", "video_id": "video10334", "sen_id": 217499}, {"caption": "a woman in black with bright lipstick wearing a wig talking to the camera", "video_id": "video10133", "sen_id": 217500}, {"caption": "a woman with purple lipstick talking dramatically and gesturing with her hands", "video_id": "video10133", "sen_id": 217501}, {"caption": "a woman dressed as a character from the great gatsby prepares to begin a tutorial", "video_id": "video10133", "sen_id": 217502}, {"caption": "this is a great gatsby tutorial on how to do hair and makeup", "video_id": "video10133", "sen_id": 217503}, {"caption": "a woman talks about making a tutorial based off the great gatsby", "video_id": "video10133", "sen_id": 217504}, {"caption": "a black dress woman with good make up talk about one topic interestingly", "video_id": "video10133", "sen_id": 217505}, {"caption": "a woman in a wig and black shirt is speaking to the camera", "video_id": "video10133", "sen_id": 217506}, {"caption": "a woman is speaking about dressing and doing her makeup in the style of the great gatsby movie characters", "video_id": "video10133", "sen_id": 217507}, {"caption": "a woman with short black curly hair talks to the camera", "video_id": "video10133", "sen_id": 217508}, {"caption": "a woman gives the introduction to a tutorial inspired by the great gatsby", "video_id": "video10133", "sen_id": 217509}, {"caption": "a woman with short dark curly hair and purple lipstick is talking and using her hands", "video_id": "video10133", "sen_id": 217510}, {"caption": "a woman with pink lipstick and a black shirt is talking about doing a tutorial", "video_id": "video10133", "sen_id": 217511}, {"caption": "a women works out today for the tutorial session", "video_id": "video10133", "sen_id": 217512}, {"caption": "woman in black dress and wig tells about the tutorial she is about to record", "video_id": "video10133", "sen_id": 217513}, {"caption": "woman with 30 s style hair and makeup standing in front of white screen", "video_id": "video10133", "sen_id": 217514}, {"caption": "a woman is talking while wearing lipstick", "video_id": "video10133", "sen_id": 217515}, {"caption": "a woman is talking about how she s going to do a tutorial for the great gatsby", "video_id": "video10133", "sen_id": 217516}, {"caption": "a woman in black dress has old fashioned styled wig and discusses tutorial", "video_id": "video10133", "sen_id": 217517}, {"caption": "a woman talks about doing a hairmakeup tutorial", "video_id": "video10133", "sen_id": 217518}, {"caption": "a girl wearing black tshirt and have putted violet coloured lipstick making a tutorial", "video_id": "video10133", "sen_id": 217519}, {"caption": "a man narrates while the settings of a video games are changed", "video_id": "video10339", "sen_id": 217520}, {"caption": "the main menu of a first person video game", "video_id": "video10339", "sen_id": 217521}, {"caption": "a person is playing a video game and explaining how to adjust the settings", "video_id": "video10339", "sen_id": 217522}, {"caption": "there is someone playing fallout and accesses their pip boy", "video_id": "video10339", "sen_id": 217523}, {"caption": "a man explains how to look around and perform head bobbing in a video game", "video_id": "video10339", "sen_id": 217524}, {"caption": "a person is showing animated digital game", "video_id": "video10339", "sen_id": 217525}, {"caption": "the person talk about the setting to be made when playing a video game", "video_id": "video10339", "sen_id": 217526}, {"caption": "video game displaying options to choose from in the game", "video_id": "video10339", "sen_id": 217527}, {"caption": "a man playing the video game fallout 4 and commentating on things", "video_id": "video10339", "sen_id": 217528}, {"caption": "a men is describing about a device", "video_id": "video10339", "sen_id": 217529}, {"caption": "there is a man operating a machine on the top the a building", "video_id": "video10339", "sen_id": 217530}, {"caption": "the person navigates on through the different screens", "video_id": "video10339", "sen_id": 217531}, {"caption": "someone is playing a game of fallout talking about how to play", "video_id": "video10339", "sen_id": 217532}, {"caption": "a young man gives instruction on playing a video game", "video_id": "video10339", "sen_id": 217533}, {"caption": "the man has a highly complex watch like device on his wrist that alerts him of many events", "video_id": "video10339", "sen_id": 217534}, {"caption": "someone playing the video game fallout white adjusting settings", "video_id": "video10339", "sen_id": 217535}, {"caption": "someone accessing the options screen on a device called pip boy in the game fallout", "video_id": "video10339", "sen_id": 217536}, {"caption": "a young man plays a video game while talking about what he is doing in game", "video_id": "video10339", "sen_id": 217537}, {"caption": "a virtual world with a black screen with multiple options", "video_id": "video10339", "sen_id": 217538}, {"caption": "someone is playing the fallout 3 video game", "video_id": "video10339", "sen_id": 217539}, {"caption": "women track runners are exhausted after finishing the race and the jamaican girl won", "video_id": "video11963", "sen_id": 217540}, {"caption": "a track star walks on an track at a track and field event as a crowd watches", "video_id": "video11963", "sen_id": 217541}, {"caption": "a runner is lying on the track exhausted while other runners stand around waiting for the next race", "video_id": "video11963", "sen_id": 217542}, {"caption": "a jamacian running on a track squats down and does a quick prayer", "video_id": "video11963", "sen_id": 217543}, {"caption": "a woman recuperates after winning a race at a large track meet", "video_id": "video11963", "sen_id": 217544}, {"caption": "a female runner recuperates after completing a race in a large stadium", "video_id": "video11963", "sen_id": 217545}, {"caption": "a woman lies on a track and a woman gives thanks for her performance", "video_id": "video11963", "sen_id": 217546}, {"caption": "danielle williams is listening to the announcement of results in the 100 hurdle race and realizes how well she has done thanking god for her performance", "video_id": "video11963", "sen_id": 217547}, {"caption": "a woman wearing a green and yellow shirt and walking on a track field", "video_id": "video11963", "sen_id": 217548}, {"caption": "a woman recovers after running in a race in a track meet", "video_id": "video11963", "sen_id": 217549}, {"caption": "a woman is walking along a race track then gets down on her hands and knees", "video_id": "video11963", "sen_id": 217550}, {"caption": "all persons are on a running track on the ground", "video_id": "video11963", "sen_id": 217551}, {"caption": "theire is a athelets race going on all atheletsare running fast overtaking each other", "video_id": "video11963", "sen_id": 217552}, {"caption": "a athelete makes her dress ok and sitting on the race track kissing to god", "video_id": "video11963", "sen_id": 217553}, {"caption": "a black lady being exhausted after a running marathon", "video_id": "video11963", "sen_id": 217554}, {"caption": "a woman celebrates as she completes the 100m hurdles event at an athletic competition while another woman is lying on the floor", "video_id": "video11963", "sen_id": 217555}, {"caption": "there is a person laying down after a race", "video_id": "video11963", "sen_id": 217556}, {"caption": "runners recover from a track race in a large stadium", "video_id": "video11963", "sen_id": 217557}, {"caption": "runner walks off an exhausting sprint leans down makes a cross and points up at the sky in thanks", "video_id": "video11963", "sen_id": 217558}, {"caption": "young women athletes mill about on a track", "video_id": "video11963", "sen_id": 217559}, {"caption": "a person at the race track narrating a race car contest", "video_id": "video11100", "sen_id": 217560}, {"caption": "race cars are racing in close proximity to each other in a race", "video_id": "video11100", "sen_id": 217561}, {"caption": "in an automobile race cars jockey for the lead position", "video_id": "video11100", "sen_id": 217562}, {"caption": "two dozen racecars drive down a black course under and on the side of a repeated advertisement in the form of banners and signs for both a shipping company and an airline company", "video_id": "video11100", "sen_id": 217563}, {"caption": "car are speeding on a racetrack and one of them goes off the side", "video_id": "video11100", "sen_id": 217564}, {"caption": "a replay of a car race specifically when four cars take the corner at the exact same time", "video_id": "video11100", "sen_id": 217565}, {"caption": "four race cars taking a corner at the same exact time", "video_id": "video11100", "sen_id": 217566}, {"caption": "many race cars are racing around a track", "video_id": "video11100", "sen_id": 217567}, {"caption": "many number of cars were participating in a car race rally", "video_id": "video11100", "sen_id": 217568}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video11100", "sen_id": 217569}, {"caption": "a car race is conducting and a cars are moving fast", "video_id": "video11100", "sen_id": 217570}, {"caption": "bunch of cars in the racing track trying to win the race", "video_id": "video11100", "sen_id": 217571}, {"caption": "car racing track with big crowd in a sunny day", "video_id": "video11100", "sen_id": 217572}, {"caption": "a group of racing cars started in a speedy way", "video_id": "video11100", "sen_id": 217573}, {"caption": "car race in which the white car try to come forward and 4 cars in the same lane that never happes", "video_id": "video11100", "sen_id": 217574}, {"caption": "bunch of f1 cars in the racing track trying to win the race", "video_id": "video11100", "sen_id": 217575}, {"caption": "there is a sunny daycar racing competition going on", "video_id": "video11100", "sen_id": 217576}, {"caption": " black and white cars compete on a black racetrack bordered in red and white stripes or solid blue", "video_id": "video11100", "sen_id": 217577}, {"caption": "a amazing dangerous car race is looking for very interest to see", "video_id": "video11100", "sen_id": 217578}, {"caption": "some cars are racing on a outdoor track", "video_id": "video11100", "sen_id": 217579}, {"caption": "a woman in a bikini walking down stairs in a park", "video_id": "video11292", "sen_id": 217580}, {"caption": "a smiling woman in a flowered bikini walks along a park path", "video_id": "video11292", "sen_id": 217581}, {"caption": "a person in a bathing suit walking down some stairs", "video_id": "video11292", "sen_id": 217582}, {"caption": "a woman smoothing her long dark hair and wearing a dotted bikini and sneakers descends a few steps into a shady wooded area with dappled sunlight and smiles", "video_id": "video11292", "sen_id": 217583}, {"caption": "a woman walking down a staircase by a creek", "video_id": "video11292", "sen_id": 217584}, {"caption": "a woman is wearing a bra and panties and moving down from hill", "video_id": "video11292", "sen_id": 217585}, {"caption": "a lady wearing swimming dress walking on forest", "video_id": "video11292", "sen_id": 217586}, {"caption": "a person walking through the woods with a bikini on", "video_id": "video11292", "sen_id": 217587}, {"caption": "in a forest setting a woman hikes in a bathing suit", "video_id": "video11292", "sen_id": 217588}, {"caption": "a pretty young girl in a bikini takes a walk thorough a wooded park", "video_id": "video11292", "sen_id": 217589}, {"caption": "there is a woman in hot dressing walking in to the beach", "video_id": "video11292", "sen_id": 217590}, {"caption": "a woman is in her bikini clothing walking around", "video_id": "video11292", "sen_id": 217591}, {"caption": "a woman is hiking in the woods wearing a bikini", "video_id": "video11292", "sen_id": 217592}, {"caption": "a woman in a bikini is walking down a path through the woods", "video_id": "video11292", "sen_id": 217593}, {"caption": "a girl hiking in enfield park in a bikini with a man recording her", "video_id": "video11292", "sen_id": 217594}, {"caption": "there is a woman walking with a bra and pantie", "video_id": "video11292", "sen_id": 217595}, {"caption": "a smiling woman in a leopard print bikini hikes on a park trail in a forest", "video_id": "video11292", "sen_id": 217596}, {"caption": "a model of a farm girl serial seen walking through a forest trail while onlookers greet her", "video_id": "video11292", "sen_id": 217597}, {"caption": "a young girl in a bathing suit walks around in the woods", "video_id": "video11292", "sen_id": 217598}, {"caption": "a woman is hiking through the woods", "video_id": "video11292", "sen_id": 217599}, {"caption": "a person is taking a part a motor", "video_id": "video10809", "sen_id": 217600}, {"caption": "a small black electronic device is visible while the narrator describes how to use it", "video_id": "video10809", "sen_id": 217601}, {"caption": "a man describes and demonstrates the use of a small car accessory", "video_id": "video10809", "sen_id": 217602}, {"caption": "a man is showing how to use a camera mount", "video_id": "video10809", "sen_id": 217603}, {"caption": "a man is describing how to use a small black camera", "video_id": "video10809", "sen_id": 217604}, {"caption": "a guy reviews and discusses a piece of electronics equipment", "video_id": "video10809", "sen_id": 217605}, {"caption": "a man is pointing out different part of a radar detection device", "video_id": "video10809", "sen_id": 217606}, {"caption": "a man is talking about a black device", "video_id": "video10809", "sen_id": 217607}, {"caption": "a man shows a dashcam while he reviews it", "video_id": "video10809", "sen_id": 217608}, {"caption": "a man explains an electronic accessory and how to use it", "video_id": "video10809", "sen_id": 217609}, {"caption": "a man reviews how to use a small black device", "video_id": "video10809", "sen_id": 217610}, {"caption": "a man trying to discuss an electronic and its ports and closures", "video_id": "video10809", "sen_id": 217611}, {"caption": "a guy shows off this cool sleek black gadget", "video_id": "video10809", "sen_id": 217612}, {"caption": "a man is showing how to mount a radar dectector in a car", "video_id": "video10809", "sen_id": 217613}, {"caption": "a man making a review of a video camera", "video_id": "video10809", "sen_id": 217614}, {"caption": "a personal dash cam is shown and described by a male speaker", "video_id": "video10809", "sen_id": 217615}, {"caption": "a man is showing how a black plastic device is opened", "video_id": "video10809", "sen_id": 217616}, {"caption": "a man giving a review of night vision camera that is for cars", "video_id": "video10809", "sen_id": 217617}, {"caption": "a man is conducting a tutorial for the use of a small video camera", "video_id": "video10809", "sen_id": 217618}, {"caption": "a man is describing a technical gadget", "video_id": "video10809", "sen_id": 217619}, {"caption": "richard hammond and james may are riding in a hovercraft on a river", "video_id": "video10161", "sen_id": 217620}, {"caption": "two men ride in a boat on a river before they exit the boat", "video_id": "video10161", "sen_id": 217621}, {"caption": "4 men traveling on water together speaking to each other", "video_id": "video10161", "sen_id": 217622}, {"caption": "two men in a hovercraft on a river approach a lock without a lockkeeper", "video_id": "video10161", "sen_id": 217623}, {"caption": "a man wearing a green shirt talking into a microphone", "video_id": "video10161", "sen_id": 217624}, {"caption": "men in a motorized boat wearing head gear and a dam", "video_id": "video10161", "sen_id": 217625}, {"caption": "three men in a fan-propelled water vehicle are in a narrow canal in front of a locked gate by a bridge when the two passengers exit to open the gate", "video_id": "video10161", "sen_id": 217626}, {"caption": "two person in hovercraft talking about the water level and then they climb down from the hovercraft", "video_id": "video10161", "sen_id": 217627}, {"caption": "two persons sitting inside the boat and going through canal while both communicate each other", "video_id": "video10161", "sen_id": 217628}, {"caption": "a long boat lock and two men inside a fan boat on the water", "video_id": "video10161", "sen_id": 217629}, {"caption": "a speed boat travels very fast with two passengers in it", "video_id": "video10161", "sen_id": 217630}, {"caption": "the three top gear hosts going through a river lock aboard a hovercraft", "video_id": "video10161", "sen_id": 217631}, {"caption": "water is flowing under a bridge and two people are inside a vehicle with one of them driving it", "video_id": "video10161", "sen_id": 217632}, {"caption": "three men driving a speed boat talking to each other using headphones", "video_id": "video10161", "sen_id": 217633}, {"caption": "two persons are riding in a amphibian vehicle but eventually need to get out of it", "video_id": "video10161", "sen_id": 217634}, {"caption": "two people sitting in a boat are enjoying their ride", "video_id": "video10161", "sen_id": 217635}, {"caption": "men wearing headphones maneuver through a water canal located between grassy areas edged with green trees", "video_id": "video10161", "sen_id": 217636}, {"caption": "two men were driving a vehicle and one man get out of vehicle", "video_id": "video10161", "sen_id": 217637}, {"caption": "an older man drives a tractor trailer with his son in the fields", "video_id": "video10161", "sen_id": 217638}, {"caption": "two men with with headsets on discuss driving through a lock system on a river", "video_id": "video10161", "sen_id": 217639}, {"caption": "laser being used to find targets on the plane", "video_id": "video12946", "sen_id": 217640}, {"caption": "a man is explaining a laser product for field use", "video_id": "video12946", "sen_id": 217641}, {"caption": "scientists testing equipment for foreign objects", "video_id": "video12946", "sen_id": 217642}, {"caption": "a worker in a bright fluorescent vest is using a laser sighting tool", "video_id": "video12946", "sen_id": 217643}, {"caption": "a man is talking about using lasers on the planet and how it saves time", "video_id": "video12946", "sen_id": 217644}, {"caption": "a man in yellow dress is standing on the road", "video_id": "video12946", "sen_id": 217645}, {"caption": "the physics scientist is telling the matter in to their student", "video_id": "video12946", "sen_id": 217646}, {"caption": "a map indicate distance for the road minimum and maximum", "video_id": "video12946", "sen_id": 217647}, {"caption": "some one is explaining about horizontal distance vertical distance and inclination", "video_id": "video12946", "sen_id": 217648}, {"caption": "guy in yellow jacket with hard cap taking measurements", "video_id": "video12946", "sen_id": 217649}, {"caption": "there is something impressing matters going on about science", "video_id": "video12946", "sen_id": 217650}, {"caption": "a man is speaking about lasers while a short slid show plays", "video_id": "video12946", "sen_id": 217651}, {"caption": "a man is telling about a planet of 360 degree", "video_id": "video12946", "sen_id": 217652}, {"caption": "a map has different angles on it to measure", "video_id": "video12946", "sen_id": 217653}, {"caption": "a man is talking about lasers while pictures are shown", "video_id": "video12946", "sen_id": 217654}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video12946", "sen_id": 217655}, {"caption": "a man in yellow colored dressed observing the different eyevisions with a machine", "video_id": "video12946", "sen_id": 217656}, {"caption": "a man is explain some thing about a distance", "video_id": "video12946", "sen_id": 217657}, {"caption": "a man in a yellow and orange safety vest using a tool to look at something in the sky", "video_id": "video12946", "sen_id": 217658}, {"caption": "someone is using a scope to film something", "video_id": "video12946", "sen_id": 217659}, {"caption": "a caucasian man talks gently to a frightened oriental woman", "video_id": "video12354", "sen_id": 217660}, {"caption": "an asian woman appears shy as a man tries to talk to her", "video_id": "video12354", "sen_id": 217661}, {"caption": "a woman wakes up and talks with a man dressed in black", "video_id": "video12354", "sen_id": 217662}, {"caption": "japaneese girl and revelations a man confronting a woman", "video_id": "video12354", "sen_id": 217663}, {"caption": "woman in a futuristic movie preview wakes up", "video_id": "video12354", "sen_id": 217664}, {"caption": "an odd asian woman speaks to a man in a futuristic setting", "video_id": "video12354", "sen_id": 217665}, {"caption": "a movie trailer shows a woman with black hair in a white dress as she is confronted with a man in a dark blue button down stating that he knows who she is", "video_id": "video12354", "sen_id": 217666}, {"caption": "a man comes in the room and tells a nervous girl that there is no reason to hide", "video_id": "video12354", "sen_id": 217667}, {"caption": "a girl starring on some where and guy asked her something", "video_id": "video12354", "sen_id": 217668}, {"caption": "a woman awakens from a dream then is identified by a man she does not know", "video_id": "video12354", "sen_id": 217669}, {"caption": "an asian woman with short black hair awakens from sleep and listens to a man speak", "video_id": "video12354", "sen_id": 217670}, {"caption": "a part of a movie being acted by two people", "video_id": "video12354", "sen_id": 217671}, {"caption": "a girl was kept on a machine and she come to a lab and got surprised while a man speak to her", "video_id": "video12354", "sen_id": 217672}, {"caption": "a woman is shown then a man appears and says there is no reason to hide", "video_id": "video12354", "sen_id": 217673}, {"caption": "a clip of an asian woman and a man of unknown origin in a futuristic world interaction with the man trying to spark the beginning of a relationship", "video_id": "video12354", "sen_id": 217674}, {"caption": "a guy in black dress is talking to a girl in white dress who looks to be scared", "video_id": "video12354", "sen_id": 217675}, {"caption": "a lady talking with a man who is wearing black color dress", "video_id": "video12354", "sen_id": 217676}, {"caption": "a white man wearing all black is walking towards an asian woman while speaking and the woman looks terrified", "video_id": "video12354", "sen_id": 217677}, {"caption": "a young girl awakens from slumber is confused and approached by a man", "video_id": "video12354", "sen_id": 217678}, {"caption": "an asian woman that is confronted by an asian man and she reluctant to talk to him after she awoke from a sleep chamber", "video_id": "video12354", "sen_id": 217679}, {"caption": "man in grey suit being filmed while making a movie in china", "video_id": "video10013", "sen_id": 217680}, {"caption": "a man describing another man's contributions to the film", "video_id": "video10013", "sen_id": 217681}, {"caption": "a man discusses working with a man named john about making a movie set in china", "video_id": "video10013", "sen_id": 217682}, {"caption": "a blonde actor talks about behind the scenes footage of a movie he was in", "video_id": "video10013", "sen_id": 217683}, {"caption": "an actor talks about the latest movie he has filmed during an interview", "video_id": "video10013", "sen_id": 217684}, {"caption": "a street in china where people are being pulled in carts", "video_id": "video10013", "sen_id": 217685}, {"caption": "edward norton is being interviewed about a movie he stars in that takes place in 1920 s china called the painted veil", "video_id": "video10013", "sen_id": 217686}, {"caption": "a recording of a documentary or some type of film about china", "video_id": "video10013", "sen_id": 217687}, {"caption": "an actor discusses director while scenes of films shooting are shown", "video_id": "video10013", "sen_id": 217688}, {"caption": "guy in suit talking to the camera", "video_id": "video10013", "sen_id": 217689}, {"caption": "a suit man talking about a movie locations", "video_id": "video10013", "sen_id": 217690}, {"caption": "person and his luggage being drove by person manned carts in asia", "video_id": "video10013", "sen_id": 217691}, {"caption": "an actors are acting in the film suiting", "video_id": "video10013", "sen_id": 217692}, {"caption": "the actor edward norton is talking to an interviewer about the painted veil over behind the scenes footage of the shoot for that film", "video_id": "video10013", "sen_id": 217693}, {"caption": "a man is walking around in a city outside", "video_id": "video10013", "sen_id": 217694}, {"caption": "a man sits and talks about being in movies", "video_id": "video10013", "sen_id": 217695}, {"caption": "an actor describing a video and scene about filming", "video_id": "video10013", "sen_id": 217696}, {"caption": "a famous actor discusses a period movie that he has recently starred in", "video_id": "video10013", "sen_id": 217697}, {"caption": "a man is sitting next to a poster and then people are shown walking", "video_id": "video10013", "sen_id": 217698}, {"caption": "a man with a hat is traveling through townm", "video_id": "video10013", "sen_id": 217699}, {"caption": "a woman walks around a campsite while another person puts up the tent", "video_id": "video10718", "sen_id": 217700}, {"caption": "a large tarp is right outside in the clearing for camping", "video_id": "video10718", "sen_id": 217701}, {"caption": "a man is building a green tent in the woods", "video_id": "video10718", "sen_id": 217702}, {"caption": "a young woman discusses a campsite whe is getting ready to spend some time in", "video_id": "video10718", "sen_id": 217703}, {"caption": "a video about a campsite and putting up a tent", "video_id": "video10718", "sen_id": 217704}, {"caption": "there is a woman walking in to the forest", "video_id": "video10718", "sen_id": 217705}, {"caption": "in a forest tent are arranged", "video_id": "video10718", "sen_id": 217706}, {"caption": "there is a women in one top standing on a hill and telling news", "video_id": "video10718", "sen_id": 217707}, {"caption": "a videotaping of the wilderness and a tent being setup outside", "video_id": "video10718", "sen_id": 217708}, {"caption": "a girl explaining about something in the forest camp", "video_id": "video10718", "sen_id": 217709}, {"caption": "a person with head cam showing the tent material on the field", "video_id": "video10718", "sen_id": 217710}, {"caption": "a person explaining how to put a tent up", "video_id": "video10718", "sen_id": 217711}, {"caption": "the people are making a tent in the jungle", "video_id": "video10718", "sen_id": 217712}, {"caption": "a woman is describing the surroundings of where she is placing her tent", "video_id": "video10718", "sen_id": 217713}, {"caption": "a person is filming a tent out side", "video_id": "video10718", "sen_id": 217714}, {"caption": "in a forest plants and tent are there", "video_id": "video10718", "sen_id": 217715}, {"caption": "a green and yellow tent with curved gray cords is placed on level ground covered with flattened growth and dirt that is bordered by taller plants", "video_id": "video10718", "sen_id": 217716}, {"caption": "a parachute is used and fell on the forest and a small tent is fixed there", "video_id": "video10718", "sen_id": 217717}, {"caption": "a girl inside forest and cloth on land trees beside and flying parachute cloth displaying on screen", "video_id": "video10718", "sen_id": 217718}, {"caption": "someone is walking inside of a tent", "video_id": "video10718", "sen_id": 217719}, {"caption": "a man is holding up a microphone to his lips", "video_id": "video12791", "sen_id": 217720}, {"caption": "slideshow critique of a screenwriter shows a couple movie scenes", "video_id": "video12791", "sen_id": 217721}, {"caption": "a man is describing what a plot hole is", "video_id": "video12791", "sen_id": 217722}, {"caption": "man talks about a tv series and debates various comments and themes about it", "video_id": "video12791", "sen_id": 217723}, {"caption": "a man is holding is a microphone while another man looks at him", "video_id": "video12791", "sen_id": 217724}, {"caption": "two men talking about lost writer damon lindelof", "video_id": "video12791", "sen_id": 217725}, {"caption": "a man discusses movies and defines the phrase pot hole", "video_id": "video12791", "sen_id": 217726}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video12791", "sen_id": 217727}, {"caption": "is damon lindelof just a bad writer who expects everyone", "video_id": "video12791", "sen_id": 217728}, {"caption": "the man talks about the plots and director in the new movie", "video_id": "video12791", "sen_id": 217729}, {"caption": "its a audio songs of so many albums", "video_id": "video12791", "sen_id": 217730}, {"caption": "a man is explaining a plot whole while different clips are being shown", "video_id": "video12791", "sen_id": 217731}, {"caption": "one man talks about something is damen lindsley", "video_id": "video12791", "sen_id": 217732}, {"caption": "this is about a television show where two old people are seen", "video_id": "video12791", "sen_id": 217733}, {"caption": "a man is talking about the making of a movie", "video_id": "video12791", "sen_id": 217734}, {"caption": "there is a old man on the stage", "video_id": "video12791", "sen_id": 217735}, {"caption": "a screen showing two men many words appear on screen", "video_id": "video12791", "sen_id": 217736}, {"caption": "one old man talking about something in stage with other man", "video_id": "video12791", "sen_id": 217737}, {"caption": "a news reader is reading news in the channel and the picture is being showned", "video_id": "video12791", "sen_id": 217738}, {"caption": "some images and text about an event are being displayed", "video_id": "video12791", "sen_id": 217739}, {"caption": "a white frame moves across the computer screen highlighting colorful rectangles with logos of available entertainment companies to watch", "video_id": "video12173", "sen_id": 217740}, {"caption": "description of how to use a media streaming device on a tv", "video_id": "video12173", "sen_id": 217741}, {"caption": "an unseen person toggles between selections on a screen", "video_id": "video12173", "sen_id": 217742}, {"caption": "an onscreen demonstration on how to navigate roku tv", "video_id": "video12173", "sen_id": 217743}, {"caption": "purple streaming device screen with multiple apps appearing on it", "video_id": "video12173", "sen_id": 217744}, {"caption": "a man describes and demonstrates how to use a menu on his tv", "video_id": "video12173", "sen_id": 217745}, {"caption": "demonstration on how to use the applications on a streaming service", "video_id": "video12173", "sen_id": 217746}, {"caption": "a man browses through various apps on roku's interface", "video_id": "video12173", "sen_id": 217747}, {"caption": "a man is talking about getting hbo now with roku instead of apple tv", "video_id": "video12173", "sen_id": 217748}, {"caption": "different streaming systems are shown on the screen as a square moves from one to another", "video_id": "video12173", "sen_id": 217749}, {"caption": "there is someone making selections and surfing apps on a roku screen", "video_id": "video12173", "sen_id": 217750}, {"caption": "a screen of a roku moving across the icons", "video_id": "video12173", "sen_id": 217751}, {"caption": "a roku screen is shown and a man talks about television channels", "video_id": "video12173", "sen_id": 217752}, {"caption": "there is a user interface with great reachable options", "video_id": "video12173", "sen_id": 217753}, {"caption": "a man going through the apps on roku", "video_id": "video12173", "sen_id": 217754}, {"caption": "the screen of a smart television with the different apps on it", "video_id": "video12173", "sen_id": 217755}, {"caption": "a man shows how to access hbo now on a roku without the waiting list", "video_id": "video12173", "sen_id": 217756}, {"caption": "a person switches the options on a tv screen on roku", "video_id": "video12173", "sen_id": 217757}, {"caption": "a man demonstrates how to navigate on a roku", "video_id": "video12173", "sen_id": 217758}, {"caption": "a screen shot of rocku player with person talking through some steps", "video_id": "video12173", "sen_id": 217759}, {"caption": "a woman's arm in the screen is holding out a dead octopus about a foot long in the kitchen she is preparing to explain how to cook it", "video_id": "video10023", "sen_id": 217760}, {"caption": "a person rinsing off a small octopus in a kitchen sink", "video_id": "video10023", "sen_id": 217761}, {"caption": "hands are holding an octopus above a sink", "video_id": "video10023", "sen_id": 217762}, {"caption": "in a kitchen a woman is explaing how to prepare octopus", "video_id": "video10023", "sen_id": 217763}, {"caption": "a woman holds up an octopus before cooking it in a kitchen", "video_id": "video10023", "sen_id": 217764}, {"caption": "an inhome chef prepares to make a dish using a small octopus", "video_id": "video10023", "sen_id": 217765}, {"caption": "a man shows some kind of fish while getting ready to prepare food", "video_id": "video10023", "sen_id": 217766}, {"caption": "a woman is washing white octopus in water and nearby vegetables and bowls are there", "video_id": "video10023", "sen_id": 217767}, {"caption": "a girl opens the tab at the kitchen sink and washes the cute little octopus", "video_id": "video10023", "sen_id": 217768}, {"caption": "a woman shows an octopus that she is going to prepare to eat", "video_id": "video10023", "sen_id": 217769}, {"caption": "someone in a kitchen is rinsing a dead squid in a sink and showing it", "video_id": "video10023", "sen_id": 217770}, {"caption": "a woman is rinsing and holding a raw octopus in a kitchen", "video_id": "video10023", "sen_id": 217771}, {"caption": "in a kitchen a woman cleaning a type of fish in the sink and there are some ingredients to prepare it", "video_id": "video10023", "sen_id": 217772}, {"caption": "a woman washing and holding up an octopus in a kitchen a flash of x-files logo", "video_id": "video10023", "sen_id": 217773}, {"caption": "a woman rinses a bowl of octopus off in a sink then hold one up while talking", "video_id": "video10023", "sen_id": 217774}, {"caption": "a girl washing an octopus in order to prepare it for consumption", "video_id": "video10023", "sen_id": 217775}, {"caption": "a woman is preparing a squid in order to be cooked for dinner", "video_id": "video10023", "sen_id": 217776}, {"caption": "a lady washing something on the wash basin", "video_id": "video10023", "sen_id": 217777}, {"caption": "a woman is washing an octupus in a basin with water and holding it", "video_id": "video10023", "sen_id": 217778}, {"caption": "a woman is showing off an octopus to eat", "video_id": "video10023", "sen_id": 217779}, {"caption": "a helicopter explodes while a car below it dives into a large body of water", "video_id": "video12996", "sen_id": 217780}, {"caption": "a voiceover discusses a sequence from a bond movie with roger moore", "video_id": "video12996", "sen_id": 217781}, {"caption": "a helicopter follows a car which leaps from the road to the water the car blows up the helicopter", "video_id": "video12996", "sen_id": 217782}, {"caption": "cars speeding dowing a road and explosions happening a car going into water and a car emerging from the ocean", "video_id": "video12996", "sen_id": 217783}, {"caption": "a helicopter chases a car down the street and drops bombs creating huge dust clouds; it chases it to a pier and the flies off into the water the car drives under the water the woman presses a secret button and sends a missile out of the top and blows up the helicopter the car emerges from the water as if nothing strange has happened the man in the passenger seat hands a fish to a passerby non-nonchalantly", "video_id": "video12996", "sen_id": 217784}, {"caption": "i man driving a car comes out of water carrying a fish to the surprising people in sea side", "video_id": "video12996", "sen_id": 217785}, {"caption": "a white car drives into the water makes a helicopter explode then drives onto the beach from the ocean", "video_id": "video12996", "sen_id": 217786}, {"caption": "an action scene is being played with explosions and car wrecks", "video_id": "video12996", "sen_id": 217787}, {"caption": "a classic old car is driving fast into the the water", "video_id": "video12996", "sen_id": 217788}, {"caption": "a man and woman drive a car into the sea while being shot at and then emerge from the water on the beach", "video_id": "video12996", "sen_id": 217789}, {"caption": "a james bond action scene containing roger moore being chased by a helicopter and driving his car into the ocean he then drives it out of the water onto the beach with a group of bikini-clad girls watching", "video_id": "video12996", "sen_id": 217790}, {"caption": "a white car drives around a mountain curve by a low stone wall while a helicopter ascends over the wall and follows the car down the road", "video_id": "video12996", "sen_id": 217791}, {"caption": "a trailer of the jamesbond movie which is showed on national geography", "video_id": "video12996", "sen_id": 217792}, {"caption": "is a bond s action movie clip video packed with many action shoots", "video_id": "video12996", "sen_id": 217793}, {"caption": "the sports car drives quickly as the helicopter chases it while shooting", "video_id": "video12996", "sen_id": 217794}, {"caption": "a car is moving very fast and then it goes into the water the helicopter blasts", "video_id": "video12996", "sen_id": 217795}, {"caption": "car fastly going and immerse into sea and still comes out to land", "video_id": "video12996", "sen_id": 217796}, {"caption": "bond car chases and explosions are shown while they are discussed on a television show", "video_id": "video12996", "sen_id": 217797}, {"caption": "some blasting is going on and the car has been thrown under the water", "video_id": "video12996", "sen_id": 217798}, {"caption": "some people in a car are driving and being attacked", "video_id": "video12996", "sen_id": 217799}, {"caption": "a group of people is rioting then people are talking", "video_id": "video12795", "sen_id": 217800}, {"caption": "a woman talks with a man and is interrupted by another man", "video_id": "video12795", "sen_id": 217801}, {"caption": "a roman senate delegates while a frienship is discussed", "video_id": "video12795", "sen_id": 217802}, {"caption": "several men are sitting in an arena yelling and then a man and a woman are talking", "video_id": "video12795", "sen_id": 217803}, {"caption": "a man in a white robe is standing in front of an audience", "video_id": "video12795", "sen_id": 217804}, {"caption": "roman politicians debate followed by two roman men and a woman having a serious private discussion", "video_id": "video12795", "sen_id": 217805}, {"caption": "a man and woman are both dressed in medieval clothing talking", "video_id": "video12795", "sen_id": 217806}, {"caption": "people dressed in ancient roman costume are talking", "video_id": "video12795", "sen_id": 217807}, {"caption": "greek men in a circle talking and a man and woman having a conversation", "video_id": "video12795", "sen_id": 217808}, {"caption": "roman senators angrily yell ad various members of roman society are talking", "video_id": "video12795", "sen_id": 217809}, {"caption": "a man is talking to a beautiful female in red dress", "video_id": "video12795", "sen_id": 217810}, {"caption": "the scenes from a motion picture of greek history is shown", "video_id": "video12795", "sen_id": 217811}, {"caption": "a group of romans argue and about there relationships to one another", "video_id": "video12795", "sen_id": 217812}, {"caption": "many men are standing around yelling wearing white robes", "video_id": "video12795", "sen_id": 217813}, {"caption": "shouts of dissent in a roman forum followed by a woman commenting on the friendship of two men", "video_id": "video12795", "sen_id": 217814}, {"caption": "there is a man in white dressing talking loudly", "video_id": "video12795", "sen_id": 217815}, {"caption": "people having a conversation", "video_id": "video12795", "sen_id": 217816}, {"caption": "a depiction of arguing and politics in the roman senate", "video_id": "video12795", "sen_id": 217817}, {"caption": "a old man in white color dress standing speaking and girl and boy speaking on scene displaying on screen", "video_id": "video12795", "sen_id": 217818}, {"caption": "a man in a movie is doing something inside", "video_id": "video12795", "sen_id": 217819}, {"caption": "a minecraft character is walking along and gets shot", "video_id": "video12548", "sen_id": 217820}, {"caption": "a short animation in block form begins with a character walking to the right", "video_id": "video12548", "sen_id": 217821}, {"caption": "an old video game is moving to a song", "video_id": "video12548", "sen_id": 217822}, {"caption": "a colorful animated graphic that looks like the beginning of a video game with a character already loaded and ready to play", "video_id": "video12548", "sen_id": 217823}, {"caption": "a black loading screen gives way to an 8-bit character with black hair and a brown jacket", "video_id": "video12548", "sen_id": 217824}, {"caption": "someone is playing an old style pixel game where the character is walking across the screen and something red shoots at his face", "video_id": "video12548", "sen_id": 217825}, {"caption": "a loading symbol is appear and a man moving", "video_id": "video12548", "sen_id": 217826}, {"caption": "a game animated showing loading and then a man starts moving", "video_id": "video12548", "sen_id": 217827}, {"caption": "game with gamer techno music of a man walking", "video_id": "video12548", "sen_id": 217828}, {"caption": "a simple animation plays of a scene from doctor who", "video_id": "video12548", "sen_id": 217829}, {"caption": "an animated doctor who walks across a pixel filled screen while the doctor who theme song plays in the background", "video_id": "video12548", "sen_id": 217830}, {"caption": "a loading screen that leads into a simplistic game where a humanoid figure walks to the right eventually the humanoid figure stops and red lines move towards its mouth", "video_id": "video12548", "sen_id": 217831}, {"caption": "a loading screen completes as a pixilated charachter moves across the screen", "video_id": "video12548", "sen_id": 217832}, {"caption": "a computer animated character slowly moves along from one side to the other", "video_id": "video12548", "sen_id": 217833}, {"caption": "a person is playing a pixel based game", "video_id": "video12548", "sen_id": 217834}, {"caption": "a person playing a cartoon sliding game slowly", "video_id": "video12548", "sen_id": 217835}, {"caption": "a cartoon person moves to the left in the game animation works", "video_id": "video12548", "sen_id": 217836}, {"caption": "a pixelated videogame character walks through a game world", "video_id": "video12548", "sen_id": 217837}, {"caption": "a digital cartoon character is walking across the ground", "video_id": "video12548", "sen_id": 217838}, {"caption": "someone is creating some pixel art", "video_id": "video12548", "sen_id": 217839}, {"caption": "a man in a sports car talks about the car as he drives", "video_id": "video12479", "sen_id": 217840}, {"caption": "a black sports car driving down an asphalt street as the driver describes what it's like to drive the car", "video_id": "video12479", "sen_id": 217841}, {"caption": "a man describes and demonstrates a very fast sports car", "video_id": "video12479", "sen_id": 217842}, {"caption": "a black luxury sports car and a man inside of it shifting the gear", "video_id": "video12479", "sen_id": 217843}, {"caption": "a person test driving a fast car talks about the cars features", "video_id": "video12479", "sen_id": 217844}, {"caption": "a person is driving a black car and then shifts the gears", "video_id": "video12479", "sen_id": 217845}, {"caption": "someone driving a black sports car very fast on the street", "video_id": "video12479", "sen_id": 217846}, {"caption": "famous celebrity jay leno gives his review of the mclaren f1 supercar", "video_id": "video12479", "sen_id": 217847}, {"caption": "a sports car is flaunted and its features are explained by the driver", "video_id": "video12479", "sen_id": 217848}, {"caption": "a man driving a car on a test track explains the performance of the gear shifts", "video_id": "video12479", "sen_id": 217849}, {"caption": "someone is driving a sports luxury car through the narrow roads and wide roads", "video_id": "video12479", "sen_id": 217850}, {"caption": "there is a stylish car on the street", "video_id": "video12479", "sen_id": 217851}, {"caption": "a black sports car is being driven down the road while a man is talking", "video_id": "video12479", "sen_id": 217852}, {"caption": "a men driving black colour car and showing the parts and explaining about that", "video_id": "video12479", "sen_id": 217853}, {"caption": "sports car in black color runs on the ground the person changes the gear", "video_id": "video12479", "sen_id": 217854}, {"caption": "a man drives a fast car and comments on the gear shift", "video_id": "video12479", "sen_id": 217855}, {"caption": "a man in blue jeans giving a review about a fast driving car", "video_id": "video12479", "sen_id": 217856}, {"caption": "a man driving a lamborghini and explains about its gear shifts", "video_id": "video12479", "sen_id": 217857}, {"caption": "man driving down a road in an exotic sports car", "video_id": "video12479", "sen_id": 217858}, {"caption": "a guy is inside of a car and driving", "video_id": "video12479", "sen_id": 217859}, {"caption": "a person is showing how to use a quick release button on a camera", "video_id": "video11215", "sen_id": 217860}, {"caption": "a person demonstrates and describes the use of a small camera", "video_id": "video11215", "sen_id": 217861}, {"caption": "a man is showing and explaining a red quick release button on a small black camera", "video_id": "video11215", "sen_id": 217862}, {"caption": "man demonstrating how to work the quick release on a camera", "video_id": "video11215", "sen_id": 217863}, {"caption": "hands demonstrating how to touch the buttons on a electronic device", "video_id": "video11215", "sen_id": 217864}, {"caption": "a male voiceover graphic with white hands show and explain how to use a quick release button on a camera", "video_id": "video11215", "sen_id": 217865}, {"caption": "a graphic with a male voiceover and hands demonstrated the quick release button on a camera", "video_id": "video11215", "sen_id": 217866}, {"caption": "hands are pressing a quick release button on a black camera", "video_id": "video11215", "sen_id": 217867}, {"caption": "someone holding a gadget in there had and pressing a red button", "video_id": "video11215", "sen_id": 217868}, {"caption": "a person is playing with a small toy in ground", "video_id": "video11215", "sen_id": 217869}, {"caption": "a person hold the machine and press the red button in the cornet", "video_id": "video11215", "sen_id": 217870}, {"caption": "a person explains about the camera and its working conditions", "video_id": "video11215", "sen_id": 217871}, {"caption": "there is a man explains about a machine", "video_id": "video11215", "sen_id": 217872}, {"caption": "a man is showing showing you how to use a device for a camera", "video_id": "video11215", "sen_id": 217873}, {"caption": "a man demonstrates and describes the use of a small camera", "video_id": "video11215", "sen_id": 217874}, {"caption": "a man explaining about the some device", "video_id": "video11215", "sen_id": 217875}, {"caption": "some one is displaying a small device", "video_id": "video11215", "sen_id": 217876}, {"caption": "a mans hands are demonstrating how to use a small device", "video_id": "video11215", "sen_id": 217877}, {"caption": "guy talking about the quick lock in a camera", "video_id": "video11215", "sen_id": 217878}, {"caption": "someone is holding a small black device and red button", "video_id": "video11215", "sen_id": 217879}, {"caption": "a man placing small pickles into a food processor", "video_id": "video11069", "sen_id": 217880}, {"caption": "a man is putting pickles and onions into a food processor", "video_id": "video11069", "sen_id": 217881}, {"caption": "an infomercial host demonstrates using a food processor to dice gherkins pickles and red onions", "video_id": "video11069", "sen_id": 217882}, {"caption": "a chef with a blue hoodie uses a food processor to help with his meal preperation", "video_id": "video11069", "sen_id": 217883}, {"caption": "a guy blends some food items in a clear food processor", "video_id": "video11069", "sen_id": 217884}, {"caption": "a chef is chopping ingredients in a food processor", "video_id": "video11069", "sen_id": 217885}, {"caption": "a man in blue t-shirt is preparing food in kitchen", "video_id": "video11069", "sen_id": 217886}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11069", "sen_id": 217887}, {"caption": "1 handfull gherkins use a slicer attachment set to fine", "video_id": "video11069", "sen_id": 217888}, {"caption": "in the mixer jar the person drops in the food and presses using the stamp", "video_id": "video11069", "sen_id": 217889}, {"caption": "one man chopping vegetables in chopper at first he chopped gherkins and after that he chopped onions", "video_id": "video11069", "sen_id": 217890}, {"caption": "someone with a blue sweater on is putting onions and pickles in a food processor that is sitting on the counter", "video_id": "video11069", "sen_id": 217891}, {"caption": "a man describing a recipe with pickles and purple onions in it", "video_id": "video11069", "sen_id": 217892}, {"caption": "guy cutting vegetables in a cutting machine", "video_id": "video11069", "sen_id": 217893}, {"caption": "a man is in a kitchen putting pickles into a food processor he also puts onions in and then processes them both", "video_id": "video11069", "sen_id": 217894}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11069", "sen_id": 217895}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11069", "sen_id": 217896}, {"caption": "the men introuduce the new griniding machine to their customer", "video_id": "video11069", "sen_id": 217897}, {"caption": "guy in kitchen is cutting vegetables with a new machine", "video_id": "video11069", "sen_id": 217898}, {"caption": "a man inside in blue dress mixier grider rotating onion pieces", "video_id": "video11069", "sen_id": 217899}, {"caption": "a girl on a bus is singing a song", "video_id": "video10110", "sen_id": 217900}, {"caption": "a woman singing while showing different people walking by or just sitting in a black and white video format", "video_id": "video10110", "sen_id": 217901}, {"caption": "a young female sings as people are shown on the street", "video_id": "video10110", "sen_id": 217902}, {"caption": "a girl sings while people walk around in black and white", "video_id": "video10110", "sen_id": 217903}, {"caption": "a woman is singing while being around various people doing normal things in a city", "video_id": "video10110", "sen_id": 217904}, {"caption": "a old man slowly walking in the foot path", "video_id": "video10110", "sen_id": 217905}, {"caption": "the woman sings in the black and white video as pedestrians are shown in the background", "video_id": "video10110", "sen_id": 217906}, {"caption": "a girl sings a song while people walk by", "video_id": "video10110", "sen_id": 217907}, {"caption": "woman is meeting her friend and getting back", "video_id": "video10110", "sen_id": 217908}, {"caption": "a wome is singing an albusm song in a sad manner and the song is about the condition of the people in that places", "video_id": "video10110", "sen_id": 217909}, {"caption": "a girl is singing a song for the old people", "video_id": "video10110", "sen_id": 217910}, {"caption": "an old bald man walks by another sits while a white woman sings a song in a music video", "video_id": "video10110", "sen_id": 217911}, {"caption": "shots of people on public transport and moving around the city are shown while a girl sings sadly", "video_id": "video10110", "sen_id": 217912}, {"caption": "a girl singing song boy wearing glass standing old man walking sitting displaying on screen", "video_id": "video10110", "sen_id": 217913}, {"caption": "male singer dancing and singing in his music album", "video_id": "video10110", "sen_id": 217914}, {"caption": "a lady is singing a song sadly", "video_id": "video10110", "sen_id": 217915}, {"caption": "a woman sings while we see black and white video of various people", "video_id": "video10110", "sen_id": 217916}, {"caption": "a young woman is singing as visions of various people go by", "video_id": "video10110", "sen_id": 217917}, {"caption": "a woman sings as old people sit and watch the world", "video_id": "video10110", "sen_id": 217918}, {"caption": "a woman is singing a song on the tv", "video_id": "video10110", "sen_id": 217919}, {"caption": "a female news host is describing different news stories about hollywood gossip and fashion", "video_id": "video11646", "sen_id": 217920}, {"caption": "a woman giving news and asking for you to subscribe to her page", "video_id": "video11646", "sen_id": 217921}, {"caption": "a lady with long hair wearing an off the shoulder black and white shirt asking you to subscribe", "video_id": "video11646", "sen_id": 217922}, {"caption": "a woman talking about the fashion shows of 2017", "video_id": "video11646", "sen_id": 217923}, {"caption": "a young woman discusses her opinions of a series of fashion trends and outfits", "video_id": "video11646", "sen_id": 217924}, {"caption": "a woman talking as pictures of other people are near her", "video_id": "video11646", "sen_id": 217925}, {"caption": "a dark skinned woman who talks about fashion wants viewers to subscribe to her channel", "video_id": "video11646", "sen_id": 217926}, {"caption": "a girls with queer hair style talks about fashions with videos", "video_id": "video11646", "sen_id": 217927}, {"caption": "a young entertainment reporter discusses a series of items related to fashion shows", "video_id": "video11646", "sen_id": 217928}, {"caption": "a woman in trendy clothing is discussing celebrity news", "video_id": "video11646", "sen_id": 217929}, {"caption": "a woman is rating the fashions of some celebrities", "video_id": "video11646", "sen_id": 217930}, {"caption": "a young blonde talks on a tv show about fashion show and not to forget to subscribe to clever tv", "video_id": "video11646", "sen_id": 217931}, {"caption": "a woman is giving news to alot of different trending news", "video_id": "video11646", "sen_id": 217932}, {"caption": "an entertainment reporter gives a report on various wardrobe malfunctions", "video_id": "video11646", "sen_id": 217933}, {"caption": "a girl pointing to other vidoes poping up on screan depecting modles and singers", "video_id": "video11646", "sen_id": 217934}, {"caption": "a woman with modern hair style talking from a studio", "video_id": "video11646", "sen_id": 217935}, {"caption": "a woman hosting a television show and talking about fashion next to a superimposed graphic", "video_id": "video11646", "sen_id": 217936}, {"caption": "a girl explains about the fashion show the clips was displayed on her left", "video_id": "video11646", "sen_id": 217937}, {"caption": "a woman hosts encourages views to leave comments and subscribe", "video_id": "video11646", "sen_id": 217938}, {"caption": "a lady with curly hair commenting about the celebrities", "video_id": "video11646", "sen_id": 217939}, {"caption": "a man is standing in front of a screen which shows a puppy sitting in a blue basked being trained - he is advertising 5 sessions of 15-minute puppy training sessions", "video_id": "video10774", "sen_id": 217940}, {"caption": "a man talks about puppy training as a cute puppy stands in the background", "video_id": "video10774", "sen_id": 217941}, {"caption": "man talks about training a puppy during a day", "video_id": "video10774", "sen_id": 217942}, {"caption": "a man is talking about training sessions for puppies", "video_id": "video10774", "sen_id": 217943}, {"caption": "a man in a black polo shirt explains that puppy training can be done in 15 minutes", "video_id": "video10774", "sen_id": 217944}, {"caption": "a man in black talking about training sessions for a puppy", "video_id": "video10774", "sen_id": 217945}, {"caption": "a guy wearing a black shirt with a dog in a blue basket in the background", "video_id": "video10774", "sen_id": 217946}, {"caption": "a man in a black shirt describing some dog training", "video_id": "video10774", "sen_id": 217947}, {"caption": "a man is describing the content of a dog training session", "video_id": "video10774", "sen_id": 217948}, {"caption": "a balding male host wearing a black shirt a dog in a blue crate and female helper explain about the dog training services", "video_id": "video10774", "sen_id": 217949}, {"caption": "a man in a black shirt is talking in front of a puppy sitting in a blue crate", "video_id": "video10774", "sen_id": 217950}, {"caption": "a dog sitting in a crate taking a treat from a man", "video_id": "video10774", "sen_id": 217951}, {"caption": "a dog trainer in a black shirt talks about his training methods", "video_id": "video10774", "sen_id": 217952}, {"caption": "a man talking about dog training with a puppy in the background", "video_id": "video10774", "sen_id": 217953}, {"caption": "a man is talking about training sessions for a dog", "video_id": "video10774", "sen_id": 217954}, {"caption": "a person in black t-shirt is talking here while a dog placed in a blue basket near him", "video_id": "video10774", "sen_id": 217955}, {"caption": "he seems to be a dog trainer who is explaining about the training session and duration for dogs in the background we can see the footage of a dog in a basket looking at his trainer and getting to eat something for performing the act taught to it", "video_id": "video10774", "sen_id": 217956}, {"caption": "a brown dog that is inside a blue basket jumps out of it and a man in black is speaking", "video_id": "video10774", "sen_id": 217957}, {"caption": "a man talks about puppy training and how it can be done in a short time", "video_id": "video10774", "sen_id": 217958}, {"caption": "old guy in brown tshirt talking about puppies and it new owners", "video_id": "video10774", "sen_id": 217959}, {"caption": "a woman showing off her office at work", "video_id": "video10157", "sen_id": 217960}, {"caption": "an office tour showing the various items placed on a desk", "video_id": "video10157", "sen_id": 217961}, {"caption": "a woman narrates a pov walk-though of her office", "video_id": "video10157", "sen_id": 217962}, {"caption": "a woman giving a tour of her office and showing her coffee cup", "video_id": "video10157", "sen_id": 217963}, {"caption": "an office cubicle between a glass partition and window has a desk with an insulated bottle water bottle computer screen printer overlapping documents keyboard notebook and supplies", "video_id": "video10157", "sen_id": 217964}, {"caption": "some one showing the video of their home in front of the camera", "video_id": "video10157", "sen_id": 217965}, {"caption": "a woman is talking and taking a coffee", "video_id": "video10157", "sen_id": 217966}, {"caption": "a person walking around a classy home going through doors and hallways and such", "video_id": "video10157", "sen_id": 217967}, {"caption": "a woman is in her office during the day with a cup of coffee", "video_id": "video10157", "sen_id": 217968}, {"caption": "girl is showing her office", "video_id": "video10157", "sen_id": 217969}, {"caption": "a woman giving a tour of her office and her desk", "video_id": "video10157", "sen_id": 217970}, {"caption": "a man walks through his office space and cubicle", "video_id": "video10157", "sen_id": 217971}, {"caption": "man is recording his desk and other things in the office", "video_id": "video10157", "sen_id": 217972}, {"caption": "a woman walking to her office telling what s in it", "video_id": "video10157", "sen_id": 217973}, {"caption": "a person i s filming their office building inside", "video_id": "video10157", "sen_id": 217974}, {"caption": "a woman films as she walks into her office then picks up a thermos of coffee", "video_id": "video10157", "sen_id": 217975}, {"caption": "its office room where the system then a falsk is placed near keyboard", "video_id": "video10157", "sen_id": 217976}, {"caption": "man is walking into his room and taking a bottle", "video_id": "video10157", "sen_id": 217977}, {"caption": "a lady is talking a video of her office table", "video_id": "video10157", "sen_id": 217978}, {"caption": "a person is filming their office area inside", "video_id": "video10157", "sen_id": 217979}, {"caption": "men are sitting at a desk at a sports show", "video_id": "video11591", "sen_id": 217980}, {"caption": "a panel of male commentators talk about rugby", "video_id": "video11591", "sen_id": 217981}, {"caption": "tv announcers give a gift", "video_id": "video11591", "sen_id": 217982}, {"caption": "sean maloney walking around a set to hand an anchor a pair of glasses", "video_id": "video11591", "sen_id": 217983}, {"caption": "four men talking about rugby", "video_id": "video11591", "sen_id": 217984}, {"caption": "three men sit at a desk while another stands next to the desk discussing sports", "video_id": "video11591", "sen_id": 217985}, {"caption": "a group of men talking on a new report", "video_id": "video11591", "sen_id": 217986}, {"caption": "a panel of expert discussing about rugby on tv", "video_id": "video11591", "sen_id": 217987}, {"caption": "a team of gentle men sitting around a table in a tv channel room", "video_id": "video11591", "sen_id": 217988}, {"caption": "a group of men are sitting and talking", "video_id": "video11591", "sen_id": 217989}, {"caption": "there is suit man talking to his mates in a studio", "video_id": "video11591", "sen_id": 217990}, {"caption": "a group of reporters are in a newsroom speaking about rugby", "video_id": "video11591", "sen_id": 217991}, {"caption": "one person is discussing one serious mater with three member group", "video_id": "video11591", "sen_id": 217992}, {"caption": "guys in suit talking with each other in a newsroom", "video_id": "video11591", "sen_id": 217993}, {"caption": "a group of men in a news room are talking", "video_id": "video11591", "sen_id": 217994}, {"caption": "a news team sitting behind the desk reporting the news", "video_id": "video11591", "sen_id": 217995}, {"caption": "a group of men is dark suits are sitting at a desk in a television studio and talking", "video_id": "video11591", "sen_id": 217996}, {"caption": "a news anchor talks about rugby news and gives a gift to his friend", "video_id": "video11591", "sen_id": 217997}, {"caption": "a group of sports analysts are talking about rugby", "video_id": "video11591", "sen_id": 217998}, {"caption": "some men in suits are sitting and talking", "video_id": "video11591", "sen_id": 217999}, {"caption": "a man is doing a series of event such a heavyweight lifting", "video_id": "video10258", "sen_id": 218000}, {"caption": "a person is picking up a large barbell for competition", "video_id": "video10258", "sen_id": 218001}, {"caption": "people working out and practicing high jump inside of an indoor track field", "video_id": "video10258", "sen_id": 218002}, {"caption": "men are doing track and field exercises while the camera shows the banners for new england division of track and field championship wins", "video_id": "video10258", "sen_id": 218003}, {"caption": "men lift weights and perform gymnastics in a gym", "video_id": "video10258", "sen_id": 218004}, {"caption": "a man lifting weights off the ground and another jumping over a pole", "video_id": "video10258", "sen_id": 218005}, {"caption": "athletic guys work out and practice in a school gym with banners above", "video_id": "video10258", "sen_id": 218006}, {"caption": "there is a man lifting weights in a practice section", "video_id": "video10258", "sen_id": 218007}, {"caption": "a weightlifter and a highjumper perform two successful attempts at their respective sport", "video_id": "video10258", "sen_id": 218008}, {"caption": "people are doing different exercises in a large gym", "video_id": "video10258", "sen_id": 218009}, {"caption": "a man lifts weights and hurdles in an indoor gym and track field", "video_id": "video10258", "sen_id": 218010}, {"caption": "two men are working out in a gym lifting weights and doing track events", "video_id": "video10258", "sen_id": 218011}, {"caption": "a man dead-lifts weight while another man performs a high jump onto a mat", "video_id": "video10258", "sen_id": 218012}, {"caption": "a man is lifting weights up above is head in a gym with a track", "video_id": "video10258", "sen_id": 218013}, {"caption": "a man is lifting a weight and another one is running for a long jump", "video_id": "video10258", "sen_id": 218014}, {"caption": "a weightlifter is lifting weights and another player practices jumping over a rod", "video_id": "video10258", "sen_id": 218015}, {"caption": "track and field athletes are training on the field to progress better", "video_id": "video10258", "sen_id": 218016}, {"caption": "a person is lifting heaving weights a person is high jumping", "video_id": "video10258", "sen_id": 218017}, {"caption": "a power lifter and other athletes practice sporting events", "video_id": "video10258", "sen_id": 218018}, {"caption": "some people are doing exercises in a room", "video_id": "video10258", "sen_id": 218019}, {"caption": "food being prepared with the ingredients posted on the video", "video_id": "video11624", "sen_id": 218020}, {"caption": "man putting large beef cuts and green vegetables into a white bowl", "video_id": "video11624", "sen_id": 218021}, {"caption": "a person spooning a beef dish out of a pan and into a bowl", "video_id": "video11624", "sen_id": 218022}, {"caption": "a chef spoons up a bowl of meat that they have been cooking in a pot", "video_id": "video11624", "sen_id": 218023}, {"caption": "man takes out beef from a pot and places it inside a shallow white bowl", "video_id": "video11624", "sen_id": 218024}, {"caption": "a recipe for salty beef is presented while someone scoops up a bowl of beef", "video_id": "video11624", "sen_id": 218025}, {"caption": "a meat dish is being prepared and ladled onto a dish while directions appear on the screen", "video_id": "video11624", "sen_id": 218026}, {"caption": "a person dips meat vegetables and broth from a pot on the stove into a white bowl while a recipe is displayed on the screen", "video_id": "video11624", "sen_id": 218027}, {"caption": "a man taking meal and putting on a bowl", "video_id": "video11624", "sen_id": 218028}, {"caption": "a person put some food in a white bowl", "video_id": "video11624", "sen_id": 218029}, {"caption": "a person is presenting the dish on a plate", "video_id": "video11624", "sen_id": 218030}, {"caption": " someone is taking some thing", "video_id": "video11624", "sen_id": 218031}, {"caption": "a person spooning a dish from a pot into a bowl", "video_id": "video11624", "sen_id": 218032}, {"caption": "text of a recipe for jangjorim a salty beef side dish with directions and personal experience overlays a person spooning the dish into a bowl", "video_id": "video11624", "sen_id": 218033}, {"caption": "the video is displaying a recipe for a side dish while the dish is in the background", "video_id": "video11624", "sen_id": 218034}, {"caption": "the video clip shows some one adding food to a bowl", "video_id": "video11624", "sen_id": 218035}, {"caption": "many chef are cooking food to serve in a hotel", "video_id": "video11624", "sen_id": 218036}, {"caption": "a person is putting some food from a pot into a white bowl", "video_id": "video11624", "sen_id": 218037}, {"caption": "a cook tops off a dish with different toppings", "video_id": "video11624", "sen_id": 218038}, {"caption": "a person is preparing some dishes and he is transferring some thing to other containers", "video_id": "video11624", "sen_id": 218039}, {"caption": "a man's voice is discussing xbox free games", "video_id": "video12274", "sen_id": 218040}, {"caption": "the voice of a man with a british accent is talking about x-box games", "video_id": "video12274", "sen_id": 218041}, {"caption": "the top 5 free arcade games on the xbox 360", "video_id": "video12274", "sen_id": 218042}, {"caption": "a man with a british accent talks about free x-box live games while pictures of games appear on screen", "video_id": "video12274", "sen_id": 218043}, {"caption": "a man describing the top 5 free arcade games available on the xbox 360", "video_id": "video12274", "sen_id": 218044}, {"caption": "man explains about top 5 free arcade games on xbox while image on the screen shows games cycling through", "video_id": "video12274", "sen_id": 218045}, {"caption": "a guy making a video describing the top five free games on xbox live", "video_id": "video12274", "sen_id": 218046}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video12274", "sen_id": 218047}, {"caption": "thee frog squad browse games arcade most popular the walking dead", "video_id": "video12274", "sen_id": 218048}, {"caption": "its top 5 free xbl arcade games the poster are moving on the bacjground", "video_id": "video12274", "sen_id": 218049}, {"caption": "five popular games for the xbox live are available for free", "video_id": "video12274", "sen_id": 218050}, {"caption": "there is a report of top free arcade games", "video_id": "video12274", "sen_id": 218051}, {"caption": "a man is talking and showing different xbox games", "video_id": "video12274", "sen_id": 218052}, {"caption": "a man is explain about top 5 games", "video_id": "video12274", "sen_id": 218053}, {"caption": "the top five free xbox live arcade games available for download", "video_id": "video12274", "sen_id": 218054}, {"caption": "a video about games available for free on internet", "video_id": "video12274", "sen_id": 218055}, {"caption": "a person is explaining about the free video game", "video_id": "video12274", "sen_id": 218056}, {"caption": "a man is talking about atop 5 video game", "video_id": "video12274", "sen_id": 218057}, {"caption": "someone is talking about the top 5 free xbl arcade games", "video_id": "video12274", "sen_id": 218058}, {"caption": "some video games are being shown on tv", "video_id": "video12274", "sen_id": 218059}, {"caption": "bad motorcycle accidents happening all around the world", "video_id": "video12748", "sen_id": 218060}, {"caption": "several different people getting into crashes on motorcycles", "video_id": "video12748", "sen_id": 218061}, {"caption": "a man on a motorcycle is hit by a large vehicle", "video_id": "video12748", "sen_id": 218062}, {"caption": "multiple motorcycles wreck and are hit by oncoming cars", "video_id": "video12748", "sen_id": 218063}, {"caption": "motorcyclists being hit he road by different vehicles", "video_id": "video12748", "sen_id": 218064}, {"caption": "there are wrecks involving motorcycles with various other vehicles", "video_id": "video12748", "sen_id": 218065}, {"caption": "different motorcyclists being hit by various vehicles", "video_id": "video12748", "sen_id": 218066}, {"caption": "multiple people riding motorcycles get hit by people driving cars", "video_id": "video12748", "sen_id": 218067}, {"caption": "a motorcycle loses control on a busy street and runs into the side of a large truck", "video_id": "video12748", "sen_id": 218068}, {"caption": "motorcycles crash head on into cars vans and buses", "video_id": "video12748", "sen_id": 218069}, {"caption": "a lot of traffic driving down the street hitting people", "video_id": "video12748", "sen_id": 218070}, {"caption": "a white car is driving slowly down a paved city road", "video_id": "video12748", "sen_id": 218071}, {"caption": "many motorcyclists are enduring massive collisions with vehicles the motorcycles are breaking", "video_id": "video12748", "sen_id": 218072}, {"caption": "a various scene of a bike accident is playing", "video_id": "video12748", "sen_id": 218073}, {"caption": "a guy on a road is being hit by a car", "video_id": "video12748", "sen_id": 218074}, {"caption": "motorcycles driving down the road collide with oncoming traffic", "video_id": "video12748", "sen_id": 218075}, {"caption": "the person riding the motorcyle was hit by the car", "video_id": "video12748", "sen_id": 218076}, {"caption": "a man on a motorbike is having a crash with a car in the street", "video_id": "video12748", "sen_id": 218077}, {"caption": "a motorcyle drives out in to traffic and crashes with a vehicle over and over again", "video_id": "video12748", "sen_id": 218078}, {"caption": "some trucks and cars are in a traffic jam", "video_id": "video12748", "sen_id": 218079}, {"caption": "a biology lesson of a worm growing in a cricket", "video_id": "video12489", "sen_id": 218080}, {"caption": "a narrator explaining a type of worm along with shots of a worm going in a cricket", "video_id": "video12489", "sen_id": 218081}, {"caption": "picture of a worm in a cricket", "video_id": "video12489", "sen_id": 218082}, {"caption": "a man wearing a tee shirt with a heart symbol explains a photograph of a crawling insect attached to a thin squiggly worm", "video_id": "video12489", "sen_id": 218083}, {"caption": "an image of a horsehair worm is shown while a man describes how they grow and survive", "video_id": "video12489", "sen_id": 218084}, {"caption": "the horsehair parasitic worm uses crickets as a host", "video_id": "video12489", "sen_id": 218085}, {"caption": "man in black shirt and black jeans describing a cartoon worm", "video_id": "video12489", "sen_id": 218086}, {"caption": "i large black bug with six legs is attached to a brown string in a puddle of water", "video_id": "video12489", "sen_id": 218087}, {"caption": "a male teacher that is casually dressed explains a black and white graphic that has a cricket and a worm on it", "video_id": "video12489", "sen_id": 218088}, {"caption": "a male is talking about a worm inside a bug and why it is inside the bug", "video_id": "video12489", "sen_id": 218089}, {"caption": "a guy in black explaining about a warm s activity to the viewers", "video_id": "video12489", "sen_id": 218090}, {"caption": "there is a men in black shrit telling something", "video_id": "video12489", "sen_id": 218091}, {"caption": "a scientist discusses the life cycle of a horse hair worm", "video_id": "video12489", "sen_id": 218092}, {"caption": "a person is teaching about the housing and transportation", "video_id": "video12489", "sen_id": 218093}, {"caption": "an insect catches a worm and remains in a liquid", "video_id": "video12489", "sen_id": 218094}, {"caption": "man talks about one insect it had long tail", "video_id": "video12489", "sen_id": 218095}, {"caption": "a man is speaking about a worm parasite entering a cricket", "video_id": "video12489", "sen_id": 218096}, {"caption": "men is are discussing with each other by actions", "video_id": "video12489", "sen_id": 218097}, {"caption": "one man talks about long tail spider", "video_id": "video12489", "sen_id": 218098}, {"caption": "a man is showing a bug on a pic", "video_id": "video12489", "sen_id": 218099}, {"caption": "a tom hanks best acting movies of his career", "video_id": "video11257", "sen_id": 218100}, {"caption": "a clip from a tom hanks watch mojo movie", "video_id": "video11257", "sen_id": 218101}, {"caption": "top acting moments from tom hanks featuring clips from castaway and apollo 13", "video_id": "video11257", "sen_id": 218102}, {"caption": "a man with a long beard is floating on a raft and then he is on a spaceship", "video_id": "video11257", "sen_id": 218103}, {"caption": "a man marooned on a raft and an astronaut in a shuttle", "video_id": "video11257", "sen_id": 218104}, {"caption": "a woman talks as clips from famous movies play in the background", "video_id": "video11257", "sen_id": 218105}, {"caption": "two different tom hanks movies are being highlighted", "video_id": "video11257", "sen_id": 218106}, {"caption": "a woman is telling about a man who went a moon", "video_id": "video11257", "sen_id": 218107}, {"caption": "lady speaking about the actor who was in a movie in the space", "video_id": "video11257", "sen_id": 218108}, {"caption": "a woman talks about some big roles of tom hanks", "video_id": "video11257", "sen_id": 218109}, {"caption": "there is a man laying down in a boat", "video_id": "video11257", "sen_id": 218110}, {"caption": "tom hanks on a raft in castaway and in the shuttle in apollo 13", "video_id": "video11257", "sen_id": 218111}, {"caption": "an entertainment reporter talks about the famous movies of an actor", "video_id": "video11257", "sen_id": 218112}, {"caption": "a video movie scene old man sleeping on wooden boat and white dress wearing cloth driving aeroplane displaying on screen", "video_id": "video11257", "sen_id": 218113}, {"caption": "showing the best characters played by a specific actor during his career", "video_id": "video11257", "sen_id": 218114}, {"caption": "a man is lying on a raft in the water", "video_id": "video11257", "sen_id": 218115}, {"caption": "a nearly-naked man with a gray beard lies on top of a raft of gray poles and cries after a volleyball falls into the sea", "video_id": "video11257", "sen_id": 218116}, {"caption": "a shot of the movie cast away with tom hanks drifting on a raft while a woman talks about this movie and another one where tom is an astronaut", "video_id": "video11257", "sen_id": 218117}, {"caption": "flight personnels are wearing white uniforms and engaged in many things", "video_id": "video11257", "sen_id": 218118}, {"caption": "a few sences from two movies tom hanks has played in depicting some sort of countdown", "video_id": "video11257", "sen_id": 218119}, {"caption": "two actors from the movie suicide squad being interviewed by mario lopez", "video_id": "video11121", "sen_id": 218120}, {"caption": "two famous celebrities discuss a film in which they star", "video_id": "video11121", "sen_id": 218121}, {"caption": "a famous actor and actress is interviewed for a tv news show", "video_id": "video11121", "sen_id": 218122}, {"caption": "mario lopez of extra interviews will smith and his co-star about their new film", "video_id": "video11121", "sen_id": 218123}, {"caption": "actors discuss a movie with terms such as 'friendship' and 'sexy'", "video_id": "video11121", "sen_id": 218124}, {"caption": "will smith talking with margo robbie in a movie interview", "video_id": "video11121", "sen_id": 218125}, {"caption": "an male and female actor are being interviewed on extra", "video_id": "video11121", "sen_id": 218126}, {"caption": "a tv show clip of two actors being interviewed about a movie", "video_id": "video11121", "sen_id": 218127}, {"caption": "a man in a black shirt interviews a couple in a front of a silver background", "video_id": "video11121", "sen_id": 218128}, {"caption": "will smith talking with a a journalist about suicide squad", "video_id": "video11121", "sen_id": 218129}, {"caption": "will smith and margot robbie being interviewed by mario lopz on extratv", "video_id": "video11121", "sen_id": 218130}, {"caption": "2 men and a woman are talking about a movie", "video_id": "video11121", "sen_id": 218131}, {"caption": "a man with beautiful smile talking with a women", "video_id": "video11121", "sen_id": 218132}, {"caption": "a man with a blue shirt talks to a blonde woman with a plaid dress and a reporter", "video_id": "video11121", "sen_id": 218133}, {"caption": "an african man and white woman talk about a movie they starred in together", "video_id": "video11121", "sen_id": 218134}, {"caption": "a man is interviewing a male and female celebrities on a talk show", "video_id": "video11121", "sen_id": 218135}, {"caption": "there is a young and hansom guy with a cute girl", "video_id": "video11121", "sen_id": 218136}, {"caption": "a man is interviewing another man and woman about a movie", "video_id": "video11121", "sen_id": 218137}, {"caption": "a couple is being interviewed by a person", "video_id": "video11121", "sen_id": 218138}, {"caption": "a man in blue dress with girl standing with other guy speaking and laughing", "video_id": "video11121", "sen_id": 218139}, {"caption": "a train is going over the tracks in a remote region", "video_id": "video11090", "sen_id": 218140}, {"caption": "a sight touring train with passengers aboard is running through beautiful mountains crossing bridges", "video_id": "video11090", "sen_id": 218141}, {"caption": "a train with people aboard came thru a tunnel are going thru the mountains and going over a bridge", "video_id": "video11090", "sen_id": 218142}, {"caption": "a yellow train is running down the track", "video_id": "video11090", "sen_id": 218143}, {"caption": "video shows a train moving trough the trucks along the mountains", "video_id": "video11090", "sen_id": 218144}, {"caption": "a train moves in a hill region crossing over a bridge", "video_id": "video11090", "sen_id": 218145}, {"caption": "in a train the passengers were in the train and moving on the bridge", "video_id": "video11090", "sen_id": 218146}, {"caption": "a train is coming on a bridge near a mountain", "video_id": "video11090", "sen_id": 218147}, {"caption": "a colorful train is riding through a mountain pass and over a bridge", "video_id": "video11090", "sen_id": 218148}, {"caption": "a train coming out of a tunnel going across the countryside and then over a bridge", "video_id": "video11090", "sen_id": 218149}, {"caption": "a train zooms by a mountain valley", "video_id": "video11090", "sen_id": 218150}, {"caption": "a passenger train exits a tunnel and crosses a bridge while travelling through the countryside", "video_id": "video11090", "sen_id": 218151}, {"caption": "a colourful train is coming from the tunnel", "video_id": "video11090", "sen_id": 218152}, {"caption": "a long train is transporting people through the mountains while relaxing music is being played in the background", "video_id": "video11090", "sen_id": 218153}, {"caption": "a train is going around mountains and on a bridge", "video_id": "video11090", "sen_id": 218154}, {"caption": "the train is driven carefully near the big green mountains", "video_id": "video11090", "sen_id": 218155}, {"caption": "there is a train moving around the mountain", "video_id": "video11090", "sen_id": 218156}, {"caption": "a train with a yellow first car appears out of a tunnel", "video_id": "video11090", "sen_id": 218157}, {"caption": "a train is going through a tunnel around a curve and over a bridge", "video_id": "video11090", "sen_id": 218158}, {"caption": "a long freight train exits from a tunnel cut through the mountains and continues along a trellised bridge in the european countryside", "video_id": "video11090", "sen_id": 218159}, {"caption": "a group of people are sitting with a doctor talking", "video_id": "video12346", "sen_id": 218160}, {"caption": "two patients are consulting a doctor in their hospital", "video_id": "video12346", "sen_id": 218161}, {"caption": "a whit color coat girl talking to a lady", "video_id": "video12346", "sen_id": 218162}, {"caption": "in an office a woman is taking notes while seated across from a man and woman who are seated by a window with a closed curtain", "video_id": "video12346", "sen_id": 218163}, {"caption": "a lady with white coat is explaining something to two ladies and another person in green coat and cap is explaining something to two other ladies", "video_id": "video12346", "sen_id": 218164}, {"caption": "a lady counseler is counseling and a lady is explaing some buisness tips to some one", "video_id": "video12346", "sen_id": 218165}, {"caption": "a doctor treating her patience inside the hospital", "video_id": "video12346", "sen_id": 218166}, {"caption": "the doctors are giving the information to the people", "video_id": "video12346", "sen_id": 218167}, {"caption": "a person is explaining something when some doctors are speaking with their patients", "video_id": "video12346", "sen_id": 218168}, {"caption": "indian people consult with doctors about various medical conditions and procedures", "video_id": "video12346", "sen_id": 218169}, {"caption": "a doctor is giving counselling first to a couple and then to a mother and daughter", "video_id": "video12346", "sen_id": 218170}, {"caption": "here we can see a news channel showing the scene of a hospital where patients are seen consulting the doctor ana a voice of a guy can be heard from the background about ivf tests", "video_id": "video12346", "sen_id": 218171}, {"caption": "cnbc exclusive 18102014 18:19:13 doctor talking marketing presenation", "video_id": "video12346", "sen_id": 218172}, {"caption": "patients are getting their reports from the doctor", "video_id": "video12346", "sen_id": 218173}, {"caption": "bunch of couple talking to the doctor before surgery", "video_id": "video12346", "sen_id": 218174}, {"caption": "there is a doctor explains about some important matters", "video_id": "video12346", "sen_id": 218175}, {"caption": " with long and dark hair writes on a pad of paper while speaking to a couple seated across from her in a room with pink curtains covering the windows", "video_id": "video12346", "sen_id": 218176}, {"caption": "maarketing presentation 18102014 cnbc tv18 exclusive about", "video_id": "video12346", "sen_id": 218177}, {"caption": "medical professionals speak to couples as a man narrates in hindi", "video_id": "video12346", "sen_id": 218178}, {"caption": "the woman interviews the couple in the office", "video_id": "video12346", "sen_id": 218179}, {"caption": "a young african-american man using a high- tech treadmill and showing the instrument panel", "video_id": "video10176", "sen_id": 218180}, {"caption": "there's a man running on a life fitness treadmill at a gym and then increases the speed", "video_id": "video10176", "sen_id": 218181}, {"caption": "there is a man practicing for a match", "video_id": "video10176", "sen_id": 218182}, {"caption": "a men is excercising on a treadmill machine he is wearing braclet", "video_id": "video10176", "sen_id": 218183}, {"caption": "one man working in the threadmill very fastly", "video_id": "video10176", "sen_id": 218184}, {"caption": "a man running on a treadmill adjusts the settings", "video_id": "video10176", "sen_id": 218185}, {"caption": "athlete showing his fast running skills in the gym", "video_id": "video10176", "sen_id": 218186}, {"caption": "there is a man running hard on treadmill", "video_id": "video10176", "sen_id": 218187}, {"caption": "a man runs on a treadmill in a gym very quickly", "video_id": "video10176", "sen_id": 218188}, {"caption": "a man is jogging on the fitness machine", "video_id": "video10176", "sen_id": 218189}, {"caption": "man jogs on a fitness running machine and adjusts settings for a good workout", "video_id": "video10176", "sen_id": 218190}, {"caption": "a man wearing a white tank top is jogging on a treadmill", "video_id": "video10176", "sen_id": 218191}, {"caption": "there is a white tshirt man exercising with treadmill", "video_id": "video10176", "sen_id": 218192}, {"caption": "a black man running on a treadmill in a gym", "video_id": "video10176", "sen_id": 218193}, {"caption": "a man is running in the treadmill machine for body fitness", "video_id": "video10176", "sen_id": 218194}, {"caption": "a man is running on a treadmill in a gym", "video_id": "video10176", "sen_id": 218195}, {"caption": "a black man is running on a jugger", "video_id": "video10176", "sen_id": 218196}, {"caption": "one man running in a threadmill very fast 400 kmph", "video_id": "video10176", "sen_id": 218197}, {"caption": "guy running on thread mill increasing the speed", "video_id": "video10176", "sen_id": 218198}, {"caption": "a dark muscular man with tight muscles is exercising in a walker", "video_id": "video10176", "sen_id": 218199}, {"caption": "people playing a tennis match while background music plays", "video_id": "video10607", "sen_id": 218200}, {"caption": "a man in a red shirt plays a fast game of badminton against man in a white shirt", "video_id": "video10607", "sen_id": 218201}, {"caption": "two persons playing badminton game on a court", "video_id": "video10607", "sen_id": 218202}, {"caption": "mens singles badminton is playing interestingly in ground", "video_id": "video10607", "sen_id": 218203}, {"caption": "two men play badmitton in a large stadium in front of a large crowd", "video_id": "video10607", "sen_id": 218204}, {"caption": "a player in white tries to defend himself from the relentless attacks of the red player", "video_id": "video10607", "sen_id": 218205}, {"caption": "there is a man in red tshirt playing badminton", "video_id": "video10607", "sen_id": 218206}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10607", "sen_id": 218207}, {"caption": "two players playing badminton very interesting to watch", "video_id": "video10607", "sen_id": 218208}, {"caption": "two men play badmitton in a stadium in front of a good crowd of people", "video_id": "video10607", "sen_id": 218209}, {"caption": "young men play a tough game of tennis inside", "video_id": "video10607", "sen_id": 218210}, {"caption": "there is a red jersey man playing badminton", "video_id": "video10607", "sen_id": 218211}, {"caption": "the player with the red jersey does a fantastic save in the match", "video_id": "video10607", "sen_id": 218212}, {"caption": "a two men are playing a shuttlecock in the ground", "video_id": "video10607", "sen_id": 218213}, {"caption": "two players are playing a game on the ground", "video_id": "video10607", "sen_id": 218214}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10607", "sen_id": 218215}, {"caption": "two guys playing a game of badminton on a green court", "video_id": "video10607", "sen_id": 218216}, {"caption": "two men play badmitton in a large stadium in front of a cheering crowd", "video_id": "video10607", "sen_id": 218217}, {"caption": "a red and white t shirt dress wearing boys players playing batmanton game inside stadium audience watching", "video_id": "video10607", "sen_id": 218218}, {"caption": "a couple of guys are playing against each other", "video_id": "video10607", "sen_id": 218219}, {"caption": "three people having a conversation in a scene from a movie", "video_id": "video10726", "sen_id": 218220}, {"caption": "three people talking questioning and looking at each other", "video_id": "video10726", "sen_id": 218221}, {"caption": "a man with gray hair and and man with black hair are talking", "video_id": "video10726", "sen_id": 218222}, {"caption": "two men and a woman talk to each other outdoors at night", "video_id": "video10726", "sen_id": 218223}, {"caption": "two men and a women discuss modeling", "video_id": "video10726", "sen_id": 218224}, {"caption": "two men and a women discuss modeling", "video_id": "video10726", "sen_id": 218225}, {"caption": "two guys and a girl talking to each other", "video_id": "video10726", "sen_id": 218226}, {"caption": "a scene from the movie zoolander where ben stiller asks 'why male models'", "video_id": "video10726", "sen_id": 218227}, {"caption": "two confused men talk to each other in front of a young blonde woman", "video_id": "video10726", "sen_id": 218228}, {"caption": "ben stiller listens to two other actors as they speak", "video_id": "video10726", "sen_id": 218229}, {"caption": "there is a brown hair woman talking with friends", "video_id": "video10726", "sen_id": 218230}, {"caption": "the video starts with a large bearded man wearing mirror glasses then cuts to dark outdoor street scene", "video_id": "video10726", "sen_id": 218231}, {"caption": "a man is talking another man in the movie scene", "video_id": "video10726", "sen_id": 218232}, {"caption": "ben stiller tries to act like a model in a movie scene", "video_id": "video10726", "sen_id": 218233}, {"caption": "a man shows a clip from the movie zoolander", "video_id": "video10726", "sen_id": 218234}, {"caption": "there is a woman in black dressing talking to two persons", "video_id": "video10726", "sen_id": 218235}, {"caption": "two men are having a discussion in an outdoor location", "video_id": "video10726", "sen_id": 218236}, {"caption": "a man in sunglasses says look at this a clip of a movie appears and ben stiller with a confused look on his face asks but why male models", "video_id": "video10726", "sen_id": 218237}, {"caption": "zoolander 2 has a lot to live up to because zoolander was amazing", "video_id": "video10726", "sen_id": 218238}, {"caption": "in the movie zoolander zoolander asks why male models", "video_id": "video10726", "sen_id": 218239}, {"caption": "vehicles are driving down the road and they get into a accident", "video_id": "video10571", "sen_id": 218240}, {"caption": "a black car pulls ahead of a white box truck before the truck hits a construction vehicle forcing the blue cab of the construction truck to cross into the lane where the car was and force a separate car across opposite lanes pedestrians cross at an intersection when a red box truck skids into them with the truck facing the opposite direction from which it came", "video_id": "video10571", "sen_id": 218241}, {"caption": "a large white and blue big rig jackknifes in the road", "video_id": "video10571", "sen_id": 218242}, {"caption": "a driver is driving along when a large big rig jackknifes and crashes", "video_id": "video10571", "sen_id": 218243}, {"caption": "two semi trucks collide and another red semi truck spins into a crowd of people", "video_id": "video10571", "sen_id": 218244}, {"caption": "a car driving on a highway and then crashes into a blue truck", "video_id": "video10571", "sen_id": 218245}, {"caption": "a stretch of road showing us as the driver of a car hitting a dump truck then into a crowd of people with a dump truck crashing into them", "video_id": "video10571", "sen_id": 218246}, {"caption": "drivers can lose control of their trucks and get into accidents", "video_id": "video10571", "sen_id": 218247}, {"caption": "someone is driving and its video recorder captures the road conditions till the moment a trunk swing into its lane and bumping into the truck at a different scene a truck is losing control and swinging toward people", "video_id": "video10571", "sen_id": 218248}, {"caption": "there is a car crash on the street", "video_id": "video10571", "sen_id": 218249}, {"caption": "record of two large trucks swerving out of control", "video_id": "video10571", "sen_id": 218250}, {"caption": "a man is driving while suddenly a truck loses control next a truck loses control and rams several people", "video_id": "video10571", "sen_id": 218251}, {"caption": "accidents happening on road hitting vehicles and objects", "video_id": "video10571", "sen_id": 218252}, {"caption": "a truck gets hit by a worker truck and the car which is recording ran into a valley", "video_id": "video10571", "sen_id": 218253}, {"caption": "two lories causing an accident by the road", "video_id": "video10571", "sen_id": 218254}, {"caption": "a scene of a so many accident is showing on", "video_id": "video10571", "sen_id": 218255}, {"caption": "on the road its a big accident the lorry hits the truck the people are panic", "video_id": "video10571", "sen_id": 218256}, {"caption": "a person is driving a car very fast and he dashed into a truck", "video_id": "video10571", "sen_id": 218257}, {"caption": "wrecks happen when large trucks lose control and slide in to things", "video_id": "video10571", "sen_id": 218258}, {"caption": "a person drives their truck into a car and hits another car", "video_id": "video10571", "sen_id": 218259}, {"caption": "there are people in a city walking on sidewalks in front of large buildings", "video_id": "video10415", "sen_id": 218260}, {"caption": "a group of people walk along a sidewalk in a major city", "video_id": "video10415", "sen_id": 218261}, {"caption": "a large group of people move along a city sidewalk in the center of a town", "video_id": "video10415", "sen_id": 218262}, {"caption": "a buck of girls walking down the sidewalk", "video_id": "video10415", "sen_id": 218263}, {"caption": "female friends walking across a street and talking", "video_id": "video10415", "sen_id": 218264}, {"caption": "a group of women talking and walking across the street", "video_id": "video10415", "sen_id": 218265}, {"caption": "a busy street with many people walking on the road", "video_id": "video10415", "sen_id": 218266}, {"caption": "girls walking near road side ways very busyly", "video_id": "video10415", "sen_id": 218267}, {"caption": "a group of padestrians are walking in a city", "video_id": "video10415", "sen_id": 218268}, {"caption": "girl walking on roads carrying bags in white dresses", "video_id": "video10415", "sen_id": 218269}, {"caption": "a group of people are walking around outside", "video_id": "video10415", "sen_id": 218270}, {"caption": "there is women walking on the downtown", "video_id": "video10415", "sen_id": 218271}, {"caption": "a people are walking in the road side flat form", "video_id": "video10415", "sen_id": 218272}, {"caption": "three girlfriends walk together on a nice sunny day", "video_id": "video10415", "sen_id": 218273}, {"caption": "bunch of sexy woman walking on the pavement", "video_id": "video10415", "sen_id": 218274}, {"caption": "an exploration of something about the peoples walking on the road", "video_id": "video10415", "sen_id": 218275}, {"caption": "people walking on the payment of a busy city during peak hours", "video_id": "video10415", "sen_id": 218276}, {"caption": "asian school age girls with backpacks are walking along a city sidewalk", "video_id": "video10415", "sen_id": 218277}, {"caption": "a early morning time all people get ready and going to work by walking in street area", "video_id": "video10415", "sen_id": 218278}, {"caption": "in front of big building many vehicle running in the road and many peoples walking on the road side", "video_id": "video10415", "sen_id": 218279}, {"caption": "footage of wall paintings while background music plays", "video_id": "video12740", "sen_id": 218280}, {"caption": "a wall is shown with two flat screen tvs and various disney paintings on the wall", "video_id": "video12740", "sen_id": 218281}, {"caption": "artwork hangs motionless on a wall surrounded by other artwork", "video_id": "video12740", "sen_id": 218282}, {"caption": "a young girl with black hair stares at several drawings that appear on several different phone screens", "video_id": "video12740", "sen_id": 218283}, {"caption": "a woman in a black and white striped long sleeve shirt is looking at a screen of an illustrator and then there are illustrations on a board and two more screens", "video_id": "video12740", "sen_id": 218284}, {"caption": "a wall with two flat screen tvs covered in various disney drawings", "video_id": "video12740", "sen_id": 218285}, {"caption": "a person is showing the arts on a big screen", "video_id": "video12740", "sen_id": 218286}, {"caption": "the animator in the animation room looking for inspiration from past animations", "video_id": "video12740", "sen_id": 218287}, {"caption": "piano music playing while a bunch of random drawing are displayed", "video_id": "video12740", "sen_id": 218288}, {"caption": "fantastic drawings on wall then few pictures are framed", "video_id": "video12740", "sen_id": 218289}, {"caption": "disney artwork is being shown on a wall with some old music in the background", "video_id": "video12740", "sen_id": 218290}, {"caption": "there are some interesting drawings on the wall", "video_id": "video12740", "sen_id": 218291}, {"caption": "drawings being displayed on the screen", "video_id": "video12740", "sen_id": 218292}, {"caption": "a small girl watching some different types of mobile phone kept for display", "video_id": "video12740", "sen_id": 218293}, {"caption": "a brown wall with cartoon drawings on it", "video_id": "video12740", "sen_id": 218294}, {"caption": "various cartoon sketches are on the walls of the room", "video_id": "video12740", "sen_id": 218295}, {"caption": "a room with childhood characters painted on the walls screens display a cartoon bear", "video_id": "video12740", "sen_id": 218296}, {"caption": "a child s artwork is shown while piano music plays", "video_id": "video12740", "sen_id": 218297}, {"caption": "a camera is showing a wall with pictures drawn on it while music plays in the background", "video_id": "video12740", "sen_id": 218298}, {"caption": "two tv monitors hang on the wall with drawings of cartoon bears on them and the good fairys on the wall", "video_id": "video12740", "sen_id": 218299}, {"caption": "a reporter is talking about swimming from new york to london", "video_id": "video12079", "sen_id": 218300}, {"caption": "a news anchor telling of some interesting news", "video_id": "video12079", "sen_id": 218301}, {"caption": "a news reporter is sitting at his desk telling about a swimmer", "video_id": "video12079", "sen_id": 218302}, {"caption": "a bbc reporter is reporting how an african is going to make his way across the atlantic ocean in 2017", "video_id": "video12079", "sen_id": 218303}, {"caption": "a reporter speaks as a picture of the thames is seen on the screen", "video_id": "video12079", "sen_id": 218304}, {"caption": "a bbc newscaster announces that a man in africa is training to swim across the atlantic ocean", "video_id": "video12079", "sen_id": 218305}, {"caption": "a white man in a suit is telling a news story", "video_id": "video12079", "sen_id": 218306}, {"caption": "a news broadcaster talking in front of a image of a bridge", "video_id": "video12079", "sen_id": 218307}, {"caption": "a british man in a suit talks about a man who plans to swim across the atlantic ocean", "video_id": "video12079", "sen_id": 218308}, {"caption": "an african guy planned to cross new york to london by swimming through water", "video_id": "video12079", "sen_id": 218309}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12079", "sen_id": 218310}, {"caption": "a news reporter is speaking about the world news", "video_id": "video12079", "sen_id": 218311}, {"caption": "a reporter reports about a man planning to swim from new york to london", "video_id": "video12079", "sen_id": 218312}, {"caption": "a television news reporter explaining about an african attempting a swim from new york to london", "video_id": "video12079", "sen_id": 218313}, {"caption": "there is a suit man talking from the studio", "video_id": "video12079", "sen_id": 218314}, {"caption": "bbc world news one man talks about the new", "video_id": "video12079", "sen_id": 218315}, {"caption": "a man is wearing suit and sitting then talking something about london", "video_id": "video12079", "sen_id": 218316}, {"caption": "there is a suit man talking in front of a display", "video_id": "video12079", "sen_id": 218317}, {"caption": "a man wearing a black coat a tie and a white shirt is speaking", "video_id": "video12079", "sen_id": 218318}, {"caption": "the news reader is wearing a black suit and ash designed tie and sitting in a really beautiful background", "video_id": "video12079", "sen_id": 218319}, {"caption": "a man speking spanish is telling viewers about a country and the people in it", "video_id": "video10066", "sen_id": 218320}, {"caption": "there is a man walking through a marketplace and looking at art", "video_id": "video10066", "sen_id": 218321}, {"caption": "people are walking around by the farmers markets", "video_id": "video10066", "sen_id": 218322}, {"caption": "a man on a tropical street sells fruit from a small wooden stand", "video_id": "video10066", "sen_id": 218323}, {"caption": "several people are shown walking in a city that appears to be in europe(probably in spain)", "video_id": "video10066", "sen_id": 218324}, {"caption": "a large group of people move around a large open air street market", "video_id": "video10066", "sen_id": 218325}, {"caption": "there is a write tshirt man walking on the street", "video_id": "video10066", "sen_id": 218326}, {"caption": "a people are going on the street market", "video_id": "video10066", "sen_id": 218327}, {"caption": "people are walking on the street and buying things at a market", "video_id": "video10066", "sen_id": 218328}, {"caption": "bunch of people walking in the streets of their town", "video_id": "video10066", "sen_id": 218329}, {"caption": "one women in white t-shirt and glasses is walking in street", "video_id": "video10066", "sen_id": 218330}, {"caption": "a man narrating a view of a beautiful and colorful city abroad", "video_id": "video10066", "sen_id": 218331}, {"caption": "a man walks through a bustling city and market place", "video_id": "video10066", "sen_id": 218332}, {"caption": "a woman is wearing hand bag and cooling glass moving somewhere fastly", "video_id": "video10066", "sen_id": 218333}, {"caption": "a statue of a person is outside a building", "video_id": "video10066", "sen_id": 218334}, {"caption": "a woman is walking on the streets and looking a nice picture", "video_id": "video10066", "sen_id": 218335}, {"caption": "people walking on the busy street and street hawker trying to sell their product", "video_id": "video10066", "sen_id": 218336}, {"caption": "a man walks through town in a foreign country and a hotel is seen", "video_id": "video10066", "sen_id": 218337}, {"caption": "a white dress girl and white t shirt man walking on street and fruit and vegetables seller walking on road to sell fruits displaying on screen", "video_id": "video10066", "sen_id": 218338}, {"caption": "someone is walking around a busy part of town", "video_id": "video10066", "sen_id": 218339}, {"caption": "a man untieing a cooked meat from the oven", "video_id": "video12511", "sen_id": 218340}, {"caption": "a person cuts the strings off a large piece of meat", "video_id": "video12511", "sen_id": 218341}, {"caption": "a gentleman is cutting strings off of meat on a cutting board", "video_id": "video12511", "sen_id": 218342}, {"caption": "a man is taking the string off of a cooked piece of meat", "video_id": "video12511", "sen_id": 218343}, {"caption": "a person cutting a piece of meat with music in the background", "video_id": "video12511", "sen_id": 218344}, {"caption": "man is preparing a piece of meat and about to cut it", "video_id": "video12511", "sen_id": 218345}, {"caption": "a piece of cooked meat is being unwrapped and cut", "video_id": "video12511", "sen_id": 218346}, {"caption": "a person is cutting a chunk of meat", "video_id": "video12511", "sen_id": 218347}, {"caption": "a person cuts twine holding together a beef roast", "video_id": "video12511", "sen_id": 218348}, {"caption": "a cooked piece of meat is unwrapped in preparation for consumption", "video_id": "video12511", "sen_id": 218349}, {"caption": "a man is untying the string from around a cooked piece of prime rib", "video_id": "video12511", "sen_id": 218350}, {"caption": "a man cuts a large piece of cooked meat on top of cutting board", "video_id": "video12511", "sen_id": 218351}, {"caption": "a chef uses a knife to cut the strings off a long piece of roasted meat placed on a rectangular cutting board", "video_id": "video12511", "sen_id": 218352}, {"caption": "a man cutting up a piece of meat with country music playing in the back", "video_id": "video12511", "sen_id": 218353}, {"caption": "a chef prepares a cooked roast on a cutting board for carving by untying it and cutting the string with his knife", "video_id": "video12511", "sen_id": 218354}, {"caption": "a man is preparing a type of meat that he cooked", "video_id": "video12511", "sen_id": 218355}, {"caption": "a person cutting a piece of string off of a piece of meat and taking it off", "video_id": "video12511", "sen_id": 218356}, {"caption": "a meat is on the table and man is getting ready to cut it", "video_id": "video12511", "sen_id": 218357}, {"caption": "on long wooden board meat is placed then its cut by knief", "video_id": "video12511", "sen_id": 218358}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12511", "sen_id": 218359}, {"caption": "man talks about movie scenes and a movie director", "video_id": "video11476", "sen_id": 218360}, {"caption": "a man in checks shirt angry with a girl in grey top", "video_id": "video11476", "sen_id": 218361}, {"caption": "a person giving a book to a girl sitting on table but she appears unhappy", "video_id": "video11476", "sen_id": 218362}, {"caption": "the man talks to the woman about the paper work", "video_id": "video11476", "sen_id": 218363}, {"caption": "girl in the room sits in front of the glass the man explains something to him", "video_id": "video11476", "sen_id": 218364}, {"caption": "a man hands a red book to a lady behind a counter", "video_id": "video11476", "sen_id": 218365}, {"caption": "a man in check shirt talking to his girlfriend", "video_id": "video11476", "sen_id": 218366}, {"caption": "a man tries to pursue his lady friend of something", "video_id": "video11476", "sen_id": 218367}, {"caption": "the man is giving the book to a woman sitting on the table", "video_id": "video11476", "sen_id": 218368}, {"caption": "a man gives a woman a stack of papers and then walks around to stand next to her", "video_id": "video11476", "sen_id": 218369}, {"caption": "a man handing the book to a girl may be a scene from a movie", "video_id": "video11476", "sen_id": 218370}, {"caption": "there is a check shirt man talking to his friend", "video_id": "video11476", "sen_id": 218371}, {"caption": "a man with a check shirt is handing over a book to a lady", "video_id": "video11476", "sen_id": 218372}, {"caption": "one man talking to another women", "video_id": "video11476", "sen_id": 218373}, {"caption": "a man in a checkered shirt talks across the desk to a woman", "video_id": "video11476", "sen_id": 218374}, {"caption": "a man and a woman are talking to each other", "video_id": "video11476", "sen_id": 218375}, {"caption": "there is a men and women fighting in a movie", "video_id": "video11476", "sen_id": 218376}, {"caption": "a man in a checkered shirt talking to a woman in a gray shirt sitting a counter in front of a mirror", "video_id": "video11476", "sen_id": 218377}, {"caption": "a man and a woman talk and look at paperwork in front of a large set of mirrors", "video_id": "video11476", "sen_id": 218378}, {"caption": "a man holding papers speaking to a woman and then gives her the papers", "video_id": "video11476", "sen_id": 218379}, {"caption": "a dalmatian dog meeting a minature pony in front of people", "video_id": "video12166", "sen_id": 218380}, {"caption": "a pony and a great dane are curious about each other", "video_id": "video12166", "sen_id": 218381}, {"caption": "a great dane dog sniffs a miniture horse", "video_id": "video12166", "sen_id": 218382}, {"caption": "dog and pony participated in some show and more people watching that", "video_id": "video12166", "sen_id": 218383}, {"caption": "a large dog and a small horse are shown in a room full of people", "video_id": "video12166", "sen_id": 218384}, {"caption": "a large black and white dog interacts with a miniature pony", "video_id": "video12166", "sen_id": 218385}, {"caption": "the white dog with black spots interacts with the beige pony at the event", "video_id": "video12166", "sen_id": 218386}, {"caption": "the dogs fashion show programm all dogs come with its owner", "video_id": "video12166", "sen_id": 218387}, {"caption": "a dalmation dog meets up with a pony", "video_id": "video12166", "sen_id": 218388}, {"caption": "there is a black and white playing with a small miniature horse while some people observe them", "video_id": "video12166", "sen_id": 218389}, {"caption": "a small horse and a puppy are engaging together with their owners", "video_id": "video12166", "sen_id": 218390}, {"caption": "a dog is smelling a small a horse", "video_id": "video12166", "sen_id": 218391}, {"caption": "a dalmatian dog sniffs a miniature pony while owners hold them", "video_id": "video12166", "sen_id": 218392}, {"caption": "different types and colors of dogs are brought here by some people", "video_id": "video12166", "sen_id": 218393}, {"caption": "a dalmatian dog and a miniature pony on leashes nuzzling each other", "video_id": "video12166", "sen_id": 218394}, {"caption": "a dog goes and kisses the small horse which was brought for the show", "video_id": "video12166", "sen_id": 218395}, {"caption": "a dog and a pony are accompanied by their owners and the animals are making nose contacts", "video_id": "video12166", "sen_id": 218396}, {"caption": "a dalmation dog and a pony are trying to be close", "video_id": "video12166", "sen_id": 218397}, {"caption": "a person holding a dog and the other person holding a horse both are standing in the same place with holding both animals and the animals are talking to each other", "video_id": "video12166", "sen_id": 218398}, {"caption": "a dog and a small horse are next to each other", "video_id": "video12166", "sen_id": 218399}, {"caption": "a man is manipulating a fish in a tank while a woman looks on", "video_id": "video12875", "sen_id": 218400}, {"caption": "a man describing how this fish uses its magnetic field", "video_id": "video12875", "sen_id": 218401}, {"caption": "a man rolls up his sleeve in a laboratoryplaces his hand in a tank moves a white tube outside a swimming black fish and is watched by a female colleague", "video_id": "video12875", "sen_id": 218402}, {"caption": "an inventor who performs test with fish and electricity", "video_id": "video12875", "sen_id": 218403}, {"caption": "a narrator speaks and a fish is seen in a tank as a man and woman stand by the man reaches in and encloses the fish in a cylindrical tube and out again", "video_id": "video12875", "sen_id": 218404}, {"caption": "there is a shirt man catching a fish from the aquarium", "video_id": "video12875", "sen_id": 218405}, {"caption": "a man and a woman in a lab studying the night fish", "video_id": "video12875", "sen_id": 218406}, {"caption": "a mechanical engineer and his assistant show a black fish that they re studying as a narrator describes the research", "video_id": "video12875", "sen_id": 218407}, {"caption": "a young man in blue rolls up his shirtsleeve and puts a white object into a fish tank for the fish to swim through", "video_id": "video12875", "sen_id": 218408}, {"caption": "a young man does experiments with fish in a tank", "video_id": "video12875", "sen_id": 218409}, {"caption": "a man in white shirt let the fish in the aquarium into a tube and a woman stands beside him", "video_id": "video12875", "sen_id": 218410}, {"caption": "a man reaches a bare arm into an aquarium holding a black fish while in a room with a woman a gray screen", "video_id": "video12875", "sen_id": 218411}, {"caption": "two people are researching the night fish in the lab", "video_id": "video12875", "sen_id": 218412}, {"caption": "a man sticks his hand into a tank and gets a fish to swim through a tube while a woman watches", "video_id": "video12875", "sen_id": 218413}, {"caption": "a man sticking his hand in a tank where a fish is that they are studying", "video_id": "video12875", "sen_id": 218414}, {"caption": "two persons are doing an experiment with a hollow tube in an aquarium", "video_id": "video12875", "sen_id": 218415}, {"caption": "ferris bueller is reaching in a fish tank trying to grab a fish", "video_id": "video12875", "sen_id": 218416}, {"caption": "a man in white shirt and a lady are studying knife fish in the labman puts an electric field in the tank where knife fish is there and experimenting", "video_id": "video12875", "sen_id": 218417}, {"caption": "a man is doing some research with fish in aquarium and another woman is watching it", "video_id": "video12875", "sen_id": 218418}, {"caption": "guy in shirt talking to the woman about the fish movement in the tank", "video_id": "video12875", "sen_id": 218419}, {"caption": "a man on a talk show discussing how he fell in love with his wife and how he is very charming", "video_id": "video12741", "sen_id": 218420}, {"caption": "actor matt damon is talking about how in love he is with his wife", "video_id": "video12741", "sen_id": 218421}, {"caption": "a man and woman are laughing together in an interview", "video_id": "video12741", "sen_id": 218422}, {"caption": "a famous actor explains why women cannot resist him", "video_id": "video12741", "sen_id": 218423}, {"caption": "a female actress interviews a male actor about his love life", "video_id": "video12741", "sen_id": 218424}, {"caption": "a man in cream sweater is talking to a women in black dress", "video_id": "video12741", "sen_id": 218425}, {"caption": "an actor explaining how he met his wife to an interviewer", "video_id": "video12741", "sen_id": 218426}, {"caption": "a man and a woman are speaking to each other the channel of the show is aol", "video_id": "video12741", "sen_id": 218427}, {"caption": "guy telling that he believes in love at first sight", "video_id": "video12741", "sen_id": 218428}, {"caption": "matt damon is asked if he believes in love at first time but he is not sure whether his wife reacted the same way to him as his female costars", "video_id": "video12741", "sen_id": 218429}, {"caption": "a smiling actor is discussing his film with a young woman", "video_id": "video12741", "sen_id": 218430}, {"caption": "matt damon talks about falling in love with his wife with a woman all set in front of a red curtain", "video_id": "video12741", "sen_id": 218431}, {"caption": "there is a man in a grey long sleeve shirt talking to a woman in a black dress", "video_id": "video12741", "sen_id": 218432}, {"caption": "an actor in grey discusses falling in love with wife to host in interview", "video_id": "video12741", "sen_id": 218433}, {"caption": "matt damon is discussing how he fell in love with his wife at first sight", "video_id": "video12741", "sen_id": 218434}, {"caption": "two attractive actors are discussing things in front of a red curtain", "video_id": "video12741", "sen_id": 218435}, {"caption": "matt damon is giving an interview on the current state of affair with his wife", "video_id": "video12741", "sen_id": 218436}, {"caption": "an interview with matt damon about love at first sight", "video_id": "video12741", "sen_id": 218437}, {"caption": "an actor in grey sweater discusses meeting his wife with interviewer with red drape backdrop", "video_id": "video12741", "sen_id": 218438}, {"caption": "a man on the tv is talking about some thing", "video_id": "video12741", "sen_id": 218439}, {"caption": "a woman wearing a red top sits by a console in front of bluish screens in a production control room", "video_id": "video10873", "sen_id": 218440}, {"caption": "a woman is sitting at the computer talking about it", "video_id": "video10873", "sen_id": 218441}, {"caption": "a woman in a red shirt reviews news reports on syria", "video_id": "video10873", "sen_id": 218442}, {"caption": "a woman in red sits in front of several computer screens", "video_id": "video10873", "sen_id": 218443}, {"caption": "a woman in a red shirt talking about russian media outlets", "video_id": "video10873", "sen_id": 218444}, {"caption": "there is a woman in red dressing talking in front of a display", "video_id": "video10873", "sen_id": 218445}, {"caption": "a man wearing red color dress is talking", "video_id": "video10873", "sen_id": 218446}, {"caption": "a lady is explaining and talking about the screens in front of her", "video_id": "video10873", "sen_id": 218447}, {"caption": "a woman sitting at a desk with three monitors", "video_id": "video10873", "sen_id": 218448}, {"caption": "a girl in red dress color wearing cloths sitting speaking and television screen beside displaying on screen", "video_id": "video10873", "sen_id": 218449}, {"caption": "a newscaster is talking about both russia s and the united states policies regarding syria", "video_id": "video10873", "sen_id": 218450}, {"caption": "a woman in a red shirt sits at a wide bank of computers", "video_id": "video10873", "sen_id": 218451}, {"caption": "a lady in front of few computers explains how to relay the news", "video_id": "video10873", "sen_id": 218452}, {"caption": "a woman in red blouse in front of many monitors in news room discusses international events", "video_id": "video10873", "sen_id": 218453}, {"caption": "a woman in a red top is looking at 3 computer monitors and discussing relations between syria the united states and russia", "video_id": "video10873", "sen_id": 218454}, {"caption": "a woman in a red shit is chatting behind a sound board", "video_id": "video10873", "sen_id": 218455}, {"caption": "a woman wearing a red shirt explains a complex news reporting system", "video_id": "video10873", "sen_id": 218456}, {"caption": "a girl wearing red dress talking something in media", "video_id": "video10873", "sen_id": 218457}, {"caption": "a woman in red talks while sitting in a chair at a desk with three computer screens on it", "video_id": "video10873", "sen_id": 218458}, {"caption": "a woman shows screens displaying clips from prominent news channels while summarizing their messages - that the american policy in syria has failed", "video_id": "video10873", "sen_id": 218459}, {"caption": "a young con artist forges checks to the tune of 13 million dollars", "video_id": "video12550", "sen_id": 218460}, {"caption": "a con-artist is being chased by the fbi and his mother offered to pay back the money he owes", "video_id": "video12550", "sen_id": 218461}, {"caption": "a woman writing a check to a man in her doorway", "video_id": "video12550", "sen_id": 218462}, {"caption": "a preview of a movie starring actors leonardo dicaprio and tom hanks", "video_id": "video12550", "sen_id": 218463}, {"caption": "a man and a woman talk about the actions of another man", "video_id": "video12550", "sen_id": 218464}, {"caption": "commercial for catch me now staring tom hanks", "video_id": "video12550", "sen_id": 218465}, {"caption": "in a scene from a movie about a con artist tom hanks and leonardo dicaprio act out their parts", "video_id": "video12550", "sen_id": 218466}, {"caption": "movie trailer staring leonardo decaprio showing him trying to cash a check and then speaking to a bunch of women", "video_id": "video12550", "sen_id": 218467}, {"caption": "a man presents a check to a teller for cash", "video_id": "video12550", "sen_id": 218468}, {"caption": "a movie clip of men in suits from the 1950s being chased", "video_id": "video12550", "sen_id": 218469}, {"caption": "leonardo dicaprio and tom hanks both speak to women", "video_id": "video12550", "sen_id": 218470}, {"caption": "a man talking to a woman about money a man cashing a check and another man making a presentation to a group of woman", "video_id": "video12550", "sen_id": 218471}, {"caption": "a man and a woman talking to each other", "video_id": "video12550", "sen_id": 218472}, {"caption": "scenes of a movie starring leonardo dicaprio and tom hanks", "video_id": "video12550", "sen_id": 218473}, {"caption": "a movie clip staring the celebrity leon di capri a lady hands him three hundred dollars in the scene", "video_id": "video12550", "sen_id": 218474}, {"caption": "a man wearing black color dress is counting dollars", "video_id": "video12550", "sen_id": 218475}, {"caption": "a man is behind bars a lady comes forward to speak to a man", "video_id": "video12550", "sen_id": 218476}, {"caption": "a man is at the bank counter exchanging cheque for cash", "video_id": "video12550", "sen_id": 218477}, {"caption": "a video of movie video scene aeroplane and lady holding rupees in hand speaking with old man group of girls sitting on chairs displaying on screen", "video_id": "video12550", "sen_id": 218478}, {"caption": "some of the clips from a movie to advertise", "video_id": "video12550", "sen_id": 218479}, {"caption": "someone falls from their horse in slow motion", "video_id": "video11184", "sen_id": 218480}, {"caption": "slow motion video of a horse knocking a person off of it", "video_id": "video11184", "sen_id": 218481}, {"caption": "in a snowy area a horse kicks a man in his head violently and runs off", "video_id": "video11184", "sen_id": 218482}, {"caption": "a person falls off a horse and the horse kicks the person in the head", "video_id": "video11184", "sen_id": 218483}, {"caption": "a young brown horse bucks and then kicks her rider across a snowy field", "video_id": "video11184", "sen_id": 218484}, {"caption": "a man is thrown down by the horse and kicked on his face", "video_id": "video11184", "sen_id": 218485}, {"caption": "a horse on very angry kicking someone on the ground", "video_id": "video11184", "sen_id": 218486}, {"caption": "some horse sounds are very scary to feel", "video_id": "video11184", "sen_id": 218487}, {"caption": "a horse kicking a person and running displaying on screen", "video_id": "video11184", "sen_id": 218488}, {"caption": "a person getting kicked by the horse after falling down", "video_id": "video11184", "sen_id": 218489}, {"caption": "a person on the ground is kicked in the head by a horse in slow motion", "video_id": "video11184", "sen_id": 218490}, {"caption": "a horse kicks a man in the face knocking him over then runs away", "video_id": "video11184", "sen_id": 218491}, {"caption": "a woman is being thrown from a horse and kicked while she is on the ground", "video_id": "video11184", "sen_id": 218492}, {"caption": "a man is thrown in the snow from a horse", "video_id": "video11184", "sen_id": 218493}, {"caption": "a video of a horse that kicked a person in the head", "video_id": "video11184", "sen_id": 218494}, {"caption": "showing a horse kicking at a man that has fell to the ground", "video_id": "video11184", "sen_id": 218495}, {"caption": "a slow motion video of someone being thrown from and then kicked by a horse", "video_id": "video11184", "sen_id": 218496}, {"caption": "a horse runs free and knocks down a person to the ground", "video_id": "video11184", "sen_id": 218497}, {"caption": "woman seen falling from horse after which the horse turns around and hits the woman with its back leg", "video_id": "video11184", "sen_id": 218498}, {"caption": "some horses are wandering around outside", "video_id": "video11184", "sen_id": 218499}, {"caption": "a man in a hat takes the mic and begins to speak at an outside gathering", "video_id": "video12855", "sen_id": 218500}, {"caption": "two children run across flat grassy ground followed by a brown-and-white dog toward a pond on a sunny day adults and children gather under the shaded roof of an open structure with columns while a man speaks into a hand-held microphone", "video_id": "video12855", "sen_id": 218501}, {"caption": "two men standing at a pa station in a park and one starts talking about a lion that is loose in the park", "video_id": "video12855", "sen_id": 218502}, {"caption": "an urgent announcement made that the lion that was being trained is now loose in the park", "video_id": "video12855", "sen_id": 218503}, {"caption": "a large group of people are having an outdoor picnic in a covered facility", "video_id": "video12855", "sen_id": 218504}, {"caption": "a man in blue give other man mic to make announcement", "video_id": "video12855", "sen_id": 218505}, {"caption": "students on a field trip listen to a park ranger talk about the lions", "video_id": "video12855", "sen_id": 218506}, {"caption": "children have fun outside at a park pavillion", "video_id": "video12855", "sen_id": 218507}, {"caption": "a man wearing a cowboy hat is speaking into a microphone", "video_id": "video12855", "sen_id": 218508}, {"caption": "many people gathered to attend some program in the hall", "video_id": "video12855", "sen_id": 218509}, {"caption": "lots of people waiting patiently for the programme to start", "video_id": "video12855", "sen_id": 218510}, {"caption": "a dog follow the two children on the grassland and other side many peoples standing", "video_id": "video12855", "sen_id": 218511}, {"caption": "two people are talking to each other in a open room", "video_id": "video12855", "sen_id": 218512}, {"caption": "there is a man taking photos with a camera", "video_id": "video12855", "sen_id": 218513}, {"caption": "men are speaking into a mic at gathering of people outside", "video_id": "video12855", "sen_id": 218514}, {"caption": "a man in a blue shirt with a microphone is talking about a lion", "video_id": "video12855", "sen_id": 218515}, {"caption": "a crowd of people are under a building", "video_id": "video12855", "sen_id": 218516}, {"caption": "multiple people are standing under a a roof a man is walking and talking with a microphone", "video_id": "video12855", "sen_id": 218517}, {"caption": "two men speak into a microphone to get the attention of a large crowd", "video_id": "video12855", "sen_id": 218518}, {"caption": "some people are running around a field", "video_id": "video12855", "sen_id": 218519}, {"caption": "a man is teaching players how to play basketball", "video_id": "video10632", "sen_id": 218520}, {"caption": "a man talking to basketball players on a court about the pick and roll", "video_id": "video10632", "sen_id": 218521}, {"caption": "a group of men practicing basketball on the court", "video_id": "video10632", "sen_id": 218522}, {"caption": "a group of people are practicing basketball together", "video_id": "video10632", "sen_id": 218523}, {"caption": "a basketball coach discusses how to run a play with his team", "video_id": "video10632", "sen_id": 218524}, {"caption": "a coach giving instruction to the players at a basketball court", "video_id": "video10632", "sen_id": 218525}, {"caption": "coach training youngsters how to pass the ball in a basket ball match", "video_id": "video10632", "sen_id": 218526}, {"caption": "a basketball coach describes a play he has been demonstrating for his team", "video_id": "video10632", "sen_id": 218527}, {"caption": "the coach is explaining technics to the basketball players", "video_id": "video10632", "sen_id": 218528}, {"caption": "the coach tells the basketball players how to run a play", "video_id": "video10632", "sen_id": 218529}, {"caption": "there is a basket ball coach speaking to players", "video_id": "video10632", "sen_id": 218530}, {"caption": "a group of men are tossing a basketball in a gym while a man directs", "video_id": "video10632", "sen_id": 218531}, {"caption": "inside a basketball gym a coach wearing all black clothes is explaining a play to 4 players", "video_id": "video10632", "sen_id": 218532}, {"caption": "on a basketball ground a man with black dress talking and four players listening it", "video_id": "video10632", "sen_id": 218533}, {"caption": "the coach tells the basketball players what they just did wrong", "video_id": "video10632", "sen_id": 218534}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video10632", "sen_id": 218535}, {"caption": "basket ball coach explaining facts to players during training session", "video_id": "video10632", "sen_id": 218536}, {"caption": "guys plays basket ball and an instructor in black shirt teaches the boys a boy wear green shoes", "video_id": "video10632", "sen_id": 218537}, {"caption": "a team of teenagers are playing basketball on a court", "video_id": "video10632", "sen_id": 218538}, {"caption": "some people are standing on a court and talking", "video_id": "video10632", "sen_id": 218539}, {"caption": "three female lions lounging in a green field are confronted by an animal with its mouth wide open and the lions back away in fear", "video_id": "video12322", "sen_id": 218540}, {"caption": "a nature show is meshed with a rap song showing a small animal scaring off a lion", "video_id": "video12322", "sen_id": 218541}, {"caption": "a ground hog comes out of a hole and backs off a lioness", "video_id": "video12322", "sen_id": 218542}, {"caption": "a nature show is meshed with a rap song showing a small animal scaring off a lion", "video_id": "video12322", "sen_id": 218543}, {"caption": "a female lion is being pushed back and attacked by a significantly smaller creature", "video_id": "video12322", "sen_id": 218544}, {"caption": "a lioness being intimated by a smaller animal", "video_id": "video12322", "sen_id": 218545}, {"caption": "a group of smaller animals scared a pride of lions out in the wild", "video_id": "video12322", "sen_id": 218546}, {"caption": "a lion is outside being scared by a small tailed animal in the grass", "video_id": "video12322", "sen_id": 218547}, {"caption": "the mongoose tries to attack the lion and moves the lion backward", "video_id": "video12322", "sen_id": 218548}, {"caption": "a weasel bullying a female lion the lion is unsure and backing away", "video_id": "video12322", "sen_id": 218549}, {"caption": "a little critter attacks a lion and makes it walk backwards", "video_id": "video12322", "sen_id": 218550}, {"caption": "a lion outside is standing in the grass", "video_id": "video12322", "sen_id": 218551}, {"caption": "a lion is being approached by a much smaller animal seeming intimated", "video_id": "video12322", "sen_id": 218552}, {"caption": "loins are on the forest", "video_id": "video12322", "sen_id": 218553}, {"caption": "a small goose opposes the lion and lion get back", "video_id": "video12322", "sen_id": 218554}, {"caption": "a badger chases a small lion backwards in a green grassed field", "video_id": "video12322", "sen_id": 218555}, {"caption": "a lion is scared and backing away from a smaller brown animal in a field", "video_id": "video12322", "sen_id": 218556}, {"caption": "two lions in the a grassy field are frightened by a smaller animal that has came from within the ground as a third lion approaches", "video_id": "video12322", "sen_id": 218557}, {"caption": "a scene on grassland with a pride of lions whereby a much smaller animal is intimidating one of the lions making him back away", "video_id": "video12322", "sen_id": 218558}, {"caption": " ferret-like animal scares away a lion while rap music is set over the scene", "video_id": "video12322", "sen_id": 218559}, {"caption": "a man in a purple shirt is interview another man in a light blue shirt", "video_id": "video12319", "sen_id": 218560}, {"caption": "two men in a lab talk about students' activities", "video_id": "video12319", "sen_id": 218561}, {"caption": "two men discuss an experiement that is being performed in a small lab", "video_id": "video12319", "sen_id": 218562}, {"caption": "two blue shirt men are talking in a laboratory", "video_id": "video12319", "sen_id": 218563}, {"caption": "a man in a purple short sleeve shirt is questioning a male teacher in a blue shirt about his class", "video_id": "video12319", "sen_id": 218564}, {"caption": "a blue shirt man talking with a person", "video_id": "video12319", "sen_id": 218565}, {"caption": "two men wearing different shades of blue shirts stand in front of a moving machine and discuss college students", "video_id": "video12319", "sen_id": 218566}, {"caption": "a man in a light blue is shirt is asking the other man questions", "video_id": "video12319", "sen_id": 218567}, {"caption": "a man is talking to another man about what students are doing", "video_id": "video12319", "sen_id": 218568}, {"caption": "two persons in blue dresses color cloth wearing standing inside laboratary beside speaking on topic displaying on screen", "video_id": "video12319", "sen_id": 218569}, {"caption": "a man in a purple shirt is having a conversation with a man in a blue shirt", "video_id": "video12319", "sen_id": 218570}, {"caption": "two men discuss innovation in a laboratory setting", "video_id": "video12319", "sen_id": 218571}, {"caption": "a man in a purple polo talks with his hands to a man in a light blue shirt about their partners in a laboratory", "video_id": "video12319", "sen_id": 218572}, {"caption": "a man in a light blue shirt is being asked a question by a man in a dark purple shirt", "video_id": "video12319", "sen_id": 218573}, {"caption": "a man describes efforts to combine innovative technology with education", "video_id": "video12319", "sen_id": 218574}, {"caption": "a person explains about his experience of the company to a interviewer", "video_id": "video12319", "sen_id": 218575}, {"caption": "a man in a dress shirt is talking to another man in a blue shirt they are inside", "video_id": "video12319", "sen_id": 218576}, {"caption": "a person in a blue t-shirt talking with another person and explaining about something", "video_id": "video12319", "sen_id": 218577}, {"caption": "two men are having conversation in the office", "video_id": "video12319", "sen_id": 218578}, {"caption": "a couple of men in a room are talking", "video_id": "video12319", "sen_id": 218579}, {"caption": "a man is asking a girl if she can twerk while he plays a video game", "video_id": "video12889", "sen_id": 218580}, {"caption": "a player hunts for an enemy while talking to other players", "video_id": "video12889", "sen_id": 218581}, {"caption": "a man plays a first person shooter while talking to friends", "video_id": "video12889", "sen_id": 218582}, {"caption": "a player points a gun and runs around on a boat in a first person shooter game", "video_id": "video12889", "sen_id": 218583}, {"caption": "a video game walkthru of a first person shooter video game", "video_id": "video12889", "sen_id": 218584}, {"caption": "a player navigates through a home in a first person shooter", "video_id": "video12889", "sen_id": 218585}, {"caption": "its a animated shooting video game", "video_id": "video12889", "sen_id": 218586}, {"caption": "a person is shooting with gun in his hand", "video_id": "video12889", "sen_id": 218587}, {"caption": "a man is playing a video game and talking about it", "video_id": "video12889", "sen_id": 218588}, {"caption": "a person with a video gun goes in different rooms of a ship", "video_id": "video12889", "sen_id": 218589}, {"caption": "someone is playing a call of duty video game", "video_id": "video12889", "sen_id": 218590}, {"caption": "there is a commando fighting against enemies", "video_id": "video12889", "sen_id": 218591}, {"caption": "people are talking while playing a combat video game", "video_id": "video12889", "sen_id": 218592}, {"caption": "a group of vulgar young people play a video game together", "video_id": "video12889", "sen_id": 218593}, {"caption": "different types of computerized machines and robots are moving here and there", "video_id": "video12889", "sen_id": 218594}, {"caption": "someone is playing a first person video game", "video_id": "video12889", "sen_id": 218595}, {"caption": "there is a gun aiming a particular place", "video_id": "video12889", "sen_id": 218596}, {"caption": "video game shooting fire game is play by man makes it", "video_id": "video12889", "sen_id": 218597}, {"caption": "a group of vulgar youth talk while they are playing a video game", "video_id": "video12889", "sen_id": 218598}, {"caption": "people talk about twerking while playing a video game", "video_id": "video12889", "sen_id": 218599}, {"caption": "a small sea vehicle is hanging on the side of a ship", "video_id": "video12124", "sen_id": 218600}, {"caption": "white machine submersible being lowered into the ocean", "video_id": "video12124", "sen_id": 218601}, {"caption": "a man describes a new submersible created by graham hawkes", "video_id": "video12124", "sen_id": 218602}, {"caption": "a small submersible is being held aloft the hull of a ship", "video_id": "video12124", "sen_id": 218603}, {"caption": "a man is talking about the person who invented different types of boats", "video_id": "video12124", "sen_id": 218604}, {"caption": "a new model of submarine is shown with it's inventor", "video_id": "video12124", "sen_id": 218605}, {"caption": "a man talking a vehicle called a water craft", "video_id": "video12124", "sen_id": 218606}, {"caption": "a man describing the deep flight super falcon a sea ready vehicle components and features", "video_id": "video12124", "sen_id": 218607}, {"caption": "a man wearing a white shirt standing on a boat", "video_id": "video12124", "sen_id": 218608}, {"caption": "an image of a submersible boat is shown and then switches to a picture of another submersible while a narrarator speaks about the creator", "video_id": "video12124", "sen_id": 218609}, {"caption": "a man narrates the career and projects of a man with a background in various nautical activities", "video_id": "video12124", "sen_id": 218610}, {"caption": "an underwater engineer upgraded a submersible machine", "video_id": "video12124", "sen_id": 218611}, {"caption": "a man stands next to a submersible watercraft that he invented", "video_id": "video12124", "sen_id": 218612}, {"caption": "there are some boys standing in a ship", "video_id": "video12124", "sen_id": 218613}, {"caption": "a man explains something about the boat on the sea side", "video_id": "video12124", "sen_id": 218614}, {"caption": "a man is talking about another man who is a marine engineer and has designed submersibles", "video_id": "video12124", "sen_id": 218615}, {"caption": "the person explain about how hogg s desings submarines for gas and military industries for his entire life", "video_id": "video12124", "sen_id": 218616}, {"caption": "a marine biologists creation which is a watercraft is being shown", "video_id": "video12124", "sen_id": 218617}, {"caption": "some people are lifting an aeroplane by crane from sea side", "video_id": "video12124", "sen_id": 218618}, {"caption": "in the ship a person in white standing and holding the mini flight", "video_id": "video12124", "sen_id": 218619}, {"caption": "a man rides a bike with glowing wheels", "video_id": "video12924", "sen_id": 218620}, {"caption": "a man riding a bike with lighted spokes at high speed", "video_id": "video12924", "sen_id": 218621}, {"caption": "a man wearing black shorts and a purple top rides a bicycle around a city plaza with bright glowing patterns over the wheels of stars swirls and shapes", "video_id": "video12924", "sen_id": 218622}, {"caption": "a man in a purple shirt riding a mountain bike", "video_id": "video12924", "sen_id": 218623}, {"caption": "an animated graphic showing a man riding a bike outside with decorative wheels", "video_id": "video12924", "sen_id": 218624}, {"caption": "a man with colourful cycle wheel is taking a ride in street", "video_id": "video12924", "sen_id": 218625}, {"caption": "a cyclist drives a bicycle where the wheels are illuminated with different kind of lights", "video_id": "video12924", "sen_id": 218626}, {"caption": "a man is riding a bike with wheels that light up", "video_id": "video12924", "sen_id": 218627}, {"caption": "man riding a bike with fancy light in the wheels", "video_id": "video12924", "sen_id": 218628}, {"caption": "guy riding a new bike with light show on the wheels", "video_id": "video12924", "sen_id": 218629}, {"caption": "there is a guy riding cycle in to the street", "video_id": "video12924", "sen_id": 218630}, {"caption": "a man cycling a cycle with lightning wheels cycling very fastly", "video_id": "video12924", "sen_id": 218631}, {"caption": "light up bicycle wheels are demonstrated by a young man who is riding at a very fast pace", "video_id": "video12924", "sen_id": 218632}, {"caption": "a boy in blue dress ryding a bycycle on the road side fast", "video_id": "video12924", "sen_id": 218633}, {"caption": "a man is riding a bicycle around town with the wheels lit up", "video_id": "video12924", "sen_id": 218634}, {"caption": "a boy is wearing purple tshirt and he is riding a bicycle", "video_id": "video12924", "sen_id": 218635}, {"caption": "man cycling in a city with lightening wheels maker faire siggraph dragon s den & museums", "video_id": "video12924", "sen_id": 218636}, {"caption": "a man ride his bicycle outside with some interesting designs on the wheels", "video_id": "video12924", "sen_id": 218637}, {"caption": "a boy riding a bycycle wearing black dress on road", "video_id": "video12924", "sen_id": 218638}, {"caption": "a person wearing purple t-shirt riding a bicycle on the road", "video_id": "video12924", "sen_id": 218639}, {"caption": "in a rugby game a man in black carries the ball down the sidelines for a score", "video_id": "video12522", "sen_id": 218640}, {"caption": "a man in a blue shirt is running a bowl down a field", "video_id": "video12522", "sen_id": 218641}, {"caption": "soccer players falling over each other trying to score a goal", "video_id": "video12522", "sen_id": 218642}, {"caption": "members of two teams chase after a white ball which is scooped up by a player in a black uniform and carried across a white line where he falls and quickly gets up", "video_id": "video12522", "sen_id": 218643}, {"caption": "a soccer player running over players trying to run the ball to goal", "video_id": "video12522", "sen_id": 218644}, {"caption": "two teams of male players wearing black and white uniforms play soccer on a green grassy field", "video_id": "video12522", "sen_id": 218645}, {"caption": "a rugby player running the ball over the end line", "video_id": "video12522", "sen_id": 218646}, {"caption": "two teams of rugby players are involved in a match in a large stadium", "video_id": "video12522", "sen_id": 218647}, {"caption": "a rugby player running a ball over the end line", "video_id": "video12522", "sen_id": 218648}, {"caption": "a man in a dark shirt scoring in a rugby match", "video_id": "video12522", "sen_id": 218649}, {"caption": "a man in a dark uniform scoring in rugby", "video_id": "video12522", "sen_id": 218650}, {"caption": "a song plays while seeing the replay of a soccer match", "video_id": "video12522", "sen_id": 218651}, {"caption": "a professional rugby player runs with the ball while the other team chases him on a field", "video_id": "video12522", "sen_id": 218652}, {"caption": "two teams of rugby players meet in a match in a large stadium", "video_id": "video12522", "sen_id": 218653}, {"caption": "a man is playing in a sports game and there is music in the background", "video_id": "video12522", "sen_id": 218654}, {"caption": "in a rugby game a man wearing a black white-collared shirt powers past opposing players wearing all white uniforms before making it to the endzone", "video_id": "video12522", "sen_id": 218655}, {"caption": "a group of players wears white and black dress trying to catch the ball", "video_id": "video12522", "sen_id": 218656}, {"caption": "a rugby player jukes a player and runs into the endzone for the score", "video_id": "video12522", "sen_id": 218657}, {"caption": "the black shirt team is playing well than the white shirt team in the rugby ball game", "video_id": "video12522", "sen_id": 218658}, {"caption": "some people are playing rugby on a field", "video_id": "video12522", "sen_id": 218659}, {"caption": "a red car speeding down a roadway with blinker on", "video_id": "video12927", "sen_id": 218660}, {"caption": "a red car is driving down the road and starts to turn left", "video_id": "video12927", "sen_id": 218661}, {"caption": "a car with its left turn signal on driving down a street", "video_id": "video12927", "sen_id": 218662}, {"caption": "a car going down the road with turning indicator on", "video_id": "video12927", "sen_id": 218663}, {"caption": "and old time convertible car rides down the road", "video_id": "video12927", "sen_id": 218664}, {"caption": "a maroon jeep convertible drives following behind a cement mixer", "video_id": "video12927", "sen_id": 218665}, {"caption": "there is a car moving behind a truck", "video_id": "video12927", "sen_id": 218666}, {"caption": "red color jeep going on a road another car coming forward", "video_id": "video12927", "sen_id": 218667}, {"caption": "on a four lane road through a suburban area a mixer truck is followed by a maroon car with black convertible top", "video_id": "video12927", "sen_id": 218668}, {"caption": "a maroon volkswagen thing driving down the busy street", "video_id": "video12927", "sen_id": 218669}, {"caption": "a old little dark red in black car with somebody driving down the road", "video_id": "video12927", "sen_id": 218670}, {"caption": "there is a truck moving in front of a car", "video_id": "video12927", "sen_id": 218671}, {"caption": "a maroon jeep like vehicle is driving down a small decline with a big truck in front and behind it the maroon vehicle has its left directional on", "video_id": "video12927", "sen_id": 218672}, {"caption": "a red colored old vehicle is passing on the road followed heavy truck", "video_id": "video12927", "sen_id": 218673}, {"caption": "the gipsy on road and other vehicles are there moving fast", "video_id": "video12927", "sen_id": 218674}, {"caption": "aa red car is moving on the road then it comes to a dock", "video_id": "video12927", "sen_id": 218675}, {"caption": "a olden days model car going on the highway between two trucks while its left indicator is glowing", "video_id": "video12927", "sen_id": 218676}, {"caption": "a man explaining about the vehicles riding on the road", "video_id": "video12927", "sen_id": 218677}, {"caption": "a four wheeler vehicles are driving on the road", "video_id": "video12927", "sen_id": 218678}, {"caption": "a red vehicle with a black top is following a cement mixer down the street before turning left", "video_id": "video12927", "sen_id": 218679}, {"caption": "a woman is unhappy about having her head shaved", "video_id": "video11245", "sen_id": 218680}, {"caption": "a woman is crying as she has her hair shaved off", "video_id": "video11245", "sen_id": 218681}, {"caption": "a woman's dark hair is being shaved completed bald", "video_id": "video11245", "sen_id": 218682}, {"caption": "a woman's head is shaved with a straight razor by a group of older women", "video_id": "video11245", "sen_id": 218683}, {"caption": "a man with a long mustache and a small girl having her hair cut off", "video_id": "video11245", "sen_id": 218684}, {"caption": "a man talking to a group of people and a woman getting her hair cut", "video_id": "video11245", "sen_id": 218685}, {"caption": "a man in a mustache and women crying as they getting their heads shaved bald", "video_id": "video11245", "sen_id": 218686}, {"caption": "a man with a huge mustache watches a woman get her head shaved", "video_id": "video11245", "sen_id": 218687}, {"caption": "a movie scene showing a lady being made bald by shaving her all hairs as crowd of people around looks on", "video_id": "video11245", "sen_id": 218688}, {"caption": "movie scene from a tamil movie women giving bath and saving her hair", "video_id": "video11245", "sen_id": 218689}, {"caption": "a woman is doused in water while a crowd cheers", "video_id": "video11245", "sen_id": 218690}, {"caption": "a women is crying as her is been cut", "video_id": "video11245", "sen_id": 218691}, {"caption": "the villain speaking and the widow woman is being shaved her head as a ritual", "video_id": "video11245", "sen_id": 218692}, {"caption": "one man punish the young lady to tonsure", "video_id": "video11245", "sen_id": 218693}, {"caption": "a man is removing hairs on head to a woman and all others woman are watching it", "video_id": "video11245", "sen_id": 218694}, {"caption": "a man with mustache watching a female getting bald", "video_id": "video11245", "sen_id": 218695}, {"caption": "hey man wearing a white shirt and a big mustache just watching a person get his haircut", "video_id": "video11245", "sen_id": 218696}, {"caption": "the video shows a woman is washed in her hair hen someone clipped her hair with a razor", "video_id": "video11245", "sen_id": 218697}, {"caption": "a scene of a tamil film is playing", "video_id": "video11245", "sen_id": 218698}, {"caption": "a woman getting liquid thrown on her and her hair cut", "video_id": "video11245", "sen_id": 218699}, {"caption": "a beautiful person is in the bathroom putting on make up", "video_id": "video11039", "sen_id": 218700}, {"caption": "a woman in a peach colored hijab applying makeup in front of a mirror", "video_id": "video11039", "sen_id": 218701}, {"caption": "a woman with a pink head scarf applies her makeup", "video_id": "video11039", "sen_id": 218702}, {"caption": "a woman with a turban applying makeup using a sponge", "video_id": "video11039", "sen_id": 218703}, {"caption": "see how these muslim women are redefining the beauty movement while still wearing the hajib", "video_id": "video11039", "sen_id": 218704}, {"caption": "a women is applying make-up and doing her eyebrows seeing the mirror", "video_id": "video11039", "sen_id": 218705}, {"caption": "a woman with a peach colored headcover is putting on makeup with a pencil", "video_id": "video11039", "sen_id": 218706}, {"caption": "a woman who is wearing pink applies makeup", "video_id": "video11039", "sen_id": 218707}, {"caption": "a woman applying make up while wearing a pink hijab", "video_id": "video11039", "sen_id": 218708}, {"caption": "a lovely woman in a traditional hair covering is applying some blush and eyebrow pencil to her already made up face", "video_id": "video11039", "sen_id": 218709}, {"caption": "a lady with a pink head covering is using make up products on her face", "video_id": "video11039", "sen_id": 218710}, {"caption": "a girl put make up to her face using the eyebrow pencils", "video_id": "video11039", "sen_id": 218711}, {"caption": "a woman unsuccessfully tries to hide her mustache with makeup", "video_id": "video11039", "sen_id": 218712}, {"caption": "beautiful lady is doing her make up in front of the mirror", "video_id": "video11039", "sen_id": 218713}, {"caption": "a women is doing make up", "video_id": "video11039", "sen_id": 218714}, {"caption": "a muslim lady touches her face with a powder pad and darken her eyebrows with a eyeliner", "video_id": "video11039", "sen_id": 218715}, {"caption": "this young lady who has a head covered with a traditional scarf is applying finishing touches to her make up", "video_id": "video11039", "sen_id": 218716}, {"caption": "a young woman demonstrates her technique for applying makeup to her face", "video_id": "video11039", "sen_id": 218717}, {"caption": "a girl takes makeup with a pop with her face powder and then give finish touch to her eye line", "video_id": "video11039", "sen_id": 218718}, {"caption": "a muslim terrorist is putting on her best suicide makeup", "video_id": "video11039", "sen_id": 218719}, {"caption": "a heavy round object bounces across curved white lines in a field while an official pulls a tape measure and another contestant prepares to throw", "video_id": "video12908", "sen_id": 218720}, {"caption": "guys are competing in shot put at a park in front of a crowd", "video_id": "video12908", "sen_id": 218721}, {"caption": "a person is wearing blue uniform and getting ready to throw a metal ball", "video_id": "video12908", "sen_id": 218722}, {"caption": "a person in white shirt and hat is walking along the athletic track as other athletes are preparing for their event", "video_id": "video12908", "sen_id": 218723}, {"caption": "athelets stand on the field and prepare to do an event where throw a ball", "video_id": "video12908", "sen_id": 218724}, {"caption": "a player is thrown the ball in the ground", "video_id": "video12908", "sen_id": 218725}, {"caption": "an athletic competition which involves discuss throw is taking place in a ground", "video_id": "video12908", "sen_id": 218726}, {"caption": "a man throws a shot put then has the distance measured", "video_id": "video12908", "sen_id": 218727}, {"caption": "men play sports on the field and throw balls", "video_id": "video12908", "sen_id": 218728}, {"caption": "a sports event an athlete is throwing heavy ball", "video_id": "video12908", "sen_id": 218729}, {"caption": "a video shows a man in a shot putting competition", "video_id": "video12908", "sen_id": 218730}, {"caption": "one strong sports man throwing shotput very fast", "video_id": "video12908", "sen_id": 218731}, {"caption": "a game is being played while people watch", "video_id": "video12908", "sen_id": 218732}, {"caption": "judges are measuring how far an athlete threw a ball during an athletic event", "video_id": "video12908", "sen_id": 218733}, {"caption": "a game is being filmed where people toss a ball at the goal", "video_id": "video12908", "sen_id": 218734}, {"caption": "a blue tshirt person throwing shot-put", "video_id": "video12908", "sen_id": 218735}, {"caption": "shotput one strong man throw that steelball very fastly", "video_id": "video12908", "sen_id": 218736}, {"caption": "a man in a blue jump suit warms up to compete in a sporting event", "video_id": "video12908", "sen_id": 218737}, {"caption": "the distance of shotput throw achieved by the lady in blue dress is measured by somebody looking like her coach", "video_id": "video12908", "sen_id": 218738}, {"caption": "some people are playing sports out side", "video_id": "video12908", "sen_id": 218739}, {"caption": "a woman being interrupted by squeaky boots on men", "video_id": "video11433", "sen_id": 218740}, {"caption": "a woman makes a speaking presentation about boxer briefs", "video_id": "video11433", "sen_id": 218741}, {"caption": "a commercial that is about boxer briefs from fruit of the loom", "video_id": "video11433", "sen_id": 218742}, {"caption": "a woman presents a bar graph as men in clear pants walk by", "video_id": "video11433", "sen_id": 218743}, {"caption": "low rider boxer breifs are being tested as an ad executive gives a presentation", "video_id": "video11433", "sen_id": 218744}, {"caption": "a woman explain about a graph in a classroom", "video_id": "video11433", "sen_id": 218745}, {"caption": "the woman wearing the blue dress talks in front of a group", "video_id": "video11433", "sen_id": 218746}, {"caption": "a woman gives a presentation to a group of people in an office", "video_id": "video11433", "sen_id": 218747}, {"caption": "a girl in a jean dress stands in an office giving a presentation", "video_id": "video11433", "sen_id": 218748}, {"caption": "a woman is in the middle of a boxer brief meeting when men in clear plastic pants walk through the hall with their pants squeaking and interrupt her", "video_id": "video11433", "sen_id": 218749}, {"caption": "there is a man walking in front of a man", "video_id": "video11433", "sen_id": 218750}, {"caption": "a woman gives a presentation to a boardroom on boxer briefs while men wearing boxer briefs and clear plastic pants walk by in the hallway", "video_id": "video11433", "sen_id": 218751}, {"caption": "a lady explaining some thing on bit", "video_id": "video11433", "sen_id": 218752}, {"caption": "it is a girl giving a presentation with distractions", "video_id": "video11433", "sen_id": 218753}, {"caption": "a young woman gives a presentation while funny guys walk by", "video_id": "video11433", "sen_id": 218754}, {"caption": "a woman in pink and blue taking the class but she is interrupted by the people walking outside wearing plastic cloths", "video_id": "video11433", "sen_id": 218755}, {"caption": "a woman is advertising mens brandnamed underwear by the name of fruit of the loom plastic pants", "video_id": "video11433", "sen_id": 218756}, {"caption": "a woman leading a meeting is distracted by groups of men walking by in squeaky plastic pants to advertise fruit of the loom boxer briefs", "video_id": "video11433", "sen_id": 218757}, {"caption": "a woman in a blue dress trying to sale boxer briefs that don t ride up", "video_id": "video11433", "sen_id": 218758}, {"caption": "the woman points to the chart as she explains what it means", "video_id": "video11433", "sen_id": 218759}, {"caption": "a young man and young woman are hosting a talk show called geeking out and describing lgbt characters on the day of the dead", "video_id": "video12273", "sen_id": 218760}, {"caption": "a girl and boy are doing a show while dressed like nerds", "video_id": "video12273", "sen_id": 218761}, {"caption": "two nerdy looking people with glasses are talking very excitedly", "video_id": "video12273", "sen_id": 218762}, {"caption": "a male and female getting ready to talk about lgb characters in pop culture entertainment", "video_id": "video12273", "sen_id": 218763}, {"caption": "a man and a girl wearing glasses and talking about lgbt characters", "video_id": "video12273", "sen_id": 218764}, {"caption": "a couple of people prepare to talk about their favorite lgbt characters", "video_id": "video12273", "sen_id": 218765}, {"caption": "a women in spectacles and blue dress is acting funny with a man", "video_id": "video12273", "sen_id": 218766}, {"caption": "a man and lady is talking and standing", "video_id": "video12273", "sen_id": 218767}, {"caption": "in a video post a young man and young woman post talk about celebrating their favorite lgbt characters", "video_id": "video12273", "sen_id": 218768}, {"caption": "in geeking out they will be discussing the day of the dead as it pertains to the gays and transgender characters", "video_id": "video12273", "sen_id": 218769}, {"caption": "couple with glasses speaking about their favorite lgbt characters", "video_id": "video12273", "sen_id": 218770}, {"caption": "there is a tshirt man talking with a woman with specs", "video_id": "video12273", "sen_id": 218771}, {"caption": "the men and the women are wearing black spex and he is telling the new posability of the fashion", "video_id": "video12273", "sen_id": 218772}, {"caption": "a man and woman wearing specs talking about something", "video_id": "video12273", "sen_id": 218773}, {"caption": "a man and woman with glasses talking about geeking out", "video_id": "video12273", "sen_id": 218774}, {"caption": "two hosts introduce their show geeking out from their own home", "video_id": "video12273", "sen_id": 218775}, {"caption": "a couple with specks talks about gays of the dead on the show known as geeking out", "video_id": "video12273", "sen_id": 218776}, {"caption": "a boy and a girl with specs speaks to the camera and the girl shakes her specs", "video_id": "video12273", "sen_id": 218777}, {"caption": "a man and women wearing big glasses are talking to each other and their audience", "video_id": "video12273", "sen_id": 218778}, {"caption": "a couple people with glasses are in a room", "video_id": "video12273", "sen_id": 218779}, {"caption": "its a slideshow of a couple with a love song in the background", "video_id": "video12426", "sen_id": 218780}, {"caption": "screenshots of brad pitt and jennifer aniston before they broke up", "video_id": "video12426", "sen_id": 218781}, {"caption": "various pictures of jennifer anniston and brad pitt when they use to be together in the past", "video_id": "video12426", "sen_id": 218782}, {"caption": "a man and a woman are shown together happy in love", "video_id": "video12426", "sen_id": 218783}, {"caption": "a woman sings over a montage of photos of brad pitt and angelina jolie", "video_id": "video12426", "sen_id": 218784}, {"caption": "brad pit and jennifor aniston walking and talking together", "video_id": "video12426", "sen_id": 218785}, {"caption": "a photo montage of jennifer aniston and brad pitt while they were together", "video_id": "video12426", "sen_id": 218786}, {"caption": "romantic photographs of two popular celebrities show them standing close together and touching in casual and formal clothing", "video_id": "video12426", "sen_id": 218787}, {"caption": "there is a cooling glass man with his woman", "video_id": "video12426", "sen_id": 218788}, {"caption": "a slideshow featuring r and b music shows brad pitt and jennifer aniston", "video_id": "video12426", "sen_id": 218789}, {"caption": "boy and girl standing so close to each otherthey try to kiss", "video_id": "video12426", "sen_id": 218790}, {"caption": "jennifer aniston and brad pitt in romantic poses", "video_id": "video12426", "sen_id": 218791}, {"caption": "a slideshow of jennifer aniston and brad pitt", "video_id": "video12426", "sen_id": 218792}, {"caption": "several pictures of brad pitt with jennifer aniston are shown while music plays", "video_id": "video12426", "sen_id": 218793}, {"caption": "a boy an girl holding each other is seems to be they are lovers", "video_id": "video12426", "sen_id": 218794}, {"caption": "multiple photos of jennifer aniston and bradd pitt are compiled together", "video_id": "video12426", "sen_id": 218795}, {"caption": "a picture tribute with music featuring jennifer aniston and brad pitt", "video_id": "video12426", "sen_id": 218796}, {"caption": "jenifer aniston and brad pitt taking photos in various places", "video_id": "video12426", "sen_id": 218797}, {"caption": "a boy and girl in black dresses still images photoes singing song displaying on screen", "video_id": "video12426", "sen_id": 218798}, {"caption": "a very nice boy and a girl are taken lot of photos are they are looking very cute", "video_id": "video12426", "sen_id": 218799}, {"caption": "description of the films being created about the finding of a body", "video_id": "video10792", "sen_id": 218800}, {"caption": "scene from david lynch's twin peaks with someone describing the scene", "video_id": "video10792", "sen_id": 218801}, {"caption": "a fisherman discovers a dead body on a beach", "video_id": "video10792", "sen_id": 218802}, {"caption": "a man walks along a bridge that is next to a large body of water", "video_id": "video10792", "sen_id": 218803}, {"caption": "a woman is giving information on a movie clip", "video_id": "video10792", "sen_id": 218804}, {"caption": "a man in a red and black checkered shirt wearing a bucket hat is on a beach and discovers something wrapped up in plastic on the sand", "video_id": "video10792", "sen_id": 218805}, {"caption": "an entertainment television reporter describes the opening sequence of the showfilm twin peaks", "video_id": "video10792", "sen_id": 218806}, {"caption": "a man who is fishing sees something weird on the shore", "video_id": "video10792", "sen_id": 218807}, {"caption": "a woman narrator is giving a review on an old movie", "video_id": "video10792", "sen_id": 218808}, {"caption": "a holly wood movie scene a man doing something on beach", "video_id": "video10792", "sen_id": 218809}, {"caption": "a person near the sea seeing a white cover", "video_id": "video10792", "sen_id": 218810}, {"caption": "a fisherman who was fishing discovers a dead body wrapped in whit sheets", "video_id": "video10792", "sen_id": 218811}, {"caption": "an entertainment reporter talks about the beginning of a famous show", "video_id": "video10792", "sen_id": 218812}, {"caption": "an old fisherman finds the dead body of a young woman on the beach", "video_id": "video10792", "sen_id": 218813}, {"caption": "a man is looking the dead body placed in the shore", "video_id": "video10792", "sen_id": 218814}, {"caption": "there is a man fishing from a river", "video_id": "video10792", "sen_id": 218815}, {"caption": "a clip from the beginning scene of david lynch s twin peaks tv show is the basis of a documentary film", "video_id": "video10792", "sen_id": 218816}, {"caption": "a man fishing walks along the shoreline and discovers a dead body wrapped in plastic", "video_id": "video10792", "sen_id": 218817}, {"caption": "a man shouting video clip an old man in checks coat near river to catch fish standing displaying on screen", "video_id": "video10792", "sen_id": 218818}, {"caption": "a plastic thing is lying on a beach outside", "video_id": "video10792", "sen_id": 218819}, {"caption": "the ending of a dish being prepared on youtube", "video_id": "video12949", "sen_id": 218820}, {"caption": "a dish of chicken and spinach covered by cheese", "video_id": "video12949", "sen_id": 218821}, {"caption": "a receipt video about creating vegetable ziti", "video_id": "video12949", "sen_id": 218822}, {"caption": "a spoonful of bubbly cheesy baked ziti is taken", "video_id": "video12949", "sen_id": 218823}, {"caption": "a female voice describes a cheesey baked ziti dish as it comes out hot from the oven", "video_id": "video12949", "sen_id": 218824}, {"caption": "a chef talks about a completed recipe that she is preparing to serve up and eat", "video_id": "video12949", "sen_id": 218825}, {"caption": "an unseen person takes a fork and scoops out some of the hot cheesy dish", "video_id": "video12949", "sen_id": 218826}, {"caption": "a women asks viewers to give her video a thumbs up while showing a pan of cheesey vegetable ziti", "video_id": "video12949", "sen_id": 218827}, {"caption": "a woman talks about her cheesy baked ziti recipe", "video_id": "video12949", "sen_id": 218828}, {"caption": "a cheesy dish is pulled apart by a spoon while a woman talks about the dish", "video_id": "video12949", "sen_id": 218829}, {"caption": "someone is putting a spoon in some casserole", "video_id": "video12949", "sen_id": 218830}, {"caption": "a woman explains how she has prepared a vegetable and cheese dish", "video_id": "video12949", "sen_id": 218831}, {"caption": "make a tasty recipe liked the video please thumbs up", "video_id": "video12949", "sen_id": 218832}, {"caption": "the voice of a lady explaining this dish of cheesy baked vegetable ziti", "video_id": "video12949", "sen_id": 218833}, {"caption": "baked cheese dish and noodles scooped with a spoon", "video_id": "video12949", "sen_id": 218834}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12949", "sen_id": 218835}, {"caption": "a lady explains about some prepared dish which is kept on table", "video_id": "video12949", "sen_id": 218836}, {"caption": "a delicious pizza sits inside a box on the table", "video_id": "video12949", "sen_id": 218837}, {"caption": "a delecious dish inside kitchen preparing to serve to eat", "video_id": "video12949", "sen_id": 218838}, {"caption": "someone is showing some food that they made", "video_id": "video12949", "sen_id": 218839}, {"caption": "episode of a cartoon with people on a boat", "video_id": "video12048", "sen_id": 218840}, {"caption": "japanese men spear dolphins in an animated sequence", "video_id": "video12048", "sen_id": 218841}, {"caption": "marine life are slaughtered en-mass in a scene from an episode of south park", "video_id": "video12048", "sen_id": 218842}, {"caption": "a large group of asian men with sticks enter a pool", "video_id": "video12048", "sen_id": 218843}, {"caption": "asian men with spears diving into a pool and killing dolphins", "video_id": "video12048", "sen_id": 218844}, {"caption": "a cartoon of several ninjas with sticks killing fish in a pool", "video_id": "video12048", "sen_id": 218845}, {"caption": "watch more nonsensical hilarity tonight with new episodes of south park", "video_id": "video12048", "sen_id": 218846}, {"caption": "a group of men with sharp sticks storm into a swimming pool", "video_id": "video12048", "sen_id": 218847}, {"caption": "a group of cartoon men with bandannas are hitting sharks with long poles", "video_id": "video12048", "sen_id": 218848}, {"caption": "cartoon asian solders killing dolphins in a pool", "video_id": "video12048", "sen_id": 218849}, {"caption": "an episode of a show is playing with music in the background", "video_id": "video12048", "sen_id": 218850}, {"caption": "there are some warriors fighting against some fish", "video_id": "video12048", "sen_id": 218851}, {"caption": "a bunch of asian animated men are killing dolphins", "video_id": "video12048", "sen_id": 218852}, {"caption": "a cartoon television show cartoon characters doing something funny", "video_id": "video12048", "sen_id": 218853}, {"caption": "a cartoon in the water everyone was fighting with the fish", "video_id": "video12048", "sen_id": 218854}, {"caption": "some animated people are killing some dolphins", "video_id": "video12048", "sen_id": 218855}, {"caption": "a bunch of cartoon characters stab dolphins in a pool viciously", "video_id": "video12048", "sen_id": 218856}, {"caption": "few man kills a fish in the pool and goes", "video_id": "video12048", "sen_id": 218857}, {"caption": "cartoon with a catchy tune and school kids killing fish", "video_id": "video12048", "sen_id": 218858}, {"caption": "a group of cartoon are jumping in to water with weapons are killed the fish", "video_id": "video12048", "sen_id": 218859}, {"caption": "a woman giving a tutorial on how to put on eye shadow", "video_id": "video11535", "sen_id": 218860}, {"caption": "a young woman describes and demonstrates a makeup technique", "video_id": "video11535", "sen_id": 218861}, {"caption": "a girl wearing a red shirt talks about applying eye makeup", "video_id": "video11535", "sen_id": 218862}, {"caption": "a woman is holding a makeup kit and then puts eyeliner on", "video_id": "video11535", "sen_id": 218863}, {"caption": "a woman is speaking about her eye make up holds up a compact of brown shades and continues to apply make up with a black handled brush", "video_id": "video11535", "sen_id": 218864}, {"caption": "a girl talking about what color eyeshadow shes going to put on", "video_id": "video11535", "sen_id": 218865}, {"caption": "a young lady is applying makeup to her eyes and face", "video_id": "video11535", "sen_id": 218866}, {"caption": "a woman demonstrating how to apply eye make up using a brush", "video_id": "video11535", "sen_id": 218867}, {"caption": "a young girl with light brown hair it applies eyeshadow to her eyelid", "video_id": "video11535", "sen_id": 218868}, {"caption": "a beautiful girl with neatly combed hair is applying a brown eye shadow under her eyes using a long brush", "video_id": "video11535", "sen_id": 218869}, {"caption": "there is a good looking woman applying makeup", "video_id": "video11535", "sen_id": 218870}, {"caption": "a woman is applying makeup to her eyelid using a small brush", "video_id": "video11535", "sen_id": 218871}, {"caption": "a girl coloring her eye lash and explaining about it", "video_id": "video11535", "sen_id": 218872}, {"caption": "a woman doing a tutorial on how to put on eyeshadow", "video_id": "video11535", "sen_id": 218873}, {"caption": "a lady explains about the makeup set and procedure of applying it", "video_id": "video11535", "sen_id": 218874}, {"caption": "there is a woman introducing her makeup secrets", "video_id": "video11535", "sen_id": 218875}, {"caption": "a woman is explaining how to apply makeup to her eyes with a small brush", "video_id": "video11535", "sen_id": 218876}, {"caption": "a woman is doing the makeup applying to her face to look beautifully", "video_id": "video11535", "sen_id": 218877}, {"caption": "a woman is showing how she put on some brown color on her eye makeup", "video_id": "video11535", "sen_id": 218878}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11535", "sen_id": 218879}, {"caption": "a person using two plastic horses to play with magnetic stones", "video_id": "video11537", "sen_id": 218880}, {"caption": "a plastic toy horse is moving a black shiny pebble", "video_id": "video11537", "sen_id": 218881}, {"caption": "a person is moving a horse figure on a carpet and making them move marbles", "video_id": "video11537", "sen_id": 218882}, {"caption": "two horse dolls moving four pieces of hematite rock across a carpet", "video_id": "video11537", "sen_id": 218883}, {"caption": "two plastic horses are pushing around shiny flat rocks", "video_id": "video11537", "sen_id": 218884}, {"caption": "there is someone playing with two horse toys", "video_id": "video11537", "sen_id": 218885}, {"caption": "a person is playing with two toy horses and a few black flat marbles", "video_id": "video11537", "sen_id": 218886}, {"caption": "music playing horse toy used to pushed around chips", "video_id": "video11537", "sen_id": 218887}, {"caption": "two brown toy horses are moving black stones around", "video_id": "video11537", "sen_id": 218888}, {"caption": "play horses are positioned to move around and stack stones", "video_id": "video11537", "sen_id": 218889}, {"caption": "horse figurines push magnetized stones against each other", "video_id": "video11537", "sen_id": 218890}, {"caption": "someone is playing with toy horses and moving stones around with their feet", "video_id": "video11537", "sen_id": 218891}, {"caption": "a playful game sequence where a person moves toy horses to push tablet like pebbles in front of one another", "video_id": "video11537", "sen_id": 218892}, {"caption": "two brown plastic play horses being used to move black shiny flat rocks around", "video_id": "video11537", "sen_id": 218893}, {"caption": "a toy horse is moving certain shapes to some other position", "video_id": "video11537", "sen_id": 218894}, {"caption": "playing a game with horses moving the magnets", "video_id": "video11537", "sen_id": 218895}, {"caption": "a easy hawaiin music plays in the background two plastic horses play a game of stones on a mat while frolicking about", "video_id": "video11537", "sen_id": 218896}, {"caption": "a person is make to move the a small shining material and to move it withe artificial horse", "video_id": "video11537", "sen_id": 218897}, {"caption": "toy horses made to seem like they are pushing magnets that look like rocks", "video_id": "video11537", "sen_id": 218898}, {"caption": "a person is playing with toy horses and rocks", "video_id": "video11537", "sen_id": 218899}, {"caption": "two women discussing things about new york", "video_id": "video10939", "sen_id": 218900}, {"caption": "two women talking about certain possibilities in a youtube video", "video_id": "video10939", "sen_id": 218901}, {"caption": "a woman in a dark leather jacket is talking to a woman with a pink vest", "video_id": "video10939", "sen_id": 218902}, {"caption": "a woman with a black leather jacket is talking to a woman wearing a fur vest", "video_id": "video10939", "sen_id": 218903}, {"caption": "two woman in black and pink talking to each other", "video_id": "video10939", "sen_id": 218904}, {"caption": "two women are standing and talking to each other", "video_id": "video10939", "sen_id": 218905}, {"caption": "two women talk to each other while wearing trendy outfits and talk about fashion in new york", "video_id": "video10939", "sen_id": 218906}, {"caption": "two women are speaking together about the state of new york which resides in california", "video_id": "video10939", "sen_id": 218907}, {"caption": "two women stand together doing hand gestures to each other", "video_id": "video10939", "sen_id": 218908}, {"caption": "a girl in a leather jacket is talking to another girl in a pink furry vest", "video_id": "video10939", "sen_id": 218909}, {"caption": "a young girl in a black leather jacket is talking to another young girl wearing a pink colored fuzzy outfit about various fashion related topics", "video_id": "video10939", "sen_id": 218910}, {"caption": "two women having a conversation about new york and getting photographed", "video_id": "video10939", "sen_id": 218911}, {"caption": " one with red hair and a leather jacket the other with brown hair and a pink vest are discussing fashion", "video_id": "video10939", "sen_id": 218912}, {"caption": "a woman wearing a leather jacket is talking to another woman and are discussing different topics", "video_id": "video10939", "sen_id": 218913}, {"caption": "two women talking about fashion looks in new york", "video_id": "video10939", "sen_id": 218914}, {"caption": "two women are talking together one in a black jacket", "video_id": "video10939", "sen_id": 218915}, {"caption": "these people are talking in another language and is hard to understand what they are talking about", "video_id": "video10939", "sen_id": 218916}, {"caption": "there are two girls talking about fashion together", "video_id": "video10939", "sen_id": 218917}, {"caption": "two beautiful ladies are having conversation in the room", "video_id": "video10939", "sen_id": 218918}, {"caption": "a couple of women are talking inside of a room", "video_id": "video10939", "sen_id": 218919}, {"caption": "a sporty silver car is speeding down a road", "video_id": "video11356", "sen_id": 218920}, {"caption": "a chevrolet corvette is showing off its track skills on a car show", "video_id": "video11356", "sen_id": 218921}, {"caption": "a fast sports car drives quickly and loudly down a straight stretch of road", "video_id": "video11356", "sen_id": 218922}, {"caption": "a very fast silver car zooms down an empty road", "video_id": "video11356", "sen_id": 218923}, {"caption": "a man test drives a silver sports car on a runway at an airport", "video_id": "video11356", "sen_id": 218924}, {"caption": "there is a stylish car with smooth and shiny body", "video_id": "video11356", "sen_id": 218925}, {"caption": "a silver sports car which is flat to the ground has round rear lights and a yellow license plate", "video_id": "video11356", "sen_id": 218926}, {"caption": "silver race car racing on an open road", "video_id": "video11356", "sen_id": 218927}, {"caption": "a old man in white color dress wearing cloth standing audience watching white car moving on road fast driving displaying on screen", "video_id": "video11356", "sen_id": 218928}, {"caption": "a review of the corvette zeno 6 on a race track", "video_id": "video11356", "sen_id": 218929}, {"caption": "a man is narrating as a silver sports car speeds down the road", "video_id": "video11356", "sen_id": 218930}, {"caption": "someone is driving a silver sports car very fast", "video_id": "video11356", "sen_id": 218931}, {"caption": "some kind of european sports car driving around a track from an episode of top gear", "video_id": "video11356", "sen_id": 218932}, {"caption": "a silver sports car with yellow plates is being driven fast down a road", "video_id": "video11356", "sen_id": 218933}, {"caption": "a sports car is showed off with its speed and loudness", "video_id": "video11356", "sen_id": 218934}, {"caption": "a car white color is running faster", "video_id": "video11356", "sen_id": 218935}, {"caption": "a man describes a silver sports car that is running very fast on a closed course", "video_id": "video11356", "sen_id": 218936}, {"caption": "a sports car drives fast on a deserted roadway", "video_id": "video11356", "sen_id": 218937}, {"caption": "a silver corvette screams up an asphalt track beneath grey skies", "video_id": "video11356", "sen_id": 218938}, {"caption": "a person is driving car and showing its features", "video_id": "video11356", "sen_id": 218939}, {"caption": "a cafeteria is shown with a leader wearing a head scarf", "video_id": "video10887", "sen_id": 218940}, {"caption": "the inside of a restaurant where they are making drinks followed by a man in a red hat standing by microphones", "video_id": "video10887", "sen_id": 218941}, {"caption": "a man is narrating about a restaurant and a political figure in a different language", "video_id": "video10887", "sen_id": 218942}, {"caption": "a group of people are sitting in a restaurant eating at a table", "video_id": "video10887", "sen_id": 218943}, {"caption": "a piece of silver modern art sets outside a large building", "video_id": "video10887", "sen_id": 218944}, {"caption": "a man is describing about the indian prime minister on the background", "video_id": "video10887", "sen_id": 218945}, {"caption": "a building with silver balls art on outside people sitting in a restaurant a person stirring a pot with a spoon", "video_id": "video10887", "sen_id": 218946}, {"caption": "the speaker is talking about a prime minister who is going to change the country", "video_id": "video10887", "sen_id": 218947}, {"caption": "a beautiful restaurant with some customers inside", "video_id": "video10887", "sen_id": 218948}, {"caption": "the tea is poured an served before cutting to a clip of india pm", "video_id": "video10887", "sen_id": 218949}, {"caption": "there is a white dress man talking in front of mic", "video_id": "video10887", "sen_id": 218950}, {"caption": "the highlights and humble beginnings of prime minister as tea boy is shown", "video_id": "video10887", "sen_id": 218951}, {"caption": "a man talks about issues going on in india at the present time", "video_id": "video10887", "sen_id": 218952}, {"caption": "a hotel inside peoples and cup of tea serving and prime minister giving speech displaying on screen", "video_id": "video10887", "sen_id": 218953}, {"caption": "a man is talking about news topics in a foreign language", "video_id": "video10887", "sen_id": 218954}, {"caption": "narendra modi gives a speech while a man narrates", "video_id": "video10887", "sen_id": 218955}, {"caption": "gsrtc ahmedabad central bus terminus t1 indian prime minister speaking", "video_id": "video10887", "sen_id": 218956}, {"caption": "one lady purchasing a ticket on ticket windowsome people are taking tea and refreshment modi is giving a speech", "video_id": "video10887", "sen_id": 218957}, {"caption": "a hotel inside tables serving dishes cups of tea and prime minister standing", "video_id": "video10887", "sen_id": 218958}, {"caption": "a man with a red turban is giving a speech", "video_id": "video10887", "sen_id": 218959}, {"caption": "a stream has currents running through it with rocks", "video_id": "video10812", "sen_id": 218960}, {"caption": "a white bird wades in shallow water among algae-covered rocks as gentle waves lap the shore", "video_id": "video10812", "sen_id": 218961}, {"caption": "water is coming in during low tide over different rock formations", "video_id": "video10812", "sen_id": 218962}, {"caption": "on a beach an egret is trying to catch fish", "video_id": "video10812", "sen_id": 218963}, {"caption": "a white egret is fishing in a beach puddle", "video_id": "video10812", "sen_id": 218964}, {"caption": "music playing while showing the ocean sand and rocks while a bird plays in the water", "video_id": "video10812", "sen_id": 218965}, {"caption": "water flows calmly over rocks in what seems to be a shore", "video_id": "video10812", "sen_id": 218966}, {"caption": "a bird is walking across a grassy and watery marsh near the coastline", "video_id": "video10812", "sen_id": 218967}, {"caption": "its a sea water going and a swan swimming there", "video_id": "video10812", "sen_id": 218968}, {"caption": "music plays while visions of water and grass are shown", "video_id": "video10812", "sen_id": 218969}, {"caption": "a beautiful beach scene in which a bird is drinking water", "video_id": "video10812", "sen_id": 218970}, {"caption": "many huge boulders with moss growing on them are sitting in a body of water", "video_id": "video10812", "sen_id": 218971}, {"caption": "there is wonderful shore with some rocks", "video_id": "video10812", "sen_id": 218972}, {"caption": "several small bodies of water are flowing into a the sea", "video_id": "video10812", "sen_id": 218973}, {"caption": "an exploration about the flow of water and plants on it", "video_id": "video10812", "sen_id": 218974}, {"caption": "a clear beautiful stream has mossy rocks in it", "video_id": "video10812", "sen_id": 218975}, {"caption": "an ocean is being displayed along with the environment surrounding it", "video_id": "video10812", "sen_id": 218976}, {"caption": "the ocean showing a shallow area there are many rocks and also a bird standing in the water the bird is white", "video_id": "video10812", "sen_id": 218977}, {"caption": "the water fall and flowing in the river", "video_id": "video10812", "sen_id": 218978}, {"caption": "in a sea full of stones and the bird is searching a fish", "video_id": "video10812", "sen_id": 218979}, {"caption": "clips from the tv show futurama on adult swim", "video_id": "video11180", "sen_id": 218980}, {"caption": "a woman discusses different scenes of the show futurama", "video_id": "video11180", "sen_id": 218981}, {"caption": "a man in a red jacket is talking to a severed head", "video_id": "video11180", "sen_id": 218982}, {"caption": "a human talks to a human head in a container and later that same human visits a group of large women as they play basketball", "video_id": "video11180", "sen_id": 218983}, {"caption": "a scene from the hit animated television show futurama", "video_id": "video11180", "sen_id": 218984}, {"caption": "a man with orange hair is talking to some women and laughing", "video_id": "video11180", "sen_id": 218985}, {"caption": "family guy has an episode that refers to star trek characters and other scifi shows", "video_id": "video11180", "sen_id": 218986}, {"caption": "there is a man with red jacket talking to some tribals", "video_id": "video11180", "sen_id": 218987}, {"caption": "a montage of clips from the show futurama plays while a narrator explains the show", "video_id": "video11180", "sen_id": 218988}, {"caption": "cartoon sexy girls are dancing one comes and", "video_id": "video11180", "sen_id": 218989}, {"caption": "a young man and a a robot talk to a head that is in a jar", "video_id": "video11180", "sen_id": 218990}, {"caption": "the man and the robot talk to the head in the jar before they travel to a place with large women", "video_id": "video11180", "sen_id": 218991}, {"caption": "a cartoon full of human robots and amazon giant species along with aliens", "video_id": "video11180", "sen_id": 218992}, {"caption": "cartoon of a robot and human talking to a head in a jar and then walking thru a forest", "video_id": "video11180", "sen_id": 218993}, {"caption": "a scene from futurama is being shown", "video_id": "video11180", "sen_id": 218994}, {"caption": "a lady animated character is talking with man", "video_id": "video11180", "sen_id": 218995}, {"caption": "a woman describes a cartoon show as having aliens robots and humor", "video_id": "video11180", "sen_id": 218996}, {"caption": "an animation film is playing in the screen", "video_id": "video11180", "sen_id": 218997}, {"caption": "a person is showing cartoon series of futurama on screen", "video_id": "video11180", "sen_id": 218998}, {"caption": "some cartoon characters are moving around an area", "video_id": "video11180", "sen_id": 218999}, {"caption": "a middle age man stands on a stage in a suit moving his hands as he talks", "video_id": "video10605", "sen_id": 219000}, {"caption": "jimmy falon makes a joke about matt damon", "video_id": "video10605", "sen_id": 219001}, {"caption": "a man in a suit entertains a studio audience and talks about matt damon in a new borne movie", "video_id": "video10605", "sen_id": 219002}, {"caption": "jimmy kimmel standing and giving a monologue for his show", "video_id": "video10605", "sen_id": 219003}, {"caption": "a man in a dark suit talks to people in a live studio audience", "video_id": "video10605", "sen_id": 219004}, {"caption": "a late-night television host delivers his funny monologue about a popular actor in front of rows of people sitting in the audience who are laughing", "video_id": "video10605", "sen_id": 219005}, {"caption": "there is a black suit man talking in a show", "video_id": "video10605", "sen_id": 219006}, {"caption": "talk show host carson daily talking about actress matt damon his acting style and the bourne movies", "video_id": "video10605", "sen_id": 219007}, {"caption": "a person in black blazer speaks some thing humour and all people laughing", "video_id": "video10605", "sen_id": 219008}, {"caption": "jimmy kimmel is making jokes about matt damon in his monologue and the audience is laughing", "video_id": "video10605", "sen_id": 219009}, {"caption": "a talk show host talking to the camera and audience about an actor", "video_id": "video10605", "sen_id": 219010}, {"caption": "a man anchor is hosting a talk show", "video_id": "video10605", "sen_id": 219011}, {"caption": "a man in a black suit is talking to a crowd of people during a talk show", "video_id": "video10605", "sen_id": 219012}, {"caption": "people listen to talk of person back of him is the display of multiple buildings with lights", "video_id": "video10605", "sen_id": 219013}, {"caption": "a comedian makes a joke about a famous actor", "video_id": "video10605", "sen_id": 219014}, {"caption": "jimmy kimmel talks to a crowd about actor matt damon", "video_id": "video10605", "sen_id": 219015}, {"caption": "a night time show with the host talking about matt damon and the audience laughing and clapping", "video_id": "video10605", "sen_id": 219016}, {"caption": "a person with black coat and tie is talking in the show", "video_id": "video10605", "sen_id": 219017}, {"caption": "a man a talk show is talking to the crowd of people", "video_id": "video10605", "sen_id": 219018}, {"caption": "bunch of people laughing from the crowd", "video_id": "video10605", "sen_id": 219019}, {"caption": "description of the influence that technology has on cyber commerce", "video_id": "video11740", "sen_id": 219020}, {"caption": "electronic networks are vulnerable to cyber attacks this includes gps systems wireless phones credit card scanners automatic climate control systems and the us power grid", "video_id": "video11740", "sen_id": 219021}, {"caption": "examples of electronic commerce systems vulnerable to cyber attacks are listed", "video_id": "video11740", "sen_id": 219022}, {"caption": "a man describes the various modes and dangers of cyberattacks", "video_id": "video11740", "sen_id": 219023}, {"caption": "angled white lines meet a blue floor with white grid pattern where graphics of fans electronic components personal devices credit-card processors power equipment and maps are displayed", "video_id": "video11740", "sen_id": 219024}, {"caption": "a video about electronics with a voice over from a man", "video_id": "video11740", "sen_id": 219025}, {"caption": "electronic devices are shown as a man talks about the vulnerability of these to cyber attacks", "video_id": "video11740", "sen_id": 219026}, {"caption": "a man explains the many products that are vulnerable to cyber attacks", "video_id": "video11740", "sen_id": 219027}, {"caption": "images of electronics flash and speed away on a a blue grid background", "video_id": "video11740", "sen_id": 219028}, {"caption": "examples of various electronics vulnerable to cyber attacks", "video_id": "video11740", "sen_id": 219029}, {"caption": "people using computers cell phones and other technologies", "video_id": "video11740", "sen_id": 219030}, {"caption": "a man talks about the various manufacturing advances recently made in america", "video_id": "video11740", "sen_id": 219031}, {"caption": "scenes of power sources wiz by as an unseen voices talks about their roles", "video_id": "video11740", "sen_id": 219032}, {"caption": "in a computer generated video various products and everyday tasks are illustrated", "video_id": "video11740", "sen_id": 219033}, {"caption": "a man talks about electronic networks in a very intense fashion", "video_id": "video11740", "sen_id": 219034}, {"caption": "a man is narrating a video that talks about cyber attacks", "video_id": "video11740", "sen_id": 219035}, {"caption": "the people use the different types of machines", "video_id": "video11740", "sen_id": 219036}, {"caption": "a man talks about electronic networks that control powergrids and other things that are vulnerable to cyber attacks", "video_id": "video11740", "sen_id": 219037}, {"caption": "here is a computer game which is full of soldiersviolence and gun shots", "video_id": "video11740", "sen_id": 219038}, {"caption": "a narrator talks about how nearly everything we do is vulnerable to cyber attacks", "video_id": "video11740", "sen_id": 219039}, {"caption": "a man is talking about a tower and a fan he put together for a computer", "video_id": "video12732", "sen_id": 219040}, {"caption": "a man talking about a green fan and showing it to the viewers", "video_id": "video12732", "sen_id": 219041}, {"caption": "a man talks about a fan that is used to cool down computer components", "video_id": "video12732", "sen_id": 219042}, {"caption": "a man displays a green computer fan that is operational", "video_id": "video12732", "sen_id": 219043}, {"caption": "a type of fan is being displayed to show its features", "video_id": "video12732", "sen_id": 219044}, {"caption": "a man talks about a computer processor cooling unit", "video_id": "video12732", "sen_id": 219045}, {"caption": "a man talks about a new kind of computer fan used to cool the euipment", "video_id": "video12732", "sen_id": 219046}, {"caption": "a man is showing the fan and tower design", "video_id": "video12732", "sen_id": 219047}, {"caption": "a guy talks about a fan and cooling set for a computer", "video_id": "video12732", "sen_id": 219048}, {"caption": "a man is explaining the design of a fanless cooling unit for an electronics device", "video_id": "video12732", "sen_id": 219049}, {"caption": "someone explaining how to use an electronic device", "video_id": "video12732", "sen_id": 219050}, {"caption": "person explaining how the machine placed on the table works", "video_id": "video12732", "sen_id": 219051}, {"caption": "a mechanism is explained green colour fan is used to rotate", "video_id": "video12732", "sen_id": 219052}, {"caption": "a man explaning of fan design holding in hand displaying on screen", "video_id": "video12732", "sen_id": 219053}, {"caption": "a person is showing product to the camera", "video_id": "video12732", "sen_id": 219054}, {"caption": "a man demonstrating a green electric computer fan and and also a fanless design", "video_id": "video12732", "sen_id": 219055}, {"caption": "a man is explain about a fan of motor", "video_id": "video12732", "sen_id": 219056}, {"caption": "guy talking about a green computer fan powering the computer", "video_id": "video12732", "sen_id": 219057}, {"caption": "some guy is explaining about a device containing a green fan and a tower like instrument", "video_id": "video12732", "sen_id": 219058}, {"caption": "a person is showing a cpu cooler", "video_id": "video12732", "sen_id": 219059}, {"caption": "food is frying inside of a pan on the stove top", "video_id": "video11489", "sen_id": 219060}, {"caption": "a arm holds up a bowl of water next to a pan of cooking vegetables", "video_id": "video11489", "sen_id": 219061}, {"caption": "person is frying vegetables and using a wooden spoon to stir as she puts bowls near her pan", "video_id": "video11489", "sen_id": 219062}, {"caption": "a person stirs tomato and onion in a skillet on the stove", "video_id": "video11489", "sen_id": 219063}, {"caption": "there are onions and tomatoes being stirred in a pan", "video_id": "video11489", "sen_id": 219064}, {"caption": "a person cooks some vegetables in the pan with water", "video_id": "video11489", "sen_id": 219065}, {"caption": "a person is cooking sliced onions and tomatoes in a wok", "video_id": "video11489", "sen_id": 219066}, {"caption": "a person cooking tomatoes and onions in a saute pan", "video_id": "video11489", "sen_id": 219067}, {"caption": "in the kitchen someone sauteing onions and tomatoes", "video_id": "video11489", "sen_id": 219068}, {"caption": "a cook is frying onions and peppers in a pan", "video_id": "video11489", "sen_id": 219069}, {"caption": "some vegetables in a pot and a glass dish of water", "video_id": "video11489", "sen_id": 219070}, {"caption": "a woman is cooking a mixed assortment of food in a skillet she also pours water into the skillet", "video_id": "video11489", "sen_id": 219071}, {"caption": "women cooking a dish in kitchen", "video_id": "video11489", "sen_id": 219072}, {"caption": "a girl and bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11489", "sen_id": 219073}, {"caption": "a person is frying tomatoes and onions in a skillet on a stove", "video_id": "video11489", "sen_id": 219074}, {"caption": "a person cooking a using a large black pan", "video_id": "video11489", "sen_id": 219075}, {"caption": "some vegetables along with tomato is fried in the pan and oil is kept ready", "video_id": "video11489", "sen_id": 219076}, {"caption": "a women explaining about the cooking the food item", "video_id": "video11489", "sen_id": 219077}, {"caption": "a chef adds ingredents to stove top creation", "video_id": "video11489", "sen_id": 219078}, {"caption": "a person frying the vegetables using fry pan with oil", "video_id": "video11489", "sen_id": 219079}, {"caption": "electrons are shown around the nucleus of an atom in an animation while the commentator is describing the process of ionization", "video_id": "video11393", "sen_id": 219080}, {"caption": "animated description for how to atoms can share an electron", "video_id": "video11393", "sen_id": 219081}, {"caption": "cartoon depiction of an atom with electrons rotating around it", "video_id": "video11393", "sen_id": 219082}, {"caption": "a figure of atoms orbiting a nucleus and a bonding of ions", "video_id": "video11393", "sen_id": 219083}, {"caption": "a graphic showing a pictorial of an atom", "video_id": "video11393", "sen_id": 219084}, {"caption": "a man explains the chemical process of ionization and ionization energy over animations of atoms and electrons", "video_id": "video11393", "sen_id": 219085}, {"caption": "the structure of an atom is being shown and the process of ionization is being dealt with by someone", "video_id": "video11393", "sen_id": 219086}, {"caption": "science talk about the ionization of particles", "video_id": "video11393", "sen_id": 219087}, {"caption": "a man is teaching about atom and ionization", "video_id": "video11393", "sen_id": 219088}, {"caption": "a man is talking about ionization with accompanying animation shown to illustrate his words", "video_id": "video11393", "sen_id": 219089}, {"caption": "a man explains how atoms work and how they become balanced", "video_id": "video11393", "sen_id": 219090}, {"caption": "a scientist lectures on atomic particles and how they are ordered", "video_id": "video11393", "sen_id": 219091}, {"caption": "a man is speaking about electrons and atoms", "video_id": "video11393", "sen_id": 219092}, {"caption": "a guy talking about removing electrons from atoms to form ions", "video_id": "video11393", "sen_id": 219093}, {"caption": "a atom arrangement is shown and the process of ionization is also described", "video_id": "video11393", "sen_id": 219094}, {"caption": "a man taking a class about nucleolus electron and ionization energy", "video_id": "video11393", "sen_id": 219095}, {"caption": "shades of purple background and replicas of electrons", "video_id": "video11393", "sen_id": 219096}, {"caption": "a person is explaining about a atom structure and ions", "video_id": "video11393", "sen_id": 219097}, {"caption": "describing the atom and the position of certain electrons balancing around the nucleus and about ions", "video_id": "video11393", "sen_id": 219098}, {"caption": "some text is on a pink back ground", "video_id": "video11393", "sen_id": 219099}, {"caption": "a woman wearing red is cooking a tortilla", "video_id": "video10570", "sen_id": 219100}, {"caption": "a woman in red is showing how to warm up tortillas in a pan", "video_id": "video10570", "sen_id": 219101}, {"caption": "a lady is demonstrating how to warm up a tortilla in a pan on the stove", "video_id": "video10570", "sen_id": 219102}, {"caption": "a woman demonstrating how to heat up a tortilla", "video_id": "video10570", "sen_id": 219103}, {"caption": "a woman in red is cooking tortilla in a pan", "video_id": "video10570", "sen_id": 219104}, {"caption": "a woman showing how to cook in a skillet", "video_id": "video10570", "sen_id": 219105}, {"caption": "a women is instructing how to cook a meal while she starts it off by putting a tortilla in a pan", "video_id": "video10570", "sen_id": 219106}, {"caption": "a woman in a red outfit is cooking a tortilla a few seconds on each side then flipping it over", "video_id": "video10570", "sen_id": 219107}, {"caption": "a lady in red dress takes a chapathi and puts in the fry pan and boils it", "video_id": "video10570", "sen_id": 219108}, {"caption": "a woman in red is showing a recipe of tortillas", "video_id": "video10570", "sen_id": 219109}, {"caption": "in a glass bowl a lady is prepare some dough with spoon one lady in red color top says something then put one chappathi in a black color inside and red color outside pan and after ome time she takes it and put it again by rotating upside down", "video_id": "video10570", "sen_id": 219110}, {"caption": "a person is putting some tortillas on a stack", "video_id": "video10570", "sen_id": 219111}, {"caption": "a women with red top frying rotis in a pan", "video_id": "video10570", "sen_id": 219112}, {"caption": "a grl in a red dress cookies pancake", "video_id": "video10570", "sen_id": 219113}, {"caption": "a girl warming up tortillas in a frying pan", "video_id": "video10570", "sen_id": 219114}, {"caption": "a woman in a kitchen is making some food", "video_id": "video10570", "sen_id": 219115}, {"caption": "a woman in a red dress warms up a tortilla in an red pan without using oil or butter", "video_id": "video10570", "sen_id": 219116}, {"caption": "a hand moving around a tortilla in a red and black pan", "video_id": "video10570", "sen_id": 219117}, {"caption": "a red dress wearing color cloth girl inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video10570", "sen_id": 219118}, {"caption": "a woman with an accent warms up a tortilla in a pan", "video_id": "video10570", "sen_id": 219119}, {"caption": "a man is sitting in the drivers seat of a car with red interior", "video_id": "video10626", "sen_id": 219120}, {"caption": "a man in blue shirt explaining the features of a new car", "video_id": "video10626", "sen_id": 219121}, {"caption": "in the car sitting a man and reviewing the features of the car", "video_id": "video10626", "sen_id": 219122}, {"caption": "a man driving a very expensive sports car", "video_id": "video10626", "sen_id": 219123}, {"caption": "someone is sitting in a car and talking about the feature of the car", "video_id": "video10626", "sen_id": 219124}, {"caption": "person in blue shirt is in his car and talking about the look of the car", "video_id": "video10626", "sen_id": 219125}, {"caption": "a man in blue shirt is sitting in drivers seat of a car and saying something", "video_id": "video10626", "sen_id": 219126}, {"caption": "a man in a blue shirt talking about the accessories in a car", "video_id": "video10626", "sen_id": 219127}, {"caption": "a man talking of something about his new car", "video_id": "video10626", "sen_id": 219128}, {"caption": "a man is explaining some thing about a car features", "video_id": "video10626", "sen_id": 219129}, {"caption": "a new car is criticized by the man for the viewers and says to the automatic gear is provided in the vehicle", "video_id": "video10626", "sen_id": 219130}, {"caption": "a blue shirt man talking inside the car", "video_id": "video10626", "sen_id": 219131}, {"caption": "a person sitting inside the car and explains the functions of the car", "video_id": "video10626", "sen_id": 219132}, {"caption": "a man sitting in a silver car with red dash talking to the camera", "video_id": "video10626", "sen_id": 219133}, {"caption": "a man sits in a red car talking and pointing to the panels", "video_id": "video10626", "sen_id": 219134}, {"caption": "a person wearing blue shirt speaking about the car", "video_id": "video10626", "sen_id": 219135}, {"caption": "a man in a denim top describes the details of the car he is sitting in", "video_id": "video10626", "sen_id": 219136}, {"caption": "the main character from the show top gear talks about a car that he disproves of", "video_id": "video10626", "sen_id": 219137}, {"caption": "a man sits behind the while of a car while he reviews it", "video_id": "video10626", "sen_id": 219138}, {"caption": "man with blue shirt is talking in his new car", "video_id": "video10626", "sen_id": 219139}, {"caption": "movie covers of 5 different steven spielberg films are shown in consecutively while music plays in the background", "video_id": "video11040", "sen_id": 219140}, {"caption": "music playing while several different movie posters are shown", "video_id": "video11040", "sen_id": 219141}, {"caption": "steven spielberg's movie posters are set to music", "video_id": "video11040", "sen_id": 219142}, {"caption": "titles and reel scenes of a close encounter indiana jones et and a shark from popular movies directed by steven spielberg have white edges with film perforations", "video_id": "video11040", "sen_id": 219143}, {"caption": "movie posters for close encounters indiana jones et and jaws are displayed on a wall", "video_id": "video11040", "sen_id": 219144}, {"caption": "there is a demonstration of top five movies of the year", "video_id": "video11040", "sen_id": 219145}, {"caption": "science fiction music plays while the covers of several movies are shown back to back", "video_id": "video11040", "sen_id": 219146}, {"caption": "more images and posters are showed", "video_id": "video11040", "sen_id": 219147}, {"caption": "a collection of famous movie posters all relate to a single director", "video_id": "video11040", "sen_id": 219148}, {"caption": "music plays over images of various famous films", "video_id": "video11040", "sen_id": 219149}, {"caption": "its a bout the hollywood film indiana jones movie", "video_id": "video11040", "sen_id": 219150}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11040", "sen_id": 219151}, {"caption": "an image of space appears before an ad for indiana jones then et then jaws", "video_id": "video11040", "sen_id": 219152}, {"caption": "a slide reel showing a personal list of steven spielberg s top five films", "video_id": "video11040", "sen_id": 219153}, {"caption": "list of classic movies being broadcast on screen", "video_id": "video11040", "sen_id": 219154}, {"caption": "there are some movie posters with new design", "video_id": "video11040", "sen_id": 219155}, {"caption": "video showing some advertisement of some movies", "video_id": "video11040", "sen_id": 219156}, {"caption": "a slide show about the old holly wood movies", "video_id": "video11040", "sen_id": 219157}, {"caption": "an indian jones reel is playing and show different movies", "video_id": "video11040", "sen_id": 219158}, {"caption": "some film reels are being shown on a tv show", "video_id": "video11040", "sen_id": 219159}, {"caption": "a man is speaking into a microphone about the location he is currently at", "video_id": "video11712", "sen_id": 219160}, {"caption": "a man in a yellow shirt is speaking in to a microphone to someone", "video_id": "video11712", "sen_id": 219161}, {"caption": "a man looking for a job is interviewed during a job fair", "video_id": "video11712", "sen_id": 219162}, {"caption": "indian man in yellow shirt being interviewed about his degree", "video_id": "video11712", "sen_id": 219163}, {"caption": "a foreiner talking about something i cant understand", "video_id": "video11712", "sen_id": 219164}, {"caption": "a young man appears slightly nervous as he is being inerviewed", "video_id": "video11712", "sen_id": 219165}, {"caption": "there is a man in yellow shirt talking with a mic", "video_id": "video11712", "sen_id": 219166}, {"caption": "a man wearing yellow shirt is giving interview why he came to concern acadmey", "video_id": "video11712", "sen_id": 219167}, {"caption": "a man talking on an interview with another person", "video_id": "video11712", "sen_id": 219168}, {"caption": "two men having a conversation in an interview", "video_id": "video11712", "sen_id": 219169}, {"caption": "a man in a yellow shirt is talking about looking for an entry level job", "video_id": "video11712", "sen_id": 219170}, {"caption": "a graduate student speaking to one regarding the job looking", "video_id": "video11712", "sen_id": 219171}, {"caption": "a man is talking about making a new connection to a man interviewing him", "video_id": "video11712", "sen_id": 219172}, {"caption": "mr anil wagh is giving an interview at north dakota university discussing connections for jobs", "video_id": "video11712", "sen_id": 219173}, {"caption": "a man in a nicer looking shirt giving an interview", "video_id": "video11712", "sen_id": 219174}, {"caption": "a graduate student a banner behind him speaks into the microphone", "video_id": "video11712", "sen_id": 219175}, {"caption": "a man is being interviewed by a person", "video_id": "video11712", "sen_id": 219176}, {"caption": "anil waugh north dakota university talks about one", "video_id": "video11712", "sen_id": 219177}, {"caption": "a man in yellow is interviewed by a news network", "video_id": "video11712", "sen_id": 219178}, {"caption": "a guy with sandal colour dress is talking with another person", "video_id": "video11712", "sen_id": 219179}, {"caption": "a man is holding up packaged wigs and discussing who will wear them", "video_id": "video10660", "sen_id": 219180}, {"caption": "a man has some halloween wigs that he has just bought spread out on a table and is describing who in his family will be wearing what wig", "video_id": "video10660", "sen_id": 219181}, {"caption": "a man is discussing various wigs for his costumes for his family", "video_id": "video10660", "sen_id": 219182}, {"caption": "a man describes various colored wigs that this family will be wearing", "video_id": "video10660", "sen_id": 219183}, {"caption": "a man discusses different types of wigs with a woman indicating which wigs they plan to wear", "video_id": "video10660", "sen_id": 219184}, {"caption": "three adults discuss halloween costumes they are preparing to wear", "video_id": "video10660", "sen_id": 219185}, {"caption": "a group of people standing around a table full of chips and wigs", "video_id": "video10660", "sen_id": 219186}, {"caption": "a man holding a wig and talking about wearing it", "video_id": "video10660", "sen_id": 219187}, {"caption": "a man and a woman are standing at a dining room table discussing who is going to wear which of several different colored wigs", "video_id": "video10660", "sen_id": 219188}, {"caption": "two people discuss what kind of wigs to wear for costumes", "video_id": "video10660", "sen_id": 219189}, {"caption": "some one showing the front page of magazines in their home", "video_id": "video10660", "sen_id": 219190}, {"caption": "a man is holding a variety of wigs and explaining them", "video_id": "video10660", "sen_id": 219191}, {"caption": "a man shows packages of wigs and prepares for dressing up with girl friend", "video_id": "video10660", "sen_id": 219192}, {"caption": "a man is deciding which wig he will wear and which wig his friends will wear", "video_id": "video10660", "sen_id": 219193}, {"caption": "a person watching the products buying from market", "video_id": "video10660", "sen_id": 219194}, {"caption": "a person is looking at hair piece that is on a table", "video_id": "video10660", "sen_id": 219195}, {"caption": "a person showing various readymade wigs in different colors to his wife", "video_id": "video10660", "sen_id": 219196}, {"caption": "a guy introducing the blue and purple wigs for his family", "video_id": "video10660", "sen_id": 219197}, {"caption": "a man is showing some photographs to choose lying on table", "video_id": "video10660", "sen_id": 219198}, {"caption": "some people are playing with bags of things", "video_id": "video10660", "sen_id": 219199}, {"caption": "a woman with yellow in her hair is talking to a man in a white shirt", "video_id": "video10142", "sen_id": 219200}, {"caption": "a woman with a bunch of head jewelry is arguing with a man", "video_id": "video10142", "sen_id": 219201}, {"caption": "a woman who is upset talking quickly to a man in front of her", "video_id": "video10142", "sen_id": 219202}, {"caption": "a woman with flowers in her hair is talking to someone", "video_id": "video10142", "sen_id": 219203}, {"caption": "an indian woman in an elaborate headess woman talks to a man passionately", "video_id": "video10142", "sen_id": 219204}, {"caption": "a woman appears to be upset and talks quickly to a man in white", "video_id": "video10142", "sen_id": 219205}, {"caption": "a young indian woman talking to a man", "video_id": "video10142", "sen_id": 219206}, {"caption": "an argument in a foreign movie between a man and woman", "video_id": "video10142", "sen_id": 219207}, {"caption": "a young beautiful indian women in a white dress is talking to a man", "video_id": "video10142", "sen_id": 219208}, {"caption": "a woman lectures a man while holding a piece of paper", "video_id": "video10142", "sen_id": 219209}, {"caption": "a woman is talking to a man in a foreign language", "video_id": "video10142", "sen_id": 219210}, {"caption": "a woman speaks and gestures angrily at a man", "video_id": "video10142", "sen_id": 219211}, {"caption": "a woman and a man are standing talking and the woman is waving a paper in the man s face", "video_id": "video10142", "sen_id": 219212}, {"caption": "a video movie scene a person in white dress standing speaking with girl wearing flower in head and paper in hand discusing about role of movie displaying on screen", "video_id": "video10142", "sen_id": 219213}, {"caption": "a woman with some yellow head dress is talking", "video_id": "video10142", "sen_id": 219214}, {"caption": "a man and a lady having a querral", "video_id": "video10142", "sen_id": 219215}, {"caption": "a bride is arguing with her dad", "video_id": "video10142", "sen_id": 219216}, {"caption": "a bollywood film trailer features an indian woman giving a long dialogue to a male actor off camera", "video_id": "video10142", "sen_id": 219217}, {"caption": "a woman with a piece of paper talking heatedly to a man in a white shirt", "video_id": "video10142", "sen_id": 219218}, {"caption": "a man gets ranted at by a woman in a flower headdress", "video_id": "video10142", "sen_id": 219219}, {"caption": "a chef is making a maple syrup chili sauce starting with a simple syrup", "video_id": "video10252", "sen_id": 219220}, {"caption": "a pan of boiling sugar is lifted by a man wearing black", "video_id": "video10252", "sen_id": 219221}, {"caption": "a narrator talking about the guy cooking", "video_id": "video10252", "sen_id": 219222}, {"caption": "in a kitchen two men are cooking on the stove", "video_id": "video10252", "sen_id": 219223}, {"caption": "a man is showing another man how to cook food", "video_id": "video10252", "sen_id": 219224}, {"caption": "a chef works on a recipe by adding spices to a pot of hot oil", "video_id": "video10252", "sen_id": 219225}, {"caption": "a man is cooking chili peppers into a syrup or sauce for meat", "video_id": "video10252", "sen_id": 219226}, {"caption": "a chef talks about a recipe and adds some spices to some hot oil", "video_id": "video10252", "sen_id": 219227}, {"caption": "two men are in a kitchen preparing to cook some sort of meat", "video_id": "video10252", "sen_id": 219228}, {"caption": "a male chef is in a kitchen with another male guest describing how to add finely chopped pieces of chili to a sauce in a silver sauce pan", "video_id": "video10252", "sen_id": 219229}, {"caption": "a man cooking with a liquid in which he adds chopped chilies", "video_id": "video10252", "sen_id": 219230}, {"caption": "there is a man boiling some oil in a pan", "video_id": "video10252", "sen_id": 219231}, {"caption": "oil boiling in a vessel and the cook takes it then puts some powder in it", "video_id": "video10252", "sen_id": 219232}, {"caption": "a woman explains to a man her methodology for cooking a meal as a pot with oil is heated on the stove", "video_id": "video10252", "sen_id": 219233}, {"caption": "two men cooking in a home heating up a pot with some oil then adding some spices", "video_id": "video10252", "sen_id": 219234}, {"caption": "a women is cooking in the kitchen with ingredients", "video_id": "video10252", "sen_id": 219235}, {"caption": "a man explaining about something to another man", "video_id": "video10252", "sen_id": 219236}, {"caption": "two men are in the kitchen one of them is adding finely chopped pieces of chili to a boiling liquid", "video_id": "video10252", "sen_id": 219237}, {"caption": "two men are cooking in a kitchen together", "video_id": "video10252", "sen_id": 219238}, {"caption": "a man adds peppers to oil when making delicious food", "video_id": "video10252", "sen_id": 219239}, {"caption": "a woman is posing for a photoshoot in colorful attire", "video_id": "video11147", "sen_id": 219240}, {"caption": "different people are shown to help out avril lavigne make a video", "video_id": "video11147", "sen_id": 219241}, {"caption": "a famous singer is modeling and taking pictures", "video_id": "video11147", "sen_id": 219242}, {"caption": "woman poses for camera shots while her sung in the background", "video_id": "video11147", "sen_id": 219243}, {"caption": "a woman with long hair is posing for a photo shoot", "video_id": "video11147", "sen_id": 219244}, {"caption": "a man in a white t-shirt makes heart shapes with his hands", "video_id": "video11147", "sen_id": 219245}, {"caption": "a blonde avril lavigne sitting on a white background doing modeling poses", "video_id": "video11147", "sen_id": 219246}, {"caption": "a lady with a smposing for people behind cameras", "video_id": "video11147", "sen_id": 219247}, {"caption": "there is a woman in front of a red wall getting her picture taken followed by a man holding a heart shape out of his hands and another photo shoot of the woman", "video_id": "video11147", "sen_id": 219248}, {"caption": "a girl sings and poses for a music video as words flash on the screen", "video_id": "video11147", "sen_id": 219249}, {"caption": "a young woman singing while wearing a pink hoodie", "video_id": "video11147", "sen_id": 219250}, {"caption": "a man wearing white color dress is talking", "video_id": "video11147", "sen_id": 219251}, {"caption": "a pop star avril lavine is posing for her hit pop song in pink hoodie", "video_id": "video11147", "sen_id": 219252}, {"caption": "blonde woman with nice body is having photo session", "video_id": "video11147", "sen_id": 219253}, {"caption": "the reason i love u is beautifully put in enchanting music", "video_id": "video11147", "sen_id": 219254}, {"caption": "an album song about the love and a women is giving photo-shoot and the person express her love through a song", "video_id": "video11147", "sen_id": 219255}, {"caption": "a song is playing in the background while a woman is photographed", "video_id": "video11147", "sen_id": 219256}, {"caption": "a man is doing action and a girl is singing", "video_id": "video11147", "sen_id": 219257}, {"caption": "singer avril lavigne singing about being in love", "video_id": "video11147", "sen_id": 219258}, {"caption": "a woman in a pink outfit is sitting", "video_id": "video11147", "sen_id": 219259}, {"caption": "a dark haired girl is answering a question about terrorism", "video_id": "video12215", "sen_id": 219260}, {"caption": "a female is discussing fear surrounding the paris attacks", "video_id": "video12215", "sen_id": 219261}, {"caption": "a young woman answers an interview question about politics", "video_id": "video12215", "sen_id": 219262}, {"caption": "a woman discusses the paris attacks and how the president has responded", "video_id": "video12215", "sen_id": 219263}, {"caption": "a young woman answers a question regarding recent terror attacks on a television show", "video_id": "video12215", "sen_id": 219264}, {"caption": "a woman discussing about paris attack on tv and its implications", "video_id": "video12215", "sen_id": 219265}, {"caption": "two persons are talking on the show with ease", "video_id": "video12215", "sen_id": 219266}, {"caption": "a woman and a man talking to each other on a talk show about the paris attacks", "video_id": "video12215", "sen_id": 219267}, {"caption": "a girl is talking in an interview she wore white and black dress", "video_id": "video12215", "sen_id": 219268}, {"caption": "the beautiful girl in black design dress is speaking to someone in the talk show", "video_id": "video12215", "sen_id": 219269}, {"caption": "a young brunette female is asked a question by a man with a british accent and responds the topic appears to be related to politics and terrorism", "video_id": "video12215", "sen_id": 219270}, {"caption": "an interview is going on in a tv show", "video_id": "video12215", "sen_id": 219271}, {"caption": "a young woman with long brown hair sets on a couch and talks about terrorism", "video_id": "video12215", "sen_id": 219272}, {"caption": "a woman is sitting on a couch talking to a man in an interview", "video_id": "video12215", "sen_id": 219273}, {"caption": "it is a mandapam named after chandrasekharendra saraswathi where a reseach center being shown a ladey is entering the buiding and two person are walking in front of the same", "video_id": "video12215", "sen_id": 219274}, {"caption": "a girl in printed dress is talking to somebody here", "video_id": "video12215", "sen_id": 219275}, {"caption": "reporter discussing the after math of the attack in the town", "video_id": "video12215", "sen_id": 219276}, {"caption": "a long haired white woman wearing a patterned top over a pink polo is being interviewed by someone", "video_id": "video12215", "sen_id": 219277}, {"caption": "a young girl is answering questions and commentary about the paris attacks", "video_id": "video12215", "sen_id": 219278}, {"caption": "a woman is talking to someone about politlca issues", "video_id": "video12215", "sen_id": 219279}, {"caption": "a big white snowman like creature is ai and is telling you what he is capable of doing", "video_id": "video10096", "sen_id": 219280}, {"caption": "a cartoon robot named baymax introduces a gag reel", "video_id": "video10096", "sen_id": 219281}, {"caption": "a fat white robot introduces itself as baymax explains that it is my personal healthcare companion and recommends a video which will bring happiness through laughter", "video_id": "video10096", "sen_id": 219282}, {"caption": "a large white cartoon robot introduces himself as a healthcare companion", "video_id": "video10096", "sen_id": 219283}, {"caption": "there is a white monster standing in a hazardous room and waiving", "video_id": "video10096", "sen_id": 219284}, {"caption": "a white cartoon in a room with a robot arm", "video_id": "video10096", "sen_id": 219285}, {"caption": "a computerized plump white character in a lab introduces himself", "video_id": "video10096", "sen_id": 219286}, {"caption": "a large white robot talks about a gag reel that he thinks is funny", "video_id": "video10096", "sen_id": 219287}, {"caption": "a big white character putting up his hand then lowering it", "video_id": "video10096", "sen_id": 219288}, {"caption": "a white fluffy character waving it's arm in a laboratory room", "video_id": "video10096", "sen_id": 219289}, {"caption": "a big white animated figure is waving to the camera", "video_id": "video10096", "sen_id": 219290}, {"caption": "a plump rounded disney character is looking at the camera and speaking", "video_id": "video10096", "sen_id": 219291}, {"caption": "an oversized white robot is in a control room talking", "video_id": "video10096", "sen_id": 219292}, {"caption": "fat white bunny 3d animation character talking about something", "video_id": "video10096", "sen_id": 219293}, {"caption": "a big white robot is talking about health care", "video_id": "video10096", "sen_id": 219294}, {"caption": "an white colour weaving hand cartoon show dispalying", "video_id": "video10096", "sen_id": 219295}, {"caption": "a cartoon character is gesticulating in an activity room or a garage", "video_id": "video10096", "sen_id": 219296}, {"caption": "the white colour penguin type doll explaining some care tips", "video_id": "video10096", "sen_id": 219297}, {"caption": "a robot is waving at me he is fat and white", "video_id": "video10096", "sen_id": 219298}, {"caption": "a robot is controlling traffic and it is displayed in a show", "video_id": "video10096", "sen_id": 219299}, {"caption": "man in white suit showing how to use math to predict hurricanes", "video_id": "video12942", "sen_id": 219300}, {"caption": "a professor is giving a math presentation with complex problems", "video_id": "video12942", "sen_id": 219301}, {"caption": "a person talks about the weather on a program", "video_id": "video12942", "sen_id": 219302}, {"caption": "math used to predict events", "video_id": "video12942", "sen_id": 219303}, {"caption": "a man talks about using mathematical equations to predict the weather", "video_id": "video12942", "sen_id": 219304}, {"caption": "a man in a white shirt talking about hurricane sandy", "video_id": "video12942", "sen_id": 219305}, {"caption": "a screen shows different images while a man explains what they are", "video_id": "video12942", "sen_id": 219306}, {"caption": "a weather forecaster is explaining how scientists predict weather", "video_id": "video12942", "sen_id": 219307}, {"caption": "a man describes how he predicted surge waters", "video_id": "video12942", "sen_id": 219308}, {"caption": "a scientist discusses his ability to predict storm surge associated with a hurricane", "video_id": "video12942", "sen_id": 219309}, {"caption": "a man standing in front of mic and graph displaying on screen speaking on topic displaying on screen", "video_id": "video12942", "sen_id": 219310}, {"caption": "a man in white shirt talking with a mic", "video_id": "video12942", "sen_id": 219311}, {"caption": "mathematics solving problem", "video_id": "video12942", "sen_id": 219312}, {"caption": "tall black cabinets are in rows in a white office with ceiling and floor panels water covers gray slanted ground by columns and trees", "video_id": "video12942", "sen_id": 219313}, {"caption": "a presenter discusses academic research models in attempts to predict hurricane sandy", "video_id": "video12942", "sen_id": 219314}, {"caption": "a person is showing mathematical equation for the problem", "video_id": "video12942", "sen_id": 219315}, {"caption": "there is a man talking about measurements in architecture", "video_id": "video12942", "sen_id": 219316}, {"caption": "a scientist talks about predicting hurricanes in front of pages of numbers", "video_id": "video12942", "sen_id": 219317}, {"caption": "andy use to solve problems like these sum", "video_id": "video12942", "sen_id": 219318}, {"caption": "a man talking about hurricane sandie with charts and math problems", "video_id": "video12942", "sen_id": 219319}, {"caption": "a man discussing a deal he made for a man if he would direct a movie", "video_id": "video12060", "sen_id": 219320}, {"caption": "a mans is sitting and talking to a man about production of a scene", "video_id": "video12060", "sen_id": 219321}, {"caption": "a man describes a meeting with a writer who he was hoping would work on a film with him", "video_id": "video12060", "sen_id": 219322}, {"caption": "a man sits across from another man and tells him a story", "video_id": "video12060", "sen_id": 219323}, {"caption": "two men talk together about a movie they plan on making together", "video_id": "video12060", "sen_id": 219324}, {"caption": "a white man in a blue button down shirt is seated and talking to another male", "video_id": "video12060", "sen_id": 219325}, {"caption": "there are two people discussing a matter inside the room", "video_id": "video12060", "sen_id": 219326}, {"caption": "a man is talking with a black shirt with another man", "video_id": "video12060", "sen_id": 219327}, {"caption": "a movie director and producer is talking to scottish actor ewan mcgregor about the creation process of a film", "video_id": "video12060", "sen_id": 219328}, {"caption": "guy in grey shirt talking to the camera", "video_id": "video12060", "sen_id": 219329}, {"caption": "two men sit and talk with each other about a script", "video_id": "video12060", "sen_id": 219330}, {"caption": "a young man talking about scenes from a movie and showing people in the park", "video_id": "video12060", "sen_id": 219331}, {"caption": "an entertainment reporter talks to a famous actor about a series of stories", "video_id": "video12060", "sen_id": 219332}, {"caption": "two men sitting in a room talking about life stories", "video_id": "video12060", "sen_id": 219333}, {"caption": "a man on tv is sitting down and talking", "video_id": "video12060", "sen_id": 219334}, {"caption": "a man explaining to another man about his film", "video_id": "video12060", "sen_id": 219335}, {"caption": "the woman with curly hair is walking down wards from the steps and she have small bag in her hand", "video_id": "video12060", "sen_id": 219336}, {"caption": "two white men with brown hair sitting on the steps discussing things", "video_id": "video12060", "sen_id": 219337}, {"caption": "there are two men talking in a studio and a woman walking outdoors", "video_id": "video12060", "sen_id": 219338}, {"caption": "some people are walking around in a field outside", "video_id": "video12060", "sen_id": 219339}, {"caption": "short cuts of nature and city scenery with background music and a man giving commentary", "video_id": "video10028", "sen_id": 219340}, {"caption": "a mountainscape is shown full of snow right on it", "video_id": "video10028", "sen_id": 219341}, {"caption": "a man discusses the aspects and traits of the city of denver", "video_id": "video10028", "sen_id": 219342}, {"caption": "red rocky mountains rocky mountains and the city of denver", "video_id": "video10028", "sen_id": 219343}, {"caption": "a group of young people walk up the bleachers at the red rocks concert venue", "video_id": "video10028", "sen_id": 219344}, {"caption": "scenes of denver colorado are being displayed while music plays in the background", "video_id": "video10028", "sen_id": 219345}, {"caption": "a montage of multiple places around the world apparently", "video_id": "video10028", "sen_id": 219346}, {"caption": "the persons are moving on the mountains and in nature environment", "video_id": "video10028", "sen_id": 219347}, {"caption": "a short video introducing the city of dever", "video_id": "video10028", "sen_id": 219348}, {"caption": "there are mountains a city skyline covered in snow and ice on a sunny day", "video_id": "video10028", "sen_id": 219349}, {"caption": "scenes of a large city in the mountains and a scene of people walking up steps", "video_id": "video10028", "sen_id": 219350}, {"caption": "a man is describing a beautiful view of the mountains near the western city of denver", "video_id": "video10028", "sen_id": 219351}, {"caption": "a beautiful city surrounded by high plains and mountains", "video_id": "video10028", "sen_id": 219352}, {"caption": "people walk on stadium bleachers up a mountain in a desert setting the city of denver is showing against a backdrop of mountains", "video_id": "video10028", "sen_id": 219353}, {"caption": "a person is showing mountains and monuments in the city", "video_id": "video10028", "sen_id": 219354}, {"caption": "various views from the top of a mountain followed by a shot of downtown denver", "video_id": "video10028", "sen_id": 219355}, {"caption": "a man s voice is talking about the state of colorado with a city and mountains", "video_id": "video10028", "sen_id": 219356}, {"caption": "tourists walks up and down a huge ancient arena", "video_id": "video10028", "sen_id": 219357}, {"caption": "tourism video for the city of denver on a snowy day", "video_id": "video10028", "sen_id": 219358}, {"caption": "some scenes of mountains are being shown out side", "video_id": "video10028", "sen_id": 219359}, {"caption": "a man pouring herbs and spices into a glass bowl", "video_id": "video11706", "sen_id": 219360}, {"caption": "a man putting several different herbs and ingredients into a bowl", "video_id": "video11706", "sen_id": 219361}, {"caption": "a person listing ingredients such as ground pepper fresh basil chopped rosemary chopped thyme and cyan pepper", "video_id": "video11706", "sen_id": 219362}, {"caption": "a man describes and demonstrates the amount of spices that should be combined in a recipe", "video_id": "video11706", "sen_id": 219363}, {"caption": "a person pours spices and herbs into a large glass bowl", "video_id": "video11706", "sen_id": 219364}, {"caption": "a man keeps ingredients ready in a bowl to prepare food", "video_id": "video11706", "sen_id": 219365}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11706", "sen_id": 219366}, {"caption": "in a kitchen man is preparing to mix vegetables leaves", "video_id": "video11706", "sen_id": 219367}, {"caption": "a man adds two table spoons of ground black pepper four spoons of fresh chopped basel and four table spoons of rose mary into a to glass bowl", "video_id": "video11706", "sen_id": 219368}, {"caption": "something in green colour is put inside a bigger glass bowl from three small bowls and at last a red coloured substance is poured inside the big glass bowl", "video_id": "video11706", "sen_id": 219369}, {"caption": "a cook adds ingredients to a bowl one at a time", "video_id": "video11706", "sen_id": 219370}, {"caption": "in the kitchena man preparing a dish with glass pan", "video_id": "video11706", "sen_id": 219371}, {"caption": "a man pouring cooking ingredients from small clear bowls into a large clear bowl on a countertop", "video_id": "video11706", "sen_id": 219372}, {"caption": "a chef mixing raw ingredients in the bowl", "video_id": "video11706", "sen_id": 219373}, {"caption": "woman preparing some meal and describing the ingridients", "video_id": "video11706", "sen_id": 219374}, {"caption": "a person is pouring stuff into a glass bowl", "video_id": "video11706", "sen_id": 219375}, {"caption": "there is a man preparing a dish on the table", "video_id": "video11706", "sen_id": 219376}, {"caption": "a man is mixing ingredients into a clear glass bowl", "video_id": "video11706", "sen_id": 219377}, {"caption": " chopped basil chopped rosemary chopped time and cayenne pepper are being added together in a bowl to make a dressing", "video_id": "video11706", "sen_id": 219378}, {"caption": "someoneis pouring green herbs into a bowl", "video_id": "video11706", "sen_id": 219379}, {"caption": "a man asks why nasa focused it's attention on a glowing object in space", "video_id": "video11846", "sen_id": 219380}, {"caption": "a man is streaming a video with him in the corner talking about it", "video_id": "video11846", "sen_id": 219381}, {"caption": "a guy in blue dress is talking about the glowing star in the distance which was ignored by nasa", "video_id": "video11846", "sen_id": 219382}, {"caption": "a person is speaking about the moon at night", "video_id": "video11846", "sen_id": 219383}, {"caption": "a man giving an explanation", "video_id": "video11846", "sen_id": 219384}, {"caption": "a person in blue speaking about a bright full moon on the sky", "video_id": "video11846", "sen_id": 219385}, {"caption": "a person in blue is explaining about a bright star in the sky", "video_id": "video11846", "sen_id": 219386}, {"caption": "a blue tshirt man talking from the studio", "video_id": "video11846", "sen_id": 219387}, {"caption": "a man in a blue shirt discussing a bright white light in the night sky", "video_id": "video11846", "sen_id": 219388}, {"caption": "a man is looking a moon light or sun light", "video_id": "video11846", "sen_id": 219389}, {"caption": "a guy is filming himself as he plays", "video_id": "video11846", "sen_id": 219390}, {"caption": "a man in blue shirt asking questions as to why nasa is investigating a glowing light", "video_id": "video11846", "sen_id": 219391}, {"caption": "there is a man in blue dressing talking with webcam", "video_id": "video11846", "sen_id": 219392}, {"caption": "a man commentating on a glowing object that nasa spotted and questioning why they wanted to look at it", "video_id": "video11846", "sen_id": 219393}, {"caption": "a man is discussing that nasa has turned their camera s to look at a glowing object in the sky", "video_id": "video11846", "sen_id": 219394}, {"caption": "someone is filming a ufo in the sky", "video_id": "video11846", "sen_id": 219395}, {"caption": "a man in black shirt is explaining something", "video_id": "video11846", "sen_id": 219396}, {"caption": "one man talks about a light in the far", "video_id": "video11846", "sen_id": 219397}, {"caption": "a man in blue color shirt wearing dress sitting and speaking displaying on screen", "video_id": "video11846", "sen_id": 219398}, {"caption": "a man inquires why nasa would want to look at this glowing object", "video_id": "video11846", "sen_id": 219399}, {"caption": "a person is showing a closeup of a crochet", "video_id": "video10940", "sen_id": 219400}, {"caption": "a woman is showing how to make a tutu with tulle", "video_id": "video10940", "sen_id": 219401}, {"caption": "a person is showing off the crochet on the stand", "video_id": "video10940", "sen_id": 219402}, {"caption": "a woman discusses an article of clothing that she is working on", "video_id": "video10940", "sen_id": 219403}, {"caption": "a woman is doing a video tutorial on how to make a girls hair bow with crochet material", "video_id": "video10940", "sen_id": 219404}, {"caption": "a woman is showing off a dress she is making", "video_id": "video10940", "sen_id": 219405}, {"caption": "a female voiceover uses hands to explain how to prepare a white piece of clothing", "video_id": "video10940", "sen_id": 219406}, {"caption": "a woman attaches pieces of ivory net onto a sequined garment", "video_id": "video10940", "sen_id": 219407}, {"caption": "a person showing the dress materialwith gold and white colour", "video_id": "video10940", "sen_id": 219408}, {"caption": "a woman is explaining a type of sewing procedure", "video_id": "video10940", "sen_id": 219409}, {"caption": "a woman demonstrates how to add decorations to the bottom part of a ladies shirt", "video_id": "video10940", "sen_id": 219410}, {"caption": "the women telling about a dress material that is a net peace", "video_id": "video10940", "sen_id": 219411}, {"caption": "a women is feeling the cream color cloth material", "video_id": "video10940", "sen_id": 219412}, {"caption": "a female hand is touching sheer white ribbon which is attached to the hem of a knitted cream-colored tube which is placed around a plastic form on a supporting rod", "video_id": "video10940", "sen_id": 219413}, {"caption": "a woman is making an ivory garmet by sewing fabric together", "video_id": "video10940", "sen_id": 219414}, {"caption": "here a designer explaining about the dress on the screen", "video_id": "video10940", "sen_id": 219415}, {"caption": "the screen shows a piece of knotted or woven white cloth and a person s hands", "video_id": "video10940", "sen_id": 219416}, {"caption": "a dress designer making final output of readymade dress", "video_id": "video10940", "sen_id": 219417}, {"caption": "a female is knitting a ivory dresswhich preferred to used as wedding dresses", "video_id": "video10940", "sen_id": 219418}, {"caption": "the woman adds sheer ribbon to the white fabric", "video_id": "video10940", "sen_id": 219419}, {"caption": "scientists prepare rat poison bait pellets for use on rat island", "video_id": "video12621", "sen_id": 219420}, {"caption": "a man who is adding ingredients in to a large mixer then picking up a bucket of pellets", "video_id": "video12621", "sen_id": 219421}, {"caption": "a man wearing a white lab coat uses a purple scooper to measure out grain from a large paper bag into an industrial mixer with dough hook", "video_id": "video12621", "sen_id": 219422}, {"caption": "a man in a lab coat using machinery and showing pellets in a bucket", "video_id": "video12621", "sen_id": 219423}, {"caption": "a woman talks about rodent bait for a place called rat island", "video_id": "video12621", "sen_id": 219424}, {"caption": "a man in a lab coat studies soil and other green compounds", "video_id": "video12621", "sen_id": 219425}, {"caption": "a woman is explaining pellets used on rats by scientists", "video_id": "video12621", "sen_id": 219426}, {"caption": "a man in a white lab coat hoists a bucket of pellets", "video_id": "video12621", "sen_id": 219427}, {"caption": "a blonde man in a white lab coat operates a metallic machine and lifts a bucket filled with lime green pellets", "video_id": "video12621", "sen_id": 219428}, {"caption": "a narrator describes the baiting of rats on rat island while the white lab coat technician prepares the rat pellets in several steps", "video_id": "video12621", "sen_id": 219429}, {"caption": "a man mixing flower in a industrial mixer and picking up a bucket of green pellets", "video_id": "video12621", "sen_id": 219430}, {"caption": "a man in a white lab coat uses a large industrial mixer to prepare dough and then displays a bucketful of light green pellets", "video_id": "video12621", "sen_id": 219431}, {"caption": "a man in a long white coat using a large mixer and holding a large bucket with green objects in it", "video_id": "video12621", "sen_id": 219432}, {"caption": "a man in a white lab coat is using an industrial size stand mixer", "video_id": "video12621", "sen_id": 219433}, {"caption": "there is a scientist talking from a lab", "video_id": "video12621", "sen_id": 219434}, {"caption": "a man doing an experiment", "video_id": "video12621", "sen_id": 219435}, {"caption": "green rodent bait pellets are seen in a large container", "video_id": "video12621", "sen_id": 219436}, {"caption": "a man taking vegetables and grinding it", "video_id": "video12621", "sen_id": 219437}, {"caption": "scientists manufacture rat bait pellets specifically designed for aerial application", "video_id": "video12621", "sen_id": 219438}, {"caption": "a doctor pics some feed and put into machine", "video_id": "video12621", "sen_id": 219439}, {"caption": "a judge from asia's got talent discussing the show on the cnbc network", "video_id": "video10623", "sen_id": 219440}, {"caption": "a woman on a news show is discussing voting for asia's got talent", "video_id": "video10623", "sen_id": 219441}, {"caption": "a woman talking on a news station live interview", "video_id": "video10623", "sen_id": 219442}, {"caption": "a tv talent show judge discusses contestants on a news program", "video_id": "video10623", "sen_id": 219443}, {"caption": "a woman is speaking about television to other people in a show", "video_id": "video10623", "sen_id": 219444}, {"caption": "a woman with long black hair is talking about a television show", "video_id": "video10623", "sen_id": 219445}, {"caption": "a women in black dress is explaining about something", "video_id": "video10623", "sen_id": 219446}, {"caption": "there is a hot women talking from the studio", "video_id": "video10623", "sen_id": 219447}, {"caption": " with long black hair gestures in front of a skyline background with moving and slanted blue lines", "video_id": "video10623", "sen_id": 219448}, {"caption": "three newscasters discuss the judging in a talent type competition", "video_id": "video10623", "sen_id": 219449}, {"caption": "a girl in black dress sitting with two ladies beside speaking shaking hands", "video_id": "video10623", "sen_id": 219450}, {"caption": "women in tv show is discussing about something with the host", "video_id": "video10623", "sen_id": 219451}, {"caption": "a women in blue dress is telling news report", "video_id": "video10623", "sen_id": 219452}, {"caption": "a girl is talking in the cnbc channel", "video_id": "video10623", "sen_id": 219453}, {"caption": "a lady in black dress speaks in the cnbc tv she has black hairshe wore watch in the left hand", "video_id": "video10623", "sen_id": 219454}, {"caption": "a women with long straight hair is talking on a tv show", "video_id": "video10623", "sen_id": 219455}, {"caption": "a woman speaking about a fashion in a program show", "video_id": "video10623", "sen_id": 219456}, {"caption": "anggun-judge for asia s got talent speaks to cnbc", "video_id": "video10623", "sen_id": 219457}, {"caption": "three news casters discuss an election and the candidates running in the race", "video_id": "video10623", "sen_id": 219458}, {"caption": "a woman with dark long hair explaining to news reporters", "video_id": "video10623", "sen_id": 219459}, {"caption": "a painting is shown then a photo of a man then sketches of a gorilla", "video_id": "video10151", "sen_id": 219460}, {"caption": "discussing the many animals that made up the beast in the beauty and the beast", "video_id": "video10151", "sen_id": 219461}, {"caption": "a man is responsible for drawing cartoons for a project", "video_id": "video10151", "sen_id": 219462}, {"caption": "a man in a striped shirt sits at a table with a smile on his face", "video_id": "video10151", "sen_id": 219463}, {"caption": "a news reporter talks about the work of a famous artist", "video_id": "video10151", "sen_id": 219464}, {"caption": "there is an image of a man in the mist of a lot of paintings", "video_id": "video10151", "sen_id": 219465}, {"caption": "some one explains the famous pictures drawing on the paper", "video_id": "video10151", "sen_id": 219466}, {"caption": "in the explanation of the ancient time picture and their features", "video_id": "video10151", "sen_id": 219467}, {"caption": "a man discusses how paintings were used to help get the proper scenery look in a movie", "video_id": "video10151", "sen_id": 219468}, {"caption": "a man speaking how an animator made his characters look like animals", "video_id": "video10151", "sen_id": 219469}, {"caption": "a woman is explaining some world famous drawings", "video_id": "video10151", "sen_id": 219470}, {"caption": "a man pausing foe a picture while some drawings are of guerilla", "video_id": "video10151", "sen_id": 219471}, {"caption": "a photo montage of several renaissance-style paintings followed by a black and white picture of a man and several sketches", "video_id": "video10151", "sen_id": 219472}, {"caption": "a man is talking about how to get the european look", "video_id": "video10151", "sen_id": 219473}, {"caption": "a man is narrating about the making of a cartoon movie", "video_id": "video10151", "sen_id": 219474}, {"caption": "it is describing some excellent pictures features and its specialities", "video_id": "video10151", "sen_id": 219475}, {"caption": "a man is speaking about animals and people in an animated movie", "video_id": "video10151", "sen_id": 219476}, {"caption": "a man is talking about a film and its playing", "video_id": "video10151", "sen_id": 219477}, {"caption": "a man talking about the animation process to draw the beast from beauty and the beast", "video_id": "video10151", "sen_id": 219478}, {"caption": "a person is explaining about a pictures and painting", "video_id": "video10151", "sen_id": 219479}, {"caption": "man giving humor commentary while playing a computer game", "video_id": "video10462", "sen_id": 219480}, {"caption": "a man narrating an online game called world of war craft", "video_id": "video10462", "sen_id": 219481}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10462", "sen_id": 219482}, {"caption": "a character in the game walks down the steps", "video_id": "video10462", "sen_id": 219483}, {"caption": "a man talks about world of warcraft and the super mario brothers movie while playing a game", "video_id": "video10462", "sen_id": 219484}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10462", "sen_id": 219485}, {"caption": "a man trying to narrate a video game video game is about one soldier fighting other creatures", "video_id": "video10462", "sen_id": 219486}, {"caption": "a character in a online role playing game is shown playing his character", "video_id": "video10462", "sen_id": 219487}, {"caption": "video game character riding through a large plain followed by minions", "video_id": "video10462", "sen_id": 219488}, {"caption": "an animated man on an animal descends the steps and passes through an electronic gate", "video_id": "video10462", "sen_id": 219489}, {"caption": "a world of warcraft character fighting other characters", "video_id": "video10462", "sen_id": 219490}, {"caption": "a man riding on an animal is shooting his enemies and then is shot by many who sorroundes him", "video_id": "video10462", "sen_id": 219491}, {"caption": "a guy is playing world of warcraft while he talks in the background", "video_id": "video10462", "sen_id": 219492}, {"caption": "a beast rider runs away from some creepy looking animals", "video_id": "video10462", "sen_id": 219493}, {"caption": "person is playing online game with lot of strategy", "video_id": "video10462", "sen_id": 219494}, {"caption": "video game being played with many different characters being attacked by dragon", "video_id": "video10462", "sen_id": 219495}, {"caption": "a role playing game inside of the game a character is riding on top of a creature", "video_id": "video10462", "sen_id": 219496}, {"caption": "a nerdy-sounding narrator plays world of warcraft and reminisces about the super mario bros", "video_id": "video10462", "sen_id": 219497}, {"caption": "man talking about world of warcraft", "video_id": "video10462", "sen_id": 219498}, {"caption": "a man is showing himself playing world of warcraft", "video_id": "video10462", "sen_id": 219499}, {"caption": "man displaying a dish with dancing shrimp at a restaurant", "video_id": "video11265", "sen_id": 219500}, {"caption": "a person lifts up a white dinner plate to reveal a dish containing small jumping shrimp in a green mass a man wearing a red pullover shirt eats some jumping shrimp from the table and dish and approves of the taste", "video_id": "video11265", "sen_id": 219501}, {"caption": "man is shown eating live grasshoppers from a plate served in asia", "video_id": "video11265", "sen_id": 219502}, {"caption": "when a man in a restaurant lifts a flat plate small green jumping shrimp hop from the ridged dish underneath onto the striped table", "video_id": "video11265", "sen_id": 219503}, {"caption": "a video of a man eating a dancing shrimp meal where the food is jumping out of the plate", "video_id": "video11265", "sen_id": 219504}, {"caption": "a man in a red shirt eating bugs on a plate", "video_id": "video11265", "sen_id": 219505}, {"caption": "a man showing a plate of food and another man eating a plate of food", "video_id": "video11265", "sen_id": 219506}, {"caption": "a man shows his dancing shrimp dinner in which the shrimp appear to jump from the plate", "video_id": "video11265", "sen_id": 219507}, {"caption": "a person is eating food on a dinning table", "video_id": "video11265", "sen_id": 219508}, {"caption": "a man in red tshirt taking some meal", "video_id": "video11265", "sen_id": 219509}, {"caption": "a man in red color round neck tshirt is doing some fun with his dinner", "video_id": "video11265", "sen_id": 219510}, {"caption": "dancing shrimp being served at a table with a man eating them", "video_id": "video11265", "sen_id": 219511}, {"caption": "man is preparing to eat then eating live bugs or shrimp", "video_id": "video11265", "sen_id": 219512}, {"caption": "it is a jumping worm that is to be eaten", "video_id": "video11265", "sen_id": 219513}, {"caption": "the bowl is full of a lot of jumping insects that the man eats", "video_id": "video11265", "sen_id": 219514}, {"caption": "dancing shrimps in white plates and a man eats them", "video_id": "video11265", "sen_id": 219515}, {"caption": "a man is eating a white bowl full of very small shrimp", "video_id": "video11265", "sen_id": 219516}, {"caption": "a man wearing red dress and eating some dish", "video_id": "video11265", "sen_id": 219517}, {"caption": "a man in red t-shirt is having a dancing shrimp dinner in a food court and enjoys having it", "video_id": "video11265", "sen_id": 219518}, {"caption": "a guy is talking about his plate of food", "video_id": "video11265", "sen_id": 219519}, {"caption": "a person is pulling a little kid on skis through snow", "video_id": "video11435", "sen_id": 219520}, {"caption": "the baby is standing the skis being pulled by his father as rap music plays", "video_id": "video11435", "sen_id": 219521}, {"caption": "a person pulling a child on skis with a pole", "video_id": "video11435", "sen_id": 219522}, {"caption": "a toddler wearing a yellow vest and a pair of skis is being towed through the snow by his father", "video_id": "video11435", "sen_id": 219523}, {"caption": "a person is dragging a child in the snow scatting board", "video_id": "video11435", "sen_id": 219524}, {"caption": "in the snow a small cute little boy trying to skating with the help of his father", "video_id": "video11435", "sen_id": 219525}, {"caption": "guy is teaching the kid how to ski on the icy mountain", "video_id": "video11435", "sen_id": 219526}, {"caption": "a kid skating with another person on a snow mountain", "video_id": "video11435", "sen_id": 219527}, {"caption": "a man pulling a kid on the skateboard", "video_id": "video11435", "sen_id": 219528}, {"caption": "one father practice his son how to skate in snow", "video_id": "video11435", "sen_id": 219529}, {"caption": "a little girl is being pulled on skies by her dad", "video_id": "video11435", "sen_id": 219530}, {"caption": "a kid is skiing in the snow covered land", "video_id": "video11435", "sen_id": 219531}, {"caption": "a man pulliing a small boy from a rope", "video_id": "video11435", "sen_id": 219532}, {"caption": "a father giving training to his child for skating on snow", "video_id": "video11435", "sen_id": 219533}, {"caption": "a lady hanging his baby on the snow by the rope", "video_id": "video11435", "sen_id": 219534}, {"caption": "a kid on skiis is being pulled by a man", "video_id": "video11435", "sen_id": 219535}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video11435", "sen_id": 219536}, {"caption": "a small child on skiis is being pulled by a rope by an adult man in a grey jacket", "video_id": "video11435", "sen_id": 219537}, {"caption": "a man is pulling a skating board with child is standing on it", "video_id": "video11435", "sen_id": 219538}, {"caption": "a young child wearing small ski shoes is being dragged in the snow by its father", "video_id": "video11435", "sen_id": 219539}, {"caption": "a man tells another man to talk to a third man about cars", "video_id": "video11211", "sen_id": 219540}, {"caption": "cars are discussed on top gear with one of the star of downton abbey", "video_id": "video11211", "sen_id": 219541}, {"caption": "two television presenters are having a conversation in the middle of an interview", "video_id": "video11211", "sen_id": 219542}, {"caption": "a group of people are sitting and two men are speaking", "video_id": "video11211", "sen_id": 219543}, {"caption": "two men are in studio and they are having conversation", "video_id": "video11211", "sen_id": 219544}, {"caption": "men talking on a stage surrounded by many people", "video_id": "video11211", "sen_id": 219545}, {"caption": "there is a black suit man talking in a program", "video_id": "video11211", "sen_id": 219546}, {"caption": "two men have a private conversation about the work one of the men is not doing well", "video_id": "video11211", "sen_id": 219547}, {"caption": "an old man is talking something to other person and all others are laughing", "video_id": "video11211", "sen_id": 219548}, {"caption": "guy in suit talking to the old guy as the other guy in glasses watches them", "video_id": "video11211", "sen_id": 219549}, {"caption": "there is a black suit man talking to a old man", "video_id": "video11211", "sen_id": 219550}, {"caption": "two men are talking and discussing", "video_id": "video11211", "sen_id": 219551}, {"caption": "two men are whispering about cars and another man looks on amusingly various people in the background laughing it off", "video_id": "video11211", "sen_id": 219552}, {"caption": "two guys wearing suits are sitting in green chairs in front of a crowd while talking", "video_id": "video11211", "sen_id": 219553}, {"caption": "a man with gray hair is talking on tv", "video_id": "video11211", "sen_id": 219554}, {"caption": "there is a suit man talking to his friend", "video_id": "video11211", "sen_id": 219555}, {"caption": "one man talks about something in a stage", "video_id": "video11211", "sen_id": 219556}, {"caption": "two man were talking and making dun in the hall and everyone were laughing", "video_id": "video11211", "sen_id": 219557}, {"caption": "a man talking to a group of people and other man sitting near him whispers something and whole group laughs", "video_id": "video11211", "sen_id": 219558}, {"caption": "two men on tv are laughing and talking", "video_id": "video11211", "sen_id": 219559}, {"caption": "two old drawing being panned while a man give narration", "video_id": "video12449", "sen_id": 219560}, {"caption": "king cladius is illustrated in black and white prints", "video_id": "video12449", "sen_id": 219561}, {"caption": "black and white printed illustrations are shown depicting the acts of a king", "video_id": "video12449", "sen_id": 219562}, {"caption": "three people kneel and look up at a man in a crown and other sleep in a field in a black and white painting", "video_id": "video12449", "sen_id": 219563}, {"caption": "its a art pictures displaying one by one", "video_id": "video12449", "sen_id": 219564}, {"caption": "hamlets ghostly father figure tells him he needs to murder his uncle to get his revenge but hamlets convicts himself that he s just going cray instead", "video_id": "video12449", "sen_id": 219565}, {"caption": "a man is speaking about a picture that is being shown", "video_id": "video12449", "sen_id": 219566}, {"caption": "a man saying that hamlet s father shows up as a ghost and tells him to do something", "video_id": "video12449", "sen_id": 219567}, {"caption": "a man narrates over some still art pictures", "video_id": "video12449", "sen_id": 219568}, {"caption": "a man telling a story about what a painting is showing", "video_id": "video12449", "sen_id": 219569}, {"caption": "a man telling the story of hamlet with illustrations showing", "video_id": "video12449", "sen_id": 219570}, {"caption": "drawings of three men bowing down to a higher person", "video_id": "video12449", "sen_id": 219571}, {"caption": "a man explains about some drawings drawn on the wall", "video_id": "video12449", "sen_id": 219572}, {"caption": "a picture of the story of hamlet is being seen a verbal description is being discussed uncle claudius is talked about", "video_id": "video12449", "sen_id": 219573}, {"caption": "a person is talking about the ancient arts", "video_id": "video12449", "sen_id": 219574}, {"caption": "a man describing a story talking about a ghost and someone named claudious", "video_id": "video12449", "sen_id": 219575}, {"caption": "old woodcuts showing scenes from shakespeare plays are shown as a man summarizes the stories", "video_id": "video12449", "sen_id": 219576}, {"caption": "an illustration of the play hamlet during the father s ghost scene", "video_id": "video12449", "sen_id": 219577}, {"caption": "cartoon people looks at a tall person and other figures sleeps on the grass", "video_id": "video12449", "sen_id": 219578}, {"caption": "some odd designs in a painting are showing", "video_id": "video12449", "sen_id": 219579}, {"caption": "a girl shows off her horse collection first she talks about her plastic horses then she shows the ribbons she got from a live horse show lastly she shows a horse model scene and a picture of her horse", "video_id": "video11950", "sen_id": 219580}, {"caption": "a woman is explaining the set up of the horse products on her dresser", "video_id": "video11950", "sen_id": 219581}, {"caption": "a woman that loves horses who is showing off her horse show ribbons", "video_id": "video11950", "sen_id": 219582}, {"caption": "a woman shows off her toy horses and show ribbons", "video_id": "video11950", "sen_id": 219583}, {"caption": "a group of plastic horses on a shelf next to smaller plastic horses", "video_id": "video11950", "sen_id": 219584}, {"caption": "a woman is showing ribbons she recieved for doing live shows and also a picture of her horse", "video_id": "video11950", "sen_id": 219585}, {"caption": "a girl videos and describes her collection of horse paraphernalia", "video_id": "video11950", "sen_id": 219586}, {"caption": "a girl describes ribbons and horse themed items on her desk", "video_id": "video11950", "sen_id": 219587}, {"caption": "a girl shows off her variety of horse based prizes and nic nacs", "video_id": "video11950", "sen_id": 219588}, {"caption": "a bunch of miniature horse statuettes", "video_id": "video11950", "sen_id": 219589}, {"caption": "a person is showing their science fair project with horse figurines and awards", "video_id": "video11950", "sen_id": 219590}, {"caption": "a man watches various toys kept in the table and just looks into some paper pieces", "video_id": "video11950", "sen_id": 219591}, {"caption": "a lady show her collection of ribbons and a picture of her horse on her desk", "video_id": "video11950", "sen_id": 219592}, {"caption": "a girl shows off all her horse show awards and horse themed display", "video_id": "video11950", "sen_id": 219593}, {"caption": "goats statue and photos are placed in the table", "video_id": "video11950", "sen_id": 219594}, {"caption": "a young woman shows ribbons she won and toy horses", "video_id": "video11950", "sen_id": 219595}, {"caption": "a person is videotaping her collection of ponies and pony pictures", "video_id": "video11950", "sen_id": 219596}, {"caption": "a woman is showing a model she made using horses", "video_id": "video11950", "sen_id": 219597}, {"caption": "a numbers of color horses of dolls standing displaying on screen", "video_id": "video11950", "sen_id": 219598}, {"caption": "some fake horses are standing on a table", "video_id": "video11950", "sen_id": 219599}, {"caption": "a blonde woman in a teal top eating lobster while talking about it", "video_id": "video11233", "sen_id": 219600}, {"caption": "a woman in a green tank top is sitting at a table eating lobster or maybe crab", "video_id": "video11233", "sen_id": 219601}, {"caption": "woman eats crab with old bay seasoning on the table", "video_id": "video11233", "sen_id": 219602}, {"caption": "a woman is sitting at a table dipping lobster in butter and tasting it", "video_id": "video11233", "sen_id": 219603}, {"caption": "a blonde woman sitting at a table and eating seafood", "video_id": "video11233", "sen_id": 219604}, {"caption": "a women in green top tasting the food on the table", "video_id": "video11233", "sen_id": 219605}, {"caption": " in a light green tank top sitting a table dipping crab in butter and eating it", "video_id": "video11233", "sen_id": 219606}, {"caption": "one women eating one tasty and delicious food", "video_id": "video11233", "sen_id": 219607}, {"caption": "a girl with green dress sitting on the table and tasting the food", "video_id": "video11233", "sen_id": 219608}, {"caption": "sexy blonde is tasting the ingredients of the recipe", "video_id": "video11233", "sen_id": 219609}, {"caption": "there is a woman with brown hair eating with butter", "video_id": "video11233", "sen_id": 219610}, {"caption": "one beautiful and lovely women eating in", "video_id": "video11233", "sen_id": 219611}, {"caption": "a blonde woman eating food with her fingers", "video_id": "video11233", "sen_id": 219612}, {"caption": "the lady eating something very tastly", "video_id": "video11233", "sen_id": 219613}, {"caption": "a woman in a green shirt is sitting and talking", "video_id": "video11233", "sen_id": 219614}, {"caption": "a blond women dressed in a green tank top is eating lobster at a small table", "video_id": "video11233", "sen_id": 219615}, {"caption": "one girl tasty and delicious food with butter and", "video_id": "video11233", "sen_id": 219616}, {"caption": "a blonde woman in a green tank top demonstrating how to take a portion of a crab claw dipping it in butter and saying how good it is", "video_id": "video11233", "sen_id": 219617}, {"caption": "a lady with green colour dress is eating something", "video_id": "video11233", "sen_id": 219618}, {"caption": "a woman in a green shirt is sitting down", "video_id": "video11233", "sen_id": 219619}, {"caption": "a man describing how to correctly cook the peppers", "video_id": "video10093", "sen_id": 219620}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video10093", "sen_id": 219621}, {"caption": "a person is using a spoon to saute a green vegetable in a skillet", "video_id": "video10093", "sen_id": 219622}, {"caption": "a man is talking while stirring two green leaves in a silver metal pan", "video_id": "video10093", "sen_id": 219623}, {"caption": "a person is cooking some peppers in the pan", "video_id": "video10093", "sen_id": 219624}, {"caption": "a man adds bay leaves to a pot on the stove", "video_id": "video10093", "sen_id": 219625}, {"caption": "two green jalapeno s or leaf-like objects are being fried and seasoned in a frying pan", "video_id": "video10093", "sen_id": 219626}, {"caption": "a person in the kitchen cookingtalking and music was playing", "video_id": "video10093", "sen_id": 219627}, {"caption": "a chef has added sliced peppers and seasonings to a pan and is trying to cook them on the stove", "video_id": "video10093", "sen_id": 219628}, {"caption": "a person is cooking in kitchen add with few ingredient in the hot pan", "video_id": "video10093", "sen_id": 219629}, {"caption": "a person is seasoning some peppers in a dish", "video_id": "video10093", "sen_id": 219630}, {"caption": "a man voice in background is explaining what and how to cook the recipe a pan with little hot oil for frying leave and adding spices it looks like cumin seeds", "video_id": "video10093", "sen_id": 219631}, {"caption": "a pot with peppers is stirred back and forth with a spoon then salt is added until boiling", "video_id": "video10093", "sen_id": 219632}, {"caption": "a person places food in a frying man and cooks it with other ingredients", "video_id": "video10093", "sen_id": 219633}, {"caption": "a man seasons and cooks vegetables in a pan", "video_id": "video10093", "sen_id": 219634}, {"caption": "into a vessel on flames two leaves are being fried by some one and adds some ingredients", "video_id": "video10093", "sen_id": 219635}, {"caption": "a person is frying a bay leaves in the oil", "video_id": "video10093", "sen_id": 219636}, {"caption": "a chef starts a recipe by cooking some spice leaves in a silver pan", "video_id": "video10093", "sen_id": 219637}, {"caption": "a man is cooking herbs in a large pot and adding spices", "video_id": "video10093", "sen_id": 219638}, {"caption": "a person is boiling some leaves to eat", "video_id": "video10093", "sen_id": 219639}, {"caption": "a male is interviewing a woman on her preferences and fashion sense", "video_id": "video11616", "sen_id": 219640}, {"caption": "a woman in a collared striped shirt and yellow cardigan describes with the help of another her fashion sense as hispanic mia", "video_id": "video11616", "sen_id": 219641}, {"caption": "a man with a microphone talking to a woman on the street", "video_id": "video11616", "sen_id": 219642}, {"caption": "a girl in a yellow cardigan wears glasses and talks about fashion", "video_id": "video11616", "sen_id": 219643}, {"caption": "a man going around asking a woman in yellow about her fashion sense and musical tastes in three words or less", "video_id": "video11616", "sen_id": 219644}, {"caption": "two persons are speaking each other on road", "video_id": "video11616", "sen_id": 219645}, {"caption": "a man in a blue shirt is interviewing a woman on the sidewalk", "video_id": "video11616", "sen_id": 219646}, {"caption": "a man with a microphone interviewing a woman on the streets", "video_id": "video11616", "sen_id": 219647}, {"caption": "a man wearing a blue shirt interviews a woman wearing a yellow sweater and striped white shirt on the street", "video_id": "video11616", "sen_id": 219648}, {"caption": "a young girl in awesome clothes talks about her fashion sense", "video_id": "video11616", "sen_id": 219649}, {"caption": "a woman in yellow dressing talking with a man", "video_id": "video11616", "sen_id": 219650}, {"caption": "a woman describes her fashion sense in three words or less", "video_id": "video11616", "sen_id": 219651}, {"caption": "a lady is speaking to the camera regarding her fashion and music views", "video_id": "video11616", "sen_id": 219652}, {"caption": "a young woman is interviewed about her fashion sense and music tastes", "video_id": "video11616", "sen_id": 219653}, {"caption": "a man interviewing women on the street about their fashion sense and music tastes", "video_id": "video11616", "sen_id": 219654}, {"caption": "a woman with yellow dressing talking from a town", "video_id": "video11616", "sen_id": 219655}, {"caption": "a man interviewing a woman on the street about fashion sense", "video_id": "video11616", "sen_id": 219656}, {"caption": "a woman is interviewed behind a white car wearing large-frame eyeglasses with gold horizontal trim a yellow cardigan and a white shirt with horizontal black stripes", "video_id": "video11616", "sen_id": 219657}, {"caption": "a person uses a mic to speak to strangers on a street", "video_id": "video11616", "sen_id": 219658}, {"caption": "a television person is inverving a women about the women regarding i-pad", "video_id": "video11616", "sen_id": 219659}, {"caption": "a woman in a kitchen making kabobs she is putting the ground meat mixture on a kabob stick", "video_id": "video12897", "sen_id": 219660}, {"caption": "a skillet heating on the stove while a woman puts a mixture on a stick", "video_id": "video12897", "sen_id": 219661}, {"caption": "a woman is putting raw meat on a skewer in order to make kebabs", "video_id": "video12897", "sen_id": 219662}, {"caption": "two hands illustrate how to apply food to a chop stick for cooking", "video_id": "video12897", "sen_id": 219663}, {"caption": "a woman heats oil in a pan on the stove and makes kebabs", "video_id": "video12897", "sen_id": 219664}, {"caption": "a women is busy preparing food in the kitchen", "video_id": "video12897", "sen_id": 219665}, {"caption": " in a kitchen is forming meat with her hands around a chopstick", "video_id": "video12897", "sen_id": 219666}, {"caption": "someone is making food using ingredienst in a big pot", "video_id": "video12897", "sen_id": 219667}, {"caption": "an inhome chef works on a recipe by greasing her hands", "video_id": "video12897", "sen_id": 219668}, {"caption": "square frying pan with oil addedwith woman making fritters", "video_id": "video12897", "sen_id": 219669}, {"caption": "there is a woman making a dish with a stick", "video_id": "video12897", "sen_id": 219670}, {"caption": "a lady is making a kobob with her hands to show you exactly the proper way of prepairing", "video_id": "video12897", "sen_id": 219671}, {"caption": "a woman talking about greasing her hands and explaining how to cook", "video_id": "video12897", "sen_id": 219672}, {"caption": "someone is making food on a stick from a mixture inside of a clear bowl", "video_id": "video12897", "sen_id": 219673}, {"caption": "a woman is pushing food with her hand onto a stick", "video_id": "video12897", "sen_id": 219674}, {"caption": "a women telling us how to cook cabobs and she is going to put them in a pan to cook", "video_id": "video12897", "sen_id": 219675}, {"caption": "the person places the food on the skewer from the clear bowl", "video_id": "video12897", "sen_id": 219676}, {"caption": "a woman in a kitchen describes how to make kabobs as she presses ground meat around a stick", "video_id": "video12897", "sen_id": 219677}, {"caption": "a lady is preparing some seenk kabab from a food meterial", "video_id": "video12897", "sen_id": 219678}, {"caption": "a woman in a green and black dress makes kebabs in a kitchen", "video_id": "video12897", "sen_id": 219679}, {"caption": "cartoon characters being created with pixels on a computer program", "video_id": "video12698", "sen_id": 219680}, {"caption": "pixelated description for how to make famous movie characters", "video_id": "video12698", "sen_id": 219681}, {"caption": "there is a game being played on the screen with pacman type music being played", "video_id": "video12698", "sen_id": 219682}, {"caption": "someone is playing super mario game and using paint shop pro", "video_id": "video12698", "sen_id": 219683}, {"caption": "a video game character that looks like a minion is walking in place", "video_id": "video12698", "sen_id": 219684}, {"caption": "a minion character is designed pixel by pixel in a video game of super minions", "video_id": "video12698", "sen_id": 219685}, {"caption": "someone is creating a pixelated minion on a program", "video_id": "video12698", "sen_id": 219686}, {"caption": "a person drawing a character on a computer screen", "video_id": "video12698", "sen_id": 219687}, {"caption": "some one is drawing a animation picture in the computer", "video_id": "video12698", "sen_id": 219688}, {"caption": "super mario is on screen and so are some other characters", "video_id": "video12698", "sen_id": 219689}, {"caption": "a minion is drawn in the manner of mario from super mario brothers as part of the game super minion world", "video_id": "video12698", "sen_id": 219690}, {"caption": "music plays as a minion character is drawn", "video_id": "video12698", "sen_id": 219691}, {"caption": "a person is using a computer to draw a minion character", "video_id": "video12698", "sen_id": 219692}, {"caption": "the yellow man from the game is going to be drawn on computer", "video_id": "video12698", "sen_id": 219693}, {"caption": "a video game character is drawn digitally in a computer program", "video_id": "video12698", "sen_id": 219694}, {"caption": "a digital pixel based speed draw of a minion for a homebrew game super minions world being done by pxlflx a well known pxl artistanimator", "video_id": "video12698", "sen_id": 219695}, {"caption": "a explanation about the creation of animation character on computer", "video_id": "video12698", "sen_id": 219696}, {"caption": "the creating of a video game character is shown", "video_id": "video12698", "sen_id": 219697}, {"caption": "a video animation of movie video game of cartoons dolls moving displaying on screen", "video_id": "video12698", "sen_id": 219698}, {"caption": "a banana pixel art is standing in a place", "video_id": "video12698", "sen_id": 219699}, {"caption": "a recording is being made of the outside of a tall building in a city", "video_id": "video12383", "sen_id": 219700}, {"caption": "loud disturbing sounds are heard in kiev ukraine", "video_id": "video12383", "sen_id": 219701}, {"caption": "a video showing the destruction of ukraine in the conflict with russia", "video_id": "video12383", "sen_id": 219702}, {"caption": "a multi-story housing complex in kiev ukraine", "video_id": "video12383", "sen_id": 219703}, {"caption": "a multi-story housing building in kiev ukraine", "video_id": "video12383", "sen_id": 219704}, {"caption": "there is a brown and tan building in kiev", "video_id": "video12383", "sen_id": 219705}, {"caption": "a large apartment building sets near the center of a large city", "video_id": "video12383", "sen_id": 219706}, {"caption": "a nice brick brown and tan building with at least eight floors", "video_id": "video12383", "sen_id": 219707}, {"caption": "an apartment building with multiple floors and balconies is shown", "video_id": "video12383", "sen_id": 219708}, {"caption": "a bell rings and birds chirp while music that projects the feeling of dread plays and a september 2013 video shows an apartment complex in ukraine", "video_id": "video12383", "sen_id": 219709}, {"caption": "filming in ukraine of a tall building from a sky view", "video_id": "video12383", "sen_id": 219710}, {"caption": "somber music heard in a scene from kiev", "video_id": "video12383", "sen_id": 219711}, {"caption": "there are acient mountain and building with nice carving done on it", "video_id": "video12383", "sen_id": 219712}, {"caption": "few apparments are shown which is shaking a little due to earthquake", "video_id": "video12383", "sen_id": 219713}, {"caption": "a ukraine film starting to playing a first scene", "video_id": "video12383", "sen_id": 219714}, {"caption": "it is an apartment house looking nice and it s shaking", "video_id": "video12383", "sen_id": 219715}, {"caption": "an apartment building in kiev ukraine is filmed with dramatic music in the background", "video_id": "video12383", "sen_id": 219716}, {"caption": "a bright light illuminates a dark area of flat ground and an apartment-building corner repeats alternate colors for different floors", "video_id": "video12383", "sen_id": 219717}, {"caption": "an apartment building in kiev ukraine is seen from a distance", "video_id": "video12383", "sen_id": 219718}, {"caption": "a guy is filming in his balcony another building near is house", "video_id": "video12383", "sen_id": 219719}, {"caption": "a group of people walking downtown london", "video_id": "video10969", "sen_id": 219720}, {"caption": "people walk around england while a man talks about debt and money", "video_id": "video10969", "sen_id": 219721}, {"caption": "a large group of people move along a busy city street", "video_id": "video10969", "sen_id": 219722}, {"caption": "some people walking down a sidewalk and some vehicles in the intersection", "video_id": "video10969", "sen_id": 219723}, {"caption": "people walking down a street while a man talks about debt", "video_id": "video10969", "sen_id": 219724}, {"caption": "people are running around the streets of england", "video_id": "video10969", "sen_id": 219725}, {"caption": "a man talking about the bank of england", "video_id": "video10969", "sen_id": 219726}, {"caption": "european announcer talking about their financial stability", "video_id": "video10969", "sen_id": 219727}, {"caption": "a man talking about the increase in debt while people walk on a busy street", "video_id": "video10969", "sen_id": 219728}, {"caption": "some people on the side walk a double decker bus and peoples legs", "video_id": "video10969", "sen_id": 219729}, {"caption": "a street corner with two double buses and people walking on the sidewalk", "video_id": "video10969", "sen_id": 219730}, {"caption": "there is a red shirt man running with his wife", "video_id": "video10969", "sen_id": 219731}, {"caption": "a man is talking while showing clips of people walking around in ta city", "video_id": "video10969", "sen_id": 219732}, {"caption": "a man discussing the bank of england s reports that unsecured debt rose 239 billion pounds in the previous year", "video_id": "video10969", "sen_id": 219733}, {"caption": "while the travel place crowds are busy with a", "video_id": "video10969", "sen_id": 219734}, {"caption": "here is a busy street with so many buildings vehicles and people", "video_id": "video10969", "sen_id": 219735}, {"caption": "a man is a red plaid shirt and a woman in a white blouse run across a crowded street on a commercial block in daylight and then separate", "video_id": "video10969", "sen_id": 219736}, {"caption": "peoples are walking in hot of city very busy", "video_id": "video10969", "sen_id": 219737}, {"caption": "host talks about habits of british citizens and relates to overall debt carried by the population", "video_id": "video10969", "sen_id": 219738}, {"caption": "the news reader says about the englan countries debt was 240 million pounds last year and the habits of the ordinary people", "video_id": "video10969", "sen_id": 219739}, {"caption": "woman talks about which ingredients she's putting into a skillet to cook", "video_id": "video11778", "sen_id": 219740}, {"caption": "a woman in black is cooking food on a stove top and describing the steps as she does so", "video_id": "video11778", "sen_id": 219741}, {"caption": "a woman speaks as she reaches into the frame and drops potatoes and onions in a pan", "video_id": "video11778", "sen_id": 219742}, {"caption": "a chef works on a recipe by putting ingredients in a large pot", "video_id": "video11778", "sen_id": 219743}, {"caption": "a lady showing how to prepare a recipe", "video_id": "video11778", "sen_id": 219744}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11778", "sen_id": 219745}, {"caption": "a woman showing how to cook potatoes on a stove top", "video_id": "video11778", "sen_id": 219746}, {"caption": "a woman dumps onion potatoes and garlic into a pan and stirs them together", "video_id": "video11778", "sen_id": 219747}, {"caption": "a person wearing a black shirt adds ingredients to a pot while stirring them with a spoon", "video_id": "video11778", "sen_id": 219748}, {"caption": "onions and potatoes are being cooked together and garlic is added", "video_id": "video11778", "sen_id": 219749}, {"caption": "a person is cooking a food on a bowel", "video_id": "video11778", "sen_id": 219750}, {"caption": "a lady cooking potatoes in a pan while it is on the stove", "video_id": "video11778", "sen_id": 219751}, {"caption": "a woman shows how to cook potatoes with garlic", "video_id": "video11778", "sen_id": 219752}, {"caption": "a person adds items to a hot pan and stirs it", "video_id": "video11778", "sen_id": 219753}, {"caption": "lady adding cooked potatoes and sliced onions and chopped garlic to a mixture", "video_id": "video11778", "sen_id": 219754}, {"caption": "there is a woman in black dressing making a new dish", "video_id": "video11778", "sen_id": 219755}, {"caption": "a lady talking about cutting onions and cooking them", "video_id": "video11778", "sen_id": 219756}, {"caption": "a cook stirs ingredient in a pot on the stove and explains the steps for the recipe", "video_id": "video11778", "sen_id": 219757}, {"caption": "a woman is adding potatoes and other food to a pan", "video_id": "video11778", "sen_id": 219758}, {"caption": "an english woman demonstrates how to cook a dinner dish on the stovetop with potatoes onions and garlic", "video_id": "video11778", "sen_id": 219759}, {"caption": "a man enjoying skiing down a mountain full of trees", "video_id": "video10098", "sen_id": 219760}, {"caption": "a person enjoying and making laughs while he was skeeing in the snow", "video_id": "video10098", "sen_id": 219761}, {"caption": "a skier maneuvers through thick powdery snow which is untouched in a narrow clearing between snow-covered pine trees", "video_id": "video10098", "sen_id": 219762}, {"caption": "a skier skiing down a hill through the trees", "video_id": "video10098", "sen_id": 219763}, {"caption": "a skier goes down a powdery slope through the woods", "video_id": "video10098", "sen_id": 219764}, {"caption": "a man enjoys himself as he goes downhill skiing", "video_id": "video10098", "sen_id": 219765}, {"caption": "a person siking with tree covered with snow and enjoying", "video_id": "video10098", "sen_id": 219766}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video10098", "sen_id": 219767}, {"caption": "a skier is using poles while creating a path through an untouched slope with narrow spaces between snow-covered evergreens", "video_id": "video10098", "sen_id": 219768}, {"caption": "an extreme skier works his way down the hill and through a bunch of snow covered trees", "video_id": "video10098", "sen_id": 219769}, {"caption": "someone who is wearing gloves and skating on the snow", "video_id": "video10098", "sen_id": 219770}, {"caption": "someone is doing ice skating very fast in the ice", "video_id": "video10098", "sen_id": 219771}, {"caption": "a person is skiing down a hiss with many trees", "video_id": "video10098", "sen_id": 219772}, {"caption": "a person is sketing on ice covered area", "video_id": "video10098", "sen_id": 219773}, {"caption": "a man is joyously skiing down a snowy forested hill", "video_id": "video10098", "sen_id": 219774}, {"caption": "there is a man skating lonely on a mountain", "video_id": "video10098", "sen_id": 219775}, {"caption": "a skier has a wooded area to himself as he makes his way through narrow clearings where evergreen branches are covered with snow", "video_id": "video10098", "sen_id": 219776}, {"caption": "in the snow mountain one of them is the", "video_id": "video10098", "sen_id": 219777}, {"caption": "a man has a camera attached to him while he is skiing and laughing", "video_id": "video10098", "sen_id": 219778}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video10098", "sen_id": 219779}, {"caption": "a player hunts through the ruins of a palace looking for enemies as gunfire blazes around him", "video_id": "video10279", "sen_id": 219780}, {"caption": "a man describing a video game to play", "video_id": "video10279", "sen_id": 219781}, {"caption": "a german man is playing a gun video game and speaking about it", "video_id": "video10279", "sen_id": 219782}, {"caption": "a man is speaking german and from his perspective we see him going from room to room while pointing his gun and shooting at people", "video_id": "video10279", "sen_id": 219783}, {"caption": "a man is playing a shooting video game on live stream", "video_id": "video10279", "sen_id": 219784}, {"caption": "there is a man walking with a gun without fear", "video_id": "video10279", "sen_id": 219785}, {"caption": "a german man playing a first person shooter and killing players", "video_id": "video10279", "sen_id": 219786}, {"caption": "game play of a first person shooter is being instructed", "video_id": "video10279", "sen_id": 219787}, {"caption": "a solider with a rifle is searching for the enemies on a battle ground", "video_id": "video10279", "sen_id": 219788}, {"caption": "gameplay of a video game that is a first person shooter", "video_id": "video10279", "sen_id": 219789}, {"caption": "the video game that was playing was call of duty", "video_id": "video10279", "sen_id": 219790}, {"caption": "a young german man is playing a first person shooter", "video_id": "video10279", "sen_id": 219791}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10279", "sen_id": 219792}, {"caption": "a gun moves through a video game building shooting others that appear", "video_id": "video10279", "sen_id": 219793}, {"caption": "the man speaking is playing a game called battlefield", "video_id": "video10279", "sen_id": 219794}, {"caption": "video game of shooting with gun is being played by someone", "video_id": "video10279", "sen_id": 219795}, {"caption": "animated game is explained on which way to go to get the enemy", "video_id": "video10279", "sen_id": 219796}, {"caption": "a young man demonstrates and describes a video game he is playing", "video_id": "video10279", "sen_id": 219797}, {"caption": "a man plays a shooter video game while he talks about the game", "video_id": "video10279", "sen_id": 219798}, {"caption": "amn running around game with weapon shooting other players", "video_id": "video10279", "sen_id": 219799}, {"caption": "an old police car pulls up to the scene of a mob", "video_id": "video10482", "sen_id": 219800}, {"caption": "a clip from a movie that takes places in an older time period", "video_id": "video10482", "sen_id": 219801}, {"caption": "a police constable arrives in a squad car with flashing red lights the constable walks down the street behind mounted men as a crowd shuffles on the other side until he reaches a lone man standing in the street", "video_id": "video10482", "sen_id": 219802}, {"caption": "a car with red light is halting and a person gets down", "video_id": "video10482", "sen_id": 219803}, {"caption": "crowd roaring at a police officer who just arrived in a black car with siren and start talking to another person", "video_id": "video10482", "sen_id": 219804}, {"caption": "a crowd cheers as a police car drives up and a police man gets out and walks up the road", "video_id": "video10482", "sen_id": 219805}, {"caption": "a police officer gets out of a police car and walks onto the street where people are cheering", "video_id": "video10482", "sen_id": 219806}, {"caption": "cop drives into a crowded street towards the guy in black suit", "video_id": "video10482", "sen_id": 219807}, {"caption": "a police man is getting out of his car and walking along as large crowd gathered is greeting him", "video_id": "video10482", "sen_id": 219808}, {"caption": "crowds claping one policeman came near detective person", "video_id": "video10482", "sen_id": 219809}, {"caption": "a black car arrives and a man dressed in black comes out of it to meet another man", "video_id": "video10482", "sen_id": 219810}, {"caption": "two men in hats are standing on the street while people are cheering", "video_id": "video10482", "sen_id": 219811}, {"caption": "the police car arrives and a police gets out to move toward the black man in the suit", "video_id": "video10482", "sen_id": 219812}, {"caption": "there is a man reaching to a crowd by a car", "video_id": "video10482", "sen_id": 219813}, {"caption": "one policecar came and many peoples in side are make noisey", "video_id": "video10482", "sen_id": 219814}, {"caption": "a policeman exits a car and moves towards an angry crowd", "video_id": "video10482", "sen_id": 219815}, {"caption": "a chief commander asking something to a man", "video_id": "video10482", "sen_id": 219816}, {"caption": "a police men gets out of the police car and comes to a men who is wearind hat and lot of crowds are there", "video_id": "video10482", "sen_id": 219817}, {"caption": "a classic police car car pulls up next too a crowded street", "video_id": "video10482", "sen_id": 219818}, {"caption": "a gentleman with black colour court came by car", "video_id": "video10482", "sen_id": 219819}, {"caption": "a man in a suit goes on a winning streak in jeopardy", "video_id": "video11741", "sen_id": 219820}, {"caption": "description of a middle aged man who won on a game show over and over", "video_id": "video11741", "sen_id": 219821}, {"caption": "a winning jeopardy game show contestant is highlighted", "video_id": "video11741", "sen_id": 219822}, {"caption": "information about the highest winning jepardy winner and how much jennings has earned", "video_id": "video11741", "sen_id": 219823}, {"caption": "a man stands behind his podium as he plays the game jeopardy", "video_id": "video11741", "sen_id": 219824}, {"caption": "a news reporter speaks about a very intellectual man who has won 74 times in a row and has earned a substantial amount of $2520700", "video_id": "video11741", "sen_id": 219825}, {"caption": "the greatest game show contestant in history is highlighted in one of his jeopardy victories", "video_id": "video11741", "sen_id": 219826}, {"caption": "a man in a black suit playing jeopardy", "video_id": "video11741", "sen_id": 219827}, {"caption": "game show contestant is shown winning over two million dollars", "video_id": "video11741", "sen_id": 219828}, {"caption": "a woman reports on the winning streak of a game show champion", "video_id": "video11741", "sen_id": 219829}, {"caption": "there is a black suit man surprised with a prize amout", "video_id": "video11741", "sen_id": 219830}, {"caption": "a man in a suit is competing on a game show", "video_id": "video11741", "sen_id": 219831}, {"caption": "a man is standing behind a podium number appear", "video_id": "video11741", "sen_id": 219832}, {"caption": "a lady speaking about the best game shows which are won by the same man", "video_id": "video11741", "sen_id": 219833}, {"caption": "a person is wearing black coat and start playing a game show and scores more mark", "video_id": "video11741", "sen_id": 219834}, {"caption": "a jeopardy contestant correctly answers a final question for a lot of money", "video_id": "video11741", "sen_id": 219835}, {"caption": "alex trebek is wearing a beige suit and standing in the jeopardy game room", "video_id": "video11741", "sen_id": 219836}, {"caption": "women praising a guy as a greatest winner in the history of game", "video_id": "video11741", "sen_id": 219837}, {"caption": "woman narrator describing the success of jeopardy champion ken jennings", "video_id": "video11741", "sen_id": 219838}, {"caption": "alex trebek is talking about something on jeopardy", "video_id": "video11741", "sen_id": 219839}, {"caption": "a man explaining how to run with a basketball in a gym", "video_id": "video10807", "sen_id": 219840}, {"caption": "a man in a gray shirt and white shorts holds a basketball on a court", "video_id": "video10807", "sen_id": 219841}, {"caption": "a man in white shorts on the basketball court attempting to teach how to make a basket", "video_id": "video10807", "sen_id": 219842}, {"caption": "there is a man in grey holding a basketball speaking and moving round the court while dribbling", "video_id": "video10807", "sen_id": 219843}, {"caption": "a man in a basketball court showing viewers how to make a basket", "video_id": "video10807", "sen_id": 219844}, {"caption": "a man is explaining his footwork technique in basketball", "video_id": "video10807", "sen_id": 219845}, {"caption": "a man in a grey shirt and whit shorts explaining how to do a basket ball move", "video_id": "video10807", "sen_id": 219846}, {"caption": "a man in white shorts is practising basketball skills", "video_id": "video10807", "sen_id": 219847}, {"caption": "a man is bouncing a ball in a gym alone", "video_id": "video10807", "sen_id": 219848}, {"caption": "a man playing something with the ball in the indoor stadium", "video_id": "video10807", "sen_id": 219849}, {"caption": "a basketball player is explaining how to get the proper footing to do a scissor move", "video_id": "video10807", "sen_id": 219850}, {"caption": "a man is dribbling a ball on a basketball court", "video_id": "video10807", "sen_id": 219851}, {"caption": "there is a tshirt man playing with a basketball", "video_id": "video10807", "sen_id": 219852}, {"caption": "on a basketball court a man displays different techniques", "video_id": "video10807", "sen_id": 219853}, {"caption": "man is playing basketball in the gym and giving some tips", "video_id": "video10807", "sen_id": 219854}, {"caption": "a man in grey tshirt with basketball telling how to goal", "video_id": "video10807", "sen_id": 219855}, {"caption": "a man demonstrates basketball foot techniques and how to master them", "video_id": "video10807", "sen_id": 219856}, {"caption": "a man is dribbling a basketball and explaining some tips for moving around the court", "video_id": "video10807", "sen_id": 219857}, {"caption": "a man in sporting shorts shows footwork and dribbling techniques on large indoor basketball court", "video_id": "video10807", "sen_id": 219858}, {"caption": "a man on a basketball court shows viewers how to do a specific basketball move", "video_id": "video10807", "sen_id": 219859}, {"caption": "a rugby player makes a long run and dodges several defenders for a score", "video_id": "video12687", "sen_id": 219860}, {"caption": "a long try that is being scored in rugby", "video_id": "video12687", "sen_id": 219861}, {"caption": "football game in which a man intercepts the ball from the opposing team and makes a touchdown", "video_id": "video12687", "sen_id": 219862}, {"caption": "rugby players run down the field chasing the man with the ball as he finally scores", "video_id": "video12687", "sen_id": 219863}, {"caption": "this is an exciting rugby match with a player making a dash to the goal line", "video_id": "video12687", "sen_id": 219864}, {"caption": "two teams run across a field in a stadium playing soccer", "video_id": "video12687", "sen_id": 219865}, {"caption": "player running with the ball scoring point for his team in a ruby match", "video_id": "video12687", "sen_id": 219866}, {"caption": "music plays as a rugby player runs down the field and scores", "video_id": "video12687", "sen_id": 219867}, {"caption": "the players in red are running fast and celebrating the point", "video_id": "video12687", "sen_id": 219868}, {"caption": "a man runs for a score during a rugby match", "video_id": "video12687", "sen_id": 219869}, {"caption": "a group of players were trying to catch the ball in match", "video_id": "video12687", "sen_id": 219870}, {"caption": "men are playing soccer on a field and the player in black wins while the man in yellow falls", "video_id": "video12687", "sen_id": 219871}, {"caption": "rugby players chase a man in black trying to stop him from scoring a point", "video_id": "video12687", "sen_id": 219872}, {"caption": "yellow team and purple team playing rugby against each other", "video_id": "video12687", "sen_id": 219873}, {"caption": "players playing a match to reach the points and opponent is chasing them to block", "video_id": "video12687", "sen_id": 219874}, {"caption": "several men are running down a field playing a sport", "video_id": "video12687", "sen_id": 219875}, {"caption": "a soccer player running really fast while other soccer players try to catch him", "video_id": "video12687", "sen_id": 219876}, {"caption": "rugby players in black and red run down a field before a man in black scores", "video_id": "video12687", "sen_id": 219877}, {"caption": "a group of young people play a game of rugby", "video_id": "video12687", "sen_id": 219878}, {"caption": "some soccer players are running around a field", "video_id": "video12687", "sen_id": 219879}, {"caption": "a man in a dress shirt and red tie talks from behind a large desk", "video_id": "video11825", "sen_id": 219880}, {"caption": "a man wearing a white shirt and a pink tie is talking about the cost of production", "video_id": "video11825", "sen_id": 219881}, {"caption": "a man is standing in front of a desk yelling", "video_id": "video11825", "sen_id": 219882}, {"caption": "there is a man in a pink shirt talking loudly while standing behind a desk", "video_id": "video11825", "sen_id": 219883}, {"caption": "a man talking on his show about stocks", "video_id": "video11825", "sen_id": 219884}, {"caption": "jim cramer talking about stocks and hitting a button", "video_id": "video11825", "sen_id": 219885}, {"caption": "a man in a white shirt with a reddish tie is standing in a radio broadcasting area the man talks about mro and why it is so low", "video_id": "video11825", "sen_id": 219886}, {"caption": "a bald man in a pink shirt with a pink tie is yelling on a news show", "video_id": "video11825", "sen_id": 219887}, {"caption": "a man in a white shirt and red tie talking about a company stock that may be a profitable purchase", "video_id": "video11825", "sen_id": 219888}, {"caption": "a man in a tv studio with a state map over him and words going across the screen", "video_id": "video11825", "sen_id": 219889}, {"caption": "a bald man is talking about stock prices", "video_id": "video11825", "sen_id": 219890}, {"caption": "a man is talking about stocks while he is in an office surrounded by random objects", "video_id": "video11825", "sen_id": 219891}, {"caption": "a man is speaking about mro and american stocks", "video_id": "video11825", "sen_id": 219892}, {"caption": "the man from cnn mad money talks about oil company stocks", "video_id": "video11825", "sen_id": 219893}, {"caption": "a man in a white shirt and red tie is talking loudly about finances", "video_id": "video11825", "sen_id": 219894}, {"caption": "a old man with red color tie is talking about the growth and marketing of the company", "video_id": "video11825", "sen_id": 219895}, {"caption": "in the radio station the jockey is do their job in very well", "video_id": "video11825", "sen_id": 219896}, {"caption": "man in white button down shirt with red tie ranting about topics on a radio show", "video_id": "video11825", "sen_id": 219897}, {"caption": "jim kramer discusses marathon oil over electro-swing music", "video_id": "video11825", "sen_id": 219898}, {"caption": "bald guy in pink shirt and tie talking to the camera", "video_id": "video11825", "sen_id": 219899}, {"caption": "a woman giving a seminar on a piece of technolgy", "video_id": "video10902", "sen_id": 219900}, {"caption": "a woman is giving a presentation on hydro-shells", "video_id": "video10902", "sen_id": 219901}, {"caption": "a woman on a stage talking about research and a technician making plastic", "video_id": "video10902", "sen_id": 219902}, {"caption": "a woman discusses an experiment she performed while in her lab", "video_id": "video10902", "sen_id": 219903}, {"caption": "a ted talk where a woman is talking about an experiment", "video_id": "video10902", "sen_id": 219904}, {"caption": "a young female describes an experiment she completed using a large video screen", "video_id": "video10902", "sen_id": 219905}, {"caption": "a woman in a white t-shirt speaking on stage", "video_id": "video10902", "sen_id": 219906}, {"caption": "a girl explains something about an experiment on stage", "video_id": "video10902", "sen_id": 219907}, {"caption": "a woman describes of a scientist who is dissolving something in water", "video_id": "video10902", "sen_id": 219908}, {"caption": "a scientist is doing some experiment with injection and gelatin", "video_id": "video10902", "sen_id": 219909}, {"caption": "a women in a stage explaining some topic by watching a screen", "video_id": "video10902", "sen_id": 219910}, {"caption": "a woman is explain a nd demonstrate some thing", "video_id": "video10902", "sen_id": 219911}, {"caption": "a girl on the stage talking something and showing some project on the screen", "video_id": "video10902", "sen_id": 219912}, {"caption": "the professor wearing black coat demonstrates to prepare a pure glass like object with chemicals in front of a very big screen", "video_id": "video10902", "sen_id": 219913}, {"caption": "a female scientist discusses an experiement that she has been working on in her lab", "video_id": "video10902", "sen_id": 219914}, {"caption": "sexy brunette is talking to the audience in the seminar", "video_id": "video10902", "sen_id": 219915}, {"caption": "a person is using a vial on a thing", "video_id": "video10902", "sen_id": 219916}, {"caption": "one women in stage and talks about some chemicals", "video_id": "video10902", "sen_id": 219917}, {"caption": "a person explains about the presentation where they mix a powder in the water and they take it in the injection and pu them into the box", "video_id": "video10902", "sen_id": 219918}, {"caption": "woman talking at seminar and showing the experimant", "video_id": "video10902", "sen_id": 219919}, {"caption": "men fighting in a building and dirt bikes being raced through offices", "video_id": "video10886", "sen_id": 219920}, {"caption": "a man races a motorcycle through an indoor office space", "video_id": "video10886", "sen_id": 219921}, {"caption": "a man is riding a motorcycle through an office", "video_id": "video10886", "sen_id": 219922}, {"caption": "a man riding his motorcycle through an office full of people", "video_id": "video10886", "sen_id": 219923}, {"caption": "a man rides a dirt bike aggressively in a facility with multiple people running away", "video_id": "video10886", "sen_id": 219924}, {"caption": "men flip onto the ground while a motorcycle speeds inside of a building", "video_id": "video10886", "sen_id": 219925}, {"caption": "after 2 men do backflips over a railing and run away a motorcycle is racing through the hallways of a business office", "video_id": "video10886", "sen_id": 219926}, {"caption": "two men seem to jump off the second story of a building and quickly get up and run then a motorcross is shown inside an office on top of a desk", "video_id": "video10886", "sen_id": 219927}, {"caption": "two free runners compete with one biker in a building", "video_id": "video10886", "sen_id": 219928}, {"caption": "a man is riding a dirt bike through an office environment and driving over tables", "video_id": "video10886", "sen_id": 219929}, {"caption": "a man rides a motorcycle inside an office and runs over a computer", "video_id": "video10886", "sen_id": 219930}, {"caption": "two men jump from a large height then it cuts to a man riding a dirt bike through an office", "video_id": "video10886", "sen_id": 219931}, {"caption": "actions sports enthusiasts do extreme sports inside of an office building", "video_id": "video10886", "sen_id": 219932}, {"caption": "a guy on a dirt bike rides through an office", "video_id": "video10886", "sen_id": 219933}, {"caption": "an action chasing scene with a bike and a cycle", "video_id": "video10886", "sen_id": 219934}, {"caption": "two men who appear to be fleeing do crazy backflips off of a high wall one man wears a red shirt and the other blue", "video_id": "video10886", "sen_id": 219935}, {"caption": "the two persons are fighting with each other", "video_id": "video10886", "sen_id": 219936}, {"caption": "in an office building a dirtbike is riding though halls and desks", "video_id": "video10886", "sen_id": 219937}, {"caption": "two men run after each other two men on motorbikes follow each other down an office and then a neighborhood", "video_id": "video10886", "sen_id": 219938}, {"caption": "some vehicle with wheels is driving on a road", "video_id": "video10886", "sen_id": 219939}, {"caption": "a man is scratching the bottom another man's shoes", "video_id": "video10720", "sen_id": 219940}, {"caption": "a hockey player coming off the ice to have his skates sharpened", "video_id": "video10720", "sen_id": 219941}, {"caption": "a man is narrating whilst another man is sharpening the hockey player's skate", "video_id": "video10720", "sen_id": 219942}, {"caption": "hockey player takes a break to get his skate checked and man helps him fix it", "video_id": "video10720", "sen_id": 219943}, {"caption": "a team in yellow and a team in red are competing in an ice hockey game", "video_id": "video10720", "sen_id": 219944}, {"caption": "there is a man talking about skates then a hockey player comes in and he shows how a blade is being assessed while holding up the player's skate", "video_id": "video10720", "sen_id": 219945}, {"caption": "a man is demonstrating how to sharpen the blade of a ice hockey player's skate", "video_id": "video10720", "sen_id": 219946}, {"caption": "a man in black dress cleaning the shoes of a player", "video_id": "video10720", "sen_id": 219947}, {"caption": "few mens playing ice hockey and one men repairing the shoes", "video_id": "video10720", "sen_id": 219948}, {"caption": "a man demonstrates how to sharpen a hockey skate to make it work better", "video_id": "video10720", "sen_id": 219949}, {"caption": "hockey-skating is going in an tournament and one person lost its shoe balance and the person is repairiing the shoe", "video_id": "video10720", "sen_id": 219950}, {"caption": "people practising some game in front of their training coaches", "video_id": "video10720", "sen_id": 219951}, {"caption": "two team playing ice hockey with yellow tshirts", "video_id": "video10720", "sen_id": 219952}, {"caption": "one man scratch the player shoe with blade", "video_id": "video10720", "sen_id": 219953}, {"caption": "its a skating hockey game where a player removes the leg shoes", "video_id": "video10720", "sen_id": 219954}, {"caption": "a guy is talking about ice hockey on tv", "video_id": "video10720", "sen_id": 219955}, {"caption": "there is a man cleaning shoes of a player", "video_id": "video10720", "sen_id": 219956}, {"caption": "a coach is removing the ice from a ice hockey player shoe because it loss its traction", "video_id": "video10720", "sen_id": 219957}, {"caption": "a play ground and play the youngers and tight the shoe", "video_id": "video10720", "sen_id": 219958}, {"caption": "a snow field hockey player comes to the helper to remove and polish his skate for the play", "video_id": "video10720", "sen_id": 219959}, {"caption": "a man wearing a baseball cap and blue shirt is talking", "video_id": "video12674", "sen_id": 219960}, {"caption": "an older man is wearing a cap advertising a bourbon whiskey and a bright blue jacket with black raglan sleeves while standing outside in front of a natural landscape", "video_id": "video12674", "sen_id": 219961}, {"caption": "a man in a blue shit and baseball cap discusses his relationship with another person", "video_id": "video12674", "sen_id": 219962}, {"caption": "a race car driver talks about a past driver", "video_id": "video12674", "sen_id": 219963}, {"caption": "a guy that is talking about cars with a jim beam hat", "video_id": "video12674", "sen_id": 219964}, {"caption": "after short vintage footage of a race car a older man in a blue shirt and baseball cap talks", "video_id": "video12674", "sen_id": 219965}, {"caption": "a car on a racetrack and a old man in a hat outdoors talking", "video_id": "video12674", "sen_id": 219966}, {"caption": "a man wearing a jim bean hat is talking about cars", "video_id": "video12674", "sen_id": 219967}, {"caption": "a man wearing a racing baseball cap and a blue shirt stands outside on a sunny day explaining his personal feelings", "video_id": "video12674", "sen_id": 219968}, {"caption": "a man talks to a reporter while standing on a hill with a large plane in the background", "video_id": "video12674", "sen_id": 219969}, {"caption": "a man wearing a blue shirt and a cap is talking about a car race", "video_id": "video12674", "sen_id": 219970}, {"caption": "a man in a jim bean hat and a blue shirt is responding to a question", "video_id": "video12674", "sen_id": 219971}, {"caption": "an old man in blue t shirt and wearing a cap is explaining some thing", "video_id": "video12674", "sen_id": 219972}, {"caption": "the car racing sports is highly competitive expensive and adventerous", "video_id": "video12674", "sen_id": 219973}, {"caption": "an old man with a hat is standing out side", "video_id": "video12674", "sen_id": 219974}, {"caption": "there is a old man with cap talking from a hill top", "video_id": "video12674", "sen_id": 219975}, {"caption": "a man has a jim beam hat on and a blue shirt and discusses that he is a bit hurt", "video_id": "video12674", "sen_id": 219976}, {"caption": "a gentlemen explaining his disappointment due to the actions of another man", "video_id": "video12674", "sen_id": 219977}, {"caption": "a man in a white baseball cap and a blue and black shirt is talking", "video_id": "video12674", "sen_id": 219978}, {"caption": "a guy in a hat is talking about racing cars", "video_id": "video12674", "sen_id": 219979}, {"caption": "a male voiceover describes an intel core i7 processor", "video_id": "video12520", "sen_id": 219980}, {"caption": "a man is explaining the latest computer processor and its speed", "video_id": "video12520", "sen_id": 219981}, {"caption": "a picture is shown of a tan colored intel core i7 processor", "video_id": "video12520", "sen_id": 219982}, {"caption": "man is speaking about intel processors core i7 with sixteen threads", "video_id": "video12520", "sen_id": 219983}, {"caption": "an new intel processor is presented and discussed", "video_id": "video12520", "sen_id": 219984}, {"caption": "a gray rectangular panel is under a square gray panel with a hole in the upper left corner and carries a blue label that contains white lettering for a tech logo and the company's product name", "video_id": "video12520", "sen_id": 219985}, {"caption": "man talking about intel core i7 processor and its speed", "video_id": "video12520", "sen_id": 219986}, {"caption": "intel technology chips are shown right here for an ad", "video_id": "video12520", "sen_id": 219987}, {"caption": "a picture of an intel core i7 processor with a mans voice giving a description of it", "video_id": "video12520", "sen_id": 219988}, {"caption": "there is a piece of intel core i7 component", "video_id": "video12520", "sen_id": 219989}, {"caption": "a man talking about intel core 17", "video_id": "video12520", "sen_id": 219990}, {"caption": "there is a men telling about the intel processor chip and drives", "video_id": "video12520", "sen_id": 219991}, {"caption": "a technology enthusiast discusses a certain computer product", "video_id": "video12520", "sen_id": 219992}, {"caption": "host discusses the new intel core processor and how it is able run fast with core technology", "video_id": "video12520", "sen_id": 219993}, {"caption": "a man s voice is talking about a intel processor", "video_id": "video12520", "sen_id": 219994}, {"caption": "in the green board intel inside core i7 written in blue background", "video_id": "video12520", "sen_id": 219995}, {"caption": "someone is giving review of new intel processor", "video_id": "video12520", "sen_id": 219996}, {"caption": "intel core i 7 intel chips in the next to picture", "video_id": "video12520", "sen_id": 219997}, {"caption": "a man reviews about the intel core i7 processor", "video_id": "video12520", "sen_id": 219998}, {"caption": "the working of intel core is explained in a talk show", "video_id": "video12520", "sen_id": 219999}, {"caption": "a woman is talking about new years and what is in her kitchen", "video_id": "video11195", "sen_id": 220000}, {"caption": "a woman talks about new years and her beautiful kitchen set", "video_id": "video11195", "sen_id": 220001}, {"caption": "a blonde girl in a purple shirt standing in a kitchen", "video_id": "video11195", "sen_id": 220002}, {"caption": "a woman is excited about her new kitchen and is explaining what she likes about it", "video_id": "video11195", "sen_id": 220003}, {"caption": "a woman is very colorfully describing appliances in the kitchen", "video_id": "video11195", "sen_id": 220004}, {"caption": "a baker stands in the kitchen presenting her new oven", "video_id": "video11195", "sen_id": 220005}, {"caption": "a blonde woman is filming herself showing off her kitchen appliances", "video_id": "video11195", "sen_id": 220006}, {"caption": "a woman in a dark red top introduces her new kitchen set", "video_id": "video11195", "sen_id": 220007}, {"caption": "a woman in purple cursing and talking to the camera", "video_id": "video11195", "sen_id": 220008}, {"caption": "woman wishes audience happy new years and shows off her new kitchen set", "video_id": "video11195", "sen_id": 220009}, {"caption": "a blonde woman is showing some kitchen appliances", "video_id": "video11195", "sen_id": 220010}, {"caption": "a woman in a maroon shirt talks about showing off her new new years kitchen", "video_id": "video11195", "sen_id": 220011}, {"caption": "several bloopers run of a woman trying to show off a new kitchen appliance set", "video_id": "video11195", "sen_id": 220012}, {"caption": "a woman is explaining about the new year new kitchen", "video_id": "video11195", "sen_id": 220013}, {"caption": "a youtube presenter tries two takes to get right her presentation on antique kitchen appliances", "video_id": "video11195", "sen_id": 220014}, {"caption": "a blonde woman is standing around in a kitchen", "video_id": "video11195", "sen_id": 220015}, {"caption": "a girl showing her kitchen", "video_id": "video11195", "sen_id": 220016}, {"caption": "a woman discusses the upcoming new year and her new kitchen set", "video_id": "video11195", "sen_id": 220017}, {"caption": "the youtuber grace helbig known for her cooking show my drunk kitchen is introducing a new kitchen set", "video_id": "video11195", "sen_id": 220018}, {"caption": "innovative modern equipment to make more advantages of cooking", "video_id": "video11195", "sen_id": 220019}, {"caption": "a dump truck is on a work site and a crane is moving", "video_id": "video11920", "sen_id": 220020}, {"caption": "a large dumptruck waits it's turn to be filled with coal in a large mine", "video_id": "video11920", "sen_id": 220021}, {"caption": "heavy machinery is used to excavate grey rock", "video_id": "video11920", "sen_id": 220022}, {"caption": "the large heavy machinery in the background is placing dirt onto the yellow dump truck", "video_id": "video11920", "sen_id": 220023}, {"caption": "a large tractor slowly drives past a parked yellow dump truck", "video_id": "video11920", "sen_id": 220024}, {"caption": "an yellow load truck is parked and someone is operating a poclain", "video_id": "video11920", "sen_id": 220025}, {"caption": "a work site with a lot of work trucks in the area", "video_id": "video11920", "sen_id": 220026}, {"caption": "a very large yellow dump truck is waiting for a load of dirt", "video_id": "video11920", "sen_id": 220027}, {"caption": "a big dumper standing on a mountain road sight", "video_id": "video11920", "sen_id": 220028}, {"caption": "large machines are sitting in the middle of a rock quarry", "video_id": "video11920", "sen_id": 220029}, {"caption": "its a lorry and cranks are loading and crushing big rocks", "video_id": "video11920", "sen_id": 220030}, {"caption": "a yellow dump truck is in front of crane shoveling dirt on another dump truck", "video_id": "video11920", "sen_id": 220031}, {"caption": "a large tractor is excavating in a mine near two other tractors", "video_id": "video11920", "sen_id": 220032}, {"caption": "it is a large vehicle moving in a large pit", "video_id": "video11920", "sen_id": 220033}, {"caption": "various large vehicles dig away in the dirty pit", "video_id": "video11920", "sen_id": 220034}, {"caption": "there is a truck working in a construction site", "video_id": "video11920", "sen_id": 220035}, {"caption": "the road roller working in the road", "video_id": "video11920", "sen_id": 220036}, {"caption": "the back of a yellow dump truck in a landfill", "video_id": "video11920", "sen_id": 220037}, {"caption": "a big yellow dump truck is sitting in the middle of a quarry", "video_id": "video11920", "sen_id": 220038}, {"caption": "a big yellow truck is driving around", "video_id": "video11920", "sen_id": 220039}, {"caption": "a woman is wearing a headscarf and vest smiling", "video_id": "video12761", "sen_id": 220040}, {"caption": "a video interview various veiled women", "video_id": "video12761", "sen_id": 220041}, {"caption": "a young muslim woman with sunglasses on her head gives an interview", "video_id": "video12761", "sen_id": 220042}, {"caption": "a woman that is interviewing veiled women", "video_id": "video12761", "sen_id": 220043}, {"caption": "a woman with a leopard print head covering defines her style", "video_id": "video12761", "sen_id": 220044}, {"caption": "a woman out on a street in daylight is wearing an animal print headdress is talking about fashion", "video_id": "video12761", "sen_id": 220045}, {"caption": "a woman wearing a head calf saying something in front of the camera", "video_id": "video12761", "sen_id": 220046}, {"caption": "a woman with sunglasses speaks on a busy street corner about her fashion style", "video_id": "video12761", "sen_id": 220047}, {"caption": "a woman speaks to the camera for an interview", "video_id": "video12761", "sen_id": 220048}, {"caption": "the young beautiful girl wearing red dress and multicolored scarf is talking to someone", "video_id": "video12761", "sen_id": 220049}, {"caption": "the woman talking is wearing a headscarf and sunglasses", "video_id": "video12761", "sen_id": 220050}, {"caption": "a women wearing scarf and a red top is excited here while talking", "video_id": "video12761", "sen_id": 220051}, {"caption": "one beautiful girl wear sunglass is speaking about something", "video_id": "video12761", "sen_id": 220052}, {"caption": "a woman stands on a city street talking about her personal style", "video_id": "video12761", "sen_id": 220053}, {"caption": "a women is talking with a guy who is asking question to her", "video_id": "video12761", "sen_id": 220054}, {"caption": "a woman on the street is talking to someone", "video_id": "video12761", "sen_id": 220055}, {"caption": "a women is wearing scarf on her hear covering her ears and she is talking", "video_id": "video12761", "sen_id": 220056}, {"caption": "a woman in a scarf speaking with a pair of sunglasses on her head", "video_id": "video12761", "sen_id": 220057}, {"caption": "a young indian woman is giving an interview about fashion in toronto she is describing her personal fashion sense", "video_id": "video12761", "sen_id": 220058}, {"caption": "a beautiful girl is sharing interesting wile taking interview", "video_id": "video12761", "sen_id": 220059}, {"caption": "peaple tour near open fields with animals", "video_id": "video11714", "sen_id": 220060}, {"caption": "a safari tour is going through a rainy mountain terrange", "video_id": "video11714", "sen_id": 220061}, {"caption": "two buses carry passengers on a tour through a wilderness area", "video_id": "video11714", "sen_id": 220062}, {"caption": "two mens are discussing with each other by actions", "video_id": "video11714", "sen_id": 220063}, {"caption": "a group of tourists see the sights in a large open air truck they are riding in", "video_id": "video11714", "sen_id": 220064}, {"caption": "few people traveled to a place in a van and a tour guide explaining about that place", "video_id": "video11714", "sen_id": 220065}, {"caption": "a women in yellow t-shirt is excited and waving at others", "video_id": "video11714", "sen_id": 220066}, {"caption": "a group of tourists guided by a lady visit hilly areas and see herds of animals", "video_id": "video11714", "sen_id": 220067}, {"caption": "kauai backcountry adventures man in truck caitlin tour guide", "video_id": "video11714", "sen_id": 220068}, {"caption": "a group of tourists are visiting a mountain", "video_id": "video11714", "sen_id": 220069}, {"caption": "a tour guide explaining about the speciality of the place to the tourists", "video_id": "video11714", "sen_id": 220070}, {"caption": "people are watching adventures places in the guidance of tour guider", "video_id": "video11714", "sen_id": 220071}, {"caption": "a group takes a trip to a remote and rainy mountain", "video_id": "video11714", "sen_id": 220072}, {"caption": "group of tourists going inside the forest by vehicle", "video_id": "video11714", "sen_id": 220073}, {"caption": "an adventurous journey of tourists to national park where animals like bison are seen", "video_id": "video11714", "sen_id": 220074}, {"caption": "a mini van is passing through a jungle safari in which tourist are sitting", "video_id": "video11714", "sen_id": 220075}, {"caption": "a woman is explaining a mountain range to people on a tour", "video_id": "video11714", "sen_id": 220076}, {"caption": "people going on a guided tour in yellow jeeps by a woman in a yellow t shirt of an animal preserve", "video_id": "video11714", "sen_id": 220077}, {"caption": "a safari jeep tour with a tour guide giving a some information about the safari and several attendees enthusiastically engaged about her guide", "video_id": "video11714", "sen_id": 220078}, {"caption": "some people in a bus are on a safari", "video_id": "video11714", "sen_id": 220079}, {"caption": "a group of people are touring through a very large industrial sized kitchen that has lots of stainless steel prep tables and equipment", "video_id": "video10304", "sen_id": 220080}, {"caption": "the cleanliness and staff of a kitchen are on display for all to see", "video_id": "video10304", "sen_id": 220081}, {"caption": "there is a group of people walking through a restaurant kitchen", "video_id": "video10304", "sen_id": 220082}, {"caption": "chefs are shown working in a very large commercial kitchen", "video_id": "video10304", "sen_id": 220083}, {"caption": "people are taking a tour of a large professional kitchen", "video_id": "video10304", "sen_id": 220084}, {"caption": "prep chefs work in a large industrial kitchen while people look on and watch", "video_id": "video10304", "sen_id": 220085}, {"caption": "touring a large kitchen located in a fancy restaurant", "video_id": "video10304", "sen_id": 220086}, {"caption": "several chefs in a restaurant kitchen giving tours to customers", "video_id": "video10304", "sen_id": 220087}, {"caption": "a video tour of the inside of a full restaurant kitchen and staff", "video_id": "video10304", "sen_id": 220088}, {"caption": "chefs in a very large kitchen prep for a meal they will be preparing", "video_id": "video10304", "sen_id": 220089}, {"caption": "a small group of people are walking through a very large commercial type kitchen while employees in white uniforms are working", "video_id": "video10304", "sen_id": 220090}, {"caption": "walking into the back of a kitchen showing different parts of it", "video_id": "video10304", "sen_id": 220091}, {"caption": "a commercial kitchen showing lots of stainless appliances and a kitchen staff at work", "video_id": "video10304", "sen_id": 220092}, {"caption": "restaurant workers cooking and cleaning while guess walk in a line", "video_id": "video10304", "sen_id": 220093}, {"caption": "several people are working in a restaurant kitchen", "video_id": "video10304", "sen_id": 220094}, {"caption": "a group of people walking through the kitchen", "video_id": "video10304", "sen_id": 220095}, {"caption": "a group tour through a professional kitchen while chiefs work in the background", "video_id": "video10304", "sen_id": 220096}, {"caption": "a old man walking inside canteen preparing dish to serve to eat displaying on screen", "video_id": "video10304", "sen_id": 220097}, {"caption": "tour of industrial kitchen and behind the scenes with kitchen staff", "video_id": "video10304", "sen_id": 220098}, {"caption": "a person showing bunch of people walking into the kitchen", "video_id": "video10304", "sen_id": 220099}, {"caption": "commentator talking about graphic animations of an extrinsic semiconductor", "video_id": "video11679", "sen_id": 220100}, {"caption": "a man narrating about the science of extrinsic semiconductors while an animated diagram is being shown", "video_id": "video11679", "sen_id": 220101}, {"caption": "a scientific seminar describing the process of an extrinsic semiconductor", "video_id": "video11679", "sen_id": 220102}, {"caption": "shows a extrinsic semiconductor and explains how it works", "video_id": "video11679", "sen_id": 220103}, {"caption": "cartoon depiction of an extrinsic semiconductor in action", "video_id": "video11679", "sen_id": 220104}, {"caption": "a man teaches about extrinsic semiconductors", "video_id": "video11679", "sen_id": 220105}, {"caption": "i cartoon illustration of electric fields extrinsic semiconductor", "video_id": "video11679", "sen_id": 220106}, {"caption": "a description of extrinsic semiconductor is being shown", "video_id": "video11679", "sen_id": 220107}, {"caption": "a man gives a presentation on extrinsic semiconductors", "video_id": "video11679", "sen_id": 220108}, {"caption": "part of an explanation of extrinsic (pure) semiconductors emphasizing a large electric field", "video_id": "video11679", "sen_id": 220109}, {"caption": "an animated graphic explaining extrinsic semiconductors with a male voiceover", "video_id": "video11679", "sen_id": 220110}, {"caption": "two pictures of what are semiconductors doing what they do", "video_id": "video11679", "sen_id": 220111}, {"caption": "a man explaining the workings of a semiconductor along with a visual aid", "video_id": "video11679", "sen_id": 220112}, {"caption": "a man discussing the way extrinsic semiconductors work", "video_id": "video11679", "sen_id": 220113}, {"caption": "a man explaining something about the semi conductor", "video_id": "video11679", "sen_id": 220114}, {"caption": "graphics of a porous screen are showing movement of items through it as part of a semiconductor lecture", "video_id": "video11679", "sen_id": 220115}, {"caption": "a computer animation and voice-over describe electic semi-conductors", "video_id": "video11679", "sen_id": 220116}, {"caption": "a technical scientific description of an extrinsic semiconductor presentation", "video_id": "video11679", "sen_id": 220117}, {"caption": "eccentric semiconductor explained by a male with british accent along with pictures", "video_id": "video11679", "sen_id": 220118}, {"caption": "a tutorial of extrinsic semiconductors on a camera", "video_id": "video11679", "sen_id": 220119}, {"caption": "a police cruiser is shown with sirens and lights flashing the lapd discusses gang wars an officer tells about the latest shooting", "video_id": "video12403", "sen_id": 220120}, {"caption": "a police discussing with a reporter the details of the chase", "video_id": "video12403", "sen_id": 220121}, {"caption": "tv show cop talking about the apprehension of a suspect", "video_id": "video12403", "sen_id": 220122}, {"caption": "sky news reports on gang shootings in los angeles and discusses with a lapd how it is a ongoing dispute", "video_id": "video12403", "sen_id": 220123}, {"caption": "an lapd police car with it's siren on investigating gang shootings", "video_id": "video12403", "sen_id": 220124}, {"caption": "a emergency vehicle with lights on at night police talking on the news", "video_id": "video12403", "sen_id": 220125}, {"caption": "a car running in a high speed in the busy street of the city", "video_id": "video12403", "sen_id": 220126}, {"caption": "there is a car driving through the street", "video_id": "video12403", "sen_id": 220127}, {"caption": "several police describe the events of a gang shooting to a reporter", "video_id": "video12403", "sen_id": 220128}, {"caption": "police officers drive to a crime scene and discuss how bad at their jobs they are", "video_id": "video12403", "sen_id": 220129}, {"caption": "two boys walking and car moving and two person speaking each other trafic police man", "video_id": "video12403", "sen_id": 220130}, {"caption": "some one driving a car with full speed in the night time", "video_id": "video12403", "sen_id": 220131}, {"caption": "a black color car and two men are seriously talking", "video_id": "video12403", "sen_id": 220132}, {"caption": "a police car drives down a busy highway with their sirens blaring", "video_id": "video12403", "sen_id": 220133}, {"caption": "a police car is driving around on a street", "video_id": "video12403", "sen_id": 220134}, {"caption": "there is a ambulance roaring loudly on the street", "video_id": "video12403", "sen_id": 220135}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12403", "sen_id": 220136}, {"caption": "a car black color two men are in that", "video_id": "video12403", "sen_id": 220137}, {"caption": "a bald man is driving a car and another man is sitting beside him", "video_id": "video12403", "sen_id": 220138}, {"caption": "some police lights are flashing on a road", "video_id": "video12403", "sen_id": 220139}, {"caption": "a woman's hands are using bright green play-doh to create a dress for a small dark haired doll she first makes the base of the dress and then the full dress to go over it", "video_id": "video10937", "sen_id": 220140}, {"caption": "two hands build various items out of play-doh in high speed", "video_id": "video10937", "sen_id": 220141}, {"caption": "a dollis shown being played with green play dough", "video_id": "video10937", "sen_id": 220142}, {"caption": "green play-doh is molded to make a dress for a plastic doll", "video_id": "video10937", "sen_id": 220143}, {"caption": "two hands form bits of play-doh into a green dress for a toy figurine", "video_id": "video10937", "sen_id": 220144}, {"caption": "a woman demonstrates a techniue for using playdough to make doll clothes", "video_id": "video10937", "sen_id": 220145}, {"caption": "a time lapse of someone creating clothing out of play-doh for a plastic toy doll", "video_id": "video10937", "sen_id": 220146}, {"caption": "a person is making a base with play-doh for a little doll", "video_id": "video10937", "sen_id": 220147}, {"caption": "experienced hands mold play dough into a beautiful green dress for a toy princess", "video_id": "video10937", "sen_id": 220148}, {"caption": "someone making different objects out of play dough and a doll", "video_id": "video10937", "sen_id": 220149}, {"caption": "a woman uses playdough to make a dress for a small doll", "video_id": "video10937", "sen_id": 220150}, {"caption": "a person is playing with play doh making objects", "video_id": "video10937", "sen_id": 220151}, {"caption": "a person is molding playdoh and creating a dress for a toy doll", "video_id": "video10937", "sen_id": 220152}, {"caption": "a person doing something on the baby doll in home", "video_id": "video10937", "sen_id": 220153}, {"caption": "a video animation movie of cartoon dolls wearing diferent dress craft making hands displaying on screen", "video_id": "video10937", "sen_id": 220154}, {"caption": "a person making a green dress for a small doll out of play doh", "video_id": "video10937", "sen_id": 220155}, {"caption": "a person makes a green play-doh dress for a doll", "video_id": "video10937", "sen_id": 220156}, {"caption": "a person playing with play doh and a princess figure on a board", "video_id": "video10937", "sen_id": 220157}, {"caption": "someone making a dress for a small doll with green play dough", "video_id": "video10937", "sen_id": 220158}, {"caption": "a person is playing with play doh", "video_id": "video10937", "sen_id": 220159}, {"caption": "a young man is holding a javelin then running down a track to jump into a pit of sand with score markings", "video_id": "video11118", "sen_id": 220160}, {"caption": "a young man participates in various track and field events", "video_id": "video11118", "sen_id": 220161}, {"caption": "a young track athlete participates in a series of track events", "video_id": "video11118", "sen_id": 220162}, {"caption": "silly music plays as a track and field athlete messes up awkwardly", "video_id": "video11118", "sen_id": 220163}, {"caption": "a young man participates in a series of track and field events", "video_id": "video11118", "sen_id": 220164}, {"caption": "a man doing a long jump into the sand while alvin and the chipmunks are playing", "video_id": "video11118", "sen_id": 220165}, {"caption": "a track and field athlete jumps into a sand pit and then prepares to throw a javelin", "video_id": "video11118", "sen_id": 220166}, {"caption": "footage from the 1970 s depicting an athlete performing a long jump are shown with alvin and the chipmunks audio", "video_id": "video11118", "sen_id": 220167}, {"caption": "a long jump game is playing on on the screen", "video_id": "video11118", "sen_id": 220168}, {"caption": "a long jump between the player and he is ready to throw the arc", "video_id": "video11118", "sen_id": 220169}, {"caption": "many athlete s participating in a different sports competition", "video_id": "video11118", "sen_id": 220170}, {"caption": "a man is performing track and field jumps and using a javelin", "video_id": "video11118", "sen_id": 220171}, {"caption": "a young man with long blonde hair runs down a path jumps into a sand pit with triangular distance markers", "video_id": "video11118", "sen_id": 220172}, {"caption": "a man running the long jump while you hear alvin and the chipmunks", "video_id": "video11118", "sen_id": 220173}, {"caption": "a blonde man in blue shorts competing in athletic competitions", "video_id": "video11118", "sen_id": 220174}, {"caption": "a person is running and jumping on long jump", "video_id": "video11118", "sen_id": 220175}, {"caption": "a lady going back and a man having a stick on her hand", "video_id": "video11118", "sen_id": 220176}, {"caption": "in the athletic competition the sports man jumps 26 ft in the long jump and the other sports man is getting ready for other event", "video_id": "video11118", "sen_id": 220177}, {"caption": "a long jump and javelin throw sportsman displaying his skills on the field live", "video_id": "video11118", "sen_id": 220178}, {"caption": "two track and field competitors show their stuff in fast motion while voices sounding like chipmunks narrate", "video_id": "video11118", "sen_id": 220179}, {"caption": "food is fried in a frying pan while words are displayed giving instructions on preparing the dish", "video_id": "video11964", "sen_id": 220180}, {"caption": "stir fry being cooked in a fry pan with directions shared over the screen", "video_id": "video11964", "sen_id": 220181}, {"caption": "a clip from a vegetarian receipt stir fry", "video_id": "video11964", "sen_id": 220182}, {"caption": "someone is stirring to cook noodles and explains that when noodles become sticky and stretchy it is ready to serve", "video_id": "video11964", "sen_id": 220183}, {"caption": "a clip from someone cooking what looks to be stir fry", "video_id": "video11964", "sen_id": 220184}, {"caption": "this shows a pan that someone is cooking in and shows text that describes when the dish is finished and when to remove the pan from heat", "video_id": "video11964", "sen_id": 220185}, {"caption": "a man giving instructions on how to cook a certain dish", "video_id": "video11964", "sen_id": 220186}, {"caption": "a pan of vegetables frying on the stove top finishes cooking", "video_id": "video11964", "sen_id": 220187}, {"caption": "a person is stirring several ingredients together with a spatula in a large frying pan on the screen writng pops up describing how it is done", "video_id": "video11964", "sen_id": 220188}, {"caption": "someone is sauteing shrimp and vegetables in a frying pan", "video_id": "video11964", "sen_id": 220189}, {"caption": "individual is teaching how to stir frying meat with noodles", "video_id": "video11964", "sen_id": 220190}, {"caption": "someone is doing some cooking using a large pan", "video_id": "video11964", "sen_id": 220191}, {"caption": "a person fries up some food items in a pan on a stove", "video_id": "video11964", "sen_id": 220192}, {"caption": "stirfry being mixed around with text over it explaining it", "video_id": "video11964", "sen_id": 220193}, {"caption": "a cook is sauteing shrimp mushrooms noodles and vegetables", "video_id": "video11964", "sen_id": 220194}, {"caption": "there is someone making a dish with prawn", "video_id": "video11964", "sen_id": 220195}, {"caption": "a person cooking in a large frying pan stirring noodles and captions appear on the screen", "video_id": "video11964", "sen_id": 220196}, {"caption": "a pan of sauteing ingredients is being stirred with captions", "video_id": "video11964", "sen_id": 220197}, {"caption": "someone is cooking noodles with vegetables and as soon as the noodles absorbs the liquid it is well done the sizzling sound of the noodle is really appetizing", "video_id": "video11964", "sen_id": 220198}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11964", "sen_id": 220199}, {"caption": "a man is doing work under a car and is getting dirty", "video_id": "video12445", "sen_id": 220200}, {"caption": "a man is working under a car and giving tips on how to protect your eyes", "video_id": "video12445", "sen_id": 220201}, {"caption": "a man shows people how to get to a different parts of their car", "video_id": "video12445", "sen_id": 220202}, {"caption": "a man works on his car while laying underneath it", "video_id": "video12445", "sen_id": 220203}, {"caption": "a young man is underneath a car while wearing safety goggles and a tan sweatshirt", "video_id": "video12445", "sen_id": 220204}, {"caption": "a man works on his car while laying underneath the vehicle", "video_id": "video12445", "sen_id": 220205}, {"caption": "a man in goggles is under a car attempting to fix something", "video_id": "video12445", "sen_id": 220206}, {"caption": "a man is describing the usefulness of a pair of glasses while repairing a car", "video_id": "video12445", "sen_id": 220207}, {"caption": "a man putting parts for car", "video_id": "video12445", "sen_id": 220208}, {"caption": "a boy lying below the car and trying to clear a repair", "video_id": "video12445", "sen_id": 220209}, {"caption": "a man working on a car explains how to fix a specific problem", "video_id": "video12445", "sen_id": 220210}, {"caption": "a young man working on a car wears glasses", "video_id": "video12445", "sen_id": 220211}, {"caption": "there is a specs man repairing his car", "video_id": "video12445", "sen_id": 220212}, {"caption": "person with a tan shirt and glasses laying underneath an engine working on it", "video_id": "video12445", "sen_id": 220213}, {"caption": "a person is lying down working on a vehicle", "video_id": "video12445", "sen_id": 220214}, {"caption": "a man describing how to get to the radiator in a car he also recommends using safety glasses that make you look more attractive", "video_id": "video12445", "sen_id": 220215}, {"caption": "a person is underneath a car attempting to perform matinence", "video_id": "video12445", "sen_id": 220216}, {"caption": "a car mechanic is lying under a car and explaining the mechanism of radiator", "video_id": "video12445", "sen_id": 220217}, {"caption": "a young man wearing safety glasses lies under a car explaining a repair", "video_id": "video12445", "sen_id": 220218}, {"caption": "a person with hands is using them to grip something", "video_id": "video12445", "sen_id": 220219}, {"caption": "a man is trying to get in a whales costume", "video_id": "video11470", "sen_id": 220220}, {"caption": "one man was thrying to put his shoes on while two people were playing soccer at the background", "video_id": "video11470", "sen_id": 220221}, {"caption": "a person in black dress wearing shoes with kids on a stadium", "video_id": "video11470", "sen_id": 220222}, {"caption": "a man is on the soccer field and is putting on the mascots shoes", "video_id": "video11470", "sen_id": 220223}, {"caption": "a man wearing funny dress doing funny on the ground", "video_id": "video11470", "sen_id": 220224}, {"caption": "men put on mascot costumes and play soccer", "video_id": "video11470", "sen_id": 220225}, {"caption": "there is a man getting ready to play on the ground", "video_id": "video11470", "sen_id": 220226}, {"caption": "a man in a blue shirt and jeans is putting on a constume", "video_id": "video11470", "sen_id": 220227}, {"caption": "video of a man putting on a mascot suit with dubstep playing in the background", "video_id": "video11470", "sen_id": 220228}, {"caption": "a man in a blue shirt putting on the blue feet a costume of a mascot on the field", "video_id": "video11470", "sen_id": 220229}, {"caption": "man preparing to put on a blue mascot outfit outdoors", "video_id": "video11470", "sen_id": 220230}, {"caption": "there is a tshirt man getting ready play", "video_id": "video11470", "sen_id": 220231}, {"caption": "a man and a child are putting on pieces of a shark costume on a soccer field as another child watches", "video_id": "video11470", "sen_id": 220232}, {"caption": "a man is putting on the legs of a mascot outfit while another person in the upper part of the mascot costume kicks a soccer ball", "video_id": "video11470", "sen_id": 220233}, {"caption": "a man puts on a mascot outfit while another mascot plays soccer with a kid", "video_id": "video11470", "sen_id": 220234}, {"caption": "the man put on mascot costume shoes", "video_id": "video11470", "sen_id": 220235}, {"caption": "a man that is gearing up what appears to be half of a fish costume and a young boy with a person with a fish head costume standing behind him", "video_id": "video11470", "sen_id": 220236}, {"caption": "a players are ready to play a game i the ground", "video_id": "video11470", "sen_id": 220237}, {"caption": "a man puts on the big blue feet of a sports mascot as the mascot and a child look on", "video_id": "video11470", "sen_id": 220238}, {"caption": "a guy is putting on a mascot uniform", "video_id": "video11470", "sen_id": 220239}, {"caption": "data analytics graphs and figures scrolling up the screen", "video_id": "video10223", "sen_id": 220240}, {"caption": "a man discusses various aspects of data and how it relates to humans", "video_id": "video10223", "sen_id": 220241}, {"caption": "a man in a suit talks about web statistics", "video_id": "video10223", "sen_id": 220242}, {"caption": "a man discusses a set of statistics that he has pulled together to clarify a point", "video_id": "video10223", "sen_id": 220243}, {"caption": "several screens with information on them scrolling down", "video_id": "video10223", "sen_id": 220244}, {"caption": "a man is speaking about graphs and charts of various data output", "video_id": "video10223", "sen_id": 220245}, {"caption": "a man in a black jacket talking and the screen of a computer", "video_id": "video10223", "sen_id": 220246}, {"caption": "a businessman talks about sales manufacturing output and patient satisfaction scores", "video_id": "video10223", "sen_id": 220247}, {"caption": "data for a business in being shown on a computer screen", "video_id": "video10223", "sen_id": 220248}, {"caption": "a man is explain something with a graph", "video_id": "video10223", "sen_id": 220249}, {"caption": "a man sitting in front of a computor explaining some thing", "video_id": "video10223", "sen_id": 220250}, {"caption": "a person in black color dress wearing cloth in front lap top speaking discusing a screen displaying", "video_id": "video10223", "sen_id": 220251}, {"caption": "a person explains some graph and statistics of some acheivemetns", "video_id": "video10223", "sen_id": 220252}, {"caption": "a man wearing black dress explaining something on the computer", "video_id": "video10223", "sen_id": 220253}, {"caption": "a man speaks to the camera in an office", "video_id": "video10223", "sen_id": 220254}, {"caption": "a man wearing glasses is talking as a data sheet is shown", "video_id": "video10223", "sen_id": 220255}, {"caption": "there is a man sitting in a suit talking then there are some diagrams that start scrolling up while the man continues to talk", "video_id": "video10223", "sen_id": 220256}, {"caption": "its presentation where screen scrolls then many display on screen", "video_id": "video10223", "sen_id": 220257}, {"caption": "a old man in black dress speaking sitting in front of laptop and screen displaying", "video_id": "video10223", "sen_id": 220258}, {"caption": "a man in a black suit is describing how to increase sales and manufacturing output", "video_id": "video10223", "sen_id": 220259}, {"caption": "a professor in a lab talks about gas control for experiments", "video_id": "video12793", "sen_id": 220260}, {"caption": "a man with glasses in a blazer talking about a room with high technology machinery in it", "video_id": "video12793", "sen_id": 220261}, {"caption": "a man in tan is talking about a motor", "video_id": "video12793", "sen_id": 220262}, {"caption": "an animated graphic with a glasses wearing male actor explain visible gas control devices", "video_id": "video12793", "sen_id": 220263}, {"caption": "a man in a brown coat and glasses explains an experiment", "video_id": "video12793", "sen_id": 220264}, {"caption": "a guy with glasses talks about technical things inside of a lab", "video_id": "video12793", "sen_id": 220265}, {"caption": "a man in glasses is talking with pipes and electrical equipment around him", "video_id": "video12793", "sen_id": 220266}, {"caption": "a man in green over coat and spectacles is talking to somebody", "video_id": "video12793", "sen_id": 220267}, {"caption": "there is a suit man talking from a company", "video_id": "video12793", "sen_id": 220268}, {"caption": " in black rimmed glass and a beige coat speaking about equipment in the room he is in", "video_id": "video12793", "sen_id": 220269}, {"caption": " of famous university describing about some engineering project", "video_id": "video12793", "sen_id": 220270}, {"caption": "a person in blackyellow dress explaining about the engineering", "video_id": "video12793", "sen_id": 220271}, {"caption": "a man in suit talking about a machine", "video_id": "video12793", "sen_id": 220272}, {"caption": "scientist demonstrates a experiments in the laboratory and test", "video_id": "video12793", "sen_id": 220273}, {"caption": "prof brian monaghan faculty of engineering and information sciences", "video_id": "video12793", "sen_id": 220274}, {"caption": "a man is talking about the key equipment in the lab which goes to high temperatures", "video_id": "video12793", "sen_id": 220275}, {"caption": "a man with specs talking from a factory", "video_id": "video12793", "sen_id": 220276}, {"caption": "man wearing white color dress talking about machine", "video_id": "video12793", "sen_id": 220277}, {"caption": "a man wearing specs talking about something to media", "video_id": "video12793", "sen_id": 220278}, {"caption": "a professor from university of wollongong explains about engineering and information sciences", "video_id": "video12793", "sen_id": 220279}, {"caption": "man drawing the ideal picture for a kitchen with some open space", "video_id": "video11286", "sen_id": 220280}, {"caption": "a bald man stands at a drafting desk draws a plan for a kitchen layout using blue ink for lines circles and curves to represent storage spaces", "video_id": "video11286", "sen_id": 220281}, {"caption": "a man is drawing and explaining blueprints about the interior of a house", "video_id": "video11286", "sen_id": 220282}, {"caption": "a man is sketching a blueprint of a kitchen remodel", "video_id": "video11286", "sen_id": 220283}, {"caption": "an older man is drawing a quick doodle that shows plans for a room in a house", "video_id": "video11286", "sen_id": 220284}, {"caption": "a bald headed man draws a sketch of a kitchen", "video_id": "video11286", "sen_id": 220285}, {"caption": "a man is drawing a sketch plan for constructing a room with storage cabinets", "video_id": "video11286", "sen_id": 220286}, {"caption": "person doing some drawing on a piece of paper", "video_id": "video11286", "sen_id": 220287}, {"caption": "old man with balt head draw something using blue color", "video_id": "video11286", "sen_id": 220288}, {"caption": "a bald man does a sketch of a kitchen layout", "video_id": "video11286", "sen_id": 220289}, {"caption": "old guy in glass drawing a blue print", "video_id": "video11286", "sen_id": 220290}, {"caption": "a man makes a drawing on white paper with a blue pen", "video_id": "video11286", "sen_id": 220291}, {"caption": "an old man with glasses project draws a sketch on a drawing block with a blue pen", "video_id": "video11286", "sen_id": 220292}, {"caption": "a man is designing a room by drawing it on paper using a blue marker", "video_id": "video11286", "sen_id": 220293}, {"caption": "a man explains as he makes a sketch of a kitchen", "video_id": "video11286", "sen_id": 220294}, {"caption": "a bald men is creating a drawing with blue ink and poencil", "video_id": "video11286", "sen_id": 220295}, {"caption": "a man wearing a spectacle drawing something on the paper", "video_id": "video11286", "sen_id": 220296}, {"caption": "a person making a drawing with a blue coloured pen", "video_id": "video11286", "sen_id": 220297}, {"caption": "man sketching something arhitectual with a blue pen", "video_id": "video11286", "sen_id": 220298}, {"caption": "a person is drawing a floor plan on paper", "video_id": "video11286", "sen_id": 220299}, {"caption": "a person demonstrates and describes the use of a computer program", "video_id": "video12490", "sen_id": 220300}, {"caption": "a clip of art being creating for a video game", "video_id": "video12490", "sen_id": 220301}, {"caption": "a person is creating an image of an orange blob thing with a photo editing software", "video_id": "video12490", "sen_id": 220302}, {"caption": "orange spots are being overlayed on a purple background to create an image within computer software", "video_id": "video12490", "sen_id": 220303}, {"caption": "an image is being edited in some kind of graphics program", "video_id": "video12490", "sen_id": 220304}, {"caption": "catchy music and lights advertising flowing bush", "video_id": "video12490", "sen_id": 220305}, {"caption": "a pink background with shifting orange blobs set to music", "video_id": "video12490", "sen_id": 220306}, {"caption": "an orange pile of something is being created on the computer", "video_id": "video12490", "sen_id": 220307}, {"caption": "there is some designs with high density of colour", "video_id": "video12490", "sen_id": 220308}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video12490", "sen_id": 220309}, {"caption": "making an animation with some software in system", "video_id": "video12490", "sen_id": 220310}, {"caption": "a person demonstrates how to use a computer program to animate a picture", "video_id": "video12490", "sen_id": 220311}, {"caption": "in a computer graphic software red color graphics are drawn and changing its pattern", "video_id": "video12490", "sen_id": 220312}, {"caption": "a person showing something on his personal computer", "video_id": "video12490", "sen_id": 220313}, {"caption": "a still image of blinking on screen with colours red blinking displaying on screen", "video_id": "video12490", "sen_id": 220314}, {"caption": "a person is using a program to draw a picture", "video_id": "video12490", "sen_id": 220315}, {"caption": "it was a software like adobe photoshop were to the pictures effects are added", "video_id": "video12490", "sen_id": 220316}, {"caption": "red color animated video game played by somebody", "video_id": "video12490", "sen_id": 220317}, {"caption": "a person is animating in the computer", "video_id": "video12490", "sen_id": 220318}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video12490", "sen_id": 220319}, {"caption": "a music group singing at a concert in front of a crowd", "video_id": "video12638", "sen_id": 220320}, {"caption": "a band of men are dancing and singing on a large stage lit in purple", "video_id": "video12638", "sen_id": 220321}, {"caption": "a group of men singing on stage in front of a large crowd", "video_id": "video12638", "sen_id": 220322}, {"caption": "five men sing in front of a large audience", "video_id": "video12638", "sen_id": 220323}, {"caption": "five men giving a singing concert in a large venue", "video_id": "video12638", "sen_id": 220324}, {"caption": "five men are standing up on a stage in front of a large crowd singing", "video_id": "video12638", "sen_id": 220325}, {"caption": "a group of guys are performing at a concert on a non traditional stage", "video_id": "video12638", "sen_id": 220326}, {"caption": "five guys are singing in front of a very large crowd", "video_id": "video12638", "sen_id": 220327}, {"caption": "a band is playing a song live and there seems to be 5 men in the band", "video_id": "video12638", "sen_id": 220328}, {"caption": "people sing on the stage for the cheering crowd", "video_id": "video12638", "sen_id": 220329}, {"caption": "there is a group of people singing on the stage", "video_id": "video12638", "sen_id": 220330}, {"caption": "five men are performing a song on a stage at a large concert at night", "video_id": "video12638", "sen_id": 220331}, {"caption": "there are five young men on stage performing for a large crowd", "video_id": "video12638", "sen_id": 220332}, {"caption": "a stage with multipal guys singing on it", "video_id": "video12638", "sen_id": 220333}, {"caption": "a boy band sings in a crowded stadium full of people", "video_id": "video12638", "sen_id": 220334}, {"caption": "there is someone singing and dancing on the stage", "video_id": "video12638", "sen_id": 220335}, {"caption": "boyband playing nonconsequential boyband music on nonconsequential boyband music-event", "video_id": "video12638", "sen_id": 220336}, {"caption": "one direction sings the end to one of their songs at a massive concert", "video_id": "video12638", "sen_id": 220337}, {"caption": "one direction preforming their song what makes you beautiful on a concert with a lot of crowd", "video_id": "video12638", "sen_id": 220338}, {"caption": "there is a boy band at a concert performing in front of thousands of people", "video_id": "video12638", "sen_id": 220339}, {"caption": "the chinese woman in the video is explaining how to make korean chicken noodle soup", "video_id": "video12874", "sen_id": 220340}, {"caption": "a woman in a kitchen showing how to make korean chicken noodle soup", "video_id": "video12874", "sen_id": 220341}, {"caption": "a korean cook introduces us to her guide on how to make korean-style chicken noodle soup", "video_id": "video12874", "sen_id": 220342}, {"caption": "a woman introduces instructions for makes an asian chicken and noodle soup", "video_id": "video12874", "sen_id": 220343}, {"caption": "a young woman carefully sprinkling vegetables onto noodles", "video_id": "video12874", "sen_id": 220344}, {"caption": "a lady in her kitchen preparing chicken soup and she giving a final touch", "video_id": "video12874", "sen_id": 220345}, {"caption": "in a tawa water poured and chicked decorated", "video_id": "video12874", "sen_id": 220346}, {"caption": "in a tv cookery show a lady is making delicious chicken nodules soup", "video_id": "video12874", "sen_id": 220347}, {"caption": "a cooking lady takes the wide bowl with the watershe cooks the recipe", "video_id": "video12874", "sen_id": 220348}, {"caption": "a woman in blue sprinkles green onions over her noodle bowls", "video_id": "video12874", "sen_id": 220349}, {"caption": "here the lady is showing the korean style chicken noodles soup making for preparing she took a water in to the bowl", "video_id": "video12874", "sen_id": 220350}, {"caption": " in a dark shirt and dotted apron begins to make korean style chicken noodle soup in a pot", "video_id": "video12874", "sen_id": 220351}, {"caption": "an inhome chef demonstrates the process of making korean chicken noodle soup", "video_id": "video12874", "sen_id": 220352}, {"caption": "a woman stands in kitchen putting ingredients together for a meal", "video_id": "video12874", "sen_id": 220353}, {"caption": "a person is cooking some food in a silver bowl", "video_id": "video12874", "sen_id": 220354}, {"caption": "there is a women cooking food in untensil", "video_id": "video12874", "sen_id": 220355}, {"caption": "a women in kitchen is explaining the recipe of chicken noodle soup", "video_id": "video12874", "sen_id": 220356}, {"caption": "an yopung asian chef works on a couple of noodle dishes in her home kitchen", "video_id": "video12874", "sen_id": 220357}, {"caption": "a women inside kitchen waving hands inside plate how to make delecious food and water inside bowl", "video_id": "video12874", "sen_id": 220358}, {"caption": "someone is showing how they cook food in a bowl", "video_id": "video12874", "sen_id": 220359}, {"caption": "a man wearing a white coat in a lab is fixing a machine which looks like a robot", "video_id": "video12005", "sen_id": 220360}, {"caption": "a man in a cgi science fiction movie suffers a raid on his laboratory", "video_id": "video12005", "sen_id": 220361}, {"caption": "a clip from a movie scene where the guy in the lab is building some sort of robot", "video_id": "video12005", "sen_id": 220362}, {"caption": "animation of a scientist working on his machine as two military men come and take him away", "video_id": "video12005", "sen_id": 220363}, {"caption": "a man being confronted by violent men over his machine invention", "video_id": "video12005", "sen_id": 220364}, {"caption": "a scientist is making a robot that has seemed to go wrong", "video_id": "video12005", "sen_id": 220365}, {"caption": "this is a kids animated movie mostly in black and white involving a scientist and a robot", "video_id": "video12005", "sen_id": 220366}, {"caption": "a scientist works on a robotic machine in his laboratory", "video_id": "video12005", "sen_id": 220367}, {"caption": "a man wearing a white a shirt working on his experiment", "video_id": "video12005", "sen_id": 220368}, {"caption": "a sicentist is working on a machine as some men come up and attack him", "video_id": "video12005", "sen_id": 220369}, {"caption": "in a lab a scientist is working on an experiment with a robot until he is interrupted by a group of men", "video_id": "video12005", "sen_id": 220370}, {"caption": "two beings are watching something followed by a scientist working on a machine", "video_id": "video12005", "sen_id": 220371}, {"caption": "an animated person is being taken away by a group of people", "video_id": "video12005", "sen_id": 220372}, {"caption": "an animated doctor works on a robot before people come to push him away from it", "video_id": "video12005", "sen_id": 220373}, {"caption": "a cartoon of an inventor creating something in his lab the man then gets taken away from his creation", "video_id": "video12005", "sen_id": 220374}, {"caption": "segment of a 3d animation showcasing how government seizes control of independent technology", "video_id": "video12005", "sen_id": 220375}, {"caption": "a man in research room and robo fight in a man", "video_id": "video12005", "sen_id": 220376}, {"caption": "a scientist and colleague fix electrical connections on robot then it begins attacking guards", "video_id": "video12005", "sen_id": 220377}, {"caption": "a man in lab coat and glasses is being taken away by two soldiers while trying to work on a red eyed robot", "video_id": "video12005", "sen_id": 220378}, {"caption": "okay a guy is putting on a weird head dress", "video_id": "video12005", "sen_id": 220379}, {"caption": "a woman using a small pink toy duster to brush the face of small furry tan and white toy mechanical cat which stands up on two legs and purrs", "video_id": "video10748", "sen_id": 220380}, {"caption": "a girl is playing with her toy cat", "video_id": "video10748", "sen_id": 220381}, {"caption": "a toy kitty is interacting and playing with a woman when it gets tickled it stands up on feet", "video_id": "video10748", "sen_id": 220382}, {"caption": "a woman playing with a stuffed toy dog", "video_id": "video10748", "sen_id": 220383}, {"caption": "a plush robotic cat is being taunted with a pink feather by a woman", "video_id": "video10748", "sen_id": 220384}, {"caption": "a small teddy bear like thing is being placed in floor", "video_id": "video10748", "sen_id": 220385}, {"caption": "women is dusting the cat with pink brush", "video_id": "video10748", "sen_id": 220386}, {"caption": "a person is playing with a robot cat toy", "video_id": "video10748", "sen_id": 220387}, {"caption": "a little cat is brushed by a girl with a pink brush", "video_id": "video10748", "sen_id": 220388}, {"caption": "a person is playing with a yellow colored teddy bear doll with pink color brush then the teddy act like walking and raise its front leg", "video_id": "video10748", "sen_id": 220389}, {"caption": "a baby doll is playing by a person", "video_id": "video10748", "sen_id": 220390}, {"caption": "one beautiful battery operated dog has been standing", "video_id": "video10748", "sen_id": 220391}, {"caption": "a person demonstrates a robotic cat like toy animal", "video_id": "video10748", "sen_id": 220392}, {"caption": "a little teddy bear gets on two feet while a girl plays with it", "video_id": "video10748", "sen_id": 220393}, {"caption": "a person is playing with the stuffed toy robot", "video_id": "video10748", "sen_id": 220394}, {"caption": "its a doll in a table playing by a person", "video_id": "video10748", "sen_id": 220395}, {"caption": "one women can touch the dog with the brush", "video_id": "video10748", "sen_id": 220396}, {"caption": "a close-up shows a person playing with a toy cat", "video_id": "video10748", "sen_id": 220397}, {"caption": "a yellow cartoon dolls and a red colour brush", "video_id": "video10748", "sen_id": 220398}, {"caption": "a person playing with the stuffed animal", "video_id": "video10748", "sen_id": 220399}, {"caption": "two different people at separate occasions loose control and crash motorcycles", "video_id": "video11370", "sen_id": 220400}, {"caption": "someone trying to ride a scooter", "video_id": "video11370", "sen_id": 220401}, {"caption": "a person is sitting outside trying to ride a scooter while is takes off", "video_id": "video11370", "sen_id": 220402}, {"caption": "a young man starts a scooter and then crashes it into a building", "video_id": "video11370", "sen_id": 220403}, {"caption": "a person riding a vespa when it gets away from him", "video_id": "video11370", "sen_id": 220404}, {"caption": "i man in a green jacket wipes out on his motor bike", "video_id": "video11370", "sen_id": 220405}, {"caption": "a person doing a failed wheelie on a moped", "video_id": "video11370", "sen_id": 220406}, {"caption": "a person is on a motor scooter riding and one fell off", "video_id": "video11370", "sen_id": 220407}, {"caption": "first a person on a scooter and then another person on a motorcycle in a street try to do a wheelie", "video_id": "video11370", "sen_id": 220408}, {"caption": "a man in a blue jacket loses contol of a scooter then a man in a white shirt loses control of his motorcycle", "video_id": "video11370", "sen_id": 220409}, {"caption": "a scooter driven by a woman is toppled down and a bike driven by a manfell down out of control", "video_id": "video11370", "sen_id": 220410}, {"caption": "a man tries to do stunts on his scooter but falls down another man shows a stunt on his bike and falls down", "video_id": "video11370", "sen_id": 220411}, {"caption": "a man is riding on top of a motorcycle the motorcycle loses control", "video_id": "video11370", "sen_id": 220412}, {"caption": "a man is trying to start his scooter and a man coming on bike is slipped", "video_id": "video11370", "sen_id": 220413}, {"caption": "a person fall down with scooter while driving", "video_id": "video11370", "sen_id": 220414}, {"caption": "a guy is doing a stunt and crashing his bike", "video_id": "video11370", "sen_id": 220415}, {"caption": "a person in a green hoodie trying to ride a moped", "video_id": "video11370", "sen_id": 220416}, {"caption": "a man in a blue jacket crashing his scooter while trying to do a wheelie", "video_id": "video11370", "sen_id": 220417}, {"caption": "a person in a blue jacket starts a moped and then the moped comes out from under him another man wipes out on a motorcycle", "video_id": "video11370", "sen_id": 220418}, {"caption": "two people are riding a motorized bike and lose control", "video_id": "video11370", "sen_id": 220419}, {"caption": "women with red hair demonstrating how to prepare lamb chop ribs", "video_id": "video12702", "sen_id": 220420}, {"caption": "woman showing how to properly cut and dress pork", "video_id": "video12702", "sen_id": 220421}, {"caption": "a person spreading a green paste over a rack of ribs", "video_id": "video12702", "sen_id": 220422}, {"caption": "in the kitchena lady is slicing and spicing pork meat", "video_id": "video12702", "sen_id": 220423}, {"caption": "a chef demonstrates a method for slicing meat for a recipe", "video_id": "video12702", "sen_id": 220424}, {"caption": "a woman slowly cuts up a piece of a dead animal while standing inside of a kitchen", "video_id": "video12702", "sen_id": 220425}, {"caption": "a woman is slicing and unfolding the meat carefully like opening a book in order to spread the pastings and seasonings on the meat", "video_id": "video12702", "sen_id": 220426}, {"caption": "a chef demonstrates a technique for slicing meat and stuffing it", "video_id": "video12702", "sen_id": 220427}, {"caption": "a woman is slicing a rack of meat and filling it with green paste", "video_id": "video12702", "sen_id": 220428}, {"caption": "a person prepares a recipe that they explain and go over", "video_id": "video12702", "sen_id": 220429}, {"caption": "a woman slices up some ribs and pours some paste over them", "video_id": "video12702", "sen_id": 220430}, {"caption": "in a kitchenthere is women slicing meet", "video_id": "video12702", "sen_id": 220431}, {"caption": "a chef shows how to slice pork like a book for a recipie", "video_id": "video12702", "sen_id": 220432}, {"caption": "a person is slicing and opening up the meat and applying a green paste over it", "video_id": "video12702", "sen_id": 220433}, {"caption": "the woman slices the rack of ribs then spreads a paste over the meat", "video_id": "video12702", "sen_id": 220434}, {"caption": "a lady is slicing the pork meat and adding some paste and making it to spread entirely", "video_id": "video12702", "sen_id": 220435}, {"caption": " in a white shirt slicing and unfolding a piece of pork and then spreading a green paste onto it", "video_id": "video12702", "sen_id": 220436}, {"caption": "a woman is slicing a meat and applying some paste on it", "video_id": "video12702", "sen_id": 220437}, {"caption": "a girl inside kitchen with knife cutting meat and putting masala with spoon to prepare dish to eat", "video_id": "video12702", "sen_id": 220438}, {"caption": "someone is spreading some green things on meat", "video_id": "video12702", "sen_id": 220439}, {"caption": "a chef showing how to nicely cut up halibut to get all of the meat", "video_id": "video12830", "sen_id": 220440}, {"caption": "a man slices halibut into small pieces on a white tabletop", "video_id": "video12830", "sen_id": 220441}, {"caption": "a man cuts very thin slices of fish", "video_id": "video12830", "sen_id": 220442}, {"caption": "a person showing a specific way to cut raw meat with a knife", "video_id": "video12830", "sen_id": 220443}, {"caption": "a chef demonstrates his method for making thin slices of fresh fish", "video_id": "video12830", "sen_id": 220444}, {"caption": "a guy cuts up some fish into small thin slices", "video_id": "video12830", "sen_id": 220445}, {"caption": "in a kitchen a man in a white coat slicing fish carefully", "video_id": "video12830", "sen_id": 220446}, {"caption": "a chef is slicing a meant in the kitchen table", "video_id": "video12830", "sen_id": 220447}, {"caption": "a man cutting the meat and slicing very thin and placing on the table", "video_id": "video12830", "sen_id": 220448}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12830", "sen_id": 220449}, {"caption": "a man with white shirt is preparing food in kitchen", "video_id": "video12830", "sen_id": 220450}, {"caption": "a person is slicing pieces for sushi on a white table", "video_id": "video12830", "sen_id": 220451}, {"caption": "a chef demonstrates how to make very thin slices of fish for a recipe", "video_id": "video12830", "sen_id": 220452}, {"caption": "someone is cutting fish in six pieces in nice shape", "video_id": "video12830", "sen_id": 220453}, {"caption": "a person is slicing ways for cooking show", "video_id": "video12830", "sen_id": 220454}, {"caption": "a man is showing how to slice sashimi for a sushi meal", "video_id": "video12830", "sen_id": 220455}, {"caption": "a person is cutting one white fish fillet with a red line on a diagonal with a small knife into smaller pieces on a white counter", "video_id": "video12830", "sen_id": 220456}, {"caption": "a chef prepares raw fish while discussing the types of fish he uses", "video_id": "video12830", "sen_id": 220457}, {"caption": "in kitchen table some one slicing somr thing to six pieces neatly with a knife", "video_id": "video12830", "sen_id": 220458}, {"caption": "the chef uses a very sharp knife to cut the fish into thin strips", "video_id": "video12830", "sen_id": 220459}, {"caption": "a man wearing eyeglasses and a gray jacket holds a microphone while gesturing with his other hand in front of a white horizontal backdrop", "video_id": "video11235", "sen_id": 220460}, {"caption": "two men discuss the storage capacity of a computer system they work with", "video_id": "video11235", "sen_id": 220461}, {"caption": "two men with eyeglasses are talking on a microphone", "video_id": "video11235", "sen_id": 220462}, {"caption": "a video that is talking about video storage", "video_id": "video11235", "sen_id": 220463}, {"caption": "men are standing in front of a crowd in suits talking", "video_id": "video11235", "sen_id": 220464}, {"caption": "public speakers addressing a crowd", "video_id": "video11235", "sen_id": 220465}, {"caption": "two men in business suits use microphones to give a presentation to a crowd of people", "video_id": "video11235", "sen_id": 220466}, {"caption": "a man wearing a suit and talking about technology and manufacturing", "video_id": "video11235", "sen_id": 220467}, {"caption": "rob crooke holding a microphone while giving a speech", "video_id": "video11235", "sen_id": 220468}, {"caption": "men holding microphones are talking about computer storage technology", "video_id": "video11235", "sen_id": 220469}, {"caption": "there are two men speaking in suits with microphones in their hand in front of a white background", "video_id": "video11235", "sen_id": 220470}, {"caption": "there is a suit man talking from a studio", "video_id": "video11235", "sen_id": 220471}, {"caption": "an old man with glasses talks about technology on a microphone", "video_id": "video11235", "sen_id": 220472}, {"caption": "a senior officer of a computer-component company is holding a microphone and speaking against a white wall another man illustrates a point using his curled finger", "video_id": "video11235", "sen_id": 220473}, {"caption": "two men talk about a technology that they have developed", "video_id": "video11235", "sen_id": 220474}, {"caption": "guy in glass holding the mic talking to the audience", "video_id": "video11235", "sen_id": 220475}, {"caption": "a men is talking with mic in his hand", "video_id": "video11235", "sen_id": 220476}, {"caption": "the man wearing a suit holds the mic and talks to the group", "video_id": "video11235", "sen_id": 220477}, {"caption": "a man with a microphone is talking about the recent accomplishments of an it company", "video_id": "video11235", "sen_id": 220478}, {"caption": "a man is talking about terabytes of storage he is wearing a suit", "video_id": "video11235", "sen_id": 220479}, {"caption": "people loving puppies and a room full of empty dog crates", "video_id": "video12090", "sen_id": 220480}, {"caption": "a woman is holding a puppy while it licks her in the face in a kennel area", "video_id": "video12090", "sen_id": 220481}, {"caption": "young women play with puppies at an animal shelter", "video_id": "video12090", "sen_id": 220482}, {"caption": "a bunch of people holding animals at what appears to be a shelter or something", "video_id": "video12090", "sen_id": 220483}, {"caption": "a blonde woman with a purple tank top is in a dog kennel holding a puppy while it licks her face", "video_id": "video12090", "sen_id": 220484}, {"caption": "women get licked in the faces by dogs and enjoy it", "video_id": "video12090", "sen_id": 220485}, {"caption": "people who are being cuddled by their pets", "video_id": "video12090", "sen_id": 220486}, {"caption": "in quick succession three different women are each holding puppies and showing them affection", "video_id": "video12090", "sen_id": 220487}, {"caption": "women are shown in the video holding puppies while one exclaims oh you are so sweet", "video_id": "video12090", "sen_id": 220488}, {"caption": "several young women are holding puppies", "video_id": "video12090", "sen_id": 220489}, {"caption": "a woman is playing with an animal in a pet store", "video_id": "video12090", "sen_id": 220490}, {"caption": "a woman in a purple shirt is holding two puppies outside a woman wearing a black shirt and glasses kisses a puppy and a blonde haired woman kisses a white puppy while standing around lots of kennels and dog food bags that are on shelves", "video_id": "video12090", "sen_id": 220491}, {"caption": "several young girls are shown holding small animals with happy piano music in the background", "video_id": "video12090", "sen_id": 220492}, {"caption": "women playing with puppies at an animal shelter", "video_id": "video12090", "sen_id": 220493}, {"caption": "women in an animal shelter hold puppies of different colors talk about how sweet the puppies are", "video_id": "video12090", "sen_id": 220494}, {"caption": "a puppy licks a blonde woman s face in an animal shelter", "video_id": "video12090", "sen_id": 220495}, {"caption": "a puppy is pampered and playing with their owners", "video_id": "video12090", "sen_id": 220496}, {"caption": "different women are holding little puppys in a building with cages", "video_id": "video12090", "sen_id": 220497}, {"caption": "pretty young girls hold adorable little animals", "video_id": "video12090", "sen_id": 220498}, {"caption": "in a hosue a women in black dress holding a puppy in white on her solder", "video_id": "video12090", "sen_id": 220499}, {"caption": "a blank screen with a pop up box", "video_id": "video10249", "sen_id": 220500}, {"caption": "a computer screen with a list on the right side of the screen", "video_id": "video10249", "sen_id": 220501}, {"caption": "a man is showing how to use a type of software", "video_id": "video10249", "sen_id": 220502}, {"caption": "a man is talking and showing how to use a program on the computer", "video_id": "video10249", "sen_id": 220503}, {"caption": "a person is teaching students about dag and he is uploading it online", "video_id": "video10249", "sen_id": 220504}, {"caption": "a man discusses an algorithm shown on a computer screen", "video_id": "video10249", "sen_id": 220505}, {"caption": "there is a notes of topological sort in a dag", "video_id": "video10249", "sen_id": 220506}, {"caption": "information being displayed on the screen", "video_id": "video10249", "sen_id": 220507}, {"caption": "a man is talking about a computer screen about a simpler alga rhythm", "video_id": "video10249", "sen_id": 220508}, {"caption": "a man is showing how to use a computer program", "video_id": "video10249", "sen_id": 220509}, {"caption": "there is something impressing matters going on", "video_id": "video10249", "sen_id": 220510}, {"caption": "video showing an information displayed on the screen", "video_id": "video10249", "sen_id": 220511}, {"caption": "a topological sort in a dag reverse dfs order", "video_id": "video10249", "sen_id": 220512}, {"caption": "the presentation to the audience is done with the help of data", "video_id": "video10249", "sen_id": 220513}, {"caption": "the man talks through the simple algorithm for computer programmers", "video_id": "video10249", "sen_id": 220514}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10249", "sen_id": 220515}, {"caption": "two screenshots with white background lasting approximately one second each", "video_id": "video10249", "sen_id": 220516}, {"caption": "a man is explains a new algorithm to replace an older version", "video_id": "video10249", "sen_id": 220517}, {"caption": "a man shows how to use a very helpful program", "video_id": "video10249", "sen_id": 220518}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video10249", "sen_id": 220519}, {"caption": "a man gives commentary about railroads cowboys and meat processing", "video_id": "video12532", "sen_id": 220520}, {"caption": "a herd of cattle is being driven by cowboys", "video_id": "video12532", "sen_id": 220521}, {"caption": "a group of people are herding cattle in the desert", "video_id": "video12532", "sen_id": 220522}, {"caption": "a black and whlte of cowboys racing animals to the slaughter house and several butchered animals", "video_id": "video12532", "sen_id": 220523}, {"caption": "a man is talking about railroads while footage of a cattle drive is shown", "video_id": "video12532", "sen_id": 220524}, {"caption": "black and white footage of cowboys on horses rounding up cattle", "video_id": "video12532", "sen_id": 220525}, {"caption": "some cowboys riding a horse in the herd of cows and hunting them for beef", "video_id": "video12532", "sen_id": 220526}, {"caption": "a large group of cows are herded by a group of men riding on horses", "video_id": "video12532", "sen_id": 220527}, {"caption": "a man describing the history of cowboys while images of cows run across the screen", "video_id": "video12532", "sen_id": 220528}, {"caption": "black and white footage of cowboys on horses rounding up cattle", "video_id": "video12532", "sen_id": 220529}, {"caption": "there are men on horses running cattle down by the rail roads for slaughter", "video_id": "video12532", "sen_id": 220530}, {"caption": "railroad pictures with beautiful scenery with cowboys on horses chasing cattle", "video_id": "video12532", "sen_id": 220531}, {"caption": "a man is talking about industrial meat marketing", "video_id": "video12532", "sen_id": 220532}, {"caption": "cows are seen running across land in a black and white tape and a man is talking about them", "video_id": "video12532", "sen_id": 220533}, {"caption": "a group of men on horses herds a large group of cattle in a desert", "video_id": "video12532", "sen_id": 220534}, {"caption": "the railroad and the market for cattle in texas", "video_id": "video12532", "sen_id": 220535}, {"caption": "the man talks about that without rail roads the cow boys would have driven the cattles in endless circle", "video_id": "video12532", "sen_id": 220536}, {"caption": "people riding horses and chasing cows and person talking about railroad", "video_id": "video12532", "sen_id": 220537}, {"caption": "a black and white video is taken of cowboys and cattle in early america", "video_id": "video12532", "sen_id": 220538}, {"caption": "a black and white scene of nature is shown", "video_id": "video12532", "sen_id": 220539}, {"caption": "a man is walking into a room with a lot of red cots on the floor maybe for massages there are other people in the room waiting around", "video_id": "video10009", "sen_id": 220540}, {"caption": "people standing around and talking in a cabin", "video_id": "video10009", "sen_id": 220541}, {"caption": "a person talking about a group of people living together in a cabin", "video_id": "video10009", "sen_id": 220542}, {"caption": "different freshly made bed are displayed as someone pans around the room with the camera", "video_id": "video10009", "sen_id": 220543}, {"caption": "in a wooden floor room all the mattresses with red bedsheets and yellow pillows", "video_id": "video10009", "sen_id": 220544}, {"caption": "a guy recording a lot of red floor beds", "video_id": "video10009", "sen_id": 220545}, {"caption": "a room full of red bed is shown and some girls are seen in pyjamas", "video_id": "video10009", "sen_id": 220546}, {"caption": "a man walks around a room full of beds with red covers and towels on top", "video_id": "video10009", "sen_id": 220547}, {"caption": "woman is in the room with many red beds", "video_id": "video10009", "sen_id": 220548}, {"caption": "an inside look at some sort of sleeping arrangement with red beds and wooden floors", "video_id": "video10009", "sen_id": 220549}, {"caption": "a row of red beds with girls in a room", "video_id": "video10009", "sen_id": 220550}, {"caption": "a room with a lot of mattress covered with red sheets", "video_id": "video10009", "sen_id": 220551}, {"caption": "young people at a camp have specially folded towels on their bunk beds", "video_id": "video10009", "sen_id": 220552}, {"caption": "a room full of red mattresses for the people to rest", "video_id": "video10009", "sen_id": 220553}, {"caption": "many beds with red sheets are in a room with wooden floors", "video_id": "video10009", "sen_id": 220554}, {"caption": "a man talking about how he folded towels different this time", "video_id": "video10009", "sen_id": 220555}, {"caption": "towels are folded in cylinders on top of red floor mats", "video_id": "video10009", "sen_id": 220556}, {"caption": "there are some beds with red sheet and decoration are line up in a big hall", "video_id": "video10009", "sen_id": 220557}, {"caption": "a group entering a hotel with a very large community room", "video_id": "video10009", "sen_id": 220558}, {"caption": "a person is filming some red beds inside", "video_id": "video10009", "sen_id": 220559}, {"caption": "commercial of a woman talking mournfully and a man taking a pill", "video_id": "video12314", "sen_id": 220560}, {"caption": "a girl is talking on the phone while a boy is taking a pill", "video_id": "video12314", "sen_id": 220561}, {"caption": "a man and woman have a sad conversation over the phone", "video_id": "video12314", "sen_id": 220562}, {"caption": "an asian man talks to a woman and blows into a glass", "video_id": "video12314", "sen_id": 220563}, {"caption": "an asian man looks out an apartment window while talking on the phone to his girlfriend; he then eats gum and blows his breath into a bottle", "video_id": "video12314", "sen_id": 220564}, {"caption": "a man and a woman talking to each other on the phone", "video_id": "video12314", "sen_id": 220565}, {"caption": "a boy is talking to a girl on phone and later after the call takes a pill", "video_id": "video12314", "sen_id": 220566}, {"caption": "the ending of a doritos commercial and the beginning of a korean commercial", "video_id": "video12314", "sen_id": 220567}, {"caption": "a doritos ad ends with a couple communicating on the phone and the man takes a breath freshener and a drink", "video_id": "video12314", "sen_id": 220568}, {"caption": "a boy in white t shirt standing boy calling girl in phone and boy eating and drinking displaying on the screen", "video_id": "video12314", "sen_id": 220569}, {"caption": "a couple speaking via mobile and man putting the tablet in the mouth and drink water", "video_id": "video12314", "sen_id": 220570}, {"caption": "a advertisement about some product a girl talking to his boyfriend", "video_id": "video12314", "sen_id": 220571}, {"caption": "guy takes medicine after speaking to a girl over the phone", "video_id": "video12314", "sen_id": 220572}, {"caption": "after being told his breath stinks a man sits on his couch and takes a breath mint", "video_id": "video12314", "sen_id": 220573}, {"caption": "a guy is carrying some chips and talking about things", "video_id": "video12314", "sen_id": 220574}, {"caption": "a man talking with a girl and eating tablet", "video_id": "video12314", "sen_id": 220575}, {"caption": "a girl crying and talking to her boy friend by phone", "video_id": "video12314", "sen_id": 220576}, {"caption": "a young woman talking and crying while a young man takes a piece of gum and then blows into some type of bottle", "video_id": "video12314", "sen_id": 220577}, {"caption": "a pretty woman had done her eye make-up very beautifully", "video_id": "video12314", "sen_id": 220578}, {"caption": "a women with a jar is sipping on a drink", "video_id": "video12314", "sen_id": 220579}, {"caption": "a woman is in a kitchen pouring two packets of yeast into a bowl of flour", "video_id": "video12431", "sen_id": 220580}, {"caption": "a person is adding yeast to a plastic bowl of flour", "video_id": "video12431", "sen_id": 220581}, {"caption": "a recipe is displayed and music is played while a person places ingredients into a bowl", "video_id": "video12431", "sen_id": 220582}, {"caption": "someone is opening a small package that contains yeast and pouring it into a bowl filled with flour already", "video_id": "video12431", "sen_id": 220583}, {"caption": "some one is adding yeast to flour in a plastic bowl", "video_id": "video12431", "sen_id": 220584}, {"caption": "someone putting starch and other ingredients into a bowl", "video_id": "video12431", "sen_id": 220585}, {"caption": "a person pours two packs of yeast into a bowl with flour in it", "video_id": "video12431", "sen_id": 220586}, {"caption": "a packet of yeast is torn open and the contents sprinkled on top of flour in a plastic mixing bowl on the counter by the kitchen sink", "video_id": "video12431", "sen_id": 220587}, {"caption": "hands opening a package of yeast and placing it into a clear bowl", "video_id": "video12431", "sen_id": 220588}, {"caption": "someone is mixing flour and yeast in a bowl", "video_id": "video12431", "sen_id": 220589}, {"caption": "a person cooking a variety in a oil on the pan", "video_id": "video12431", "sen_id": 220590}, {"caption": "a plastic white bowl holds a small amount of tan colored powder", "video_id": "video12431", "sen_id": 220591}, {"caption": "a recipe for making a dish with flour and yeast", "video_id": "video12431", "sen_id": 220592}, {"caption": "a person mixes flour and water in a clear bowl", "video_id": "video12431", "sen_id": 220593}, {"caption": "yeast is being added to flour in a large bowl", "video_id": "video12431", "sen_id": 220594}, {"caption": "it is adding some east into the flour powder", "video_id": "video12431", "sen_id": 220595}, {"caption": "a person putting ingredients into a light color bowl", "video_id": "video12431", "sen_id": 220596}, {"caption": "female singing directions in a foreign language on how to make something directions are being translated in english on the screen", "video_id": "video12431", "sen_id": 220597}, {"caption": "put the flour in a bowl and add the two packs of yeast", "video_id": "video12431", "sen_id": 220598}, {"caption": "a person mixes together ingredients in a clear bowl", "video_id": "video12431", "sen_id": 220599}, {"caption": "cars with bright headlights contrast with the dark street lined with lit light posts as they wait at an intersection as other cars pass", "video_id": "video12002", "sen_id": 220600}, {"caption": "a man riding a motorcycle and several other cars on the roadway at night", "video_id": "video12002", "sen_id": 220601}, {"caption": "a bike rider runs a red light and is run into by a car", "video_id": "video12002", "sen_id": 220602}, {"caption": "a bicycle rider runs through a red light and is struck by a car", "video_id": "video12002", "sen_id": 220603}, {"caption": "traffic passing through an intersection at night", "video_id": "video12002", "sen_id": 220604}, {"caption": "the white lights of traffic at a stop light at night", "video_id": "video12002", "sen_id": 220605}, {"caption": "a camera pointing at cars on the highway", "video_id": "video12002", "sen_id": 220606}, {"caption": "cars are waiting at a light followed by another intersection with cars driving through", "video_id": "video12002", "sen_id": 220607}, {"caption": "a four way intersection with six lanes on both sides has a lot of traffic", "video_id": "video12002", "sen_id": 220608}, {"caption": "a nightime graphic of a highway with steetlights and hundreds of cars with their headlights on", "video_id": "video12002", "sen_id": 220609}, {"caption": "traffic light footage where a car hits a motorcyclist", "video_id": "video12002", "sen_id": 220610}, {"caption": "in a busy city street vehicles are waiting in a signal light", "video_id": "video12002", "sen_id": 220611}, {"caption": "on the road vehicle are moving hrte and there", "video_id": "video12002", "sen_id": 220612}, {"caption": "cars set at a traffic light at night and wait their turn to proceed", "video_id": "video12002", "sen_id": 220613}, {"caption": "a number of cars near signal moving on road and street light night time displaying on screen", "video_id": "video12002", "sen_id": 220614}, {"caption": "in a night traffic scene a car crashed a bike crossing road", "video_id": "video12002", "sen_id": 220615}, {"caption": "we can see a footage of a buy main road at night it s supposed to be china if i am not wrong", "video_id": "video12002", "sen_id": 220616}, {"caption": "cars wait at a red light for it too change", "video_id": "video12002", "sen_id": 220617}, {"caption": "several cars that are racing on a city street and a car accident with a car hitting a motocycle", "video_id": "video12002", "sen_id": 220618}, {"caption": "cars in china are driving on a street at night", "video_id": "video12002", "sen_id": 220619}, {"caption": "a man playing fetch with a large fish in water", "video_id": "video12556", "sen_id": 220620}, {"caption": "a man is in water trying to catch a large gold fish", "video_id": "video12556", "sen_id": 220621}, {"caption": "a person flips water in a pond with their finger and a fish swims over for them to pick it up", "video_id": "video12556", "sen_id": 220622}, {"caption": "a man plays with a large goldfish in a pond", "video_id": "video12556", "sen_id": 220623}, {"caption": "a man signaling to a fish to come and the fish swims to his hands in the water", "video_id": "video12556", "sen_id": 220624}, {"caption": "a man is playing with a fish that is in the water", "video_id": "video12556", "sen_id": 220625}, {"caption": "a man in blue t shirt playing with a golden fish in a pool", "video_id": "video12556", "sen_id": 220626}, {"caption": "there is a man playing with a fish", "video_id": "video12556", "sen_id": 220627}, {"caption": "a man plays catch with an orange fish", "video_id": "video12556", "sen_id": 220628}, {"caption": "a man sticks his hand into the water and plays with a fish", "video_id": "video12556", "sen_id": 220629}, {"caption": "a golden fish is swimming inside the water", "video_id": "video12556", "sen_id": 220630}, {"caption": "a man putting with hands in the water and an orange fish coming up and allowing him to pet it", "video_id": "video12556", "sen_id": 220631}, {"caption": "a man catching a fish on the water", "video_id": "video12556", "sen_id": 220632}, {"caption": "person keeps his hand in water then he touches the fish which is in nice color", "video_id": "video12556", "sen_id": 220633}, {"caption": "a person is trying to catch the fish swimming in the water", "video_id": "video12556", "sen_id": 220634}, {"caption": "a man teaches a large goldfish a call and respond command in a pond filled with water", "video_id": "video12556", "sen_id": 220635}, {"caption": "a man plays with a fish in a pond", "video_id": "video12556", "sen_id": 220636}, {"caption": "a man plays fetch with his pet goldfish", "video_id": "video12556", "sen_id": 220637}, {"caption": "an orange fish is swimming in water and a man doing something in fingers and fish responding it", "video_id": "video12556", "sen_id": 220638}, {"caption": "the man flicks the water to get the large orange fish to swim closer to him", "video_id": "video12556", "sen_id": 220639}, {"caption": "a tiger walking through tall grass and an animal chasing another animal around a bush", "video_id": "video11134", "sen_id": 220640}, {"caption": "a tiger is walking through tall grass in the wild", "video_id": "video11134", "sen_id": 220641}, {"caption": "tigers and gazelles wander through the grassy plains", "video_id": "video11134", "sen_id": 220642}, {"caption": "a tiger slowly running on the forest", "video_id": "video11134", "sen_id": 220643}, {"caption": "a tiger watching two dears frolicking at a green field", "video_id": "video11134", "sen_id": 220644}, {"caption": "a tiger roaming through the grass after it s prey", "video_id": "video11134", "sen_id": 220645}, {"caption": "there is a tiger walking in to the forest", "video_id": "video11134", "sen_id": 220646}, {"caption": "more animal in the forest are walking", "video_id": "video11134", "sen_id": 220647}, {"caption": "tiger walking in forest two wild goats fighting", "video_id": "video11134", "sen_id": 220648}, {"caption": "a tiger is slowly walking through savannah grass while two antelope butt heads in a battle", "video_id": "video11134", "sen_id": 220649}, {"caption": "there is a tiger walking in to the grass", "video_id": "video11134", "sen_id": 220650}, {"caption": "a couple of wild animals roaming threw grass lands", "video_id": "video11134", "sen_id": 220651}, {"caption": "a countdown of jungle animals such as tigers and zebras", "video_id": "video11134", "sen_id": 220652}, {"caption": "there is shot of some wildlife mostly shows a tiger walking through some tall grass", "video_id": "video11134", "sen_id": 220653}, {"caption": "an animal is wandering around its habitat", "video_id": "video11134", "sen_id": 220654}, {"caption": "large wild cats are shown in grassy environments", "video_id": "video11134", "sen_id": 220655}, {"caption": "a tiger walking through tall grass along with antelope", "video_id": "video11134", "sen_id": 220656}, {"caption": "wild tiger walking trough the grassland in a valley", "video_id": "video11134", "sen_id": 220657}, {"caption": "a bengal tiger is sleeking through the grass and then becomes a predator that takes down a gazelle", "video_id": "video11134", "sen_id": 220658}, {"caption": "some animals are walking around in africa", "video_id": "video11134", "sen_id": 220659}, {"caption": "a bowl of tomato bisque sits on a table while an unseen person speaks about the dish", "video_id": "video12116", "sen_id": 220660}, {"caption": "a beautiful red tomato bisque is in a while bowl with a swirl of white and green embellishments", "video_id": "video12116", "sen_id": 220661}, {"caption": "a male voiceover discusses making tomato bisque while we take a long look at a bowl of it", "video_id": "video12116", "sen_id": 220662}, {"caption": "a chef describes a recipe for tomato soup that he has prepared", "video_id": "video12116", "sen_id": 220663}, {"caption": "a video shot of a nice soup looking all fancy on a table", "video_id": "video12116", "sen_id": 220664}, {"caption": "its about the food tomoto soup and cream on top", "video_id": "video12116", "sen_id": 220665}, {"caption": "an appetizing bowl of tomato bisque in a white bowl is spoken about by an excited man", "video_id": "video12116", "sen_id": 220666}, {"caption": "a man was prepare tomato bisque and talking about it", "video_id": "video12116", "sen_id": 220667}, {"caption": "a person pours tomatoe soup into a white bowland adds creame", "video_id": "video12116", "sen_id": 220668}, {"caption": "a person has prepared and very nice tomato bisque", "video_id": "video12116", "sen_id": 220669}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12116", "sen_id": 220670}, {"caption": "a man is heard saying on how to prepare tomato bisque with canned tomatoes if we don t have fresh ripen tomatoes", "video_id": "video12116", "sen_id": 220671}, {"caption": "a chef prepares some ingredients in a kitchen", "video_id": "video12116", "sen_id": 220672}, {"caption": "someone talking about how to make a good tomato soup", "video_id": "video12116", "sen_id": 220673}, {"caption": "the soup shown is a tomato bisque with sour cream and herbs", "video_id": "video12116", "sen_id": 220674}, {"caption": "there is verity dish served beautifully for a dinner", "video_id": "video12116", "sen_id": 220675}, {"caption": "a white bowl full of to tomato bisque on a table along with tablespoon", "video_id": "video12116", "sen_id": 220676}, {"caption": "showing a tomato bisque served on a white bowl with some white cream on it some green leaves", "video_id": "video12116", "sen_id": 220677}, {"caption": "a tomato preparation is neatly served in a beautiful white porcelain plate", "video_id": "video12116", "sen_id": 220678}, {"caption": "some pink soup is in a small white bowl", "video_id": "video12116", "sen_id": 220679}, {"caption": "a person doing a tutorial video of how to replace a cd holder", "video_id": "video10484", "sen_id": 220680}, {"caption": "a tutorial on how to threat with a cd holder", "video_id": "video10484", "sen_id": 220681}, {"caption": "a person puts thin string on the bottom of cover of a sleeve of dvd-rs", "video_id": "video10484", "sen_id": 220682}, {"caption": "a person putting a string onto a plastic cover", "video_id": "video10484", "sen_id": 220683}, {"caption": "a person is taking clear tape and sticking on top of a disc cover", "video_id": "video10484", "sen_id": 220684}, {"caption": "a hand putting a string and tape on a plastic cd cover", "video_id": "video10484", "sen_id": 220685}, {"caption": "a pair of hands are shown applying clear tape to the sides of a dvd spindle stack case lid", "video_id": "video10484", "sen_id": 220686}, {"caption": "two hands are taping string to a clear lid", "video_id": "video10484", "sen_id": 220687}, {"caption": "instructions are being given about how to construct something from tape and a plastic cd holder", "video_id": "video10484", "sen_id": 220688}, {"caption": "a person is carefully placing something in a bowl", "video_id": "video10484", "sen_id": 220689}, {"caption": "a person is manipulating an empty stack cd cover with string", "video_id": "video10484", "sen_id": 220690}, {"caption": "a person fixing a broken cd case with sellotape", "video_id": "video10484", "sen_id": 220691}, {"caption": "a person is threading a needle and pin together", "video_id": "video10484", "sen_id": 220692}, {"caption": "a men is doing some craft items with his hands and keep on table", "video_id": "video10484", "sen_id": 220693}, {"caption": "a close up of someone s hands attaching an adhesive strip", "video_id": "video10484", "sen_id": 220694}, {"caption": "stick the side of a glass bar with a tap a black circle is near to it", "video_id": "video10484", "sen_id": 220695}, {"caption": "a person trying to paste a thread to the cd cover finally she done it", "video_id": "video10484", "sen_id": 220696}, {"caption": "then stick it to the side of the cover", "video_id": "video10484", "sen_id": 220697}, {"caption": "a person showing how to put various objects together", "video_id": "video10484", "sen_id": 220698}, {"caption": "a thread showing in hand displaying on the screen round tape beside", "video_id": "video10484", "sen_id": 220699}, {"caption": "a man racing other vehicles with a bus on slippery ground", "video_id": "video12972", "sen_id": 220700}, {"caption": "a man is driving a large bus wildly while being chased by other vehicles", "video_id": "video12972", "sen_id": 220701}, {"caption": "a driver wearing a white helmet is on a racetrack avoiding other vehicles ", "video_id": "video12972", "sen_id": 220702}, {"caption": "a man drives a bus down a track while other people drive semis and buses", "video_id": "video12972", "sen_id": 220703}, {"caption": "busses are racing each other on a wet dirt track", "video_id": "video12972", "sen_id": 220704}, {"caption": "a man drives a vehicle wearing a white helmet", "video_id": "video12972", "sen_id": 220705}, {"caption": "a man is speed driving a bus and racing other vehicles", "video_id": "video12972", "sen_id": 220706}, {"caption": "a man is driving a bus on a closed course", "video_id": "video12972", "sen_id": 220707}, {"caption": "an exciting and eccentric race takes place with a semi truck and a double-trailer bus", "video_id": "video12972", "sen_id": 220708}, {"caption": "a number of large vehicles are racing around a track including a bus that is swerving constantly", "video_id": "video12972", "sen_id": 220709}, {"caption": "a buss trucks and a fuel tanker having a race", "video_id": "video12972", "sen_id": 220710}, {"caption": "several commercial vehicles race against one another on an airport runway", "video_id": "video12972", "sen_id": 220711}, {"caption": "a man driving a truck avoiding an out of control bus in front of him", "video_id": "video12972", "sen_id": 220712}, {"caption": "a dangerous race is going on between various large vehicles while a driver narrates", "video_id": "video12972", "sen_id": 220713}, {"caption": "a man driving a bus in a race around heathrow airport", "video_id": "video12972", "sen_id": 220714}, {"caption": "there is a man with helmet driving a bus", "video_id": "video12972", "sen_id": 220715}, {"caption": "people are driving commercial vehicles around a racetrack in a haphazard fashion", "video_id": "video12972", "sen_id": 220716}, {"caption": "person with helmet drives the vehicle very fast long bus is drives very fast", "video_id": "video12972", "sen_id": 220717}, {"caption": "a man in black dress color wearing helmet ryding bus fast on road many busses beside moving speaking dispalying on screen", "video_id": "video12972", "sen_id": 220718}, {"caption": "a person is driving bus and showing its features", "video_id": "video12972", "sen_id": 220719}, {"caption": "a man in a suit next to a computer and monitor talking about laser hair removal", "video_id": "video10655", "sen_id": 220720}, {"caption": "a man in a suit talks about laser hair removal", "video_id": "video10655", "sen_id": 220721}, {"caption": "a man in a suit is explaining why their laser systems are so unique in today's market place", "video_id": "video10655", "sen_id": 220722}, {"caption": "a man in a black suit and wearing a red tie talks about medical issues while standing near a laptop with a large monitor", "video_id": "video10655", "sen_id": 220723}, {"caption": "a man by the name of robert lug is standing near some type of technical equipment talking about the best laser system", "video_id": "video10655", "sen_id": 220724}, {"caption": "owner of some hair removal and medical spa speaking about his products", "video_id": "video10655", "sen_id": 220725}, {"caption": "there is a suit man talking from the studio", "video_id": "video10655", "sen_id": 220726}, {"caption": "a tall man in formal dress standing in front of monitor and talking about his product", "video_id": "video10655", "sen_id": 220727}, {"caption": "one man talking so fastly near monitor of", "video_id": "video10655", "sen_id": 220728}, {"caption": "a suited man standing near equipment for laser spa", "video_id": "video10655", "sen_id": 220729}, {"caption": "a man in suit is standing beside a laptop and tv while explaining", "video_id": "video10655", "sen_id": 220730}, {"caption": "there is a suit man talking in front of a screen", "video_id": "video10655", "sen_id": 220731}, {"caption": "the man in wear a grey costume a white shirt and purple tie he is next to a black desk with some medical items and a open laptop", "video_id": "video10655", "sen_id": 220732}, {"caption": "one man talks well about something near laptop", "video_id": "video10655", "sen_id": 220733}, {"caption": "a man is standing by a computer and talking", "video_id": "video10655", "sen_id": 220734}, {"caption": "a man in black coat is explaining something", "video_id": "video10655", "sen_id": 220735}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10655", "sen_id": 220736}, {"caption": "the expert in nano technologist is telling the chance of the new idea", "video_id": "video10655", "sen_id": 220737}, {"caption": "a man is talking about a market place", "video_id": "video10655", "sen_id": 220738}, {"caption": "a man is standing in black coat and explaining lazer", "video_id": "video10655", "sen_id": 220739}, {"caption": "a pot of chili is cooking on a stove burner with some dried spices floating on top while a man looks at and describes a wrapped piece of beef", "video_id": "video11550", "sen_id": 220740}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11550", "sen_id": 220741}, {"caption": "a person showing a pack of meat over a pot on the stove with a red sauce in it", "video_id": "video11550", "sen_id": 220742}, {"caption": "packaged meat is being held over a pot of soup", "video_id": "video11550", "sen_id": 220743}, {"caption": "a woman holding a container of meat talks about cutting it up and adding it to a pot she has on the stove", "video_id": "video11550", "sen_id": 220744}, {"caption": "this shows a woman cooking while she explains how she is preparing the food", "video_id": "video11550", "sen_id": 220745}, {"caption": "a woman is adding meat to the dish she is cooking on the stove", "video_id": "video11550", "sen_id": 220746}, {"caption": "there is a pot on a stove filled with sauce while a woman displays her meat", "video_id": "video11550", "sen_id": 220747}, {"caption": "a woman adds meat to her sauce in a pot on the stove", "video_id": "video11550", "sen_id": 220748}, {"caption": "a woman is making food in a pot in the kitchen", "video_id": "video11550", "sen_id": 220749}, {"caption": "video showing a women cooking", "video_id": "video11550", "sen_id": 220750}, {"caption": "a lady explaining a dish how to cook and a container kept on the gas stove", "video_id": "video11550", "sen_id": 220751}, {"caption": "a woman is cooking in the kitchen she s preparing a meal with tomato and meat", "video_id": "video11550", "sen_id": 220752}, {"caption": "a lady is at her stove preparing to make a dish with three packs of mean she will cube", "video_id": "video11550", "sen_id": 220753}, {"caption": "a woman mixes meat and sauce together in a pot", "video_id": "video11550", "sen_id": 220754}, {"caption": "a man is talking about the cut of meat he is about to add to his pot to make a dish", "video_id": "video11550", "sen_id": 220755}, {"caption": "a metal pot on the stove top has ingredients simmering inside of it", "video_id": "video11550", "sen_id": 220756}, {"caption": "a female is walking the user through the steps required for cubing stew meats into simmering tomato paste sauce", "video_id": "video11550", "sen_id": 220757}, {"caption": "a woman in a kitchen with a pot of sauce showing a piece of red meat", "video_id": "video11550", "sen_id": 220758}, {"caption": "a slab of meat is sitting on a cutting board inside", "video_id": "video11550", "sen_id": 220759}, {"caption": "a man talking about how to season a pastry with powder sugar and butter", "video_id": "video11850", "sen_id": 220760}, {"caption": "a man giving commentary while pouring sugar on the dish he's baking", "video_id": "video11850", "sen_id": 220761}, {"caption": "pastry sitting on top of a white plate having oil and sugar put on it", "video_id": "video11850", "sen_id": 220762}, {"caption": "a steaming piece of food sits on top of a white plate", "video_id": "video11850", "sen_id": 220763}, {"caption": "a slice of food cut pizza style is drizzled with a liquid and sprinkled with confectioners sugar", "video_id": "video11850", "sen_id": 220764}, {"caption": "a scone covered in powdered sugar on a white plate", "video_id": "video11850", "sen_id": 220765}, {"caption": "man explains how to serve a plate with a slice that appears to be some kind of pie", "video_id": "video11850", "sen_id": 220766}, {"caption": "slice of pie man sprinkling powder sugar and butter on the slice of pie that is on a white plate", "video_id": "video11850", "sen_id": 220767}, {"caption": "ther person places the the spice on top of the food on the plate", "video_id": "video11850", "sen_id": 220768}, {"caption": "a man plating some food with butter and powered sugar", "video_id": "video11850", "sen_id": 220769}, {"caption": "there is a man preparing a dish in a white plate", "video_id": "video11850", "sen_id": 220770}, {"caption": "a person giving instructions on how to put garnishes on a piece of pie", "video_id": "video11850", "sen_id": 220771}, {"caption": "an unseen man sprinkles the finishing touches on a piece of pie and describes what you can add to the pie to make it tasty", "video_id": "video11850", "sen_id": 220772}, {"caption": "a piece of recipe is placed in a plate and garnished by a man with salt", "video_id": "video11850", "sen_id": 220773}, {"caption": "a man is drizzling topping on a pie", "video_id": "video11850", "sen_id": 220774}, {"caption": "there is a snack on the white colour plate", "video_id": "video11850", "sen_id": 220775}, {"caption": "someone puts food on to a white plate on a table", "video_id": "video11850", "sen_id": 220776}, {"caption": "a person places a piece of pastry on a white plate on the table", "video_id": "video11850", "sen_id": 220777}, {"caption": "a guy seasoning the pie with powdered sugar lemon and some butter", "video_id": "video11850", "sen_id": 220778}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11850", "sen_id": 220779}, {"caption": "title sequence and footage from cnn student news for the days following the san bernadino california shooting of a conference center", "video_id": "video10137", "sen_id": 220780}, {"caption": "an introduction of a news logo young people and familiar international sights leads to a commentator wearing a gingham shirt under a vest in a newsroom", "video_id": "video10137", "sen_id": 220781}, {"caption": "a cnn male reporter is talking on the student news show about the terrorist attack in san bernardino california", "video_id": "video10137", "sen_id": 220782}, {"caption": "still photographs and carl azuz introduce cnn's student news", "video_id": "video10137", "sen_id": 220783}, {"caption": "a cnn intro scene starts out then it goes to a man talking to the camera", "video_id": "video10137", "sen_id": 220784}, {"caption": "a large group of people gather outside of a large downtown building", "video_id": "video10137", "sen_id": 220785}, {"caption": "a news channel showing differnet elements with a middle aged man speaking about them", "video_id": "video10137", "sen_id": 220786}, {"caption": "a man wearing black talking on cnn news", "video_id": "video10137", "sen_id": 220787}, {"caption": "the introduction to the cnn student news tv program", "video_id": "video10137", "sen_id": 220788}, {"caption": " december 7th edition of cnn student news is introduced by carl azuz", "video_id": "video10137", "sen_id": 220789}, {"caption": "a news reader reading a news in news program", "video_id": "video10137", "sen_id": 220790}, {"caption": "a news reader welcoming the viewers to the cnn student news", "video_id": "video10137", "sen_id": 220791}, {"caption": "there is a man reading news from studio", "video_id": "video10137", "sen_id": 220792}, {"caption": "man reading cnn news", "video_id": "video10137", "sen_id": 220793}, {"caption": "a man is reading a news in cnn tv channel", "video_id": "video10137", "sen_id": 220794}, {"caption": "guy in sweater and tie talking to the camera from the newsroom", "video_id": "video10137", "sen_id": 220795}, {"caption": "a man sitting talking about peoples", "video_id": "video10137", "sen_id": 220796}, {"caption": "a men reading the flash news in a television channel", "video_id": "video10137", "sen_id": 220797}, {"caption": "clippings of seven wonders and a man reading news", "video_id": "video10137", "sen_id": 220798}, {"caption": "a man is on the news talking about politics", "video_id": "video10137", "sen_id": 220799}, {"caption": "a woman is sitting on a the floor while doing exercising motions on a baby doll", "video_id": "video12871", "sen_id": 220800}, {"caption": "a woman on a yoga mat does yoga on a baby", "video_id": "video12871", "sen_id": 220801}, {"caption": "a woman sits on the floor while helping a baby exercise", "video_id": "video12871", "sen_id": 220802}, {"caption": "a woman uses a baby doll to show how she plays with her child", "video_id": "video12871", "sen_id": 220803}, {"caption": "a woman in black dressing playing with her baby", "video_id": "video12871", "sen_id": 220804}, {"caption": "a lady black color dressed moving a baby hand and legs", "video_id": "video12871", "sen_id": 220805}, {"caption": "a woman is sitting in a room on the floor demonstrating how to do exercising with a baby doll", "video_id": "video12871", "sen_id": 220806}, {"caption": "a woman sitting on the ground with a baby", "video_id": "video12871", "sen_id": 220807}, {"caption": "the mother making exercise to her baby the baby laying on the floor", "video_id": "video12871", "sen_id": 220808}, {"caption": "a woman sitting on a yoga mat taps together the hand and foot of a baby doll", "video_id": "video12871", "sen_id": 220809}, {"caption": "a woman in a care center demonstrating simple exercises for children to improve flexibility", "video_id": "video12871", "sen_id": 220810}, {"caption": "a woman in black dress is sitting on mat and teaching how to make baby parts more active", "video_id": "video12871", "sen_id": 220811}, {"caption": "a women explain how to give excise for small child", "video_id": "video12871", "sen_id": 220812}, {"caption": "mother sits on the ground and makes the limbs of kid flexible", "video_id": "video12871", "sen_id": 220813}, {"caption": "a woman sitting on a yoga mat in an empty room moves a toy baby s hands and feet to touch one another", "video_id": "video12871", "sen_id": 220814}, {"caption": "a lady in black dress sit on the pink sheetshe teaches on how to do excessive body excersice", "video_id": "video12871", "sen_id": 220815}, {"caption": "a woman in black is sitting in mat and with toy baby she teaching exercise for baby moms", "video_id": "video12871", "sen_id": 220816}, {"caption": "mom with her baby is showing how to workout the baby", "video_id": "video12871", "sen_id": 220817}, {"caption": "a lady in black sleeveless dress is teaching to do a baby s exercises", "video_id": "video12871", "sen_id": 220818}, {"caption": "a woman is abusing a small baby doll", "video_id": "video12871", "sen_id": 220819}, {"caption": "a doubles match of badminton being played on an indoor court", "video_id": "video12891", "sen_id": 220820}, {"caption": "people are playing a tennis match with two people on each side of the tennis court", "video_id": "video12891", "sen_id": 220821}, {"caption": "a badminton match between a pair of english and indonesian players", "video_id": "video12891", "sen_id": 220822}, {"caption": "four peopletwo in each team playing tennis in the lawn", "video_id": "video12891", "sen_id": 220823}, {"caption": "people playing couples tennis on a small court", "video_id": "video12891", "sen_id": 220824}, {"caption": "a doubles tennis match one team is in white the other is in purple", "video_id": "video12891", "sen_id": 220825}, {"caption": "a point is socred by tennis players in a doubles match", "video_id": "video12891", "sen_id": 220826}, {"caption": "four people playing each other in a game of tennis", "video_id": "video12891", "sen_id": 220827}, {"caption": "two paired teams of people are facing off in a badminton match", "video_id": "video12891", "sen_id": 220828}, {"caption": "a tennis game is being played in an indoor arena in front of an audience", "video_id": "video12891", "sen_id": 220829}, {"caption": "a game of tennis doubles are playing a match in an arena", "video_id": "video12891", "sen_id": 220830}, {"caption": "two teams are competing against each other in a game of tennis", "video_id": "video12891", "sen_id": 220831}, {"caption": "there are some players working hard in a badminton court", "video_id": "video12891", "sen_id": 220832}, {"caption": "players playing lawn tennis game", "video_id": "video12891", "sen_id": 220833}, {"caption": "blue and white dressed player playing shuttle cork match and blue dressed guy won a point", "video_id": "video12891", "sen_id": 220834}, {"caption": "four athletes are playing doubles on a tennis court", "video_id": "video12891", "sen_id": 220835}, {"caption": "two men and two women tennis players playing mixed doubles and audience cheering for them", "video_id": "video12891", "sen_id": 220836}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video12891", "sen_id": 220837}, {"caption": "a couple clips of two bat mitten games", "video_id": "video12891", "sen_id": 220838}, {"caption": "four badminton woman players playing a match on the court", "video_id": "video12891", "sen_id": 220839}, {"caption": "a roller coaster is about to drop down", "video_id": "video10451", "sen_id": 220840}, {"caption": "a view from the first car of a roller coaster", "video_id": "video10451", "sen_id": 220841}, {"caption": "the view from the front seat of a roller coaster", "video_id": "video10451", "sen_id": 220842}, {"caption": "a verbal summary of the steepest roller coaster in the world", "video_id": "video10451", "sen_id": 220843}, {"caption": "a roller coaster in japan is said to have the steepest drop in the world", "video_id": "video10451", "sen_id": 220844}, {"caption": "a person is riding the steepest roller coaster in the world", "video_id": "video10451", "sen_id": 220845}, {"caption": "a roller coaster in japan has a 43 foot (43m) drop is being explained by a man unseen", "video_id": "video10451", "sen_id": 220846}, {"caption": "an arcade game and a roller coaster going up a track", "video_id": "video10451", "sen_id": 220847}, {"caption": "a roller coaster is escalating right before it drops", "video_id": "video10451", "sen_id": 220848}, {"caption": "a japanese roller coaster has the steepest drop in the world and is a popular attraction", "video_id": "video10451", "sen_id": 220849}, {"caption": "a guy plays video games and talks about steep rollercoasters in japan", "video_id": "video10451", "sen_id": 220850}, {"caption": "a close up footage of a roller caoster ride is being shown", "video_id": "video10451", "sen_id": 220851}, {"caption": "a man on the carousel himself shooting with cam when ride is on", "video_id": "video10451", "sen_id": 220852}, {"caption": "the front seat of a rollercoaster about to descend into a huge dive", "video_id": "video10451", "sen_id": 220853}, {"caption": "the steepest roller coaster in the world located in japan that has a 43 meter drop", "video_id": "video10451", "sen_id": 220854}, {"caption": "a twisty roller coaster is standing out side", "video_id": "video10451", "sen_id": 220855}, {"caption": "a big machine is showed", "video_id": "video10451", "sen_id": 220856}, {"caption": " someone is riding the steepest rollercoaster in the world that has a 43 meter drop", "video_id": "video10451", "sen_id": 220857}, {"caption": "there is a roller coaster with a 43m drop", "video_id": "video10451", "sen_id": 220858}, {"caption": "a very big roller-coaster is shown and it is the deepest roller-coaster in the world", "video_id": "video10451", "sen_id": 220859}, {"caption": "pair of men taking a slide down the side of a long hill", "video_id": "video10561", "sen_id": 220860}, {"caption": "people riding sleds on a downhill outside slide in the mountains", "video_id": "video10561", "sen_id": 220861}, {"caption": "a person is riding a bobsled around a curvy track", "video_id": "video10561", "sen_id": 220862}, {"caption": "two people take a fun bobsled down from pounders pointe", "video_id": "video10561", "sen_id": 220863}, {"caption": "people are going down a hill on an alpine slide", "video_id": "video10561", "sen_id": 220864}, {"caption": "someone is bobsledding down a slide", "video_id": "video10561", "sen_id": 220865}, {"caption": "children enjoy playing with toys in the park", "video_id": "video10561", "sen_id": 220866}, {"caption": "people are traveling down a mountain on a very long slide", "video_id": "video10561", "sen_id": 220867}, {"caption": "music plays while two people are siding down a ride", "video_id": "video10561", "sen_id": 220868}, {"caption": "this is a video of what looks to be a fun hobby called land sledding it is sort of like bobsledding without the cold and ice", "video_id": "video10561", "sen_id": 220869}, {"caption": "a person is sliding down a road on a hill with a sled", "video_id": "video10561", "sen_id": 220870}, {"caption": "people are riding slopes in the woods at a resort", "video_id": "video10561", "sen_id": 220871}, {"caption": "people sliding down the hill at a resort called founders pointe", "video_id": "video10561", "sen_id": 220872}, {"caption": "individuals ride down a very long luge trail down a hill", "video_id": "video10561", "sen_id": 220873}, {"caption": "some people are riding a slide down hill", "video_id": "video10561", "sen_id": 220874}, {"caption": "people are riding slides down a wooded mountain", "video_id": "video10561", "sen_id": 220875}, {"caption": "a man wearing black color dress is riding", "video_id": "video10561", "sen_id": 220876}, {"caption": "two guys going around a park in a vehicle", "video_id": "video10561", "sen_id": 220877}, {"caption": "people ride down a hill on an enormous slide", "video_id": "video10561", "sen_id": 220878}, {"caption": "people ride down a dry bobsled track on a hillside", "video_id": "video10561", "sen_id": 220879}, {"caption": "a great play being made in a baseball game", "video_id": "video12944", "sen_id": 220880}, {"caption": "a person in the stands records a night baseball game at a baseball field", "video_id": "video12944", "sen_id": 220881}, {"caption": "a batter hits a baseball and is able to score a double in a major league game", "video_id": "video12944", "sen_id": 220882}, {"caption": "a batter hits the ball when bases are loaded all players advance the catcher gets ready to tag a player running home the player jumps over the catcher and the player touches home base with his hand", "video_id": "video12944", "sen_id": 220883}, {"caption": "a man in a baseball uniform jumps over the catcher to score", "video_id": "video12944", "sen_id": 220884}, {"caption": "a group of people playing baseball and they are running the bases", "video_id": "video12944", "sen_id": 220885}, {"caption": "a batter hits a home run and runs through the bases", "video_id": "video12944", "sen_id": 220886}, {"caption": "at a baseball park the batter hits the ball and the crowd starts screaming while the player on third base makes it home to score a point for the team", "video_id": "video12944", "sen_id": 220887}, {"caption": "boys are playing on the ground and audience are around there", "video_id": "video12944", "sen_id": 220888}, {"caption": "two team playing baseball on a field while people watch", "video_id": "video12944", "sen_id": 220889}, {"caption": "a group of hockey teams are performed on aground", "video_id": "video12944", "sen_id": 220890}, {"caption": "a baseball player smacks a ball into the outfield", "video_id": "video12944", "sen_id": 220891}, {"caption": "audience watching baseball match cheers after witnessing a great shot", "video_id": "video12944", "sen_id": 220892}, {"caption": "there are someone playing rugby in a stadium", "video_id": "video12944", "sen_id": 220893}, {"caption": "small boy walking on the ground he goes and take the bat and hit the ball and runs", "video_id": "video12944", "sen_id": 220894}, {"caption": "a crowd of people cheer loudly at an amazing play in a baseball game", "video_id": "video12944", "sen_id": 220895}, {"caption": "a white and blue dress playing game with bat and ball hitting inside stadium audience watching clapping hands", "video_id": "video12944", "sen_id": 220896}, {"caption": "there is a base ball player hitting the ball", "video_id": "video12944", "sen_id": 220897}, {"caption": "baseball player jumps over other player to complete a run", "video_id": "video12944", "sen_id": 220898}, {"caption": "a person hit the ball in baseball", "video_id": "video12944", "sen_id": 220899}, {"caption": "a man talks about a beach that is near a lava mountain", "video_id": "video10109", "sen_id": 220900}, {"caption": "a person is swimming in the ocean by the waves", "video_id": "video10109", "sen_id": 220901}, {"caption": "a couple on a deserted beach on an island", "video_id": "video10109", "sen_id": 220902}, {"caption": "a couple swim together near an abandoned beach on a tropical island", "video_id": "video10109", "sen_id": 220903}, {"caption": "some one is swimming in the beach and enjoying the moment", "video_id": "video10109", "sen_id": 220904}, {"caption": "a person is in blueish-grey ocean water where a wave of ruffled white water is moving toward a narrow and curved beach of tan sand by tree-covered mountains", "video_id": "video10109", "sen_id": 220905}, {"caption": "a travel reporter talks about a hidden gem of a beach in hawaii", "video_id": "video10109", "sen_id": 220906}, {"caption": "two people stand in the ocean at a beautiful empty beach", "video_id": "video10109", "sen_id": 220907}, {"caption": "waves are crashing on an outdoor beach", "video_id": "video10109", "sen_id": 220908}, {"caption": "a sunny day with cool wind on the shore", "video_id": "video10109", "sen_id": 220909}, {"caption": "in a big sea one of them is there makes swim", "video_id": "video10109", "sen_id": 220910}, {"caption": "tourists hang out on a beach in a secluded tropical destination", "video_id": "video10109", "sen_id": 220911}, {"caption": "aa women and a men is enjoying in the water at beach", "video_id": "video10109", "sen_id": 220912}, {"caption": "a zoom out shot of two people in the shallows of the ocean", "video_id": "video10109", "sen_id": 220913}, {"caption": "a sea side beach location for a tourism", "video_id": "video10109", "sen_id": 220914}, {"caption": "its a seasomething is in the sea shore the person says its something dangerous", "video_id": "video10109", "sen_id": 220915}, {"caption": "a beach is being filmed from high up", "video_id": "video10109", "sen_id": 220916}, {"caption": "a human swims in the ocean of hawaii very happily on a sunny day", "video_id": "video10109", "sen_id": 220917}, {"caption": "a man discusses a beach in hawaii that is particularly beautiful", "video_id": "video10109", "sen_id": 220918}, {"caption": "a water flowing beach and man in water anb baby in hand tress beside", "video_id": "video10109", "sen_id": 220919}, {"caption": "different volleball teams are competing to score points", "video_id": "video10287", "sen_id": 220920}, {"caption": "a red team and a black team are playing voleyball", "video_id": "video10287", "sen_id": 220921}, {"caption": "men playing organized volleyball on an indoor court", "video_id": "video10287", "sen_id": 220922}, {"caption": "a group of athletes in red uniforms play off against opponents", "video_id": "video10287", "sen_id": 220923}, {"caption": "two teams are playing each other at an indoor volleyball court", "video_id": "video10287", "sen_id": 220924}, {"caption": "there are people playing volleyball someone dives for a ball followed by a missed shot and more play", "video_id": "video10287", "sen_id": 220925}, {"caption": "men's volley ball teams playing matches inside of a gymnasium", "video_id": "video10287", "sen_id": 220926}, {"caption": "several clips are shown featuring spike shots during a game of young men playing volleyball", "video_id": "video10287", "sen_id": 220927}, {"caption": "a volleyball game is being played while techno music plays in the background", "video_id": "video10287", "sen_id": 220928}, {"caption": "a men's volleyball team plays hard during a competition", "video_id": "video10287", "sen_id": 220929}, {"caption": "the two teams playing volley ball game with full energy", "video_id": "video10287", "sen_id": 220930}, {"caption": "a volleyball player has spiked the volleyball and it landed on the ground", "video_id": "video10287", "sen_id": 220931}, {"caption": "winning points in a volleyball tournament in a gym", "video_id": "video10287", "sen_id": 220932}, {"caption": "two vollyball teams are playing vollyball against each other", "video_id": "video10287", "sen_id": 220933}, {"caption": "there are guys dressed in red and blue volleyball uniforms playing volleyball", "video_id": "video10287", "sen_id": 220934}, {"caption": "shots of many different players playing volleyball against each other in teams", "video_id": "video10287", "sen_id": 220935}, {"caption": "men s volleyball is being played while music plays", "video_id": "video10287", "sen_id": 220936}, {"caption": "various volleyball teams jump high over net and spike ball", "video_id": "video10287", "sen_id": 220937}, {"caption": "the players are winning the point and celebrating it", "video_id": "video10287", "sen_id": 220938}, {"caption": "some girls are playing volleyball against each other", "video_id": "video10287", "sen_id": 220939}, {"caption": "female host preparing to give a makeover to male host", "video_id": "video11907", "sen_id": 220940}, {"caption": "a video that is staring philip de franco and a beauty guru", "video_id": "video11907", "sen_id": 220941}, {"caption": "a man and a woman talking about getting more beautiful", "video_id": "video11907", "sen_id": 220942}, {"caption": "an attractive couple has a discussion about a make-over", "video_id": "video11907", "sen_id": 220943}, {"caption": "a man in a black tee shirt is talking to a brown haired woman", "video_id": "video11907", "sen_id": 220944}, {"caption": "a man and a woman talking about the man getting a makeover", "video_id": "video11907", "sen_id": 220945}, {"caption": "a lady and man talking together", "video_id": "video11907", "sen_id": 220946}, {"caption": "a young woman introduces a young male model before giving a men s makeup demonstration", "video_id": "video11907", "sen_id": 220947}, {"caption": "time to chit chat with starring philip defranco and blair fowler in a show performing to make fun to the viewers", "video_id": "video11907", "sen_id": 220948}, {"caption": "a woman talking about giving a man a makeover", "video_id": "video11907", "sen_id": 220949}, {"caption": "two people sharing their views on a particular subject", "video_id": "video11907", "sen_id": 220950}, {"caption": "a man and a girl talking the girl is going to make him more beautified", "video_id": "video11907", "sen_id": 220951}, {"caption": "a young woman talks about giving a man a makeover to make him look better", "video_id": "video11907", "sen_id": 220952}, {"caption": "a woman is talking about giving a man a makeover", "video_id": "video11907", "sen_id": 220953}, {"caption": "a women in blackred dress taking interview with a man in black t shirt", "video_id": "video11907", "sen_id": 220954}, {"caption": "the lady is about to work on the mans facial", "video_id": "video11907", "sen_id": 220955}, {"caption": "a woman explains to the viewer how she will make the man next to her more beautiful", "video_id": "video11907", "sen_id": 220956}, {"caption": "philip and blair talks to each other they laugh together and spend time", "video_id": "video11907", "sen_id": 220957}, {"caption": "a woman and man discussing how to beautify the man while laughing", "video_id": "video11907", "sen_id": 220958}, {"caption": "a man and a woman on tv are talking", "video_id": "video11907", "sen_id": 220959}, {"caption": "finding the height of a coin by making a stack of those coins", "video_id": "video12287", "sen_id": 220960}, {"caption": "a man explaining how many pennies it take to stack to be the height of one penny", "video_id": "video12287", "sen_id": 220961}, {"caption": "a man sets pennies on their edge", "video_id": "video12287", "sen_id": 220962}, {"caption": "a man turns over pennies on a brown table", "video_id": "video12287", "sen_id": 220963}, {"caption": "a man does a trick involving a stack of pennies", "video_id": "video12287", "sen_id": 220964}, {"caption": "a hand illustrates the thckness of a penny against severak other pennies", "video_id": "video12287", "sen_id": 220965}, {"caption": "tutorial showing someone holding a penny on its side a narrator discusses how many pennies need to be stacked horizontally to match the height of the penny being held on its side", "video_id": "video12287", "sen_id": 220966}, {"caption": "man has pennies in front of him and stands them on each other", "video_id": "video12287", "sen_id": 220967}, {"caption": "a man uses pennies to perform a small demonstration", "video_id": "video12287", "sen_id": 220968}, {"caption": "a man is talking about placing a penny and then stacking the pennies all while demonstrating it", "video_id": "video12287", "sen_id": 220969}, {"caption": "a man places pennies in a v formation and asks how many pennies do you need to stack on top of each other to equal the height of one penny on its side", "video_id": "video12287", "sen_id": 220970}, {"caption": "a person is holding a gold coin with five other coins arranged on a table", "video_id": "video12287", "sen_id": 220971}, {"caption": "a man talking about how many pennies you need to stack on top of each other to equal the vertical height of a penny", "video_id": "video12287", "sen_id": 220972}, {"caption": "person with pennies on the table talking about a game", "video_id": "video12287", "sen_id": 220973}, {"caption": "the person is explaining about the coins collected by him", "video_id": "video12287", "sen_id": 220974}, {"caption": "a man tries to balance a penny on its edge and then stacks other pennies next to it to try to reach its height", "video_id": "video12287", "sen_id": 220975}, {"caption": "5 coins are placed on the table and a bunch of coins was taken and kept in center", "video_id": "video12287", "sen_id": 220976}, {"caption": "man explains how to do what could loosely be described as a trick", "video_id": "video12287", "sen_id": 220977}, {"caption": "two fingers move hastily between the coins kept spread on the table", "video_id": "video12287", "sen_id": 220978}, {"caption": "a person is stacking a pile of coins", "video_id": "video12287", "sen_id": 220979}, {"caption": "an old video commercial of john ollie tv", "video_id": "video10230", "sen_id": 220980}, {"caption": "a clip of an animated tv with text saying john allie and an image of a man with a hat on", "video_id": "video10230", "sen_id": 220981}, {"caption": "a man's head is bobbing in a television set as an advertisement", "video_id": "video10230", "sen_id": 220982}, {"caption": "an african man in a backwards hat performs in a music video", "video_id": "video10230", "sen_id": 220983}, {"caption": "a tv with a head with a black hat bobbing up and down while the words john ollie are beside it", "video_id": "video10230", "sen_id": 220984}, {"caption": "a black man's head bobs on a make believe tv", "video_id": "video10230", "sen_id": 220985}, {"caption": "a graphic advertising john ollie tv with music playing in the background", "video_id": "video10230", "sen_id": 220986}, {"caption": "an african man wearing a black and white backwards hat dances", "video_id": "video10230", "sen_id": 220987}, {"caption": "a television is shown with an african american mans head moving in screen and the words john ollie", "video_id": "video10230", "sen_id": 220988}, {"caption": "an african man in a backwards baseball cap dances", "video_id": "video10230", "sen_id": 220989}, {"caption": "a john ollie bobble head on a television screen", "video_id": "video10230", "sen_id": 220990}, {"caption": "there's visual static then a bass riff plays as a tv appears on the tv is a cutout of a man's head and the name john ollie", "video_id": "video10230", "sen_id": 220991}, {"caption": "a young man wearing a black hat turned backwards tilting his head", "video_id": "video10230", "sen_id": 220992}, {"caption": "a television graphic showing a black man's head wearing a black baseball cap with his name on a tv", "video_id": "video10230", "sen_id": 220993}, {"caption": "a floating head of a man in a black backwards baseball cap is next to the name john ollie", "video_id": "video10230", "sen_id": 220994}, {"caption": "a preview being shown for a tv show john ollie", "video_id": "video10230", "sen_id": 220995}, {"caption": "a promo for john ollie tv with an african american s head wearing a backwards baseball cap", "video_id": "video10230", "sen_id": 220996}, {"caption": "john ollie is saying danger you stay uncomfortable", "video_id": "video10230", "sen_id": 220997}, {"caption": "one man is shaking the head alone is shown and this is some music channel shown", "video_id": "video10230", "sen_id": 220998}, {"caption": "a man on the tv is nodding his head", "video_id": "video10230", "sen_id": 220999}, {"caption": "two girls are standing motionless while items crash around them", "video_id": "video11365", "sen_id": 221000}, {"caption": "two women are standing in a room while dishes fall from a cabinet and music plays", "video_id": "video11365", "sen_id": 221001}, {"caption": "a couple of girls standing in a room while a cupboard opens and the contents spill out in slow motion", "video_id": "video11365", "sen_id": 221002}, {"caption": "a woman wearing a grey dress and a woman wearing a yellow dress standing next to each other", "video_id": "video11365", "sen_id": 221003}, {"caption": "two women stand as plates fall out of a cabinet behind them", "video_id": "video11365", "sen_id": 221004}, {"caption": "the two young women watching a owl and things inside the room suddenly fell down", "video_id": "video11365", "sen_id": 221005}, {"caption": "two women stand and behind them automatically doors open objects fall down etc", "video_id": "video11365", "sen_id": 221006}, {"caption": "cups falling from cupboards while two girls standing in a room", "video_id": "video11365", "sen_id": 221007}, {"caption": "a owl girl standing door opening windows closing opening door and things falling from up singing displaying on screen", "video_id": "video11365", "sen_id": 221008}, {"caption": "song playing to the camera rotating around while looking at two women", "video_id": "video11365", "sen_id": 221009}, {"caption": "there are someone standing in side the room", "video_id": "video11365", "sen_id": 221010}, {"caption": "an owl shows one of its feather down and two women standing speechless", "video_id": "video11365", "sen_id": 221011}, {"caption": "two girls are standing at that time utensils falls down from cage", "video_id": "video11365", "sen_id": 221012}, {"caption": "two young women standing still in a room while plates fall from a cabinet during a music video", "video_id": "video11365", "sen_id": 221013}, {"caption": "two modeling women in beautiful dress standing without any movement", "video_id": "video11365", "sen_id": 221014}, {"caption": "two women still standing inside a room some plates are fallen", "video_id": "video11365", "sen_id": 221015}, {"caption": "dinnerware floats from a cabinet between two women in a surreal music video", "video_id": "video11365", "sen_id": 221016}, {"caption": "twp women in colored dresses standing in a kitchen as drawers cupboards and miscellaneous kitchen items fly about the room", "video_id": "video11365", "sen_id": 221017}, {"caption": "two womens standing in the room and an owl is present there with the background music", "video_id": "video11365", "sen_id": 221018}, {"caption": "a couple of women are standing very still", "video_id": "video11365", "sen_id": 221019}, {"caption": "a man in a suit is walking down a hall of art exhibits", "video_id": "video12499", "sen_id": 221020}, {"caption": "a man wearing a black suit walks slowly through a modern art gallery while unbuttoning his jacket and putting his right hand in his trouser pocket", "video_id": "video12499", "sen_id": 221021}, {"caption": "a man in a tuxedo slowly walking towards the camera in an art gallery", "video_id": "video12499", "sen_id": 221022}, {"caption": "a man walking in an art gallery with a blue suit", "video_id": "video12499", "sen_id": 221023}, {"caption": "a man in a dark colored business suit walks slowly through an art gallery", "video_id": "video12499", "sen_id": 221024}, {"caption": "a man wearing a suit is walking in the room with style", "video_id": "video12499", "sen_id": 221025}, {"caption": "a man in a suit and tie walks through a gallery", "video_id": "video12499", "sen_id": 221026}, {"caption": "a man walks through an art museum in slow motion", "video_id": "video12499", "sen_id": 221027}, {"caption": "a man wearing a suit and tie is walking down a hallway", "video_id": "video12499", "sen_id": 221028}, {"caption": "a man in a black suit and tie walking in a hallway filled with large black and white pictures on the wall", "video_id": "video12499", "sen_id": 221029}, {"caption": "a person with block and white suit walking in a interior designing house", "video_id": "video12499", "sen_id": 221030}, {"caption": "hands then a man in a suit walks through what appears to be a gallery of black and white pictures", "video_id": "video12499", "sen_id": 221031}, {"caption": "heavy set man in a dark suit walking through an art gallery", "video_id": "video12499", "sen_id": 221032}, {"caption": "a man in a suit walking in an art gallery while music is playing", "video_id": "video12499", "sen_id": 221033}, {"caption": "a man in a dark suit walks in a white room with large pictures on the walls", "video_id": "video12499", "sen_id": 221034}, {"caption": "a man walking in a suit down a hall", "video_id": "video12499", "sen_id": 221035}, {"caption": "a person with black color coat is walking", "video_id": "video12499", "sen_id": 221036}, {"caption": "super watch in hands of man his walk stunning", "video_id": "video12499", "sen_id": 221037}, {"caption": "a handsome young man in black suit comes to the room and walks elegantly", "video_id": "video12499", "sen_id": 221038}, {"caption": "a man in a suit is walking in a hall", "video_id": "video12499", "sen_id": 221039}, {"caption": "musicians in black outfits singing on a stage that is darkly lit", "video_id": "video10975", "sen_id": 221040}, {"caption": "a clip from adele singing live and well", "video_id": "video10975", "sen_id": 221041}, {"caption": "a woman singer wearing a black dress is on stage with a band concluding her song and everyone applauses and cheers", "video_id": "video10975", "sen_id": 221042}, {"caption": "a musical performance wraps up with a growing applause from the audience", "video_id": "video10975", "sen_id": 221043}, {"caption": "adele is singing at one of her concerts and being applauded", "video_id": "video10975", "sen_id": 221044}, {"caption": "adele is singing to her fans at a concert", "video_id": "video10975", "sen_id": 221045}, {"caption": "a blonde haired woman is singing a christian sounding song", "video_id": "video10975", "sen_id": 221046}, {"caption": "a very beautiful lady in black dress ends up a rocking musing on the stage before large audience", "video_id": "video10975", "sen_id": 221047}, {"caption": "a female singer performing a song along with her musical band on stage", "video_id": "video10975", "sen_id": 221048}, {"caption": "a girl in black color dress wearing dancing singing many girls beside her clapping hands shouting displaying on screen", "video_id": "video10975", "sen_id": 221049}, {"caption": "a woman in black is singing i love you under the beat", "video_id": "video10975", "sen_id": 221050}, {"caption": "there is a woman singing with hand movement", "video_id": "video10975", "sen_id": 221051}, {"caption": "a woman and her group are singing a song", "video_id": "video10975", "sen_id": 221052}, {"caption": "adele performing live in concert in a black dress with v neck and long sleeves", "video_id": "video10975", "sen_id": 221053}, {"caption": "adele singing one of her songs on stage at a live event", "video_id": "video10975", "sen_id": 221054}, {"caption": "a woman performs with her band in front of a live audience", "video_id": "video10975", "sen_id": 221055}, {"caption": "a woman is on the stage singing to an audience", "video_id": "video10975", "sen_id": 221056}, {"caption": "a famous singer and her band perform on a lighted stage", "video_id": "video10975", "sen_id": 221057}, {"caption": "a singer is on stage and singing to a crowd of people", "video_id": "video10975", "sen_id": 221058}, {"caption": "adele stands before a microphone and belts out a few bars in front of an audience wearing a black dress", "video_id": "video10975", "sen_id": 221059}, {"caption": "group of young men shooting basketball hoops in a yard", "video_id": "video10210", "sen_id": 221060}, {"caption": "a group of guys are practicing a specific basketball shot", "video_id": "video10210", "sen_id": 221061}, {"caption": "a group of boys doing trick basketball shots", "video_id": "video10210", "sen_id": 221062}, {"caption": "a group of men shoot some hoops together", "video_id": "video10210", "sen_id": 221063}, {"caption": "man in a white t-shirt and black jeans making shots on a basketball hoop", "video_id": "video10210", "sen_id": 221064}, {"caption": "a group of boys wait in line to shoot hoops", "video_id": "video10210", "sen_id": 221065}, {"caption": "a line of men waiting to shoot a basket ball at a basket", "video_id": "video10210", "sen_id": 221066}, {"caption": "a line of guys trying to shoot a basketball in a hoop", "video_id": "video10210", "sen_id": 221067}, {"caption": "several guys are in line to shoot a basketball two of them are shown shooting the basket ball one misses and one doesn't", "video_id": "video10210", "sen_id": 221068}, {"caption": "a group of teen boys are lined up taking turns shooting a basketball into a hoop", "video_id": "video10210", "sen_id": 221069}, {"caption": "man in white shirt holding ball then shoots it in the hoop the gut with red and blue shoots the ball", "video_id": "video10210", "sen_id": 221070}, {"caption": "several guys in a line taking a shot at a basketball hoop one at a time", "video_id": "video10210", "sen_id": 221071}, {"caption": "a group of boys playing basketball together", "video_id": "video10210", "sen_id": 221072}, {"caption": "a group of guys that are playing a basketball game", "video_id": "video10210", "sen_id": 221073}, {"caption": "a group of guys in a line taking turns trying to make the ball into the basket", "video_id": "video10210", "sen_id": 221074}, {"caption": "all people are playing basketball on a the ground", "video_id": "video10210", "sen_id": 221075}, {"caption": "boys trying to basket the ball from a long distance shot", "video_id": "video10210", "sen_id": 221076}, {"caption": "five boys are trying to drop the ball in the basketthey are playing hapily", "video_id": "video10210", "sen_id": 221077}, {"caption": "a person throwing a ball to the net and misses another person throws the ball and gets it", "video_id": "video10210", "sen_id": 221078}, {"caption": "the player is embarrassed when he threw the ball into the basket", "video_id": "video10210", "sen_id": 221079}, {"caption": "an a woman of asian ethnic is showing how to make a certain asian dish", "video_id": "video11397", "sen_id": 221080}, {"caption": "a woman explains which ingredients she will use for a recipe", "video_id": "video11397", "sen_id": 221081}, {"caption": "a woman in a blue shirt is showing how to prepare a recipe her ingredients include 1 bage rice servai cooking oil and other ingredients", "video_id": "video11397", "sen_id": 221082}, {"caption": "a woman lists the ingredients that will be used in her recipe", "video_id": "video11397", "sen_id": 221083}, {"caption": "a woman wearing blue is about to cook some noodles", "video_id": "video11397", "sen_id": 221084}, {"caption": "an indian woman is talking about a recipe", "video_id": "video11397", "sen_id": 221085}, {"caption": "a black indian woman is preparing a meal in the kitchen", "video_id": "video11397", "sen_id": 221086}, {"caption": "a lady wearing blue color dressed telling about how to cook", "video_id": "video11397", "sen_id": 221087}, {"caption": "a female indian chef describes the ingredients she plans to use in a recipe", "video_id": "video11397", "sen_id": 221088}, {"caption": "a woman is telling what ingredients that she will be using to cook", "video_id": "video11397", "sen_id": 221089}, {"caption": "a women is showing ingredients for making a dish", "video_id": "video11397", "sen_id": 221090}, {"caption": "a woman is preparing a food item with vegatables", "video_id": "video11397", "sen_id": 221091}, {"caption": "a woman in a blue shirt describes the ingredients for a dish she will make at a counter", "video_id": "video11397", "sen_id": 221092}, {"caption": "a woman in a purple shirt with long dark hair talks about ingredients for a dish", "video_id": "video11397", "sen_id": 221093}, {"caption": "a woman in a purple shirt is describing how to cook a foreign dish", "video_id": "video11397", "sen_id": 221094}, {"caption": "a woman in a kitchen is making some food", "video_id": "video11397", "sen_id": 221095}, {"caption": "a woman prepares a noodle recipe for four people", "video_id": "video11397", "sen_id": 221096}, {"caption": "a indian women in a blue shirt demonstrating how to cook a recipe", "video_id": "video11397", "sen_id": 221097}, {"caption": "a woman talking about ingredients for a recipe including rice", "video_id": "video11397", "sen_id": 221098}, {"caption": "a woman with dark hair is talking", "video_id": "video11397", "sen_id": 221099}, {"caption": "older man in white shirt describing the search for his brother", "video_id": "video12374", "sen_id": 221100}, {"caption": "an old picture of a man is shown as sad music plays", "video_id": "video12374", "sen_id": 221101}, {"caption": "a man named george talking about loosing his brother", "video_id": "video12374", "sen_id": 221102}, {"caption": "a old man goes over his past and experiences he has", "video_id": "video12374", "sen_id": 221103}, {"caption": "a still photo of a smiling man wearing a bow tie", "video_id": "video12374", "sen_id": 221104}, {"caption": "a graphic about red cross helping the man shown in the beginning to find his brother who is shown in the picture", "video_id": "video12374", "sen_id": 221105}, {"caption": "a man in white shirt recollecting past days and getting emotional", "video_id": "video12374", "sen_id": 221106}, {"caption": "a photo of a man is displaying and a words are scrolling", "video_id": "video12374", "sen_id": 221107}, {"caption": "a man cries as a photo from the 1960 s shows up with white lettered words in front of it", "video_id": "video12374", "sen_id": 221108}, {"caption": "pictures of a lost person named george", "video_id": "video12374", "sen_id": 221109}, {"caption": "an older man with white hair and a white shirt becomes emotional while being interviewed", "video_id": "video12374", "sen_id": 221110}, {"caption": "a man in a white shirt crying about the lost of his brother", "video_id": "video12374", "sen_id": 221111}, {"caption": "an elderly gentleman cries as he thinks aobut his dead son", "video_id": "video12374", "sen_id": 221112}, {"caption": "the man wearing white shirt is delivering a lecture", "video_id": "video12374", "sen_id": 221113}, {"caption": "a man was lost and went missing", "video_id": "video12374", "sen_id": 221114}, {"caption": "a red cross charity video illustrating the story of a missing young who was someone s brother", "video_id": "video12374", "sen_id": 221115}, {"caption": "the old man in white shirt is talking while the photograph of someone is shown", "video_id": "video12374", "sen_id": 221116}, {"caption": "a slideshow of a young man s photographs", "video_id": "video12374", "sen_id": 221117}, {"caption": "a photo of a man in a tuxedo is on a backdrop as words scroll introducing the storyline of a show", "video_id": "video12374", "sen_id": 221118}, {"caption": "a old man with white hair looking at his old picture while playing the piano", "video_id": "video12374", "sen_id": 221119}, {"caption": "a group of friends turned homeless because the couldnt aford to live in new york", "video_id": "video10649", "sen_id": 221120}, {"caption": "a group of young actors perform a parody of an old tv show", "video_id": "video10649", "sen_id": 221121}, {"caption": "six people are standing next to a dumpster holding signs", "video_id": "video10649", "sen_id": 221122}, {"caption": "there is a picture of the friends tv show logo followed by a parody of the show of six people in a living room and then homeless", "video_id": "video10649", "sen_id": 221123}, {"caption": "people standing up holding cardboard signs in their hands", "video_id": "video10649", "sen_id": 221124}, {"caption": "a spoof of the television show friends", "video_id": "video10649", "sen_id": 221125}, {"caption": "a group of friends are sitting around a living room talking about how the cost of living in ny city", "video_id": "video10649", "sen_id": 221126}, {"caption": "few friends dressed up like beggars and tries to get some help", "video_id": "video10649", "sen_id": 221127}, {"caption": "a group of people holding a board on hands", "video_id": "video10649", "sen_id": 221128}, {"caption": "a homemede video that makes fun of the television show", "video_id": "video10649", "sen_id": 221129}, {"caption": "there are many friends gathered in a room and enjoy meeting", "video_id": "video10649", "sen_id": 221130}, {"caption": "seeing the freindship at the hotel room all are enjoying their relationship", "video_id": "video10649", "sen_id": 221131}, {"caption": "a group of actors parody the situation comedy of friends and pretending to be homeless", "video_id": "video10649", "sen_id": 221132}, {"caption": "a spoof of the highly popular tv show friends", "video_id": "video10649", "sen_id": 221133}, {"caption": "a parody scetch of friends featuring men and woman in new york city", "video_id": "video10649", "sen_id": 221134}, {"caption": "there is a man reading from the paper", "video_id": "video10649", "sen_id": 221135}, {"caption": "few friends are holding the banner of homeless and standing on roads", "video_id": "video10649", "sen_id": 221136}, {"caption": "a comedy troupe does a parody of the the tv show friends", "video_id": "video10649", "sen_id": 221137}, {"caption": "a parody from the tv show friends about people struggling to make a living and survive in new york city", "video_id": "video10649", "sen_id": 221138}, {"caption": "the cast of friends realizes living in new york city is expensive and become homeless", "video_id": "video10649", "sen_id": 221139}, {"caption": "some guys are jamming out in their band", "video_id": "video12869", "sen_id": 221140}, {"caption": "a band playing a song on their instruments", "video_id": "video12869", "sen_id": 221141}, {"caption": "a rock and roll band is playing a song", "video_id": "video12869", "sen_id": 221142}, {"caption": "a rock band performs a song in a misty black and white setting", "video_id": "video12869", "sen_id": 221143}, {"caption": "a band playing drums and guitar with a bright white light shinning on them", "video_id": "video12869", "sen_id": 221144}, {"caption": "a music band is playing music and a man is singing", "video_id": "video12869", "sen_id": 221145}, {"caption": "segment of a music video with the band members rocking out to the music non-consequentially", "video_id": "video12869", "sen_id": 221146}, {"caption": "a sequence from a music video shows musicians playing their instruments and singing", "video_id": "video12869", "sen_id": 221147}, {"caption": "a rock band performs one of their songs on video", "video_id": "video12869", "sen_id": 221148}, {"caption": "this is a black and white music video of a band playing music", "video_id": "video12869", "sen_id": 221149}, {"caption": "a music video of people playing the drums and guitar", "video_id": "video12869", "sen_id": 221150}, {"caption": " singer and guitar player with bright lights illuminating them", "video_id": "video12869", "sen_id": 221151}, {"caption": "a band plays instruments and performs rock song in foggy room", "video_id": "video12869", "sen_id": 221152}, {"caption": "the band andthe orchestra with the string music brings out a heavenly music", "video_id": "video12869", "sen_id": 221153}, {"caption": "a band is playing a concert for their fans", "video_id": "video12869", "sen_id": 221154}, {"caption": "a band plays music while their silhouettes show on the wall", "video_id": "video12869", "sen_id": 221155}, {"caption": "a rock band plays with all their might in a black and white foggy room", "video_id": "video12869", "sen_id": 221156}, {"caption": "men are playing music on stage for a rock concert", "video_id": "video12869", "sen_id": 221157}, {"caption": "a band plays against a back light a woman is crying and the singer of the band has film projected on his face", "video_id": "video12869", "sen_id": 221158}, {"caption": "a man with a weird head is out side", "video_id": "video12869", "sen_id": 221159}, {"caption": "hazard lights flashing in long corridor of containers with radiation caution signage", "video_id": "video12202", "sen_id": 221160}, {"caption": "the camera slowly shows the interior of an industrial facility and the caution signs on the canisters", "video_id": "video12202", "sen_id": 221161}, {"caption": "a long hallway with lots of poles are shown before we see a red tube", "video_id": "video12202", "sen_id": 221162}, {"caption": "a man discusses a large red tank in a lab", "video_id": "video12202", "sen_id": 221163}, {"caption": "a video about a particle accelerator", "video_id": "video12202", "sen_id": 221164}, {"caption": "a man is explaining the use of the accelerator relative to matter", "video_id": "video12202", "sen_id": 221165}, {"caption": "a warehouse of accelerators is is explored with description", "video_id": "video12202", "sen_id": 221166}, {"caption": "an accelerator machine can both create and explore matter", "video_id": "video12202", "sen_id": 221167}, {"caption": "there is a red cylinder with wires going into it that has a sign that reads caution radiation area", "video_id": "video12202", "sen_id": 221168}, {"caption": "a video training showing various dangerous things around the workplace", "video_id": "video12202", "sen_id": 221169}, {"caption": "the inside of an industrial building with caution lights and signs", "video_id": "video12202", "sen_id": 221170}, {"caption": "there is a machine with for building safety", "video_id": "video12202", "sen_id": 221171}, {"caption": "some techicians wearing white cloths are inspections machines in industry", "video_id": "video12202", "sen_id": 221172}, {"caption": "the video of industry and the display of interior how the company is constructed", "video_id": "video12202", "sen_id": 221173}, {"caption": "a scientist discusses a particle accelerator he works with", "video_id": "video12202", "sen_id": 221174}, {"caption": "a red and yellow tank is being shown on a wall", "video_id": "video12202", "sen_id": 221175}, {"caption": "there is a man explains about a machine inside the room", "video_id": "video12202", "sen_id": 221176}, {"caption": "a man is talking about particles and states of matter", "video_id": "video12202", "sen_id": 221177}, {"caption": "a caution product is displaying in the scene", "video_id": "video12202", "sen_id": 221178}, {"caption": "here is a radiation area and caution board is also placed there", "video_id": "video12202", "sen_id": 221179}, {"caption": "a girl with red hair putting on makeup and explaining what she's doing", "video_id": "video10689", "sen_id": 221180}, {"caption": "a woman is applying blush makeup to her face", "video_id": "video10689", "sen_id": 221181}, {"caption": "a woman is applying makeup to her face using a small brush", "video_id": "video10689", "sen_id": 221182}, {"caption": "a woman is holdign makeup a woman is applying makeup", "video_id": "video10689", "sen_id": 221183}, {"caption": "a woman is showing how to apply makeup to her face", "video_id": "video10689", "sen_id": 221184}, {"caption": "a woman with her nails painted black holds up a palette of bronzer and then applies it to her face", "video_id": "video10689", "sen_id": 221185}, {"caption": "a woman is demonstrating how to apply bronzer for a pin-up look", "video_id": "video10689", "sen_id": 221186}, {"caption": "a red haired woman applies make up to her face while describing what she is doing", "video_id": "video10689", "sen_id": 221187}, {"caption": "a woman applies makeup to er own face using a brush", "video_id": "video10689", "sen_id": 221188}, {"caption": "a woman applying makeup while narrating councils", "video_id": "video10689", "sen_id": 221189}, {"caption": "a woman shows how she applies her bronzer to her face", "video_id": "video10689", "sen_id": 221190}, {"caption": "the woman describes the process of applying makeup", "video_id": "video10689", "sen_id": 221191}, {"caption": "a makeup tutorial on how to do your cheeck contour", "video_id": "video10689", "sen_id": 221192}, {"caption": "the zoom of a make up is shown and then a woman holding make up is shown she then applies it as she narrates and explains on the subject", "video_id": "video10689", "sen_id": 221193}, {"caption": "a girl is showing a tutorial on how to apply makeup", "video_id": "video10689", "sen_id": 221194}, {"caption": "a woman shows how to put bronzer on her face for a pin up inspired look", "video_id": "video10689", "sen_id": 221195}, {"caption": "a lady shows how to make up the cheek with the brush", "video_id": "video10689", "sen_id": 221196}, {"caption": "a woman demonstrating a contouring makeup technique", "video_id": "video10689", "sen_id": 221197}, {"caption": "a girl shows how to put bronzer makeup on her cheeks", "video_id": "video10689", "sen_id": 221198}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10689", "sen_id": 221199}, {"caption": "captain jack sparrow sailing on a boat on the open sea", "video_id": "video11295", "sen_id": 221200}, {"caption": "jack sparrow from the pirates of the caribbean uses a rope to jump down from the top of the ship to the bottom", "video_id": "video11295", "sen_id": 221201}, {"caption": "a pirate on the crow's nest of a boat looking all around he then slides down a rope and lands in the bottom of the boat the boat is starting to fill with water", "video_id": "video11295", "sen_id": 221202}, {"caption": "a pirate rides along on a small boat towards a small island", "video_id": "video11295", "sen_id": 221203}, {"caption": "a pirate sailing in on top of his ship is set to big brass music", "video_id": "video11295", "sen_id": 221204}, {"caption": "captain jack sparrow is standing on top of a sail and then jumps down into the boat", "video_id": "video11295", "sen_id": 221205}, {"caption": "johnny depp on a boat in a scene from the pirates of the caribbean movies", "video_id": "video11295", "sen_id": 221206}, {"caption": "captain jack sparrow grabs a rope and jumps down into his ship", "video_id": "video11295", "sen_id": 221207}, {"caption": "a pirate is staring out at the sea and jumping onto his boat", "video_id": "video11295", "sen_id": 221208}, {"caption": "a pirate jumping into water by holding rope", "video_id": "video11295", "sen_id": 221209}, {"caption": "a person in boat wearing hat moving in water pulling rope jumping in water music displaying on screen", "video_id": "video11295", "sen_id": 221210}, {"caption": "there is a man standing in a boat", "video_id": "video11295", "sen_id": 221211}, {"caption": "pirate on a boat in the ocean", "video_id": "video11295", "sen_id": 221212}, {"caption": "a dirty pirate sails along the sea alone as corny music plays", "video_id": "video11295", "sen_id": 221213}, {"caption": "johnny depp as captain jack sparrow bailing out his boat", "video_id": "video11295", "sen_id": 221214}, {"caption": "a pirate in black is standing on the deck of a small ship with one sail in the middle of the ocean", "video_id": "video11295", "sen_id": 221215}, {"caption": "a pirate on a ship looks out into the ocean then swings on a rope", "video_id": "video11295", "sen_id": 221216}, {"caption": "a man watching something while traveling on the ship in sea", "video_id": "video11295", "sen_id": 221217}, {"caption": "johnny depp as captain jack sparrow bailing water out of a boat", "video_id": "video11295", "sen_id": 221218}, {"caption": "a pirate is sailing around on a ship outside", "video_id": "video11295", "sen_id": 221219}, {"caption": "a mother and daughter discussing selfie snapping", "video_id": "video12266", "sen_id": 221220}, {"caption": "a girl shows her selfie book to the camera as another dark haired girl watches", "video_id": "video12266", "sen_id": 221221}, {"caption": "a woman and young girl show their selfiesnaps", "video_id": "video12266", "sen_id": 221222}, {"caption": "a video showing off a brat toy with a mom and daughter", "video_id": "video12266", "sen_id": 221223}, {"caption": "a mother holds up a selfie product and points out a piggy character in the package corner which she discusses with her daughter as they sit against a turquoise wall with a white shelf holding boxes and doll figures", "video_id": "video12266", "sen_id": 221224}, {"caption": "two girls are describing what to call selfies when they are with friends", "video_id": "video12266", "sen_id": 221225}, {"caption": "woman shows box of a bratz doll and points to a pig and then she goes on to read what the box says", "video_id": "video12266", "sen_id": 221226}, {"caption": "two young girls are sitting in chairs talking to each other", "video_id": "video12266", "sen_id": 221227}, {"caption": "a mother and daughter reading packaging and doing a product review", "video_id": "video12266", "sen_id": 221228}, {"caption": "two young girls are sitting in chairs talking to each other", "video_id": "video12266", "sen_id": 221229}, {"caption": "fat woman in purple shirt showing off a doll with a red haired girl", "video_id": "video12266", "sen_id": 221230}, {"caption": "a woman and a little girl are sitting talking as the woman raises and shows a package of some kind of piggy character product", "video_id": "video12266", "sen_id": 221231}, {"caption": "presentation of a child toy made by a young woman and a girl", "video_id": "video12266", "sen_id": 221232}, {"caption": "two women talk about their desire to take selfies", "video_id": "video12266", "sen_id": 221233}, {"caption": "two young girls are sitting in chairs talking to each other", "video_id": "video12266", "sen_id": 221234}, {"caption": "a mother and daughter is seated and the mother is asking various questions facing the camera", "video_id": "video12266", "sen_id": 221235}, {"caption": "an older woman is looking at a toy with a young girl", "video_id": "video12266", "sen_id": 221236}, {"caption": "a lady with glasses talking to the girl in back ground", "video_id": "video12266", "sen_id": 221237}, {"caption": "a woman and girl are sitting in chairs talking about toys", "video_id": "video12266", "sen_id": 221238}, {"caption": "a mom talks to her kid on video", "video_id": "video12266", "sen_id": 221239}, {"caption": "a soccer match between two groups", "video_id": "video11283", "sen_id": 221240}, {"caption": "kids play soccer and attempt to score goals against their opponents", "video_id": "video11283", "sen_id": 221241}, {"caption": "a clip that is showing off an amazing goal", "video_id": "video11283", "sen_id": 221242}, {"caption": "a soccer player in a yellow jersey kicking a soccer ball in a game", "video_id": "video11283", "sen_id": 221243}, {"caption": "a soccer game between two teams of young men", "video_id": "video11283", "sen_id": 221244}, {"caption": "two soccer teams one in blue and one in gold kick and head butt the ball across the field", "video_id": "video11283", "sen_id": 221245}, {"caption": "a few teams of players are playing soccer together", "video_id": "video11283", "sen_id": 221246}, {"caption": "two videos of young soccer players playing the sport of soccer", "video_id": "video11283", "sen_id": 221247}, {"caption": "a soccer match with a yellow team and a blue team shows three failed attempts at scoring a goal then a clip shows a man trying to dribble the ball", "video_id": "video11283", "sen_id": 221248}, {"caption": "a man is recording a very intense soccer match", "video_id": "video11283", "sen_id": 221249}, {"caption": "there are some people playing football on the grass", "video_id": "video11283", "sen_id": 221250}, {"caption": " in blue and in yellow are playing soccer on a green lawn", "video_id": "video11283", "sen_id": 221251}, {"caption": "blue and yellow uniformed soccer teams playing soccer on a field", "video_id": "video11283", "sen_id": 221252}, {"caption": "two teams on a field play a game of soccer against each other", "video_id": "video11283", "sen_id": 221253}, {"caption": "foot ball players playing football in match to get the goal", "video_id": "video11283", "sen_id": 221254}, {"caption": "there is a man passing the ball with care", "video_id": "video11283", "sen_id": 221255}, {"caption": "two teams playing soccer and one team misses the goal more then one time", "video_id": "video11283", "sen_id": 221256}, {"caption": "a series of sad misses in a football free kick exhibited by player of two teams on a football ground", "video_id": "video11283", "sen_id": 221257}, {"caption": "the match is played on the court between two teams", "video_id": "video11283", "sen_id": 221258}, {"caption": "it was very hard for the team to score a soccer goal", "video_id": "video11283", "sen_id": 221259}, {"caption": "two women are walking in a lingerie fashion show in front of an audience", "video_id": "video11833", "sen_id": 221260}, {"caption": "a model struts down a runway in a black and white bikini poses and then makes her way back up the runway", "video_id": "video11833", "sen_id": 221261}, {"caption": "young girls in swimsuits march the runway at a fashion show", "video_id": "video11833", "sen_id": 221262}, {"caption": "two women are modeling swim suits on a runway", "video_id": "video11833", "sen_id": 221263}, {"caption": "two women walking down a runway with swimwear on", "video_id": "video11833", "sen_id": 221264}, {"caption": "women dressed in revealing outfits are walking down a modeling runway", "video_id": "video11833", "sen_id": 221265}, {"caption": "runway models are working hard at showing the outfits to the fashion show audience", "video_id": "video11833", "sen_id": 221266}, {"caption": "music plays while two female models strut down a runway in front of a crowd", "video_id": "video11833", "sen_id": 221267}, {"caption": "two runway fashion models showing off swim wear or lingerie", "video_id": "video11833", "sen_id": 221268}, {"caption": "women in bikinis walk up and down a runway", "video_id": "video11833", "sen_id": 221269}, {"caption": "a model poses at the end of a runway before heading backstage", "video_id": "video11833", "sen_id": 221270}, {"caption": "two fashion models are wearing summer clothing walking down catwalk and posing for camera", "video_id": "video11833", "sen_id": 221271}, {"caption": "a tall blond model in a bra and underwear walking down the cat walk", "video_id": "video11833", "sen_id": 221272}, {"caption": "a fashion dress design a girl wearing fashion dress many girls dressing walking on stage audience watching displaying on screen", "video_id": "video11833", "sen_id": 221273}, {"caption": "pretty ladies walk down the runway in their underwear", "video_id": "video11833", "sen_id": 221274}, {"caption": "women in swimwear are modeling as they walk down a runway at a fashion show", "video_id": "video11833", "sen_id": 221275}, {"caption": "two women are doing a cat walk on the ramp in a fashion channel", "video_id": "video11833", "sen_id": 221276}, {"caption": "a skinny model walks up and down the runway in her bikini at the mercedes fashion show", "video_id": "video11833", "sen_id": 221277}, {"caption": "cat walk over the ramp to exhibit almost all part of body", "video_id": "video11833", "sen_id": 221278}, {"caption": "a female model is on a fashion runway walking", "video_id": "video11833", "sen_id": 221279}, {"caption": "a blonde woman is singing to the crowd through the microphone", "video_id": "video10369", "sen_id": 221280}, {"caption": "the girl with brown hair wearing grey dress sing the song in the night", "video_id": "video10369", "sen_id": 221281}, {"caption": "a montage of scenes from a tv show while a female artist sings in the background", "video_id": "video10369", "sen_id": 221282}, {"caption": "avril levine wings about not being alone and vampires are in a cemetery", "video_id": "video10369", "sen_id": 221283}, {"caption": "a girl with long blonde hair singing and playing the piano for a live studio audience", "video_id": "video10369", "sen_id": 221284}, {"caption": "avirl lavine singing one of her songs at a piano", "video_id": "video10369", "sen_id": 221285}, {"caption": "a young women singing a song in the stage show", "video_id": "video10369", "sen_id": 221286}, {"caption": "the female musician performs at the concert as people are shown holding candles", "video_id": "video10369", "sen_id": 221287}, {"caption": "a blonde woman sings a song to scenes from buffy the vampire slayer", "video_id": "video10369", "sen_id": 221288}, {"caption": "a girl with blonde hair sings into a microphone with a light highlighting her", "video_id": "video10369", "sen_id": 221289}, {"caption": "a woman sings into a microphone as scenes from a movie play", "video_id": "video10369", "sen_id": 221290}, {"caption": "music video with a woman singing mashed up with a episode of buffy and other shows", "video_id": "video10369", "sen_id": 221291}, {"caption": "a blonde woman singing sitting at a piano", "video_id": "video10369", "sen_id": 221292}, {"caption": "avril lavigne sings a song to clips of buffy", "video_id": "video10369", "sen_id": 221293}, {"caption": "a woman with blonde hair is singing a song", "video_id": "video10369", "sen_id": 221294}, {"caption": "singing a song about vampyr", "video_id": "video10369", "sen_id": 221295}, {"caption": "a woman singing to several scenes of graves rituals and witchcraft", "video_id": "video10369", "sen_id": 221296}, {"caption": "a woman sings behind piano and group of friends hold candles in cemetary", "video_id": "video10369", "sen_id": 221297}, {"caption": "avril lavign sings and plays piano scenes from buffy the vampire slayer play", "video_id": "video10369", "sen_id": 221298}, {"caption": "a woman with dark clothes is sitting in a room", "video_id": "video10369", "sen_id": 221299}, {"caption": "man describing what sets of codes produce when put together", "video_id": "video10458", "sen_id": 221300}, {"caption": "a couple of numbers appearing in a box", "video_id": "video10458", "sen_id": 221301}, {"caption": "this is an instructional video on code outputting", "video_id": "video10458", "sen_id": 221302}, {"caption": "a man is talking about a code and its output", "video_id": "video10458", "sen_id": 221303}, {"caption": "there is a bunch of computer code that is being typed out", "video_id": "video10458", "sen_id": 221304}, {"caption": "a man describes what a particular computer code does", "video_id": "video10458", "sen_id": 221305}, {"caption": "what does this piece of code output int i + 5", "video_id": "video10458", "sen_id": 221306}, {"caption": "a man is using a computer to explain a code output", "video_id": "video10458", "sen_id": 221307}, {"caption": "a man is questioning about software code out and gives the answer for it", "video_id": "video10458", "sen_id": 221308}, {"caption": "video shows some questions and the answers being displayed on the screen", "video_id": "video10458", "sen_id": 221309}, {"caption": "a person is explaining something about computer output", "video_id": "video10458", "sen_id": 221310}, {"caption": "a man is explaining about some codes on the screen", "video_id": "video10458", "sen_id": 221311}, {"caption": "mathematical computations is displayed while a mans voice explains the problem", "video_id": "video10458", "sen_id": 221312}, {"caption": "a man is speaking about a code and potential answers", "video_id": "video10458", "sen_id": 221313}, {"caption": "a man is explain some maths in the black board", "video_id": "video10458", "sen_id": 221314}, {"caption": "some numbers are being shown on a screen", "video_id": "video10458", "sen_id": 221315}, {"caption": "there is a scissor cutting some important notes", "video_id": "video10458", "sen_id": 221316}, {"caption": "a video presentation of a piece of code output and the answers to the code outputs", "video_id": "video10458", "sen_id": 221317}, {"caption": "a man ask what a piece of code outputs then shows potential answers to the question", "video_id": "video10458", "sen_id": 221318}, {"caption": "a man talks about computer coding and waht it does for a system", "video_id": "video10458", "sen_id": 221319}, {"caption": "text and video demonstration about a tv show scene", "video_id": "video10439", "sen_id": 221320}, {"caption": "music is playing in the background and a picture from the walking dead tv series has texts that reads about the episode called bloodletting", "video_id": "video10439", "sen_id": 221321}, {"caption": "a man tosses some oily rags at another man in an episode of walking dead entitled bloodletting", "video_id": "video10439", "sen_id": 221322}, {"caption": "a man with a bear holding a pistol", "video_id": "video10439", "sen_id": 221323}, {"caption": "a commercial that contains information on the show the walking dead", "video_id": "video10439", "sen_id": 221324}, {"caption": "a fun fact about the walking dead show", "video_id": "video10439", "sen_id": 221325}, {"caption": "a sweaty man with a thick beard is holding up a hand gun", "video_id": "video10439", "sen_id": 221326}, {"caption": "a behind the scenes look at how special effects in the tv show the walking dead is shown before a clip of the show", "video_id": "video10439", "sen_id": 221327}, {"caption": "a fun trivia fact about the tv show the walking dead on amc", "video_id": "video10439", "sen_id": 221328}, {"caption": "walking dead is a show in a television channel which make people thinkamuse and weep", "video_id": "video10439", "sen_id": 221329}, {"caption": "the walking dead film have been released in 2010 one of the scene is shown from this film", "video_id": "video10439", "sen_id": 221330}, {"caption": "a walking dead clip that shows a bag of pills with a blue substance on the bottom", "video_id": "video10439", "sen_id": 221331}, {"caption": "the walking dead movie poster a man with gun and a person throws a bag to a old man", "video_id": "video10439", "sen_id": 221332}, {"caption": "a person is talking to and old man about drugs", "video_id": "video10439", "sen_id": 221333}, {"caption": "a screen card displays facts from the show of the walking dead", "video_id": "video10439", "sen_id": 221334}, {"caption": "a man in a tv show is showing off his gun", "video_id": "video10439", "sen_id": 221335}, {"caption": "there is a man waiting with a gun with bullet", "video_id": "video10439", "sen_id": 221336}, {"caption": "the person s face is full with grease oil and he is angrily throw a cloth to the wise man s face", "video_id": "video10439", "sen_id": 221337}, {"caption": "a man is mad that someone took his brothers stash", "video_id": "video10439", "sen_id": 221338}, {"caption": "a man is showing his gun in a place", "video_id": "video10439", "sen_id": 221339}, {"caption": "people are playing ping pong together at the tournament", "video_id": "video10896", "sen_id": 221340}, {"caption": "different men use their heads to play a game of table volleyball", "video_id": "video10896", "sen_id": 221341}, {"caption": "a demonstration of and a description of a sport similar to ping-pong where the contestants use their head to hit the ball", "video_id": "video10896", "sen_id": 221342}, {"caption": "people play ping pong both inside and outside using their heads to hit the ball while spectators watch", "video_id": "video10896", "sen_id": 221343}, {"caption": "young people play a table tennis type game using their heads as paddles", "video_id": "video10896", "sen_id": 221344}, {"caption": "people playing a game like ping pong but they use their head to hit a ball", "video_id": "video10896", "sen_id": 221345}, {"caption": "men are playing table soccer using only their heads to hit the ball", "video_id": "video10896", "sen_id": 221346}, {"caption": "two men play a game where they volley a soccer ball across a ping pong table with their heads", "video_id": "video10896", "sen_id": 221347}, {"caption": "person without shirt playing on the head ball game and climbs the table to hit the ball", "video_id": "video10896", "sen_id": 221348}, {"caption": "a man with a mustache talks about table tennis and men use their heads to hit the ball and even jump on the tables", "video_id": "video10896", "sen_id": 221349}, {"caption": "different intense head tennis matches are shown as opponents go head to head", "video_id": "video10896", "sen_id": 221350}, {"caption": "some people are playing ping pong on a court", "video_id": "video10896", "sen_id": 221351}, {"caption": "there is a game of kinking ball with heads only", "video_id": "video10896", "sen_id": 221352}, {"caption": "men bouncing a ball off a table with their heads", "video_id": "video10896", "sen_id": 221353}, {"caption": "in a large auditorium and outdoor even men play a table tennis game using heads", "video_id": "video10896", "sen_id": 221354}, {"caption": "two men playing a version of table tennis where the object is to volley the ball using your head there is a man describing the sport talking through the video", "video_id": "video10896", "sen_id": 221355}, {"caption": "two men are playing table tennis watched by spectators", "video_id": "video10896", "sen_id": 221356}, {"caption": "a two men are playing a different game with a table and head", "video_id": "video10896", "sen_id": 221357}, {"caption": "a man taks about tabletennis and another table sport", "video_id": "video10896", "sen_id": 221358}, {"caption": "a mustachioed man gives the rules for a german sport", "video_id": "video10896", "sen_id": 221359}, {"caption": "a series of rugby highlights which show big important plays", "video_id": "video11407", "sen_id": 221360}, {"caption": "different rugby players are showing how they score points", "video_id": "video11407", "sen_id": 221361}, {"caption": "different rugby players are showing how they score points", "video_id": "video11407", "sen_id": 221362}, {"caption": "soccer players in red uniforms run around playing against a team in blue", "video_id": "video11407", "sen_id": 221363}, {"caption": "soccer players catching the ball and running down the field", "video_id": "video11407", "sen_id": 221364}, {"caption": "a guy playing ruby with a red jersey runs and jumps in the end zone for a score", "video_id": "video11407", "sen_id": 221365}, {"caption": "an excited announcer talks as players play games of rugby", "video_id": "video11407", "sen_id": 221366}, {"caption": "a large number of people gathered in the stadium to watch some match", "video_id": "video11407", "sen_id": 221367}, {"caption": "men are playing a professional game of rugby on a grass field", "video_id": "video11407", "sen_id": 221368}, {"caption": "two sports teams one in red and one in blue run around the field passing a while ball back and forth while the crowd cheers", "video_id": "video11407", "sen_id": 221369}, {"caption": "some players are playing hand ball game on a green grass ground", "video_id": "video11407", "sen_id": 221370}, {"caption": "there is a man in black jersey running hard with ball", "video_id": "video11407", "sen_id": 221371}, {"caption": "a group of men playing a very exciting game of soccer", "video_id": "video11407", "sen_id": 221372}, {"caption": "two teams are playing against each other while the crowd of people cheer", "video_id": "video11407", "sen_id": 221373}, {"caption": "two men are commentating a soccer game while the crowd yells in the background", "video_id": "video11407", "sen_id": 221374}, {"caption": "highlights from a rugby game where one team is wearing red and the other blue", "video_id": "video11407", "sen_id": 221375}, {"caption": " one team dressed in red and the other in blue play a match on a grass field before a roaring crowd", "video_id": "video11407", "sen_id": 221376}, {"caption": "rugby players are involved in a set of matches in a very large stadium", "video_id": "video11407", "sen_id": 221377}, {"caption": "soccer players in and blue playing on a green field", "video_id": "video11407", "sen_id": 221378}, {"caption": "rugby player showing his tackle skill and then scoring a goal", "video_id": "video11407", "sen_id": 221379}, {"caption": "asian people dressed in various weird looking costumes", "video_id": "video11730", "sen_id": 221380}, {"caption": "people dressed up for an event in a foreign country", "video_id": "video11730", "sen_id": 221381}, {"caption": "people wearing colorful outfits are walking down a sidewalk and waving", "video_id": "video11730", "sen_id": 221382}, {"caption": "japanese women parade down a street while wearing elaborate costumes", "video_id": "video11730", "sen_id": 221383}, {"caption": "oddly dressed young people walk down a street after an event involving costumes", "video_id": "video11730", "sen_id": 221384}, {"caption": "a lot of people are walking down the street and waving at the camera as they walk by", "video_id": "video11730", "sen_id": 221385}, {"caption": "all persons are walking on streets with different dresses", "video_id": "video11730", "sen_id": 221386}, {"caption": "there are some people wearing different outfil and walking on streets", "video_id": "video11730", "sen_id": 221387}, {"caption": "many womens are and a girls in party festival", "video_id": "video11730", "sen_id": 221388}, {"caption": "a large group of colorfully dressed asian youth walk together along a sidewalk", "video_id": "video11730", "sen_id": 221389}, {"caption": "a black dress women walking with a violet jacket women", "video_id": "video11730", "sen_id": 221390}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video11730", "sen_id": 221391}, {"caption": "many womens are celebrating carnival festival in city", "video_id": "video11730", "sen_id": 221392}, {"caption": "asian women dressed in colorful outfits walk down a busy street in a city", "video_id": "video11730", "sen_id": 221393}, {"caption": "a girls waving hands with umberella and walking on streets displaying on screen", "video_id": "video11730", "sen_id": 221394}, {"caption": "asian women dressed up in costumes walk down the street and wave at the camera", "video_id": "video11730", "sen_id": 221395}, {"caption": "a costume rally with chinese girls dressed in different costumes", "video_id": "video11730", "sen_id": 221396}, {"caption": "a girls and women are walking in the road grouply", "video_id": "video11730", "sen_id": 221397}, {"caption": "enthusiastic girls children womens are walking across the road", "video_id": "video11730", "sen_id": 221398}, {"caption": "some college students are going after finishing their shopping in a orderly manner", "video_id": "video11730", "sen_id": 221399}, {"caption": "a woman uses the end of an extremely narrow brush to point to the outer corner of her right eye and then applies black liner with the tapered bristles", "video_id": "video10417", "sen_id": 221400}, {"caption": "woman explains how to draw a winged-eye look while showing you how", "video_id": "video10417", "sen_id": 221401}, {"caption": "a woman providing tips on applying eyeliner to your eyes", "video_id": "video10417", "sen_id": 221402}, {"caption": "a woman explains on how to put eyeliner on the lashes carefully", "video_id": "video10417", "sen_id": 221403}, {"caption": "a woman is explaining how to apply eye makeup", "video_id": "video10417", "sen_id": 221404}, {"caption": "women applying makeup to eye lids", "video_id": "video10417", "sen_id": 221405}, {"caption": "a british girl doing a makeup tutorial about eye liner", "video_id": "video10417", "sen_id": 221406}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10417", "sen_id": 221407}, {"caption": "there is a women applying makeup by herself", "video_id": "video10417", "sen_id": 221408}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video10417", "sen_id": 221409}, {"caption": "a lady is doing her eye makeup with a brush", "video_id": "video10417", "sen_id": 221410}, {"caption": "a beautiful lady is teaching doing eye make up and eyebrows to someone", "video_id": "video10417", "sen_id": 221411}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10417", "sen_id": 221412}, {"caption": "a woman doing her makeup as she explains how to follow along", "video_id": "video10417", "sen_id": 221413}, {"caption": "a woman with her hair up applies eyeliner to her lower lid", "video_id": "video10417", "sen_id": 221414}, {"caption": "a women is wearing eye-make -up and she is shading the eye lashes and explains how to wear it", "video_id": "video10417", "sen_id": 221415}, {"caption": "a lady show how to use a small brush to darken her eyelashes", "video_id": "video10417", "sen_id": 221416}, {"caption": "a woman is eye lining her own hand", "video_id": "video10417", "sen_id": 221417}, {"caption": "a blonde lady picks her face with makeup and a brush", "video_id": "video10417", "sen_id": 221418}, {"caption": "a woman gives a tutorial on applying eyelash makeup", "video_id": "video10417", "sen_id": 221419}, {"caption": "man in plaid shirt describing how to make adjustments to a bicycle", "video_id": "video10630", "sen_id": 221420}, {"caption": "a boy is riding on a bicycle back and forth across a yellow line", "video_id": "video10630", "sen_id": 221421}, {"caption": "a man performs stunts while falling off a bmx bike in a parking lot", "video_id": "video10630", "sen_id": 221422}, {"caption": "mutlitpe men try to do stunts on a bicycle outside", "video_id": "video10630", "sen_id": 221423}, {"caption": "young man in a plaid shirt and jeans doing silly bike tricks", "video_id": "video10630", "sen_id": 221424}, {"caption": "a man tries to do a trick on his bicycles but has a sudden crash when he tries", "video_id": "video10630", "sen_id": 221425}, {"caption": "young men do poorly-done tricks on a bicycle which has a device for making motor sounds", "video_id": "video10630", "sen_id": 221426}, {"caption": "men doing tricks on their bicycles by a grass hill", "video_id": "video10630", "sen_id": 221427}, {"caption": "a man is demonstrating skills on a bmx bike", "video_id": "video10630", "sen_id": 221428}, {"caption": "a man performing bicycle tricks and falling down from the bicycle in the last performance", "video_id": "video10630", "sen_id": 221429}, {"caption": "several teenage boys are attempting stunts and tricks on bicycles", "video_id": "video10630", "sen_id": 221430}, {"caption": "several men are doing tricks on their bike but one has an accident and falls", "video_id": "video10630", "sen_id": 221431}, {"caption": "a man attempts a series of bicycle tricks with very little success", "video_id": "video10630", "sen_id": 221432}, {"caption": "a man attempts several tricks on a bike before falling headfirst into the grass", "video_id": "video10630", "sen_id": 221433}, {"caption": "a man is doing tricks on a bike and with a bike before crashing in the end", "video_id": "video10630", "sen_id": 221434}, {"caption": "a person with blue tshirt is riding a white horse on a grassland", "video_id": "video10630", "sen_id": 221435}, {"caption": "a young man doing a variety of stunts and tricks on a small bicycle", "video_id": "video10630", "sen_id": 221436}, {"caption": "cool device makes awesome bicycle spoke noises like you are a great rider even if you are not", "video_id": "video10630", "sen_id": 221437}, {"caption": "a man tries to do tricks on a child sized bicycle", "video_id": "video10630", "sen_id": 221438}, {"caption": "a man outside is falling off of his bike", "video_id": "video10630", "sen_id": 221439}, {"caption": "a young girl celebrates her birthday with her family", "video_id": "video12503", "sen_id": 221440}, {"caption": "a baby celebrates her birthday with the family", "video_id": "video12503", "sen_id": 221441}, {"caption": "several photos of an african american family celebrating with reminders to subscribe to see more", "video_id": "video12503", "sen_id": 221442}, {"caption": "beyonce and jay-z's baby blue ivy blowing out her birthday candles", "video_id": "video12503", "sen_id": 221443}, {"caption": "an image of a toddler celebrating her birthday with her mother and father is followed by a message that directs viewers to a link to watch a documentary and a message urging viewers to subscribe", "video_id": "video12503", "sen_id": 221444}, {"caption": "a small child and her mom and dad celebrating her birthday", "video_id": "video12503", "sen_id": 221445}, {"caption": "a family celebrating their daughters birthday by cutting a cake", "video_id": "video12503", "sen_id": 221446}, {"caption": "blowing of the candle on the birthday party", "video_id": "video12503", "sen_id": 221447}, {"caption": "a youtuber making a documentary about the carter family and asking for subscribers", "video_id": "video12503", "sen_id": 221448}, {"caption": "a birthday celebration of girl baby in which the girls mom and dad are together", "video_id": "video12503", "sen_id": 221449}, {"caption": "a white dress little baby holding mother sitting and man in white dress standing infront of cake still image on screen", "video_id": "video12503", "sen_id": 221450}, {"caption": "all persons are clebrting with a cake on a channel", "video_id": "video12503", "sen_id": 221451}, {"caption": "a woman holding a baby blow out candles before an ad", "video_id": "video12503", "sen_id": 221452}, {"caption": "a man and a woman with there child are celebrating a birth day", "video_id": "video12503", "sen_id": 221453}, {"caption": "a family clip of celebrating birthday of their kid", "video_id": "video12503", "sen_id": 221454}, {"caption": "here the documentary has been made of small child from when she began to walk to her birthday by his family", "video_id": "video12503", "sen_id": 221455}, {"caption": "a person is celebrating their kid s birth day with cutting cake", "video_id": "video12503", "sen_id": 221456}, {"caption": "an african man and woman play games and have cake with their little daughter", "video_id": "video12503", "sen_id": 221457}, {"caption": "a baby in white and man in white dress standing beside a cake baby sitting with lady", "video_id": "video12503", "sen_id": 221458}, {"caption": "some scenes show parents wit their kids", "video_id": "video12503", "sen_id": 221459}, {"caption": "woman talks about painting finger nails", "video_id": "video12131", "sen_id": 221460}, {"caption": "a woman who is wearing a croptop and blue shorts and is painting her nails in her bed", "video_id": "video12131", "sen_id": 221461}, {"caption": "a beautiful young woman in shorts and a shirt lays in bed and paints her nails", "video_id": "video12131", "sen_id": 221462}, {"caption": "a blonde woman in shorts talks about painting her nails a hot pink color as she lays in her bed", "video_id": "video12131", "sen_id": 221463}, {"caption": "a women is first wearing gloves but then begins to paint her nails", "video_id": "video12131", "sen_id": 221464}, {"caption": "a woman wearing hand gloves and then going to her bed and polishing her nails", "video_id": "video12131", "sen_id": 221465}, {"caption": "there is a white top woman coloring her nail", "video_id": "video12131", "sen_id": 221466}, {"caption": "russian woman painting the world pink - including her nails - while thinking she speaks in an american accent", "video_id": "video12131", "sen_id": 221467}, {"caption": "girl with white gloves he took many color nail polish then she applied red color", "video_id": "video12131", "sen_id": 221468}, {"caption": "a lady is laying down painting her nails", "video_id": "video12131", "sen_id": 221469}, {"caption": "the beautiful girl in white dress is putting nail polish in her nails to make her more beautiful", "video_id": "video12131", "sen_id": 221470}, {"caption": "a woman with blonde hair jean shorts and a white shirt is painting her nails on her bed", "video_id": "video12131", "sen_id": 221471}, {"caption": "sexy girl take many nail polish and sits on bed she then selects dark red color to color her nail polish", "video_id": "video12131", "sen_id": 221472}, {"caption": "blonde woman with nice body is doing some nails art", "video_id": "video12131", "sen_id": 221473}, {"caption": "a slender white women with blond hair in jeans shorts and a white shirt speaking about painting her nails purple in a bed", "video_id": "video12131", "sen_id": 221474}, {"caption": "cute lady applies nail polish of pink color while lying on her bed", "video_id": "video12131", "sen_id": 221475}, {"caption": "a young blonde woman in denim shorts talks about painting her nails", "video_id": "video12131", "sen_id": 221476}, {"caption": "a women in jean shorts and a white shirt with blond hair paints her nails in a white room", "video_id": "video12131", "sen_id": 221477}, {"caption": "a woman talks about painting her nails and some health problems it can cause", "video_id": "video12131", "sen_id": 221478}, {"caption": "a pretty young blond girl with an accent paints her nails pink while lounging around her house", "video_id": "video12131", "sen_id": 221479}, {"caption": "a hand of a man is cutting meat and also avocado pear", "video_id": "video12430", "sen_id": 221480}, {"caption": "a person is cutting up meat and an avocado for a meal", "video_id": "video12430", "sen_id": 221481}, {"caption": "an expensive piece of meat is being chopped the chef is making avacado to go with it", "video_id": "video12430", "sen_id": 221482}, {"caption": "this is red meat being cut with a fork and knife as well as peeling of an avocado", "video_id": "video12430", "sen_id": 221483}, {"caption": "cutting up meat and avocados on a cutting bored", "video_id": "video12430", "sen_id": 221484}, {"caption": "human is slicing meat and avacados preparing a meal", "video_id": "video12430", "sen_id": 221485}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12430", "sen_id": 221486}, {"caption": "a person is explaining about some cooking process by cutting something", "video_id": "video12430", "sen_id": 221487}, {"caption": "a man is poking the meat with fork the meat is in pink color", "video_id": "video12430", "sen_id": 221488}, {"caption": "a knife in hand inside kitchen cutting vegetables arranged on tables", "video_id": "video12430", "sen_id": 221489}, {"caption": "a man cutting some steak and an avacado with a mariachi band playing in the background", "video_id": "video12430", "sen_id": 221490}, {"caption": "a person is cutting vegetables with knife on a wooden board", "video_id": "video12430", "sen_id": 221491}, {"caption": "one man make recipe cuts some vegetables to it", "video_id": "video12430", "sen_id": 221492}, {"caption": "a person is using a knife to cute up meat and avocados", "video_id": "video12430", "sen_id": 221493}, {"caption": "a person is doing some receipes with avacodas", "video_id": "video12430", "sen_id": 221494}, {"caption": "someone is taking the pits out of avocados", "video_id": "video12430", "sen_id": 221495}, {"caption": "a man cooks meat and cuts it with a knife before cutting an avocado", "video_id": "video12430", "sen_id": 221496}, {"caption": "a guy cutting vegetables in a kitchen", "video_id": "video12430", "sen_id": 221497}, {"caption": "meat is cutted with fock & guacamole cutted in knife", "video_id": "video12430", "sen_id": 221498}, {"caption": "a person is doing a cooking show and showing various ingredients", "video_id": "video12430", "sen_id": 221499}, {"caption": "a man's voice is describing the menstrual cycle of women while drawings help show the process", "video_id": "video10985", "sen_id": 221500}, {"caption": "drawings are used to explain the concept of menstrual cycle", "video_id": "video10985", "sen_id": 221501}, {"caption": "someone draws a girl clutching herself next to a baby", "video_id": "video10985", "sen_id": 221502}, {"caption": "there is a girl in a purple shirt cramping a baby and an ovary", "video_id": "video10985", "sen_id": 221503}, {"caption": "an animated illustration describes the menstrual cycle", "video_id": "video10985", "sen_id": 221504}, {"caption": "a man draws animated figures and organs describing the menstrual cycle", "video_id": "video10985", "sen_id": 221505}, {"caption": "a stop-motion movie shows the drawing of a woman a baby an ovary and uterus to explain the menstrual cycle", "video_id": "video10985", "sen_id": 221506}, {"caption": "a girl drawing was made and a bay on the right it was explained for mensuration cycle", "video_id": "video10985", "sen_id": 221507}, {"caption": "its about human reproductive systemabout menstural cyclepresentation about ovary", "video_id": "video10985", "sen_id": 221508}, {"caption": "it is a man talking and drawing what he is saying", "video_id": "video10985", "sen_id": 221509}, {"caption": "there is a man explaining a woman s menstrual days", "video_id": "video10985", "sen_id": 221510}, {"caption": "a man describing how a woman s menstrual cycle is related to the chance to get pregnant using a animated sketch drawing", "video_id": "video10985", "sen_id": 221511}, {"caption": "a man draws a cartoon of girl and boy and explains about menstrual cycle", "video_id": "video10985", "sen_id": 221512}, {"caption": "a informational cartoon explaining a womans menstrual cycle", "video_id": "video10985", "sen_id": 221513}, {"caption": "a man is talking about a women s menstrual cycle", "video_id": "video10985", "sen_id": 221514}, {"caption": "a person is demonstrating the woman cycle and ovary", "video_id": "video10985", "sen_id": 221515}, {"caption": "a man narrates a cartoon video that shows what happens during the menstrual cycle", "video_id": "video10985", "sen_id": 221516}, {"caption": "a man is telling about a ovary and its functions", "video_id": "video10985", "sen_id": 221517}, {"caption": "a man is providing commentary about the menstrual cycle for females", "video_id": "video10985", "sen_id": 221518}, {"caption": "a man draws a woman who has had a period as he explains the menstrual cycle", "video_id": "video10985", "sen_id": 221519}, {"caption": "a person is snow skiing and jumping with odd background colors and a woman is singing", "video_id": "video11845", "sen_id": 221520}, {"caption": "powder and flight skiers lighting up the night", "video_id": "video11845", "sen_id": 221521}, {"caption": "light explodes in the air as a woman is lifted into an orange sky", "video_id": "video11845", "sen_id": 221522}, {"caption": "a downhill skier is floating through the air as they enjoy the slopes", "video_id": "video11845", "sen_id": 221523}, {"caption": "a group of kiers do tricks on a hillside that is only lit up by spotlights", "video_id": "video11845", "sen_id": 221524}, {"caption": "a light in a puff of smoke ascends into the sky with a woman", "video_id": "video11845", "sen_id": 221525}, {"caption": "a group of young people ski down a mountain after dark", "video_id": "video11845", "sen_id": 221526}, {"caption": "a person in a white snowsuit skiing down a mountainside", "video_id": "video11845", "sen_id": 221527}, {"caption": "a person skiing down a mountain while kicking up a lot of powder", "video_id": "video11845", "sen_id": 221528}, {"caption": "a person snowboarding down a hill with country music playing", "video_id": "video11845", "sen_id": 221529}, {"caption": "someone doing snowboarding tricks in the air across mountains and hills", "video_id": "video11845", "sen_id": 221530}, {"caption": "someone is snowboarding through a lot of snowing and music is playing in the background", "video_id": "video11845", "sen_id": 221531}, {"caption": "a person in a light up snow suit skis down a vast snowy mountain side", "video_id": "video11845", "sen_id": 221532}, {"caption": "a skier is skiing down an ultraviolet snow-slope", "video_id": "video11845", "sen_id": 221533}, {"caption": "a person is flying around the sky out side", "video_id": "video11845", "sen_id": 221534}, {"caption": "thermal-imaging cameras capture a skier descending a snow-covered mountain", "video_id": "video11845", "sen_id": 221535}, {"caption": "a skiier with a flare and another skiier jumping off a mountain into some tracks in the snow", "video_id": "video11845", "sen_id": 221536}, {"caption": "a person skis and does tricks like jumps and spins", "video_id": "video11845", "sen_id": 221537}, {"caption": "in a dark room very colourful smoke and lot of design", "video_id": "video11845", "sen_id": 221538}, {"caption": "a purple light is flying around a sky", "video_id": "video11845", "sen_id": 221539}, {"caption": "this is a scene from modern family a tv show", "video_id": "video10913", "sen_id": 221540}, {"caption": "modern family actors in several scenes showing the family in action", "video_id": "video10913", "sen_id": 221541}, {"caption": "a family is getting ready for breakfast in the kitchen", "video_id": "video10913", "sen_id": 221542}, {"caption": "a video explaining the story behind the sitcom modern family", "video_id": "video10913", "sen_id": 221543}, {"caption": "a comedic documentary called modern family that follows the lives of each separate family unit", "video_id": "video10913", "sen_id": 221544}, {"caption": "a reporter talking about various comedy shows and showing clips of each comedy show", "video_id": "video10913", "sen_id": 221545}, {"caption": "sexy blonde making dinner while the brunette sits on couch and talks to the guy", "video_id": "video10913", "sen_id": 221546}, {"caption": "a funny television show actors doing funny on the show", "video_id": "video10913", "sen_id": 221547}, {"caption": "a woman is talking about the show modern family", "video_id": "video10913", "sen_id": 221548}, {"caption": "a woman talks about the comedy on modern family", "video_id": "video10913", "sen_id": 221549}, {"caption": "a woman is walking around in a kitchen", "video_id": "video10913", "sen_id": 221550}, {"caption": "different clips of the tv show modern family are displayed while a woman talks about it", "video_id": "video10913", "sen_id": 221551}, {"caption": "a man and a woman are cooking in the home", "video_id": "video10913", "sen_id": 221552}, {"caption": "group of people are in the kitchen and doing their activities", "video_id": "video10913", "sen_id": 221553}, {"caption": "an advertisement about different family and their day to day activities are shown and they are rewarded the mark for making the best of it", "video_id": "video10913", "sen_id": 221554}, {"caption": "some people with white outfits are standing", "video_id": "video10913", "sen_id": 221555}, {"caption": "a video about a the tv show modern family", "video_id": "video10913", "sen_id": 221556}, {"caption": "a woman talks about the show modern family", "video_id": "video10913", "sen_id": 221557}, {"caption": "in modern family the family members are busy with movingcooking and talking", "video_id": "video10913", "sen_id": 221558}, {"caption": "a ranking show ranks modern family number 10 on a list", "video_id": "video10913", "sen_id": 221559}, {"caption": "an explosion is taking place and a man is walking out", "video_id": "video10091", "sen_id": 221560}, {"caption": "a man in the begging scene of a music video", "video_id": "video10091", "sen_id": 221561}, {"caption": "i man in a black suit with long black hair walks through a metal door", "video_id": "video10091", "sen_id": 221562}, {"caption": "the door of an isolation pod opens and a man slowly walks out of it", "video_id": "video10091", "sen_id": 221563}, {"caption": "a man coming out of a steam chamber in a room", "video_id": "video10091", "sen_id": 221564}, {"caption": "a poerson like a devil is going on a dark room", "video_id": "video10091", "sen_id": 221565}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10091", "sen_id": 221566}, {"caption": "one door is open and the tv is running man comes", "video_id": "video10091", "sen_id": 221567}, {"caption": "what looks to be a futuristic music video in space", "video_id": "video10091", "sen_id": 221568}, {"caption": "a futuristic music video", "video_id": "video10091", "sen_id": 221569}, {"caption": "there is a door opening with some fog", "video_id": "video10091", "sen_id": 221570}, {"caption": "a door opens in a futuristic setting and a shadowed figure steps through", "video_id": "video10091", "sen_id": 221571}, {"caption": "a movie scene is playing in the screen", "video_id": "video10091", "sen_id": 221572}, {"caption": "a door opens and steam comes out computer screens are shown with pictures then a dark figure walks through a door", "video_id": "video10091", "sen_id": 221573}, {"caption": "a scene in a space station is being shown", "video_id": "video10091", "sen_id": 221574}, {"caption": "there is a man walking to the darkness", "video_id": "video10091", "sen_id": 221575}, {"caption": "a man appears with terrifying backgrounds of destruction", "video_id": "video10091", "sen_id": 221576}, {"caption": "a man walks through a mist down a hall while strange sounds are played", "video_id": "video10091", "sen_id": 221577}, {"caption": "an old man coming out of a box of smoke and walking", "video_id": "video10091", "sen_id": 221578}, {"caption": "some images of various things are being shown", "video_id": "video10091", "sen_id": 221579}, {"caption": "a man demonstrates and describes a car he is test driving", "video_id": "video12028", "sen_id": 221580}, {"caption": "a person is driving a car while a person narrate of specs of the car", "video_id": "video12028", "sen_id": 221581}, {"caption": "specs for a red car that was taking for a test drive", "video_id": "video12028", "sen_id": 221582}, {"caption": "a man driving inside a red car talking about ford cars", "video_id": "video12028", "sen_id": 221583}, {"caption": "the ws6 car features better revs displacement and torque than ford cars", "video_id": "video12028", "sen_id": 221584}, {"caption": "a man is driving a car down a somewhat busy road", "video_id": "video12028", "sen_id": 221585}, {"caption": "a person is driving a car on a track", "video_id": "video12028", "sen_id": 221586}, {"caption": "a person describes and demonstrates the features of a car they are test driving", "video_id": "video12028", "sen_id": 221587}, {"caption": "a man describes and demonstrates a sports car by driving it on a city road", "video_id": "video12028", "sen_id": 221588}, {"caption": "person driving a car through a stop sign and on to another roadway", "video_id": "video12028", "sen_id": 221589}, {"caption": "a man talks about a car while someone drives it on a road", "video_id": "video12028", "sen_id": 221590}, {"caption": "a man driving a car while giving an review on ford cars", "video_id": "video12028", "sen_id": 221591}, {"caption": "a person driving a red car looks left and right before entering the roadway", "video_id": "video12028", "sen_id": 221592}, {"caption": "a man thinks the ws6 is the final answer to the mustangcamaro argument even though the car is not even a camaro he claims this car had every ford car beat for revs torque and displacement even though this isn't a camaro and things have changed since 2001", "video_id": "video12028", "sen_id": 221593}, {"caption": "two men are talking about a car on a radio show", "video_id": "video12028", "sen_id": 221594}, {"caption": "there is a man riding a car on the track", "video_id": "video12028", "sen_id": 221595}, {"caption": "a car is driven by a man on a road", "video_id": "video12028", "sen_id": 221596}, {"caption": "person driving car he rotates the steering in nice manner", "video_id": "video12028", "sen_id": 221597}, {"caption": "a man speaking about how the ws6 beat any car from ford", "video_id": "video12028", "sen_id": 221598}, {"caption": "a man is racing a car on the road", "video_id": "video12028", "sen_id": 221599}, {"caption": "a man is taking a look at his plate", "video_id": "video12044", "sen_id": 221600}, {"caption": "there is a man and woman in a restaurant showing a plate of octopus", "video_id": "video12044", "sen_id": 221601}, {"caption": "a man in a white shirt shows off a plate of octopus and honey", "video_id": "video12044", "sen_id": 221602}, {"caption": "a man describes the food that he is served in a hong kong restaurant", "video_id": "video12044", "sen_id": 221603}, {"caption": "a man is describing his meal that he is prepared to enjoy a lady smiles with him", "video_id": "video12044", "sen_id": 221604}, {"caption": "a man sits at a table in a restaurant and talks about the food on the table in front of him", "video_id": "video12044", "sen_id": 221605}, {"caption": "a man in a white shirt points out two dishes sitting on a restaurant counter: cheese noodles and octopus in a sauce", "video_id": "video12044", "sen_id": 221606}, {"caption": "a man is cooking a recipe and is being shown on", "video_id": "video12044", "sen_id": 221607}, {"caption": "a man and woman are sitting in restaurant", "video_id": "video12044", "sen_id": 221608}, {"caption": "a man describes the dishes he will have in a typical hong kong restaurant", "video_id": "video12044", "sen_id": 221609}, {"caption": "the man appeared to be talking over his lunch", "video_id": "video12044", "sen_id": 221610}, {"caption": "a man in white shirt is saying something as food is on the table and also a women on chair", "video_id": "video12044", "sen_id": 221611}, {"caption": "a man sits at a table with a woman separated by a soda can container of utensils gray drinking glass and an entree of long brown tubes in a black sauce covered with tan seeds", "video_id": "video12044", "sen_id": 221612}, {"caption": "a man is seated at a cafe with female companion while showing noodle and stir fry dishes", "video_id": "video12044", "sen_id": 221613}, {"caption": "a person in white shirt is showing the ingredients for the recipe on the table", "video_id": "video12044", "sen_id": 221614}, {"caption": "someone is showing food on a white plate", "video_id": "video12044", "sen_id": 221615}, {"caption": "there is a women nearby a plate of dish", "video_id": "video12044", "sen_id": 221616}, {"caption": "a man prepares to consume a particular foreign dish during a meal outing", "video_id": "video12044", "sen_id": 221617}, {"caption": "a man served explained meal to a woman", "video_id": "video12044", "sen_id": 221618}, {"caption": "a man explaining about the food on his desk", "video_id": "video12044", "sen_id": 221619}, {"caption": "relative to taiwan student cnn news anchors report about china referring to said country as a renegade province that must be reunited with the mainland china by force if deemed necessary apparently both governments say that is all the more reason to strengthen communication & build mutual trust yet whether said trust can be built remains to be seen as many people in taiwan continue to be rather wary of their massive neighbor's growing influence", "video_id": "video12976", "sen_id": 221620}, {"caption": "two men are discussing how china feels taiwan should once again become a part if china", "video_id": "video12976", "sen_id": 221621}, {"caption": "a person speaking on a news channel", "video_id": "video12976", "sen_id": 221622}, {"caption": "taiwan to be reunited with the mainland to enhance communication and mutual trust", "video_id": "video12976", "sen_id": 221623}, {"caption": "two college commentators reflect on international issues involving political rifts", "video_id": "video12976", "sen_id": 221624}, {"caption": "a student sits on a tv show and talks about mutual trust funds", "video_id": "video12976", "sen_id": 221625}, {"caption": "asian guy in suit and tie talking to the camera", "video_id": "video12976", "sen_id": 221626}, {"caption": "a man wearing black color dress talking", "video_id": "video12976", "sen_id": 221627}, {"caption": "cnn student news one man talks about mutual trust", "video_id": "video12976", "sen_id": 221628}, {"caption": "a man is on the student cn news station talking", "video_id": "video12976", "sen_id": 221629}, {"caption": "guy in suit and tie talking about financial consequences", "video_id": "video12976", "sen_id": 221630}, {"caption": "a man is speaking about government affairs in taiwan", "video_id": "video12976", "sen_id": 221631}, {"caption": "a man explains about something in media show", "video_id": "video12976", "sen_id": 221632}, {"caption": "a boy in white shirt dress wearing standing and speaking with other guy displaying on screen", "video_id": "video12976", "sen_id": 221633}, {"caption": "the man wearing the grey coat discusses the lack of trust between china and taiwan", "video_id": "video12976", "sen_id": 221634}, {"caption": "a male speaker discusses the importance of mutual trust", "video_id": "video12976", "sen_id": 221635}, {"caption": "student cnn news talking about how china says taiwan needs to reunite with the main land", "video_id": "video12976", "sen_id": 221636}, {"caption": "an asian man in a gray trench coat talking about people gaining trust in taiwan", "video_id": "video12976", "sen_id": 221637}, {"caption": "an asian man talks about matters going on in china", "video_id": "video12976", "sen_id": 221638}, {"caption": "an asian man with a coat is talking to someone", "video_id": "video12976", "sen_id": 221639}, {"caption": "the mystery of eels being told by a narrator", "video_id": "video11418", "sen_id": 221640}, {"caption": "an eel is swimming through the water past little underwater plants", "video_id": "video11418", "sen_id": 221641}, {"caption": "a group of curving eels darts through clear water in different directions and sleek eels hide at the bottom of the murky ocean hidden by plants", "video_id": "video11418", "sen_id": 221642}, {"caption": "an eel swims at the bottom of the ocean through seaweed", "video_id": "video11418", "sen_id": 221643}, {"caption": "a bunch of eels swimming in very dark water", "video_id": "video11418", "sen_id": 221644}, {"caption": "a man is talking about the history of the sea animal called eel", "video_id": "video11418", "sen_id": 221645}, {"caption": "there are some fish floating in the blue sea", "video_id": "video11418", "sen_id": 221646}, {"caption": "a group of eels are shown together in their natural environment", "video_id": "video11418", "sen_id": 221647}, {"caption": "a snake type of group of fish are swimming in the movies and in forest giraffe are done", "video_id": "video11418", "sen_id": 221648}, {"caption": "a giraffe is walking across the plain at sunset", "video_id": "video11418", "sen_id": 221649}, {"caption": "this video is about eels produced by a man who talks on many animal subjects", "video_id": "video11418", "sen_id": 221650}, {"caption": "a large group of eels are swimming through the water", "video_id": "video11418", "sen_id": 221651}, {"caption": "a man is talking about how a group of eels live and function", "video_id": "video11418", "sen_id": 221652}, {"caption": "black eels swim together on a beach then land animals run in the field", "video_id": "video11418", "sen_id": 221653}, {"caption": "someone is watching eels underwater in a group then swimming separately as part of an introduction for a nature movie", "video_id": "video11418", "sen_id": 221654}, {"caption": "lots of fishes are moving under water together searching for soemthing", "video_id": "video11418", "sen_id": 221655}, {"caption": "a largegroup of eels is swimming through the water and coral", "video_id": "video11418", "sen_id": 221656}, {"caption": "a man is speaking and explaining many processes of eels a screen showing giraffes appear", "video_id": "video11418", "sen_id": 221657}, {"caption": "a voice is talking while several different water snakes and eels are slithering past eachother", "video_id": "video11418", "sen_id": 221658}, {"caption": "a giraffe in africa is walking around outside", "video_id": "video11418", "sen_id": 221659}, {"caption": "boys on track team being instructed by their coach", "video_id": "video12349", "sen_id": 221660}, {"caption": "a bunch of people in maroon track suits getting a talk from their coach", "video_id": "video12349", "sen_id": 221661}, {"caption": "a coach is instructing his young men's track and field team as they get ready for a track meet", "video_id": "video12349", "sen_id": 221662}, {"caption": "a referee has a talk to a team in red uniforms", "video_id": "video12349", "sen_id": 221663}, {"caption": "a boys track team seems to be getting a pep talk from their coach", "video_id": "video12349", "sen_id": 221664}, {"caption": "several teenage boys are shown while their coach encourages them and tells them what they need to do to win", "video_id": "video12349", "sen_id": 221665}, {"caption": "visit the highlights from yesterday's state track and field meet where our own pinewood prep seniors competed", "video_id": "video12349", "sen_id": 221666}, {"caption": "there are some guys practicing before a match", "video_id": "video12349", "sen_id": 221667}, {"caption": "player team with the coach getting prepared for the game and the coach telling the instructions", "video_id": "video12349", "sen_id": 221668}, {"caption": "boys with the purple dress and tags take rest to win the game", "video_id": "video12349", "sen_id": 221669}, {"caption": "a warm up session is going on before the match gets strted", "video_id": "video12349", "sen_id": 221670}, {"caption": "there is a yellow color boy talking to someone", "video_id": "video12349", "sen_id": 221671}, {"caption": "a man talking to a group of boys before a race", "video_id": "video12349", "sen_id": 221672}, {"caption": "a group of young men preparing for a cross country race while listening to their coach", "video_id": "video12349", "sen_id": 221673}, {"caption": "a coach is giving courage and suggestions to his team before the play", "video_id": "video12349", "sen_id": 221674}, {"caption": "a song is playing as some guys stand around talking", "video_id": "video12349", "sen_id": 221675}, {"caption": "there is someone preparing to a match at a sunny day", "video_id": "video12349", "sen_id": 221676}, {"caption": "the players in brown jersey are taking instructions from their coach", "video_id": "video12349", "sen_id": 221677}, {"caption": "young men preparing for a cross country meet listen to their coach", "video_id": "video12349", "sen_id": 221678}, {"caption": "a red and yellow dress inside ground player standing and boy drinking displaying on the screen", "video_id": "video12349", "sen_id": 221679}, {"caption": "a dog looks at the camera and then at someone holding a leash", "video_id": "video10802", "sen_id": 221680}, {"caption": "a small dog looks at the camera and then at someone holding a leash", "video_id": "video10802", "sen_id": 221681}, {"caption": "a really skinny dog walking to a lady with a leash in", "video_id": "video10802", "sen_id": 221682}, {"caption": "a woman films one of the rescued dogs at the baja anaimal sanctuary", "video_id": "video10802", "sen_id": 221683}, {"caption": "a small black and tan dog walks on the dirt road and shakes its head", "video_id": "video10802", "sen_id": 221684}, {"caption": "a sick looking brown dog thats outside comes in contact with a man who has a rope", "video_id": "video10802", "sen_id": 221685}, {"caption": "an old abandoned dog is approached by a woman who wants to help him", "video_id": "video10802", "sen_id": 221686}, {"caption": "an emaciated homeless dog is wandering on the street and a person is watching him", "video_id": "video10802", "sen_id": 221687}, {"caption": "a sick dog in walking toward a person with lesh", "video_id": "video10802", "sen_id": 221688}, {"caption": "a black and brown dog wanders around a dirt road and shakes its head", "video_id": "video10802", "sen_id": 221689}, {"caption": "a malnourished dog slowly approaches a man with a red leash", "video_id": "video10802", "sen_id": 221690}, {"caption": "i skinny looking dog is walking in the street", "video_id": "video10802", "sen_id": 221691}, {"caption": "a woman with a red leash approaches a neglected tan dog", "video_id": "video10802", "sen_id": 221692}, {"caption": "a black tan terrier is wandering around a dirt road and shakes its head", "video_id": "video10802", "sen_id": 221693}, {"caption": "baja animal sanctuary showing a neglected dog", "video_id": "video10802", "sen_id": 221694}, {"caption": "a dog is walking through rock on the ground", "video_id": "video10802", "sen_id": 221695}, {"caption": "a thin brown dog with black markings cautiously walks over gray dirt covered with pebbles and is startled by a woman holding a red leash", "video_id": "video10802", "sen_id": 221696}, {"caption": "a malnourished dog on a street is approached by a person with a leash", "video_id": "video10802", "sen_id": 221697}, {"caption": "a stray puppy tentatively approaches a stranger with a leash", "video_id": "video10802", "sen_id": 221698}, {"caption": "baja animal sanctuary saves an abandoned malnorished dog", "video_id": "video10802", "sen_id": 221699}, {"caption": "a lady in blue is talking about cool summer gadgets", "video_id": "video12896", "sen_id": 221700}, {"caption": "a newswoman in a blue dress talks about cool summer gadgets", "video_id": "video12896", "sen_id": 221701}, {"caption": "a young woman talking about cool summer gadgets", "video_id": "video12896", "sen_id": 221702}, {"caption": "a woman wearing a blue shirt talking on the news", "video_id": "video12896", "sen_id": 221703}, {"caption": "a woman is reporting the news and talking about tech gadgets", "video_id": "video12896", "sen_id": 221704}, {"caption": "a woman in blue tops is talking about new gadgets", "video_id": "video12896", "sen_id": 221705}, {"caption": "a cute lady with brown hair and blue jacket is talking", "video_id": "video12896", "sen_id": 221706}, {"caption": "a newsreporter wearing a blue colored dress speaking about cool summer gadgets", "video_id": "video12896", "sen_id": 221707}, {"caption": "a woman expaling about cool summer gadgets and desings with is attractive", "video_id": "video12896", "sen_id": 221708}, {"caption": "a woman talking about new summer tech gadgets on a news broadcast", "video_id": "video12896", "sen_id": 221709}, {"caption": "a news reporter begins to introduce an expert on technology and gadgets", "video_id": "video12896", "sen_id": 221710}, {"caption": "julia borstein talks about tech gadgets that are useful for the summertime", "video_id": "video12896", "sen_id": 221711}, {"caption": "women talking about cook summer gadgets", "video_id": "video12896", "sen_id": 221712}, {"caption": "a female with brown hair and a blue shirt talk about the new summer gadgets", "video_id": "video12896", "sen_id": 221713}, {"caption": "a girl with blue dress and chain working in the news channel", "video_id": "video12896", "sen_id": 221714}, {"caption": "a woman in a bluepurple shirt and blonde curled hair is talking to a camera while being recorded for a news station", "video_id": "video12896", "sen_id": 221715}, {"caption": "a lady is speaking about cool gadgets to the camera on cnbc", "video_id": "video12896", "sen_id": 221716}, {"caption": "a news reporter is talking about new tech to be used for outdoor fun", "video_id": "video12896", "sen_id": 221717}, {"caption": "julia boorstin presents the cool summer gadgets that should be considered by tech enthusiasts", "video_id": "video12896", "sen_id": 221718}, {"caption": "a man and a woman on the news are speaking", "video_id": "video12896", "sen_id": 221719}, {"caption": "a man wearing blue is cooking in the pot", "video_id": "video10578", "sen_id": 221720}, {"caption": "a man in a blue chef's coat sautes herbs and onions", "video_id": "video10578", "sen_id": 221721}, {"caption": "a man is giving cooking instructions over a stove", "video_id": "video10578", "sen_id": 221722}, {"caption": "a chef cooking onions sesame seeds and spices", "video_id": "video10578", "sen_id": 221723}, {"caption": "a man in a blue chefs coat is adding spices to his culinary creation", "video_id": "video10578", "sen_id": 221724}, {"caption": "a chef in a blue shirt is making a dish and putting in butter and onions", "video_id": "video10578", "sen_id": 221725}, {"caption": "a chef begins adding recipe ingredients to a pan", "video_id": "video10578", "sen_id": 221726}, {"caption": "a man in a blue shirt seasons milk with flour and salt", "video_id": "video10578", "sen_id": 221727}, {"caption": "a chef describes and demonstrates a recipe that he is working on", "video_id": "video10578", "sen_id": 221728}, {"caption": "a man in a blue shirt adding onions to a skillet", "video_id": "video10578", "sen_id": 221729}, {"caption": "a man in a blue chefs coat is adding spices to his culinary creation", "video_id": "video10578", "sen_id": 221730}, {"caption": "a chef pouring seasoning and onions into a hot frying pan", "video_id": "video10578", "sen_id": 221731}, {"caption": "a male cook uses his hands to illustrate how to prepare a dish using cardamon cumin seeds cinnamon and a little bit of onions", "video_id": "video10578", "sen_id": 221732}, {"caption": "a man adds several ingredients including seeds and onions to a boiling pan of oil", "video_id": "video10578", "sen_id": 221733}, {"caption": "a man adds spices and onions to milk in a pan on the stove", "video_id": "video10578", "sen_id": 221734}, {"caption": "indian chef in blue puts onions into a pan", "video_id": "video10578", "sen_id": 221735}, {"caption": "an indian man putting spices and onions in a pan", "video_id": "video10578", "sen_id": 221736}, {"caption": "a chef adds ingredients to a hot pot of oil and it sizzles", "video_id": "video10578", "sen_id": 221737}, {"caption": "a man is cooking with a metal pan that is very hot and adding spices and onion", "video_id": "video10578", "sen_id": 221738}, {"caption": "a person is showing some stuff in a pan", "video_id": "video10578", "sen_id": 221739}, {"caption": "a woman with red fingers is demonstrating how to properly use chopsticks", "video_id": "video10744", "sen_id": 221740}, {"caption": "a woman is explaining how to hold chopsticks and which sticks should move", "video_id": "video10744", "sen_id": 221741}, {"caption": "a woman is describing how to use chop sticks", "video_id": "video10744", "sen_id": 221742}, {"caption": "a woman's hands holding chopsticks and demonstrating holding techniques", "video_id": "video10744", "sen_id": 221743}, {"caption": "a woman shows how to use chopsticks", "video_id": "video10744", "sen_id": 221744}, {"caption": "a woman is showing how to hold chopstiks", "video_id": "video10744", "sen_id": 221745}, {"caption": "a woman with red fingernail polish is showing how to use chopsticks", "video_id": "video10744", "sen_id": 221746}, {"caption": "someone demonstrates how to hold and use chopsticks", "video_id": "video10744", "sen_id": 221747}, {"caption": "a woman demonstrates the proper way to hold chopsticks", "video_id": "video10744", "sen_id": 221748}, {"caption": "a woman demonstrating how to hold a pair of chopstix", "video_id": "video10744", "sen_id": 221749}, {"caption": "this woamn in the video is showing how to properly use chopsticks", "video_id": "video10744", "sen_id": 221750}, {"caption": "a female with red fingernails gives a demonstration on how to use chopsticks", "video_id": "video10744", "sen_id": 221751}, {"caption": "a woman has her hands on a table with chopsticks in them", "video_id": "video10744", "sen_id": 221752}, {"caption": "a woman wearing red nail polish is demonstrating how you use chop sticks", "video_id": "video10744", "sen_id": 221753}, {"caption": "a woman is demonstrating and explaining the beginning process of using chopsticks the chopstick between the thumb and ring finger does not move", "video_id": "video10744", "sen_id": 221754}, {"caption": "mother and son are eating food together with chop sticks", "video_id": "video10744", "sen_id": 221755}, {"caption": "a woman with red fingernails is demonstrating how to use wooden chopsticks", "video_id": "video10744", "sen_id": 221756}, {"caption": "girl with the red nail polish holds the stick in her fingers", "video_id": "video10744", "sen_id": 221757}, {"caption": "a women with red nail polish on her fingers explaining something about chop sticks", "video_id": "video10744", "sen_id": 221758}, {"caption": "a person is holding some wood sticks", "video_id": "video10744", "sen_id": 221759}, {"caption": "guy fieri talks as he prepares flank steak", "video_id": "video12187", "sen_id": 221760}, {"caption": "a man with a white shirt and blonde hair is showing how to make a recipe on the grill", "video_id": "video12187", "sen_id": 221761}, {"caption": "a chef marinates a cut of meat and places bell peppers on top of it", "video_id": "video12187", "sen_id": 221762}, {"caption": "a man places raw marinated flank steak on a cutting board and places red and green bell pepper over it", "video_id": "video12187", "sen_id": 221763}, {"caption": "a gentleman is making a flank steak that is nicely marinated and he's adding some veggies red bell peppers and green bell peppers", "video_id": "video12187", "sen_id": 221764}, {"caption": "a man is demonstrating how to cook a recipe using vegetables", "video_id": "video12187", "sen_id": 221765}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12187", "sen_id": 221766}, {"caption": "guy fieri making a flank steak meal with veggies", "video_id": "video12187", "sen_id": 221767}, {"caption": "this kitchen is out side very open place and more vegetables", "video_id": "video12187", "sen_id": 221768}, {"caption": "guy topping meat with vegetables", "video_id": "video12187", "sen_id": 221769}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12187", "sen_id": 221770}, {"caption": "a cheif is telling and showing how to cook food", "video_id": "video12187", "sen_id": 221771}, {"caption": "a man with a variety of fruits and vegetables demonstrates how to cook", "video_id": "video12187", "sen_id": 221772}, {"caption": "one man cooking in kitchen some tasty recipes", "video_id": "video12187", "sen_id": 221773}, {"caption": "cooking in out door the chef has so many items placed on table then he try to cut", "video_id": "video12187", "sen_id": 221774}, {"caption": "a man having white hair is cooking something in an outdoor kitchen", "video_id": "video12187", "sen_id": 221775}, {"caption": "chef guy fierri giving a cooking demonstration with red bell peppers and other food items", "video_id": "video12187", "sen_id": 221776}, {"caption": "a man explaining and preparing some dish on outside", "video_id": "video12187", "sen_id": 221777}, {"caption": "blonde guy making flay stakes and adding fresh veggies to it", "video_id": "video12187", "sen_id": 221778}, {"caption": "a man is preparing some food with some peppers", "video_id": "video12187", "sen_id": 221779}, {"caption": "a women describing how to start preparing a meal", "video_id": "video12323", "sen_id": 221780}, {"caption": "using a big black skillet to cook a meal", "video_id": "video12323", "sen_id": 221781}, {"caption": "a chef prepares to cook a recipe by frying some bacon", "video_id": "video12323", "sen_id": 221782}, {"caption": "the cook is showing us a recipe that includes bacon", "video_id": "video12323", "sen_id": 221783}, {"caption": "a woman talking about the food that she is about to cook", "video_id": "video12323", "sen_id": 221784}, {"caption": "a cook adds diced pork belly into an empty black skillet and stirs with a wooden spatula as the fat melts", "video_id": "video12323", "sen_id": 221785}, {"caption": "a recipe involving meat pieces is shown as under preparation", "video_id": "video12323", "sen_id": 221786}, {"caption": "some pieces of meat was put on the fry pan and fried", "video_id": "video12323", "sen_id": 221787}, {"caption": "a woman speaks while putting chopped pork belly into a pan", "video_id": "video12323", "sen_id": 221788}, {"caption": "a person cook in kitchen and explain the recipes", "video_id": "video12323", "sen_id": 221789}, {"caption": "there is a woman explains about a new meet recipe", "video_id": "video12323", "sen_id": 221790}, {"caption": "a frying pan into which chopped meats are put and being stirred with wooden spoon", "video_id": "video12323", "sen_id": 221791}, {"caption": "the picture of chopped pork into a hot skillet ready to be cooked in a delicious recipe", "video_id": "video12323", "sen_id": 221792}, {"caption": "a woman giving a cooking demonstration of chopped pork belly", "video_id": "video12323", "sen_id": 221793}, {"caption": "a woman is saying putting chopped pork belly in a black cast iron pan", "video_id": "video12323", "sen_id": 221794}, {"caption": "a person is frying bacon in a skillet", "video_id": "video12323", "sen_id": 221795}, {"caption": "a woman discribing a recipe while frying meat in an iron skillet", "video_id": "video12323", "sen_id": 221796}, {"caption": "someone is preparing meat in a pan by searing it", "video_id": "video12323", "sen_id": 221797}, {"caption": "a woman begins to cook off pork belly and render the fat in order to add veggies", "video_id": "video12323", "sen_id": 221798}, {"caption": "a black pan is being filmed by some one", "video_id": "video12323", "sen_id": 221799}, {"caption": "mariah carey is singing dancing holding and kissing a man and in one scene dressed in a costume in a music video", "video_id": "video11939", "sen_id": 221800}, {"caption": "mariah carey singing in a music video and kissing a man", "video_id": "video11939", "sen_id": 221801}, {"caption": "mariah carey is singing about an old love affair", "video_id": "video11939", "sen_id": 221802}, {"caption": "a heavy set woman sings a song and dances in various costumes", "video_id": "video11939", "sen_id": 221803}, {"caption": "a woman with brown hair singing in different outfits and caressing a man", "video_id": "video11939", "sen_id": 221804}, {"caption": "a beautiful woman is singing a song while in different locations", "video_id": "video11939", "sen_id": 221805}, {"caption": "a beautiful women in black dress is singing here", "video_id": "video11939", "sen_id": 221806}, {"caption": "woman sings song about her relationship with a man", "video_id": "video11939", "sen_id": 221807}, {"caption": "blonde woman in black dress singing about and kissing shots with partner", "video_id": "video11939", "sen_id": 221808}, {"caption": "mariah carey sings in a music video and is shown with a man in some of the scenes", "video_id": "video11939", "sen_id": 221809}, {"caption": "there is a woman singing with perfect voice", "video_id": "video11939", "sen_id": 221810}, {"caption": "mariah carey is performing and singing in her music video a man is being very intimate with her", "video_id": "video11939", "sen_id": 221811}, {"caption": "girl in black dress sings song then she is romantic with man", "video_id": "video11939", "sen_id": 221812}, {"caption": "a girl with brown hair singing a song in a field of flowers", "video_id": "video11939", "sen_id": 221813}, {"caption": "a young lady is singing a song it start in color and then it turn into black and white then another person join her", "video_id": "video11939", "sen_id": 221814}, {"caption": "singer mariah carey shown in various backgrounds in revealing clothing", "video_id": "video11939", "sen_id": 221815}, {"caption": "a woman in singing in a popular music video", "video_id": "video11939", "sen_id": 221816}, {"caption": "a woman sings and holds herself as the light fades in and out", "video_id": "video11939", "sen_id": 221817}, {"caption": "mariah carey singing in a small black dress", "video_id": "video11939", "sen_id": 221818}, {"caption": "man and woman seen embracing each other while one woman is singing in the background", "video_id": "video11939", "sen_id": 221819}, {"caption": "a woman with blonde hair wearing a black tank top is singing", "video_id": "video10558", "sen_id": 221820}, {"caption": "a young girl singing and playing the electric guitar outside", "video_id": "video10558", "sen_id": 221821}, {"caption": "a young girl sings and dances in front of a wall of graffiti", "video_id": "video10558", "sen_id": 221822}, {"caption": "a girl in a black shirt is playing a guitar", "video_id": "video10558", "sen_id": 221823}, {"caption": "teenage girl sings song while wearing black and playing a black electric guitar", "video_id": "video10558", "sen_id": 221824}, {"caption": "a blond haired woman lip syncs to the music and plays the guitar in front of a graffiti covered wall", "video_id": "video10558", "sen_id": 221825}, {"caption": "a young girl in black dress dancing in front of the camera", "video_id": "video10558", "sen_id": 221826}, {"caption": "a blond woman in punk clothes is playing a guitar and singing", "video_id": "video10558", "sen_id": 221827}, {"caption": "a young woman sings and plays the guitar", "video_id": "video10558", "sen_id": 221828}, {"caption": "a pop dancer is singing and dancing and one more girl is enjoying musci by playing with the guitar", "video_id": "video10558", "sen_id": 221829}, {"caption": "a girl is playing a guitar and singing a song", "video_id": "video10558", "sen_id": 221830}, {"caption": "there is a hot women playing guitar and singing", "video_id": "video10558", "sen_id": 221831}, {"caption": "a young women singing and doing movement by playing guitar", "video_id": "video10558", "sen_id": 221832}, {"caption": "a girl is playing a guitar singing song and dancing as well", "video_id": "video10558", "sen_id": 221833}, {"caption": "a very pretty girl with black dress is dancing and singing a dog", "video_id": "video10558", "sen_id": 221834}, {"caption": "a woman is singing and playing a guitar on camera", "video_id": "video10558", "sen_id": 221835}, {"caption": "a women in black top is talking and shaking her hands", "video_id": "video10558", "sen_id": 221836}, {"caption": "a young woman sings and plays an electric guitar", "video_id": "video10558", "sen_id": 221837}, {"caption": "a blonde girl is doing a remake to the avril lavigne song smile", "video_id": "video10558", "sen_id": 221838}, {"caption": "sexy blonde singer dancing and singing in her music video", "video_id": "video10558", "sen_id": 221839}, {"caption": "a surfer riding waves with music playing in the background", "video_id": "video12103", "sen_id": 221840}, {"caption": "a person dressed in a black wet suite rides a wave on a surfboard", "video_id": "video12103", "sen_id": 221841}, {"caption": "a surfer rides through a large wave near a pier on the shore", "video_id": "video12103", "sen_id": 221842}, {"caption": "a surfer is hidden in the curve of the dark gray wave and is visible when he rides in a slant from the bottom to the top of the wave", "video_id": "video12103", "sen_id": 221843}, {"caption": "a young surfer surfs out of the tube made by a large wave", "video_id": "video12103", "sen_id": 221844}, {"caption": "a surfer rides through the pipeline of a large wave that is near a pier", "video_id": "video12103", "sen_id": 221845}, {"caption": "a surfer is riding the huge waves as they come in a crash on the shore", "video_id": "video12103", "sen_id": 221846}, {"caption": "there is a beach a man surfing on the waves", "video_id": "video12103", "sen_id": 221847}, {"caption": "this sea side very liked one climate is good", "video_id": "video12103", "sen_id": 221848}, {"caption": "the sea is rough and sky dark still someone is surfing in the sea", "video_id": "video12103", "sen_id": 221849}, {"caption": "surfers ride waves in a variety of settings followed by logos for fourth oakley and fcs followed by production credits", "video_id": "video12103", "sen_id": 221850}, {"caption": "a men is surfing on wave in deep sea", "video_id": "video12103", "sen_id": 221851}, {"caption": "surfing scenes at the beach set to hippy pop music", "video_id": "video12103", "sen_id": 221852}, {"caption": "waves are splashing high on the beach while a man is surfing", "video_id": "video12103", "sen_id": 221853}, {"caption": "waves are crashing on an outdoor beach", "video_id": "video12103", "sen_id": 221854}, {"caption": "someone is surfing big waves near sunset at the beach", "video_id": "video12103", "sen_id": 221855}, {"caption": "man surfing a huge wave on the ocean with sail boats in the background", "video_id": "video12103", "sen_id": 221856}, {"caption": "a river scene skating in water boat beside water moving up and down displaying on screen music playing", "video_id": "video12103", "sen_id": 221857}, {"caption": "on the beach a person surfs large waves at dusk", "video_id": "video12103", "sen_id": 221858}, {"caption": "a surfer rides a long wave at sunset while music plays in the background", "video_id": "video12103", "sen_id": 221859}, {"caption": "man climbing on rocks next to a large waterfall in the rainforest", "video_id": "video12861", "sen_id": 221860}, {"caption": "a mountain climber works his way down a steep mountain cliff", "video_id": "video12861", "sen_id": 221861}, {"caption": "a man sings as as someone makes his way through a rocky wooded area", "video_id": "video12861", "sen_id": 221862}, {"caption": "a person is climbing up a yellow rope", "video_id": "video12861", "sen_id": 221863}, {"caption": "someone is scaling an ivy covered wall outdoors", "video_id": "video12861", "sen_id": 221864}, {"caption": "a person climbing down a rope in a jungle", "video_id": "video12861", "sen_id": 221865}, {"caption": "a person climbing a wet mountain holding on to a white rope", "video_id": "video12861", "sen_id": 221866}, {"caption": "a man is holding a rope while climbing a hillside", "video_id": "video12861", "sen_id": 221867}, {"caption": "vines and plants grow over rocks a yellow rope hangs over a ridged wall a gloved hand pulls on the rope", "video_id": "video12861", "sen_id": 221868}, {"caption": "a man with stick doing something in the deep forest", "video_id": "video12861", "sen_id": 221869}, {"caption": "a hiker climbs down a slope with rocks", "video_id": "video12861", "sen_id": 221870}, {"caption": "a person is grabbing a vegetable from a tress", "video_id": "video12861", "sen_id": 221871}, {"caption": "a camera man taking pictures of the all plant in the wood", "video_id": "video12861", "sen_id": 221872}, {"caption": "in a plant there is something in the forest", "video_id": "video12861", "sen_id": 221873}, {"caption": "a man is singing a son for a music", "video_id": "video12861", "sen_id": 221874}, {"caption": "a rope and gloves help the climber rappel down a leafy cliff", "video_id": "video12861", "sen_id": 221875}, {"caption": "there is a man climbing the rocks in a forest", "video_id": "video12861", "sen_id": 221876}, {"caption": "one man climbing in the mountain on the", "video_id": "video12861", "sen_id": 221877}, {"caption": "guy getting a rope ready to walk on it", "video_id": "video12861", "sen_id": 221878}, {"caption": "a person climbing a cliff in the woods", "video_id": "video12861", "sen_id": 221879}, {"caption": "several dresses of various colors are displayed on models", "video_id": "video10678", "sen_id": 221880}, {"caption": "photographs of women in bridal gowns are flashed across the screen", "video_id": "video10678", "sen_id": 221881}, {"caption": "several ladies dressed in white wedding gowns and formal attire", "video_id": "video10678", "sen_id": 221882}, {"caption": "female white skinned models in a moving graphic wear several white and colored dresses", "video_id": "video10678", "sen_id": 221883}, {"caption": "a pretty bolnde woman models a long white gown for a fashion shoot", "video_id": "video10678", "sen_id": 221884}, {"caption": "clothing models show off formal gowns in still pictures", "video_id": "video10678", "sen_id": 221885}, {"caption": "a slideshow showing women in different colored dresses", "video_id": "video10678", "sen_id": 221886}, {"caption": "a lady with different designer colourful dresses and different styles", "video_id": "video10678", "sen_id": 221887}, {"caption": "models wearing different wedding gowns and other dresses", "video_id": "video10678", "sen_id": 221888}, {"caption": "a succession of female models are wearing various wedding gowns and evening dresses", "video_id": "video10678", "sen_id": 221889}, {"caption": "a beautiful women pose with white dress collections", "video_id": "video10678", "sen_id": 221890}, {"caption": "different images of women in white fancy dresses are shown", "video_id": "video10678", "sen_id": 221891}, {"caption": "pictures of different women in different dresses for a website", "video_id": "video10678", "sen_id": 221892}, {"caption": "a blonde woman in a long white dress is posing for the camera", "video_id": "video10678", "sen_id": 221893}, {"caption": "there are various women in white and blue wedding dresses posing for the photographs", "video_id": "video10678", "sen_id": 221894}, {"caption": "there is a woman with white gown standing on the floor", "video_id": "video10678", "sen_id": 221895}, {"caption": "a fashion dress were shown as photograph slide show", "video_id": "video10678", "sen_id": 221896}, {"caption": "serveral women wearing wedding dresses ranging in colors", "video_id": "video10678", "sen_id": 221897}, {"caption": "a lady wears different type of dress materials", "video_id": "video10678", "sen_id": 221898}, {"caption": "a woman in a white dress is standing around", "video_id": "video10678", "sen_id": 221899}, {"caption": "three slide of different women with different fashion", "video_id": "video12396", "sen_id": 221900}, {"caption": "many celebrities are shown walking down the street", "video_id": "video12396", "sen_id": 221901}, {"caption": "a slideshow of images of female celebrities out in public plays with music", "video_id": "video12396", "sen_id": 221902}, {"caption": "women wearing sunglasses and dressed up walk down the street", "video_id": "video12396", "sen_id": 221903}, {"caption": "several women in photos next to each other wearing fashion items", "video_id": "video12396", "sen_id": 221904}, {"caption": "a woman in a short white mink coat poses for pictures in an airport", "video_id": "video12396", "sen_id": 221905}, {"caption": "a collage of three young women in sunglasses set to music", "video_id": "video12396", "sen_id": 221906}, {"caption": "women are being showed in different outfits on", "video_id": "video12396", "sen_id": 221907}, {"caption": "pictures of an celebrity out and about with music playing in the background", "video_id": "video12396", "sen_id": 221908}, {"caption": "three pictures of a woman at a time popped up one after another", "video_id": "video12396", "sen_id": 221909}, {"caption": "a sequence of images comprising of various women in different outfits", "video_id": "video12396", "sen_id": 221910}, {"caption": "a women in black dressing walking with her friends", "video_id": "video12396", "sen_id": 221911}, {"caption": "three different picture frames of a model with different kind of costumes and hair style", "video_id": "video12396", "sen_id": 221912}, {"caption": "fashion girl in crowd and movement in different styles", "video_id": "video12396", "sen_id": 221913}, {"caption": "a woman singing a song about the fashion dresses and images", "video_id": "video12396", "sen_id": 221914}, {"caption": "some pictures of a woman are shown on tv", "video_id": "video12396", "sen_id": 221915}, {"caption": "there is a cooling glass women walking with friends", "video_id": "video12396", "sen_id": 221916}, {"caption": "to be displayed on the variety international branded in the monitor", "video_id": "video12396", "sen_id": 221917}, {"caption": "a different dressing style of the fashion womens", "video_id": "video12396", "sen_id": 221918}, {"caption": "the pictures of the ladies in three session with a musical background", "video_id": "video12396", "sen_id": 221919}, {"caption": "stew ingredients are put in a pot as a female narrates", "video_id": "video11653", "sen_id": 221920}, {"caption": "a woman is making broth", "video_id": "video11653", "sen_id": 221921}, {"caption": "lady is boiling meat in a pot adding onion and seasoning as it cooks", "video_id": "video11653", "sen_id": 221922}, {"caption": "a woman is describing making soup in a very large pot", "video_id": "video11653", "sen_id": 221923}, {"caption": "a young woman explaining how to make a dish", "video_id": "video11653", "sen_id": 221924}, {"caption": "a woman putting meat in water and adding seasoning", "video_id": "video11653", "sen_id": 221925}, {"caption": "cooking video showing how to boil meat with onions", "video_id": "video11653", "sen_id": 221926}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video11653", "sen_id": 221927}, {"caption": "a person cooking pours water and salt over some kind of meat and adds an egg", "video_id": "video11653", "sen_id": 221928}, {"caption": "water and salt poured on a chicken", "video_id": "video11653", "sen_id": 221929}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11653", "sen_id": 221930}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11653", "sen_id": 221931}, {"caption": "a woman puts salt and an egg in a pot of meat", "video_id": "video11653", "sen_id": 221932}, {"caption": "an inhome chef works on a meat recipe in their kitchen", "video_id": "video11653", "sen_id": 221933}, {"caption": "a woman gives cooking instructions aloud while pouring ingredients into a pot", "video_id": "video11653", "sen_id": 221934}, {"caption": "it was a bone marrow where the lady is boiling in to the water adding a table spoon of salt then later one peeled onion in to it", "video_id": "video11653", "sen_id": 221935}, {"caption": "men is cooking in the utensil with water in it", "video_id": "video11653", "sen_id": 221936}, {"caption": "a silver pot holds rounded pieces of chopped and pinkish bones in water with white seasonings and a whole white onion", "video_id": "video11653", "sen_id": 221937}, {"caption": "cooking tips in which they pour hot water and salt in the meat a round ball like ingredient is dropped", "video_id": "video11653", "sen_id": 221938}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11653", "sen_id": 221939}, {"caption": "a woman is talking to a chef about her creation", "video_id": "video10927", "sen_id": 221940}, {"caption": "a woman being criticized for her bad cooking", "video_id": "video10927", "sen_id": 221941}, {"caption": "a man telling a woman that her prepared dish is not eatable", "video_id": "video10927", "sen_id": 221942}, {"caption": "gordon ramsey and a female contestant yelling at one another", "video_id": "video10927", "sen_id": 221943}, {"caption": "a woman apologizes to a tv cooking show host for preparing food the host deems inedible", "video_id": "video10927", "sen_id": 221944}, {"caption": "a celebrity chef and a contestant on his show argue about the quality of a dish", "video_id": "video10927", "sen_id": 221945}, {"caption": "a woman sasses a chef who doesn't like her food", "video_id": "video10927", "sen_id": 221946}, {"caption": "a woman sasses a chef who doesn't like the food she prepared for him", "video_id": "video10927", "sen_id": 221947}, {"caption": "gordon ramsey grilling a couple on a dish at their restaurant", "video_id": "video10927", "sen_id": 221948}, {"caption": "woman says to a blond guy i am so sorry you don't like it the guy then responds don't like it both are speaking about some meal she prepared", "video_id": "video10927", "sen_id": 221949}, {"caption": "a chef of high skill critiques others food they make", "video_id": "video10927", "sen_id": 221950}, {"caption": "a woman in blue and a woman in red are standing before a person in a white shirt discussing a dish", "video_id": "video10927", "sen_id": 221951}, {"caption": "a chef does not like the food a woman made and she tells him to throw it out", "video_id": "video10927", "sen_id": 221952}, {"caption": "a woman in blue is speaking to a man in white about food that she made while standing next to a woman in red", "video_id": "video10927", "sen_id": 221953}, {"caption": "a chef and a woman are having a heated jacuzzi on at a table", "video_id": "video10927", "sen_id": 221954}, {"caption": "here the ramsay is making her to realize her her mistake which makes her business downso he was judging them", "video_id": "video10927", "sen_id": 221955}, {"caption": "two man and women sitting in chair and eating", "video_id": "video10927", "sen_id": 221956}, {"caption": "a chef and a young woman discuss a dish pf food that the chef is not happy about at all", "video_id": "video10927", "sen_id": 221957}, {"caption": "the woman wearing blue dress is fighting witht he chef in the white dress", "video_id": "video10927", "sen_id": 221958}, {"caption": "scene from tv cooking show where the guy is showing his receipi", "video_id": "video10927", "sen_id": 221959}, {"caption": "a video describing that everything has a creator", "video_id": "video12528", "sen_id": 221960}, {"caption": "an animated scene of grass with sparkles flowing through it and smoky mountains in the background", "video_id": "video12528", "sen_id": 221961}, {"caption": "soft music is playing with hills in the background and green grass at the forefront at the top of the screen words talk about a creator", "video_id": "video12528", "sen_id": 221962}, {"caption": "a beautiful scene is displayed with a message about the creator", "video_id": "video12528", "sen_id": 221963}, {"caption": "a religious video showing the natural world and it's beauty", "video_id": "video12528", "sen_id": 221964}, {"caption": "an animated movie telling about the creation and the creator of this nature", "video_id": "video12528", "sen_id": 221965}, {"caption": "when you are looking at the building when you look at the creation", "video_id": "video12528", "sen_id": 221966}, {"caption": "when you look at a building you know there is a builder", "video_id": "video12528", "sen_id": 221967}, {"caption": "a cgi animation shows some light going over plants", "video_id": "video12528", "sen_id": 221968}, {"caption": "the picture shows there is a creator of everything", "video_id": "video12528", "sen_id": 221969}, {"caption": "there is a clouded sky at the evening", "video_id": "video12528", "sen_id": 221970}, {"caption": "a beautiful scenery of sky clouds and mountains", "video_id": "video12528", "sen_id": 221971}, {"caption": "when you look at creation you know there is a creator", "video_id": "video12528", "sen_id": 221972}, {"caption": "video is about creation white grass and mountains are displayed", "video_id": "video12528", "sen_id": 221973}, {"caption": "video of a colorful nature content graphic scene goes on with sentences of the creator and the creations", "video_id": "video12528", "sen_id": 221974}, {"caption": "the video suggests that there must be a creator of the creation we see around us", "video_id": "video12528", "sen_id": 221975}, {"caption": "there are two things shown in this visual one reads when you look at a building you know there is a builder and then we can see another part of the visual showing the beauty of nature with mountains", "video_id": "video12528", "sen_id": 221976}, {"caption": "the sean is very nice and the nature", "video_id": "video12528", "sen_id": 221977}, {"caption": "various shots of beautiful landscpaing and stuff floating around", "video_id": "video12528", "sen_id": 221978}, {"caption": "some green lights are floating across the landscape", "video_id": "video12528", "sen_id": 221979}, {"caption": "in a kitchen a male is spinning and adding spices to raw meat in a pan", "video_id": "video10175", "sen_id": 221980}, {"caption": "a man in a gray shirt is in the kitchen rubbing a rack of lamb in a bed of seasoning", "video_id": "video10175", "sen_id": 221981}, {"caption": "a guy in white t-shirt adds some ingredients with the meat for taste", "video_id": "video10175", "sen_id": 221982}, {"caption": "a man holding a raw chunk of red meat rolls the meat in a baking pan that contains various spices and seasonings", "video_id": "video10175", "sen_id": 221983}, {"caption": "the men making the griled chicken and he is poring the spices in the kitchen other receipes are on the stand", "video_id": "video10175", "sen_id": 221984}, {"caption": "a man is using a baking dish to coat meat in spices", "video_id": "video10175", "sen_id": 221985}, {"caption": "a man rolls a giant piece of meat into a tray full of spices", "video_id": "video10175", "sen_id": 221986}, {"caption": "a man rubs spices onto a rack of lamb in a baking pan", "video_id": "video10175", "sen_id": 221987}, {"caption": "a man mixing the food stuff with spices first", "video_id": "video10175", "sen_id": 221988}, {"caption": "a man rubbing a meat product into a variety of spices for flavor", "video_id": "video10175", "sen_id": 221989}, {"caption": "a man prepping meat by rolling it in a spice rub and sprinkling the rub onto the meat", "video_id": "video10175", "sen_id": 221990}, {"caption": "in the kitchen a man combine some flavor to a piece of meet", "video_id": "video10175", "sen_id": 221991}, {"caption": "a man spicing the food item on a large tray", "video_id": "video10175", "sen_id": 221992}, {"caption": "a man in white tea shirt is making a bakery item by adding some spices on it", "video_id": "video10175", "sen_id": 221993}, {"caption": "a man in a kitchen rubs spices into some meat", "video_id": "video10175", "sen_id": 221994}, {"caption": "a man coats meat in a dry rub", "video_id": "video10175", "sen_id": 221995}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10175", "sen_id": 221996}, {"caption": "a man mixing a non veg meal into masala", "video_id": "video10175", "sen_id": 221997}, {"caption": "a man is explaining how to marinate meat", "video_id": "video10175", "sen_id": 221998}, {"caption": "a man preparing a piece of meat by applying a spice rub to it", "video_id": "video10175", "sen_id": 221999}, {"caption": "a winners reaction from her clean display of mat work", "video_id": "video11619", "sen_id": 222000}, {"caption": "a woman track runner has just won a race and is holding the flag of her country against her back a and is smiling", "video_id": "video11619", "sen_id": 222001}, {"caption": "a jamaican woman celebrates winning a race while the announcers talk", "video_id": "video11619", "sen_id": 222002}, {"caption": "the two athletes embrace on the track after the race", "video_id": "video11619", "sen_id": 222003}, {"caption": "a woman who won the race is posing for pictures", "video_id": "video11619", "sen_id": 222004}, {"caption": "a woman who just won a race poses for pictures with her country's flag", "video_id": "video11619", "sen_id": 222005}, {"caption": "a sports woman celebrating her victory in the stadium and her fans supporting her", "video_id": "video11619", "sen_id": 222006}, {"caption": "there is a athlete showing her pleasure after victory", "video_id": "video11619", "sen_id": 222007}, {"caption": "an athlete finishing first in the race in some sports event", "video_id": "video11619", "sen_id": 222008}, {"caption": "in a winning moment the winner express her stunning joy to share with her country flag and fans", "video_id": "video11619", "sen_id": 222009}, {"caption": "an athletic winner wearing a combination of green and yellow track suit is enjoying her victory", "video_id": "video11619", "sen_id": 222010}, {"caption": "a winner here on the screen expressing her victory in the stadium", "video_id": "video11619", "sen_id": 222011}, {"caption": "a women is celebrating her wins and carring her nation flag in her hand and smiling", "video_id": "video11619", "sen_id": 222012}, {"caption": "a winner of a athlete enjoying with her national flag in the sports ground", "video_id": "video11619", "sen_id": 222013}, {"caption": "thereare two woman athletes hugging because of a big win", "video_id": "video11619", "sen_id": 222014}, {"caption": "there is a women athlete enjoying sports her nations flag wrapping around herself", "video_id": "video11619", "sen_id": 222015}, {"caption": "a woman got a medal on a running competition", "video_id": "video11619", "sen_id": 222016}, {"caption": "women title winner celebrating in stadium around big crowd", "video_id": "video11619", "sen_id": 222017}, {"caption": "a black woman going into the world championships at the olympics", "video_id": "video11619", "sen_id": 222018}, {"caption": "a woman with a jamaican flag is standing around and smiling", "video_id": "video11619", "sen_id": 222019}, {"caption": "a young boy is playing with a lego house and allowing his dwarf hamster to run through and around the toy and floor", "video_id": "video10154", "sen_id": 222020}, {"caption": "two kids are playing with a hamster in a lego house", "video_id": "video10154", "sen_id": 222021}, {"caption": "a person is building a lego house for the hampster", "video_id": "video10154", "sen_id": 222022}, {"caption": "a cute hamster walking around a lego house", "video_id": "video10154", "sen_id": 222023}, {"caption": "a child is sitting on floor with a toy house and a mouse walks out of the little house", "video_id": "video10154", "sen_id": 222024}, {"caption": "a kid is playing with a toy house and mouse", "video_id": "video10154", "sen_id": 222025}, {"caption": "its a kid playing with the toys on home", "video_id": "video10154", "sen_id": 222026}, {"caption": "the kid is mending a house for the small rat", "video_id": "video10154", "sen_id": 222027}, {"caption": "a child is playing with a toy of a house", "video_id": "video10154", "sen_id": 222028}, {"caption": "a child sits on the floor playing with a toy house and then an animal comes out the door", "video_id": "video10154", "sen_id": 222029}, {"caption": "kids playing with legos and building a house", "video_id": "video10154", "sen_id": 222030}, {"caption": "one boy is make a toy house in the", "video_id": "video10154", "sen_id": 222031}, {"caption": "a small child plays lego with a house he has built and his hamster", "video_id": "video10154", "sen_id": 222032}, {"caption": "kids sit down and play with toys on the floor", "video_id": "video10154", "sen_id": 222033}, {"caption": "a children is building a house using building block materials and their parents helping them to build", "video_id": "video10154", "sen_id": 222034}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video10154", "sen_id": 222035}, {"caption": "a small girl playing with her little funny rat", "video_id": "video10154", "sen_id": 222036}, {"caption": "two children are playing with a lego house and a hamster", "video_id": "video10154", "sen_id": 222037}, {"caption": "a child is playing with a lego toy house", "video_id": "video10154", "sen_id": 222038}, {"caption": "in a bedroom a pair of children play with their pet mouse in a toy house built out of legos", "video_id": "video10154", "sen_id": 222039}, {"caption": "a tutorial on how to adjust exposure settings on a camera", "video_id": "video11777", "sen_id": 222040}, {"caption": "windmills on a river are turning while background voice discusses exposure", "video_id": "video11777", "sen_id": 222041}, {"caption": "three windmills next to a river along with a narration talking about exposure", "video_id": "video11777", "sen_id": 222042}, {"caption": "a large windmill actively moving near a body of water", "video_id": "video11777", "sen_id": 222043}, {"caption": "a large windmill moving in the water", "video_id": "video11777", "sen_id": 222044}, {"caption": "exposure control options are described as a function", "video_id": "video11777", "sen_id": 222045}, {"caption": "a man taking video of windmills and narrating what he sees", "video_id": "video11777", "sen_id": 222046}, {"caption": "a man is describing options on how to use exposures on a camera", "video_id": "video11777", "sen_id": 222047}, {"caption": "a windmill next to a body of water is spinning slowly", "video_id": "video11777", "sen_id": 222048}, {"caption": "a guy is talking about using exposure control options either lighten or darken in auto photo shooting mode", "video_id": "video11777", "sen_id": 222049}, {"caption": "a man talking about exposure shooting on a camera", "video_id": "video11777", "sen_id": 222050}, {"caption": "man explaining exposure control options on a camera over a shot of a windmill", "video_id": "video11777", "sen_id": 222051}, {"caption": "someone is explaining about a wind electricity genation", "video_id": "video11777", "sen_id": 222052}, {"caption": "a man discusses and demonstrates the features of a digital camera", "video_id": "video11777", "sen_id": 222053}, {"caption": "a fan moving slowly swiftly a water scene displaying on screen", "video_id": "video11777", "sen_id": 222054}, {"caption": "some windmills are spinning near a river", "video_id": "video11777", "sen_id": 222055}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video11777", "sen_id": 222056}, {"caption": "exposure control options windmill is running near river", "video_id": "video11777", "sen_id": 222057}, {"caption": "exposure control options is to place a number of big fans", "video_id": "video11777", "sen_id": 222058}, {"caption": "a fan rotating moving water beside displaying on the screen", "video_id": "video11777", "sen_id": 222059}, {"caption": "a man with a clown nose is teaching a young cowboy about riding a horse", "video_id": "video12977", "sen_id": 222060}, {"caption": "an older cowboy rodeo clown explains some tricks of the trade to a younger cowboy", "video_id": "video12977", "sen_id": 222061}, {"caption": "two people wearing caps are enjoying riding on horse", "video_id": "video12977", "sen_id": 222062}, {"caption": "a man is demonstrating something to a young boy while riding on individual horses", "video_id": "video12977", "sen_id": 222063}, {"caption": "a man and boy on horseback in a stable", "video_id": "video12977", "sen_id": 222064}, {"caption": "a man and boy work together to train a horse", "video_id": "video12977", "sen_id": 222065}, {"caption": "a man and a boy sits on a horse near a fence", "video_id": "video12977", "sen_id": 222066}, {"caption": "a man is teaching his young boy how to ride a horse", "video_id": "video12977", "sen_id": 222067}, {"caption": "one man in horse and other horse is near", "video_id": "video12977", "sen_id": 222068}, {"caption": "a man and his child prepare to ride some horses", "video_id": "video12977", "sen_id": 222069}, {"caption": "cowboys showing their riding skills at ranch", "video_id": "video12977", "sen_id": 222070}, {"caption": "two persons are riding the horse on a yard", "video_id": "video12977", "sen_id": 222071}, {"caption": "a man in red shirt ridding a horse", "video_id": "video12977", "sen_id": 222072}, {"caption": "boys wearing the hat and cow boy dresses sitting on the horsethe horses are in brown color", "video_id": "video12977", "sen_id": 222073}, {"caption": "in the horse court three mens siting above the horse and tide with rope", "video_id": "video12977", "sen_id": 222074}, {"caption": "a man on a horse is holding a rope to another horse and helping a young boy get onto the horse", "video_id": "video12977", "sen_id": 222075}, {"caption": "a person sitting on a horse and helping a little boy to sit on other horse", "video_id": "video12977", "sen_id": 222076}, {"caption": "a man and a boy work together to try and break a horse", "video_id": "video12977", "sen_id": 222077}, {"caption": "a man and boy are riding horses in rench", "video_id": "video12977", "sen_id": 222078}, {"caption": "a person is standing on a brown horse", "video_id": "video12977", "sen_id": 222079}, {"caption": "people are sitting in chairs along the edges in a large boat looking out at the ocean as the boat is moving", "video_id": "video10830", "sen_id": 222080}, {"caption": "anglers watch their poles as they troll near an oil rig", "video_id": "video10830", "sen_id": 222081}, {"caption": "several views from the inside of a charter fishing boat out at sea among an oil rig", "video_id": "video10830", "sen_id": 222082}, {"caption": "several people ride around in a boat going to places where they can fish", "video_id": "video10830", "sen_id": 222083}, {"caption": "a group of pepole standing on a boat and fishing on the water", "video_id": "video10830", "sen_id": 222084}, {"caption": "people enjoying a sunny day fishing on a boat", "video_id": "video10830", "sen_id": 222085}, {"caption": "lots of people are standing in a huge ship and watching", "video_id": "video10830", "sen_id": 222086}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10830", "sen_id": 222087}, {"caption": "one man in sea watch outer with a man", "video_id": "video10830", "sen_id": 222088}, {"caption": "a people are travelling in the boat and enjoying", "video_id": "video10830", "sen_id": 222089}, {"caption": "a group of people fishing while on a ship on the ocean", "video_id": "video10830", "sen_id": 222090}, {"caption": "there is a white tshirt man watching on the sea", "video_id": "video10830", "sen_id": 222091}, {"caption": "video footage of people fishing on a boat", "video_id": "video10830", "sen_id": 222092}, {"caption": "men fishing on a boat outside of what looks to be an oil rig", "video_id": "video10830", "sen_id": 222093}, {"caption": "lots of people in a cruise ship engaged in fishing activity", "video_id": "video10830", "sen_id": 222094}, {"caption": "video shows an array of different people sitting and standing on a boat deep sea fishing around a pier", "video_id": "video10830", "sen_id": 222095}, {"caption": "in a ship going fastly in the sea area of", "video_id": "video10830", "sen_id": 222096}, {"caption": "a boat go to the ocean and many peoples in stay on the boat", "video_id": "video10830", "sen_id": 222097}, {"caption": "many people are on the boat to go fishing in the sea", "video_id": "video10830", "sen_id": 222098}, {"caption": "a guy is riding a boat in the ocean", "video_id": "video10830", "sen_id": 222099}, {"caption": "a woman does quick exercises in a sport arena", "video_id": "video10027", "sen_id": 222100}, {"caption": "a woman in purple leggings is in a gym doing some kind of running aerobic exercises", "video_id": "video10027", "sen_id": 222101}, {"caption": "while in the thralls of training a practicing female athlete speedily tip-toes as she power-walks across the gym floor", "video_id": "video10027", "sen_id": 222102}, {"caption": "a wman in workout clothes doing a quick jog across a gym", "video_id": "video10027", "sen_id": 222103}, {"caption": "a woman is exersizing in a large gym by running", "video_id": "video10027", "sen_id": 222104}, {"caption": "a woman is power walking in slow motion in an indoor gym", "video_id": "video10027", "sen_id": 222105}, {"caption": "a woman in a gym is doing a fast walking technique to exercise", "video_id": "video10027", "sen_id": 222106}, {"caption": "a woman is speed walking across a gym while music plays", "video_id": "video10027", "sen_id": 222107}, {"caption": "a lady wearing exercise clothes and working out in a gym", "video_id": "video10027", "sen_id": 222108}, {"caption": "a fit young woman shows off her exercise moves in a gym", "video_id": "video10027", "sen_id": 222109}, {"caption": "sexy blonde showing her leg workout in the basketball court", "video_id": "video10027", "sen_id": 222110}, {"caption": "a woman power walking in an open gym space", "video_id": "video10027", "sen_id": 222111}, {"caption": "a blonde hair woman walking across the floor at a fast pace on the tips of her toes", "video_id": "video10027", "sen_id": 222112}, {"caption": "lady in a black shirt purple pants and pink sneakers running short steps in a gym", "video_id": "video10027", "sen_id": 222113}, {"caption": "blonde woman is doing some exercises in the gym", "video_id": "video10027", "sen_id": 222114}, {"caption": "a dancer steps and dances across a large gynasium basketball court floor", "video_id": "video10027", "sen_id": 222115}, {"caption": "a lady walks and exercising on the closed hall", "video_id": "video10027", "sen_id": 222116}, {"caption": "a young woman does a speed walking exercise in a large gymnasium", "video_id": "video10027", "sen_id": 222117}, {"caption": "a woman in a gymnasium jogs in slow motion", "video_id": "video10027", "sen_id": 222118}, {"caption": "a woman is running inside a gym", "video_id": "video10027", "sen_id": 222119}, {"caption": "a monster goes down into a toilet before a man uses the toilet", "video_id": "video10134", "sen_id": 222120}, {"caption": "a man in a suit looks at a suit that has a monstr in it", "video_id": "video10134", "sen_id": 222121}, {"caption": "an unsuspecting young man is about to sit on a toilet with an evil creature in it", "video_id": "video10134", "sen_id": 222122}, {"caption": "a creature called a ghoulie hides in a toilet waiting to attack a man using the bathroom", "video_id": "video10134", "sen_id": 222123}, {"caption": "a ghoul hides in a toilet waiting to attack unsuspecting humans", "video_id": "video10134", "sen_id": 222124}, {"caption": "a monster sinking back into a toilet bowl before a man sits on it", "video_id": "video10134", "sen_id": 222125}, {"caption": "a man in a suit enters a restroom stall where there is a goblin in the toilet", "video_id": "video10134", "sen_id": 222126}, {"caption": "a man in a suit sits on a toilet where there is an ghoulie waiting for him", "video_id": "video10134", "sen_id": 222127}, {"caption": "there is a monster in the toilet patiently waiting for a man to take off his pants and sit down", "video_id": "video10134", "sen_id": 222128}, {"caption": "a monster sinking back into a toilet bowl before a man sits on the toilet", "video_id": "video10134", "sen_id": 222129}, {"caption": "a little monster crouches inside of a toilet and a man in a suit nervously undoes his pants", "video_id": "video10134", "sen_id": 222130}, {"caption": "a man is talking about a horror movie where ghoulies are in the toilets", "video_id": "video10134", "sen_id": 222131}, {"caption": "a man in a grey suit is having stomach problems in a bathroom and a green goblin is in the toilet", "video_id": "video10134", "sen_id": 222132}, {"caption": "a man in a bathroom turns around and sees a creature in the toilet", "video_id": "video10134", "sen_id": 222133}, {"caption": "i man in a business suit is sitting down to poop and a monster is in the toilet", "video_id": "video10134", "sen_id": 222134}, {"caption": "a man about to sit on a toilet inhabited by a weird creature", "video_id": "video10134", "sen_id": 222135}, {"caption": "a man goes to toilet and the ghost in the bathroom", "video_id": "video10134", "sen_id": 222136}, {"caption": "a man in grey suit jacket is unaware of monster hiding in toilet in bathroom", "video_id": "video10134", "sen_id": 222137}, {"caption": "a man is shown urinating and alien are attacking while he is toilet", "video_id": "video10134", "sen_id": 222138}, {"caption": "a man in a gray suit is standing around", "video_id": "video10134", "sen_id": 222139}, {"caption": "an engine is moving around it's parts in a mechanical motion", "video_id": "video10901", "sen_id": 222140}, {"caption": "a machine with many gears and wheels works and is very noisy", "video_id": "video10901", "sen_id": 222141}, {"caption": "this is a video showing the inner workings on a piece of technology", "video_id": "video10901", "sen_id": 222142}, {"caption": "a big machine turned on and making noise", "video_id": "video10901", "sen_id": 222143}, {"caption": "the parts of a mysterious machine spin and rattle", "video_id": "video10901", "sen_id": 222144}, {"caption": "there's a shot of a car driving and then we see 2 shots the inside of an engine running some guages then a couple more shots of the engine running again", "video_id": "video10901", "sen_id": 222145}, {"caption": "a metal wheel spinning a small belt in between various size pipes", "video_id": "video10901", "sen_id": 222146}, {"caption": "a large engine runs in an attempt to warm up on a cold day", "video_id": "video10901", "sen_id": 222147}, {"caption": "a black car drives by then various shots of machine wheels and gears turning appear on screen", "video_id": "video10901", "sen_id": 222148}, {"caption": "a loud orange machine is on with all it's moving parts like the wheels", "video_id": "video10901", "sen_id": 222149}, {"caption": "an engine is running and the camera zooms in on the various gears belts and moving parts", "video_id": "video10901", "sen_id": 222150}, {"caption": "a machine running at a speed and the gauges are shown", "video_id": "video10901", "sen_id": 222151}, {"caption": "an engline with a long belt moving around large wheels", "video_id": "video10901", "sen_id": 222152}, {"caption": "overview of the machine which is controlled by human", "video_id": "video10901", "sen_id": 222153}, {"caption": "the inner-workings of a machine spin and churn", "video_id": "video10901", "sen_id": 222154}, {"caption": "a car motor is running faster", "video_id": "video10901", "sen_id": 222155}, {"caption": "a car moves across a railroad crossing on a gray winter day", "video_id": "video10901", "sen_id": 222156}, {"caption": "an up close view of a intricate machine that using belts is being shown", "video_id": "video10901", "sen_id": 222157}, {"caption": "the inner workings of various parts of machines", "video_id": "video10901", "sen_id": 222158}, {"caption": "some sort of device is being filmed on camera", "video_id": "video10901", "sen_id": 222159}, {"caption": "a heavily dramatized video showing ingredients like scallions brown onions and lime juice", "video_id": "video10060", "sen_id": 222160}, {"caption": "a funny chef talks about various ingredients he can use in recipes", "video_id": "video10060", "sen_id": 222161}, {"caption": "a bunch of scallions leads to a round vegetable sitting alone a hand being slapped in front of a refrigerator a cleaver slicing the vegetable a hand grabbing an onion and a reflection of a crying man wearing eyeglasses", "video_id": "video10060", "sen_id": 222162}, {"caption": "a chef shows the differences between onions and scallions", "video_id": "video10060", "sen_id": 222163}, {"caption": "a chef highlights the differences between onions and scallions", "video_id": "video10060", "sen_id": 222164}, {"caption": "image of scallions onions and a man screaming are shown while terror music is being played at the end the words lime juice are shown", "video_id": "video10060", "sen_id": 222165}, {"caption": "a man picking up a scallion and a brown onion", "video_id": "video10060", "sen_id": 222166}, {"caption": "an artsy sepia tinted production of a list of ingredients for a food dish", "video_id": "video10060", "sen_id": 222167}, {"caption": "vegetables being shown then cut and a man in a beard crying", "video_id": "video10060", "sen_id": 222168}, {"caption": "a montage about different kitchen ingredients plays in an american horror story style format", "video_id": "video10060", "sen_id": 222169}, {"caption": "someone is stopping another one from taking the ball like thing and the bearded guy with specs is crying", "video_id": "video10060", "sen_id": 222170}, {"caption": "various vegetables and fruit make a man very anxious", "video_id": "video10060", "sen_id": 222171}, {"caption": "a man chops an onion in half with a cleaver", "video_id": "video10060", "sen_id": 222172}, {"caption": " brown onions and lime juice in the style of american horror story opening credits", "video_id": "video10060", "sen_id": 222173}, {"caption": "a hand is picking up different objects in a kitchen", "video_id": "video10060", "sen_id": 222174}, {"caption": "a chef talksa bout the differences between scallions and brown onions", "video_id": "video10060", "sen_id": 222175}, {"caption": " and preparing ingredients to make a meal", "video_id": "video10060", "sen_id": 222176}, {"caption": "food items are being listed in between clips of a man making faces in black in white", "video_id": "video10060", "sen_id": 222177}, {"caption": "a hand try to touches something and another hand hits itthen a person with crying face", "video_id": "video10060", "sen_id": 222178}, {"caption": "bearded guy in glasses crying in front of the camera", "video_id": "video10060", "sen_id": 222179}, {"caption": "two males are playing a game of table tennis against each other on a red court", "video_id": "video11903", "sen_id": 222180}, {"caption": "two men are competing against each other in an intense ping pong game", "video_id": "video11903", "sen_id": 222181}, {"caption": "a couple of men playing competition table tennis", "video_id": "video11903", "sen_id": 222182}, {"caption": "a man in a bright red shirt plays pingpong on a neon blue table against another man", "video_id": "video11903", "sen_id": 222183}, {"caption": "a man in a red jersy playing table tennis against a man in a black shirt", "video_id": "video11903", "sen_id": 222184}, {"caption": "two men playing each other in ping pong", "video_id": "video11903", "sen_id": 222185}, {"caption": "two persons are playing table tennis game in a hall", "video_id": "video11903", "sen_id": 222186}, {"caption": "the table tennis peoples are playing in tennis court in very well with the help of music", "video_id": "video11903", "sen_id": 222187}, {"caption": "two men are playing table tennis game", "video_id": "video11903", "sen_id": 222188}, {"caption": "a back and forth between two men in a ping pong tournament", "video_id": "video11903", "sen_id": 222189}, {"caption": "table tennis players in red and black shirt playing against each other in a match", "video_id": "video11903", "sen_id": 222190}, {"caption": "two separate scenes show men involved in playing table tennis", "video_id": "video11903", "sen_id": 222191}, {"caption": "two table tennis players are putting their best efforts in the game trying to defeat each other", "video_id": "video11903", "sen_id": 222192}, {"caption": "two people are playing ping pong in a gym", "video_id": "video11903", "sen_id": 222193}, {"caption": "two people playing table tennis on blue tennis court with red carpet on the ground", "video_id": "video11903", "sen_id": 222194}, {"caption": "two people on a court are playing ping pong", "video_id": "video11903", "sen_id": 222195}, {"caption": "two player are playing table tennis in indoor stadium", "video_id": "video11903", "sen_id": 222196}, {"caption": "playing table tennis its on website ittf", "video_id": "video11903", "sen_id": 222197}, {"caption": "sport highlights show two men playing a high level table tennis match", "video_id": "video11903", "sen_id": 222198}, {"caption": "two ping pong players go at it in a match", "video_id": "video11903", "sen_id": 222199}, {"caption": "a chef wearing eyeglasses brings her plastic-gloved hands together in thanks during an interview on a morning talk show showcasing her salad", "video_id": "video10639", "sen_id": 222200}, {"caption": "a woman talks to a reporter about a restaurant she is opening", "video_id": "video10639", "sen_id": 222201}, {"caption": "a woman on the news talking about her restaurant opening", "video_id": "video10639", "sen_id": 222202}, {"caption": "a man and woman discuss a newly opening business on a segment of a news show", "video_id": "video10639", "sen_id": 222203}, {"caption": "woman in white chef's outfit talking to a newscaster about her restaurant", "video_id": "video10639", "sen_id": 222204}, {"caption": "a chef is talking about opening her first cafe", "video_id": "video10639", "sen_id": 222205}, {"caption": "an individual in a chef outfit is discussing the opening of her restaurant on a tv show", "video_id": "video10639", "sen_id": 222206}, {"caption": "a woman in a white coat is talking about opening her new business", "video_id": "video10639", "sen_id": 222207}, {"caption": "a women in white dressing talking to co-workers", "video_id": "video10639", "sen_id": 222208}, {"caption": "a lady in white dress and wearing glasses talking to a man standing beside", "video_id": "video10639", "sen_id": 222209}, {"caption": "a woman in brown hair and dark in color is talking something to another person", "video_id": "video10639", "sen_id": 222210}, {"caption": "a men and women is talking with eache other", "video_id": "video10639", "sen_id": 222211}, {"caption": "a woman with brown hair and brown skin talks about her future cafe opening", "video_id": "video10639", "sen_id": 222212}, {"caption": "a woman tells a reporter about her excitement about opening a cafe", "video_id": "video10639", "sen_id": 222213}, {"caption": "the salad lady speaking with a reporter", "video_id": "video10639", "sen_id": 222214}, {"caption": "a lady chef is talking to show anchor and telling him about her dishes", "video_id": "video10639", "sen_id": 222215}, {"caption": "chef is ready to train people all steel cupboards", "video_id": "video10639", "sen_id": 222216}, {"caption": "men in white coat explaining something about to other men in the room", "video_id": "video10639", "sen_id": 222217}, {"caption": "a lady speaking in the news channel that she was excited", "video_id": "video10639", "sen_id": 222218}, {"caption": "some dishes are displayed in a kitchen show", "video_id": "video10639", "sen_id": 222219}, {"caption": "pieces of a globe come together in an introduction to bbc world news", "video_id": "video10741", "sen_id": 222220}, {"caption": "a planet introduction for the bbc world news", "video_id": "video10741", "sen_id": 222221}, {"caption": "swirling orange globes with continents on them moving across the screen", "video_id": "video10741", "sen_id": 222222}, {"caption": "a graphic of the world spinning is being shown while dramatic music is being played", "video_id": "video10741", "sen_id": 222223}, {"caption": "red rings place names an airplane and continents move through white space to unite into our planet", "video_id": "video10741", "sen_id": 222224}, {"caption": "we see a red globe form in the logo for a news station", "video_id": "video10741", "sen_id": 222225}, {"caption": "the introduction to a news show and it's contents", "video_id": "video10741", "sen_id": 222226}, {"caption": "the opening of a bbc news show shows a spinning globe", "video_id": "video10741", "sen_id": 222227}, {"caption": "a three dimensional red holographic globe forms in front of a white void", "video_id": "video10741", "sen_id": 222228}, {"caption": "the bbc world news intro graphics are shown", "video_id": "video10741", "sen_id": 222229}, {"caption": "an animated graphic made out of different circles coming together to shape a globe", "video_id": "video10741", "sen_id": 222230}, {"caption": "a young boy stands in a room while looking down", "video_id": "video10741", "sen_id": 222231}, {"caption": "an introduction to a news shows with a stylized computerized red globe", "video_id": "video10741", "sen_id": 222232}, {"caption": "an artistic view of ribbon cutting of the earth being panned out of the screen", "video_id": "video10741", "sen_id": 222233}, {"caption": "a globe colored red and white is constructed before giving way to the bbc world news logo", "video_id": "video10741", "sen_id": 222234}, {"caption": "a men is wearing a suit and telling a sports news on bbc news", "video_id": "video10741", "sen_id": 222235}, {"caption": "bbc asia bbc world service news logo comes till end", "video_id": "video10741", "sen_id": 222236}, {"caption": "a news is going to play in the bbc world channel", "video_id": "video10741", "sen_id": 222237}, {"caption": "this is a renowned theme song of international news channel", "video_id": "video10741", "sen_id": 222238}, {"caption": "the logo of the bbc is playing on a screen", "video_id": "video10741", "sen_id": 222239}, {"caption": "a clip of hillary clinton on kelly live", "video_id": "video11567", "sen_id": 222240}, {"caption": "a man and woman are talking about politics on a television show", "video_id": "video11567", "sen_id": 222241}, {"caption": "bernie sanders and hillary clinton are participating in a political debate", "video_id": "video11567", "sen_id": 222242}, {"caption": "two people debate on political issues while a focus group listens in and responds", "video_id": "video11567", "sen_id": 222243}, {"caption": "two people having a debate about something whiles others watch", "video_id": "video11567", "sen_id": 222244}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video11567", "sen_id": 222245}, {"caption": "a male and female candidate stand at podiums in front of a blue screen with slanted lines while a popularity graph is superimposed on them with red and green lines over a white grid", "video_id": "video11567", "sen_id": 222246}, {"caption": "a man shows the chart of the some rating on the board", "video_id": "video11567", "sen_id": 222247}, {"caption": "a man in black coat is explaining something", "video_id": "video11567", "sen_id": 222248}, {"caption": "a man and a woman are standing at two different podiums", "video_id": "video11567", "sen_id": 222249}, {"caption": "a blue dress wearing coat standing and other in black dress speaking still picture displaying on screen", "video_id": "video11567", "sen_id": 222250}, {"caption": "two persons are explaining about the graphs in a news channel", "video_id": "video11567", "sen_id": 222251}, {"caption": "a graph is floating in front of two possible presidential candidates", "video_id": "video11567", "sen_id": 222252}, {"caption": "a political pollster uses a monitor system to rate the events of a political debate", "video_id": "video11567", "sen_id": 222253}, {"caption": "old guy in suit talking to the audience in tv show", "video_id": "video11567", "sen_id": 222254}, {"caption": "a black suit man talking behind a graph", "video_id": "video11567", "sen_id": 222255}, {"caption": "there is a statistical graph on the screen showing the status of the on going polls two persons are seen discussion about it", "video_id": "video11567", "sen_id": 222256}, {"caption": "a man watching a news program on television", "video_id": "video11567", "sen_id": 222257}, {"caption": "two people stand and talk to each other while a graph is covering their face and body", "video_id": "video11567", "sen_id": 222258}, {"caption": "a graph is showing some different types of info", "video_id": "video11567", "sen_id": 222259}, {"caption": "a woman is discussing the boy band one direction", "video_id": "video12782", "sen_id": 222260}, {"caption": "a girl in striped tshirt and glasses talking about one direction team for holly wire", "video_id": "video12782", "sen_id": 222261}, {"caption": "a blond woman in glasses named chelsea brigs talks about things", "video_id": "video12782", "sen_id": 222262}, {"caption": "a young lady is doing a presentation", "video_id": "video12782", "sen_id": 222263}, {"caption": "a woman giving a news report about popular boy band", "video_id": "video12782", "sen_id": 222264}, {"caption": "host of hollywire program named chelsea briggs says about beverages used in movies", "video_id": "video12782", "sen_id": 222265}, {"caption": "hw chelsea briggs host hollywire one girl talks", "video_id": "video12782", "sen_id": 222266}, {"caption": "a girl in zebra dress was named as chelsa briggs telling about the hollywood", "video_id": "video12782", "sen_id": 222267}, {"caption": "there is a women in white with black strips top talking and smiling", "video_id": "video12782", "sen_id": 222268}, {"caption": "holly wood chelsea briggs is showing a pepsi add on which soda is the best", "video_id": "video12782", "sen_id": 222269}, {"caption": "a blonde woman is talking about some thing", "video_id": "video12782", "sen_id": 222270}, {"caption": "there is a woman with specs talking in front of a sign", "video_id": "video12782", "sen_id": 222271}, {"caption": "a woman showing a bevaredge of pepsi drink commercial", "video_id": "video12782", "sen_id": 222272}, {"caption": "a cute girl is talking in the television", "video_id": "video12782", "sen_id": 222273}, {"caption": "a drink in man and a girl in strip white and black dress speaking displaying on screen", "video_id": "video12782", "sen_id": 222274}, {"caption": "a blonde woman with glasses is talking", "video_id": "video12782", "sen_id": 222275}, {"caption": "there is a women talking from the studio", "video_id": "video12782", "sen_id": 222276}, {"caption": "this add comment is very nice the girl is cute", "video_id": "video12782", "sen_id": 222277}, {"caption": "girl in glasses and tshirt hosting hollywood show", "video_id": "video12782", "sen_id": 222278}, {"caption": "a girl is describing about the object", "video_id": "video12782", "sen_id": 222279}, {"caption": "a man is talking rome and the roman senate", "video_id": "video11421", "sen_id": 222280}, {"caption": "a man named pompey is shown animated among others while a man in a chair discusses roman history", "video_id": "video11421", "sen_id": 222281}, {"caption": "the video had a lot of cartoons dressed like roman people", "video_id": "video11421", "sen_id": 222282}, {"caption": "a man teaching about the old rome days and how people were", "video_id": "video11421", "sen_id": 222283}, {"caption": "a man talks about the history of caesar through cartoon people", "video_id": "video11421", "sen_id": 222284}, {"caption": "a man with dark hair and glasses is talking about a man named pompey and an alliance with ceasar while animation of this plays", "video_id": "video11421", "sen_id": 222285}, {"caption": "a man is explaining the triumphant of pompey the great crassus and ceasar", "video_id": "video11421", "sen_id": 222286}, {"caption": "a man sitting in a chair talking and cartoons of ceasar", "video_id": "video11421", "sen_id": 222287}, {"caption": "a guy wearing a polo shirt and glasses talks about history", "video_id": "video11421", "sen_id": 222288}, {"caption": "a cartoon about julius caesar and rome showing the roman senate", "video_id": "video11421", "sen_id": 222289}, {"caption": "a man explains the history of the roman senate", "video_id": "video11421", "sen_id": 222290}, {"caption": "a man is sitting and speaking and animation film is playing", "video_id": "video11421", "sen_id": 222291}, {"caption": "a man in polo shirt discusses alexander the great including his alliances and laws", "video_id": "video11421", "sen_id": 222292}, {"caption": "man with yellow face is having fun with other people", "video_id": "video11421", "sen_id": 222293}, {"caption": "a white male is narrating a history lesson about pompey", "video_id": "video11421", "sen_id": 222294}, {"caption": "a man describes a certain historical figure from roman history", "video_id": "video11421", "sen_id": 222295}, {"caption": "a man talking about romes history while a cartoon plays it out", "video_id": "video11421", "sen_id": 222296}, {"caption": "a man in room with globe discusses caesar s alliances and senate", "video_id": "video11421", "sen_id": 222297}, {"caption": "a man wearing spects is talking about the pompey cartoon", "video_id": "video11421", "sen_id": 222298}, {"caption": "a person speaking and showing a cartoon presentation about one of the roman king and rules", "video_id": "video11421", "sen_id": 222299}, {"caption": "two men in a dorm room and cafeteria describing the sale of drugs", "video_id": "video11976", "sen_id": 222300}, {"caption": "a guy talking and playing video games", "video_id": "video11976", "sen_id": 222301}, {"caption": "two men set in a small restaurant and discuss drug usage", "video_id": "video11976", "sen_id": 222302}, {"caption": "a young man in a gray shirt sits and talks to a kid in a gray jacket", "video_id": "video11976", "sen_id": 222303}, {"caption": "a young man discusses his use and abuse of the perscription drug aderol", "video_id": "video11976", "sen_id": 222304}, {"caption": "man is shown playing a video game and then selling and speaking about drugs", "video_id": "video11976", "sen_id": 222305}, {"caption": "a man in a black shirt talks to himself while playing video games", "video_id": "video11976", "sen_id": 222306}, {"caption": "a man in black t-shirt explaining some topic with his friend", "video_id": "video11976", "sen_id": 222307}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video11976", "sen_id": 222308}, {"caption": "one boy playing video game very interestingly", "video_id": "video11976", "sen_id": 222309}, {"caption": "guy in grey tshirt talking and playing in front of camera", "video_id": "video11976", "sen_id": 222310}, {"caption": "a young man is trying to sell his medication to his friend", "video_id": "video11976", "sen_id": 222311}, {"caption": "one man playing video game and then two men talk in a restaurant", "video_id": "video11976", "sen_id": 222312}, {"caption": "a person with black t shirt speaking with someone", "video_id": "video11976", "sen_id": 222313}, {"caption": "a guy sitting in his room is playing with remote of video game", "video_id": "video11976", "sen_id": 222314}, {"caption": "a black tshirt man talking in a room", "video_id": "video11976", "sen_id": 222315}, {"caption": "a young boy discusses his add and taking the prescription drug adderall", "video_id": "video11976", "sen_id": 222316}, {"caption": "a ma is sitting and talking while playing a video game", "video_id": "video11976", "sen_id": 222317}, {"caption": "room mates are having their discussions", "video_id": "video11976", "sen_id": 222318}, {"caption": "a guy in a black shirt is talking to a friend", "video_id": "video11976", "sen_id": 222319}, {"caption": "a woman is encouraging people to keep practicing a particular dance", "video_id": "video11725", "sen_id": 222320}, {"caption": "a woman in yellow shirt is talking about practicing a lot", "video_id": "video11725", "sen_id": 222321}, {"caption": "a young indian woman discusses a training program designed to help a person learn to dance", "video_id": "video11725", "sen_id": 222322}, {"caption": "a woman in an orange t-shirt showing a clip of herself dancing", "video_id": "video11725", "sen_id": 222323}, {"caption": "a lady is giving words of encouragement on how to dance properly", "video_id": "video11725", "sen_id": 222324}, {"caption": "a woman with long dark hair wearing a bright yellow top shows a separate inset of herself dancing in an orange top in front of a paneled white wall", "video_id": "video11725", "sen_id": 222325}, {"caption": "a girl urges the viewers to keep practicing to master the dancing", "video_id": "video11725", "sen_id": 222326}, {"caption": "a girl in yellow showing various dance steps", "video_id": "video11725", "sen_id": 222327}, {"caption": "a woman with black hair wearing a orange shirt is speaking", "video_id": "video11725", "sen_id": 222328}, {"caption": "a woman discusses practicing a dance routine displayed on an inlet", "video_id": "video11725", "sen_id": 222329}, {"caption": "a tv personality is talking about the dance show which was telecast", "video_id": "video11725", "sen_id": 222330}, {"caption": "there is a yellow women talking in the room", "video_id": "video11725", "sen_id": 222331}, {"caption": "one girl talks about dance movement in a simple", "video_id": "video11725", "sen_id": 222332}, {"caption": "a yellow colour dress girl speaking and other girl still dancing in red colour dress displaying", "video_id": "video11725", "sen_id": 222333}, {"caption": "a woman in a yellow shirt is talking", "video_id": "video11725", "sen_id": 222334}, {"caption": "a woman with long dark hair and a yellow shirt is talking about a dance video", "video_id": "video11725", "sen_id": 222335}, {"caption": "a lady in blue dress and disheveled hair is giving classes on body movements with video support", "video_id": "video11725", "sen_id": 222336}, {"caption": "a lovely indian dancer talks about the need to practice a lot", "video_id": "video11725", "sen_id": 222337}, {"caption": "a yellow tshirt wearing girl dress speaking something display on screen", "video_id": "video11725", "sen_id": 222338}, {"caption": "a woman with black hair is talking about something", "video_id": "video11725", "sen_id": 222339}, {"caption": "woman in a blue dress speaking in front of a large crowd", "video_id": "video10721", "sen_id": 222340}, {"caption": "a woman finishing up a seminar on a healthy body", "video_id": "video10721", "sen_id": 222341}, {"caption": "a presentation for a hospital is happening in the room", "video_id": "video10721", "sen_id": 222342}, {"caption": "a woman giving a seminar on innovations for mount sinai", "video_id": "video10721", "sen_id": 222343}, {"caption": "a speaker concludes a powerpoint guided medical talk in the style of a ted forum", "video_id": "video10721", "sen_id": 222344}, {"caption": "a woman is ending a presentation by saying thanks very much for having me", "video_id": "video10721", "sen_id": 222345}, {"caption": "a woman on stage in front of an audience giving a presentation", "video_id": "video10721", "sen_id": 222346}, {"caption": "a women in black dress is explaining about human antomy", "video_id": "video10721", "sen_id": 222347}, {"caption": "a lady with black color dressed explaining clapping sound are there", "video_id": "video10721", "sen_id": 222348}, {"caption": "a lady telling about the project on the screen", "video_id": "video10721", "sen_id": 222349}, {"caption": "a women is finish up a lecture and audience is applauding", "video_id": "video10721", "sen_id": 222350}, {"caption": "a women in black dress is explaining about something", "video_id": "video10721", "sen_id": 222351}, {"caption": "a woman talks about the body while standing on a red carpet", "video_id": "video10721", "sen_id": 222352}, {"caption": "a presentation of biological replacements of damages tissue organs and kidney liver and other organs", "video_id": "video10721", "sen_id": 222353}, {"caption": "a on confernce about showing feature of anatomy discussion of grow biological replacement of damaged tissuesliver & heart etc", "video_id": "video10721", "sen_id": 222354}, {"caption": "a women is showing biological structure of human being", "video_id": "video10721", "sen_id": 222355}, {"caption": "people gathered in auditorium to watch some show", "video_id": "video10721", "sen_id": 222356}, {"caption": "a woman is standing behind a podium giving a speech using a screen for demonstrations", "video_id": "video10721", "sen_id": 222357}, {"caption": "a lady with bobbed hair and black dress is explaining that is in the slide", "video_id": "video10721", "sen_id": 222358}, {"caption": "a woman is talking about some medical issues", "video_id": "video10721", "sen_id": 222359}, {"caption": "a man and a boy are interacting with each other while sitting on a sofa", "video_id": "video11516", "sen_id": 222360}, {"caption": "a man is having an interview while playing with his son", "video_id": "video11516", "sen_id": 222361}, {"caption": "a man and his son are playing on a sofa while being asked questions by another man", "video_id": "video11516", "sen_id": 222362}, {"caption": "an adult and child are playing around with each other while talking to another man", "video_id": "video11516", "sen_id": 222363}, {"caption": "a man in checks shirt is saying soemthing while other two guys are in playfull mood", "video_id": "video11516", "sen_id": 222364}, {"caption": "a man is hugging a boy who is pushing him away while both are seated on a white sofa in front of a wall with printing", "video_id": "video11516", "sen_id": 222365}, {"caption": "will smith and his son is giving a interview about the movie after death", "video_id": "video11516", "sen_id": 222366}, {"caption": "will smith doing a talk show with his son", "video_id": "video11516", "sen_id": 222367}, {"caption": "men are joking with each other and discussing few events", "video_id": "video11516", "sen_id": 222368}, {"caption": "group of men s enjoying in room and men in blue shirt gave a kiss to other men", "video_id": "video11516", "sen_id": 222369}, {"caption": "a father and son cavort while they are being interviewed by a third person", "video_id": "video11516", "sen_id": 222370}, {"caption": "will smith and his son play around on a white couch", "video_id": "video11516", "sen_id": 222371}, {"caption": "some kids and adults are messing around with each other", "video_id": "video11516", "sen_id": 222372}, {"caption": "there is a blue shirt man talking to a boy", "video_id": "video11516", "sen_id": 222373}, {"caption": "an african man and his son rough house while they are interviewed for a movie they starred in", "video_id": "video11516", "sen_id": 222374}, {"caption": "two people are sitting down looking at each other", "video_id": "video11516", "sen_id": 222375}, {"caption": "a man is narrating about humiliation while different clips of will smith and his son are shown", "video_id": "video11516", "sen_id": 222376}, {"caption": "will and jaden smith on a couch across from an asian man", "video_id": "video11516", "sen_id": 222377}, {"caption": "a man and his son are interviewed on tv", "video_id": "video11516", "sen_id": 222378}, {"caption": "scene from tv show where will smith gets interviewed", "video_id": "video11516", "sen_id": 222379}, {"caption": "a news reports is giving a report about a new trump tower", "video_id": "video12519", "sen_id": 222380}, {"caption": "a reporter in suit is talking about a new $150m trump tower", "video_id": "video12519", "sen_id": 222381}, {"caption": "a man is talking on a news cast about the trump tower and other investments", "video_id": "video12519", "sen_id": 222382}, {"caption": "a middle aged man sitting and dressed in a buisness suit", "video_id": "video12519", "sen_id": 222383}, {"caption": "a newscaster discusses a new trump tower while stock quotes stream across the screen", "video_id": "video12519", "sen_id": 222384}, {"caption": "a male news reporter is giving a report about the trump tower", "video_id": "video12519", "sen_id": 222385}, {"caption": "this is a news anchor talking about different costs", "video_id": "video12519", "sen_id": 222386}, {"caption": "a tv host asks questions of his interviewee on a news program", "video_id": "video12519", "sen_id": 222387}, {"caption": "a reporter making his report on trump tower in manila", "video_id": "video12519", "sen_id": 222388}, {"caption": "a newscaster is discussing the new trump tower in the philippines", "video_id": "video12519", "sen_id": 222389}, {"caption": "a news announcer talks about investing in real estate", "video_id": "video12519", "sen_id": 222390}, {"caption": "a man is reading a news in the television", "video_id": "video12519", "sen_id": 222391}, {"caption": "its news channel person in coat and tie talks in television in front of camera", "video_id": "video12519", "sen_id": 222392}, {"caption": "a newsman reporting on resent political issues", "video_id": "video12519", "sen_id": 222393}, {"caption": "a news reporter on cnbc is talking about a new trump tower", "video_id": "video12519", "sen_id": 222394}, {"caption": "a man on cnbc speaks about a licensing deal for a trump tower in manila", "video_id": "video12519", "sen_id": 222395}, {"caption": "a man is reading a news in the television channel", "video_id": "video12519", "sen_id": 222396}, {"caption": "its news channel where the person in brown coat and blue inner dress talks", "video_id": "video12519", "sen_id": 222397}, {"caption": "a news report about the potential for a new trump tower", "video_id": "video12519", "sen_id": 222398}, {"caption": "a old man in blue color dress speaking sitting beside peoples around on chair on topic discusing television screen displaying on screen", "video_id": "video12519", "sen_id": 222399}, {"caption": "morgan freeman is giving an interview in front of a backdrop of space clouds", "video_id": "video11724", "sen_id": 222400}, {"caption": "an older man with gray hair and beard sits in a gray suit in front of a screen showing the blending colors of outer space a black screen showing a large number with zeroes and a desk with objects below framed artwork", "video_id": "video11724", "sen_id": 222401}, {"caption": "morgan freeman is being interviewed in front of a background with a nebula", "video_id": "video11724", "sen_id": 222402}, {"caption": "an african actor with white hair discusses on of his roles", "video_id": "video11724", "sen_id": 222403}, {"caption": "an older man is sitting down talking to the camera", "video_id": "video11724", "sen_id": 222404}, {"caption": "morgan freeman speaks on the movie 'lucy' and its general precis", "video_id": "video11724", "sen_id": 222405}, {"caption": "an old man with white hair and black suit is been interviewed", "video_id": "video11724", "sen_id": 222406}, {"caption": "actor denzil washinston about the hypo sis of the movie luci", "video_id": "video11724", "sen_id": 222407}, {"caption": "morgan freeman giving an interview about his experiances", "video_id": "video11724", "sen_id": 222408}, {"caption": "morgan freeman is being interviewed while sitting in front of a space looking background", "video_id": "video11724", "sen_id": 222409}, {"caption": "morgan freeman gives an interview about his latest film", "video_id": "video11724", "sen_id": 222410}, {"caption": "morgan freeman is responding to an interview question", "video_id": "video11724", "sen_id": 222411}, {"caption": "an interview with morgan freeman", "video_id": "video11724", "sen_id": 222412}, {"caption": "a old man in black coat color dress wearing cloth sitting with other man beside speaking displaying on screen", "video_id": "video11724", "sen_id": 222413}, {"caption": "morgan freeman is being interviewed about a movie", "video_id": "video11724", "sen_id": 222414}, {"caption": "there is a old man with black tie talking in a interview", "video_id": "video11724", "sen_id": 222415}, {"caption": "an success and failures explained by morgan freeman an hollywood know actor and supporting actor", "video_id": "video11724", "sen_id": 222416}, {"caption": "an interview with morgan freeman regarding one of his movies", "video_id": "video11724", "sen_id": 222417}, {"caption": "a old man in ash color dress sitting speaking beside other man topic on discusing displaying on screen", "video_id": "video11724", "sen_id": 222418}, {"caption": "morgan freeman talks about scientific discoveries in front of a space background", "video_id": "video11724", "sen_id": 222419}, {"caption": "a baby smiles and hugs a striped gray cat by the neck and rubs his head on the cat's fur in the living room", "video_id": "video11083", "sen_id": 222420}, {"caption": "baby is singing to and snuggling with a cat", "video_id": "video11083", "sen_id": 222421}, {"caption": "a toddler snuggles next to a soft grey cat", "video_id": "video11083", "sen_id": 222422}, {"caption": "a toddler giving a grey kitty some loving in a cat bed", "video_id": "video11083", "sen_id": 222423}, {"caption": "a toddler is hugging a gray cat in a living room", "video_id": "video11083", "sen_id": 222424}, {"caption": "a kid is hugging and kissing the kitten which is sitting in his lap", "video_id": "video11083", "sen_id": 222425}, {"caption": "there is a cat sitting on the sofa one in the basket", "video_id": "video11083", "sen_id": 222426}, {"caption": "the kid playing and enjoying with the pussy cat", "video_id": "video11083", "sen_id": 222427}, {"caption": "a young boy hugs the family s pet cat and makes happy noises while doing it", "video_id": "video11083", "sen_id": 222428}, {"caption": "a cat and a little boy holding a cat in hand sitting on sofa displaying on screen", "video_id": "video11083", "sen_id": 222429}, {"caption": "there is a cat with a boy sitting in a chair", "video_id": "video11083", "sen_id": 222430}, {"caption": "the small boy is playing with a cat on a sofa", "video_id": "video11083", "sen_id": 222431}, {"caption": "fnc one boy playing with the nice cat", "video_id": "video11083", "sen_id": 222432}, {"caption": "a baby cuddles a cat in his blanket while a piano plays", "video_id": "video11083", "sen_id": 222433}, {"caption": "an adorable baby nuzzles a little gray cat", "video_id": "video11083", "sen_id": 222434}, {"caption": "a baby boy playing with a cat on the sofa", "video_id": "video11083", "sen_id": 222435}, {"caption": "on a sofa a young child leans his face against the top of a gray cat lifts his head up", "video_id": "video11083", "sen_id": 222436}, {"caption": "a small child is cuddling with a cat as the mother records", "video_id": "video11083", "sen_id": 222437}, {"caption": "small kid is having great time with the gray cat", "video_id": "video11083", "sen_id": 222438}, {"caption": "a baby cuddles with a cat as music plays and the mom adores", "video_id": "video11083", "sen_id": 222439}, {"caption": "a surfer is going down the barrel of a very large wave as it breaks", "video_id": "video11262", "sen_id": 222440}, {"caption": "a surfer rides an incredibly long wave on a sunny day", "video_id": "video11262", "sen_id": 222441}, {"caption": "some guys surfing out on the ocean and wiping out", "video_id": "video11262", "sen_id": 222442}, {"caption": "surfers on white and red boards glide across a jade-green wave in a steel-blue sea until the wave outlasts them", "video_id": "video11262", "sen_id": 222443}, {"caption": "surfers surf on a large wave at the beach", "video_id": "video11262", "sen_id": 222444}, {"caption": "fast music is playing while people surf on ocean waves and then it focuses more on one person surfing the wave", "video_id": "video11262", "sen_id": 222445}, {"caption": "several male swimmers ride their surfboards on a large rolling water wave in a ocean", "video_id": "video11262", "sen_id": 222446}, {"caption": "a man on a red surfboard is riding a large wave before disappearing in the wave then reappearing still on his board", "video_id": "video11262", "sen_id": 222447}, {"caption": "a man coming faster on the water", "video_id": "video11262", "sen_id": 222448}, {"caption": "people surfing some waves on surfboards", "video_id": "video11262", "sen_id": 222449}, {"caption": "a man on a red surfboard is surfing along a huge wave", "video_id": "video11262", "sen_id": 222450}, {"caption": "a number of boys skating inside water fast moving ups and down waves in river displaying on screen", "video_id": "video11262", "sen_id": 222451}, {"caption": "there are many people enjoy surfing in the water", "video_id": "video11262", "sen_id": 222452}, {"caption": "people are surfing in the ocean", "video_id": "video11262", "sen_id": 222453}, {"caption": "several surfers weaving in and out of a large wave", "video_id": "video11262", "sen_id": 222454}, {"caption": "someone is surfing a big wave and other surfers can also be seen", "video_id": "video11262", "sen_id": 222455}, {"caption": "at the sea the paraglide riders ride in very well", "video_id": "video11262", "sen_id": 222456}, {"caption": "a group of surfers ride through some large waves", "video_id": "video11262", "sen_id": 222457}, {"caption": "several men a on surf boards and are surfing the wave", "video_id": "video11262", "sen_id": 222458}, {"caption": "this is a video of a man riding a long wave on a red surfboard", "video_id": "video11262", "sen_id": 222459}, {"caption": "a man in a black shirt showing how to prepare a dish", "video_id": "video11095", "sen_id": 222460}, {"caption": "an in home chef prepares very small sushi rolls", "video_id": "video11095", "sen_id": 222461}, {"caption": "a man in a black shirt shows how to make sushi", "video_id": "video11095", "sen_id": 222462}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11095", "sen_id": 222463}, {"caption": "a guy talks about how to make some various sushi options at home", "video_id": "video11095", "sen_id": 222464}, {"caption": "a man is standing in the kitchen with a chopping board describing a recipe made with rice meats and carrots", "video_id": "video11095", "sen_id": 222465}, {"caption": "a person preparing a food item cutting on a table", "video_id": "video11095", "sen_id": 222466}, {"caption": "a man is demonstating how to make sushi petals", "video_id": "video11095", "sen_id": 222467}, {"caption": "a man demonstrates how to make intricately shaped sushi in a kitchen", "video_id": "video11095", "sen_id": 222468}, {"caption": "a man is demonstrating how to roll petals for sushi", "video_id": "video11095", "sen_id": 222469}, {"caption": "in the kitchen a black tshirt man making a dish", "video_id": "video11095", "sen_id": 222470}, {"caption": "a person is making cake and showing some skills", "video_id": "video11095", "sen_id": 222471}, {"caption": "a chef works with various forms of sushi and rice rolled in seaweed", "video_id": "video11095", "sen_id": 222472}, {"caption": "a man in a black shirt is using seaweed to cook in his kitchen", "video_id": "video11095", "sen_id": 222473}, {"caption": "a man in a black t shirt is giving instructions on rolling sushi", "video_id": "video11095", "sen_id": 222474}, {"caption": "here the guy is preparing a dish which looks like a roll", "video_id": "video11095", "sen_id": 222475}, {"caption": "a man is preparing food in seaweed on a wooden block", "video_id": "video11095", "sen_id": 222476}, {"caption": "person in black shirt makes pink stuff in the black cover then he takes red thing in hand", "video_id": "video11095", "sen_id": 222477}, {"caption": "a guy making traditional japanese sushi", "video_id": "video11095", "sen_id": 222478}, {"caption": "a person is making sushi on a table", "video_id": "video11095", "sen_id": 222479}, {"caption": "a barbie doll is wearing a pink outfit that has a mermaid tail", "video_id": "video10524", "sen_id": 222480}, {"caption": "a female looks over a pink glittery mermaid-themed barbie turning it around in her hands to display the doll's back and length", "video_id": "video10524", "sen_id": 222481}, {"caption": "a woman is describing a barbie doll the barbie is dressed in all pink with a mermaid tail", "video_id": "video10524", "sen_id": 222482}, {"caption": "a woman describes a barbie doll the barbie is dressed as a mermaid", "video_id": "video10524", "sen_id": 222483}, {"caption": "a person is holding a pink barbie mermaid doll", "video_id": "video10524", "sen_id": 222484}, {"caption": "a woman with bright yellow nail polish with glitter is modeling a barbie doll wearing a mermaid outfit and remarking about the glitter on it and how perfectly it fits", "video_id": "video10524", "sen_id": 222485}, {"caption": "a man feels a small toy of acute girl wearing pink dress", "video_id": "video10524", "sen_id": 222486}, {"caption": "there is a small girl playing with barbie dolls", "video_id": "video10524", "sen_id": 222487}, {"caption": "a colour doll in hands moving up and down displaying on screen", "video_id": "video10524", "sen_id": 222488}, {"caption": "a person is holding a doll with a pink dress", "video_id": "video10524", "sen_id": 222489}, {"caption": "there is a barbie dill with magenta color", "video_id": "video10524", "sen_id": 222490}, {"caption": "a pink color doll are dressed stylish", "video_id": "video10524", "sen_id": 222491}, {"caption": "a barbie doll dressed like a mermaid is described by the woman who owns it", "video_id": "video10524", "sen_id": 222492}, {"caption": "a red colour doll shaking hands rotating displaying on the screen", "video_id": "video10524", "sen_id": 222493}, {"caption": "some one is holding a pink doll", "video_id": "video10524", "sen_id": 222494}, {"caption": "there is a cute toy with nice dress", "video_id": "video10524", "sen_id": 222495}, {"caption": "this time barbie has come out in a new avatar with a neatly-tied braid and a backless pink outfit", "video_id": "video10524", "sen_id": 222496}, {"caption": "a woman describes a barbie doll that she has put into a mermaid costume", "video_id": "video10524", "sen_id": 222497}, {"caption": "a mermaid like barbie doll with pink dress and hair plaited side ways", "video_id": "video10524", "sen_id": 222498}, {"caption": "someone is holding a barbie doll with blonde hair", "video_id": "video10524", "sen_id": 222499}, {"caption": "three people cooking on the ellen show and laughing about it", "video_id": "video10261", "sen_id": 222500}, {"caption": "three people enjoying making a meal on the ellen show", "video_id": "video10261", "sen_id": 222501}, {"caption": "three people are cooking and joking with each other in front of an audience", "video_id": "video10261", "sen_id": 222502}, {"caption": "a woman is showing cohosts how to cook a meal and they are tasting it", "video_id": "video10261", "sen_id": 222503}, {"caption": "a tv chef jokes around with her assistants while preparing a recipe", "video_id": "video10261", "sen_id": 222504}, {"caption": "a tv chef jokes around while filming a segment for a tv show", "video_id": "video10261", "sen_id": 222505}, {"caption": "how to prepare food menu by tyra banks on the ellen show", "video_id": "video10261", "sen_id": 222506}, {"caption": "ellen has two guests on her show cooking some food while she jokes around", "video_id": "video10261", "sen_id": 222507}, {"caption": "3 people cooking on a talk show smelling a vegetable", "video_id": "video10261", "sen_id": 222508}, {"caption": "talk show host ellen doing a cooking segment with guests on her show", "video_id": "video10261", "sen_id": 222509}, {"caption": "in a day time show ellen (tv host) has her guests cook", "video_id": "video10261", "sen_id": 222510}, {"caption": "there is a woman with black dressing talking with friends", "video_id": "video10261", "sen_id": 222511}, {"caption": "one girl and one man in funny while make recipe", "video_id": "video10261", "sen_id": 222512}, {"caption": "david spade is on ellen degeneres show during a cooking demonstration", "video_id": "video10261", "sen_id": 222513}, {"caption": "a person is tasting food in a cooking show", "video_id": "video10261", "sen_id": 222514}, {"caption": "some kithcen show is conducted by three of the peoples", "video_id": "video10261", "sen_id": 222515}, {"caption": "women cooking and feeding two mens in her hands", "video_id": "video10261", "sen_id": 222516}, {"caption": "a celebrity chef cooks on a daytime talk show", "video_id": "video10261", "sen_id": 222517}, {"caption": "a girl in blue dress wearing table of vegetables and girl feeding in spoon dishes on table to boys displaying on screen", "video_id": "video10261", "sen_id": 222518}, {"caption": "bunch of people doing a cooking show and showing the ingredients for the recipe", "video_id": "video10261", "sen_id": 222519}, {"caption": "a blonde woman in a makeup tutorial video in a bright room she is applying gel eyeliner and talking about how it's not what she expected", "video_id": "video11312", "sen_id": 222520}, {"caption": "a woman is putting on eyeline and commenting the eyeline product negatively", "video_id": "video11312", "sen_id": 222521}, {"caption": "a young woman applying makeup to her face", "video_id": "video11312", "sen_id": 222522}, {"caption": "a blonde woman is carefully applying dark eyeliner", "video_id": "video11312", "sen_id": 222523}, {"caption": "a woman applies eye makeup but is unsatisfied with the results", "video_id": "video11312", "sen_id": 222524}, {"caption": "a young woman with blonde hair carefully applies eye makeup and discusses process", "video_id": "video11312", "sen_id": 222525}, {"caption": "a blonde girl in a white shirt applies makeup", "video_id": "video11312", "sen_id": 222526}, {"caption": "a young woman with blonde hair applies eye makeup and talks about it", "video_id": "video11312", "sen_id": 222527}, {"caption": "a blonde woman in a white shirt is applying eye liner to her eyes and speaking", "video_id": "video11312", "sen_id": 222528}, {"caption": "a blonde woman is applying eyeliner and doing a review for the eyeliner", "video_id": "video11312", "sen_id": 222529}, {"caption": "a blonde woman applies mascara to her face", "video_id": "video11312", "sen_id": 222530}, {"caption": "a blond haired woman is putting on eye liner while looking through a small makeup mirror", "video_id": "video11312", "sen_id": 222531}, {"caption": "a woman has issues while putting on black eyeliner", "video_id": "video11312", "sen_id": 222532}, {"caption": "a blonde haired girl putting on her eyeliner in this tutorial", "video_id": "video11312", "sen_id": 222533}, {"caption": "a blonde woman applying eye makeup to herself", "video_id": "video11312", "sen_id": 222534}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11312", "sen_id": 222535}, {"caption": "a blonde woman applies make up to her eyes while looking in a compact mirror", "video_id": "video11312", "sen_id": 222536}, {"caption": "a cute girl is coloring her eye lid", "video_id": "video11312", "sen_id": 222537}, {"caption": "a blonde haired woman puts makeup on her eyes", "video_id": "video11312", "sen_id": 222538}, {"caption": "a woman is showing how to apply make up on camera", "video_id": "video11312", "sen_id": 222539}, {"caption": "men at sea filter their urine as a man narrates", "video_id": "video10073", "sen_id": 222540}, {"caption": "a man on a boat is running as a crate holding a person drops in the mud", "video_id": "video10073", "sen_id": 222541}, {"caption": "a man talks about a lack of bathrooms during the filming of a movie and how that problem was solved", "video_id": "video10073", "sen_id": 222542}, {"caption": "a clip from the movie water world from cineflix", "video_id": "video10073", "sen_id": 222543}, {"caption": "a actor on a water boat in the ocean recycling his pee", "video_id": "video10073", "sen_id": 222544}, {"caption": "kevin costner is filtering his urine in the movie water world", "video_id": "video10073", "sen_id": 222545}, {"caption": "a man moving around the water doing various activities", "video_id": "video10073", "sen_id": 222546}, {"caption": "a man with long hair urinates into a jar on a boat", "video_id": "video10073", "sen_id": 222547}, {"caption": "a man wearing a jacket running fast to fill the diesel", "video_id": "video10073", "sen_id": 222548}, {"caption": "man pissing for the water in the vessel in sea", "video_id": "video10073", "sen_id": 222549}, {"caption": "an entertainment reporter talks about the condition around the shooting of a famous movie", "video_id": "video10073", "sen_id": 222550}, {"caption": "a man on a boat on the water is putting water in a machine", "video_id": "video10073", "sen_id": 222551}, {"caption": "guy with long hair lives on boat surrounded with water in movie", "video_id": "video10073", "sen_id": 222552}, {"caption": "a man is speaking while showing a clip of the movie waterworld", "video_id": "video10073", "sen_id": 222553}, {"caption": "there was no bathroom when filming certain scenes of the movie waterworld", "video_id": "video10073", "sen_id": 222554}, {"caption": "man collects urine for the shortage of water in the vessel", "video_id": "video10073", "sen_id": 222555}, {"caption": "a man is doing some thin in the boat on sea", "video_id": "video10073", "sen_id": 222556}, {"caption": "a movie critic is criticizing a scene from the movie water world which shows kevin costner peeing in a cup", "video_id": "video10073", "sen_id": 222557}, {"caption": "a video movie scene water machine in hand pressing man lying down displaying on screen", "video_id": "video10073", "sen_id": 222558}, {"caption": "kevin costner in water world is on the sea", "video_id": "video10073", "sen_id": 222559}, {"caption": "a girl modeling a long red dress", "video_id": "video12688", "sen_id": 222560}, {"caption": "woman wears a red gown and sways back and forth", "video_id": "video12688", "sen_id": 222561}, {"caption": "a woman in a pink princess gown turning and swaying", "video_id": "video12688", "sen_id": 222562}, {"caption": "a woman wearing a pink princess dress is swaying and turning around", "video_id": "video12688", "sen_id": 222563}, {"caption": "a woman in a pink formal gown is turning and showing the dress", "video_id": "video12688", "sen_id": 222564}, {"caption": "there is a woman in gown dancing on the floor", "video_id": "video12688", "sen_id": 222565}, {"caption": "a woman with red dressing and wearing diamond necklace is showing variety of pose", "video_id": "video12688", "sen_id": 222566}, {"caption": "a lady wearing a formal evening dress and turning around for the camera", "video_id": "video12688", "sen_id": 222567}, {"caption": "a young girl models a pink gown that she is wearing", "video_id": "video12688", "sen_id": 222568}, {"caption": "a girl is modeling her full skirt pink ball gown", "video_id": "video12688", "sen_id": 222569}, {"caption": "there is a woman with long gown standing on the floor", "video_id": "video12688", "sen_id": 222570}, {"caption": "a woman in a pink gown twirling around showing every side of the dress", "video_id": "video12688", "sen_id": 222571}, {"caption": "a lady model posing to the camera in a red dress", "video_id": "video12688", "sen_id": 222572}, {"caption": "a woman modeling a floor length full skirted strapless dress", "video_id": "video12688", "sen_id": 222573}, {"caption": "a pretty young girl shows off her light red ballroom dress in front of a white background while piano music plays", "video_id": "video12688", "sen_id": 222574}, {"caption": "a young woman in a sparkly pink prom gown sways and swirls around", "video_id": "video12688", "sen_id": 222575}, {"caption": "a young woman sways and slowly spins while wearing a salmon-colored strapless dress with full skirt decorated with gold trim at the chest and waist", "video_id": "video12688", "sen_id": 222576}, {"caption": "a beautiful girl is modeling a coral colored evening gown the gown is adorned with rhinestones around the waist and under the chest", "video_id": "video12688", "sen_id": 222577}, {"caption": "blond white girl in a big pink fairytale dress", "video_id": "video12688", "sen_id": 222578}, {"caption": "a woman in a pink ballgown swaying and turning in a circle", "video_id": "video12688", "sen_id": 222579}, {"caption": "a young female volleyball player with dark hair in a green jersey is about to serve the ball the camera pans to a guy in the audience watching her", "video_id": "video11957", "sen_id": 222580}, {"caption": "basketball between red and green in a particular country", "video_id": "video11957", "sen_id": 222581}, {"caption": "at a womans vollyball game a woman prepares to serve the ball while a man looks on", "video_id": "video11957", "sen_id": 222582}, {"caption": "a team of girls in green play basketball indoors as people watch in the bleachers", "video_id": "video11957", "sen_id": 222583}, {"caption": "a female playing basketball while the audience watches", "video_id": "video11957", "sen_id": 222584}, {"caption": "a small girl bouncing a ball on the gym floor with a young man wathcing her", "video_id": "video11957", "sen_id": 222585}, {"caption": "a girl with green dress is ready to play the match in the stadium", "video_id": "video11957", "sen_id": 222586}, {"caption": "a woman in a green jersey prepares to hit a ball in front of a large crowd", "video_id": "video11957", "sen_id": 222587}, {"caption": "a female volleyball player wearing a green jersey is preparing to serve the ball in a tournament match", "video_id": "video11957", "sen_id": 222588}, {"caption": "a group of people dressed in green playing basketball", "video_id": "video11957", "sen_id": 222589}, {"caption": "a green uniformed female holding a ball and getting ready for the game", "video_id": "video11957", "sen_id": 222590}, {"caption": "girls playing basketball on the court with green tshirt", "video_id": "video11957", "sen_id": 222591}, {"caption": "a girl is seen dripping the ball and preparing herself for the game and a guy from the audience is watching the teams play", "video_id": "video11957", "sen_id": 222592}, {"caption": "a female player in green is having the ball in her hands and a man is watching the game", "video_id": "video11957", "sen_id": 222593}, {"caption": "there is girl bouncing a basketball wearing a green jersey with the number 18 and closes on a young gentleman in the audience", "video_id": "video11957", "sen_id": 222594}, {"caption": "there is a check shirt man watching basket ball", "video_id": "video11957", "sen_id": 222595}, {"caption": "a women basket ball match is going on", "video_id": "video11957", "sen_id": 222596}, {"caption": "com two women teams playing one in red and another in green", "video_id": "video11957", "sen_id": 222597}, {"caption": "kim chiu wearing green jersey is about to serve a volleyball while a man in green and white checkered polo is watching her", "video_id": "video11957", "sen_id": 222598}, {"caption": "some people in a crowd are watching a sports match", "video_id": "video11957", "sen_id": 222599}, {"caption": "a man riding a motor cycle in a parking lot filming his own shadow", "video_id": "video11960", "sen_id": 222600}, {"caption": "a man is riding a motorcycle around an obstacle course", "video_id": "video11960", "sen_id": 222601}, {"caption": "a view of the road from the perspective of somone riding a motorcycle", "video_id": "video11960", "sen_id": 222602}, {"caption": "a man riding a motorcycle in a parking lot", "video_id": "video11960", "sen_id": 222603}, {"caption": "a man riding on a motor bike on a packing lot", "video_id": "video11960", "sen_id": 222604}, {"caption": "a person riding a motorcycle in a parking lot", "video_id": "video11960", "sen_id": 222605}, {"caption": "a person is driving a motorcycle with other cars standing near by", "video_id": "video11960", "sen_id": 222606}, {"caption": "someone riding a bike and his shadow follows", "video_id": "video11960", "sen_id": 222607}, {"caption": "a man ride in a bike slowly he have training", "video_id": "video11960", "sen_id": 222608}, {"caption": "white car and red coloured bike ryding on road side", "video_id": "video11960", "sen_id": 222609}, {"caption": "a man is going on his bike in a straight empty road", "video_id": "video11960", "sen_id": 222610}, {"caption": "a person is being tested on a motercycle in a parking lot going through an course with cones", "video_id": "video11960", "sen_id": 222611}, {"caption": "one man riding motor bike in clear big road", "video_id": "video11960", "sen_id": 222612}, {"caption": "a man discusses and demonstrates riding a small motorcycle", "video_id": "video11960", "sen_id": 222613}, {"caption": "a guy is riding a bike slowly wearing camera on head", "video_id": "video11960", "sen_id": 222614}, {"caption": "one fellow is riding on a bike in this video", "video_id": "video11960", "sen_id": 222615}, {"caption": "a rider is riding a bike slowly on empty road", "video_id": "video11960", "sen_id": 222616}, {"caption": "one man riding motorbike and other man can calculte it", "video_id": "video11960", "sen_id": 222617}, {"caption": "a man riding a motorcycle talks about a cone course he was just riding on", "video_id": "video11960", "sen_id": 222618}, {"caption": "the man riding the motorcycle practices riding around cones in a parking lot", "video_id": "video11960", "sen_id": 222619}, {"caption": "a man hitting a car in a tunnel of traffic", "video_id": "video10696", "sen_id": 222620}, {"caption": "a flamboyantly dressed man runs out in front of a car in a tunnel causing the car to stop and the driver to get out and confront him in traffic", "video_id": "video10696", "sen_id": 222621}, {"caption": "a man driving a grey car and wearing a grey coat runs into another man walking in a crowded road a man who appears homeless is hit by a car while talking to himself in the road", "video_id": "video10696", "sen_id": 222622}, {"caption": "this is a scene of an action movie with a famous actor in it", "video_id": "video10696", "sen_id": 222623}, {"caption": "a man gets out of his car aggrevated at someone else", "video_id": "video10696", "sen_id": 222624}, {"caption": "robert downey jr and jamie foxx talking on the street", "video_id": "video10696", "sen_id": 222625}, {"caption": "a man in a car driving through a tunnel hits a man standing in the road they begin arguing", "video_id": "video10696", "sen_id": 222626}, {"caption": "robert downey jr is driving in a car and hits a man in a silver jacket they know each other", "video_id": "video10696", "sen_id": 222627}, {"caption": "a man is hit on the car and no damage to him", "video_id": "video10696", "sen_id": 222628}, {"caption": "a amn walking in the tunnel got hit by the car the car driver is so panic", "video_id": "video10696", "sen_id": 222629}, {"caption": "a man gets hit by a car while crossing the street like a maniac", "video_id": "video10696", "sen_id": 222630}, {"caption": "a guy met with accident in car on road", "video_id": "video10696", "sen_id": 222631}, {"caption": "a car runs into a man running in the middle of the street then the driver starts arguing with a black man in a bubble wrap suit in traffic", "video_id": "video10696", "sen_id": 222632}, {"caption": "a man walking in the tunnel got hit by the car then the person driving the car comes out", "video_id": "video10696", "sen_id": 222633}, {"caption": "a man in the street get hit by a man in a car", "video_id": "video10696", "sen_id": 222634}, {"caption": "there is a man driving a car through the highway", "video_id": "video10696", "sen_id": 222635}, {"caption": "a movie scene unfolds where robert downey jr hits jamie foxx with a car before jamie starts rambling in a busy tunnel", "video_id": "video10696", "sen_id": 222636}, {"caption": "a man crossing the street in a busy tunnel almost gets run over by a car", "video_id": "video10696", "sen_id": 222637}, {"caption": "two cars moving and then a man getting hit by one of the cars a vehicle driver comes out of his car to yell at the man that was hit", "video_id": "video10696", "sen_id": 222638}, {"caption": "a video clip of car moving fast and dashing driving car moving standing beside displaying on screen", "video_id": "video10696", "sen_id": 222639}, {"caption": "the beautiful waves of south africa are being shown", "video_id": "video10916", "sen_id": 222640}, {"caption": "expoza travel features the beauty of cape town south africa", "video_id": "video10916", "sen_id": 222641}, {"caption": "a fun and sunny summer day at a beach location in the southern part of africa", "video_id": "video10916", "sen_id": 222642}, {"caption": "a group of people mill around and participate in physical activities on a beach", "video_id": "video10916", "sen_id": 222643}, {"caption": "a group of young people hanging out on the beach", "video_id": "video10916", "sen_id": 222644}, {"caption": "multiple clips of people enjoying different activities at a beach in south africa", "video_id": "video10916", "sen_id": 222645}, {"caption": "people enjoy to spend their holidays in beach", "video_id": "video10916", "sen_id": 222646}, {"caption": "a group of people all go to the beach and various images of beaches are shown", "video_id": "video10916", "sen_id": 222647}, {"caption": "people playing in the beach and enjoying", "video_id": "video10916", "sen_id": 222648}, {"caption": "the people are swimming and playing in the sea and beach enjoying themselves", "video_id": "video10916", "sen_id": 222649}, {"caption": "a group of players are playing through ball in a ground", "video_id": "video10916", "sen_id": 222650}, {"caption": "people tourists enjoy their vacation at the beach", "video_id": "video10916", "sen_id": 222651}, {"caption": "on the beech the peoples are enjoying in the sea shore some girls dancing at the sea shore", "video_id": "video10916", "sen_id": 222652}, {"caption": "a portrait of the beautiful beach pictures for the enjoyment", "video_id": "video10916", "sen_id": 222653}, {"caption": "an animated expoza travel logo displays in the beginning after which various scenes of people having fun on the beach is introduced", "video_id": "video10916", "sen_id": 222654}, {"caption": "some stuff is being shown on a beach outside", "video_id": "video10916", "sen_id": 222655}, {"caption": "three man and other guys are in water and dancing", "video_id": "video10916", "sen_id": 222656}, {"caption": "people are shown on a beach in what appears to be an indian country", "video_id": "video10916", "sen_id": 222657}, {"caption": "a old man in beard and girls dancing tourist place and umberala on sea shore", "video_id": "video10916", "sen_id": 222658}, {"caption": "youngsters enjoying by dancing playing and drinking on the beach side", "video_id": "video10916", "sen_id": 222659}, {"caption": "a small black monkey jumping around on a counter trying to break something", "video_id": "video10003", "sen_id": 222660}, {"caption": "a brown monkey is standing on a table and breaking things", "video_id": "video10003", "sen_id": 222661}, {"caption": "a small monkey breaks items on a table in a small room", "video_id": "video10003", "sen_id": 222662}, {"caption": "a monkey is breaking different items while jumping on a table", "video_id": "video10003", "sen_id": 222663}, {"caption": "a monkey is jumping on a table trying to break a wire", "video_id": "video10003", "sen_id": 222664}, {"caption": "a small black and white monkey jumps up and down on top of a table near post it notes", "video_id": "video10003", "sen_id": 222665}, {"caption": "a monkey is jumping around on a desk causing havoc", "video_id": "video10003", "sen_id": 222666}, {"caption": "a monkey smashes various small objects on a countertop", "video_id": "video10003", "sen_id": 222667}, {"caption": "a monkey jumping up and down on a table", "video_id": "video10003", "sen_id": 222668}, {"caption": "a chimpanzee exploring objects in the room and fixing them the way he likes them", "video_id": "video10003", "sen_id": 222669}, {"caption": "a money is smashing a cellphone on the table", "video_id": "video10003", "sen_id": 222670}, {"caption": "a pet monkey jumps up and down on a kitchen counter and plays with phone and glasses", "video_id": "video10003", "sen_id": 222671}, {"caption": "a black monkey jumps up and down on a desk with yellow papers in an office environment", "video_id": "video10003", "sen_id": 222672}, {"caption": "a monkey is breaking everthing in his eye sights by jumping up and down smashing cell phone sun glasses etc on the desk", "video_id": "video10003", "sen_id": 222673}, {"caption": "a monkey is on a counter jumping around and breaking things", "video_id": "video10003", "sen_id": 222674}, {"caption": "a pet monkey is jumping on the office table with different objects on table", "video_id": "video10003", "sen_id": 222675}, {"caption": "a monkey break a thing by holding it on his hand and jumping hit it on the floor", "video_id": "video10003", "sen_id": 222676}, {"caption": "on his owners desk a cute little monkey is trying to smash and break things on top of the desk", "video_id": "video10003", "sen_id": 222677}, {"caption": "a monkey jumping inside house lifting someting in hand", "video_id": "video10003", "sen_id": 222678}, {"caption": "a brown monkey is jumping on a counter", "video_id": "video10003", "sen_id": 222679}, {"caption": "woman gives commentary about technology and potential art application", "video_id": "video11912", "sen_id": 222680}, {"caption": "a woman is giving a tour of a digital newsroom", "video_id": "video11912", "sen_id": 222681}, {"caption": "a 360 degree view of a glass cieling in a large building", "video_id": "video11912", "sen_id": 222682}, {"caption": "a television news studio has a screen showing a residential valley under a green mountain a stage ceiling is made of a metal grid with lighting fixtures and a woman with shoulder-length brown hair is shown doubled at different angles", "video_id": "video11912", "sen_id": 222683}, {"caption": "a woman shows various stages and amenities on a performance arts studio", "video_id": "video11912", "sen_id": 222684}, {"caption": "a woman is giving a tour of a studio", "video_id": "video11912", "sen_id": 222685}, {"caption": "a woman explaining us the technology", "video_id": "video11912", "sen_id": 222686}, {"caption": "a woman presses a low yellow screen by a curved structure edged in glowing blue lights in front of a list of curved white entries", "video_id": "video11912", "sen_id": 222687}, {"caption": "one women talks about something in desktop watching", "video_id": "video11912", "sen_id": 222688}, {"caption": "a woman walks through a news anchor room with equipment", "video_id": "video11912", "sen_id": 222689}, {"caption": "cute old lady in coat and pant smiling and looking at camera", "video_id": "video11912", "sen_id": 222690}, {"caption": "there is a women explains about the machinery s", "video_id": "video11912", "sen_id": 222691}, {"caption": "the inside of a newsroom is showed while a woman in a pink shirt talks", "video_id": "video11912", "sen_id": 222692}, {"caption": "a glass pane ceiling hovers over the new digital workspace", "video_id": "video11912", "sen_id": 222693}, {"caption": "a women is describing a tv studio and all its features", "video_id": "video11912", "sen_id": 222694}, {"caption": "there is a women operating a computer in a company", "video_id": "video11912", "sen_id": 222695}, {"caption": "an interior of a media where the news and shows organized", "video_id": "video11912", "sen_id": 222696}, {"caption": "a woman wearing a brown shirt describes a tv studio", "video_id": "video11912", "sen_id": 222697}, {"caption": "a woman talks about the features of a new performing arts complex", "video_id": "video11912", "sen_id": 222698}, {"caption": "a woman is talking about something and using a pc", "video_id": "video11912", "sen_id": 222699}, {"caption": "a man outside is talking to a goat", "video_id": "video11772", "sen_id": 222700}, {"caption": "a man speaking in spanish is describing to us what type of animal he is showing up", "video_id": "video11772", "sen_id": 222701}, {"caption": "a spanish speaking interviewer in a blue t-shirt is questioning a goat contained behind a wooden fence about the government", "video_id": "video11772", "sen_id": 222702}, {"caption": "a man talking about a animal in a zoo", "video_id": "video11772", "sen_id": 222703}, {"caption": "a man in a blue shirt speaks spanish to a goat with long horns while shaking his finger at it", "video_id": "video11772", "sen_id": 222704}, {"caption": "a black horned goat is watching as a man speaks about him on live camera", "video_id": "video11772", "sen_id": 222705}, {"caption": "a man is speaking to a black horned goat and the goat is looking at him", "video_id": "video11772", "sen_id": 222706}, {"caption": "a spanish speaking man talks to a ram", "video_id": "video11772", "sen_id": 222707}, {"caption": "a man talks to a large goat in a pen of stone and wood", "video_id": "video11772", "sen_id": 222708}, {"caption": "a spanish speaking man talks to a ram", "video_id": "video11772", "sen_id": 222709}, {"caption": "a man is speaking spanish to a goat who appears to be listening then ther's a spanish subtitle", "video_id": "video11772", "sen_id": 222710}, {"caption": "a man speaking in spanish tries to talk to a yak held in captivity", "video_id": "video11772", "sen_id": 222711}, {"caption": "there is a man talking while facing the camera then he turns around to face the goat that is behind him and starts talking to the goat", "video_id": "video11772", "sen_id": 222712}, {"caption": "a goat with very large horns stands at a gate and looks intently at a man", "video_id": "video11772", "sen_id": 222713}, {"caption": "a goat with very large horns stands next to an old wooden gate", "video_id": "video11772", "sen_id": 222714}, {"caption": "the man appears to be speaking about the animal at the park", "video_id": "video11772", "sen_id": 222715}, {"caption": "guy talking to a goat like looking animal", "video_id": "video11772", "sen_id": 222716}, {"caption": "a man talks to the camera in spanish with a large hair goat behind him", "video_id": "video11772", "sen_id": 222717}, {"caption": "a man points to an animal and talks in spanish", "video_id": "video11772", "sen_id": 222718}, {"caption": "an animal is looking at a human person", "video_id": "video11772", "sen_id": 222719}, {"caption": "a interview is being done with a celebrity named jada smith", "video_id": "video11223", "sen_id": 222720}, {"caption": "a woman express her feelings to a man in a news show", "video_id": "video11223", "sen_id": 222721}, {"caption": "a man and woman are talking to each other on a news show", "video_id": "video11223", "sen_id": 222722}, {"caption": "halle berry is talking to perl morgan about getting healthy", "video_id": "video11223", "sen_id": 222723}, {"caption": "a man and women sitting at a desk having a conversation", "video_id": "video11223", "sen_id": 222724}, {"caption": "there is a hot woman talking with a suit man", "video_id": "video11223", "sen_id": 222725}, {"caption": "jada pinkett smith explaining to piers morgan about a personal experience", "video_id": "video11223", "sen_id": 222726}, {"caption": "jada pinkett smith laughing and talking to piers morgan on his show", "video_id": "video11223", "sen_id": 222727}, {"caption": "a actress is being interviewed on a television show", "video_id": "video11223", "sen_id": 222728}, {"caption": "a young woman talks to a man and talks about her health", "video_id": "video11223", "sen_id": 222729}, {"caption": "there is a woman discussing something with a man", "video_id": "video11223", "sen_id": 222730}, {"caption": "a black actress doing an interview with piers morgan on television", "video_id": "video11223", "sen_id": 222731}, {"caption": "an african actress is interviewed on an entertainment show", "video_id": "video11223", "sen_id": 222732}, {"caption": "a black woman being interviewed on a talk show talking about getting healthy", "video_id": "video11223", "sen_id": 222733}, {"caption": "a woman is interviewing a man on television for a talk show", "video_id": "video11223", "sen_id": 222734}, {"caption": "piers morgan speaking to a woman about her relationship", "video_id": "video11223", "sen_id": 222735}, {"caption": "two people in a news studio talking", "video_id": "video11223", "sen_id": 222736}, {"caption": "an interview is going on two persons on a show", "video_id": "video11223", "sen_id": 222737}, {"caption": "an interview between a white man and a black woman on a talk show", "video_id": "video11223", "sen_id": 222738}, {"caption": "women talking animatedly with the talk show host", "video_id": "video11223", "sen_id": 222739}, {"caption": "a group of people are talking about apple products", "video_id": "video11480", "sen_id": 222740}, {"caption": "a man is presenting new information on the apple tv to a news crast", "video_id": "video11480", "sen_id": 222741}, {"caption": "a panel is talking on a tv show", "video_id": "video11480", "sen_id": 222742}, {"caption": "a man talks to people on a news show about a new tv system", "video_id": "video11480", "sen_id": 222743}, {"caption": "true ventures partner om malik is seated at a table and discussing apple tv wiith three analysts for bloomberg tv", "video_id": "video11480", "sen_id": 222744}, {"caption": "there is a shirt man talking to co-workers", "video_id": "video11480", "sen_id": 222745}, {"caption": "om malik the partner of apple tv talks about apple tv in an interview", "video_id": "video11480", "sen_id": 222746}, {"caption": "men who wore eye glasses speaking on the television with someone other", "video_id": "video11480", "sen_id": 222747}, {"caption": "a man wearing glasses and a blue shirt is sitting at a table talking to people", "video_id": "video11480", "sen_id": 222748}, {"caption": "three men and a woman sitting around a round table doing a newscast talk this stage had windows in the back look out into a cityscape", "video_id": "video11480", "sen_id": 222749}, {"caption": "a man with glasses and gray hair is talking in a room with many windows", "video_id": "video11480", "sen_id": 222750}, {"caption": "a bespectacled man who is wearing a grey polo is discussing apple tv on a technology panel news show", "video_id": "video11480", "sen_id": 222751}, {"caption": "three men and one woman from bloomberg sit at a table and talk about tv", "video_id": "video11480", "sen_id": 222752}, {"caption": "a man is talking on bloomberg about apple televisions", "video_id": "video11480", "sen_id": 222753}, {"caption": "a man in an interview talking about the apple tv", "video_id": "video11480", "sen_id": 222754}, {"caption": "a man on a bloomberg talk show talking about the apple tv", "video_id": "video11480", "sen_id": 222755}, {"caption": "news anchors and a true ventures partner talking about how the company apply is getting a major overhaul", "video_id": "video11480", "sen_id": 222756}, {"caption": "guy giving his opinion in a debate about apple tv", "video_id": "video11480", "sen_id": 222757}, {"caption": "om malik speaking about apple tv and how people felt about it", "video_id": "video11480", "sen_id": 222758}, {"caption": "there is a group of people sitting at a table listening the man in glasses speak", "video_id": "video11480", "sen_id": 222759}, {"caption": "men talk while holding weapons and throwing money", "video_id": "video10821", "sen_id": 222760}, {"caption": "several people sit under a grass hut screaming at each other", "video_id": "video10821", "sen_id": 222761}, {"caption": "a very tense scene from a foreign film", "video_id": "video10821", "sen_id": 222762}, {"caption": "two men one wearing a bandana and the other holding a gun have a conversation", "video_id": "video10821", "sen_id": 222763}, {"caption": "a group of men hold a man hostage at gunpoint", "video_id": "video10821", "sen_id": 222764}, {"caption": "movie clip of two men having an argumentative conversation", "video_id": "video10821", "sen_id": 222765}, {"caption": "someone who doesn't speak english is holding a gun to an american's head and yelling and the american doesn't seem happy about it", "video_id": "video10821", "sen_id": 222766}, {"caption": "a movie scene displaying two actors is being enacted", "video_id": "video10821", "sen_id": 222767}, {"caption": "a man is under pressure as he is asked questions at gunpoint", "video_id": "video10821", "sen_id": 222768}, {"caption": "actor christopher walken in the deer hunter is held at gunpoint", "video_id": "video10821", "sen_id": 222769}, {"caption": "two persons speaking each other in a hut", "video_id": "video10821", "sen_id": 222770}, {"caption": "the man being intimidated by a group with gun", "video_id": "video10821", "sen_id": 222771}, {"caption": "two persons are complying a man on gun point to do some thing", "video_id": "video10821", "sen_id": 222772}, {"caption": "a gun upon shoulder chasing person forcing him displaying on screen", "video_id": "video10821", "sen_id": 222773}, {"caption": "bunch of guys in military outfit talking to each other", "video_id": "video10821", "sen_id": 222774}, {"caption": "there is a man playing in front of some criminals", "video_id": "video10821", "sen_id": 222775}, {"caption": "a movie clip with a man with a bandanna being held at gunpoint", "video_id": "video10821", "sen_id": 222776}, {"caption": "a group of men playing a game of russian roulette while sitting in a hut", "video_id": "video10821", "sen_id": 222777}, {"caption": "two men arguing inside of tent set up in jungle", "video_id": "video10821", "sen_id": 222778}, {"caption": "some gun men caught a man and speaking about something to him", "video_id": "video10821", "sen_id": 222779}, {"caption": "an asian woman is holding up a pink mirror and blending foundation on her face while explaining the process", "video_id": "video12027", "sen_id": 222780}, {"caption": "a woman is showing how to blend makeup on her face", "video_id": "video12027", "sen_id": 222781}, {"caption": "a woman is putting makeup on her face as she is looking into a mirror", "video_id": "video12027", "sen_id": 222782}, {"caption": "a woman is holding a mirror and applying makeup while talking", "video_id": "video12027", "sen_id": 222783}, {"caption": "a lady is demonstrating a makeup blend to her face", "video_id": "video12027", "sen_id": 222784}, {"caption": "a young woman describes and demonstrates a makeup technique she uses", "video_id": "video12027", "sen_id": 222785}, {"caption": "a woman is putting on makeup on her cheeks", "video_id": "video12027", "sen_id": 222786}, {"caption": "a woman with dark hair explains how to blend a makeup product", "video_id": "video12027", "sen_id": 222787}, {"caption": "a young woman is giving tips on how to apply face makeup", "video_id": "video12027", "sen_id": 222788}, {"caption": "a beauty youtuber is blending in her blush on her cheeks", "video_id": "video12027", "sen_id": 222789}, {"caption": "a brown haired woman is giving a makeup tutorial", "video_id": "video12027", "sen_id": 222790}, {"caption": "a beautiful woman demonstrates makeup application techniques while looking into a pink mirror", "video_id": "video12027", "sen_id": 222791}, {"caption": "a woman talks holds a mirror and apply makeup to face", "video_id": "video12027", "sen_id": 222792}, {"caption": "a girl talks about applying make-up in front of mirror", "video_id": "video12027", "sen_id": 222793}, {"caption": "sexy brunette putting on eye makeup and showing the shades", "video_id": "video12027", "sen_id": 222794}, {"caption": "an asian woman with dark hair applies makeup in a pink mirror", "video_id": "video12027", "sen_id": 222795}, {"caption": "a cute young girl is describing that how to apply the beauty lotions in face she says that don t apply up and down direction do only side way direction", "video_id": "video12027", "sen_id": 222796}, {"caption": "the woman is looking in a small cosmetics mirror she is explaining to her bloggers how to properly apply blush to her face", "video_id": "video12027", "sen_id": 222797}, {"caption": "a girl is busy on makeup her face with her finger and a mirror", "video_id": "video12027", "sen_id": 222798}, {"caption": "a lady applying the facial cream on the face by seeing the mirror in hand", "video_id": "video12027", "sen_id": 222799}, {"caption": "a woman is adding a can of tomatoes to a sizzling frying pan", "video_id": "video11747", "sen_id": 222800}, {"caption": "a person is putting some sauce in the pan", "video_id": "video11747", "sen_id": 222801}, {"caption": "a women adding 14 oz of chopped tomato in to a fry pan", "video_id": "video11747", "sen_id": 222802}, {"caption": "a person adding tomatoes to a sizzling skillet", "video_id": "video11747", "sen_id": 222803}, {"caption": "a woman sliding diced tomatoes into a pan", "video_id": "video11747", "sen_id": 222804}, {"caption": "there are items cooking in a skillet and tomatoes from a cutting board are being slowly added", "video_id": "video11747", "sen_id": 222805}, {"caption": "a person is adding freshly chopped ingredients into a hot pan on the stove", "video_id": "video11747", "sen_id": 222806}, {"caption": "an inhome chef adds tomatoes to a black pan she is using to cook down onions", "video_id": "video11747", "sen_id": 222807}, {"caption": "a woman adds tomatoes to her meal that she is cooking on the stove", "video_id": "video11747", "sen_id": 222808}, {"caption": "a pan in the kitchen where are cooking a fried meat with vegetables", "video_id": "video11747", "sen_id": 222809}, {"caption": "in the kitchen a woman making a simple dish", "video_id": "video11747", "sen_id": 222810}, {"caption": "someone is adding freshly chopped ingredients into a hot pan", "video_id": "video11747", "sen_id": 222811}, {"caption": "someone in a kitchen adding some red vegetable in a pan and telling the recepe of it", "video_id": "video11747", "sen_id": 222812}, {"caption": "a woman describing the steps of a recipe she is putting 14 oz of tomatoes into a sizzling pan", "video_id": "video11747", "sen_id": 222813}, {"caption": "woman seen adding tomatoes to a hot skillet full of other ingredients", "video_id": "video11747", "sen_id": 222814}, {"caption": "a woman is in the kitchen and adding diced tomatoes to a skillet", "video_id": "video11747", "sen_id": 222815}, {"caption": "someone adding tomato into the frying pan and explaining about the procedure", "video_id": "video11747", "sen_id": 222816}, {"caption": "a woman adds finely chopped tomatoes on cutting board to a frying pan", "video_id": "video11747", "sen_id": 222817}, {"caption": "preparation of recipe to a fry pan 14 oz tomatoes is added", "video_id": "video11747", "sen_id": 222818}, {"caption": "in a kitchen someone is adding tomato in the hot pan", "video_id": "video11747", "sen_id": 222819}, {"caption": "people walk past an official-looking building while a man makes a phone call", "video_id": "video10380", "sen_id": 222820}, {"caption": "a classical building with carved figures inside the pediment and ridged support columns is part of a city block near pedestrians and a man sitting on steps", "video_id": "video10380", "sen_id": 222821}, {"caption": "wall street is shown with a man sitting on the steps", "video_id": "video10380", "sen_id": 222822}, {"caption": "a clip that is showing off the student debt crisis in america", "video_id": "video10380", "sen_id": 222823}, {"caption": "a woman talks about the student debt crisis over footage of wall street", "video_id": "video10380", "sen_id": 222824}, {"caption": "a news reporter discusses the perils of the student loan debt crisis", "video_id": "video10380", "sen_id": 222825}, {"caption": "man is sitting on stairs near bank as reporter speaks about loans", "video_id": "video10380", "sen_id": 222826}, {"caption": "a building on wall street is shown while a woman talks about issues in finance", "video_id": "video10380", "sen_id": 222827}, {"caption": "there's a man sitting on the stairs near a big building with a lot of people", "video_id": "video10380", "sen_id": 222828}, {"caption": "the narrator appears to tell a financial story regarding student loan debts", "video_id": "video10380", "sen_id": 222829}, {"caption": "a clip from a documentary talking about the next financial crisis", "video_id": "video10380", "sen_id": 222830}, {"caption": "people walking through wall street while a female reporter talks about what might be the cause of the next financial crisis", "video_id": "video10380", "sen_id": 222831}, {"caption": "crowds of people are walking on the sidewalk outside of wall street and a man is talking on a phone", "video_id": "video10380", "sen_id": 222832}, {"caption": "the student debt crisis is about to become as critical as when the sub-prime lending bubble burst", "video_id": "video10380", "sen_id": 222833}, {"caption": "a large building features a set of flags and flag poles in the front", "video_id": "video10380", "sen_id": 222834}, {"caption": "a big building american flag is hoisted", "video_id": "video10380", "sen_id": 222835}, {"caption": "they are talking about how the student debt crisis is a bubble waiting to burst", "video_id": "video10380", "sen_id": 222836}, {"caption": "a governmental building is seen with columns as a man sits outside on steps in suit", "video_id": "video10380", "sen_id": 222837}, {"caption": "new segment on warnings that the student debt crisis is the next bubble to burst", "video_id": "video10380", "sen_id": 222838}, {"caption": "the exterior of a building is being filmed by someone", "video_id": "video10380", "sen_id": 222839}, {"caption": "woman in a black dress dancing and singing inside of a music video", "video_id": "video10294", "sen_id": 222840}, {"caption": "a woman in a black dress is standing in a room singing a song", "video_id": "video10294", "sen_id": 222841}, {"caption": "a female singer with long brunette hair wearing a black gown sings in a dark room", "video_id": "video10294", "sen_id": 222842}, {"caption": "a lady is dancing and wearing black color dress", "video_id": "video10294", "sen_id": 222843}, {"caption": "rihanna in a black dress singing in a music video", "video_id": "video10294", "sen_id": 222844}, {"caption": "a woman in a black dress is standing up and singing", "video_id": "video10294", "sen_id": 222845}, {"caption": "a woman in a black dress singing in a dark room", "video_id": "video10294", "sen_id": 222846}, {"caption": "there is a woman singing from the darkness", "video_id": "video10294", "sen_id": 222847}, {"caption": "a woman is standing and singing a song", "video_id": "video10294", "sen_id": 222848}, {"caption": "a girl in black dress wearing color cloth standing singing dancing displaying on screen", "video_id": "video10294", "sen_id": 222849}, {"caption": "sexy brunette singer in black dress singing in her music video", "video_id": "video10294", "sen_id": 222850}, {"caption": "women dancing and singing song in a group", "video_id": "video10294", "sen_id": 222851}, {"caption": "an album song a girl singing a song on the stage", "video_id": "video10294", "sen_id": 222852}, {"caption": "a girl with long maxi sings the pop song she stands in the dark", "video_id": "video10294", "sen_id": 222853}, {"caption": "a musical clip of a woman in spaghetti straps long black gown slow dancing to music in the background", "video_id": "video10294", "sen_id": 222854}, {"caption": "a person on a stage is being filmed by people", "video_id": "video10294", "sen_id": 222855}, {"caption": "a sexy lady stands in the room and the music goies on", "video_id": "video10294", "sen_id": 222856}, {"caption": "an album song a lady model singing a song", "video_id": "video10294", "sen_id": 222857}, {"caption": "a lady dances and twirls around in her gown", "video_id": "video10294", "sen_id": 222858}, {"caption": "a young woman sings as she sits in the shadows", "video_id": "video10294", "sen_id": 222859}, {"caption": "woman showing a dish of scallops and trout on a white plate", "video_id": "video12049", "sen_id": 222860}, {"caption": "finished dishes that a man enjoys to eat", "video_id": "video12049", "sen_id": 222861}, {"caption": "a woman describing the meals she prepared for her husband", "video_id": "video12049", "sen_id": 222862}, {"caption": "a plate of grilled fish is shown next to a white bowl of food", "video_id": "video12049", "sen_id": 222863}, {"caption": "a woman narrates a montage of dishes at a meal", "video_id": "video12049", "sen_id": 222864}, {"caption": "a plate of red potatoes and a plate of fish", "video_id": "video12049", "sen_id": 222865}, {"caption": "a white plate with mountain trout sitting untouched", "video_id": "video12049", "sen_id": 222866}, {"caption": "a video graphic showing several plates of food that include scallots fish etc while a female voice narrates the scene", "video_id": "video12049", "sen_id": 222867}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12049", "sen_id": 222868}, {"caption": "a woman speaks about scallops and mountain trout", "video_id": "video12049", "sen_id": 222869}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video12049", "sen_id": 222870}, {"caption": "a woman talking and showing what people at one person ate scallops and another ate trout", "video_id": "video12049", "sen_id": 222871}, {"caption": "some dishes are displayed in the table", "video_id": "video12049", "sen_id": 222872}, {"caption": "the variety meet items are presenting in the secssion and the pepsi bottle are near the bottle", "video_id": "video12049", "sen_id": 222873}, {"caption": "a woman is prepared a dish and placing in a plate", "video_id": "video12049", "sen_id": 222874}, {"caption": "several dishes are garnished and served on plates", "video_id": "video12049", "sen_id": 222875}, {"caption": "photos and videos of a set of cooked mouth-watering dishes", "video_id": "video12049", "sen_id": 222876}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12049", "sen_id": 222877}, {"caption": "one women make a tasty and healthy recipe in", "video_id": "video12049", "sen_id": 222878}, {"caption": "a plate inside meals many item on table ketchup served to eat", "video_id": "video12049", "sen_id": 222879}, {"caption": "a woman who is on the ground in the dust who is injured", "video_id": "video11873", "sen_id": 222880}, {"caption": "a beautiful chorus is heard while a woman awakes from what appears to be the site of an explosion", "video_id": "video11873", "sen_id": 222881}, {"caption": "a disheveled woman is getting up to realize her surroundings", "video_id": "video11873", "sen_id": 222882}, {"caption": "a woman awakes and looks around her to see where she is", "video_id": "video11873", "sen_id": 222883}, {"caption": "a woman in dark clothes sits up and looks around before putting her hand up to her ear", "video_id": "video11873", "sen_id": 222884}, {"caption": "a woman gets up from the ground in the fog and looks around", "video_id": "video11873", "sen_id": 222885}, {"caption": "white mists clears to show a black-outfitted woman on the ground with facial cuts trying to push herself up and slowly understand her surroundings", "video_id": "video11873", "sen_id": 222886}, {"caption": "a lady with crude on her lips and long hair wakes up in a smokey cave and looks around trying to figure out where she is", "video_id": "video11873", "sen_id": 222887}, {"caption": "dust clears and it shows a girl laying on the ground", "video_id": "video11873", "sen_id": 222888}, {"caption": "a woman covered in dust lying down on the ground starts to get up while trying to look around her sorroundings", "video_id": "video11873", "sen_id": 222889}, {"caption": "a woman who is covered in dirt is slowly picking herself up off of the ground", "video_id": "video11873", "sen_id": 222890}, {"caption": "a woman in black dress weak up there", "video_id": "video11873", "sen_id": 222891}, {"caption": "a woman gets up in the middle of a dust storm and looks shocked", "video_id": "video11873", "sen_id": 222892}, {"caption": "a woman regains consciousness in the dusty aftermath of a catastrophe", "video_id": "video11873", "sen_id": 222893}, {"caption": "a woman is hunkering down after a disaster happens", "video_id": "video11873", "sen_id": 222894}, {"caption": "a girl is trying to get up and she is suprise to see something", "video_id": "video11873", "sen_id": 222895}, {"caption": "a woman with dark brown hair is nearly dying lying down inside of a building", "video_id": "video11873", "sen_id": 222896}, {"caption": "a lady wakes up in the middle of a natural disaster", "video_id": "video11873", "sen_id": 222897}, {"caption": "a woman has been in an explosion and is waking up with pain in her jaw", "video_id": "video11873", "sen_id": 222898}, {"caption": "smoke is surrounding a girl lying on the ground", "video_id": "video11873", "sen_id": 222899}, {"caption": "comedian family showing clips from their best videos on vine", "video_id": "video10683", "sen_id": 222900}, {"caption": "several vines show scenes from a man's family life", "video_id": "video10683", "sen_id": 222901}, {"caption": "a man gets angry while driving and at home and does a number of other actions with friends and family", "video_id": "video10683", "sen_id": 222902}, {"caption": "a family that makes comedic videos on vine", "video_id": "video10683", "sen_id": 222903}, {"caption": "a man and his children singing and joking around", "video_id": "video10683", "sen_id": 222904}, {"caption": "a young girl in a pink outfit performing infront of a band", "video_id": "video10683", "sen_id": 222905}, {"caption": "a man is talking on tv in a news channel", "video_id": "video10683", "sen_id": 222906}, {"caption": "a bunch of different clips from the vine website", "video_id": "video10683", "sen_id": 222907}, {"caption": "two kids and a father are screaming at one another", "video_id": "video10683", "sen_id": 222908}, {"caption": "a red color dress wearing shaking her hairs and boy sitting shaking body moving in car girl singing dancing displaying on screen", "video_id": "video10683", "sen_id": 222909}, {"caption": "all persons are speaking each other on a car", "video_id": "video10683", "sen_id": 222910}, {"caption": "the little boy repeatedly shouts for his father to come upstairs", "video_id": "video10683", "sen_id": 222911}, {"caption": "the backseat driver as soon as i sit down and relax when parent forget they have kids and whey they forget she is in the band", "video_id": "video10683", "sen_id": 222912}, {"caption": "a man in a black hat is dancing to spanish music in the car", "video_id": "video10683", "sen_id": 222913}, {"caption": "a group of people are going some ever through car", "video_id": "video10683", "sen_id": 222914}, {"caption": "a man with cap talking with some kids inside the car", "video_id": "video10683", "sen_id": 222915}, {"caption": "the people dance and sing inside the car", "video_id": "video10683", "sen_id": 222916}, {"caption": "a family was sitting in the car and enjoying the music", "video_id": "video10683", "sen_id": 222917}, {"caption": "a girl in red color dress wearing shaking her hairs and boy sitting on sofa and boy and girl moving in car dancing girl displaying on screen", "video_id": "video10683", "sen_id": 222918}, {"caption": "bearded guy with children dancing and singing inside the car", "video_id": "video10683", "sen_id": 222919}, {"caption": "a man stands at a podium while talking to people", "video_id": "video12176", "sen_id": 222920}, {"caption": "a man in a dark brown jacket is standing a podium delivering a speech to an audience the man is also wearing a red shirt the podium as maine written on it the man is also wearing glasses", "video_id": "video12176", "sen_id": 222921}, {"caption": "a guy is at a podium giving a speech", "video_id": "video12176", "sen_id": 222922}, {"caption": "a man speaks as he stands at a podium in a conference room", "video_id": "video12176", "sen_id": 222923}, {"caption": "nerdy looking man wearing a brown jacket and red shirt while speaking at podium", "video_id": "video12176", "sen_id": 222924}, {"caption": "a person in black suit is saying something to the audience", "video_id": "video12176", "sen_id": 222925}, {"caption": "a man stand on the podium and gives a speech to the audience", "video_id": "video12176", "sen_id": 222926}, {"caption": "a man gives a lecture from a podium using his laptop for his notes", "video_id": "video12176", "sen_id": 222927}, {"caption": "a person speaking on the mic with wearing a black suite on a meeting hall", "video_id": "video12176", "sen_id": 222928}, {"caption": "guy in glasses wearing coat and red shirt is talking to the audience", "video_id": "video12176", "sen_id": 222929}, {"caption": "there is a suit man talking with a mic", "video_id": "video12176", "sen_id": 222930}, {"caption": "one man talks in mic something in a stage", "video_id": "video12176", "sen_id": 222931}, {"caption": "a man lectures from a podium talking about the features of a computer system", "video_id": "video12176", "sen_id": 222932}, {"caption": "a man at a podium stands and discusses a presentation", "video_id": "video12176", "sen_id": 222933}, {"caption": "guy with glasses in suit talking to reporters", "video_id": "video12176", "sen_id": 222934}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video12176", "sen_id": 222935}, {"caption": "a man is speaking in the stage of a meeting", "video_id": "video12176", "sen_id": 222936}, {"caption": "a man in coat talks in front of the mike his hair is brown", "video_id": "video12176", "sen_id": 222937}, {"caption": "man with glasses giving a lecture in front of a podium he is wearing a dark blazer and a red shirt", "video_id": "video12176", "sen_id": 222938}, {"caption": "a guy behind a podium is giving a speech", "video_id": "video12176", "sen_id": 222939}, {"caption": "police cars arrive and officers jump out to arrest men", "video_id": "video12325", "sen_id": 222940}, {"caption": "a meek-looking man raises his hands as policemen put him under arrest", "video_id": "video12325", "sen_id": 222941}, {"caption": "cops arrest a man standing on a sidewalk with a book", "video_id": "video12325", "sen_id": 222942}, {"caption": "a police officer gets out of vehicle draws his gun and approaches a man who drops a book and puts his hands in the air to surrender", "video_id": "video12325", "sen_id": 222943}, {"caption": "a bespectacled man in a cream jumper dropping a book to surrender to the police", "video_id": "video12325", "sen_id": 222944}, {"caption": "a man holds up his hands while the police approach and apprehend him", "video_id": "video12325", "sen_id": 222945}, {"caption": "cops jump out of a car scaring a man on the sidewalk who drops his book before the cops push him against the wall", "video_id": "video12325", "sen_id": 222946}, {"caption": "a police officer approaches a man with his hands raised", "video_id": "video12325", "sen_id": 222947}, {"caption": "a man raises his hands on a sidewalk and then is arrested by police", "video_id": "video12325", "sen_id": 222948}, {"caption": "police are confronting a man with his hands up as they approach him with guns", "video_id": "video12325", "sen_id": 222949}, {"caption": "a man in a white shirt wearing glasses walking on the street reading a book is being arrested", "video_id": "video12325", "sen_id": 222950}, {"caption": "a man in a mask is walking up to another man wearing a gray shirt", "video_id": "video12325", "sen_id": 222951}, {"caption": "a man puts his hands up on a street and then he is arrested by police", "video_id": "video12325", "sen_id": 222952}, {"caption": "an officer exits a police car with lights flashing a young man drops a book and lifts his hands the officer approaches with a gun drawn and the officer grabs the man and pushes him against a wall", "video_id": "video12325", "sen_id": 222953}, {"caption": "police pulling up on and subduing a man in a grey sweatshirt", "video_id": "video12325", "sen_id": 222954}, {"caption": "a police men gets out of the police car and comes to a men who is wearind hat and lot of crowds are there", "video_id": "video12325", "sen_id": 222955}, {"caption": "the police get of the car and the man holds his hands up in the air", "video_id": "video12325", "sen_id": 222956}, {"caption": "police speed up to a location in a police car jump out of the car and grab a man holding a book", "video_id": "video12325", "sen_id": 222957}, {"caption": "a police man is arresting a aquest in the road", "video_id": "video12325", "sen_id": 222958}, {"caption": "some cops are assaulting a guy with a book", "video_id": "video12325", "sen_id": 222959}, {"caption": "an intense dramatic soccer match leading up to a a goal being scored", "video_id": "video11015", "sen_id": 222960}, {"caption": "men in yellow and blue compete in a asoccer game", "video_id": "video11015", "sen_id": 222961}, {"caption": "this is a soccer game and during the game a goal is made by the blue team", "video_id": "video11015", "sen_id": 222962}, {"caption": "messi takes the ball up half the field and scores a goal", "video_id": "video11015", "sen_id": 222963}, {"caption": "this is a football match the team in the blue get ball from white team and shoot goal", "video_id": "video11015", "sen_id": 222964}, {"caption": "during a soccer game a player wearing blue jersey drives down the field with the ball and scores a gall after evading several defenders", "video_id": "video11015", "sen_id": 222965}, {"caption": "foot ball players playing on the play ground infront of the audience", "video_id": "video11015", "sen_id": 222966}, {"caption": "there are two players playing football and there is a person who is telling comentry of the match", "video_id": "video11015", "sen_id": 222967}, {"caption": "a soccer team play on a large field with one team ultimately scoring a goal", "video_id": "video11015", "sen_id": 222968}, {"caption": "foot ball two teams playing very interestingly finally one player put goal", "video_id": "video11015", "sen_id": 222969}, {"caption": "soccer player showing his tackle skill and then scoring a goal", "video_id": "video11015", "sen_id": 222970}, {"caption": "men in blue are playing football match against men in white", "video_id": "video11015", "sen_id": 222971}, {"caption": "the football player mercy plays an extraordinary game of footbal", "video_id": "video11015", "sen_id": 222972}, {"caption": "on the foot ball ground the hero messi is attck the goal to opposite team", "video_id": "video11015", "sen_id": 222973}, {"caption": "a man is shown making an amazing play in soccer", "video_id": "video11015", "sen_id": 222974}, {"caption": "a bunch of soccer players on on a field", "video_id": "video11015", "sen_id": 222975}, {"caption": "lionel messy beating defenders very easy and scoring", "video_id": "video11015", "sen_id": 222976}, {"caption": "two teams are playing football (soccer) a man from the team wearing blue and red scores a goal", "video_id": "video11015", "sen_id": 222977}, {"caption": "the foot ball players is attempt to trying togoal in the opposite team", "video_id": "video11015", "sen_id": 222978}, {"caption": "two soccer teams run up and down the field and one team scores a goal", "video_id": "video11015", "sen_id": 222979}, {"caption": "a show of a tiger in its natural habitat", "video_id": "video10020", "sen_id": 222980}, {"caption": "a large tiger looks into a wooded area as he prepares for a hunt", "video_id": "video10020", "sen_id": 222981}, {"caption": "there is a tiger standing in the forest", "video_id": "video10020", "sen_id": 222982}, {"caption": "a tiger lying on the river side in the forest", "video_id": "video10020", "sen_id": 222983}, {"caption": "tiger cub with spots looking out into the field", "video_id": "video10020", "sen_id": 222984}, {"caption": "a tiger in forest is looking at something seriously", "video_id": "video10020", "sen_id": 222985}, {"caption": "there is a tiger watching something in the forest", "video_id": "video10020", "sen_id": 222986}, {"caption": "a tiger is seeing other tigers is drinking water in water stream", "video_id": "video10020", "sen_id": 222987}, {"caption": "a reporter talks about how tigers avoid attacks with the spots on the backs of their ears", "video_id": "video10020", "sen_id": 222988}, {"caption": "a tiger is watching the plains looking for opportune prey or potential dangers", "video_id": "video10020", "sen_id": 222989}, {"caption": "a striped tiger stands in a field of tall green grass", "video_id": "video10020", "sen_id": 222990}, {"caption": "looks like this fierce tiger cub is eyeing something interesting as its next prey", "video_id": "video10020", "sen_id": 222991}, {"caption": "a tiger in the zoo watching some thingit drinks the water", "video_id": "video10020", "sen_id": 222992}, {"caption": "in a wildlife channel they tell about the tiger on the screen", "video_id": "video10020", "sen_id": 222993}, {"caption": "a tiger is outside and stalking its prey", "video_id": "video10020", "sen_id": 222994}, {"caption": "a tiger lurks in the field of green grass", "video_id": "video10020", "sen_id": 222995}, {"caption": "in a green forest a tiger is looking its surroundings moving its head", "video_id": "video10020", "sen_id": 222996}, {"caption": "a tiger with white spots on the back of its ears can help it s cubs escape an attack due to the fact that other preditors will be distracted by the spots", "video_id": "video10020", "sen_id": 222997}, {"caption": "a man speaking about the white spots on the tiger s ears", "video_id": "video10020", "sen_id": 222998}, {"caption": "a tiger is roaming around out side", "video_id": "video10020", "sen_id": 222999}, {"caption": "different people are talking about their insecurities throughout life", "video_id": "video10955", "sen_id": 223000}, {"caption": "a woman is holding her baby and a man is talking", "video_id": "video10955", "sen_id": 223001}, {"caption": "a man and two women are talking about facial problems such as acne", "video_id": "video10955", "sen_id": 223002}, {"caption": "a lady holds a baby a man and a different lady talk to the camera about their insecurities", "video_id": "video10955", "sen_id": 223003}, {"caption": "a man a woman and a mother describe their issues with body insecurity in confessional interviews", "video_id": "video10955", "sen_id": 223004}, {"caption": "several different people talk about their body image issues", "video_id": "video10955", "sen_id": 223005}, {"caption": "a woman with black hair talking in a big room", "video_id": "video10955", "sen_id": 223006}, {"caption": "there is a shirt man talking from a room", "video_id": "video10955", "sen_id": 223007}, {"caption": "three adults take turns talking to the camera about their insecurities including stretch marks large ears and acne", "video_id": "video10955", "sen_id": 223008}, {"caption": "a woman in a pink plaid shirt and a baby then a man then a dark haired woman all talking", "video_id": "video10955", "sen_id": 223009}, {"caption": "two different women and one man each mentioning some physical thing they are self conscious about", "video_id": "video10955", "sen_id": 223010}, {"caption": "two persons with a kid is speaking each other", "video_id": "video10955", "sen_id": 223011}, {"caption": "a man and a woman are sitting in a white room with windows", "video_id": "video10955", "sen_id": 223012}, {"caption": "people sit and talk about acne and the effects of it", "video_id": "video10955", "sen_id": 223013}, {"caption": "a black haired woman is speaking inside", "video_id": "video10955", "sen_id": 223014}, {"caption": "there is a shirt man talking from a hall", "video_id": "video10955", "sen_id": 223015}, {"caption": "a woman having with child a man talking with her", "video_id": "video10955", "sen_id": 223016}, {"caption": "a lady with her child talking to a man in her home", "video_id": "video10955", "sen_id": 223017}, {"caption": "a lady in black dress talking about something", "video_id": "video10955", "sen_id": 223018}, {"caption": "a woman with brown hair is talking about something", "video_id": "video10955", "sen_id": 223019}, {"caption": "ruins of ancient buildings are located in a outdoor museum area", "video_id": "video10227", "sen_id": 223020}, {"caption": "an ancient ruin of buildings in cancun mexico", "video_id": "video10227", "sen_id": 223021}, {"caption": "the ruins a", "video_id": "video10227", "sen_id": 223022}, {"caption": "mayan city ruins on the yucatan peninsula are shown devoid of people", "video_id": "video10227", "sen_id": 223023}, {"caption": "a video graphic about yucatan where a luxury hotel is shown in the background", "video_id": "video10227", "sen_id": 223024}, {"caption": "a video showing ancient ruins in an modern city", "video_id": "video10227", "sen_id": 223025}, {"caption": "its a old buildings in a museo maya de ca", "video_id": "video10227", "sen_id": 223026}, {"caption": "showing the ancient time of the country and the present time", "video_id": "video10227", "sen_id": 223027}, {"caption": "an historical place displaying on screne", "video_id": "video10227", "sen_id": 223028}, {"caption": "a man is talking as pictures of foreign ancient buildings are being shown", "video_id": "video10227", "sen_id": 223029}, {"caption": "video showing an ancient historical ruins which is an attractive tourist destination", "video_id": "video10227", "sen_id": 223030}, {"caption": "there is a building in front of clouded sky", "video_id": "video10227", "sen_id": 223031}, {"caption": "ancient civilizations shown here are a part of the lost world a person is heard saying you don t have to be indiana jones to discover these ancient civilizations", "video_id": "video10227", "sen_id": 223032}, {"caption": "a flag is hoisted in a building", "video_id": "video10227", "sen_id": 223033}, {"caption": "a man talks about maya de cancun as still pictures of mountains and rock formations are shown", "video_id": "video10227", "sen_id": 223034}, {"caption": "ruins of mayan cities sit in a lush green landscape", "video_id": "video10227", "sen_id": 223035}, {"caption": "there are acient mountain and building with nice carving done on it", "video_id": "video10227", "sen_id": 223036}, {"caption": "various shots of a foreign country and showing off landscapes", "video_id": "video10227", "sen_id": 223037}, {"caption": "a place to visit and also wonderful place to take pictures", "video_id": "video10227", "sen_id": 223038}, {"caption": "some ruined buildings are being filmed for tv", "video_id": "video10227", "sen_id": 223039}, {"caption": "a man is carriying a kitten out of the snow into the house", "video_id": "video11079", "sen_id": 223040}, {"caption": "a family rescues a kitten from the cold", "video_id": "video11079", "sen_id": 223041}, {"caption": "a young family brings a kitten into their home on a snowy day", "video_id": "video11079", "sen_id": 223042}, {"caption": "a man wearing a blue coat and his family carries a baby kitten in to a home out of the snow", "video_id": "video11079", "sen_id": 223043}, {"caption": "a family brings a kitten into their house on a cold snowy day", "video_id": "video11079", "sen_id": 223044}, {"caption": "a family saves a small kitten that they found outside in the snow", "video_id": "video11079", "sen_id": 223045}, {"caption": "during the winter a group of adults and children enters a house with a man carrying a white kitten", "video_id": "video11079", "sen_id": 223046}, {"caption": "a man in a blue cat surrounded by others is bringing a kitten into a house", "video_id": "video11079", "sen_id": 223047}, {"caption": "a man bringing a cat back to life right in front of a family's eyes", "video_id": "video11079", "sen_id": 223048}, {"caption": "a kitten is being brought into a home by a man as he is being followed by his family", "video_id": "video11079", "sen_id": 223049}, {"caption": "a family finds a kitten out in the snowthey bring it inside their home", "video_id": "video11079", "sen_id": 223050}, {"caption": "a man holding a frozen kitten when it comes back to life", "video_id": "video11079", "sen_id": 223051}, {"caption": "man in a blue and white jacket carrying a white kitten in his hands", "video_id": "video11079", "sen_id": 223052}, {"caption": "cold people wearing jackets carry a small kitten in from the snow", "video_id": "video11079", "sen_id": 223053}, {"caption": "a family is trying to save the life of a kitten", "video_id": "video11079", "sen_id": 223054}, {"caption": "a man in blue jacket is moving to his house with his women and kids", "video_id": "video11079", "sen_id": 223055}, {"caption": "a man brings the small cat from snow while his family follows him", "video_id": "video11079", "sen_id": 223056}, {"caption": "a family members have found a small puppy out side there house and taking into there house", "video_id": "video11079", "sen_id": 223057}, {"caption": "a family saves a frozen kitten from the snow and warms it up", "video_id": "video11079", "sen_id": 223058}, {"caption": "a family is walking with a kitty cat into their home", "video_id": "video11079", "sen_id": 223059}, {"caption": "a man is walking along a trail in the woods", "video_id": "video10878", "sen_id": 223060}, {"caption": "a man is walking along a trail making a video of himself", "video_id": "video10878", "sen_id": 223061}, {"caption": "a man is walking down a sidewalk in a large wooded area", "video_id": "video10878", "sen_id": 223062}, {"caption": "a man walks along a forest trail in a large city park", "video_id": "video10878", "sen_id": 223063}, {"caption": "a man narrates his walk along a woodland path", "video_id": "video10878", "sen_id": 223064}, {"caption": "a guy walks around on a small trail through a slightly wooded area", "video_id": "video10878", "sen_id": 223065}, {"caption": "a man walking down a trail in a wooded area", "video_id": "video10878", "sen_id": 223066}, {"caption": "there is someone walking to the forest", "video_id": "video10878", "sen_id": 223067}, {"caption": "a gentleman is taking a hike on a gorgeous trail discussing the local flowers", "video_id": "video10878", "sen_id": 223068}, {"caption": "a one way is shown on the deep forest and a guy is capturing the video in his camera", "video_id": "video10878", "sen_id": 223069}, {"caption": "a man is walking up a path while talking about flowers", "video_id": "video10878", "sen_id": 223070}, {"caption": "a man is walking down a trail and talking about what he sees", "video_id": "video10878", "sen_id": 223071}, {"caption": "a bald man notices changes outdoors as he walks quickly down a gray paved path through grass on one side and dense trees on the other while he passes a wooden bench", "video_id": "video10878", "sen_id": 223072}, {"caption": "a man is walking down a walkway like a forest", "video_id": "video10878", "sen_id": 223073}, {"caption": "a bald man in the woods is walking around", "video_id": "video10878", "sen_id": 223074}, {"caption": "a man passing a wooden bench while walking down a trail in the woods", "video_id": "video10878", "sen_id": 223075}, {"caption": "the man is making a video shoot on nature", "video_id": "video10878", "sen_id": 223076}, {"caption": "a person in a black shirt is walking through a forest trail", "video_id": "video10878", "sen_id": 223077}, {"caption": "a man is walking down a path through a wooded area", "video_id": "video10878", "sen_id": 223078}, {"caption": "a person is filming their stroll through a forest", "video_id": "video10878", "sen_id": 223079}, {"caption": "someone is recording a road with lots of trees", "video_id": "video10900", "sen_id": 223080}, {"caption": "an automobile drives along a mountain highway where the trees are changing color", "video_id": "video10900", "sen_id": 223081}, {"caption": "footage of a car traveling in the wilderness to music", "video_id": "video10900", "sen_id": 223082}, {"caption": "a person drives a car through a wooded area near the top of a mountain", "video_id": "video10900", "sen_id": 223083}, {"caption": "a person riding in a car and viewing the landscape of pine trees out the window", "video_id": "video10900", "sen_id": 223084}, {"caption": "a vehicle is traveling the states through beautiful green back country roads", "video_id": "video10900", "sen_id": 223085}, {"caption": "a person is seen here driving in less traffic road", "video_id": "video10900", "sen_id": 223086}, {"caption": "there is a sunny day someone travelling", "video_id": "video10900", "sen_id": 223087}, {"caption": "on the naturalist is driving and enjoying the forse beauty", "video_id": "video10900", "sen_id": 223088}, {"caption": "a person is driving a car through a forresty area", "video_id": "video10900", "sen_id": 223089}, {"caption": "someone films the side of a hill filled with trees as they drive in a vehicle", "video_id": "video10900", "sen_id": 223090}, {"caption": "a vehicle is moving very fats in the tough and rough roads", "video_id": "video10900", "sen_id": 223091}, {"caption": "moving vehile not shown but roads are shown", "video_id": "video10900", "sen_id": 223092}, {"caption": "fifty states travel long road travels and sides some trees", "video_id": "video10900", "sen_id": 223093}, {"caption": "perspective from a car driving on a mountain road", "video_id": "video10900", "sen_id": 223094}, {"caption": "there were a lot of trees along the road", "video_id": "video10900", "sen_id": 223095}, {"caption": "a vehicle moving in a straight road with no vehicles around", "video_id": "video10900", "sen_id": 223096}, {"caption": "a beautiful scenery while driving along the road with lots of trees and clouds", "video_id": "video10900", "sen_id": 223097}, {"caption": "some one taking a video by the moving vehicle", "video_id": "video10900", "sen_id": 223098}, {"caption": "someone is filming their trip to the forest", "video_id": "video10900", "sen_id": 223099}, {"caption": "plans for engineering something and some hardware pieces", "video_id": "video10897", "sen_id": 223100}, {"caption": "images of old microwave hardware such as co-axial circuits and a wave-guide", "video_id": "video10897", "sen_id": 223101}, {"caption": "a man describes a mechanical aparatus that can be used for science experiments", "video_id": "video10897", "sen_id": 223102}, {"caption": "a man discusses a system he has been working on for some time", "video_id": "video10897", "sen_id": 223103}, {"caption": "some hardware for a machine laid out on a table", "video_id": "video10897", "sen_id": 223104}, {"caption": "electronic components and metal parts sit on a blue table", "video_id": "video10897", "sen_id": 223105}, {"caption": "mechanical diagrams and hardware of vehicle parts and pieces", "video_id": "video10897", "sen_id": 223106}, {"caption": "a vintage technical explanation of electronics emission capture describes the need for miniaturization of microwave radar waveguides while various pieces parts are shown", "video_id": "video10897", "sen_id": 223107}, {"caption": "the narrator is explaining the goal of reducing the size of microwave hardware", "video_id": "video10897", "sen_id": 223108}, {"caption": "electronic circuits and parts are displayed on a table", "video_id": "video10897", "sen_id": 223109}, {"caption": "a man is describing the miniature components of advanced microwave hardware", "video_id": "video10897", "sen_id": 223110}, {"caption": "focus on the inside components of old microwaves while explaining that the parts are smaller now", "video_id": "video10897", "sen_id": 223111}, {"caption": "there is a man explains about some hardware", "video_id": "video10897", "sen_id": 223112}, {"caption": "machine is making some designs in steel plated", "video_id": "video10897", "sen_id": 223113}, {"caption": "person presenting the machine and its metal parts", "video_id": "video10897", "sen_id": 223114}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video10897", "sen_id": 223115}, {"caption": "a man explaining about something on machine and its tools", "video_id": "video10897", "sen_id": 223116}, {"caption": "a series of diagrams fades out to be replaced by large cast iron mechanical parts", "video_id": "video10897", "sen_id": 223117}, {"caption": "there are parts from some engine placed on the table", "video_id": "video10897", "sen_id": 223118}, {"caption": "a camera is panning over some small things", "video_id": "video10897", "sen_id": 223119}, {"caption": "a kid playing the last college basketball video game", "video_id": "video12970", "sen_id": 223120}, {"caption": "a man is playing campus hoops and saying how they dont update it anymore", "video_id": "video12970", "sen_id": 223121}, {"caption": "i video game character taking shots on a basketball court", "video_id": "video12970", "sen_id": 223122}, {"caption": "kid talking over a basketball video game giving his opinion on it", "video_id": "video12970", "sen_id": 223123}, {"caption": "a video game character practices shooting basketballs into a hoop", "video_id": "video12970", "sen_id": 223124}, {"caption": "a man is talking about a basketball video game while a animated basketball player is shooting", "video_id": "video12970", "sen_id": 223125}, {"caption": "its a animated a person playing a basket ball", "video_id": "video12970", "sen_id": 223126}, {"caption": "animation on how to put ball in the basket is being shown", "video_id": "video12970", "sen_id": 223127}, {"caption": "basket ball animated game and a player making shoot with the ball", "video_id": "video12970", "sen_id": 223128}, {"caption": "a game play scene about a 3d game show", "video_id": "video12970", "sen_id": 223129}, {"caption": "a cartoon video game player playing basket ball jumping inside stadium displaying on screen", "video_id": "video12970", "sen_id": 223130}, {"caption": "there is a man playing basketball in a court lonely", "video_id": "video12970", "sen_id": 223131}, {"caption": "the net ball player getting ready for the game", "video_id": "video12970", "sen_id": 223132}, {"caption": "animated men playing basket ball and shooting the ball more times", "video_id": "video12970", "sen_id": 223133}, {"caption": "an animation film is playing on a screen", "video_id": "video12970", "sen_id": 223134}, {"caption": "a video game of a basket ball game the character is making shots into the basket", "video_id": "video12970", "sen_id": 223135}, {"caption": "pictures of basket ball players and there stats than a man in a grey t shirt and blue shorts throwing a basket ball at a hoop", "video_id": "video12970", "sen_id": 223136}, {"caption": "a man cartoon is playing basket ball", "video_id": "video12970", "sen_id": 223137}, {"caption": "animated person playing basketball and shooting the ball in different way in the tent", "video_id": "video12970", "sen_id": 223138}, {"caption": "a man wearing blue shorts is shooting a basketball into a basketball hoop on an outside court", "video_id": "video12970", "sen_id": 223139}, {"caption": "video from a satellite that is in outer space", "video_id": "video12565", "sen_id": 223140}, {"caption": "a set of instructions is provided for a live stream related to the space program", "video_id": "video12565", "sen_id": 223141}, {"caption": "white text on a black background then footage from a satellite above the earth", "video_id": "video12565", "sen_id": 223142}, {"caption": "a satellite is floating over what appears to be the earth", "video_id": "video12565", "sen_id": 223143}, {"caption": "a partial view of some panels of a satellite in outer space", "video_id": "video12565", "sen_id": 223144}, {"caption": "a satellite is revolving in in its orbit and a portion of earth is seen", "video_id": "video12565", "sen_id": 223145}, {"caption": "a satellite is orbitiing the earth and sending a picture of the earth from space", "video_id": "video12565", "sen_id": 223146}, {"caption": "a satellite is shown orbiting an unknown planet in a computer graphic", "video_id": "video12565", "sen_id": 223147}, {"caption": "a satellite is floating high above the earth s against the dark night sky", "video_id": "video12565", "sen_id": 223148}, {"caption": "a written description of how framing and freezing images works followed by an image of a craft in space", "video_id": "video12565", "sen_id": 223149}, {"caption": "its showing the textas soon as the craft materializesthe live feed controller quickly freezes the frameinturn freezing the anomaly in place for a few extra seconds of viewing", "video_id": "video12565", "sen_id": 223150}, {"caption": "the space station above a planet in space", "video_id": "video12565", "sen_id": 223151}, {"caption": "there is a satelight moving in to the darkness", "video_id": "video12565", "sen_id": 223152}, {"caption": "a great view of earth and possibly a ufo from the iss", "video_id": "video12565", "sen_id": 223153}, {"caption": "an unknown space craft shows up in a video of space", "video_id": "video12565", "sen_id": 223154}, {"caption": "a dark room is being filmed in a place", "video_id": "video12565", "sen_id": 223155}, {"caption": "white writing is on a black screen and an alien head logo is in the corner", "video_id": "video12565", "sen_id": 223156}, {"caption": "there are descriptions shown in between shots of dark blurred items", "video_id": "video12565", "sen_id": 223157}, {"caption": "text of describing a a craft anomaly in space and images are seen", "video_id": "video12565", "sen_id": 223158}, {"caption": "the space shuttle is shown in outer space with earth visible in the background", "video_id": "video12565", "sen_id": 223159}, {"caption": "there is a pair of shorts and a top that are being displayed", "video_id": "video11473", "sen_id": 223160}, {"caption": "showing different red skirts shorts and dresses on a hangar", "video_id": "video11473", "sen_id": 223161}, {"caption": "a person describes a purple women's top that coordinates with other clothing", "video_id": "video11473", "sen_id": 223162}, {"caption": "a blouse is shown on how to wear it several ways with same blouse", "video_id": "video11473", "sen_id": 223163}, {"caption": "a clip showing off various items of maroon clothing", "video_id": "video11473", "sen_id": 223164}, {"caption": "a maroon shirt is shown being worn numerous ways", "video_id": "video11473", "sen_id": 223165}, {"caption": "a burgundy shirt a burgundy sweater and burgundy shorts", "video_id": "video11473", "sen_id": 223166}, {"caption": "a red long sleeve shirt turning into a spaggetti strapped shirt then to red shorts", "video_id": "video11473", "sen_id": 223167}, {"caption": "a sweater a dress and a pair of shorts hanging on hangers", "video_id": "video11473", "sen_id": 223168}, {"caption": "a maroon tank top with matching shorts is displayed", "video_id": "video11473", "sen_id": 223169}, {"caption": "different types of red clothing are being displayed", "video_id": "video11473", "sen_id": 223170}, {"caption": "video showing clothes display", "video_id": "video11473", "sen_id": 223171}, {"caption": "a red blouse and similar red clothing items on a hangar", "video_id": "video11473", "sen_id": 223172}, {"caption": "there are some video clip about an advertisement of some garments", "video_id": "video11473", "sen_id": 223173}, {"caption": "a slideshow of women s matching top and bottoms for a maroon colored outfit", "video_id": "video11473", "sen_id": 223174}, {"caption": "several women s clothing items are shown they are all wine-colored", "video_id": "video11473", "sen_id": 223175}, {"caption": "different still photos of dark red articles of clothes are displayed", "video_id": "video11473", "sen_id": 223176}, {"caption": "women s tops in shades of purple are posed for pictures against a white background", "video_id": "video11473", "sen_id": 223177}, {"caption": "a red dresses clothes design wearing displaying on screen", "video_id": "video11473", "sen_id": 223178}, {"caption": "a pair of red shorts are hanging from a hangar", "video_id": "video11473", "sen_id": 223179}, {"caption": "a little dog is excitedly walking towards someone who is calling him", "video_id": "video11436", "sen_id": 223180}, {"caption": "a dog is walking around the park with its owner", "video_id": "video11436", "sen_id": 223181}, {"caption": "a woman beckons a wagging puppy on the grass", "video_id": "video11436", "sen_id": 223182}, {"caption": "a small dog walks back and forth between her owner's feet in a grassy area", "video_id": "video11436", "sen_id": 223183}, {"caption": "puppy follows female owner around for attention and owner films it", "video_id": "video11436", "sen_id": 223184}, {"caption": "a small black and brown dog walks through their master's feet", "video_id": "video11436", "sen_id": 223185}, {"caption": "i woman calls to a long haired dachshund puppy named piglet and the puppy whimpers at her feet", "video_id": "video11436", "sen_id": 223186}, {"caption": "a small dog named piglet walking around a womans legs on a grass lawn", "video_id": "video11436", "sen_id": 223187}, {"caption": "a small leg brown dog running on the grass land", "video_id": "video11436", "sen_id": 223188}, {"caption": "a woman is filming her tiny dog named pigglet who appears to be shy when it comes to meet other dogs", "video_id": "video11436", "sen_id": 223189}, {"caption": "the cute black dog is running here and there and licks the feet of he beautiful woman", "video_id": "video11436", "sen_id": 223190}, {"caption": "the lady communicating to the black dog and the god is responding to her", "video_id": "video11436", "sen_id": 223191}, {"caption": "a female calling her weenie dog piglet and speaking to her dog who follows her", "video_id": "video11436", "sen_id": 223192}, {"caption": "a lady talks to a cute puppy in her garden while she films him while he follows her playfully", "video_id": "video11436", "sen_id": 223193}, {"caption": "a woman with pink fingernail polish calls a puppy to her and begins playing with the puppy", "video_id": "video11436", "sen_id": 223194}, {"caption": "small puppy running on top of grass on a sunny day", "video_id": "video11436", "sen_id": 223195}, {"caption": "a small dog runs over to the person calling him", "video_id": "video11436", "sen_id": 223196}, {"caption": "a small dachsund puppy running around a womans feet", "video_id": "video11436", "sen_id": 223197}, {"caption": "a black color dog walking inside garden girl standing speaking displaying on screen", "video_id": "video11436", "sen_id": 223198}, {"caption": "a dog is running around on a lawn", "video_id": "video11436", "sen_id": 223199}, {"caption": "all doctors picking what cigarette brand they prefer", "video_id": "video12497", "sen_id": 223200}, {"caption": "black and white scene of a man smoking a cigarette at a desk in an office", "video_id": "video12497", "sen_id": 223201}, {"caption": "a doctor smokes a cigarette while sitting at a desk in an old commercial", "video_id": "video12497", "sen_id": 223202}, {"caption": "a doctor is sitting in his office smoking a cigarette", "video_id": "video12497", "sen_id": 223203}, {"caption": "old commercial about smoking cigarettes particularly doctors smoking them", "video_id": "video12497", "sen_id": 223204}, {"caption": "a doctor lighting and smoking a cigarette while looking at some paperwork", "video_id": "video12497", "sen_id": 223205}, {"caption": "a doctor is sitting at his desk smoking a cigarette when the nurse comes and hands him some papers", "video_id": "video12497", "sen_id": 223206}, {"caption": "a doctor lights up a cigarette he's in his office and goes over some paperwork", "video_id": "video12497", "sen_id": 223207}, {"caption": "a doctor in his office is smoking then a nurse comes over and gives him something then we see a man in his car lighting a cigarette", "video_id": "video12497", "sen_id": 223208}, {"caption": "there is a man a doctor smoking a cigarette", "video_id": "video12497", "sen_id": 223209}, {"caption": "a doctor sits behind a desk smoke a cigarette as a nurse hands him papers", "video_id": "video12497", "sen_id": 223210}, {"caption": "a man sitting at a desk in an office smoking a cigarette", "video_id": "video12497", "sen_id": 223211}, {"caption": "a doctor is smoking in the hospital", "video_id": "video12497", "sen_id": 223212}, {"caption": "a man smokes a cigarette while a nurse hands him a paper and a narrator speaks", "video_id": "video12497", "sen_id": 223213}, {"caption": "a man is sitting at a desk smoking while a voice is talking about different types of cigarettes", "video_id": "video12497", "sen_id": 223214}, {"caption": "a doctor is smoking in his officewhile reading papers that a nurse gave him", "video_id": "video12497", "sen_id": 223215}, {"caption": "an old black and white movie scene is playing on", "video_id": "video12497", "sen_id": 223216}, {"caption": "a doctor sitting at his desk is smoking a cigarette", "video_id": "video12497", "sen_id": 223217}, {"caption": "a cigarette pocket is kept on a table one lady in white and white dress is giving some papers to a man sitting behind a table holding a lighted cigarette on his right hand and going through the paper by smoking the cigarette", "video_id": "video12497", "sen_id": 223218}, {"caption": "a man in a car is looking at something", "video_id": "video12497", "sen_id": 223219}, {"caption": "some glass display cases containing animals such as turtles and frogs", "video_id": "video10712", "sen_id": 223220}, {"caption": "a kitchen shows where it keeps most of its live food", "video_id": "video10712", "sen_id": 223221}, {"caption": "a large group of crabs wait in a large tub to be cooked", "video_id": "video10712", "sen_id": 223222}, {"caption": "many different glass cages has many assorted forms of shellfish for sale in them", "video_id": "video10712", "sen_id": 223223}, {"caption": "i box of turtles are shown in a pet store", "video_id": "video10712", "sen_id": 223224}, {"caption": "a market in an asian country displays several types of seafood including live small crab in a tank", "video_id": "video10712", "sen_id": 223225}, {"caption": "there are crabs moving around a tank at a supermarket a camera moves past several tanks of live seafood at a market crabs of several types are in tanks at a market", "video_id": "video10712", "sen_id": 223226}, {"caption": "a person is walking around a store looking at various forms of seafood", "video_id": "video10712", "sen_id": 223227}, {"caption": "crabs are crawling around in a tank", "video_id": "video10712", "sen_id": 223228}, {"caption": "a fish market in an asian country with a large tank of crabs", "video_id": "video10712", "sen_id": 223229}, {"caption": "in this video some one is showing water animals", "video_id": "video10712", "sen_id": 223230}, {"caption": "fishes are kept in glass container", "video_id": "video10712", "sen_id": 223231}, {"caption": "many of sea foods are stored in the glass with", "video_id": "video10712", "sen_id": 223232}, {"caption": "a crab moving inside glass walking slowly swiftly displaying on screen", "video_id": "video10712", "sen_id": 223233}, {"caption": "someone is filming a thing full of crabs", "video_id": "video10712", "sen_id": 223234}, {"caption": "in this video there are showing all water animals", "video_id": "video10712", "sen_id": 223235}, {"caption": "in a container more insects are there", "video_id": "video10712", "sen_id": 223236}, {"caption": "a small tortoises are placed in the box", "video_id": "video10712", "sen_id": 223237}, {"caption": "a wide variety of live seafood primarily crabs is displayed", "video_id": "video10712", "sen_id": 223238}, {"caption": "someone is making some food in a metal bowl", "video_id": "video10712", "sen_id": 223239}, {"caption": "a speaking man wearing a salmon-pink shirt sits in a garden in front of a flowering shrub with petals that match his shirt", "video_id": "video12987", "sen_id": 223240}, {"caption": "a man does a television interview asking for gun control", "video_id": "video12987", "sen_id": 223241}, {"caption": "a man in a suit is delivering the news in front of a desk", "video_id": "video12987", "sen_id": 223242}, {"caption": "two men are on a news show and one in red talks to the camera about gun control", "video_id": "video12987", "sen_id": 223243}, {"caption": "two men talking on the news about current eventss", "video_id": "video12987", "sen_id": 223244}, {"caption": "a split screen of men and a man in a pink shirt in a garden talking", "video_id": "video12987", "sen_id": 223245}, {"caption": "a man in a pink collared shirt talks about gun control on the news", "video_id": "video12987", "sen_id": 223246}, {"caption": "a man explaining about the incident which is happened in virginia", "video_id": "video12987", "sen_id": 223247}, {"caption": "a man is being interviewed on a the cnn channel news", "video_id": "video12987", "sen_id": 223248}, {"caption": "a wearing a pink shirt sits with pink flowers in the background", "video_id": "video12987", "sen_id": 223249}, {"caption": "a gentleman with pink colour dress is talking about something through news", "video_id": "video12987", "sen_id": 223250}, {"caption": "a middle aged man in pink shirt is saying something to the reporter", "video_id": "video12987", "sen_id": 223251}, {"caption": "cnn virginia news crew murder father calls politicans", "video_id": "video12987", "sen_id": 223252}, {"caption": "a guy sits in a salmon shirt while being interviwed on cnn", "video_id": "video12987", "sen_id": 223253}, {"caption": "a new reader is interviewing an old person wearing pink shirt", "video_id": "video12987", "sen_id": 223254}, {"caption": "some one explaining the incident happened in virginia city", "video_id": "video12987", "sen_id": 223255}, {"caption": "the man on the news show talks to the newsman", "video_id": "video12987", "sen_id": 223256}, {"caption": "a person is being interviewed about a murder case", "video_id": "video12987", "sen_id": 223257}, {"caption": "the man in red shirt talks about gun control in a television news", "video_id": "video12987", "sen_id": 223258}, {"caption": "a guy in a pink shirt is talking on tv", "video_id": "video12987", "sen_id": 223259}, {"caption": "two women and a man compete in a resort drinking contest when one woman becomes sick and loses her balance", "video_id": "video11506", "sen_id": 223260}, {"caption": "two women and a man chug drinks", "video_id": "video11506", "sen_id": 223261}, {"caption": "three people in bathing suits compete in a drinking contest until one faints and falls over", "video_id": "video11506", "sen_id": 223262}, {"caption": "two women and a man in a drinking contest one of the woman gets disoriented and passes out hitting her head n the way down", "video_id": "video11506", "sen_id": 223263}, {"caption": "two women and one man are drinking alcohol at a table one woman is too intoxicated and ends up falling to the ground", "video_id": "video11506", "sen_id": 223264}, {"caption": "two women and a man are having a contest drinking frozen drinks and one woman passes out", "video_id": "video11506", "sen_id": 223265}, {"caption": "there is a juice drinking competition going on", "video_id": "video11506", "sen_id": 223266}, {"caption": "three people are lined up near a table to a do a drinking contest the girl on the left had one too many sips and got very tipsy", "video_id": "video11506", "sen_id": 223267}, {"caption": "two young woman and a man wear swimsuits at resort during drinking contest by pool when one faints", "video_id": "video11506", "sen_id": 223268}, {"caption": "a contest of drinks between 2 women 1 man", "video_id": "video11506", "sen_id": 223269}, {"caption": "some people are doing a thing out side", "video_id": "video11506", "sen_id": 223270}, {"caption": "one woman in a brown dress falls onto a table after drinking a drink through a long straw", "video_id": "video11506", "sen_id": 223271}, {"caption": "women fainted after drinking a soft-drink", "video_id": "video11506", "sen_id": 223272}, {"caption": "three people are getting ready for a drinking competition", "video_id": "video11506", "sen_id": 223273}, {"caption": "bunch of people getting ready to play game of getting drunk", "video_id": "video11506", "sen_id": 223274}, {"caption": "two women and a man in a drinking contest one woman collapses", "video_id": "video11506", "sen_id": 223275}, {"caption": "three people wearing swimwear at a pool resort play a drinking game when one faints", "video_id": "video11506", "sen_id": 223276}, {"caption": "there is 3 people in a daiquiri drinking contest one participant has had enough and falls over behind the table", "video_id": "video11506", "sen_id": 223277}, {"caption": "there is a black woman a blonde woman and a man competing in a slushy drinking competition where the black lady faints", "video_id": "video11506", "sen_id": 223278}, {"caption": "some people out side are doing a thing", "video_id": "video11506", "sen_id": 223279}, {"caption": "a man holding two girls walks into a building and then puts the girls on a couch with other girls that are tied up", "video_id": "video10742", "sen_id": 223280}, {"caption": "a crying older woman speaks before two men a young woman is abducted with her mouth taped and she is thrown into a group of seated women who are abducted with their mouths taped", "video_id": "video10742", "sen_id": 223281}, {"caption": "a man drags stumbling women with tape on their mouths and throw them on a couch", "video_id": "video10742", "sen_id": 223282}, {"caption": "a mother is asking for help finding her kidnapped daughter", "video_id": "video10742", "sen_id": 223283}, {"caption": "a woman tearfully speaks as people are gagged and led around a large room", "video_id": "video10742", "sen_id": 223284}, {"caption": "indian women in casual clothing gagged and handcuffed by men", "video_id": "video10742", "sen_id": 223285}, {"caption": "there are several young females that are being held against their will with tape to keep them gagged and handcuffed", "video_id": "video10742", "sen_id": 223286}, {"caption": "there is a woman crying in front of a man", "video_id": "video10742", "sen_id": 223287}, {"caption": "the maffiya gank kidnap the girls and sales the high party", "video_id": "video10742", "sen_id": 223288}, {"caption": "an indian woman cries young girls are taken hostage with their mouths taped and hands bound", "video_id": "video10742", "sen_id": 223289}, {"caption": "several teenagers on a couch all with white bandages over their mouths", "video_id": "video10742", "sen_id": 223290}, {"caption": "a hindi man and woman are speaking to someone that you can not see then the image goes to hostages all female hands bound and mouth tapped all being grouped together sitting in some type of nightclub", "video_id": "video10742", "sen_id": 223291}, {"caption": "people are being rushed with tape over their mouth", "video_id": "video10742", "sen_id": 223292}, {"caption": "an upset indian woman talking as a man drags girls into a large room with their mouths taped", "video_id": "video10742", "sen_id": 223293}, {"caption": "a group of people are being held hostage in a building", "video_id": "video10742", "sen_id": 223294}, {"caption": "a group of woman are taped in her mouth and kept somewhere", "video_id": "video10742", "sen_id": 223295}, {"caption": "a woman in a sari talks upset while images of people getting kidnapped are shown", "video_id": "video10742", "sen_id": 223296}, {"caption": "a indian movie scene is playing in the screen", "video_id": "video10742", "sen_id": 223297}, {"caption": "a woman in shear shawl is distressed recalling events", "video_id": "video10742", "sen_id": 223298}, {"caption": "video movie old man and woman standing speaking to other man kidnaping girl and pushing girl tied hand and mouth displaying on screen", "video_id": "video10742", "sen_id": 223299}, {"caption": "a woman showing people how to do their makeup correctly", "video_id": "video11707", "sen_id": 223300}, {"caption": "a woman doing her makeup and a narrator explaining how to do it", "video_id": "video11707", "sen_id": 223301}, {"caption": "a woman having makeup placed on her face", "video_id": "video11707", "sen_id": 223302}, {"caption": "a woman is putting makeup on her face as she narrates", "video_id": "video11707", "sen_id": 223303}, {"caption": "a woman is showing how to apply liner to shape her brows", "video_id": "video11707", "sen_id": 223304}, {"caption": "a young women shaping her eyebrows in front of the mirror", "video_id": "video11707", "sen_id": 223305}, {"caption": "a women is applying eye lliner for her eyes", "video_id": "video11707", "sen_id": 223306}, {"caption": "the woman is decorating her eyebrows and nose very carefully", "video_id": "video11707", "sen_id": 223307}, {"caption": "a woman applies eyebrow pencil in a tutorial set on a deep red background", "video_id": "video11707", "sen_id": 223308}, {"caption": "a women is doing eye - brows and explains about the eye make-up according to her face", "video_id": "video11707", "sen_id": 223309}, {"caption": "a woman showing a eyebrow fasion show", "video_id": "video11707", "sen_id": 223310}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video11707", "sen_id": 223311}, {"caption": "a woman using a brush is showing how to use make up and do the eye brows correctly", "video_id": "video11707", "sen_id": 223312}, {"caption": "a woman is applying eyebrow in black eyebrow pencil", "video_id": "video11707", "sen_id": 223313}, {"caption": "a woman narrates as she applies makeup to her face using brushes", "video_id": "video11707", "sen_id": 223314}, {"caption": "there is a woman drawing eyebrow nearby some flowers", "video_id": "video11707", "sen_id": 223315}, {"caption": "lady in black does up her her eyes brows with a eyebrow pencil", "video_id": "video11707", "sen_id": 223316}, {"caption": "a young asian woman describes and demonstrates applying makeup to her face", "video_id": "video11707", "sen_id": 223317}, {"caption": "an asian woman showing techniques for applying make up", "video_id": "video11707", "sen_id": 223318}, {"caption": "a woman is showing a man how to do makeup", "video_id": "video11707", "sen_id": 223319}, {"caption": "a man describes a therapy session of a boy who hears the voices of children", "video_id": "video12074", "sen_id": 223320}, {"caption": "there are two dark red armchairs with wooden handles in a living room", "video_id": "video12074", "sen_id": 223321}, {"caption": "a man voices over the story of a boy named alex", "video_id": "video12074", "sen_id": 223322}, {"caption": "a room contains two burgundy chairs placed across from each other", "video_id": "video12074", "sen_id": 223323}, {"caption": "two red chairs while a man describes children on audio", "video_id": "video12074", "sen_id": 223324}, {"caption": "there are two sofa and a plant on the floor", "video_id": "video12074", "sen_id": 223325}, {"caption": "number six is talking about the boy called alex", "video_id": "video12074", "sen_id": 223326}, {"caption": "a narrator explaining psychological difficulties that a 6 year old is having", "video_id": "video12074", "sen_id": 223327}, {"caption": "a man talks about a young boy that got therapy from a family friend", "video_id": "video12074", "sen_id": 223328}, {"caption": "a boy named alex has his story explained", "video_id": "video12074", "sen_id": 223329}, {"caption": "two maroon chairs separated by a house plant while a man narrates a story", "video_id": "video12074", "sen_id": 223330}, {"caption": "a room with two maroon and wood chairs facing each other with a plant on the wall between them while a man tells a story", "video_id": "video12074", "sen_id": 223331}, {"caption": "two brown single sofas are seen with a plant pot in between them", "video_id": "video12074", "sen_id": 223332}, {"caption": "it is an empty room with chairs and there is talking", "video_id": "video12074", "sen_id": 223333}, {"caption": "two dark red chairs in an office while a male voice narrates a story number six", "video_id": "video12074", "sen_id": 223334}, {"caption": "two comfortable wooden chairs with brown cushions are put in a room having a potted plant", "video_id": "video12074", "sen_id": 223335}, {"caption": "a building collapse then two chairs next to each other in a room", "video_id": "video12074", "sen_id": 223336}, {"caption": "a man is telling a story about a person alex", "video_id": "video12074", "sen_id": 223337}, {"caption": "someone is recording his room and talking about the enterior", "video_id": "video12074", "sen_id": 223338}, {"caption": "some red and brown chairs are in a room", "video_id": "video12074", "sen_id": 223339}, {"caption": "a soccer team plays on thick green grass by rolling hills and a boy accidentally kicks a soccer ball into his groin near a residential community", "video_id": "video10241", "sen_id": 223340}, {"caption": "two compilations of soccer", "video_id": "video10241", "sen_id": 223341}, {"caption": "a group of people are playing soccer against each other", "video_id": "video10241", "sen_id": 223342}, {"caption": "two teams of soccer players are involved in a game in a large open field", "video_id": "video10241", "sen_id": 223343}, {"caption": "there is a garbage can in the foreground we are watching a soccer game being played on a green field a young man is playing alone with a soccer ball he injures himself by kicking the ball into his groin", "video_id": "video10241", "sen_id": 223344}, {"caption": "a group of young soccer players are playing a game of soccer", "video_id": "video10241", "sen_id": 223345}, {"caption": "two teams are playing football in an open grass ground", "video_id": "video10241", "sen_id": 223346}, {"caption": "on a catchy grassy ground people play football", "video_id": "video10241", "sen_id": 223347}, {"caption": "two footballers fail hilariously", "video_id": "video10241", "sen_id": 223348}, {"caption": "a group playing football and the team players are trying to make a goal but fails a boy testing some football tricks and he gets a shot accidentally to his penis", "video_id": "video10241", "sen_id": 223349}, {"caption": "soccer players run after the ball in the field", "video_id": "video10241", "sen_id": 223350}, {"caption": "there are some players playing football on the grass", "video_id": "video10241", "sen_id": 223351}, {"caption": "on a green grassy ground people play football and kid kicks the ball to his balls", "video_id": "video10241", "sen_id": 223352}, {"caption": "two soccer teams on soccer field plating soccer", "video_id": "video10241", "sen_id": 223353}, {"caption": "a sports team is playing soccer in a field", "video_id": "video10241", "sen_id": 223354}, {"caption": "a group of soccer player are playing on a field", "video_id": "video10241", "sen_id": 223355}, {"caption": "in the green grass land the black tshirt wear team played the foot ball in very well", "video_id": "video10241", "sen_id": 223356}, {"caption": "a football match is playing on a ground and boy alone playing a football", "video_id": "video10241", "sen_id": 223357}, {"caption": "a plays with a soccer ball and gets hit in the groin", "video_id": "video10241", "sen_id": 223358}, {"caption": "football match the players are playing on the ground the boy is also practice the football alone", "video_id": "video10241", "sen_id": 223359}, {"caption": "a woman describing the process of expanding a campus", "video_id": "video10981", "sen_id": 223360}, {"caption": "a team of four people are looking at a layout of a new building plan", "video_id": "video10981", "sen_id": 223361}, {"caption": "people are discussing and going over some building plans", "video_id": "video10981", "sen_id": 223362}, {"caption": "a group of people in hard hats gather around a table and look over blueprints and other papers", "video_id": "video10981", "sen_id": 223363}, {"caption": "a woman talks about diferent parts of a construction project", "video_id": "video10981", "sen_id": 223364}, {"caption": "a woman talking about expanding the campus needing miles of new cables and wifi hotspots to do that and then it shows a construction team in hard hats looking at the plans to it", "video_id": "video10981", "sen_id": 223365}, {"caption": "a white women with short blond hair talking to camera", "video_id": "video10981", "sen_id": 223366}, {"caption": "a woman discussing the expansion of a campus and how technology is the most important aspect", "video_id": "video10981", "sen_id": 223367}, {"caption": "a few people in construction hats looking at blueprints of a building", "video_id": "video10981", "sen_id": 223368}, {"caption": "a woman discussing technology needs and images of the same woman wearing a red hard hat discussing building plans with 3 men", "video_id": "video10981", "sen_id": 223369}, {"caption": "a group of workers are looking at papers for a job", "video_id": "video10981", "sen_id": 223370}, {"caption": "a woman talking about how lots of wires and wifi hotspots are critical to expanding infrastructure", "video_id": "video10981", "sen_id": 223371}, {"caption": "a woman talks about a college campus that is going through an expansion", "video_id": "video10981", "sen_id": 223372}, {"caption": "a woman in a maroon top narrates the expansion of a college campus including laying new cables for wifi", "video_id": "video10981", "sen_id": 223373}, {"caption": "a blonde women with short hair is talking about construction site", "video_id": "video10981", "sen_id": 223374}, {"caption": "this is a woman on a construction site of a campus", "video_id": "video10981", "sen_id": 223375}, {"caption": "a woman talks about the construction needs of an expanding campus", "video_id": "video10981", "sen_id": 223376}, {"caption": "a truck dumps something a woman sits and talks and a group of people discuss plans", "video_id": "video10981", "sen_id": 223377}, {"caption": "a college is expanding its campus so needs miles of cables to support the new technology", "video_id": "video10981", "sen_id": 223378}, {"caption": "some people with safety hats are in a building", "video_id": "video10981", "sen_id": 223379}, {"caption": "a montage of women in different formal dresses is set to music on a black background", "video_id": "video11743", "sen_id": 223380}, {"caption": "woman wearing ballgowns and sequined dresses flash across the screen", "video_id": "video11743", "sen_id": 223381}, {"caption": "a video with stills of many beautiful women's gowns and dresses photos of several women's gowns and dresses shown as a video", "video_id": "video11743", "sen_id": 223382}, {"caption": "pictures of women in assorted formal gowns pass by like it was a slide show", "video_id": "video11743", "sen_id": 223383}, {"caption": "ladies are pictured in different dresses as they show them for fashion", "video_id": "video11743", "sen_id": 223384}, {"caption": "a video is displaying formal gowns worn by models", "video_id": "video11743", "sen_id": 223385}, {"caption": "different women is shown in different poses wearing formal dresses of different colors and styles", "video_id": "video11743", "sen_id": 223386}, {"caption": "women in blue red and black evening gowns", "video_id": "video11743", "sen_id": 223387}, {"caption": "a fashionable woman wearing evening gowns is shown as a slideshow", "video_id": "video11743", "sen_id": 223388}, {"caption": "different still photos of women in formal dresses are set to music", "video_id": "video11743", "sen_id": 223389}, {"caption": "the beautiful girls are posing in different attires and makeups", "video_id": "video11743", "sen_id": 223390}, {"caption": "a very pretty girl with different kind of dress are very beautiful", "video_id": "video11743", "sen_id": 223391}, {"caption": "the women wear the formal gowns with their hair styled", "video_id": "video11743", "sen_id": 223392}, {"caption": "different women pose in many styles of elegant dresses", "video_id": "video11743", "sen_id": 223393}, {"caption": "various women model a glamorous ensemble of different colorful evening dresses", "video_id": "video11743", "sen_id": 223394}, {"caption": "a slide show of various models posing in fancy dresses during photo shoots", "video_id": "video11743", "sen_id": 223395}, {"caption": "a slideshow of images featuring women in various formal dresses is set to music", "video_id": "video11743", "sen_id": 223396}, {"caption": "women wearing gowns pose for pictures in different sets and colors", "video_id": "video11743", "sen_id": 223397}, {"caption": "this is photo suite and its heaving than girls", "video_id": "video11743", "sen_id": 223398}, {"caption": "sexy brunette posing for the camera on screen", "video_id": "video11743", "sen_id": 223399}, {"caption": "man in black turtleneck talks about viewing stars from telescope against night sky background", "video_id": "video12774", "sen_id": 223400}, {"caption": "a man is shown talking about stars and constellations", "video_id": "video12774", "sen_id": 223401}, {"caption": "a man is speaking with a universe background with many stars about the big dipser", "video_id": "video12774", "sen_id": 223402}, {"caption": "a man with chubby red cheeks stands in front of a star filled sky", "video_id": "video12774", "sen_id": 223403}, {"caption": "a guy in a turtle neck sweater talks about the stars and space", "video_id": "video12774", "sen_id": 223404}, {"caption": "a man talking with starlight on his face then talking about constellations", "video_id": "video12774", "sen_id": 223405}, {"caption": "a man is talking about the stars in the sky", "video_id": "video12774", "sen_id": 223406}, {"caption": "footage of a show from adult swim where a man is talking about constellations", "video_id": "video12774", "sen_id": 223407}, {"caption": "a man singing a song in a day time show for women", "video_id": "video12774", "sen_id": 223408}, {"caption": "a man is speaking about astronomy with a starry background", "video_id": "video12774", "sen_id": 223409}, {"caption": "an astronomer describes the way he looks at stars in the night sky", "video_id": "video12774", "sen_id": 223410}, {"caption": "a clean shaved man with wearing black t-shirt talking", "video_id": "video12774", "sen_id": 223411}, {"caption": "a man is talking about how much fun stars can be", "video_id": "video12774", "sen_id": 223412}, {"caption": "a man talking about looking at stars through his telescope", "video_id": "video12774", "sen_id": 223413}, {"caption": "afternoon review the daytime show for womenthe person talks with the background of galaxy picture", "video_id": "video12774", "sen_id": 223414}, {"caption": "a tv programe tittle afeternoon review discussing about movements of stars", "video_id": "video12774", "sen_id": 223415}, {"caption": "there is a man talking about planets", "video_id": "video12774", "sen_id": 223416}, {"caption": "a man withe blonde hair talking about stars he sees in the sky", "video_id": "video12774", "sen_id": 223417}, {"caption": "a man explains how he enjoys watching stars in outer space", "video_id": "video12774", "sen_id": 223418}, {"caption": "a man is speaking about the stars and physics", "video_id": "video12774", "sen_id": 223419}, {"caption": "man in black outfit throwing a football at a moving object", "video_id": "video12966", "sen_id": 223420}, {"caption": "a man in shorts describes throwing a football at a towed target then celebrates after hitting it", "video_id": "video12966", "sen_id": 223421}, {"caption": "a man throws a football pass at a moving object", "video_id": "video12966", "sen_id": 223422}, {"caption": "a man out in a field throwing a football at a moving target being pulled by a truck and hits it", "video_id": "video12966", "sen_id": 223423}, {"caption": "a man stands on a grassy field by a dirt road holding a football a pickup truck hauls a flatbed trailer with a box at the end the man throws the football to the other side between the passing truck and the box", "video_id": "video12966", "sen_id": 223424}, {"caption": "a young man throws a football at a receiver that is being driven along the road at 40 miles per hour", "video_id": "video12966", "sen_id": 223425}, {"caption": "fat man in shorts and black shirt throwing a football at a target", "video_id": "video12966", "sen_id": 223426}, {"caption": "the man standing in the field throws the football into the target being pulled by the truck", "video_id": "video12966", "sen_id": 223427}, {"caption": "a man throws a football onto a truck", "video_id": "video12966", "sen_id": 223428}, {"caption": "man successfully throws a football to the intended target the target is passing by on a truck", "video_id": "video12966", "sen_id": 223429}, {"caption": "a man throws a football on an overcast day on a moving target", "video_id": "video12966", "sen_id": 223430}, {"caption": "the man threw up the rugby ball lorry", "video_id": "video12966", "sen_id": 223431}, {"caption": "a man throwing a football at a moving target pulled behind a truck", "video_id": "video12966", "sen_id": 223432}, {"caption": "a man wearing a black and white t shirt stands in a field and throws a football over a moving vehicle", "video_id": "video12966", "sen_id": 223433}, {"caption": "a man throws a football at container being pulled behind a truck moving at 40mph", "video_id": "video12966", "sen_id": 223434}, {"caption": "a man with black t-shirt throwing a ball to truck", "video_id": "video12966", "sen_id": 223435}, {"caption": "a man through a ball in to the moving vehicle", "video_id": "video12966", "sen_id": 223436}, {"caption": "a man in shorts and wearing black and white cap throws on the field", "video_id": "video12966", "sen_id": 223437}, {"caption": "a man throwing a paper playfully on a truck which is moving fast", "video_id": "video12966", "sen_id": 223438}, {"caption": "a man is holding a foot ball out side", "video_id": "video12966", "sen_id": 223439}, {"caption": "a man with a thick black beard wearing a skullcap and wire-frame eyeglasses smiles broadly and raises his right hand in greeting", "video_id": "video10576", "sen_id": 223440}, {"caption": "a bearded man wearing glasses waves at a golden trophy while showing his teeth", "video_id": "video10576", "sen_id": 223441}, {"caption": "a man is wearing an orange shirt in a jail and a trophy is being displayed in a room", "video_id": "video10576", "sen_id": 223442}, {"caption": "a bearded middle eastern man is released and a rugby world cup trophy is shown", "video_id": "video10576", "sen_id": 223443}, {"caption": "a man in a prison outfit smiling and the engraved bottom of a trophy", "video_id": "video10576", "sen_id": 223444}, {"caption": "a man wearing a red and white shirt and glasses waving at the camera", "video_id": "video10576", "sen_id": 223445}, {"caption": "a man with beard and spectacles posing with a calm face", "video_id": "video10576", "sen_id": 223446}, {"caption": "a man is talking on tv in a news channel", "video_id": "video10576", "sen_id": 223447}, {"caption": "music is playing while a picture is shown saying shaker aamer released and then a picture of rugby world cup is shown next", "video_id": "video10576", "sen_id": 223448}, {"caption": "a person wearing an orange suit waving and a scene of a trophy on display", "video_id": "video10576", "sen_id": 223449}, {"caption": "bearded guy in glasses waves to the camera", "video_id": "video10576", "sen_id": 223450}, {"caption": "a breif update in just captions about an inmate who was released and the rugby world cup final", "video_id": "video10576", "sen_id": 223451}, {"caption": "mania nightclub fire shaker aamer released rugby world cup final", "video_id": "video10576", "sen_id": 223452}, {"caption": "news of a prisoner realeased from jail and display of a world cup trophy", "video_id": "video10576", "sen_id": 223453}, {"caption": "an image of shaker aameer and rugby world cup is being displayed here", "video_id": "video10576", "sen_id": 223454}, {"caption": "a muslim terrorist is smiling for the camera", "video_id": "video10576", "sen_id": 223455}, {"caption": "in this video there some news are showing", "video_id": "video10576", "sen_id": 223456}, {"caption": "the rugby world cup final england 2015 in", "video_id": "video10576", "sen_id": 223457}, {"caption": "a man in orange suit wave a trophy is displayed in center of room that has a blue wall", "video_id": "video10576", "sen_id": 223458}, {"caption": "news headlines are being telecast in the chennels", "video_id": "video10576", "sen_id": 223459}, {"caption": "a young woman is speaking while rubbing a 50 spf face cream all over her face using both fingers on both hands", "video_id": "video11499", "sen_id": 223460}, {"caption": "a woman is applying makeup to her face while explaining the product", "video_id": "video11499", "sen_id": 223461}, {"caption": "a girl is apply makeup and explaining the benefits of the products she is using", "video_id": "video11499", "sen_id": 223462}, {"caption": "a young woman describes and demonstrates a make-up technique she uses", "video_id": "video11499", "sen_id": 223463}, {"caption": "a woman puts her makeup on while listing the benefits of the product", "video_id": "video11499", "sen_id": 223464}, {"caption": "a woman gives a makeup tutorial for online viewers", "video_id": "video11499", "sen_id": 223465}, {"caption": "a woman demonstrating how to blend a cream onto your face", "video_id": "video11499", "sen_id": 223466}, {"caption": "a young woman describes and demonstrates a makeup techniue that she uses", "video_id": "video11499", "sen_id": 223467}, {"caption": "woman applying cream to her face some sort of cosmetic", "video_id": "video11499", "sen_id": 223468}, {"caption": "a woman talking and rubbing her face with her fingers", "video_id": "video11499", "sen_id": 223469}, {"caption": "a young woman placing some cream on an rubbing it on her face", "video_id": "video11499", "sen_id": 223470}, {"caption": "a young female describes and demonstrates a makeup technique", "video_id": "video11499", "sen_id": 223471}, {"caption": "a woman applies foundation while talking about its benefits", "video_id": "video11499", "sen_id": 223472}, {"caption": "a young girl using and talking about a wonderful multi use minimal face make-up product", "video_id": "video11499", "sen_id": 223473}, {"caption": "a girl with brown hair is holding up a tube of makeup and applying it to her face", "video_id": "video11499", "sen_id": 223474}, {"caption": "a lady is explaining about a multiuse product for a face she states it uses spf to protect the face", "video_id": "video11499", "sen_id": 223475}, {"caption": "a review of a multi use product from a young woman", "video_id": "video11499", "sen_id": 223476}, {"caption": "a girl with blond hair and light skin is applying any cream on her face", "video_id": "video11499", "sen_id": 223477}, {"caption": "a woman is applying facial product on her face", "video_id": "video11499", "sen_id": 223478}, {"caption": "a woman with brown hair is talking about something", "video_id": "video11499", "sen_id": 223479}, {"caption": "a man adding oil to a hot pot and meat to milk", "video_id": "video12053", "sen_id": 223480}, {"caption": "a man adds milk to some meat he is cooking", "video_id": "video12053", "sen_id": 223481}, {"caption": "a man dumps meat and seasoning in a large silver bowl on the stove", "video_id": "video12053", "sen_id": 223482}, {"caption": "someone is preparing a dish in a pot adding milk and oil", "video_id": "video12053", "sen_id": 223483}, {"caption": "two hands in a kitchen at a stove prepare a dish that has milk oil and beans in it", "video_id": "video12053", "sen_id": 223484}, {"caption": "a man standing at a stove in a kitchen is demonstrating how to cook some food", "video_id": "video12053", "sen_id": 223485}, {"caption": "big fishes are put in metal vessels adds oil to it by a young man", "video_id": "video12053", "sen_id": 223486}, {"caption": "in this cooking video a man preparing a meat dish to do so he pours a little bit of olive oil in a stainless steel pan", "video_id": "video12053", "sen_id": 223487}, {"caption": "someone cooking pork chops and teaching how they do it", "video_id": "video12053", "sen_id": 223488}, {"caption": "person adding ingredients to a mixing bowl in a kitchen area", "video_id": "video12053", "sen_id": 223489}, {"caption": "a man puts the ingredients to prepare food into a vessel with oil", "video_id": "video12053", "sen_id": 223490}, {"caption": "a man pouring stuff into a pan to cook on the stove", "video_id": "video12053", "sen_id": 223491}, {"caption": "a man in a green shirt is cooking some chops", "video_id": "video12053", "sen_id": 223492}, {"caption": "a man is cooking some non-vegetarian dish by pouring some milk into it and adding oil in other pan", "video_id": "video12053", "sen_id": 223493}, {"caption": "showing receipe an putting 2 packet of milk and the dish under prepartion on gas stove", "video_id": "video12053", "sen_id": 223494}, {"caption": "in the kitchen someone pouring oil to a pan", "video_id": "video12053", "sen_id": 223495}, {"caption": "a man wearing black is putting ingredients into a pot as he cooks on the stove", "video_id": "video12053", "sen_id": 223496}, {"caption": "a food recipe being created in a wok with music in the background", "video_id": "video12053", "sen_id": 223497}, {"caption": "a man with green t-shirt is preparing a non-veg dish by poring some milk into it then he adds some oil in other pan", "video_id": "video12053", "sen_id": 223498}, {"caption": "a person cooking a curry in the pan on stove", "video_id": "video12053", "sen_id": 223499}, {"caption": "a team in black and a team in white play men's volleyball", "video_id": "video11208", "sen_id": 223500}, {"caption": "a volleyball game between a black team and a white team", "video_id": "video11208", "sen_id": 223501}, {"caption": "a clip really aggressive volleyball spikes", "video_id": "video11208", "sen_id": 223502}, {"caption": "high school volleyball highlights in which players are spiking the ball to the opposing team", "video_id": "video11208", "sen_id": 223503}, {"caption": "a group of young boys playing volleyball", "video_id": "video11208", "sen_id": 223504}, {"caption": "a group of males playing volleyball in a basketball court", "video_id": "video11208", "sen_id": 223505}, {"caption": "a group of people dressed in black and white playing basketball", "video_id": "video11208", "sen_id": 223506}, {"caption": "two men's teams play volleyball in a gymnasium", "video_id": "video11208", "sen_id": 223507}, {"caption": "a group of boys playing each other in volleyball", "video_id": "video11208", "sen_id": 223508}, {"caption": "two volleyball teams with male players lob the ball over the net to try and score a point", "video_id": "video11208", "sen_id": 223509}, {"caption": "two male basketball teams duke it out to see who will win the game", "video_id": "video11208", "sen_id": 223510}, {"caption": "two separate basket ball teams are playing each other in gymnasiums", "video_id": "video11208", "sen_id": 223511}, {"caption": "some guys playing volleyball in a gymnasium on teams", "video_id": "video11208", "sen_id": 223512}, {"caption": "music is playing while a boys volleyball game is shown one of the teams is in white and black while the other team is in solid black", "video_id": "video11208", "sen_id": 223513}, {"caption": "some people in a gym playing volleyball on teams", "video_id": "video11208", "sen_id": 223514}, {"caption": "there are many young people practising volleyball game", "video_id": "video11208", "sen_id": 223515}, {"caption": "high-schoolers play a game of volleyball in the gym", "video_id": "video11208", "sen_id": 223516}, {"caption": "volley ball is being practiced by two groups in the indoor stadium", "video_id": "video11208", "sen_id": 223517}, {"caption": "two teams of boys are playing volleyball in a gym", "video_id": "video11208", "sen_id": 223518}, {"caption": "players playing volley ball in an internal stadium with trainer guidance", "video_id": "video11208", "sen_id": 223519}, {"caption": "a group of small fish swim in a small indoor aquarium", "video_id": "video12918", "sen_id": 223520}, {"caption": "a few goldfish are swimming around in the tank", "video_id": "video12918", "sen_id": 223521}, {"caption": "a group of goldfish are swimming around in their aquarium", "video_id": "video12918", "sen_id": 223522}, {"caption": "a man shows his fish tank that his beta fish was in and tried to hurt another fish", "video_id": "video12918", "sen_id": 223523}, {"caption": "a man talks about the various fish he has purchased for his auarium", "video_id": "video12918", "sen_id": 223524}, {"caption": "an aquarium filled with water rocks plants and fish", "video_id": "video12918", "sen_id": 223525}, {"caption": "goldfish and a smaller gray fish swim in bubbling water in an aquarium filled with yellow gravel gray rocks green plants and an air tube", "video_id": "video12918", "sen_id": 223526}, {"caption": "a beautiful aquarium where some gold fishes are moving around", "video_id": "video12918", "sen_id": 223527}, {"caption": "fishes are swimming in the water of aquarium with nice plants and rocks", "video_id": "video12918", "sen_id": 223528}, {"caption": "in a well decorated aquarium the gold fishes are swimming in the aquarium", "video_id": "video12918", "sen_id": 223529}, {"caption": "a young man describes the fish he has in his home aquarium", "video_id": "video12918", "sen_id": 223530}, {"caption": "some gold fish are swimming around in the water", "video_id": "video12918", "sen_id": 223531}, {"caption": "there is some fish floating in the water", "video_id": "video12918", "sen_id": 223532}, {"caption": "in a fish tank the man talk about the new bater fish which he brought", "video_id": "video12918", "sen_id": 223533}, {"caption": "beautiful fishes are in the fish tank and swims", "video_id": "video12918", "sen_id": 223534}, {"caption": "guy filming fish in aquarium and speaking how he got them", "video_id": "video12918", "sen_id": 223535}, {"caption": "fishes are present in an aquarium and various types", "video_id": "video12918", "sen_id": 223536}, {"caption": "the man talks about the batter fish that he brought and the fins of the other fish got nipped away by the batter fish", "video_id": "video12918", "sen_id": 223537}, {"caption": "a man explaining about the fishes in the fish tank", "video_id": "video12918", "sen_id": 223538}, {"caption": "an acquarium tank is kept and the person explains about the fishes", "video_id": "video12918", "sen_id": 223539}, {"caption": "a car commercial about different technologies in action", "video_id": "video10560", "sen_id": 223540}, {"caption": "three cars drive in the night toward an isolated location with tents helicopters and windowed work station of technical equipment", "video_id": "video10560", "sen_id": 223541}, {"caption": "a line of cars drive down a dusty road at night to a movie set", "video_id": "video10560", "sen_id": 223542}, {"caption": "a line of cars drive down a dark road towards a movie set type of location", "video_id": "video10560", "sen_id": 223543}, {"caption": "a girl whose dad is an astronaut performs in a car commercial where she tries to send a picture to her dad from earth", "video_id": "video10560", "sen_id": 223544}, {"caption": "two females talking about the cars drving at night on a road and bridge while being watched by a male in a control room", "video_id": "video10560", "sen_id": 223545}, {"caption": "there are many cars on the road driving with high speed", "video_id": "video10560", "sen_id": 223546}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video10560", "sen_id": 223547}, {"caption": "the cars drive fast with their head lights shinning", "video_id": "video10560", "sen_id": 223548}, {"caption": "there are several cars driving to a base while a woman sits at home and misses her husband", "video_id": "video10560", "sen_id": 223549}, {"caption": "wife describing the difficulties of having an astronaut husband", "video_id": "video10560", "sen_id": 223550}, {"caption": "there is a woman in shirt thinking on a soafa", "video_id": "video10560", "sen_id": 223551}, {"caption": "there are cars moving fast on road at night", "video_id": "video10560", "sen_id": 223552}, {"caption": "at the night the car runiinig in very speed the scene is watching the men in the lab", "video_id": "video10560", "sen_id": 223553}, {"caption": "a girl sitting and speaking and driving cars moving on road displaying on screen", "video_id": "video10560", "sen_id": 223554}, {"caption": "bunch of cars driven at night in high speed", "video_id": "video10560", "sen_id": 223555}, {"caption": "there is a women remembering a event from life", "video_id": "video10560", "sen_id": 223556}, {"caption": "cars driving down a dusty road and being unloaded from containers with a astronaut on space station", "video_id": "video10560", "sen_id": 223557}, {"caption": "a new luxury car is launched here and the family is travelling in excitement", "video_id": "video10560", "sen_id": 223558}, {"caption": "a women siting on the sofa and many cars running on the road in the night", "video_id": "video10560", "sen_id": 223559}, {"caption": "a man discussing the roles irish people had when they moved to america", "video_id": "video10593", "sen_id": 223560}, {"caption": "a man describes the immigration of certain groups to the united states", "video_id": "video10593", "sen_id": 223561}, {"caption": "irish immigrants are being shown as workers and farm help", "video_id": "video10593", "sen_id": 223562}, {"caption": "a man talking about irish people in the late 19th century", "video_id": "video10593", "sen_id": 223563}, {"caption": "a man lectures about the history of america and original jobs available in america", "video_id": "video10593", "sen_id": 223564}, {"caption": "a cartoon family is shown in new york city in the 19th century", "video_id": "video10593", "sen_id": 223565}, {"caption": "a man talking about the immigration of irish people to the united states during the 19th century and which job opportunities were available to them", "video_id": "video10593", "sen_id": 223566}, {"caption": "three animated cartoon characters were standing on the road", "video_id": "video10593", "sen_id": 223567}, {"caption": "an overview is given of how irish americans families worked in america in factories as laborers", "video_id": "video10593", "sen_id": 223568}, {"caption": "bunch of cartoon characters talking on the screen", "video_id": "video10593", "sen_id": 223569}, {"caption": "the life conditions in cities of us is being shown with animation movie", "video_id": "video10593", "sen_id": 223570}, {"caption": "a man speaks about irish families that came to the united states at the time of colonization", "video_id": "video10593", "sen_id": 223571}, {"caption": "a man gives a lecture on the things irish immigrants did when they arrived in america", "video_id": "video10593", "sen_id": 223572}, {"caption": "a family stands outside a farm holding each other", "video_id": "video10593", "sen_id": 223573}, {"caption": "this is an animated cartoon of pilgrims that are of irish descent", "video_id": "video10593", "sen_id": 223574}, {"caption": "a male speaker describes the roles of irish americans", "video_id": "video10593", "sen_id": 223575}, {"caption": "cartoon clouds moves and the family is standing in the road", "video_id": "video10593", "sen_id": 223576}, {"caption": "guy talking about irish people", "video_id": "video10593", "sen_id": 223577}, {"caption": "a man is describing the history of the irish by showing animated people", "video_id": "video10593", "sen_id": 223578}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10593", "sen_id": 223579}, {"caption": "a man is escaping a dangerous situation in his car", "video_id": "video10799", "sen_id": 223580}, {"caption": "a man in a white buttonup shirt going 60 miles an hour who keeps looking over his shoulder", "video_id": "video10799", "sen_id": 223581}, {"caption": "a man is racing a car trying to get away from someone", "video_id": "video10799", "sen_id": 223582}, {"caption": "old driving video with a man speeding down a hillside", "video_id": "video10799", "sen_id": 223583}, {"caption": "a car is driving all the way down the road", "video_id": "video10799", "sen_id": 223584}, {"caption": "a scared man drives down a highway looking behind him as he does", "video_id": "video10799", "sen_id": 223585}, {"caption": "man looks back as he tries to drive away from his pursuer", "video_id": "video10799", "sen_id": 223586}, {"caption": "a guy in a vehicle tries racing away from people that are pursuing him", "video_id": "video10799", "sen_id": 223587}, {"caption": "man driving appears to be trying to escape someone", "video_id": "video10799", "sen_id": 223588}, {"caption": "a nervous man is driving a care while wearing sunglasses on a winding road", "video_id": "video10799", "sen_id": 223589}, {"caption": "there is a white shirt man driving a car", "video_id": "video10799", "sen_id": 223590}, {"caption": "a man driving a car", "video_id": "video10799", "sen_id": 223591}, {"caption": "in an older car a man with thick glasses a tie and a moustache is nervously driving", "video_id": "video10799", "sen_id": 223592}, {"caption": "a old man in white color dress inside car driving car on road fast train voice coming seeing behind displaying on screen", "video_id": "video10799", "sen_id": 223593}, {"caption": "a man is driving his car moderately fast and looking behind him nervously", "video_id": "video10799", "sen_id": 223594}, {"caption": "a man in a car is driving fast around a mountain and is looking back like someone is chasing him", "video_id": "video10799", "sen_id": 223595}, {"caption": "a person driving a car more than 60 kmhr speed while he turns back to see some one follows", "video_id": "video10799", "sen_id": 223596}, {"caption": "a guy with moustache speeds down the road in a desert", "video_id": "video10799", "sen_id": 223597}, {"caption": "a scene from a movie which a man driving a car is distressed about something behind his vehicle", "video_id": "video10799", "sen_id": 223598}, {"caption": "a man with glasses is speaking about something", "video_id": "video10799", "sen_id": 223599}, {"caption": "a woman is lighting a gas stove and then putting some ingredient into a pot", "video_id": "video10018", "sen_id": 223600}, {"caption": "woman starts to put into a cooking pot different ingredients as she describes them", "video_id": "video10018", "sen_id": 223601}, {"caption": "a person in a red sweater is cooking on the stove with a black pot", "video_id": "video10018", "sen_id": 223602}, {"caption": "a woman is talking in hindi while preparing a dish on the stove-top", "video_id": "video10018", "sen_id": 223603}, {"caption": "a woman lights a stove beneath a black pot", "video_id": "video10018", "sen_id": 223604}, {"caption": "a women in a kitchen pouring some ghee to the vessel", "video_id": "video10018", "sen_id": 223605}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10018", "sen_id": 223606}, {"caption": " wearing long red sleeves uses a spoon to scoop a creamy substance into a reflective black pot on a small silver burner", "video_id": "video10018", "sen_id": 223607}, {"caption": "a woman melts butter over a stove top", "video_id": "video10018", "sen_id": 223608}, {"caption": "a lady lits the stove with lighter and then puts ghee to the pan", "video_id": "video10018", "sen_id": 223609}, {"caption": "in the kitchen a woman pouring gee to the pan", "video_id": "video10018", "sen_id": 223610}, {"caption": "there is a women cooking food in untensil", "video_id": "video10018", "sen_id": 223611}, {"caption": "making a recipe like indian women adding ghee", "video_id": "video10018", "sen_id": 223612}, {"caption": "a woman lights stove under pot and begins to add ingredients for dish", "video_id": "video10018", "sen_id": 223613}, {"caption": "a person is pouring some food in a pot", "video_id": "video10018", "sen_id": 223614}, {"caption": "in the kitchen a women in red pouring gee to cooker", "video_id": "video10018", "sen_id": 223615}, {"caption": "todays recipe will be preparing yummy vegetable pulavo", "video_id": "video10018", "sen_id": 223616}, {"caption": "one beautiful and lovely women make recipe in cooker", "video_id": "video10018", "sen_id": 223617}, {"caption": "a pot is sitting on a small cooking stove which someone lights", "video_id": "video10018", "sen_id": 223618}, {"caption": "someone is filming a pot on their kitchen stove", "video_id": "video10018", "sen_id": 223619}, {"caption": "explosions happen in various parts of a city while chaos ensues", "video_id": "video12721", "sen_id": 223620}, {"caption": "a car is shown in the air and then blown up", "video_id": "video12721", "sen_id": 223621}, {"caption": "various explosions in a city center cause chaos for those nearby", "video_id": "video12721", "sen_id": 223622}, {"caption": "explosions go off as man talks over them this is a movie trailer", "video_id": "video12721", "sen_id": 223623}, {"caption": "this video is showing a movie clip from an action scene", "video_id": "video12721", "sen_id": 223624}, {"caption": "the bomb blasting in the car and other important places in the city", "video_id": "video12721", "sen_id": 223625}, {"caption": "a news man talks about an attack in british while people run through the streets and cars explode", "video_id": "video12721", "sen_id": 223626}, {"caption": "a reporter was explaining the movie and some parts of movie were shown", "video_id": "video12721", "sen_id": 223627}, {"caption": "man is talking about the accident and the explosion", "video_id": "video12721", "sen_id": 223628}, {"caption": "a car is exploding in the middle of a downtown area", "video_id": "video12721", "sen_id": 223629}, {"caption": "a car burst into flames and hits another car", "video_id": "video12721", "sen_id": 223630}, {"caption": "a car falls out of the sky on top of another car and explodes", "video_id": "video12721", "sen_id": 223631}, {"caption": "bomb blasts at various location and man and his team fighting against the enemies", "video_id": "video12721", "sen_id": 223632}, {"caption": "the people are scared because of the explosion", "video_id": "video12721", "sen_id": 223633}, {"caption": "a violent video clip with images of explosions and gunfire in a city", "video_id": "video12721", "sen_id": 223634}, {"caption": "there is a big blast in front of a building", "video_id": "video12721", "sen_id": 223635}, {"caption": "a large vehicle has just exploded and landed on top of another vehicle chaos is occuring in the city", "video_id": "video12721", "sen_id": 223636}, {"caption": "from the new motion picture london is falling", "video_id": "video12721", "sen_id": 223637}, {"caption": "the people are scared from the explosion of a car", "video_id": "video12721", "sen_id": 223638}, {"caption": "a movie scene shows cars blowing up", "video_id": "video12721", "sen_id": 223639}, {"caption": "a woman wearing a blue helmet giving instructions about roller blading", "video_id": "video11858", "sen_id": 223640}, {"caption": "a woman wearing roller derby attire is talking", "video_id": "video11858", "sen_id": 223641}, {"caption": "a woman in a blue helmet gives advice on how to roller skate", "video_id": "video11858", "sen_id": 223642}, {"caption": "a woman on skates stands along in a roller-derby ring and begins to give instructions on skating", "video_id": "video11858", "sen_id": 223643}, {"caption": "a young lady get ready to play the game by wearing a cap", "video_id": "video11858", "sen_id": 223644}, {"caption": "a woman skating trainer is giving some instructions on skating", "video_id": "video11858", "sen_id": 223645}, {"caption": "a girl on rollerskates giving instructions on how to do it", "video_id": "video11858", "sen_id": 223646}, {"caption": "sexy blonde with blue helmet in roller skates outfit talking to the camera", "video_id": "video11858", "sen_id": 223647}, {"caption": "there is a woman with blue helmet talking from the court", "video_id": "video11858", "sen_id": 223648}, {"caption": "a roller skater talks about how to stop a roller skate", "video_id": "video11858", "sen_id": 223649}, {"caption": "a lady in skets and helmet is explaining some thing on screen", "video_id": "video11858", "sen_id": 223650}, {"caption": "sexy blonde in blue helmet talking about derby roller rules", "video_id": "video11858", "sen_id": 223651}, {"caption": "a girl in roller skates skates in an indoor roller skating rink and describes techniques related to roller skating", "video_id": "video11858", "sen_id": 223652}, {"caption": "a person wearing a helmet stands and speaks to a camera", "video_id": "video11858", "sen_id": 223653}, {"caption": "sexy blonde in blue helmet talking about roller derby rules", "video_id": "video11858", "sen_id": 223654}, {"caption": "a woman with a blue helmet is speaking", "video_id": "video11858", "sen_id": 223655}, {"caption": "a young woman is skating on rollerblades with a helmet while talking to the camera", "video_id": "video11858", "sen_id": 223656}, {"caption": "a woman is teaching how to skate with skates", "video_id": "video11858", "sen_id": 223657}, {"caption": "sexy blonde with blue helmet in roller derby outfit talking about the rules", "video_id": "video11858", "sen_id": 223658}, {"caption": "a woman with a blue helmet is talking to the camera", "video_id": "video11858", "sen_id": 223659}, {"caption": "a man wearing a red plaid shirt lifts his cellphone over his head in reaction to an interview with a teenager shown on a morning talk show", "video_id": "video12113", "sen_id": 223660}, {"caption": "a guy in a plaid shirt stands in front of a full screen photo ranting about something", "video_id": "video12113", "sen_id": 223661}, {"caption": "a man in red plaid shirt talks about a student's situation", "video_id": "video12113", "sen_id": 223662}, {"caption": "a man speaks about a boy that was missing school and was addicted to a substance", "video_id": "video12113", "sen_id": 223663}, {"caption": "a man wearing a red shirt talking about someone with an addiction", "video_id": "video12113", "sen_id": 223664}, {"caption": "a man in a plaid shirt is telling a negative story about a young boy who he seems to believe is ridiculous", "video_id": "video12113", "sen_id": 223665}, {"caption": "a man is explaining something related to a family members in a house which is something funny", "video_id": "video12113", "sen_id": 223666}, {"caption": "the talks as the people sits on the couch behind him", "video_id": "video12113", "sen_id": 223667}, {"caption": "a men in a plaid shirt talking about another mans faults", "video_id": "video12113", "sen_id": 223668}, {"caption": "a person is watchin tv and the anchoring is presenting something which is not clear", "video_id": "video12113", "sen_id": 223669}, {"caption": "men explains the poster behind him he is wearing red checked shirt", "video_id": "video12113", "sen_id": 223670}, {"caption": "one man talking about something four peoples behind him in photos", "video_id": "video12113", "sen_id": 223671}, {"caption": "a man describes another person who was having trouble with drug addiction", "video_id": "video12113", "sen_id": 223672}, {"caption": "a man in a plaid shirt takes a selfie with his camera", "video_id": "video12113", "sen_id": 223673}, {"caption": "a man in a plaid shirt gestures wildly as he talks about a boy at school", "video_id": "video12113", "sen_id": 223674}, {"caption": "a man in a red plaid tshirt talking about a boy who said he d never been in trouble who would be late for school because he was too busy taking photos", "video_id": "video12113", "sen_id": 223675}, {"caption": "a man with a black and red checked shirt raises his hands and speaks emotionally", "video_id": "video12113", "sen_id": 223676}, {"caption": "a man wearing red and black checkered polo is talking background picture of 2 men and 2 women talking to each other", "video_id": "video12113", "sen_id": 223677}, {"caption": "a boy in check shirt and still images photoes beside speaking something", "video_id": "video12113", "sen_id": 223678}, {"caption": "a man with a plaid shirt is talking to the camera", "video_id": "video12113", "sen_id": 223679}, {"caption": "pictures of mars and rocks there along with the curiosity landing site", "video_id": "video12585", "sen_id": 223680}, {"caption": "a commentator talks about water patterns found on mars", "video_id": "video12585", "sen_id": 223681}, {"caption": "the brown is panned wile a red line is shown to a landing site", "video_id": "video12585", "sen_id": 223682}, {"caption": "a scientist discusses a remote landing on a far away planet", "video_id": "video12585", "sen_id": 223683}, {"caption": "a deserted piece of land with rocks and sand", "video_id": "video12585", "sen_id": 223684}, {"caption": "an aerial view of a desert with orange sand and rock", "video_id": "video12585", "sen_id": 223685}, {"caption": "a man talking about a rocks and the size of pepples", "video_id": "video12585", "sen_id": 223686}, {"caption": "a dry rocky uneven surface of land and rock", "video_id": "video12585", "sen_id": 223687}, {"caption": "a sandyrocky desert like surface of land", "video_id": "video12585", "sen_id": 223688}, {"caption": "it is all mud everywhere with hard stone part in some places", "video_id": "video12585", "sen_id": 223689}, {"caption": "a video shows the martian landscape encountered by the curiosity rover", "video_id": "video12585", "sen_id": 223690}, {"caption": "it s about some geological study the guy is explaining this river started high on the rim of gale crater and slowed towards the site where curiosity landed spreading sediments in a fan across the crater forward by studying the size of the pebbles they noted that how rounded they become", "video_id": "video12585", "sen_id": 223691}, {"caption": "the muddy brown mountains are full of rocks", "video_id": "video12585", "sen_id": 223692}, {"caption": "the surface of a planet is being filmed for something", "video_id": "video12585", "sen_id": 223693}, {"caption": "the surface of planet is shown to describe the peculiarities", "video_id": "video12585", "sen_id": 223694}, {"caption": "showing the curiosity landing on the gale crate on mars surface", "video_id": "video12585", "sen_id": 223695}, {"caption": "a desert planet is being displayed for your entertainment", "video_id": "video12585", "sen_id": 223696}, {"caption": "there is a dry surface with hard rock", "video_id": "video12585", "sen_id": 223697}, {"caption": "a man is heard explaining about the gale crater and how the sediment is spreading across the span of the crater floor", "video_id": "video12585", "sen_id": 223698}, {"caption": "a man talking about rock and pebbles and how they are formed", "video_id": "video12585", "sen_id": 223699}, {"caption": "an old time movie about the history of walt disney", "video_id": "video12587", "sen_id": 223700}, {"caption": "middle aged man with a mustache meeting with a man and woman", "video_id": "video12587", "sen_id": 223701}, {"caption": "a person in a black coat meet with another two persons", "video_id": "video12587", "sen_id": 223702}, {"caption": "a lady speaks on the phone a man walks in to other people", "video_id": "video12587", "sen_id": 223703}, {"caption": "one women talking and man can look to hug", "video_id": "video12587", "sen_id": 223704}, {"caption": "a man holds his arms out to a group of people in a meeting room", "video_id": "video12587", "sen_id": 223705}, {"caption": "actor tom hanks greets actress in red hair and welcomes her to the office", "video_id": "video12587", "sen_id": 223706}, {"caption": "movie scene from a english movie two mens and womens are talking", "video_id": "video12587", "sen_id": 223707}, {"caption": "a movie scene is going on with two men and a woman", "video_id": "video12587", "sen_id": 223708}, {"caption": "a man in a suit introduces himself to a woman", "video_id": "video12587", "sen_id": 223709}, {"caption": "a man in black coat is entering in to a office", "video_id": "video12587", "sen_id": 223710}, {"caption": "two mens in suit and a women talking to each other", "video_id": "video12587", "sen_id": 223711}, {"caption": " moustached man walks toward a woman who shakes her head at him in a white room with awards and mementos", "video_id": "video12587", "sen_id": 223712}, {"caption": "two men and a woman were talking in the room", "video_id": "video12587", "sen_id": 223713}, {"caption": "a man in black dress and a lady in brown coat meeting each other", "video_id": "video12587", "sen_id": 223714}, {"caption": "a group of people are talking to each other", "video_id": "video12587", "sen_id": 223715}, {"caption": "this women is eager to meet a man named mr disney but their first encounter is quite odd", "video_id": "video12587", "sen_id": 223716}, {"caption": "a trailer for a movie that looks like it takes place in the 50s", "video_id": "video12587", "sen_id": 223717}, {"caption": "a gentleman with black dress is talking with their neighbours", "video_id": "video12587", "sen_id": 223718}, {"caption": "a guy with a mustache is talking to a woman", "video_id": "video12587", "sen_id": 223719}, {"caption": "four fish swimming around in an aquarium while a woman talks", "video_id": "video10445", "sen_id": 223720}, {"caption": "a small group of goldfish swim in a small aquarium", "video_id": "video10445", "sen_id": 223721}, {"caption": "a young woman talking a her fish to her fish lovers", "video_id": "video10445", "sen_id": 223722}, {"caption": "a female is talking about trauma involving one of her pet fish", "video_id": "video10445", "sen_id": 223723}, {"caption": "a drawing of fish and then real fish in a tank", "video_id": "video10445", "sen_id": 223724}, {"caption": "a group of small goldfish move around in a small indoor aquarium", "video_id": "video10445", "sen_id": 223725}, {"caption": "there are different type of fishes swimming in the aquarium", "video_id": "video10445", "sen_id": 223726}, {"caption": "fat goldfish are swimming in a large home aquarium", "video_id": "video10445", "sen_id": 223727}, {"caption": "four goldfish are swimming in an aquarium with bubbles", "video_id": "video10445", "sen_id": 223728}, {"caption": "cartoon goldfish precede a fish tank filled with very fat live goldfish", "video_id": "video10445", "sen_id": 223729}, {"caption": "several goldfish swim around in an fish tank", "video_id": "video10445", "sen_id": 223730}, {"caption": "there is a a woman talking about how some of her fish were in trauma while goldfish swim in a tank", "video_id": "video10445", "sen_id": 223731}, {"caption": "a goldfish swimming around a clean aquarium among other goldfish", "video_id": "video10445", "sen_id": 223732}, {"caption": "different ornamental fishes are in the aquarium they are happily swimming in the water", "video_id": "video10445", "sen_id": 223733}, {"caption": "this is a video of goldfish inside of a fish tank", "video_id": "video10445", "sen_id": 223734}, {"caption": "the women in this video is telling about some secrete of the fishes", "video_id": "video10445", "sen_id": 223735}, {"caption": "several goldfish are swimming around in a fishtanks and appear to want to eat", "video_id": "video10445", "sen_id": 223736}, {"caption": "four goldfish swimming around in a clean aquarium", "video_id": "video10445", "sen_id": 223737}, {"caption": "several fish are swimming in a fish tank while a woman talks", "video_id": "video10445", "sen_id": 223738}, {"caption": "in a fish tank some golden fish are swming and go around in the water and at the bottom green color leaves are found and air bubles are goes up from the bottom of the tank", "video_id": "video10445", "sen_id": 223739}, {"caption": "a man who hasn't done it before drives a snowplow onto a frozen lake", "video_id": "video11345", "sen_id": 223740}, {"caption": "a man is driving a car that clears the snow on the road", "video_id": "video11345", "sen_id": 223741}, {"caption": "a plow is slowly driving through a very large amount of snow", "video_id": "video11345", "sen_id": 223742}, {"caption": "a vehicle brought into the snow to take off the snow from the roads", "video_id": "video11345", "sen_id": 223743}, {"caption": "top gear s james may driving a massive snow plow onto a frozen lake", "video_id": "video11345", "sen_id": 223744}, {"caption": "a person is driving heavy machinery and showing its features", "video_id": "video11345", "sen_id": 223745}, {"caption": "a man named jeremy would not ride with this driver of a large machine and the driver went on his own over a frozen lake", "video_id": "video11345", "sen_id": 223746}, {"caption": "the man drives the vehicle in the white snow as he looks out of the window", "video_id": "video11345", "sen_id": 223747}, {"caption": "a man clearing the snow with the vehicle on the road", "video_id": "video11345", "sen_id": 223748}, {"caption": "its ice burg where ice on road is removed by using ice remover truck", "video_id": "video11345", "sen_id": 223749}, {"caption": "a man in a vehicle is driving in the snow", "video_id": "video11345", "sen_id": 223750}, {"caption": "man is on the snow and driving", "video_id": "video11345", "sen_id": 223751}, {"caption": "a man in a black coat driving a big vehicle threw a snowy area in the day time", "video_id": "video11345", "sen_id": 223752}, {"caption": "a man driving a large machine on top of snow", "video_id": "video11345", "sen_id": 223753}, {"caption": "mountains with snow on them have a snowbine drive on them", "video_id": "video11345", "sen_id": 223754}, {"caption": "a person is walking next to a snow mobile", "video_id": "video11345", "sen_id": 223755}, {"caption": "a man is driving a lrge yellow truck through the snow and ice", "video_id": "video11345", "sen_id": 223756}, {"caption": "in the ice land the vehicle is operating the men very adventurely", "video_id": "video11345", "sen_id": 223757}, {"caption": "a man narrates while he drives a piece of machinery through the snow", "video_id": "video11345", "sen_id": 223758}, {"caption": "a man drives a snow plow with chains on its tires to clear the roads in near arctic conditions", "video_id": "video11345", "sen_id": 223759}, {"caption": "a very unique fish who's colors are silver yellow and orange is swimming around in the tank", "video_id": "video11861", "sen_id": 223760}, {"caption": "a fish colored white yellow and gold is swimming in front of a black background", "video_id": "video11861", "sen_id": 223761}, {"caption": "a goldfish swimming in a fishtank with a zoom in on it", "video_id": "video11861", "sen_id": 223762}, {"caption": "a fish is trying to swim in the tank", "video_id": "video11861", "sen_id": 223763}, {"caption": "there is a yellow orange and white fish swimming in a fish tank", "video_id": "video11861", "sen_id": 223764}, {"caption": "a fish with long fins is swimming in some water", "video_id": "video11861", "sen_id": 223765}, {"caption": "there is a beautiful fish in the tank is floating in the river", "video_id": "video11861", "sen_id": 223766}, {"caption": "a curved and bulging silver-scaled goldfish has a yellow face orange rims around the eyes orange dot over its head and small orange markings on its long flowing fins", "video_id": "video11861", "sen_id": 223767}, {"caption": "there are 3 different colors shown on the fish and orange", "video_id": "video11861", "sen_id": 223768}, {"caption": "fish swimming in a tank with bright colors on its fins", "video_id": "video11861", "sen_id": 223769}, {"caption": "fish swimming in the tank together and showing its fins", "video_id": "video11861", "sen_id": 223770}, {"caption": "there is a white color fish floating in the water", "video_id": "video11861", "sen_id": 223771}, {"caption": "colourful fish is swimming in the fish tank seeing upwards", "video_id": "video11861", "sen_id": 223772}, {"caption": "white fish with red dots is swimming in the aquarium", "video_id": "video11861", "sen_id": 223773}, {"caption": "a beautiful and colourful fishes in the acquarium tank is enjoying in the tank with some background music is going on", "video_id": "video11861", "sen_id": 223774}, {"caption": "a white and yellow fish is swimming around", "video_id": "video11861", "sen_id": 223775}, {"caption": "fish is swimming in the under water and grass in there in the water", "video_id": "video11861", "sen_id": 223776}, {"caption": "one gold fish is dancing to the music", "video_id": "video11861", "sen_id": 223777}, {"caption": "a white fish in red eyes and yellow mouth beautiful wings is swimming in water", "video_id": "video11861", "sen_id": 223778}, {"caption": "a white and golden fish happily moves in the acquarium tank with backcground music", "video_id": "video11861", "sen_id": 223779}, {"caption": "basketball players playing in various games are featured", "video_id": "video10882", "sen_id": 223780}, {"caption": "two basketball teams playing a game against eachother", "video_id": "video10882", "sen_id": 223781}, {"caption": "two screens show clips of youth basketball games", "video_id": "video10882", "sen_id": 223782}, {"caption": "two videos are shown side by side of highlights of basketball games", "video_id": "video10882", "sen_id": 223783}, {"caption": "young basketball players participate in games in large indoor gymnasiums", "video_id": "video10882", "sen_id": 223784}, {"caption": "basketball players celebrating and making shots on the basket", "video_id": "video10882", "sen_id": 223785}, {"caption": "basketball players are shooting at baskets and celebrating", "video_id": "video10882", "sen_id": 223786}, {"caption": "promotion video for an online channel about high school basket ball", "video_id": "video10882", "sen_id": 223787}, {"caption": "a couple of teams are playing basketball on a basketball court", "video_id": "video10882", "sen_id": 223788}, {"caption": "an outro video of a basketball themed channel the page asks viewers to subscribe", "video_id": "video10882", "sen_id": 223789}, {"caption": "different teams are playing basketball in different levels of the sport", "video_id": "video10882", "sen_id": 223790}, {"caption": "internet mixtape commercial featuring hip hop music", "video_id": "video10882", "sen_id": 223791}, {"caption": "two teams showcase their highlights to a hip hop soundtrack", "video_id": "video10882", "sen_id": 223792}, {"caption": "a team of basketball players are playing and tossing the ball", "video_id": "video10882", "sen_id": 223793}, {"caption": "amazing shots of basketball players on the court netting the ball with skiers", "video_id": "video10882", "sen_id": 223794}, {"caption": "more players are playing basket ball", "video_id": "video10882", "sen_id": 223795}, {"caption": "a basketball hoop mixtape highlight reel of top basketball clips", "video_id": "video10882", "sen_id": 223796}, {"caption": "a red dress wearing color cloth and white color players playing basket ball inside stadium audience watching displaying on screen", "video_id": "video10882", "sen_id": 223797}, {"caption": "clips of various basketball players are being shown", "video_id": "video10882", "sen_id": 223798}, {"caption": "some text is on a show on the tv", "video_id": "video10882", "sen_id": 223799}, {"caption": "a man talks to a child about playing and the child makes noise", "video_id": "video10889", "sen_id": 223800}, {"caption": "a man crouched on the floor talking to a standing child", "video_id": "video10889", "sen_id": 223801}, {"caption": "a small child talks to their father as they play together in their home", "video_id": "video10889", "sen_id": 223802}, {"caption": "a man and child are in a playroom talking to each other", "video_id": "video10889", "sen_id": 223803}, {"caption": "a young father is playing with his daughter at a kitchen playset and he orders scrambled eggs", "video_id": "video10889", "sen_id": 223804}, {"caption": "a man and his young daughter play together in the living room of their home", "video_id": "video10889", "sen_id": 223805}, {"caption": "a father is talking to his toddler daughter who is talking back to him with incomplete words", "video_id": "video10889", "sen_id": 223806}, {"caption": "a man is speaking to a very young toddler the toddler is speaking jibberish", "video_id": "video10889", "sen_id": 223807}, {"caption": "a man is playing with a little girls a little girl is speaking to her father", "video_id": "video10889", "sen_id": 223808}, {"caption": "father is having good time with his daughter in the room", "video_id": "video10889", "sen_id": 223809}, {"caption": "a person is playing with the kid on a room", "video_id": "video10889", "sen_id": 223810}, {"caption": "a dad is playing with his kid with the toys", "video_id": "video10889", "sen_id": 223811}, {"caption": "a man and toddler talking an playing with one another in a home", "video_id": "video10889", "sen_id": 223812}, {"caption": "a man talks and plays with his little baby daughter and tells her he wants scrambled eggs while the baby shouts at him", "video_id": "video10889", "sen_id": 223813}, {"caption": "baby in pink tshirt is playing with the toy with dad", "video_id": "video10889", "sen_id": 223814}, {"caption": "there is a man talking to his baby", "video_id": "video10889", "sen_id": 223815}, {"caption": "a dad is having a pretend argument with his little girl about eggs", "video_id": "video10889", "sen_id": 223816}, {"caption": "a father is talking to his young infant daughter about scrambled eggs while she tries to talk back to him", "video_id": "video10889", "sen_id": 223817}, {"caption": "a man in a red shirt having a conversation with a toddler about food", "video_id": "video10889", "sen_id": 223818}, {"caption": "in a house a man in red shirt sitting and talking with a small baby in pink dress", "video_id": "video10889", "sen_id": 223819}, {"caption": "someone is packing a mini lunch box", "video_id": "video11237", "sen_id": 223820}, {"caption": "a person constructs a miniature lunch kit used for some sort of demonstration", "video_id": "video11237", "sen_id": 223821}, {"caption": "a man is using toothpicks to pack a very tiny lunch box", "video_id": "video11237", "sen_id": 223822}, {"caption": "some one playing with a minature stove thermos dishes utensils etc", "video_id": "video11237", "sen_id": 223823}, {"caption": "in a miniature toy kitchen someone is preparing a meal and placing it into an miniature stackable container", "video_id": "video11237", "sen_id": 223824}, {"caption": "two hands are using a miniature kitchen with accessories by stirring food in a skillet screwing together a thermos using chopsticks and assembling multi-compartment lunch boxes", "video_id": "video11237", "sen_id": 223825}, {"caption": "a person of unknown gender is packing a miniature replica of a lunch complete with a thermos and eating utensils", "video_id": "video11237", "sen_id": 223826}, {"caption": "a person is trying to put together adorable tiny-sized lunch boxes", "video_id": "video11237", "sen_id": 223827}, {"caption": "cooking lunch and packing it up", "video_id": "video11237", "sen_id": 223828}, {"caption": "a person is showing off a miniature cooking set", "video_id": "video11237", "sen_id": 223829}, {"caption": "preparing a miniature lunch box with miniature implements and ingredients", "video_id": "video11237", "sen_id": 223830}, {"caption": "someone is making miniature fake kitchen objects", "video_id": "video11237", "sen_id": 223831}, {"caption": "showing of toys that are maginetics in the shape of kitchen items", "video_id": "video11237", "sen_id": 223832}, {"caption": "somebody is making fake food and utensils for a toy kitchen", "video_id": "video11237", "sen_id": 223833}, {"caption": "a person puts a tiny lid on top of a tiny thermos", "video_id": "video11237", "sen_id": 223834}, {"caption": "different miniature objects are being inserted in to a case for display", "video_id": "video11237", "sen_id": 223835}, {"caption": "a person prepares a miniature meal with a red thermus and food in a container", "video_id": "video11237", "sen_id": 223836}, {"caption": "in kitchen they show all tiny things even fork cute tiffin box", "video_id": "video11237", "sen_id": 223837}, {"caption": "a person puts together a very tiny bento box meal", "video_id": "video11237", "sen_id": 223838}, {"caption": "a person is making some tiny food inside", "video_id": "video11237", "sen_id": 223839}, {"caption": "men with guns are rushing out into combat in a war zone", "video_id": "video11033", "sen_id": 223840}, {"caption": "in a battle involving small arms fire & a tank roaring up a relatively desolate dusty street sided by devastated homes explosions bellowing smoke rise in the distance toting guns & ammunition fighters run between crumbling abandoned dusty houses yell constant action shielded by a door frame cinder-block walls a man carefully watches furtively picking toward the incoming tank as gun fire squibs rain from the street aimed at said tank bullet shell casings ricocheting on walls potholed road boulders tree stumps sidewalks", "video_id": "video11033", "sen_id": 223841}, {"caption": "an animated male running up the stairs and hiding behind corners", "video_id": "video11033", "sen_id": 223842}, {"caption": "a man is running from room to room in a house with a gun", "video_id": "video11033", "sen_id": 223843}, {"caption": "this shows a man in a war zone while narrating about what is in the video", "video_id": "video11033", "sen_id": 223844}, {"caption": "an animated male running up the stairs and hiding behind corners", "video_id": "video11033", "sen_id": 223845}, {"caption": "a man is running through the building very fast", "video_id": "video11033", "sen_id": 223846}, {"caption": "a man discusses some of the details of a particular movie scene", "video_id": "video11033", "sen_id": 223847}, {"caption": "a man is running through a fast-paced battle with a tank", "video_id": "video11033", "sen_id": 223848}, {"caption": "a man is talking about the special effects of a movie while the movie clip plays the clips is of a soldier running up stairs and a tank driving through the streets", "video_id": "video11033", "sen_id": 223849}, {"caption": "a man running in a building and then looking out a window", "video_id": "video11033", "sen_id": 223850}, {"caption": "a group of soldiers move through the interior hallways of an abandoned building", "video_id": "video11033", "sen_id": 223851}, {"caption": "a man climbs stairs and climbs through the rubble of a building that has been bombed", "video_id": "video11033", "sen_id": 223852}, {"caption": "men are in the middle of a battlefield and are strategically running through the field", "video_id": "video11033", "sen_id": 223853}, {"caption": "soldiers hurry up the staiors of a shelled building face gunfire through a hole in the facade and must avoid being seen by a tank in the street behind them", "video_id": "video11033", "sen_id": 223854}, {"caption": "some people are chasing somebody with weapons in their hand", "video_id": "video11033", "sen_id": 223855}, {"caption": "there is a commando fighting against enemies", "video_id": "video11033", "sen_id": 223856}, {"caption": "the police officers are face to attack the terrorist in the war land", "video_id": "video11033", "sen_id": 223857}, {"caption": "soldiers move rapidly through a building and fight as they go from room to room", "video_id": "video11033", "sen_id": 223858}, {"caption": "a man is hiding from a tank during a war", "video_id": "video11033", "sen_id": 223859}, {"caption": "a small drone takes off and flies to the left", "video_id": "video11159", "sen_id": 223860}, {"caption": "a pilot discusses his flight path with a view of his plane", "video_id": "video11159", "sen_id": 223861}, {"caption": "the drone is flying in the blue sky", "video_id": "video11159", "sen_id": 223862}, {"caption": "a plane with a long wingspan flies through the blue sky", "video_id": "video11159", "sen_id": 223863}, {"caption": "two man is flying around cape verde lslands and speaking about what their looking for", "video_id": "video11159", "sen_id": 223864}, {"caption": "an airplane is flying through the clear blue sky", "video_id": "video11159", "sen_id": 223865}, {"caption": "a man talking a bout a silver airplane flying in the air", "video_id": "video11159", "sen_id": 223866}, {"caption": "a man is telling us where the aeroplane in the air is going", "video_id": "video11159", "sen_id": 223867}, {"caption": "the jet is increasing in hight flying up", "video_id": "video11159", "sen_id": 223868}, {"caption": "a man describes a drone that has a very long range of flight", "video_id": "video11159", "sen_id": 223869}, {"caption": "plane with 46 hours of flying to return to africa", "video_id": "video11159", "sen_id": 223870}, {"caption": "there is a glider flying the narrator discloses that the glider can fly for for to six hours", "video_id": "video11159", "sen_id": 223871}, {"caption": "there is a plan and a helicopter landing on land", "video_id": "video11159", "sen_id": 223872}, {"caption": "a plane soars through a blue sky", "video_id": "video11159", "sen_id": 223873}, {"caption": "flight flying on the blue sky its beautiful there is only one flight", "video_id": "video11159", "sen_id": 223874}, {"caption": "a man describes his process for flying a plane out to the cape fear islands off of africa", "video_id": "video11159", "sen_id": 223875}, {"caption": "a unmaned plane flying high in the blue sky", "video_id": "video11159", "sen_id": 223876}, {"caption": "the air plane flys high in the clear blue sky", "video_id": "video11159", "sen_id": 223877}, {"caption": "a male person is telling about the aircraft features which is flying in the sky", "video_id": "video11159", "sen_id": 223878}, {"caption": "a white plane is flying in the blue sky", "video_id": "video11159", "sen_id": 223879}, {"caption": "people taking data and pieces on the artic", "video_id": "video10224", "sen_id": 223880}, {"caption": "a woman discusses scientific evidence as technological videos show advancements", "video_id": "video10224", "sen_id": 223881}, {"caption": "a group of scientists gather ice samples in a very icy part of the ocean", "video_id": "video10224", "sen_id": 223882}, {"caption": "people are conducting science experiments in the arctic", "video_id": "video10224", "sen_id": 223883}, {"caption": "a group of men in orange working in the snow", "video_id": "video10224", "sen_id": 223884}, {"caption": "a man with a machine is digging the snow as a man is watching the monitor screen and working", "video_id": "video10224", "sen_id": 223885}, {"caption": "the observation preparation of moon is being done", "video_id": "video10224", "sen_id": 223886}, {"caption": "earth is rotating slowly and beautiful to watch", "video_id": "video10224", "sen_id": 223887}, {"caption": "many scientist are using different techniques to learn about earth", "video_id": "video10224", "sen_id": 223888}, {"caption": "a woman talks about the observations being made of the climate", "video_id": "video10224", "sen_id": 223889}, {"caption": "some people are doing and making a machine related with snow", "video_id": "video10224", "sen_id": 223890}, {"caption": "environmental studies of earth are being done with satellites ice core sample astronomy and water", "video_id": "video10224", "sen_id": 223891}, {"caption": "a science station at what looks like the north pole and all the specialized equipement they need", "video_id": "video10224", "sen_id": 223892}, {"caption": "group of people are hitting the snow and dropping deep holes", "video_id": "video10224", "sen_id": 223893}, {"caption": "some people are in an observatory in the snow", "video_id": "video10224", "sen_id": 223894}, {"caption": "a boy is wear white colths to protect himself from cold and some people skating on snow mountain", "video_id": "video10224", "sen_id": 223895}, {"caption": "this shows a few different people of science doing things to the climate", "video_id": "video10224", "sen_id": 223896}, {"caption": "a lady telling about the snow sand", "video_id": "video10224", "sen_id": 223897}, {"caption": "a clip from a educational show where there are reviewing certain topics on the sciences involved with global warming", "video_id": "video10224", "sen_id": 223898}, {"caption": "some various images of earth are being shown", "video_id": "video10224", "sen_id": 223899}, {"caption": "different scenes of nature with a voice over about green house gases", "video_id": "video11804", "sen_id": 223900}, {"caption": "the crack of dawn is shown right outside", "video_id": "video11804", "sen_id": 223901}, {"caption": "the camera zooms in on the red hot sun", "video_id": "video11804", "sen_id": 223902}, {"caption": "a woman is talking about greenhouse gases while a video flashes images of the environment", "video_id": "video11804", "sen_id": 223903}, {"caption": "a woman talks about greenhouse gasses trapped on earth during a documentary", "video_id": "video11804", "sen_id": 223904}, {"caption": "a woman talking about green house gasses while showing pictures of the environment", "video_id": "video11804", "sen_id": 223905}, {"caption": "sun light is shown and sea water also shown", "video_id": "video11804", "sen_id": 223906}, {"caption": "smoke comes out of a factory the sun s rays reach the universe where there are flowers and plants", "video_id": "video11804", "sen_id": 223907}, {"caption": "the sun shining on water mountains and plans with a yellow rectangle in the lower corner", "video_id": "video11804", "sen_id": 223908}, {"caption": "pollution goes into the sky and clouds roll over the land", "video_id": "video11804", "sen_id": 223909}, {"caption": "the effect of greenhouse gases on various biomes", "video_id": "video11804", "sen_id": 223910}, {"caption": "the sun rises in the sky and shines down on the earth", "video_id": "video11804", "sen_id": 223911}, {"caption": "there is a beautiful sun and ocean along with greenery", "video_id": "video11804", "sen_id": 223912}, {"caption": "discovery channel is talking about greenhouse gases and the effects it has", "video_id": "video11804", "sen_id": 223913}, {"caption": "a video of how greenhouse gasses are affecting our earth", "video_id": "video11804", "sen_id": 223914}, {"caption": "a sea water and plats are displayed", "video_id": "video11804", "sen_id": 223915}, {"caption": "views of the sun and water canyons and flowers as a woman speaks about greenhouse gases", "video_id": "video11804", "sen_id": 223916}, {"caption": "a woman talking about the greenhouse effect while showing various shots of the earth", "video_id": "video11804", "sen_id": 223917}, {"caption": "showing earth and a lady in background talking about green house effect", "video_id": "video11804", "sen_id": 223918}, {"caption": "the narrator explaining about the earth on a tv show", "video_id": "video11804", "sen_id": 223919}, {"caption": "a man in a black suit jacket and glasses is listening to another man off camera on the news", "video_id": "video12645", "sen_id": 223920}, {"caption": "i man wearing glasses is nodding his head while listening to someone off screen talk", "video_id": "video12645", "sen_id": 223921}, {"caption": "a black man in a pink shirt listens as someone speaks", "video_id": "video12645", "sen_id": 223922}, {"caption": "a man in a pink shirt and black coat is listening to another man", "video_id": "video12645", "sen_id": 223923}, {"caption": "a man in a purple shirt is nodding", "video_id": "video12645", "sen_id": 223924}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12645", "sen_id": 223925}, {"caption": "a gentleman dressed in a lavender shirt and black coat is being interviewed about the development of an area to aid in the flow of people", "video_id": "video12645", "sen_id": 223926}, {"caption": "a man is interviewing another man on the news", "video_id": "video12645", "sen_id": 223927}, {"caption": "a number of man in white dress and other sitting in black dress speaking displaying on screen", "video_id": "video12645", "sen_id": 223928}, {"caption": "a bald middle-aged man with glasses wearing a black suit and purple plaid buttoned undershirt listens to who is speaking to the left of him", "video_id": "video12645", "sen_id": 223929}, {"caption": "a black man wearing a pink button down shirt and black over coat sits in front of a backdrop of a major urban area", "video_id": "video12645", "sen_id": 223930}, {"caption": "the man in the pink shirt and suit sits on the couch and listens", "video_id": "video12645", "sen_id": 223931}, {"caption": "a news reader interviewing a man in the news program", "video_id": "video12645", "sen_id": 223932}, {"caption": "a number of mans wearing white dresses and old man in pink shirt sitting and listening to other person", "video_id": "video12645", "sen_id": 223933}, {"caption": "there is a man with glasses and red shirt discussing politics", "video_id": "video12645", "sen_id": 223934}, {"caption": "the man is a suit is in a interview live tvnews", "video_id": "video12645", "sen_id": 223935}, {"caption": "the man wearing a pink button down sits and have a discussion", "video_id": "video12645", "sen_id": 223936}, {"caption": "a man who is not seen is talking about the flow and movement of people and a man in a suit and glasses is nodding", "video_id": "video12645", "sen_id": 223937}, {"caption": "two men having an interview talking about a structure and it s uses for foot traffic", "video_id": "video12645", "sen_id": 223938}, {"caption": "bald guy in glass with suit talking to the camera", "video_id": "video12645", "sen_id": 223939}, {"caption": "a man is getting agitated while being interviewed on a news station channel", "video_id": "video11988", "sen_id": 223940}, {"caption": "an african man is interviewed for a news program", "video_id": "video11988", "sen_id": 223941}, {"caption": "a guest on a news program walks off after becoming annoyed at the commentator", "video_id": "video11988", "sen_id": 223942}, {"caption": "a disagreement between two individuals on television in westminister", "video_id": "video11988", "sen_id": 223943}, {"caption": "a news report of two men talking about muslims and terrorism", "video_id": "video11988", "sen_id": 223944}, {"caption": "a british politician is interviewed by a news broadcaster", "video_id": "video11988", "sen_id": 223945}, {"caption": "an interviewee on a news program is cut off abruptly by the interviewer and walks away disgusted", "video_id": "video11988", "sen_id": 223946}, {"caption": "two people on live news are talking and one gets frustrated and leaves", "video_id": "video11988", "sen_id": 223947}, {"caption": "two men in suits are speaking together on the news", "video_id": "video11988", "sen_id": 223948}, {"caption": "a person interviews other for the terror threats while he walks away", "video_id": "video11988", "sen_id": 223949}, {"caption": "a man in a suit and purple tie talking", "video_id": "video11988", "sen_id": 223950}, {"caption": "david cameron is wearing a nice suit and participating in a heated debate over terrorism on sky news", "video_id": "video11988", "sen_id": 223951}, {"caption": "a news story with commentary on terror threats", "video_id": "video11988", "sen_id": 223952}, {"caption": "two men wearing coat and talking about something in media", "video_id": "video11988", "sen_id": 223953}, {"caption": "a man talking about the government patronizing muslim leaders", "video_id": "video11988", "sen_id": 223954}, {"caption": "a black english man is being interviewed on a tv news set gets angry about the conduct of the interview", "video_id": "video11988", "sen_id": 223955}, {"caption": "a news segment with two men addressing terror threats", "video_id": "video11988", "sen_id": 223956}, {"caption": "two men were discussing something in the news show", "video_id": "video11988", "sen_id": 223957}, {"caption": "a black male news reporter reading a story in a black suit", "video_id": "video11988", "sen_id": 223958}, {"caption": "a man and a woman on the news are speaking", "video_id": "video11988", "sen_id": 223959}, {"caption": "clips from a movie regarding the use of pixels outside of gaming", "video_id": "video11428", "sen_id": 223960}, {"caption": "a tv is shown and then the outside and then a bridge", "video_id": "video11428", "sen_id": 223961}, {"caption": "a documentary talking about pixels and art styles", "video_id": "video11428", "sen_id": 223962}, {"caption": "cartoon pixeled object floating over a large city area", "video_id": "video11428", "sen_id": 223963}, {"caption": "there is a tv that explodes and a city scape is shown", "video_id": "video11428", "sen_id": 223964}, {"caption": "how we have progressed in the digital age", "video_id": "video11428", "sen_id": 223965}, {"caption": "a commercial about a animated movie called pixels", "video_id": "video11428", "sen_id": 223966}, {"caption": "a television showing a whale swimming through different scenes", "video_id": "video11428", "sen_id": 223967}, {"caption": "a show about retro pixel art shows multiple images of a city with cgi animations superimposed on them", "video_id": "video11428", "sen_id": 223968}, {"caption": "a tv has a rainbow flow out of it while a man talks about pixels", "video_id": "video11428", "sen_id": 223969}, {"caption": "on a tv screen a bomb is displayed and blasts itself from tv and passes in the sky over city", "video_id": "video11428", "sen_id": 223970}, {"caption": "the entertainment of communication is illustrated with help of animation and graphics", "video_id": "video11428", "sen_id": 223971}, {"caption": "some multi colored stripes are escaping a tv", "video_id": "video11428", "sen_id": 223972}, {"caption": "there is a television blinking with visuals on a table", "video_id": "video11428", "sen_id": 223973}, {"caption": "a animation is starting from the tv and gets into the city", "video_id": "video11428", "sen_id": 223974}, {"caption": "a small television flickers until color explodes from its screen and flies over a bridge", "video_id": "video11428", "sen_id": 223975}, {"caption": "there is a television with real visual effects", "video_id": "video11428", "sen_id": 223976}, {"caption": "in a television colors are comimg out", "video_id": "video11428", "sen_id": 223977}, {"caption": "a man is asking if the pixel style has greater value for people outside the gaming world", "video_id": "video11428", "sen_id": 223978}, {"caption": "a tv is exploding with colors coming out of it", "video_id": "video11428", "sen_id": 223979}, {"caption": "a news commentator with blonde hair wearing a bright pink dress speaks from a tv studio while pedestrians walk behind her", "video_id": "video11882", "sen_id": 223980}, {"caption": "a woman news anchor reporting on a story about president obama", "video_id": "video11882", "sen_id": 223981}, {"caption": "a news woman discusses the popularity temperature of americans to the rest of the world", "video_id": "video11882", "sen_id": 223982}, {"caption": "a blond woman in a pink top is discussing the news", "video_id": "video11882", "sen_id": 223983}, {"caption": "a news report with a woman talking about obama's comments", "video_id": "video11882", "sen_id": 223984}, {"caption": "a television news anchor dressed in pink is discussing the president of the united states", "video_id": "video11882", "sen_id": 223985}, {"caption": "a reporter for fox news talks about a recent statement from president obama", "video_id": "video11882", "sen_id": 223986}, {"caption": "a newscaster in pink is giving feedback on a speech that president obama made", "video_id": "video11882", "sen_id": 223987}, {"caption": "a woman in a studio talking about president obama and politics", "video_id": "video11882", "sen_id": 223988}, {"caption": "sexy blonde in pink dress talking to the camera in the news room", "video_id": "video11882", "sen_id": 223989}, {"caption": "there is a woman in pink talking from the studio", "video_id": "video11882", "sen_id": 223990}, {"caption": "a lady in pink is speaking about the united states reputation on television", "video_id": "video11882", "sen_id": 223991}, {"caption": "a reporter discusses america having a more favorable opinion of the country", "video_id": "video11882", "sen_id": 223992}, {"caption": "news video with president obama about isis president obama is being questioned", "video_id": "video11882", "sen_id": 223993}, {"caption": "a news anchor is speaking about the president on tv", "video_id": "video11882", "sen_id": 223994}, {"caption": "a reporter in a pink shirt is discussing critiques of a political opinion", "video_id": "video11882", "sen_id": 223995}, {"caption": "a news reporter states that the us is the most respected country on earth", "video_id": "video11882", "sen_id": 223996}, {"caption": "a tv host discusses pulling results of opinion on president", "video_id": "video11882", "sen_id": 223997}, {"caption": "a cherry colour dress lady speak news about obama", "video_id": "video11882", "sen_id": 223998}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video11882", "sen_id": 223999}, {"caption": "a man and a monkey having a conversation", "video_id": "video10568", "sen_id": 224000}, {"caption": "a man is sitting on a stoop talking to a young monkey", "video_id": "video10568", "sen_id": 224001}, {"caption": "a man talks to a trained monkey as they set outside a house", "video_id": "video10568", "sen_id": 224002}, {"caption": "a man talks to his pet monkey on the back porch of a house", "video_id": "video10568", "sen_id": 224003}, {"caption": "an oriental woman is speaking in a foreign language and a man is talking to a monkey", "video_id": "video10568", "sen_id": 224004}, {"caption": "a man sitting on a porch talks to a monkey who is wearing overalls then the monkey takes a bulldog for a walk", "video_id": "video10568", "sen_id": 224005}, {"caption": "a man sits on a porch and speaks with a chimpanzee the chimpanzee runs down the street next to a white dog; both have backpacks", "video_id": "video10568", "sen_id": 224006}, {"caption": "a man is seated and talking to a monkey the monkey and a white dog are going for a walk", "video_id": "video10568", "sen_id": 224007}, {"caption": "a man sits on a porch talking to a monkey wearing overhauls", "video_id": "video10568", "sen_id": 224008}, {"caption": "asian cartoon with a monkey in clothing walking a dog", "video_id": "video10568", "sen_id": 224009}, {"caption": "a dog and a monkey are presented in two circles a man in a blue colored shirt is talking to the monkey", "video_id": "video10568", "sen_id": 224010}, {"caption": "a man and a money sit on a porch of a yellow sided house having a conversation", "video_id": "video10568", "sen_id": 224011}, {"caption": "a man wearing a shirt talking with a small monkey", "video_id": "video10568", "sen_id": 224012}, {"caption": "a man talks to a chimpanzee dressed in overalls and the chimpanzee responded by nodding its head", "video_id": "video10568", "sen_id": 224013}, {"caption": "a man is sitting on a porch taking to a chimp", "video_id": "video10568", "sen_id": 224014}, {"caption": "a man is giving training to a monkey and a dog", "video_id": "video10568", "sen_id": 224015}, {"caption": "an asian man sits on a porch and talks to a chimpanzee", "video_id": "video10568", "sen_id": 224016}, {"caption": "a man and a monkey in a shirt are talking together on a front porch", "video_id": "video10568", "sen_id": 224017}, {"caption": "a man sitting and talking to a monkey and a dog and a monkey running together", "video_id": "video10568", "sen_id": 224018}, {"caption": "man is sitting with his friend- little monkey which understands him", "video_id": "video10568", "sen_id": 224019}, {"caption": "a woman trying to take something before getting caught", "video_id": "video11602", "sen_id": 224020}, {"caption": "a tv show scene depicting a woman in a house searching through desk drawers looking for something", "video_id": "video11602", "sen_id": 224021}, {"caption": "a man wearing white rushes past four women in colorful saris who answer his question by pointing in a direction a woman searches through the living room by lifting objects and opening drawers and hides an object in her sari", "video_id": "video11602", "sen_id": 224022}, {"caption": "a man speaks to four women who direct him towards what seems to be another woman in a hurry", "video_id": "video11602", "sen_id": 224023}, {"caption": "a group of women approaching a man a woman a searching a desk", "video_id": "video11602", "sen_id": 224024}, {"caption": "in an indian home a mother is frantically trying to hide something from her husband", "video_id": "video11602", "sen_id": 224025}, {"caption": "a woman is lifting different objects in a room and then placing some of them under her clothes to steal", "video_id": "video11602", "sen_id": 224026}, {"caption": "a man with a white tishirt talking to the four ladies", "video_id": "video11602", "sen_id": 224027}, {"caption": "a person asks about a lady while a old lady steals things from a room", "video_id": "video11602", "sen_id": 224028}, {"caption": "an indian man in a white shirt is wandering around the city looking for something", "video_id": "video11602", "sen_id": 224029}, {"caption": "a bollywood drama show featuring a woman who seems frantic looking for something", "video_id": "video11602", "sen_id": 224030}, {"caption": "there is a white shirt man asking a question to some women", "video_id": "video11602", "sen_id": 224031}, {"caption": "a man is speaking to many women he runs to another lady", "video_id": "video11602", "sen_id": 224032}, {"caption": "a man in a white shirt talking to a woman and that woman trying to find items", "video_id": "video11602", "sen_id": 224033}, {"caption": "a man speaks to several women in a room", "video_id": "video11602", "sen_id": 224034}, {"caption": "a woman frantically hides things as a man comes for her", "video_id": "video11602", "sen_id": 224035}, {"caption": "a man is running then stop to talk to a group of women", "video_id": "video11602", "sen_id": 224036}, {"caption": "a woman is searching the room continuously for something", "video_id": "video11602", "sen_id": 224037}, {"caption": "a group of women speak to a man and a woman straightens a desk", "video_id": "video11602", "sen_id": 224038}, {"caption": "an indian woman searches for and hides things", "video_id": "video11602", "sen_id": 224039}, {"caption": "a man driving an electric sports car on a race track", "video_id": "video11512", "sen_id": 224040}, {"caption": "a clip from the bbc show top gear", "video_id": "video11512", "sen_id": 224041}, {"caption": "a man is driving an electric sports car and talking about the horsepower of the vehicle", "video_id": "video11512", "sen_id": 224042}, {"caption": "a man test drives a black sports car on a closed race course", "video_id": "video11512", "sen_id": 224043}, {"caption": "a man is driving a hybrid electric car and explains he has 903 horsepower available", "video_id": "video11512", "sen_id": 224044}, {"caption": "an old englishman giving descriptions of the speed of a car", "video_id": "video11512", "sen_id": 224045}, {"caption": "a man is talking about how a car is working while driving it down the road", "video_id": "video11512", "sen_id": 224046}, {"caption": "old man driving a black car and talking", "video_id": "video11512", "sen_id": 224047}, {"caption": "a old man sitting inside car driving speaking moving cars displaying on screen", "video_id": "video11512", "sen_id": 224048}, {"caption": "a man drives a black sports car around on a track", "video_id": "video11512", "sen_id": 224049}, {"caption": "a man is talking about a car and driving it on a test track", "video_id": "video11512", "sen_id": 224050}, {"caption": "a man is driving an all black car on a driving course", "video_id": "video11512", "sen_id": 224051}, {"caption": "a man is driving a black color luxurious car", "video_id": "video11512", "sen_id": 224052}, {"caption": "a old man sitting inside car moving on road speaking on topic technology displaying on screen", "video_id": "video11512", "sen_id": 224053}, {"caption": "there is a man driving a black electric sports car on a track", "video_id": "video11512", "sen_id": 224054}, {"caption": "older gentmelan trying to find out if piloting a high end sport car will make him feel any younger or not", "video_id": "video11512", "sen_id": 224055}, {"caption": "man driving a sports car talks about how the car has 903 brake horsepower", "video_id": "video11512", "sen_id": 224056}, {"caption": "a man is speaking driving a black luxurious car", "video_id": "video11512", "sen_id": 224057}, {"caption": "a man is driving a black sports car on a track explaining the the specs of the vehicle", "video_id": "video11512", "sen_id": 224058}, {"caption": "a person driving the car on the road with some explanations", "video_id": "video11512", "sen_id": 224059}, {"caption": "man talks to another man about kissing a girl", "video_id": "video11291", "sen_id": 224060}, {"caption": "two men talk to each other outside a residential building in a city", "video_id": "video11291", "sen_id": 224061}, {"caption": "a man in a jacket talking to another man about a woman", "video_id": "video11291", "sen_id": 224062}, {"caption": "a clip from kevin smith and will smith movie", "video_id": "video11291", "sen_id": 224063}, {"caption": "two men have a conversation in front of a porche", "video_id": "video11291", "sen_id": 224064}, {"caption": "a clip from a movie called hitch with will smith and kevin james", "video_id": "video11291", "sen_id": 224065}, {"caption": "a man in grey shirt is talking to another person", "video_id": "video11291", "sen_id": 224066}, {"caption": "the two men talk to each other in front of the stairs", "video_id": "video11291", "sen_id": 224067}, {"caption": "will smith talking about the first kiss in a relationship", "video_id": "video11291", "sen_id": 224068}, {"caption": "a black man and a white man are talking about the importance of a first kiss to a woman", "video_id": "video11291", "sen_id": 224069}, {"caption": "man in brown cap is laughing as he is saying something", "video_id": "video11291", "sen_id": 224070}, {"caption": "a thin men is talking to a fat men", "video_id": "video11291", "sen_id": 224071}, {"caption": "the one man is talking happily to the other man with spectacles", "video_id": "video11291", "sen_id": 224072}, {"caption": "will smith talks to a fat guy on the street", "video_id": "video11291", "sen_id": 224073}, {"caption": "will smith talks kevin james into kissing him in front of the door", "video_id": "video11291", "sen_id": 224074}, {"caption": "there is a jacket man talking to his friend", "video_id": "video11291", "sen_id": 224075}, {"caption": "two men are talking together one is wearing blue shirt", "video_id": "video11291", "sen_id": 224076}, {"caption": "two actors speaking each other in the hollywood movie", "video_id": "video11291", "sen_id": 224077}, {"caption": "a man explains how important the first kiss is in a relationship", "video_id": "video11291", "sen_id": 224078}, {"caption": "a fat guy with glasses is talking to a smart young men", "video_id": "video11291", "sen_id": 224079}, {"caption": "two soccer teams take the field and tear the shirt off of one of the players", "video_id": "video11941", "sen_id": 224080}, {"caption": "two rugby teams participate in a match in a large stadium", "video_id": "video11941", "sen_id": 224081}, {"caption": "team fight over soccer ball as they go towards the goal line", "video_id": "video11941", "sen_id": 224082}, {"caption": "in a rugby game a team wearing red and white stripes barrels over a team in all black for a score", "video_id": "video11941", "sen_id": 224083}, {"caption": "two soccer teams fight over the ball while dragging it down the field before the referee blows his whistle", "video_id": "video11941", "sen_id": 224084}, {"caption": "a rugby team doing a scrum over the end line", "video_id": "video11941", "sen_id": 224085}, {"caption": "a sportscaster excitedly commentates on part of a rugby game between the united states and japan", "video_id": "video11941", "sen_id": 224086}, {"caption": "a sports team is competing against opponents on a grassy green field", "video_id": "video11941", "sen_id": 224087}, {"caption": "two teams playing soccer on a green field", "video_id": "video11941", "sen_id": 224088}, {"caption": "two teams are playing rugby game in a stadium", "video_id": "video11941", "sen_id": 224089}, {"caption": "a rugby scrum leading to a try for team with red and white striped jerseys", "video_id": "video11941", "sen_id": 224090}, {"caption": "a rugby scrum walks the ball across the american line", "video_id": "video11941", "sen_id": 224091}, {"caption": "many soccer players are engaging in an attempt to retrieve the ball", "video_id": "video11941", "sen_id": 224092}, {"caption": "two teams of men are involved in a hotly contested rugby match", "video_id": "video11941", "sen_id": 224093}, {"caption": "men playing a game of rugby in a stadium", "video_id": "video11941", "sen_id": 224094}, {"caption": "some people are playing rugby on a field", "video_id": "video11941", "sen_id": 224095}, {"caption": "two rugby teams going at it with each other until one scores", "video_id": "video11941", "sen_id": 224096}, {"caption": "a group of soccer players hudled in a pile gripping the ball as the crowd yells and cheers", "video_id": "video11941", "sen_id": 224097}, {"caption": "rugby players in white and red stripes are scoring a goal on the opposing team wearing solid blue uniforms", "video_id": "video11941", "sen_id": 224098}, {"caption": "rugby match with a team preparing to score a goal", "video_id": "video11941", "sen_id": 224099}, {"caption": "a horse rolling around in the hay while a girl discusses what her horse does daily", "video_id": "video12088", "sen_id": 224100}, {"caption": "a brown horse rolling around on the ground in a pile of hay", "video_id": "video12088", "sen_id": 224101}, {"caption": "{}", "video_id": "video12088", "sen_id": 224102}, {"caption": "a horse rolls around in the hay stands up and shakes the hay off", "video_id": "video12088", "sen_id": 224103}, {"caption": "a horse on its side struggling to get up and a woman talking", "video_id": "video12088", "sen_id": 224104}, {"caption": "a brown horse is rolling around in the hey before a woman talks about the horse", "video_id": "video12088", "sen_id": 224105}, {"caption": "a horse laying on the ground and rolling in the hay", "video_id": "video12088", "sen_id": 224106}, {"caption": "a house is on its back and shaking around", "video_id": "video12088", "sen_id": 224107}, {"caption": "a horse is in the carriage and a girl is talking", "video_id": "video12088", "sen_id": 224108}, {"caption": "beginning of a video featuring a horse and next a young girl is beginning to describe her horse routine", "video_id": "video12088", "sen_id": 224109}, {"caption": "a horse rolls back and forth in a pile of hay", "video_id": "video12088", "sen_id": 224110}, {"caption": "a brown horse rolls around in the hay then stands up and shakes", "video_id": "video12088", "sen_id": 224111}, {"caption": "a funny horse rolling on the mud and its caretaker talking about it", "video_id": "video12088", "sen_id": 224112}, {"caption": "a horse is rolling around in hay and shakes off", "video_id": "video12088", "sen_id": 224113}, {"caption": "a horse is rolling around on the ground full of hay a girl appears and tells about the horse s daily routine", "video_id": "video12088", "sen_id": 224114}, {"caption": "a horse in shed and the girl speak out about the horse", "video_id": "video12088", "sen_id": 224115}, {"caption": "a brown horse is laying and rolling in hay on the ground", "video_id": "video12088", "sen_id": 224116}, {"caption": "a horse is rolling aound in his paddock scratching his back and then a young girl starts describing her daily routine", "video_id": "video12088", "sen_id": 224117}, {"caption": "a brown horse is rolling around in the hay like a dog rolls around in the grass", "video_id": "video12088", "sen_id": 224118}, {"caption": "there was a horse litterally rolling around in the hay", "video_id": "video12088", "sen_id": 224119}, {"caption": "two people are playing in a tennis match on a court", "video_id": "video11212", "sen_id": 224120}, {"caption": "two men eagerly play tennis in front of a large crowd", "video_id": "video11212", "sen_id": 224121}, {"caption": "two men in a tennis match", "video_id": "video11212", "sen_id": 224122}, {"caption": "tennis players playing a very competitive match of tennis", "video_id": "video11212", "sen_id": 224123}, {"caption": "two people play tennis in a competition one competitor is in blue and the other competitor is in red", "video_id": "video11212", "sen_id": 224124}, {"caption": "two people play tennis indoors in a stadium as spectators watch", "video_id": "video11212", "sen_id": 224125}, {"caption": "two people playing each other in tennis in front of a large crowd", "video_id": "video11212", "sen_id": 224126}, {"caption": "people gathered in a tennis court to watch the match", "video_id": "video11212", "sen_id": 224127}, {"caption": "a man in a blue shirt with horizontal stripes plays on a green court divided by an elevated against an opponent wearing red", "video_id": "video11212", "sen_id": 224128}, {"caption": "two women play a game of badmitton in a stadium filled with people", "video_id": "video11212", "sen_id": 224129}, {"caption": "a blue and red colour two players playing batmanton game audience watching", "video_id": "video11212", "sen_id": 224130}, {"caption": "two national team players are are playing badminton in a sports event", "video_id": "video11212", "sen_id": 224131}, {"caption": "two girls playing badminton in indoor stadium", "video_id": "video11212", "sen_id": 224132}, {"caption": "two players were playing a tennis on the stadium", "video_id": "video11212", "sen_id": 224133}, {"caption": "tennis game where a blue in blue dress play against the player in the red dress", "video_id": "video11212", "sen_id": 224134}, {"caption": "a players are playing badminton in a court along with few crowds", "video_id": "video11212", "sen_id": 224135}, {"caption": "a terrific rally by two players in badminton singles", "video_id": "video11212", "sen_id": 224136}, {"caption": "two women play a badmitton match in a stadium in front of many people", "video_id": "video11212", "sen_id": 224137}, {"caption": "two men square off during a indoor tennis tournament during a close match", "video_id": "video11212", "sen_id": 224138}, {"caption": "badminton player in blue and red top playing against each other in a match", "video_id": "video11212", "sen_id": 224139}, {"caption": "there are three news reporters but the man on the left is talking about media publishing satirical cartoons", "video_id": "video12128", "sen_id": 224140}, {"caption": "a pair of news reporters do an interview with a panel of people", "video_id": "video12128", "sen_id": 224141}, {"caption": "two people on a stage have a live conference with three people on a screen", "video_id": "video12128", "sen_id": 224142}, {"caption": "a reporters in front of a large split screen with three people on it", "video_id": "video12128", "sen_id": 224143}, {"caption": "two news reporters discuss an issue with a panel of experts", "video_id": "video12128", "sen_id": 224144}, {"caption": "a man is talking about islam and satirical cartoons", "video_id": "video12128", "sen_id": 224145}, {"caption": "two people are hosting a three person debate on the screens behind them", "video_id": "video12128", "sen_id": 224146}, {"caption": "five television news journalists talking about islamic extremism", "video_id": "video12128", "sen_id": 224147}, {"caption": "aman in woman in a tv studio stand at opposite ends of three giant screen showing two men and a woman discussing the link betwen satire and terrorism", "video_id": "video12128", "sen_id": 224148}, {"caption": "a news report between 3 men and 2 woman about satirical cartoons", "video_id": "video12128", "sen_id": 224149}, {"caption": "a news anchor debates with others the appropriateness of political cartoons", "video_id": "video12128", "sen_id": 224150}, {"caption": "a man and a woman stand in front of a screen with three different peoples faces on it", "video_id": "video12128", "sen_id": 224151}, {"caption": "several pundits on tv discuss religion generally and islam in particular", "video_id": "video12128", "sen_id": 224152}, {"caption": "a man in black suit is showing some paper report in news room", "video_id": "video12128", "sen_id": 224153}, {"caption": "three men and two women are talking to each other on the news", "video_id": "video12128", "sen_id": 224154}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12128", "sen_id": 224155}, {"caption": "a man is giving the news with beura", "video_id": "video12128", "sen_id": 224156}, {"caption": "a news reader interviewing a man in the news program", "video_id": "video12128", "sen_id": 224157}, {"caption": "a lady and man standing and screen speaking man on television displaying with man and lady beside on picture", "video_id": "video12128", "sen_id": 224158}, {"caption": "the excited man is talking very loudly about a man that was killed", "video_id": "video12128", "sen_id": 224159}, {"caption": "a man giving a seminar on bicycle accidents", "video_id": "video10827", "sen_id": 224160}, {"caption": "a man discusses the frequency of bicycling accidents in new york", "video_id": "video10827", "sen_id": 224161}, {"caption": "a man in a brown jacket is making a speech", "video_id": "video10827", "sen_id": 224162}, {"caption": "a map flashes before a man gives a monologue on stage in a play", "video_id": "video10827", "sen_id": 224163}, {"caption": "a man in a light brown jacket and white shirt giving a talk", "video_id": "video10827", "sen_id": 224164}, {"caption": "a man in a brown suit is talking about injuries", "video_id": "video10827", "sen_id": 224165}, {"caption": "a man states that more cycling accidents are happening on the east side of manhattan due to more cyclists coming off the bridges there", "video_id": "video10827", "sen_id": 224166}, {"caption": "a man in brown over coat is saying something and entertaining", "video_id": "video10827", "sen_id": 224167}, {"caption": "the map is shown and a man stands and talks with lot of gestures", "video_id": "video10827", "sen_id": 224168}, {"caption": "a person wearing a brown jacket standing on stage talking", "video_id": "video10827", "sen_id": 224169}, {"caption": "guy in suit talking to the audience on stage", "video_id": "video10827", "sen_id": 224170}, {"caption": "there is a suit man talking from the studio", "video_id": "video10827", "sen_id": 224171}, {"caption": "man talks about the cause of cycling accidents", "video_id": "video10827", "sen_id": 224172}, {"caption": "map shows one man talks it on stage", "video_id": "video10827", "sen_id": 224173}, {"caption": "in this video clip the man wore a court", "video_id": "video10827", "sen_id": 224174}, {"caption": "the speaker noted a lot more cycling accidents on the east side part of town", "video_id": "video10827", "sen_id": 224175}, {"caption": "there is a suit man talking inside a stage", "video_id": "video10827", "sen_id": 224176}, {"caption": "on a map one man talks about something in a stage", "video_id": "video10827", "sen_id": 224177}, {"caption": "a man in white shirt and coat explaining map location waving hand", "video_id": "video10827", "sen_id": 224178}, {"caption": "a guy in a jacket is discussing a map", "video_id": "video10827", "sen_id": 224179}, {"caption": "a man is talking to a couple about becoming popular", "video_id": "video10753", "sen_id": 224180}, {"caption": "a woman is explaining how overwhelming her new found fame is", "video_id": "video10753", "sen_id": 224181}, {"caption": "a man is discussing with a couple about their engagement", "video_id": "video10753", "sen_id": 224182}, {"caption": "a man in a gray suit and glasses talks to a couple in a studio", "video_id": "video10753", "sen_id": 224183}, {"caption": "maine mendoza is interviewed by a bbc reporter about her rise in popularity", "video_id": "video10753", "sen_id": 224184}, {"caption": "a man in glasses is talking to a young couple on the news", "video_id": "video10753", "sen_id": 224185}, {"caption": "a person wearing suite interviewing the actress for the bbc channel", "video_id": "video10753", "sen_id": 224186}, {"caption": "an entertainment reporter talks to a young couple who are popular tv stars", "video_id": "video10753", "sen_id": 224187}, {"caption": "a old man and boy and girl standing and speaking mic in hand displaying on screen", "video_id": "video10753", "sen_id": 224188}, {"caption": "the couple stands on a stage with many boxes wrapped to look like presents", "video_id": "video10753", "sen_id": 224189}, {"caption": "a person is interviewing a couple and they answering him", "video_id": "video10753", "sen_id": 224190}, {"caption": "bbc maine mendoza actress speaking behind the screen", "video_id": "video10753", "sen_id": 224191}, {"caption": "man takes an interview to a coupethe girl has black color hair", "video_id": "video10753", "sen_id": 224192}, {"caption": "a man asks a young performance duo about the experience of fame", "video_id": "video10753", "sen_id": 224193}, {"caption": "a man and a woman are talking about some nonsense", "video_id": "video10753", "sen_id": 224194}, {"caption": "a man is interviewing a young woman while another man holds a microphone", "video_id": "video10753", "sen_id": 224195}, {"caption": "bbc one man and women talking about something", "video_id": "video10753", "sen_id": 224196}, {"caption": "an announcer interviews two actors about their sudden fame", "video_id": "video10753", "sen_id": 224197}, {"caption": "a mature men is talking to a couple and asking them soemthing", "video_id": "video10753", "sen_id": 224198}, {"caption": "a man and woman are talking on tv", "video_id": "video10753", "sen_id": 224199}, {"caption": "a homes exterior and interior is being shown while words are shown over the images", "video_id": "video11298", "sen_id": 224200}, {"caption": "description of a file being made about a serial killer on the run", "video_id": "video11298", "sen_id": 224201}, {"caption": "a person is talking about a scary movie as the setting is shown", "video_id": "video11298", "sen_id": 224202}, {"caption": "a trailer for a movie from the author of silence of the lambs thomas harris", "video_id": "video11298", "sen_id": 224203}, {"caption": "a prequel to silence of the lambs is introduced in dramatic fashion", "video_id": "video11298", "sen_id": 224204}, {"caption": "a movie trailer as a silence of the lambs prequel", "video_id": "video11298", "sen_id": 224205}, {"caption": "while a seemingly evil palled mansion's scenes flash on the screen a text captioned male voice narrates an audio version of novelist thomas harris writings' in this short video trailer as follows dear doctor i have admired you for years i wanted to tell you that i am delighted that you have taken an interest in me i dont believe", "video_id": "video11298", "sen_id": 224206}, {"caption": "a view of the outside and inside of a house", "video_id": "video11298", "sen_id": 224207}, {"caption": "a large house sitting in the backgdround of a grassy field", "video_id": "video11298", "sen_id": 224208}, {"caption": "words flash on the screen alluding to various famous movies introducing a new show", "video_id": "video11298", "sen_id": 224209}, {"caption": "a house is shown as a man narrates about a doctor having an interest in him", "video_id": "video11298", "sen_id": 224210}, {"caption": "displays trees and nature words briefly flash on the screen then there is an image of a house there is then an image of arms lifting weights", "video_id": "video11298", "sen_id": 224211}, {"caption": "a movie trailer of a serial killer speaking to a doctor he admires", "video_id": "video11298", "sen_id": 224212}, {"caption": "trailer for a thriller and horror type of movie", "video_id": "video11298", "sen_id": 224213}, {"caption": "a driveway between trees leads past a pond reflecting a large gray house with white columns black shutters chimneys terraces and patios", "video_id": "video11298", "sen_id": 224214}, {"caption": "there is a trailer of a horror movie and a big house is there", "video_id": "video11298", "sen_id": 224215}, {"caption": "a big buildings are displayed", "video_id": "video11298", "sen_id": 224216}, {"caption": "the video shows one building entrance and steps into the building and men sitting", "video_id": "video11298", "sen_id": 224217}, {"caption": "a man telling about that he admired his doctor for years as the doctor has taken interest in him", "video_id": "video11298", "sen_id": 224218}, {"caption": "some text is on a black background", "video_id": "video11298", "sen_id": 224219}, {"caption": "a small red ferrari airplane sitting in a field", "video_id": "video11629", "sen_id": 224220}, {"caption": "a red aircraft sits on a green open field", "video_id": "video11629", "sen_id": 224221}, {"caption": "a red ferrari plane is sitting in a field", "video_id": "video11629", "sen_id": 224222}, {"caption": "a small red ferrari airplane sitting on the ground", "video_id": "video11629", "sen_id": 224223}, {"caption": "a red black and white plane with a many decals sits in an open grassy field on a cloudy day", "video_id": "video11629", "sen_id": 224224}, {"caption": "a red plane is sitting on the grass", "video_id": "video11629", "sen_id": 224225}, {"caption": "a small plane is parked in the grass and no one is around", "video_id": "video11629", "sen_id": 224226}, {"caption": "a small flight is landing in the ground", "video_id": "video11629", "sen_id": 224227}, {"caption": "rock music is playing in the background while panning to a ferrari jet", "video_id": "video11629", "sen_id": 224228}, {"caption": "a small ferrari aircraft sitting parked in an open field", "video_id": "video11629", "sen_id": 224229}, {"caption": "a jet sponsored by ferrari is being showcased", "video_id": "video11629", "sen_id": 224230}, {"caption": "a red color flight landing on the ground", "video_id": "video11629", "sen_id": 224231}, {"caption": "a small red jet sets on a grassy field", "video_id": "video11629", "sen_id": 224232}, {"caption": "a little red plane sits on a big green field", "video_id": "video11629", "sen_id": 224233}, {"caption": " initially seen a vast area of greenish ground 2 a small size red color black combinedferrari jet areoplane is stationed on the ground", "video_id": "video11629", "sen_id": 224234}, {"caption": "there is a red aircraft getting ready to fly", "video_id": "video11629", "sen_id": 224235}, {"caption": "one plane is on the grass field to fly", "video_id": "video11629", "sen_id": 224236}, {"caption": "a ferrari add painted small aeroplane is on the greenland", "video_id": "video11629", "sen_id": 224237}, {"caption": "a aeroplane red color landing on grass land still picture shown on screen", "video_id": "video11629", "sen_id": 224238}, {"caption": "a red and yellow plane is on the grass", "video_id": "video11629", "sen_id": 224239}, {"caption": "a mand is recording a rainy day at home", "video_id": "video12204", "sen_id": 224240}, {"caption": "a girl is washing dishes in the kitchen as her dad talks about the snow outside", "video_id": "video12204", "sen_id": 224241}, {"caption": "man records child and wife at home during a winter day while it snows outside", "video_id": "video12204", "sen_id": 224242}, {"caption": "a man with a camera is moving through a house", "video_id": "video12204", "sen_id": 224243}, {"caption": "a person walks though a living room with a hardwood floor", "video_id": "video12204", "sen_id": 224244}, {"caption": "the girl is making some kind of food and talking to somebody while looking at the snow", "video_id": "video12204", "sen_id": 224245}, {"caption": "a man is taking video of a woman in a pink tank top rinsing something in the sink and then continues through the house talking", "video_id": "video12204", "sen_id": 224246}, {"caption": "a little girl starts on this clip running into kitchen where mom is then the camera man showing us the window outside saying summer one day winter the next", "video_id": "video12204", "sen_id": 224247}, {"caption": "a girl prepares a snack while a man describes the crazy weather", "video_id": "video12204", "sen_id": 224248}, {"caption": "a girl in the kitchen washing something off and a man turns the camera to himself", "video_id": "video12204", "sen_id": 224249}, {"caption": "a man and a woman talk about the snow that has fallen outside their house overnight", "video_id": "video12204", "sen_id": 224250}, {"caption": "couple talks about the rapidly changing weather", "video_id": "video12204", "sen_id": 224251}, {"caption": "guy walking in house and looking snow out of window", "video_id": "video12204", "sen_id": 224252}, {"caption": "a man in a house is discussing the snowy weather while walking in his home", "video_id": "video12204", "sen_id": 224253}, {"caption": "a man with a beard is walking in a room", "video_id": "video12204", "sen_id": 224254}, {"caption": "a girl in the kitchen in a pink tank top is talking to her dad about the never ending snow outside", "video_id": "video12204", "sen_id": 224255}, {"caption": "a man and woman discuss the recent snowy weather they re received", "video_id": "video12204", "sen_id": 224256}, {"caption": "a man in his home along with a lady in her kitchen expresses the unpredictable weather of summer on one day and winter the next day", "video_id": "video12204", "sen_id": 224257}, {"caption": "a girl in pink color dress inside kitchen washing and old man walking speaking displaying on screen", "video_id": "video12204", "sen_id": 224258}, {"caption": "a person is walking around in a room", "video_id": "video12204", "sen_id": 224259}, {"caption": "a group of young men sing and dance while performing various tasks", "video_id": "video11681", "sen_id": 224260}, {"caption": "different scenes of people doing irregular things as music plays in the background", "video_id": "video11681", "sen_id": 224261}, {"caption": "music video compilation of backstreet boys doing various activites", "video_id": "video11681", "sen_id": 224262}, {"caption": "a group of 5 young men sing and dance in various locations", "video_id": "video11681", "sen_id": 224263}, {"caption": "a group performs a dance and various videos", "video_id": "video11681", "sen_id": 224264}, {"caption": "a group of dancers are performing and a man in yellow dress is throwing a ball as", "video_id": "video11681", "sen_id": 224265}, {"caption": "the clip features a scene from a music video of the pop artist justin timberlake", "video_id": "video11681", "sen_id": 224266}, {"caption": "group of guys dancing and singing on the stage", "video_id": "video11681", "sen_id": 224267}, {"caption": "a team dance for a rocking song and a guy is shooting it", "video_id": "video11681", "sen_id": 224268}, {"caption": "a group of men doing various things over a pop music sound track", "video_id": "video11681", "sen_id": 224269}, {"caption": "a boy band sings while shots of them are shown on the music video", "video_id": "video11681", "sen_id": 224270}, {"caption": "all persons are dancing and singing together", "video_id": "video11681", "sen_id": 224271}, {"caption": "many people is enjoying with music", "video_id": "video11681", "sen_id": 224272}, {"caption": "a group of young men sing songs and dance in various locations", "video_id": "video11681", "sen_id": 224273}, {"caption": "a music album showing different activities like dancing and throwing ball etc", "video_id": "video11681", "sen_id": 224274}, {"caption": "a group of people are dancing on a stage", "video_id": "video11681", "sen_id": 224275}, {"caption": "a white shirt man throwing ball to his friend", "video_id": "video11681", "sen_id": 224276}, {"caption": "mens fast dancing and singing in viax channel", "video_id": "video11681", "sen_id": 224277}, {"caption": "a group of men dance and preform a song on stage", "video_id": "video11681", "sen_id": 224278}, {"caption": "a man practices adicipline in a room", "video_id": "video11681", "sen_id": 224279}, {"caption": "a man describes and demonstrates the way to repair a lap top computer", "video_id": "video12543", "sen_id": 224280}, {"caption": "a man is explaining how to take apart a computer and which screws to remove", "video_id": "video12543", "sen_id": 224281}, {"caption": "a person showing parts of the battery cover on a laptop and how to unscrew them", "video_id": "video12543", "sen_id": 224282}, {"caption": "a person taking the screws out of the back of a laptop", "video_id": "video12543", "sen_id": 224283}, {"caption": "a man dismantles a laptop computer with a screw driver", "video_id": "video12543", "sen_id": 224284}, {"caption": "rhe person is pressin some buttons and tunnimg the device", "video_id": "video12543", "sen_id": 224285}, {"caption": "a tutorial for detaching a hard drive from a laptop as a man removes screws from the back of a laptop", "video_id": "video12543", "sen_id": 224286}, {"caption": "a person taking apart an electronic device by hand", "video_id": "video12543", "sen_id": 224287}, {"caption": "man separating the parts of a black laptop", "video_id": "video12543", "sen_id": 224288}, {"caption": "a person is removing screws from the processor cabinet", "video_id": "video12543", "sen_id": 224289}, {"caption": "a lap top is disassembled as the narrator gives instruction", "video_id": "video12543", "sen_id": 224290}, {"caption": "a man demonstrates and describes how to remove the back of a computer", "video_id": "video12543", "sen_id": 224291}, {"caption": "a guy teaches how to open a laptop as he demonstrates it visually", "video_id": "video12543", "sen_id": 224292}, {"caption": "some guy is unscrewing the pins and taking some disk out of the black laptop", "video_id": "video12543", "sen_id": 224293}, {"caption": "a man is opening laptop screws from panel and removing its hardware", "video_id": "video12543", "sen_id": 224294}, {"caption": "a man removing the screws for a hard drive on a laptop and then sliding the hard drive out", "video_id": "video12543", "sen_id": 224295}, {"caption": "a man demonstrates how to repair a laptop computer", "video_id": "video12543", "sen_id": 224296}, {"caption": "a man is taking a hard drive out of a computer", "video_id": "video12543", "sen_id": 224297}, {"caption": "a man explains how to take apart a laptop computer", "video_id": "video12543", "sen_id": 224298}, {"caption": "the man is describing and showing how to take out the screws that hold the hard drive in", "video_id": "video12543", "sen_id": 224299}, {"caption": "a pan with red peppers with added squid that's being cooked", "video_id": "video10247", "sen_id": 224300}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video10247", "sen_id": 224301}, {"caption": "a person is cooking the squid after marination", "video_id": "video10247", "sen_id": 224302}, {"caption": "a hand holding chop sticks is stirring a frying pan filled with squid and vegetables while music plays and white text appears showing the steps to a recipe", "video_id": "video10247", "sen_id": 224303}, {"caption": "a person is mixing meat and vegetables in a skillet to make a meal", "video_id": "video10247", "sen_id": 224304}, {"caption": "squid is added to a frying pan on the stove and stirred", "video_id": "video10247", "sen_id": 224305}, {"caption": "a skillet is shown cooking red vegetables and onions and then some more food is added and stirred with chopsticks", "video_id": "video10247", "sen_id": 224306}, {"caption": "a person with a wooden spoon is making squid over a hot stove", "video_id": "video10247", "sen_id": 224307}, {"caption": "food is shown being prepared in a pan", "video_id": "video10247", "sen_id": 224308}, {"caption": "a women is doing the food item in the pan and adds the ingredients like marinated squids", "video_id": "video10247", "sen_id": 224309}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video10247", "sen_id": 224310}, {"caption": "a person adds marinated squids into a pan and mixes", "video_id": "video10247", "sen_id": 224311}, {"caption": "a recipe is being shown in text while the cooking is shown in the background", "video_id": "video10247", "sen_id": 224312}, {"caption": "a person stirring food in a black frying pan on the stove", "video_id": "video10247", "sen_id": 224313}, {"caption": "a person explaining cooking of marinated squids and mixture in to the pan in a kitchen", "video_id": "video10247", "sen_id": 224314}, {"caption": "a person is preparing food item in a fry bowl", "video_id": "video10247", "sen_id": 224315}, {"caption": "insects are fried on a tawa by spoon", "video_id": "video10247", "sen_id": 224316}, {"caption": "how to cook marinated squids on the stove in a skillet", "video_id": "video10247", "sen_id": 224317}, {"caption": "a pot with food in it and is being mixed with chopsticks", "video_id": "video10247", "sen_id": 224318}, {"caption": "someone is stirring food inside of a pot", "video_id": "video10247", "sen_id": 224319}, {"caption": "a man is describing a very dark underwater scene", "video_id": "video12538", "sen_id": 224320}, {"caption": "james cameron talks about going to the mariana trench", "video_id": "video12538", "sen_id": 224321}, {"caption": "a older white man in a grey button down shirt in talking to the camera", "video_id": "video12538", "sen_id": 224322}, {"caption": "aman is describing how isolated he felt going up into space", "video_id": "video12538", "sen_id": 224323}, {"caption": "a man with gray hair and a goatee describes a trip to the bottom of the sea which is flat empty and dark", "video_id": "video12538", "sen_id": 224324}, {"caption": "a man talking about facing loneliness in a dark place", "video_id": "video12538", "sen_id": 224325}, {"caption": "a man is discussing his previous experience in a dark isolated area", "video_id": "video12538", "sen_id": 224326}, {"caption": "a man with grey hair with a mustache and a goatee describes his experience underwater", "video_id": "video12538", "sen_id": 224327}, {"caption": "the bottom of the ocean being talked about by a gray haired man in a black shirt", "video_id": "video12538", "sen_id": 224328}, {"caption": "there is underwater footage from a submarine and a man wearing a dark blue shirt", "video_id": "video12538", "sen_id": 224329}, {"caption": "a gray haired man describes his feelings of isolation while visiting under sea", "video_id": "video12538", "sen_id": 224330}, {"caption": "an old man shares the experience in an isolated place", "video_id": "video12538", "sen_id": 224331}, {"caption": "a gray haired man wearing a black collared shirt talking", "video_id": "video12538", "sen_id": 224332}, {"caption": "a man explores the deepest darkest part of the ocean he could find and talk about how it felt like being on another planet", "video_id": "video12538", "sen_id": 224333}, {"caption": "a guy with a beard is talkign to some people", "video_id": "video12538", "sen_id": 224334}, {"caption": "a national geographic photographer describes a dark and desolate place underwater", "video_id": "video12538", "sen_id": 224335}, {"caption": "a program on the national geographic channel talks about the deep oceans", "video_id": "video12538", "sen_id": 224336}, {"caption": "a person in the national geographic channel explaining his experiences", "video_id": "video12538", "sen_id": 224337}, {"caption": "a man in a grey button down with white hair explaining the depths of the ocean", "video_id": "video12538", "sen_id": 224338}, {"caption": "a man with a beard is talking about soemthing", "video_id": "video12538", "sen_id": 224339}, {"caption": "stephen colbert talking to bill o'reilly's talk show", "video_id": "video12190", "sen_id": 224340}, {"caption": "a man with spectacles and grey coat is discussing with another man", "video_id": "video12190", "sen_id": 224341}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12190", "sen_id": 224342}, {"caption": "two men in suit having serious conversation in news channel television", "video_id": "video12190", "sen_id": 224343}, {"caption": "two man are discussing something about seriously in news channel", "video_id": "video12190", "sen_id": 224344}, {"caption": "a guy dressed in a gray suit and red tie is talking to a guy in a black suit on a t", "video_id": "video12190", "sen_id": 224345}, {"caption": "there is a black suit man talking to someone in a studio", "video_id": "video12190", "sen_id": 224346}, {"caption": "the two gentle men are conversing on the news", "video_id": "video12190", "sen_id": 224347}, {"caption": "stephen colbert talking about how he runs his show", "video_id": "video12190", "sen_id": 224348}, {"caption": "stephen colbert talking about his on stage personality", "video_id": "video12190", "sen_id": 224349}, {"caption": "bill o reilly and stephen colbert engage in discussion on bill s show", "video_id": "video12190", "sen_id": 224350}, {"caption": "a man talking with another man both wearing black color coat", "video_id": "video12190", "sen_id": 224351}, {"caption": "a two men are dicusse in the television channel", "video_id": "video12190", "sen_id": 224352}, {"caption": "two men one in black suit and other in ash color are talking with each other", "video_id": "video12190", "sen_id": 224353}, {"caption": "a person on tv is talking about an issue", "video_id": "video12190", "sen_id": 224354}, {"caption": "a man is talking on tv in a news channel", "video_id": "video12190", "sen_id": 224355}, {"caption": "a person is reporting in the news channel", "video_id": "video12190", "sen_id": 224356}, {"caption": "a famous tc presenter expresses how he works on his show to the interviewer", "video_id": "video12190", "sen_id": 224357}, {"caption": "stephen colbert on the oreilly factor stephen colbert possiblly talking about his own show", "video_id": "video12190", "sen_id": 224358}, {"caption": "some people on the news are talking shop", "video_id": "video12190", "sen_id": 224359}, {"caption": "a middle-aged man in a suit complains about the world while a translator translates", "video_id": "video12085", "sen_id": 224360}, {"caption": "a man with curly gray hair wearing eyeglasses and a black suit is seated by a bookcase with one arm bent upwards and a hand by the side of his face", "video_id": "video12085", "sen_id": 224361}, {"caption": "a man in a suit is explaining identity and allegiance in the modern world", "video_id": "video12085", "sen_id": 224362}, {"caption": "a man in a suit and tie talks about allegiance and identity", "video_id": "video12085", "sen_id": 224363}, {"caption": "translation video of a old man speaking about political issues", "video_id": "video12085", "sen_id": 224364}, {"caption": "a man wearing a black shirt talking about politics", "video_id": "video12085", "sen_id": 224365}, {"caption": "a man sitting down and making hand gestures as he talks", "video_id": "video12085", "sen_id": 224366}, {"caption": "a man dressed in a suit and tie and wearing glasses speak in a foreign language while the male voice interpret what he's saying", "video_id": "video12085", "sen_id": 224367}, {"caption": "a man is translating what a man in a suit is saying in a news podcast", "video_id": "video12085", "sen_id": 224368}, {"caption": "a man is getting interviewed and it sitting in a chair next to a book shelf", "video_id": "video12085", "sen_id": 224369}, {"caption": "a man with gray hair and a black jacket is talking with his hand up", "video_id": "video12085", "sen_id": 224370}, {"caption": "a professor is being interviewed while wearing a suit", "video_id": "video12085", "sen_id": 224371}, {"caption": "a man in a suit with messy hair and glasses is being interviewed", "video_id": "video12085", "sen_id": 224372}, {"caption": "there is a man with professional look sitting in a chair and taking a interview", "video_id": "video12085", "sen_id": 224373}, {"caption": "a man describing how allegiance can be dangerous in the world today", "video_id": "video12085", "sen_id": 224374}, {"caption": "a man with specs talking nearby a shelf", "video_id": "video12085", "sen_id": 224375}, {"caption": "an older man with white hair and glasses is talking during an interview", "video_id": "video12085", "sen_id": 224376}, {"caption": " in a black suit and white shirt has fluffy gray hair and speaks with an elbow bent up while sitting near a filled bookcase", "video_id": "video12085", "sen_id": 224377}, {"caption": "man in coat and dotted tie talks in interviewhe has white hair", "video_id": "video12085", "sen_id": 224378}, {"caption": "the middle aged man in black suit is telling us about something in his interview", "video_id": "video12085", "sen_id": 224379}, {"caption": "a man is ordering cupcakes in front of a cupcake counter displaying hundreds of cupcakes", "video_id": "video11350", "sen_id": 224380}, {"caption": "a man orders cupcakes from a large indoor pastry counter", "video_id": "video11350", "sen_id": 224381}, {"caption": "a large glass display case with many different types of mini cupcakes", "video_id": "video11350", "sen_id": 224382}, {"caption": "a man is in a bakery and ordering some cupcakes", "video_id": "video11350", "sen_id": 224383}, {"caption": "man looks at some cupcakes and asks to buy two of them", "video_id": "video11350", "sen_id": 224384}, {"caption": "a man points at a cupcake he is trying to order from a store", "video_id": "video11350", "sen_id": 224385}, {"caption": "a man chooses from a display case filled with candy", "video_id": "video11350", "sen_id": 224386}, {"caption": "a man with a beanie walks into a bakery and examines all the cupcakes", "video_id": "video11350", "sen_id": 224387}, {"caption": "man films cupcakes while he is asking the lady who sells them that he wants two of each", "video_id": "video11350", "sen_id": 224388}, {"caption": "a man is picking out chocolates in a store window outside", "video_id": "video11350", "sen_id": 224389}, {"caption": "a man is at a cupcake shop selecting which ones he would like to purchase", "video_id": "video11350", "sen_id": 224390}, {"caption": "a person pointing out and choosing assorted pastries", "video_id": "video11350", "sen_id": 224391}, {"caption": "a man is commenting on a collection of cupcakes then chooses a few of them", "video_id": "video11350", "sen_id": 224392}, {"caption": "a man pointing at a chocolate candy in a store", "video_id": "video11350", "sen_id": 224393}, {"caption": "a man wearing a knit cap with a beard and moustache walks on a city street and the man is inside a bakery choosing from trays of miniature flavored cupcakes by pointing", "video_id": "video11350", "sen_id": 224394}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11350", "sen_id": 224395}, {"caption": "a man is ordering tasty cupcakes that are behind a glass structure", "video_id": "video11350", "sen_id": 224396}, {"caption": "a guy showing all these tasty cupcakes and testing a few of them out", "video_id": "video11350", "sen_id": 224397}, {"caption": "a boy in black dress wearing cloth chocolate on screen showing with hand displaying on screen", "video_id": "video11350", "sen_id": 224398}, {"caption": "a man with a hat is looking at food", "video_id": "video11350", "sen_id": 224399}, {"caption": "music is playing through a countdown of tom hanks movies", "video_id": "video10168", "sen_id": 224400}, {"caption": "an showcase of tom hank's top 20 movies", "video_id": "video10168", "sen_id": 224401}, {"caption": "two men are pictured standing in front of a large mock-up of a los angeles police badge", "video_id": "video10168", "sen_id": 224402}, {"caption": "an actor with dark hair's movies are showcased in order of quality", "video_id": "video10168", "sen_id": 224403}, {"caption": "a list of tom hanks' best movies has dragnet #20", "video_id": "video10168", "sen_id": 224404}, {"caption": "sentence 1: the top 20 lists of tom hanks movies are started to listing with the dragnet movie at 20th place", "video_id": "video10168", "sen_id": 224405}, {"caption": "tom hanks movies is about the talking", "video_id": "video10168", "sen_id": 224406}, {"caption": "top twenty movies are selected here and the top most will be selected", "video_id": "video10168", "sen_id": 224407}, {"caption": "there are some pictures of movie actors shown on screen", "video_id": "video10168", "sen_id": 224408}, {"caption": "in a slideshow a top 20 tom hanks movies was displayed and at last dragnenti poster was displayed in motion", "video_id": "video10168", "sen_id": 224409}, {"caption": "a countdown list of famous movies features two me dressed as policemen", "video_id": "video10168", "sen_id": 224410}, {"caption": "it is a top 20 movies of tom hanks and the 1st is dragnet", "video_id": "video10168", "sen_id": 224411}, {"caption": "tom hanks top movies still of number twenty set to music", "video_id": "video10168", "sen_id": 224412}, {"caption": "top 20 tom hanks movies 20 dragnet los angeles police 714", "video_id": "video10168", "sen_id": 224413}, {"caption": "top 20 tom hanks movies the guy is looking good and awesome", "video_id": "video10168", "sen_id": 224414}, {"caption": "in this video clip is about top 20 tom hanks movies", "video_id": "video10168", "sen_id": 224415}, {"caption": "it shows the top movies of a famous actor", "video_id": "video10168", "sen_id": 224416}, {"caption": "a various of movie is displaying on the screen", "video_id": "video10168", "sen_id": 224417}, {"caption": "a list of best tom hanks films set to light rock", "video_id": "video10168", "sen_id": 224418}, {"caption": "a still image photoes pictures displaying on the screen", "video_id": "video10168", "sen_id": 224419}, {"caption": "a white car and a man in a jumpsuit standing next to it", "video_id": "video10834", "sen_id": 224420}, {"caption": "a man in a white jump suit is standing next to a white care", "video_id": "video10834", "sen_id": 224421}, {"caption": "a man talks about the features of a tesla car", "video_id": "video10834", "sen_id": 224422}, {"caption": "a video that is looking at a tesla", "video_id": "video10834", "sen_id": 224423}, {"caption": "a male voiceover describes the performance of a white sportscar", "video_id": "video10834", "sen_id": 224424}, {"caption": "silver car is show while young man explains the features of the tesla p85d", "video_id": "video10834", "sen_id": 224425}, {"caption": "a person does a voiceover for the specs for a specific type of vehicle that is shown", "video_id": "video10834", "sen_id": 224426}, {"caption": "a grey car is shown followed by a white car", "video_id": "video10834", "sen_id": 224427}, {"caption": "there is a white car then camera pans down to the wheel and a man is seen standing in front of the car", "video_id": "video10834", "sen_id": 224428}, {"caption": "two men stand in front of a white car with metal spoke wheels parked in a lot that is reflecting trees the curves of a building and the doorway", "video_id": "video10834", "sen_id": 224429}, {"caption": "there is a white car parked on the road", "video_id": "video10834", "sen_id": 224430}, {"caption": "a picture of coal black rims of a white car is showcased", "video_id": "video10834", "sen_id": 224431}, {"caption": "the side view of a white car with the tire and wheel spokes", "video_id": "video10834", "sen_id": 224432}, {"caption": "there is a white car with a man in grey shirt standing in the background", "video_id": "video10834", "sen_id": 224433}, {"caption": "a man is narrating details about the build quality of a white car", "video_id": "video10834", "sen_id": 224434}, {"caption": "a white car is shown while a male voice talks about the car", "video_id": "video10834", "sen_id": 224435}, {"caption": "a car shown on thr road", "video_id": "video10834", "sen_id": 224436}, {"caption": "a white sports car has very nice grafite wheels and rims", "video_id": "video10834", "sen_id": 224437}, {"caption": "a man standing in front of a tesla p85d electronic car", "video_id": "video10834", "sen_id": 224438}, {"caption": "a white car is being filmed by some one", "video_id": "video10834", "sen_id": 224439}, {"caption": "a coach positions members of an indoor volleyball team and offers a few words of advice while touching the net", "video_id": "video10663", "sen_id": 224440}, {"caption": "a volleyball team and coach attempt to show how to block a volleyball", "video_id": "video10663", "sen_id": 224441}, {"caption": "six volleyball techniques - blocking how to block one of 6 important volleyball techiniques", "video_id": "video10663", "sen_id": 224442}, {"caption": "a coach giving lessons to students on blocking in volleyball", "video_id": "video10663", "sen_id": 224443}, {"caption": "two men are coaching a women's volleyball team on blocking", "video_id": "video10663", "sen_id": 224444}, {"caption": "all persons are playing volleyball each other in a stadium", "video_id": "video10663", "sen_id": 224445}, {"caption": "players are playing volleyball and a person called mark is being asked to teach any three items on blocking technique to the players", "video_id": "video10663", "sen_id": 224446}, {"caption": "vollyball technique in the field is explained by a coach and is made a video by a man", "video_id": "video10663", "sen_id": 224447}, {"caption": "volleyball players are practicing important techniques such as blocking", "video_id": "video10663", "sen_id": 224448}, {"caption": "a volleyball coach explains how to lock in a gym to his team", "video_id": "video10663", "sen_id": 224449}, {"caption": "there are some players waiting in a court", "video_id": "video10663", "sen_id": 224450}, {"caption": "a team of girls practicing volleyball beside their coach", "video_id": "video10663", "sen_id": 224451}, {"caption": "person at volleyball court teaching the player how to play", "video_id": "video10663", "sen_id": 224452}, {"caption": "several female volleyball players stand in a volleyball court ready to demonstrate blocking techinques", "video_id": "video10663", "sen_id": 224453}, {"caption": "players are getting ready to play volley ball match in a stadium", "video_id": "video10663", "sen_id": 224454}, {"caption": "an educational video on blocking in volleyball", "video_id": "video10663", "sen_id": 224455}, {"caption": "some volley ball game while the umpire comes on other side and touches the net", "video_id": "video10663", "sen_id": 224456}, {"caption": "a woman s volleyball team stands on one side of court as coach walks on opposite side to discuss practice drill", "video_id": "video10663", "sen_id": 224457}, {"caption": "a coach giving volleyball team blocking instructions", "video_id": "video10663", "sen_id": 224458}, {"caption": "a guy on a volleyball court is doing something", "video_id": "video10663", "sen_id": 224459}, {"caption": "a surfer is riding a wave into the beach", "video_id": "video12312", "sen_id": 224460}, {"caption": "a man is surfing much better than everyone else", "video_id": "video12312", "sen_id": 224461}, {"caption": "a group of surfers bob in the waves near an ocean beach", "video_id": "video12312", "sen_id": 224462}, {"caption": "a surfer rides some waves out on the open water at different beaches", "video_id": "video12312", "sen_id": 224463}, {"caption": "a person surfing a bunch of different waves in the ocean", "video_id": "video12312", "sen_id": 224464}, {"caption": "a man is surfing a wave on a white surfboard", "video_id": "video12312", "sen_id": 224465}, {"caption": "a man surfs on low height waves in a green tinted ocean with hyper active music playing in the background", "video_id": "video12312", "sen_id": 224466}, {"caption": "there is a man surfing on the waves without fear", "video_id": "video12312", "sen_id": 224467}, {"caption": "video plaback aborted due to a network error", "video_id": "video12312", "sen_id": 224468}, {"caption": "a man is surfing over the ocean waves", "video_id": "video12312", "sen_id": 224469}, {"caption": "a surfer is riding intense waves on a sunny day", "video_id": "video12312", "sen_id": 224470}, {"caption": "there is a man surfing beautifully with waves", "video_id": "video12312", "sen_id": 224471}, {"caption": "a man is shown surfing on waves while some fast music plays on", "video_id": "video12312", "sen_id": 224472}, {"caption": "a man is skating in the sea water", "video_id": "video12312", "sen_id": 224473}, {"caption": "a man surfing on the waves of the ocean and few other surfers shown in the video", "video_id": "video12312", "sen_id": 224474}, {"caption": "a man is surfing on some waves", "video_id": "video12312", "sen_id": 224475}, {"caption": "there is a man surfing on the wave without fear", "video_id": "video12312", "sen_id": 224476}, {"caption": "a man surfing on the beach and the waves on the sunny day", "video_id": "video12312", "sen_id": 224477}, {"caption": "a superb coverage of a wind surfer cutting and riding the high sea waves in style", "video_id": "video12312", "sen_id": 224478}, {"caption": "a surfer cuts back and forth on the ocean waves", "video_id": "video12312", "sen_id": 224479}, {"caption": "a large boat bobs up and down on the sea then we see the fish being off loaded from the ship", "video_id": "video12900", "sen_id": 224480}, {"caption": "a boat with fish being thrown down some kind of shoot", "video_id": "video12900", "sen_id": 224481}, {"caption": "a fishing vessel travels during the day and night small fish dart in the dark waters fish slide through an opening and silvery fish fall along an open chute", "video_id": "video12900", "sen_id": 224482}, {"caption": "fishing boats on the water and catching fish", "video_id": "video12900", "sen_id": 224483}, {"caption": "a large fishing boat sails on the ocean and processes fish", "video_id": "video12900", "sen_id": 224484}, {"caption": "a large boat carrying a lot of sardines pulling into a seaport", "video_id": "video12900", "sen_id": 224485}, {"caption": "fish being poured down chutes into containers on ships", "video_id": "video12900", "sen_id": 224486}, {"caption": "fishing boats catching fish and a man sorting through the fish", "video_id": "video12900", "sen_id": 224487}, {"caption": "a large fishing boat bobs on the ocean a great many fish are jumping out of the water near the boat caught fish tumble down a ramp to be sorted by fishery workers finally several fishing boats are floating on the ocean in the near-dark", "video_id": "video12900", "sen_id": 224488}, {"caption": "a fishing boat is out on the water in a very cold area of the ocean", "video_id": "video12900", "sen_id": 224489}, {"caption": "a fishing boat is shown collecting fish and then sitting in the ocean by other boats", "video_id": "video12900", "sen_id": 224490}, {"caption": "there are many fishermen who unloading the fishes from the boat", "video_id": "video12900", "sen_id": 224491}, {"caption": "mfc s carrier boat arrives at mega global seaport with a hold full of fresh sardines", "video_id": "video12900", "sen_id": 224492}, {"caption": "people are collecting and cleaning sardines on boats this is about mega sardines canning process", "video_id": "video12900", "sen_id": 224493}, {"caption": "a ship is moving in the sea water", "video_id": "video12900", "sen_id": 224494}, {"caption": "a big ship on the water and the fish were in the water", "video_id": "video12900", "sen_id": 224495}, {"caption": "the fish catching ship show to their fish processing and their processing method", "video_id": "video12900", "sen_id": 224496}, {"caption": "in a big ship mega sardines canning process mfc s", "video_id": "video12900", "sen_id": 224497}, {"caption": "a carrier ship is arriving sea shore with fishes on-board", "video_id": "video12900", "sen_id": 224498}, {"caption": "a many ship moving in water and fishes flowing from upwards", "video_id": "video12900", "sen_id": 224499}, {"caption": "a man is on his skateboard in the park", "video_id": "video11395", "sen_id": 224500}, {"caption": "a man is riding a skateboarding and making the skateboard flip", "video_id": "video11395", "sen_id": 224501}, {"caption": "a skateboarder performs tricks on an empty sidewalk", "video_id": "video11395", "sen_id": 224502}, {"caption": "a young man is doing skateboard tricks in a tropical setting", "video_id": "video11395", "sen_id": 224503}, {"caption": "a male skateboarder is displaying several tricks on his board as he rolls through a paved plaza lined with palm trees", "video_id": "video11395", "sen_id": 224504}, {"caption": "man with grey shorts riding a skateboard on a sidewalk with palm trees", "video_id": "video11395", "sen_id": 224505}, {"caption": "a person is skating and his showing his tricks as he moves flat on the street", "video_id": "video11395", "sen_id": 224506}, {"caption": "on a sunny daya man in black t-shirt playing on the road", "video_id": "video11395", "sen_id": 224507}, {"caption": "person doing some skateboard tricks", "video_id": "video11395", "sen_id": 224508}, {"caption": "a young man in jean shorts and a black teeshirt successfully performs skateboard tricks in front of a large white building and then someone off camera cheers", "video_id": "video11395", "sen_id": 224509}, {"caption": "the young man in black dress is skating through the rolls in his skating rolls", "video_id": "video11395", "sen_id": 224510}, {"caption": "a guy skateboarding through the city in the evening", "video_id": "video11395", "sen_id": 224511}, {"caption": "a men is doing skerting on snow mountain", "video_id": "video11395", "sen_id": 224512}, {"caption": "a man wearing black shirt skirting on the road", "video_id": "video11395", "sen_id": 224513}, {"caption": "a boy does tricks on a long board skateboard to friends cheers", "video_id": "video11395", "sen_id": 224514}, {"caption": "guy in black tshirt showing his skate board skill", "video_id": "video11395", "sen_id": 224515}, {"caption": "a man is skating in a empty road with no one around", "video_id": "video11395", "sen_id": 224516}, {"caption": "a guy is showing his skateboard skills on the road flipping the skate board and again landing on it perfectly he flips the skateboard in all directors and doesn t even miss it once", "video_id": "video11395", "sen_id": 224517}, {"caption": "a boy in black dress wearing skating walking on road displaying on screen", "video_id": "video11395", "sen_id": 224518}, {"caption": "a boy is riding a skateboard on empty street and jumping with it", "video_id": "video11395", "sen_id": 224519}, {"caption": "a girl with blonde hair and wearing a blue shirt is talking", "video_id": "video11214", "sen_id": 224520}, {"caption": "a clip vlogging eating frozen yogurt and summarizing", "video_id": "video11214", "sen_id": 224521}, {"caption": "two girls eat at a table and a girl ends her 2-day vlog", "video_id": "video11214", "sen_id": 224522}, {"caption": "a group of people are sitting around a table and eating frozen yogurt and then a girl talks about her blog", "video_id": "video11214", "sen_id": 224523}, {"caption": "a woman and her daughter eat ice cream in a large open food court area", "video_id": "video11214", "sen_id": 224524}, {"caption": "a child wearing a black tshirt and long blonde hair is talking about vlogging", "video_id": "video11214", "sen_id": 224525}, {"caption": "a woman and a girl eating together then the woman talking in a dark room by herself", "video_id": "video11214", "sen_id": 224526}, {"caption": "a woman and a girl are eating sweets then the woman talks about her experiences of the past two days", "video_id": "video11214", "sen_id": 224527}, {"caption": "a teenage girl talking about the end of her two day blog and how tired she is", "video_id": "video11214", "sen_id": 224528}, {"caption": "a lady with her child go to restaurant the end of the so tired so tired and refresh to take food and snacks", "video_id": "video11214", "sen_id": 224529}, {"caption": "a kid and a lady enjoys snacks after being very tired as the lady says", "video_id": "video11214", "sen_id": 224530}, {"caption": "a girl and a child eating frozen yogurt then a teen girl talking about how she is tired", "video_id": "video11214", "sen_id": 224531}, {"caption": "a son and a mother eating some food in restaurant and enjoying the food", "video_id": "video11214", "sen_id": 224532}, {"caption": "a young girl on her two day blog views her day s outing videos", "video_id": "video11214", "sen_id": 224533}, {"caption": "people are eating in the restaurant and one girl is telling some stories", "video_id": "video11214", "sen_id": 224534}, {"caption": "there is a women eating with her daughter", "video_id": "video11214", "sen_id": 224535}, {"caption": "a woman and a child eat soup before she speaks about how tired she is", "video_id": "video11214", "sen_id": 224536}, {"caption": "a young girl discusses her day s activities and how tired she is", "video_id": "video11214", "sen_id": 224537}, {"caption": "a baby kid and girl sitting beside table glass eating something speaking", "video_id": "video11214", "sen_id": 224538}, {"caption": "a woman with blonde hair is talking about something", "video_id": "video11214", "sen_id": 224539}, {"caption": "a group of tourists is viewing a giant tortoise in the wild", "video_id": "video10703", "sen_id": 224540}, {"caption": "there is an image of green ferns and a very large tortoise being watched by a group of people", "video_id": "video10703", "sen_id": 224541}, {"caption": "a group of people made up of men women and children watch a lone turtle in a green grassy jungle", "video_id": "video10703", "sen_id": 224542}, {"caption": "the santa cruz island has a giant tortoise for tourists to view", "video_id": "video10703", "sen_id": 224543}, {"caption": "a woody hillside is covered by trees ferns and large turtles", "video_id": "video10703", "sen_id": 224544}, {"caption": "a giant tortoise is feeding in the wild while being observed by a group of tourists", "video_id": "video10703", "sen_id": 224545}, {"caption": "a graphic showing a group of people both young and old watching a large black turtle in an open field", "video_id": "video10703", "sen_id": 224546}, {"caption": "a woman is telling the highlights of hiking and finding a tortuise", "video_id": "video10703", "sen_id": 224547}, {"caption": "a woman is stating one of the adventures of visiting santa cruz island is seeing the turtles there in the wild", "video_id": "video10703", "sen_id": 224548}, {"caption": "there is a forest setting and a tortoise being observed by a group of people taking photographs", "video_id": "video10703", "sen_id": 224549}, {"caption": "there are some people watching a turtle on the grass", "video_id": "video10703", "sen_id": 224550}, {"caption": "a woman is talking about the wildlife that can be found on an island while scenes of the island and tortoise are being shown", "video_id": "video10703", "sen_id": 224551}, {"caption": "in a zoo the audience is amazingly seeing a huge tortoise the zoo is situated in as a natural forest", "video_id": "video10703", "sen_id": 224552}, {"caption": "a giant tortoise sits in a forested setting being photographed and watched by a group of tourists", "video_id": "video10703", "sen_id": 224553}, {"caption": "a person is showing tortoise on the grass near the lake with bunch of people watching", "video_id": "video10703", "sen_id": 224554}, {"caption": "a woman talks about the galapagos as a giant tortiose is on the ground and people look at it", "video_id": "video10703", "sen_id": 224555}, {"caption": "santa cruz island veiws of greenery with a giant tortoise being photograghed by a group of tourist", "video_id": "video10703", "sen_id": 224556}, {"caption": "people are viewing and taking ictures of a large turtle", "video_id": "video10703", "sen_id": 224557}, {"caption": "a group of people are admiring and photographing a giant tortoise in a forested setting", "video_id": "video10703", "sen_id": 224558}, {"caption": "bunch of people watching tortoise on green grass", "video_id": "video10703", "sen_id": 224559}, {"caption": "a man climbing down a tree as a car is falling on him", "video_id": "video12934", "sen_id": 224560}, {"caption": "two men escape down a tall tree at night followed by a graffiti-covered jeep with its headlights glowing following the men down the same tree", "video_id": "video12934", "sen_id": 224561}, {"caption": "an all terrain vehiclefalling down through the branches of a tree while a man and a smallboy try to climb out of the way", "video_id": "video12934", "sen_id": 224562}, {"caption": "a man swinging downward through branches trying to escape a falling car", "video_id": "video12934", "sen_id": 224563}, {"caption": "people are climbing down a tree followed by some bright lights", "video_id": "video12934", "sen_id": 224564}, {"caption": "two people climbing out of a tree as a car is falling down which would crush them", "video_id": "video12934", "sen_id": 224565}, {"caption": "there s a man in a tan shirt falling from a tree in a movie", "video_id": "video12934", "sen_id": 224566}, {"caption": "a group of people escape a falling jeep in an action packed scene from jurassic park", "video_id": "video12934", "sen_id": 224567}, {"caption": "a man and a boy are climbing down a tree while a car is starting to crash down on them", "video_id": "video12934", "sen_id": 224568}, {"caption": "in jurassic park a man and a young boy named tim are climbing down a tree as fast as they can to avoid being crushed by the jeep that is slipping through the branches above them", "video_id": "video12934", "sen_id": 224569}, {"caption": "a car is hitting down from the top on two persons", "video_id": "video12934", "sen_id": 224570}, {"caption": "the fight involves a vehicle which is moving in the forest", "video_id": "video12934", "sen_id": 224571}, {"caption": "a vehicle falling through a tree above a man and boy", "video_id": "video12934", "sen_id": 224572}, {"caption": "a truck is driving down a tree while a man tries to escape it", "video_id": "video12934", "sen_id": 224573}, {"caption": "a movie clip from jurassic park where a keep is in a tree", "video_id": "video12934", "sen_id": 224574}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video12934", "sen_id": 224575}, {"caption": "in a hollywood movie one car is down in forest", "video_id": "video12934", "sen_id": 224576}, {"caption": "a car is crashing down a tree downhill", "video_id": "video12934", "sen_id": 224577}, {"caption": "a car crashing through a tree while two men try to avoid it", "video_id": "video12934", "sen_id": 224578}, {"caption": "a car falls straight through a tree hitting all the branches", "video_id": "video12934", "sen_id": 224579}, {"caption": "a white man telling about how to pivot and shoot a basket ball", "video_id": "video11860", "sen_id": 224580}, {"caption": "a man explaining to basketball players why they should catch the ball on both feet", "video_id": "video11860", "sen_id": 224581}, {"caption": "an elderly man is explaining how to properly play basketball", "video_id": "video11860", "sen_id": 224582}, {"caption": "a man in a black polo shirt and a black hat is lecturing about basketball tactics", "video_id": "video11860", "sen_id": 224583}, {"caption": "an older man in a ball hat talks while a young man plays basketball", "video_id": "video11860", "sen_id": 224584}, {"caption": "a man in a black shirt and hat is standing and discussing basketball strategy", "video_id": "video11860", "sen_id": 224585}, {"caption": "an older man wearing a black cap and black polo shirt gives basketball tips while a separate split screen shows a player bouncing and holding a ball against a gym wall", "video_id": "video11860", "sen_id": 224586}, {"caption": "a basketball coach gives some tips to viewers on how to play the game better", "video_id": "video11860", "sen_id": 224587}, {"caption": "two black basketball players and a white man wearing glasses a black hat and a black shirt explain how to play basketball", "video_id": "video11860", "sen_id": 224588}, {"caption": "a split screen of a guy playing basketball and a man in a hat talking", "video_id": "video11860", "sen_id": 224589}, {"caption": "practice techniques used against your opponent while playing basketball", "video_id": "video11860", "sen_id": 224590}, {"caption": "there is a split screen of someone holding a basketball followed by a man in black speaking", "video_id": "video11860", "sen_id": 224591}, {"caption": "an older gentleman is describing a basketball playing technique", "video_id": "video11860", "sen_id": 224592}, {"caption": "a man in a black hat and black shirt is discussing a pivot move in a basketball game", "video_id": "video11860", "sen_id": 224593}, {"caption": "two black guys play basketball while a white man who wears glasses and dark baseball cap explains the rules of playing basketball", "video_id": "video11860", "sen_id": 224594}, {"caption": "an old man is talking and wearing black color dress", "video_id": "video11860", "sen_id": 224595}, {"caption": "a man speaking about basketball technics this man has on a baseball cap and a brown shirt", "video_id": "video11860", "sen_id": 224596}, {"caption": "two performers are handling a ball and a person is explaining some thing", "video_id": "video11860", "sen_id": 224597}, {"caption": "an older man in a black polo and cap is standing in front of a beige background explaining sports techniques", "video_id": "video11860", "sen_id": 224598}, {"caption": "a man with glasses is speaking about something", "video_id": "video11860", "sen_id": 224599}, {"caption": "a woman feeds a small baby with a small plastic bottle", "video_id": "video10186", "sen_id": 224600}, {"caption": "a mom is feeding her newly born baby with bottle while the sister is watching", "video_id": "video10186", "sen_id": 224601}, {"caption": "a baby in ultraviolet light drinks from a bottle", "video_id": "video10186", "sen_id": 224602}, {"caption": "a little girl burping a newborn baby by patting its back", "video_id": "video10186", "sen_id": 224603}, {"caption": "a woman holds a baby and feeds it from a bottle and then burps it", "video_id": "video10186", "sen_id": 224604}, {"caption": "a women feeding her baby and holding the baby", "video_id": "video10186", "sen_id": 224605}, {"caption": "a small little baby is have milk and her mother take care of him", "video_id": "video10186", "sen_id": 224606}, {"caption": "a lady feeding her baby then she rubs the back of the baby", "video_id": "video10186", "sen_id": 224607}, {"caption": "a newborn baby is being fed a bottle of liquid from a woman", "video_id": "video10186", "sen_id": 224608}, {"caption": "a young baby is lovingly fed and burped by his mom", "video_id": "video10186", "sen_id": 224609}, {"caption": "there is a baby drinking milk on the bed", "video_id": "video10186", "sen_id": 224610}, {"caption": "a baby is on the mother hand", "video_id": "video10186", "sen_id": 224611}, {"caption": "a woman is feeding and burping her tiny baby", "video_id": "video10186", "sen_id": 224612}, {"caption": "the baby is drinking some milk and it is falling asleep", "video_id": "video10186", "sen_id": 224613}, {"caption": "a baby is being fed a bottle and then what seems to be a mother and an older child are talking about how cute the baby is while holding himher", "video_id": "video10186", "sen_id": 224614}, {"caption": "a family is feeding and burping there baby", "video_id": "video10186", "sen_id": 224615}, {"caption": "a baby is being fed milk by his mom on a bed", "video_id": "video10186", "sen_id": 224616}, {"caption": "a baby being feed a bottle and then burped by a lady", "video_id": "video10186", "sen_id": 224617}, {"caption": "a person feeds a baby from a bottle then burps him", "video_id": "video10186", "sen_id": 224618}, {"caption": "a baby in a room is drinking from a bottle", "video_id": "video10186", "sen_id": 224619}, {"caption": "different cars are being displayed with unique and old styles", "video_id": "video12367", "sen_id": 224620}, {"caption": "we have a long look at old cars with metal-flake paintjobs", "video_id": "video12367", "sen_id": 224621}, {"caption": "a group of motor vehicles are sitting on the grass while people walk by and observe them", "video_id": "video12367", "sen_id": 224622}, {"caption": "a clip from a car show with various old cars", "video_id": "video12367", "sen_id": 224623}, {"caption": "a number of brightly painted vehicles parked on the grass", "video_id": "video12367", "sen_id": 224624}, {"caption": "a person walking around a car show looking at different vehicles", "video_id": "video12367", "sen_id": 224625}, {"caption": "people walk around and look at rare and classic cars parked in a field", "video_id": "video12367", "sen_id": 224626}, {"caption": "video of a truck and car show and showing the best trucks at the show", "video_id": "video12367", "sen_id": 224627}, {"caption": "several cars are shown first a red one then a green one after that a green truck and a blue truck are shown while music plays in the background", "video_id": "video12367", "sen_id": 224628}, {"caption": "a small green vehicle parked in a field being looked at by people", "video_id": "video12367", "sen_id": 224629}, {"caption": "a small green car sitting in the grass and being looked at by persons standing around", "video_id": "video12367", "sen_id": 224630}, {"caption": "a green car parked on the grass in a sunny day", "video_id": "video12367", "sen_id": 224631}, {"caption": "two dune buggies red and blue followed by two similar trucks green and blue in a field full of cars", "video_id": "video12367", "sen_id": 224632}, {"caption": "a car show featuring some vintage dunebuggys and including some vintage trucks with some great paint jobs in a bright green and the other in a blue", "video_id": "video12367", "sen_id": 224633}, {"caption": "a off road vehicle is parked out side", "video_id": "video12367", "sen_id": 224634}, {"caption": "there is a green color car on the ground", "video_id": "video12367", "sen_id": 224635}, {"caption": "this is car show so many old model car see in one place", "video_id": "video12367", "sen_id": 224636}, {"caption": "unique small vintage cars and trucks on display at car show", "video_id": "video12367", "sen_id": 224637}, {"caption": "in a open ground lots of vintage and sports cars are showcased", "video_id": "video12367", "sen_id": 224638}, {"caption": "some cars are parked on a green lawn", "video_id": "video12367", "sen_id": 224639}, {"caption": "a man is showing the fangs of a specific breed of snakes and is explaining the dangers of being bitten by it", "video_id": "video10865", "sen_id": 224640}, {"caption": "a man holds a snakes mouth open with a stick to show off it's fangs on a nature show", "video_id": "video10865", "sen_id": 224641}, {"caption": "a man feeds a snake a stick with his bare hands", "video_id": "video10865", "sen_id": 224642}, {"caption": "a man sitting and playing with a snake", "video_id": "video10865", "sen_id": 224643}, {"caption": "a person is holding a snake opening the snake mouth with a stick and looking at the snake's fangs", "video_id": "video10865", "sen_id": 224644}, {"caption": "a man displays the fangs on a live eastern diamondback rattlesnake as he explains that the hemotoxic venom makes it important to get to a hospital if you've been bitten", "video_id": "video10865", "sen_id": 224645}, {"caption": "a man catches a snake and opens its mouth to take out its poison", "video_id": "video10865", "sen_id": 224646}, {"caption": "a person holding a snake and putting a stick into its mouth and showing how it holds", "video_id": "video10865", "sen_id": 224647}, {"caption": "a man holds a snake and opens the mouth with a stick showing its teeth", "video_id": "video10865", "sen_id": 224648}, {"caption": "a man is showing the eastern diamondback snake s fangs and describing the dangers of the snake s venom", "video_id": "video10865", "sen_id": 224649}, {"caption": "a man wearing a hat holding snake in his hand", "video_id": "video10865", "sen_id": 224650}, {"caption": "a man wearing a hat is holding a venomous snake showing it s fangs biting down on a stick", "video_id": "video10865", "sen_id": 224651}, {"caption": "an snake expert displays the fangs of a poisonous snake by opening its jaws with a twig", "video_id": "video10865", "sen_id": 224652}, {"caption": "a man on a wildlife show showing off a snakes large vangs", "video_id": "video10865", "sen_id": 224653}, {"caption": "a man with cowboy hat on a land has a dangerous snake in his hand that is biting in a stick", "video_id": "video10865", "sen_id": 224654}, {"caption": "a guy has a snake and is forcing its mouth open with a stick", "video_id": "video10865", "sen_id": 224655}, {"caption": "a man wearing a hat shows the fangs of a poisonous snake", "video_id": "video10865", "sen_id": 224656}, {"caption": "a man talking about the poisonous risk of a snake while demonstrating holding one", "video_id": "video10865", "sen_id": 224657}, {"caption": "a man holding an eastern diamondback snake discusses the effects of being bitten by that species", "video_id": "video10865", "sen_id": 224658}, {"caption": "a man is holding snake and talking about its teeth", "video_id": "video10865", "sen_id": 224659}, {"caption": "several girls teams are are playing volley ball in an arena", "video_id": "video11944", "sen_id": 224660}, {"caption": "two girls' teams compete in a game of volley ball", "video_id": "video11944", "sen_id": 224661}, {"caption": "two teams of young girls are playing a game of vollyball", "video_id": "video11944", "sen_id": 224662}, {"caption": "a girls volleyball game is going on between a team in yellow and a team in white there is a lot of background noise of talking and yelling as well", "video_id": "video11944", "sen_id": 224663}, {"caption": "a group of girls are playing volleyball in a crowded gym", "video_id": "video11944", "sen_id": 224664}, {"caption": "there are some woman playing volleyball in a indoor court", "video_id": "video11944", "sen_id": 224665}, {"caption": "kids are playing a set of volleyball with reckless abandon", "video_id": "video11944", "sen_id": 224666}, {"caption": "a highlight reel of women s indoor volleyball", "video_id": "video11944", "sen_id": 224667}, {"caption": "women playing volleyball and screaming", "video_id": "video11944", "sen_id": 224668}, {"caption": "some girls in white bannian and black half trouser and some girls in yellow bannians and black half pant playing volley ball", "video_id": "video11944", "sen_id": 224669}, {"caption": "there is someone playing volleyball in a indoor court", "video_id": "video11944", "sen_id": 224670}, {"caption": "the girls wearing uniforms hit the ball over the net", "video_id": "video11944", "sen_id": 224671}, {"caption": "a group of girls are playing volleyball", "video_id": "video11944", "sen_id": 224672}, {"caption": "in an indoor stadium women in yellow and white t-shirts are playing ball games", "video_id": "video11944", "sen_id": 224673}, {"caption": "teenage girls playing volleyball in a gymnasium full of people", "video_id": "video11944", "sen_id": 224674}, {"caption": "girls on different teams are playing volleyball in an indoor gymnasium", "video_id": "video11944", "sen_id": 224675}, {"caption": "all girls teams playing a volleyball game on an inside volleyball court", "video_id": "video11944", "sen_id": 224676}, {"caption": "a collection of clips of women volleyball games", "video_id": "video11944", "sen_id": 224677}, {"caption": "various girls volleyball teams are playing matches at an indoor arena", "video_id": "video11944", "sen_id": 224678}, {"caption": "some girls are playing volleyball against each other", "video_id": "video11944", "sen_id": 224679}, {"caption": "a puppy on the floor playing and being teased by a man", "video_id": "video12821", "sen_id": 224680}, {"caption": "a puppy chasing someone around on a wooden floor and trying to paly", "video_id": "video12821", "sen_id": 224681}, {"caption": "a dog is following the owner around in the room", "video_id": "video12821", "sen_id": 224682}, {"caption": "a person with black shoes is playing with a brown and white puppy", "video_id": "video12821", "sen_id": 224683}, {"caption": "a dog is running around their owner in the room", "video_id": "video12821", "sen_id": 224684}, {"caption": "a young brown and white puppy jumps around the kitchen floor of a home", "video_id": "video12821", "sen_id": 224685}, {"caption": "a puppy tries to play with its owners on a hardwood floor", "video_id": "video12821", "sen_id": 224686}, {"caption": "a little puppy tries to play with its owners on a hard wood floor", "video_id": "video12821", "sen_id": 224687}, {"caption": "a dog is walking around on a light colored hardwood floor", "video_id": "video12821", "sen_id": 224688}, {"caption": "a puppy plays with two people on a kitchen floor", "video_id": "video12821", "sen_id": 224689}, {"caption": "a brown and white puppy slides along a hardwood floor while paying with someone's hands and feet after another person uses a white naplkin to wiipe the floor", "video_id": "video12821", "sen_id": 224690}, {"caption": "a puppy playing with it's owners by biting their hands", "video_id": "video12821", "sen_id": 224691}, {"caption": "a brown and white puppy runs around and plays with a man on a light hardwood floor", "video_id": "video12821", "sen_id": 224692}, {"caption": "a small brown dog being playful with a person", "video_id": "video12821", "sen_id": 224693}, {"caption": "a brown puppy is shown playing on a hardwood floor", "video_id": "video12821", "sen_id": 224694}, {"caption": "a brown-white mixed puppy is playing with two person wearing shoes inside a house", "video_id": "video12821", "sen_id": 224695}, {"caption": "dog chasing its owners feet", "video_id": "video12821", "sen_id": 224696}, {"caption": "a puppy is playing with a two men", "video_id": "video12821", "sen_id": 224697}, {"caption": "a puppy trying to play with a persons hand person walking away another person puts there hand down and the puppy goes and plays with him", "video_id": "video12821", "sen_id": 224698}, {"caption": "the cutest baby puppy that is brown and white and stubby tailed is playing with an adult", "video_id": "video12821", "sen_id": 224699}, {"caption": "milk is being poured into a pot while someone gives directions", "video_id": "video10235", "sen_id": 224700}, {"caption": "a receipt for creating a desert that includes milk", "video_id": "video10235", "sen_id": 224701}, {"caption": "the milk pours into the large pot; before it is stirred", "video_id": "video10235", "sen_id": 224702}, {"caption": "milk being poured into a saucepan and being stirred slowly", "video_id": "video10235", "sen_id": 224703}, {"caption": "a man pours milk into a pan and stirs so it doesn't get a skin", "video_id": "video10235", "sen_id": 224704}, {"caption": "in a kitchen someone is pouring milk into a saucepan and stiring it slowly", "video_id": "video10235", "sen_id": 224705}, {"caption": "a graphic showing white milk in an aluminum pot with a spoon while a female voiceover sounds in the background", "video_id": "video10235", "sen_id": 224706}, {"caption": "there is someone pouring milk in to the pan", "video_id": "video10235", "sen_id": 224707}, {"caption": "milk is poured into the bowl and made to boil while mixing", "video_id": "video10235", "sen_id": 224708}, {"caption": "milk is poured into a metal bowl and then stirred", "video_id": "video10235", "sen_id": 224709}, {"caption": "a person is pouring milk in a deep sauce pan and is stirring it", "video_id": "video10235", "sen_id": 224710}, {"caption": "a person in a kitchen heating milk in a pot", "video_id": "video10235", "sen_id": 224711}, {"caption": "milk is being poured into a sauce pan and being stirred", "video_id": "video10235", "sen_id": 224712}, {"caption": "a man is explaining how to cook something with milk he is using a wooden spoon for stirring the milk", "video_id": "video10235", "sen_id": 224713}, {"caption": "a guy pours milk into a sauce pan and cooks it on low heat", "video_id": "video10235", "sen_id": 224714}, {"caption": "a person is preparing a meal of food for a show", "video_id": "video10235", "sen_id": 224715}, {"caption": "during a cooking show milk is poured into a heated pan and stirred slowly", "video_id": "video10235", "sen_id": 224716}, {"caption": "a chef begins a recipe by pouring milk into a small silver pan", "video_id": "video10235", "sen_id": 224717}, {"caption": "a cooking walkthrough where milk is poured into a sauce pan and a man giving directions on how much to be poured", "video_id": "video10235", "sen_id": 224718}, {"caption": "man pouring milk into a pot on the stove stiring it with wooden spoon", "video_id": "video10235", "sen_id": 224719}, {"caption": "music is playing over a fight between different teams at a football games", "video_id": "video12348", "sen_id": 224720}, {"caption": "different groups of soccer players fight on the field", "video_id": "video12348", "sen_id": 224721}, {"caption": "several men on football teams are fighting with each other", "video_id": "video12348", "sen_id": 224722}, {"caption": "a compilation of several different altercations during games", "video_id": "video12348", "sen_id": 224723}, {"caption": "on the rugby field several teams are fighting each other", "video_id": "video12348", "sen_id": 224724}, {"caption": "players involved in a heated brawl during a rugby match", "video_id": "video12348", "sen_id": 224725}, {"caption": "rugby athletes gather in a large group and fight one another violently", "video_id": "video12348", "sen_id": 224726}, {"caption": "there are many people gathered and one man among them is fighting with others", "video_id": "video12348", "sen_id": 224727}, {"caption": "a group of rugby players are fighting on a large field", "video_id": "video12348", "sen_id": 224728}, {"caption": "its big quarrel with players they are hitting each other and shouting each other", "video_id": "video12348", "sen_id": 224729}, {"caption": "a crowd of soccer players get upset over a call", "video_id": "video12348", "sen_id": 224730}, {"caption": "players are quarreling and smashing on the ground", "video_id": "video12348", "sen_id": 224731}, {"caption": "an unfortunate event where two soccer players have got in a fight", "video_id": "video12348", "sen_id": 224732}, {"caption": "rugby athletes get into fist fights during the games they are playing in", "video_id": "video12348", "sen_id": 224733}, {"caption": "players are fighting against each other player in white shirt beat the player in blue dress", "video_id": "video12348", "sen_id": 224734}, {"caption": "there are some player fighting eachother while playing rugby", "video_id": "video12348", "sen_id": 224735}, {"caption": "the two teams are playing against each on the field", "video_id": "video12348", "sen_id": 224736}, {"caption": "players of opposite team fighting to each other on the play ground", "video_id": "video12348", "sen_id": 224737}, {"caption": "player fighting with each other in a ruby match", "video_id": "video12348", "sen_id": 224738}, {"caption": "a green and white color t shirt wearing dress cloth players fighting inside stadium audience watching displaying on screen", "video_id": "video12348", "sen_id": 224739}, {"caption": "a man is giving great tips on how to cross country ski", "video_id": "video10848", "sen_id": 224740}, {"caption": "a man in skies is standing in the snow speaking then he takes off cross country skiing", "video_id": "video10848", "sen_id": 224741}, {"caption": "a man dressed in black demonstrating how to cross country sky up a hill", "video_id": "video10848", "sen_id": 224742}, {"caption": "a man is standing on skis on the middle of the hill", "video_id": "video10848", "sen_id": 224743}, {"caption": "a white male in dark clothing is skiing on a hill", "video_id": "video10848", "sen_id": 224744}, {"caption": "a man describes his technique for cross country skiing", "video_id": "video10848", "sen_id": 224745}, {"caption": "a young man enjoy skiing in the snow covered mountain", "video_id": "video10848", "sen_id": 224746}, {"caption": "a man wearing winter clothing and cross country skis standing outside in a snowy mountain area", "video_id": "video10848", "sen_id": 224747}, {"caption": "a man gives instruction on how to cross country ski up a hill", "video_id": "video10848", "sen_id": 224748}, {"caption": "a kid in all black prepares to go skiing", "video_id": "video10848", "sen_id": 224749}, {"caption": "a mans talks about how skiers will have to try to ski uphill sometimes and then demonstrates the act", "video_id": "video10848", "sen_id": 224750}, {"caption": "a man doing skating and another man talking about it", "video_id": "video10848", "sen_id": 224751}, {"caption": "a man provides skiing instruction while standing on a snow covered mountain in full ski gear", "video_id": "video10848", "sen_id": 224752}, {"caption": "a man has snow skies on and is showing how to ski", "video_id": "video10848", "sen_id": 224753}, {"caption": "a man in black dress color wearing in snow land doing skating walker displaying on screen", "video_id": "video10848", "sen_id": 224754}, {"caption": "a man is cross-country skiing while he gives tips to viewers about better methods", "video_id": "video10848", "sen_id": 224755}, {"caption": "a man wearing black dress getting ready to begin skating", "video_id": "video10848", "sen_id": 224756}, {"caption": "a skier explains how to get uphill smoothly and efficiently", "video_id": "video10848", "sen_id": 224757}, {"caption": "it is a man who is outside in snow talking about skiing", "video_id": "video10848", "sen_id": 224758}, {"caption": "there is a man on skis outside in snow explaining how to cross country ski uphills", "video_id": "video10848", "sen_id": 224759}, {"caption": "a group of people snowboarding and skiing on a mountain", "video_id": "video12282", "sen_id": 224760}, {"caption": "person gets on skies and skies down a mountain side", "video_id": "video12282", "sen_id": 224761}, {"caption": "snowboarders glide down the powdery slopes atop their snowboards", "video_id": "video12282", "sen_id": 224762}, {"caption": "a snowboarder goes down a snowy mountain holding a selfie stick", "video_id": "video12282", "sen_id": 224763}, {"caption": "a man in a blue jacket and black pants snowboards down a snowy mountain", "video_id": "video12282", "sen_id": 224764}, {"caption": "people are snowboarding down a mountain", "video_id": "video12282", "sen_id": 224765}, {"caption": "this shows a man on a snowboard being pulled on a snowy hill side", "video_id": "video12282", "sen_id": 224766}, {"caption": "a man with black pants and blue shirt is skating on ice", "video_id": "video12282", "sen_id": 224767}, {"caption": "a skier takes a slope with his friends holding a selfie stick", "video_id": "video12282", "sen_id": 224768}, {"caption": "a boy skies in snow with a selfie stick with front camera on", "video_id": "video12282", "sen_id": 224769}, {"caption": "people wearing a jacket skiing on the snow covered mountain", "video_id": "video12282", "sen_id": 224770}, {"caption": "a person wearing a blue and black jacket and black pants snowboarding down a hill", "video_id": "video12282", "sen_id": 224771}, {"caption": "its skating floor where person try to do skating for first time", "video_id": "video12282", "sen_id": 224772}, {"caption": "a snowboarder goes down a mountain holding a selfie stick", "video_id": "video12282", "sen_id": 224773}, {"caption": "there is a person snowboarding down a mountain holding a camera on a stick", "video_id": "video12282", "sen_id": 224774}, {"caption": "there is a man riding through the snow", "video_id": "video12282", "sen_id": 224775}, {"caption": "snowboarding on the slopes shot on a selfie sitck from the boarder", "video_id": "video12282", "sen_id": 224776}, {"caption": "nice ice skating he has blue color dress he does skating by holding rope", "video_id": "video12282", "sen_id": 224777}, {"caption": "a snowboarder in blue jacket holding a selfie-stick travels down a ski slope", "video_id": "video12282", "sen_id": 224778}, {"caption": "people are snowboarding down a snowy mountain holding cameras", "video_id": "video12282", "sen_id": 224779}, {"caption": "a women is speaking in front of a group of women", "video_id": "video10080", "sen_id": 224780}, {"caption": "a blonde woman nodding her head and talking", "video_id": "video10080", "sen_id": 224781}, {"caption": "a blond woman wearing black is talking on a stage", "video_id": "video10080", "sen_id": 224782}, {"caption": "a group of women stand on a stage talking in an empty auditorium", "video_id": "video10080", "sen_id": 224783}, {"caption": "a woman in a black dress is on stage as five women in the back stage stand with one blonde haired lady talking about the one on stage", "video_id": "video10080", "sen_id": 224784}, {"caption": "a group ofwomen in dark shirts and blond wigs off to the side of stage observing a woman in a black wig singing", "video_id": "video10080", "sen_id": 224785}, {"caption": "women who look like adele are speaking to a tv interviewer", "video_id": "video10080", "sen_id": 224786}, {"caption": "adele impersonators inside a theater dressed in black", "video_id": "video10080", "sen_id": 224787}, {"caption": "a group of women in long brown dresses talk near a lit stage", "video_id": "video10080", "sen_id": 224788}, {"caption": "a lady describing about a music event", "video_id": "video10080", "sen_id": 224789}, {"caption": "a woman with blonde hair and in black dress is talking to other women in an auditorium", "video_id": "video10080", "sen_id": 224790}, {"caption": "a group of fat lady singers with blonde hair is talking", "video_id": "video10080", "sen_id": 224791}, {"caption": "a woman is singing into a microphone on stage a group of people are talking off stage", "video_id": "video10080", "sen_id": 224792}, {"caption": "women talking and discussing about liking a guy", "video_id": "video10080", "sen_id": 224793}, {"caption": "a group of women dressed alike go sing", "video_id": "video10080", "sen_id": 224794}, {"caption": "a group of blonde women in black dresses are speaking about performing", "video_id": "video10080", "sen_id": 224795}, {"caption": "the woman sings on the stage as the other women talk", "video_id": "video10080", "sen_id": 224796}, {"caption": "a group of larger women in all black with blonde wigs stands on a stage", "video_id": "video10080", "sen_id": 224797}, {"caption": "women dressed black are getting ready to sing and or perform on stage", "video_id": "video10080", "sen_id": 224798}, {"caption": "a group of girl wearing black dress and singing together", "video_id": "video10080", "sen_id": 224799}, {"caption": "a person records the view of the hills around a small part of the ocean", "video_id": "video12815", "sen_id": 224800}, {"caption": "a mountain runs down into an ocean bay in a tropical setting", "video_id": "video12815", "sen_id": 224801}, {"caption": "a breeze blows the tall grass and branches on trees as a camera pans across a lake from a mountain top", "video_id": "video12815", "sen_id": 224802}, {"caption": "there is a lake with tree covered hills in the background and to the side", "video_id": "video12815", "sen_id": 224803}, {"caption": "panoramic shot from a rugged coastline including trees grasses and islets in the water", "video_id": "video12815", "sen_id": 224804}, {"caption": "a beautiful scenery with a mild water and rock in a forest", "video_id": "video12815", "sen_id": 224805}, {"caption": "panorama view of the sea with a small island and a hill", "video_id": "video12815", "sen_id": 224806}, {"caption": "an outdoor scene is shown featuring lush green forests and a small bay", "video_id": "video12815", "sen_id": 224807}, {"caption": "a scene from the shore of a beautiful body of water is shown while music plays", "video_id": "video12815", "sen_id": 224808}, {"caption": "there are many green trees and plants surrounding a body of water", "video_id": "video12815", "sen_id": 224809}, {"caption": "there are some trees nearby the mountain and sea", "video_id": "video12815", "sen_id": 224810}, {"caption": "scenery is being shown including a wide lake and a few trees", "video_id": "video12815", "sen_id": 224811}, {"caption": "while watching the water dam side the naturalist travel in very adventurely", "video_id": "video12815", "sen_id": 224812}, {"caption": "a small island along the coast line is viewable on a clear day", "video_id": "video12815", "sen_id": 224813}, {"caption": "a lot of scenery near a large body of water is being shown judging by the music possibly somewhere in india", "video_id": "video12815", "sen_id": 224814}, {"caption": "there is tree standing nearby the sea and mountain", "video_id": "video12815", "sen_id": 224815}, {"caption": "water body between a bush and a hill", "video_id": "video12815", "sen_id": 224816}, {"caption": "the forest with the view of mountain is shown", "video_id": "video12815", "sen_id": 224817}, {"caption": "an island sets in the ocean along a wild and natural coast line", "video_id": "video12815", "sen_id": 224818}, {"caption": "beautiful nature including trees and mountains are peaceful on the waterfront", "video_id": "video12815", "sen_id": 224819}, {"caption": "two men covered in blood briefly discuss a strategy", "video_id": "video10302", "sen_id": 224820}, {"caption": "young man wearing a white shirt and covered in blood indoors", "video_id": "video10302", "sen_id": 224821}, {"caption": "there is a man watching a man wearing a bloody shirt", "video_id": "video10302", "sen_id": 224822}, {"caption": "two bloddied men talk about a chain that is in a bath tub", "video_id": "video10302", "sen_id": 224823}, {"caption": "two men are discussing fighting", "video_id": "video10302", "sen_id": 224824}, {"caption": "a man that is sweaty looks at a man with blood", "video_id": "video10302", "sen_id": 224825}, {"caption": "a bloody guy talking to a scared looking guy", "video_id": "video10302", "sen_id": 224826}, {"caption": "there are two men in white tee shirts covered in blood and one yells at the other", "video_id": "video10302", "sen_id": 224827}, {"caption": "a white male in a white shirt is covered in blood and his face is covered in blood", "video_id": "video10302", "sen_id": 224828}, {"caption": "an old man standing up pointing and talking to a younger man", "video_id": "video10302", "sen_id": 224829}, {"caption": "two men are in a basment covered in blood and one man tells the other that the key he is looking for is in the nearby bath tub", "video_id": "video10302", "sen_id": 224830}, {"caption": "a man covered in blood points to the back of the room showing another man was covered in blood what is over there", "video_id": "video10302", "sen_id": 224831}, {"caption": "a man is covered in blood speaks to a scared man", "video_id": "video10302", "sen_id": 224832}, {"caption": "a man says to a scared looking younger man the key to that chain is in the bathtub both are covered in blood", "video_id": "video10302", "sen_id": 224833}, {"caption": "a horror movie where they are chained up and do not have a key", "video_id": "video10302", "sen_id": 224834}, {"caption": "a guyh with brown hair is sitting down", "video_id": "video10302", "sen_id": 224835}, {"caption": "the man in the bloody shirt looked terrorized as the man dies", "video_id": "video10302", "sen_id": 224836}, {"caption": "a bloody man telling another man where the key to the chain is", "video_id": "video10302", "sen_id": 224837}, {"caption": "a man who looks to be very scared stares with his mouth open wide", "video_id": "video10302", "sen_id": 224838}, {"caption": "two blood soaked men in tshirts stand in a tiled room gasping in anxiety while another man appears to be drowning in the bathroom", "video_id": "video10302", "sen_id": 224839}, {"caption": "a man is windsurfing on a lake as he is being pulled by a boat of some sort", "video_id": "video10270", "sen_id": 224840}, {"caption": "a person is holding on to a rope with a handle and wearing water skiis", "video_id": "video10270", "sen_id": 224841}, {"caption": "a man on water skis going over the wake", "video_id": "video10270", "sen_id": 224842}, {"caption": "a man water skiing behind a boat going over the wake", "video_id": "video10270", "sen_id": 224843}, {"caption": "a person in black is water skiing on a lake", "video_id": "video10270", "sen_id": 224844}, {"caption": "a man is water skiing on a lake", "video_id": "video10270", "sen_id": 224845}, {"caption": "a tall man with black outfit skies on the water by holding a robe tied to a boat", "video_id": "video10270", "sen_id": 224846}, {"caption": "a man in a wearing a gray baseball cap backwards is water-skiing on a lake while wearing blue bathing trunks", "video_id": "video10270", "sen_id": 224847}, {"caption": "a man water skis in blue water with a hat on", "video_id": "video10270", "sen_id": 224848}, {"caption": "a man wearing a life jacket is water skiing", "video_id": "video10270", "sen_id": 224849}, {"caption": "there is a man moving with a boat", "video_id": "video10270", "sen_id": 224850}, {"caption": "a white man in black clothing is water skiing", "video_id": "video10270", "sen_id": 224851}, {"caption": "a man with a cap riding behind a boat on water skis", "video_id": "video10270", "sen_id": 224852}, {"caption": "a man in a gray hat water skis on a large lake", "video_id": "video10270", "sen_id": 224853}, {"caption": "a man in a black safety vest water skis and makes a rude gesture toward the camera", "video_id": "video10270", "sen_id": 224854}, {"caption": "a male with a black life vest is water skiing on a lake", "video_id": "video10270", "sen_id": 224855}, {"caption": "a man is waters skiing in a large body of water", "video_id": "video10270", "sen_id": 224856}, {"caption": "a man water skiing on to skis behind a boat in a lake", "video_id": "video10270", "sen_id": 224857}, {"caption": "a man on water skis zips along a calm lake surface", "video_id": "video10270", "sen_id": 224858}, {"caption": "a person is doing skating in the water by holding the skating board without falling", "video_id": "video10270", "sen_id": 224859}, {"caption": "man in black workout outfit showing how to jump over hurdles", "video_id": "video11690", "sen_id": 224860}, {"caption": "a man is demonstrating how to jump hurdles in a field", "video_id": "video11690", "sen_id": 224861}, {"caption": "a man wearing black shorts and jacket slowly swings opposite bent knees one way and then the other way in a methodical manner over a set of closely-positioned hurdles", "video_id": "video11690", "sen_id": 224862}, {"caption": "a man in black dress practising some game in the ground", "video_id": "video11690", "sen_id": 224863}, {"caption": "a man wearing black dress practicing on hurdles in ground", "video_id": "video11690", "sen_id": 224864}, {"caption": "a young man does exercises using track and field hurdles", "video_id": "video11690", "sen_id": 224865}, {"caption": "a blue dress old man shaking legs up and down doing exercise on grass", "video_id": "video11690", "sen_id": 224866}, {"caption": "an athlete in black sports clothing walks slowly over hurdles", "video_id": "video11690", "sen_id": 224867}, {"caption": "a man is doing a exercise in the ground", "video_id": "video11690", "sen_id": 224868}, {"caption": "an old man in black dress moving legs upwards and downwards exercise near grass ground", "video_id": "video11690", "sen_id": 224869}, {"caption": "a men is jumping between stands which are kept in the garden", "video_id": "video11690", "sen_id": 224870}, {"caption": "a man does leg excsercizes in a field to loud music", "video_id": "video11690", "sen_id": 224871}, {"caption": "a man demonstrates an exercise that involves track and field equipment", "video_id": "video11690", "sen_id": 224872}, {"caption": "a man playing with the some tool kit on the ground", "video_id": "video11690", "sen_id": 224873}, {"caption": "a person with black dress is trying to do exercise in a public place", "video_id": "video11690", "sen_id": 224874}, {"caption": "a man is practicing stepping over hurdles for a track meet", "video_id": "video11690", "sen_id": 224875}, {"caption": "a man is doing exercises with hurdles outside", "video_id": "video11690", "sen_id": 224876}, {"caption": "a man does a work out with hurdles designed for track and field events", "video_id": "video11690", "sen_id": 224877}, {"caption": "a person is doing exercise in a park", "video_id": "video11690", "sen_id": 224878}, {"caption": "a young boy is playing on a hurdle by slowly moving his leg above them", "video_id": "video11690", "sen_id": 224879}, {"caption": "man in black shirt showing the action of a soccer video game", "video_id": "video12236", "sen_id": 224880}, {"caption": "a man playing a soccer video game and making funny comments over it", "video_id": "video12236", "sen_id": 224881}, {"caption": "a fifa commentary video from spencer fc", "video_id": "video12236", "sen_id": 224882}, {"caption": "a soccer video game plays out as a young comments about it", "video_id": "video12236", "sen_id": 224883}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video12236", "sen_id": 224884}, {"caption": "a man commentates a soccer game that he is playing on a game console", "video_id": "video12236", "sen_id": 224885}, {"caption": "a large crowd gathered to watch match in the stadium", "video_id": "video12236", "sen_id": 224886}, {"caption": "group of players wearing red and white color are playing ball", "video_id": "video12236", "sen_id": 224887}, {"caption": "a guy is playing a soccer video game and talking about it", "video_id": "video12236", "sen_id": 224888}, {"caption": "a gamer commentates qhile playing fifa", "video_id": "video12236", "sen_id": 224889}, {"caption": "a man narrates as computer people play soccer", "video_id": "video12236", "sen_id": 224890}, {"caption": "in the ground the foot ball players are playing in very well and the play judge the expert", "video_id": "video12236", "sen_id": 224891}, {"caption": "a two team are playing football game", "video_id": "video12236", "sen_id": 224892}, {"caption": "a brunette man in a smaller screen wearing blue in the left corner of the screen is narrating a video game game session of soccer he is apparently playing", "video_id": "video12236", "sen_id": 224893}, {"caption": "a commentator is commenting on football match", "video_id": "video12236", "sen_id": 224894}, {"caption": "a football play is progressing and the commentator is also seen in side video", "video_id": "video12236", "sen_id": 224895}, {"caption": "a guy is recording himself playing a soccer video game and is quite animated about his goal", "video_id": "video12236", "sen_id": 224896}, {"caption": "its foot ball game where players are trying to drop goal", "video_id": "video12236", "sen_id": 224897}, {"caption": "an amateur sports enthusiast narrates game play for a videod soccer match", "video_id": "video12236", "sen_id": 224898}, {"caption": "the soccer players on the field run around and try to score a goal", "video_id": "video12236", "sen_id": 224899}, {"caption": "a golden retriever carefully carries an egg in its mouth without breaking it", "video_id": "video12593", "sen_id": 224900}, {"caption": "a woman describing how golden retrievers can be delicate when picking up objects and the breeds humorous side", "video_id": "video12593", "sen_id": 224901}, {"caption": "the dog is picking up an egg in the hopes in does not break the egg", "video_id": "video12593", "sen_id": 224902}, {"caption": "a large brown dog walks across a sandy beach looking for objects", "video_id": "video12593", "sen_id": 224903}, {"caption": "a woman with a blue silk shirt explains how gently dogs can pick up items", "video_id": "video12593", "sen_id": 224904}, {"caption": "a dog behavior studier is explaining some behaviors of the golden retriever dog", "video_id": "video12593", "sen_id": 224905}, {"caption": "talking about golden retreivers picking up eggs witout breaking them", "video_id": "video12593", "sen_id": 224906}, {"caption": "a woman talking a yellow lab playing at the beach", "video_id": "video12593", "sen_id": 224907}, {"caption": "a lady talks and a dog searches for something in the sand and gives it to his owner", "video_id": "video12593", "sen_id": 224908}, {"caption": "a woman in a blue shirt talking a bout a dog", "video_id": "video12593", "sen_id": 224909}, {"caption": "a dog trainer showing and giving tips on how train your pet", "video_id": "video12593", "sen_id": 224910}, {"caption": "a woman wearing a blue shirt talking about dogs", "video_id": "video12593", "sen_id": 224911}, {"caption": "there is a woman speaking in a blue shirt and a dog and its owner playing at the beach and a puppy playing in grass", "video_id": "video12593", "sen_id": 224912}, {"caption": "there is a dog running in the ground", "video_id": "video12593", "sen_id": 224913}, {"caption": "a women is in the position of author explaining about the soft mouth of the dog", "video_id": "video12593", "sen_id": 224914}, {"caption": "a woman is talking about a dog outside", "video_id": "video12593", "sen_id": 224915}, {"caption": "a lady wearing a blue shirt with brown hair talking about dogs", "video_id": "video12593", "sen_id": 224916}, {"caption": "dog picking a raw egg and leaving it without breaking", "video_id": "video12593", "sen_id": 224917}, {"caption": "a lady speaking about dogs behavior of the dogs which can hold two bare eggs in their mouth", "video_id": "video12593", "sen_id": 224918}, {"caption": "a woman describes the soft mouth trait of golden retrievers", "video_id": "video12593", "sen_id": 224919}, {"caption": "a man sleeping on a beach wakes and starts talking", "video_id": "video11236", "sen_id": 224920}, {"caption": "a man with a mustache sleeps on his side as light flashes", "video_id": "video11236", "sen_id": 224921}, {"caption": "a man lays with his eyes closed while listening to a piece of music which he inquires about", "video_id": "video11236", "sen_id": 224922}, {"caption": "man in a plaid shirt laying his head asleep on the sand", "video_id": "video11236", "sen_id": 224923}, {"caption": "a man in a plaid shirt lies in a sandy area on the ground", "video_id": "video11236", "sen_id": 224924}, {"caption": "a mustached man wearing a red checked shirt sleeps on his side and talks in his sleep", "video_id": "video11236", "sen_id": 224925}, {"caption": "a man lays down in the sun and mumbles in his sleep before fully waking up", "video_id": "video11236", "sen_id": 224926}, {"caption": "a man is lying on the bed and sleeping", "video_id": "video11236", "sen_id": 224927}, {"caption": "a man is laying on the ground with closed eyes then he smiles and opens his eyes", "video_id": "video11236", "sen_id": 224928}, {"caption": "a video clip of movie man sleeping and smiling displaying on screen", "video_id": "video11236", "sen_id": 224929}, {"caption": "man looks happy as he seems to be dreaming in sleep", "video_id": "video11236", "sen_id": 224930}, {"caption": "a man laying down in the sun listening to music", "video_id": "video11236", "sen_id": 224931}, {"caption": "a man lies on the ground and talks outloud to a voice he hears that may only be inside his head", "video_id": "video11236", "sen_id": 224932}, {"caption": "a man is laying on the groud and talking to a girl", "video_id": "video11236", "sen_id": 224933}, {"caption": "a white man with dark hair and a mustache relaxing on a beach speaking with a woman", "video_id": "video11236", "sen_id": 224934}, {"caption": "a person sleeping on a bed and smiling", "video_id": "video11236", "sen_id": 224935}, {"caption": "a man sleeping on the beach is speaking to a woman", "video_id": "video11236", "sen_id": 224936}, {"caption": "a checks shirt wearing man sleeping on bed talks in sleeping and open his eyes with smile", "video_id": "video11236", "sen_id": 224937}, {"caption": "a man wearing a red and white shirt is sleeping", "video_id": "video11236", "sen_id": 224938}, {"caption": "a man with a mustache is lying in bed", "video_id": "video11236", "sen_id": 224939}, {"caption": "a man stands in front of a wall in front of his shadows singing and saying tv titles and their social-commentary variations", "video_id": "video12719", "sen_id": 224940}, {"caption": "a young black man wearing a black t-shirt doing a comedy routine", "video_id": "video12719", "sen_id": 224941}, {"caption": "a man wearing a black shirt talking to the camera", "video_id": "video12719", "sen_id": 224942}, {"caption": "a man acting of a funny scence about popular tv shows", "video_id": "video12719", "sen_id": 224943}, {"caption": "a black man in a black shirt says words and phrases to the camera", "video_id": "video12719", "sen_id": 224944}, {"caption": "a man in black t-shirt talking in front of the camera", "video_id": "video12719", "sen_id": 224945}, {"caption": "a man is speaking about a variety of movies and television shows", "video_id": "video12719", "sen_id": 224946}, {"caption": "african american man makes racial parodies of popular show titles", "video_id": "video12719", "sen_id": 224947}, {"caption": "there is a black tshirt man talking in front of a wal", "video_id": "video12719", "sen_id": 224948}, {"caption": "a black man with a black t-shirt voicing several slogans while at the same time the sayings are superimposed on the front of his shirt", "video_id": "video12719", "sen_id": 224949}, {"caption": "a man wearing a black shirt is standing in front of a white wall", "video_id": "video12719", "sen_id": 224950}, {"caption": "there is a man in a black shirt talking saying random words", "video_id": "video12719", "sen_id": 224951}, {"caption": "a black man gives some humorous alternative titles to popular television shows offering a cultural perspective to his environment", "video_id": "video12719", "sen_id": 224952}, {"caption": "there is a tshirt man talking in front of a wall", "video_id": "video12719", "sen_id": 224953}, {"caption": "a man in a black shirt standing in front of a wall speaking phrases as the are captioned", "video_id": "video12719", "sen_id": 224954}, {"caption": "a black man in a black chair sitting in front of a wall talking", "video_id": "video12719", "sen_id": 224955}, {"caption": "a man in a black shirt with a gotee talks about the unemployment office", "video_id": "video12719", "sen_id": 224956}, {"caption": "a man in a black shirt does a funny thing with tv show names", "video_id": "video12719", "sen_id": 224957}, {"caption": "the man wearing the black shirt stands in front of the wall and talk", "video_id": "video12719", "sen_id": 224958}, {"caption": "a black man that compares white people against black people", "video_id": "video12719", "sen_id": 224959}, {"caption": "a person is cooking some onions and chicken", "video_id": "video11206", "sen_id": 224960}, {"caption": "a chef prepares a chicken dish in a small fry pan in a home kitchen", "video_id": "video11206", "sen_id": 224961}, {"caption": "a chef works on recipe by stirring chicken a veggies in a small pan", "video_id": "video11206", "sen_id": 224962}, {"caption": "a british man gives a cooking lesson in which he pan fries chicken and onions to which he adds sliced tomatoes", "video_id": "video11206", "sen_id": 224963}, {"caption": "cooking onions and chicken in a pan with a wood spoon adding tomatoes", "video_id": "video11206", "sen_id": 224964}, {"caption": "a man is cooking chicken and various vegetables while narrating", "video_id": "video11206", "sen_id": 224965}, {"caption": "a guy is giving tips on how to cook chicken", "video_id": "video11206", "sen_id": 224966}, {"caption": "how to cook great food com making of recipe putting chicken", "video_id": "video11206", "sen_id": 224967}, {"caption": "a chef browns chicken for a recipe that he is preparing", "video_id": "video11206", "sen_id": 224968}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11206", "sen_id": 224969}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11206", "sen_id": 224970}, {"caption": "a person stirs chicken in a pan with vegetables", "video_id": "video11206", "sen_id": 224971}, {"caption": "how to cook great food com making of recipe like chicken and tomatoes", "video_id": "video11206", "sen_id": 224972}, {"caption": "an in home chef works on a chicken dish in a large black pan", "video_id": "video11206", "sen_id": 224973}, {"caption": "some food is being cookied in a pan", "video_id": "video11206", "sen_id": 224974}, {"caption": "in the kitchena man preparing chicken dish", "video_id": "video11206", "sen_id": 224975}, {"caption": "a man uses a slotted wooden spoon to brown meat and sliced onions in a black skillet before adding tomatoes", "video_id": "video11206", "sen_id": 224976}, {"caption": "how to cook great food com making of recipe putting tomatoes", "video_id": "video11206", "sen_id": 224977}, {"caption": "a cook moves chicken around in a small pot", "video_id": "video11206", "sen_id": 224978}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11206", "sen_id": 224979}, {"caption": "a man is giving a speech about the characteristics of machines with moving parts", "video_id": "video10861", "sen_id": 224980}, {"caption": "a man with a long beard giving a talk on a stage", "video_id": "video10861", "sen_id": 224981}, {"caption": "a man with an extremely long beard lectures to a group of people", "video_id": "video10861", "sen_id": 224982}, {"caption": "a man is presenting an idea about a machine with moving parts to an audience", "video_id": "video10861", "sen_id": 224983}, {"caption": "a white man with a long beard and grey suit is giving a talk", "video_id": "video10861", "sen_id": 224984}, {"caption": "a man with an extremely long bear talking infront of people", "video_id": "video10861", "sen_id": 224985}, {"caption": "a man with a long beard describing use damage of machines at a conference", "video_id": "video10861", "sen_id": 224986}, {"caption": "the man wearing a long beard walks on the stage and talks to the audience", "video_id": "video10861", "sen_id": 224987}, {"caption": "a professor talks in the crowd he has very big bearedwith the purple inner shirt", "video_id": "video10861", "sen_id": 224988}, {"caption": "long bearded guy in coat talking to the audience", "video_id": "video10861", "sen_id": 224989}, {"caption": "a man with long beard is trying to explain something", "video_id": "video10861", "sen_id": 224990}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video10861", "sen_id": 224991}, {"caption": "aging is not mysterious aging is the life-long accumulation of damage", "video_id": "video10861", "sen_id": 224992}, {"caption": "a man in a suit and long beard talks on stage", "video_id": "video10861", "sen_id": 224993}, {"caption": "a man with a beard is talking about soemthing", "video_id": "video10861", "sen_id": 224994}, {"caption": "a man with long breed talking from a studio", "video_id": "video10861", "sen_id": 224995}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video10861", "sen_id": 224996}, {"caption": "a man wearing black dress explaining about something", "video_id": "video10861", "sen_id": 224997}, {"caption": "a blue shirt wearing old man standing with long beard discusing on topic audience watching to him displaying on screen", "video_id": "video10861", "sen_id": 224998}, {"caption": "a man with a long beard is talking about something", "video_id": "video10861", "sen_id": 224999}, {"caption": "a small green car pulling something that is twice its size and heavier", "video_id": "video12428", "sen_id": 225000}, {"caption": "an old green car is going through some type of experiment", "video_id": "video12428", "sen_id": 225001}, {"caption": "a green car is trying to start and go down a paved road", "video_id": "video12428", "sen_id": 225002}, {"caption": "a man tries to drive a car that is completely filled with water", "video_id": "video12428", "sen_id": 225003}, {"caption": "a clip from the tv show top gear that has to deal with cars and being foolish", "video_id": "video12428", "sen_id": 225004}, {"caption": "men on an automotive television show are testing the limits of a vehicle", "video_id": "video12428", "sen_id": 225005}, {"caption": "an episode of topgear where a cars performance is being tested with extra weight put inside the car with filled water", "video_id": "video12428", "sen_id": 225006}, {"caption": "a green car filled with water is being tested to run", "video_id": "video12428", "sen_id": 225007}, {"caption": "a car that is full of water pouring out of it with men watching it", "video_id": "video12428", "sen_id": 225008}, {"caption": "a green car is having trouble moving forward because it is completely full of water", "video_id": "video12428", "sen_id": 225009}, {"caption": "a green color car is riding on a road", "video_id": "video12428", "sen_id": 225010}, {"caption": "after being filled with water a green car is struggling to drive away as water drains from the bottoms of the doors", "video_id": "video12428", "sen_id": 225011}, {"caption": "green colour classic car was fully washed using a fire truck", "video_id": "video12428", "sen_id": 225012}, {"caption": "a green car full of water is moving on the road and other men are watching it", "video_id": "video12428", "sen_id": 225013}, {"caption": "some graphics are being shown on a tv show", "video_id": "video12428", "sen_id": 225014}, {"caption": "there is a green car moving from the track", "video_id": "video12428", "sen_id": 225015}, {"caption": "a green car has its windshield wipers moving white bubbles float and move quickly water is spilling out of a car as it moves forward on a paved road by a field", "video_id": "video12428", "sen_id": 225016}, {"caption": "the car in green color runs with the connection on the sid", "video_id": "video12428", "sen_id": 225017}, {"caption": "a car moving and water inside car man watching beside struggling to start", "video_id": "video12428", "sen_id": 225018}, {"caption": "some wind shield wipers are on a car", "video_id": "video12428", "sen_id": 225019}, {"caption": "a bunch of little fish swimming inside a cage under water", "video_id": "video10930", "sen_id": 225020}, {"caption": "this shows fish swimming that have been caught in a trap", "video_id": "video10930", "sen_id": 225021}, {"caption": "a cluster of small fish swimming in a small cage", "video_id": "video10930", "sen_id": 225022}, {"caption": "silver fish swim inside a cone-shaped trap made of metal mesh placed in the water and slowly sink toward the bottom before being disturbed by the trapper", "video_id": "video10930", "sen_id": 225023}, {"caption": "a bunch of fish swimming around in a dark cage", "video_id": "video10930", "sen_id": 225024}, {"caption": "inside the aquarium some fish floating in to the water", "video_id": "video10930", "sen_id": 225025}, {"caption": "more golden color fishes are swimming", "video_id": "video10930", "sen_id": 225026}, {"caption": "fishes swim around with a net surrounding them", "video_id": "video10930", "sen_id": 225027}, {"caption": "fish swim in a metal cage that has a small hole in it just big enough for the fish to swim through", "video_id": "video10930", "sen_id": 225028}, {"caption": "many number of fishes are caught hold in the net which was kept for", "video_id": "video10930", "sen_id": 225029}, {"caption": "a group of fish is swimming inside a metal mesh-type container", "video_id": "video10930", "sen_id": 225030}, {"caption": "few fishes on the cylinderical net which have a hole behind", "video_id": "video10930", "sen_id": 225031}, {"caption": "small fish in a minnow trap swim around in circles", "video_id": "video10930", "sen_id": 225032}, {"caption": "fish swim into a submerged metal trap that s pulled up", "video_id": "video10930", "sen_id": 225033}, {"caption": "a group of fish swim helplessly in a wired cage", "video_id": "video10930", "sen_id": 225034}, {"caption": "fishes are in the net and sea water", "video_id": "video10930", "sen_id": 225035}, {"caption": "some small fish are swimming in an underwater basket", "video_id": "video10930", "sen_id": 225036}, {"caption": "silver fish swimming around in a metal cage", "video_id": "video10930", "sen_id": 225037}, {"caption": "a bunch of small fish swimming in a metal net under water", "video_id": "video10930", "sen_id": 225038}, {"caption": "fish swimming in net under the water trying to get out", "video_id": "video10930", "sen_id": 225039}, {"caption": "the subscription page for gregory gorgeous on youtube", "video_id": "video10672", "sen_id": 225040}, {"caption": "a woman in yellow and black is moving her hands around and talking in one screen while in the other screen a lot of different people are looking at clothes and trying them on", "video_id": "video10672", "sen_id": 225041}, {"caption": "three girls are blowing kisses there is rock music playing and a woman is being interviewed", "video_id": "video10672", "sen_id": 225042}, {"caption": "a beautiful women is talking about fashion here", "video_id": "video10672", "sen_id": 225043}, {"caption": "fashion girls poses in the show crowd watching it", "video_id": "video10672", "sen_id": 225044}, {"caption": "sexy blonde talking to the camera", "video_id": "video10672", "sen_id": 225045}, {"caption": "there is a brown hair women talking with friends", "video_id": "video10672", "sen_id": 225046}, {"caption": "thre is a women doing makeup for with brush for othere women", "video_id": "video10672", "sen_id": 225047}, {"caption": "a famous woman poses for pictures and signs autographs", "video_id": "video10672", "sen_id": 225048}, {"caption": "beautiful and sexy girls are singing and dancing gorgeously", "video_id": "video10672", "sen_id": 225049}, {"caption": "a short blonde hair women is talking and talking with her friends", "video_id": "video10672", "sen_id": 225050}, {"caption": "there is some hot ladies talking to stylish guys", "video_id": "video10672", "sen_id": 225051}, {"caption": "news reader for the mute give a brief news of events happening in a fashion show", "video_id": "video10672", "sen_id": 225052}, {"caption": "a person standing in a room speaking and a group of people greeting and speaking to each other in a clothing store", "video_id": "video10672", "sen_id": 225053}, {"caption": "so many beautiful girls are singinglaughing and talking", "video_id": "video10672", "sen_id": 225054}, {"caption": "a bunch of women are talking about some things", "video_id": "video10672", "sen_id": 225055}, {"caption": "the clip shows the life of a woman whose life is glamorous", "video_id": "video10672", "sen_id": 225056}, {"caption": "a group of people are getting together for a beauty youtuber meetup", "video_id": "video10672", "sen_id": 225057}, {"caption": "a female fashion designer is working talking and taking photo with her clients", "video_id": "video10672", "sen_id": 225058}, {"caption": "a woman with blonde hair is talking", "video_id": "video10672", "sen_id": 225059}, {"caption": "the evolution of the att work place and experiments", "video_id": "video11203", "sen_id": 225060}, {"caption": "an att spokesperson in a library with a lot of books talking about something att did", "video_id": "video11203", "sen_id": 225061}, {"caption": "a man in a grey shirt is discussing the history of at&t", "video_id": "video11203", "sen_id": 225062}, {"caption": "man talking about an informal art and science collaboration", "video_id": "video11203", "sen_id": 225063}, {"caption": "a man in a purple long sleeved shirt talks about at&t's history", "video_id": "video11203", "sen_id": 225064}, {"caption": "guy in a purple button up is talking about science", "video_id": "video11203", "sen_id": 225065}, {"caption": "there is a shirt man talking about history", "video_id": "video11203", "sen_id": 225066}, {"caption": "george kupczac is talking about something related to bell labs in a library with a picture hanging in the background", "video_id": "video11203", "sen_id": 225067}, {"caption": " george kupczak of at&t archives & history center explains about the profile done", "video_id": "video11203", "sen_id": 225068}, {"caption": "a old man in blue dress color cloth standing speaking displaying on screen", "video_id": "video11203", "sen_id": 225069}, {"caption": "guy in purple shirt in glasses talking to the camera", "video_id": "video11203", "sen_id": 225070}, {"caption": "men is talking and discussing something about setting", "video_id": "video11203", "sen_id": 225071}, {"caption": "a historian talks about a famous laboratory from the past", "video_id": "video11203", "sen_id": 225072}, {"caption": "a man in a blue shirt is filming a documentary in a library", "video_id": "video11203", "sen_id": 225073}, {"caption": "a man wearing blue shirt talking about at&t archives and history", "video_id": "video11203", "sen_id": 225074}, {"caption": "a man with glasses is speaking about something", "video_id": "video11203", "sen_id": 225075}, {"caption": "a man with spectacles is talking about the development in film", "video_id": "video11203", "sen_id": 225076}, {"caption": "a man talks about the history of the telecommunications provider at&t", "video_id": "video11203", "sen_id": 225077}, {"caption": "man in blue shirt presenting his study based on facts", "video_id": "video11203", "sen_id": 225078}, {"caption": "a man talking about a at&t bell labs", "video_id": "video11203", "sen_id": 225079}, {"caption": "university text details about chemical science", "video_id": "video12828", "sen_id": 225080}, {"caption": "a presentation for a university is shown with a colorful background", "video_id": "video12828", "sen_id": 225081}, {"caption": "small balls of white light dance around the screen while soft music plays", "video_id": "video12828", "sen_id": 225082}, {"caption": "muted light blue dots float across a hazy green-and-darker blue screen while a horizontal black band shows white text in two languages", "video_id": "video12828", "sen_id": 225083}, {"caption": "a bunch of font plays over in a non-english language", "video_id": "video12828", "sen_id": 225084}, {"caption": "some words on a screen and a bubbled background", "video_id": "video12828", "sen_id": 225085}, {"caption": "slides review the history of chemical sciences in two different languages", "video_id": "video12828", "sen_id": 225086}, {"caption": "a grey and blue screen is seen with a black strip in the middle in which some words are written", "video_id": "video12828", "sen_id": 225087}, {"caption": "an explanation regarding some unique development of chemical scince", "video_id": "video12828", "sen_id": 225088}, {"caption": "a trailer going to explain about unique developments regarding chemical sciences at chiang mai university", "video_id": "video12828", "sen_id": 225089}, {"caption": "an advertisement spot of new chemical solutions that are about to hit the market", "video_id": "video12828", "sen_id": 225090}, {"caption": "a words are displaying in the scene", "video_id": "video12828", "sen_id": 225091}, {"caption": "a multilingual video decription with great back music", "video_id": "video12828", "sen_id": 225092}, {"caption": "there are letters in a different language with a blue background with white circles", "video_id": "video12828", "sen_id": 225093}, {"caption": "the print in the video is way too small to read however the music that play along take you to a tranquil place", "video_id": "video12828", "sen_id": 225094}, {"caption": "a screen showing a bunch of words in a black strip", "video_id": "video12828", "sen_id": 225095}, {"caption": "we are highlighted on some unique developments regarding chemical sciences at the chiang mai university", "video_id": "video12828", "sen_id": 225096}, {"caption": "there are sentences in front of a blue sparkly background", "video_id": "video12828", "sen_id": 225097}, {"caption": "an infomercial with a colorful blue and green background and a bar through the middle with text on it", "video_id": "video12828", "sen_id": 225098}, {"caption": "a promotional ad says something about the bubbles", "video_id": "video12828", "sen_id": 225099}, {"caption": "a baby girl being held by and kissed by a laughing woman", "video_id": "video11829", "sen_id": 225100}, {"caption": "a mother and her daughter are kissing eachother over and over again", "video_id": "video11829", "sen_id": 225101}, {"caption": "a mother kisses her daughter multiple times in a game", "video_id": "video11829", "sen_id": 225102}, {"caption": "a young mother holds her toddler daughter as they playfully kiss each repeatedly the mother laughs", "video_id": "video11829", "sen_id": 225103}, {"caption": "a woman in a polka dotted dress kisses a young child playfully", "video_id": "video11829", "sen_id": 225104}, {"caption": "a woman and a toddler kiss and laugh several times", "video_id": "video11829", "sen_id": 225105}, {"caption": "two people dressing in black keep giving each other kisses and laughing", "video_id": "video11829", "sen_id": 225106}, {"caption": "a woman in a spotted dress holds and repeatedly kisses a child", "video_id": "video11829", "sen_id": 225107}, {"caption": "brunette woman in a black and white top kissing a little girl on the lips", "video_id": "video11829", "sen_id": 225108}, {"caption": "a woman with long hair wearing a black and white polka dot top is repeatedly kissing a little girl in a navy blue dress with white polka dots in the background you can hear antoher woman laughing", "video_id": "video11829", "sen_id": 225109}, {"caption": "a woman is holding a little girl in a blue dress", "video_id": "video11829", "sen_id": 225110}, {"caption": "a woman kissing a child as they both giggle along with another off screen in the background", "video_id": "video11829", "sen_id": 225111}, {"caption": "a daughter repeatedly kisses her mother on the lips", "video_id": "video11829", "sen_id": 225112}, {"caption": "a woman and a young girl kiss each other several times", "video_id": "video11829", "sen_id": 225113}, {"caption": "a woman is holding her young daughter and they are playfully kissing each other and laughing", "video_id": "video11829", "sen_id": 225114}, {"caption": "a person kissing a kid so many times", "video_id": "video11829", "sen_id": 225115}, {"caption": "a baby kissing a lady on her mouth", "video_id": "video11829", "sen_id": 225116}, {"caption": "a woman holding her daughter and kissing her on the lips", "video_id": "video11829", "sen_id": 225117}, {"caption": "a woman holding a child gives them kisses", "video_id": "video11829", "sen_id": 225118}, {"caption": "a women is kissing the child and the chils is also doing the same and both are enjoying the mother and childhood days", "video_id": "video11829", "sen_id": 225119}, {"caption": "an animation of a man and a woman in black and white standing by a subway as a piece of paper flies into the face of the woman", "video_id": "video11547", "sen_id": 225120}, {"caption": "a short clip from an upcoming cartoon movie", "video_id": "video11547", "sen_id": 225121}, {"caption": "a black and white cartoon scene of a man and a woman near a moving train", "video_id": "video11547", "sen_id": 225122}, {"caption": "a man and woman dressed in business attire stand near a train", "video_id": "video11547", "sen_id": 225123}, {"caption": "cartoon man helping remove a piece of paper from woman's face", "video_id": "video11547", "sen_id": 225124}, {"caption": "a young man and young woman stand on a subway train platform as a train speeds by", "video_id": "video11547", "sen_id": 225125}, {"caption": "a woman explains how the team managed to create the animation movie in a short time", "video_id": "video11547", "sen_id": 225126}, {"caption": "cartoon paper man in women on his face", "video_id": "video11547", "sen_id": 225127}, {"caption": "a man and a woman stand on a train station deck while a train speeds by them", "video_id": "video11547", "sen_id": 225128}, {"caption": "a old man and two ladies beside still image and cartoon dolls picture and paper in hand displaying on screen", "video_id": "video11547", "sen_id": 225129}, {"caption": "a amn in blue overcoat is speaking to a women and another man", "video_id": "video11547", "sen_id": 225130}, {"caption": "there is a boy and a girl standing with a paper in their hand", "video_id": "video11547", "sen_id": 225131}, {"caption": "a cartoon television show cartoon characters doing something funny", "video_id": "video11547", "sen_id": 225132}, {"caption": "an animation a boy and girl stand in the railway station and look into the paper", "video_id": "video11547", "sen_id": 225133}, {"caption": "a person is showing cartoon movie on screen", "video_id": "video11547", "sen_id": 225134}, {"caption": "there is a women walking with a suit boy", "video_id": "video11547", "sen_id": 225135}, {"caption": "a woman is describing how they presented the first shot of an animated movie to someone", "video_id": "video11547", "sen_id": 225136}, {"caption": "a group of movie makers discuss what they went through in filming a movie", "video_id": "video11547", "sen_id": 225137}, {"caption": "a lady narrating an animated movie in which a man and woman are dressed in formals holding a file in hand", "video_id": "video11547", "sen_id": 225138}, {"caption": "some black and white cartoon characters are interacting", "video_id": "video11547", "sen_id": 225139}, {"caption": "song describing what two men are seeing with their eyes", "video_id": "video10209", "sen_id": 225140}, {"caption": "two men standing there while lip syncing and looking at a screen with a video on it", "video_id": "video10209", "sen_id": 225141}, {"caption": "tom hanks and dan ackrod are talking to each other on a stage while watching a movie on a large screen", "video_id": "video10209", "sen_id": 225142}, {"caption": "a clip of a movie or music video with tom hanks and dan ackroyd", "video_id": "video10209", "sen_id": 225143}, {"caption": "two men are standing in the dark singing a funny song", "video_id": "video10209", "sen_id": 225144}, {"caption": "two men standing and having a conversation with each other", "video_id": "video10209", "sen_id": 225145}, {"caption": "two men in a dark room look at and discus a series of images on a screen above the ground", "video_id": "video10209", "sen_id": 225146}, {"caption": "two men wearing shirts and ties are standing together and rapping", "video_id": "video10209", "sen_id": 225147}, {"caption": "a couple of guys sing while looking at scenes on a screen", "video_id": "video10209", "sen_id": 225148}, {"caption": "dan akroyd and tom hanks are rapping", "video_id": "video10209", "sen_id": 225149}, {"caption": "there is a black cap man watching a movie with a man", "video_id": "video10209", "sen_id": 225150}, {"caption": "a man is speaking to another man the other man is upset and crossing his arms", "video_id": "video10209", "sen_id": 225151}, {"caption": "an funny show for the simple understanding between the two event performers", "video_id": "video10209", "sen_id": 225152}, {"caption": "two men are rapping on stage and acting in a movie", "video_id": "video10209", "sen_id": 225153}, {"caption": "two men debating and arguing about what to do while a beat is playing", "video_id": "video10209", "sen_id": 225154}, {"caption": "two men sing about things that are happening on a video on screen", "video_id": "video10209", "sen_id": 225155}, {"caption": "two detectives analyze a video in a song and rap form", "video_id": "video10209", "sen_id": 225156}, {"caption": "two men watched a screen and talk about what s happening on it", "video_id": "video10209", "sen_id": 225157}, {"caption": "in this video two mans are fighting about the girl which is showing in the picture", "video_id": "video10209", "sen_id": 225158}, {"caption": "some men are standing around and talking", "video_id": "video10209", "sen_id": 225159}, {"caption": "still shot of red onions in a pan and then a still picture of meat with music in background", "video_id": "video11364", "sen_id": 225160}, {"caption": "we see notes on a recipe and images of onions and raw meat", "video_id": "video11364", "sen_id": 225161}, {"caption": "directions are given for how to cook something with onions and mutton", "video_id": "video11364", "sen_id": 225162}, {"caption": "cooking directions are displayed with a brown background and red onions are shown", "video_id": "video11364", "sen_id": 225163}, {"caption": "a collage of pictures and words explaining how to prepare a dish that uses both vegetables and meats while playing music", "video_id": "video11364", "sen_id": 225164}, {"caption": "a batch of onions are chopped into pices to be used in a recipe", "video_id": "video11364", "sen_id": 225165}, {"caption": "a cooking video on on to cook ethiopian food", "video_id": "video11364", "sen_id": 225166}, {"caption": "there is a recipe of a tasty dish", "video_id": "video11364", "sen_id": 225167}, {"caption": "a screen is giving instructions on how to create a dish with onions and meat", "video_id": "video11364", "sen_id": 225168}, {"caption": "instructions with images for making a dish with onions and mutton", "video_id": "video11364", "sen_id": 225169}, {"caption": "there are directions and pictures explaining how to cook a dish", "video_id": "video11364", "sen_id": 225170}, {"caption": "onions are in a pile then words come onto the screen describing what to do with the onions for cooking them", "video_id": "video11364", "sen_id": 225171}, {"caption": "in a large pot dry cook chopped onions for 25 mins and then add some cooking oil and then finally the meat", "video_id": "video11364", "sen_id": 225172}, {"caption": "full onion and cut onion along with some fresh meat is kept", "video_id": "video11364", "sen_id": 225173}, {"caption": "an ingredient are showing in the above scene", "video_id": "video11364", "sen_id": 225174}, {"caption": "instuctions on how to cook chicken with imiges of all the ingedents and instructions", "video_id": "video11364", "sen_id": 225175}, {"caption": "some one in a kitchen frying onions with sunflower oil", "video_id": "video11364", "sen_id": 225176}, {"caption": "uncutted onions and display of how to cook a mutton and neatly sliced onions and mutton pieces displayed", "video_id": "video11364", "sen_id": 225177}, {"caption": "chopped onions and chicken pieces", "video_id": "video11364", "sen_id": 225178}, {"caption": "a still images pictures on screen of onion and meat displaying on screen", "video_id": "video11364", "sen_id": 225179}, {"caption": "a huge silver spoon scraping food onto a round white plate", "video_id": "video12071", "sen_id": 225180}, {"caption": "a person is putting sauce and vegetables on top of the meat", "video_id": "video12071", "sen_id": 225181}, {"caption": "a person scoops stirfry onto a white plate", "video_id": "video12071", "sen_id": 225182}, {"caption": "a cook is preparing a meal and showing the proper presentation", "video_id": "video12071", "sen_id": 225183}, {"caption": "a chef works on a meal by scooping what they cooked out on to a plate", "video_id": "video12071", "sen_id": 225184}, {"caption": "a chef completes a recipe by dishing the food out onto a white plate", "video_id": "video12071", "sen_id": 225185}, {"caption": "a chef plates up a recipe he has recently completed", "video_id": "video12071", "sen_id": 225186}, {"caption": "a person sliding meat from one pan into another pan", "video_id": "video12071", "sen_id": 225187}, {"caption": "someone is scooping meat and different vegetables on a white plate on a silver countertop", "video_id": "video12071", "sen_id": 225188}, {"caption": "a cook in the kitchen plating food to be served", "video_id": "video12071", "sen_id": 225189}, {"caption": "there is someone serving a quick dish in to the plate", "video_id": "video12071", "sen_id": 225190}, {"caption": "dish is made hot and being served in a white plate", "video_id": "video12071", "sen_id": 225191}, {"caption": "food is being ladled onto a plate from a pan", "video_id": "video12071", "sen_id": 225192}, {"caption": "food is ladled onto a plate sauce added and the pan scraped out on top", "video_id": "video12071", "sen_id": 225193}, {"caption": "a person is putting some food on a white plate", "video_id": "video12071", "sen_id": 225194}, {"caption": "a person is putting food on a white serving plate", "video_id": "video12071", "sen_id": 225195}, {"caption": "a person serving a stir-fried entree onto a white plate", "video_id": "video12071", "sen_id": 225196}, {"caption": "food is served in white plate its yummy in yellow color with many ingredients", "video_id": "video12071", "sen_id": 225197}, {"caption": "a cook is plating some food in a professional kitchen", "video_id": "video12071", "sen_id": 225198}, {"caption": "someone is putting some food on a white plate", "video_id": "video12071", "sen_id": 225199}, {"caption": "a person riding a dirt bike jumps hill and falls off while all his friends laugh at him", "video_id": "video12231", "sen_id": 225200}, {"caption": "a man is riding a dirt bike in a field and then flips", "video_id": "video12231", "sen_id": 225201}, {"caption": "a man rides a motorcycle over a small green hill and crashes", "video_id": "video12231", "sen_id": 225202}, {"caption": "a man riding on a cross-country bike is trying to fly over a ramp in the grass field but fail and falling down while his friend is laughing out loud", "video_id": "video12231", "sen_id": 225203}, {"caption": "a guy on a motorcycle jumps over a hill and crashes", "video_id": "video12231", "sen_id": 225204}, {"caption": "man falls of a motorcycle while trying to jump a grassy hill while his friends laugh", "video_id": "video12231", "sen_id": 225205}, {"caption": "a man on a motorcycle rides off of a dirt road over a grass hill then falls off while his friends laugh", "video_id": "video12231", "sen_id": 225206}, {"caption": "a man on a dirtbike wearing a helmet starts a run across the road and jumps a grassy hill to crash on the other side and twist his handlebars", "video_id": "video12231", "sen_id": 225207}, {"caption": "in a bike race the bike running fast in to the meadowssuddenly it loosed its control and the man fell down", "video_id": "video12231", "sen_id": 225208}, {"caption": "a person on a motorcycle is jumping hills in a field", "video_id": "video12231", "sen_id": 225209}, {"caption": "a person ride a bike and fell down from the bike", "video_id": "video12231", "sen_id": 225210}, {"caption": "a man jumps over a hill on a motor bike and fall", "video_id": "video12231", "sen_id": 225211}, {"caption": "motorbike makes a jump and then crashes in a green field while the camera guy laughs", "video_id": "video12231", "sen_id": 225212}, {"caption": "a man wearing a black hoodie and white motorcycle is seen riding on a ramp in a dirtbike and he falls as he lands", "video_id": "video12231", "sen_id": 225213}, {"caption": "a man falling down the bike while doing a stunt on the lush green surface", "video_id": "video12231", "sen_id": 225214}, {"caption": "a man ridding a motorcycle in the bush", "video_id": "video12231", "sen_id": 225215}, {"caption": "a motorcyclist starts his trick by a wooded area crosses a grey paved road rides over dirt jumps over a grass-covered ridge", "video_id": "video12231", "sen_id": 225216}, {"caption": "a man rides his race bike for fun thought the green valley and fells down", "video_id": "video12231", "sen_id": 225217}, {"caption": "a guy rides his motorcycle off a little hill and falls off the motorcycle and onto the ground with his friends laughing in the background", "video_id": "video12231", "sen_id": 225218}, {"caption": "a person is riding their dirt bike outside", "video_id": "video12231", "sen_id": 225219}, {"caption": "a brunette woman dances by a pole lifting her arms and wearing a tied black outfit with fishnet stockings", "video_id": "video10251", "sen_id": 225220}, {"caption": "two ladies wearing black and dancing up and down with a pole", "video_id": "video10251", "sen_id": 225221}, {"caption": "two women are performing dance moves to loud music", "video_id": "video10251", "sen_id": 225222}, {"caption": "a woman in dark revealing clothing dances on a pole with another woman in a room with brick walls and blue lighting", "video_id": "video10251", "sen_id": 225223}, {"caption": "several dark haired scantily clad females dance on a stage using stripper poles and colored lights", "video_id": "video10251", "sen_id": 225224}, {"caption": "two women wearing black leather and fishnet stockings do pole dances", "video_id": "video10251", "sen_id": 225225}, {"caption": "a group of woman on the stage stripping", "video_id": "video10251", "sen_id": 225226}, {"caption": "a lady is dancing on a pole very promiscously", "video_id": "video10251", "sen_id": 225227}, {"caption": "britney spears dances on the stage in net socks", "video_id": "video10251", "sen_id": 225228}, {"caption": "girls are doing pole dance to a song beats", "video_id": "video10251", "sen_id": 225229}, {"caption": "a female singing and dancing on a stage", "video_id": "video10251", "sen_id": 225230}, {"caption": "women dancing and singing song in a group", "video_id": "video10251", "sen_id": 225231}, {"caption": "a group of woman are inside a club swinging the poles go go dancing off of club music", "video_id": "video10251", "sen_id": 225232}, {"caption": "a stunning lady dancing on a strip bar trying to seduce", "video_id": "video10251", "sen_id": 225233}, {"caption": "scantily clad women wearing fishnets pole dance to pop music", "video_id": "video10251", "sen_id": 225234}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video10251", "sen_id": 225235}, {"caption": "a gorgeous brunette is seen dancing around the pool teasing the camera", "video_id": "video10251", "sen_id": 225236}, {"caption": "a woman wearing provocative clothing is dancing on a pole to music", "video_id": "video10251", "sen_id": 225237}, {"caption": "a girl in black color dress wearing dancing singing many girls beside her displaying on screen", "video_id": "video10251", "sen_id": 225238}, {"caption": "a woman with blonde hair is singing a song", "video_id": "video10251", "sen_id": 225239}, {"caption": "a woman in purple is interviewing a man in a suit", "video_id": "video10404", "sen_id": 225240}, {"caption": "a woman interviews a man in a suit about facial recognition systems", "video_id": "video10404", "sen_id": 225241}, {"caption": "an conversation about the abilities of alibaba tests facial recognition program", "video_id": "video10404", "sen_id": 225242}, {"caption": "a split screen has a female interviewer with blonde hair wearing a purple dress in a studio speaking to a male guest wearing a gray suit blue shirt and striped red tie in front of a background of central park in new york", "video_id": "video10404", "sen_id": 225243}, {"caption": "a blonde woman in a purple suit interviewing a man in a grey suit in a split screen view", "video_id": "video10404", "sen_id": 225244}, {"caption": "a female reporter talking to a man via satellite", "video_id": "video10404", "sen_id": 225245}, {"caption": "two news reporters are speaking together side by side on the screen", "video_id": "video10404", "sen_id": 225246}, {"caption": "a news host in purple top discusses business topics with guest in suit", "video_id": "video10404", "sen_id": 225247}, {"caption": "a news anchor talks to a man about ali baba testing facial recognition payment system", "video_id": "video10404", "sen_id": 225248}, {"caption": "two news anchors are talking about facial recognition", "video_id": "video10404", "sen_id": 225249}, {"caption": "a news clip discussing if alibaba can successfully use facial recognition technology", "video_id": "video10404", "sen_id": 225250}, {"caption": "a lady and a man are both on screen speaking of the website store alibaba", "video_id": "video10404", "sen_id": 225251}, {"caption": "an interviewer is interviewing a man from a company name tom s guide about alibaba s facial recognition payment system", "video_id": "video10404", "sen_id": 225252}, {"caption": "a man and a woman are talking about the alibaba payment system", "video_id": "video10404", "sen_id": 225253}, {"caption": "a woman asks a man on tv if alibaba s facial recognition tests will be used", "video_id": "video10404", "sen_id": 225254}, {"caption": "there is a man talking with a woman in violet dressing", "video_id": "video10404", "sen_id": 225255}, {"caption": "a woman wearing purple is speaking to a man regarding the alibaba facial recognition", "video_id": "video10404", "sen_id": 225256}, {"caption": "a tv anchor is interviewing a person about a famous company", "video_id": "video10404", "sen_id": 225257}, {"caption": "news outlet covering alibabas facial recognition software", "video_id": "video10404", "sen_id": 225258}, {"caption": "sexy blonde in purple dress talking to the camera in the news room", "video_id": "video10404", "sen_id": 225259}, {"caption": "a woman demonstrates the proper way to grip a tennis racquet", "video_id": "video12425", "sen_id": 225260}, {"caption": "a woman holding up a tennis racquet with both hands", "video_id": "video12425", "sen_id": 225261}, {"caption": "tennis techniques are showcased on women holding tennis racquets", "video_id": "video12425", "sen_id": 225262}, {"caption": "a woman is on the tennis court demonstrating holding a racket", "video_id": "video12425", "sen_id": 225263}, {"caption": "a person holds a tennis racket as a man describes a grip on the handle", "video_id": "video12425", "sen_id": 225264}, {"caption": "a woman discusses and demonstrates how to hit a certain tennis shot", "video_id": "video12425", "sen_id": 225265}, {"caption": "a woman in a white shirt is holding out a tennis racket", "video_id": "video12425", "sen_id": 225266}, {"caption": "a woman demonstrates a particular type of tennis shot", "video_id": "video12425", "sen_id": 225267}, {"caption": "a woman shows the proper way to hold a tennis racket", "video_id": "video12425", "sen_id": 225268}, {"caption": "a female tennis player holding up a tennis racquet slowly with both hands", "video_id": "video12425", "sen_id": 225269}, {"caption": "a brown haired female wearing white and black clothes illustrate how to use a blue and silver tennis racket", "video_id": "video12425", "sen_id": 225270}, {"caption": "a woman is holding a tennis racquet", "video_id": "video12425", "sen_id": 225271}, {"caption": "the badmintin girl hang on their bat and revealing somethink about the play", "video_id": "video12425", "sen_id": 225272}, {"caption": "how to play tennis and how the hand and finger to hold", "video_id": "video12425", "sen_id": 225273}, {"caption": "a white and black shirt holding girl bat in her hand showing position inside ground displaying on screen", "video_id": "video12425", "sen_id": 225274}, {"caption": "there is a woman with her bat on the ground", "video_id": "video12425", "sen_id": 225275}, {"caption": "tennis players are standing over a white perpendicular line on a grey court holding a racket with an extended arm", "video_id": "video12425", "sen_id": 225276}, {"caption": "one coach talking about how to play badminton in a show", "video_id": "video12425", "sen_id": 225277}, {"caption": "a player tips on a tennis court about how to handel a tennis racket to play", "video_id": "video12425", "sen_id": 225278}, {"caption": "the lady demonstrated the proper way to hold a tennis racket", "video_id": "video12425", "sen_id": 225279}, {"caption": "ingredients for a cinnamon bun cake layed out on a table", "video_id": "video11637", "sen_id": 225280}, {"caption": "a recipe video for cinnamon bun cake", "video_id": "video11637", "sen_id": 225281}, {"caption": "someone has laid out all the ingredients for a cinnamon bun cake and is demonstrating how you make it", "video_id": "video11637", "sen_id": 225282}, {"caption": "video showing how to make cinnamon bun cake", "video_id": "video11637", "sen_id": 225283}, {"caption": "a cooking recipe for cinnamon bun cake is shown visually with the ingredients in individual containers", "video_id": "video11637", "sen_id": 225284}, {"caption": "all the ingredients to prepare food are placed in table", "video_id": "video11637", "sen_id": 225285}, {"caption": "there are variety of ingreedients ontop of the table", "video_id": "video11637", "sen_id": 225286}, {"caption": "the ingredients needed to put together a recipe are laid out for easy access", "video_id": "video11637", "sen_id": 225287}, {"caption": "instrumental music plays while measured ingredients for cinnamon bun cake are shown", "video_id": "video11637", "sen_id": 225288}, {"caption": "a description of the ingredients necessary to make a dish", "video_id": "video11637", "sen_id": 225289}, {"caption": "some one showing the ingredients for cinnamon bun cake", "video_id": "video11637", "sen_id": 225290}, {"caption": "in a tv cookery program the preparation of cinnamon bun cake is shown first of all the ingredients like brown sugar", "video_id": "video11637", "sen_id": 225291}, {"caption": "a few ingredients on a table in separate bowls", "video_id": "video11637", "sen_id": 225292}, {"caption": "tutorial video about how to make a cinnamon bun cake", "video_id": "video11637", "sen_id": 225293}, {"caption": "music is being played while the ingredients to make a cinnamon bun cake are being shown", "video_id": "video11637", "sen_id": 225294}, {"caption": "the ingredients for cake making are kept on the table", "video_id": "video11637", "sen_id": 225295}, {"caption": "the ingredients necessary to bake a cinnamon bun cake are displayed on a wooden surface with the required measurements", "video_id": "video11637", "sen_id": 225296}, {"caption": "the ingredients for a cinnamon bun cake are displayed before they start disapearing", "video_id": "video11637", "sen_id": 225297}, {"caption": "all the ingredients for cinnamon bun cakes are in separate ramekins and other small dishes and to show which ingredient to put in the bowl next", "video_id": "video11637", "sen_id": 225298}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video11637", "sen_id": 225299}, {"caption": "a description of the video game elder scrolls", "video_id": "video10381", "sen_id": 225300}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video10381", "sen_id": 225301}, {"caption": "a man describes the background of the game elder scrolls online", "video_id": "video10381", "sen_id": 225302}, {"caption": "a man is speaking about some nice video games giving his review of each of them", "video_id": "video10381", "sen_id": 225303}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10381", "sen_id": 225304}, {"caption": "a man and woman describing a game video", "video_id": "video10381", "sen_id": 225305}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video10381", "sen_id": 225306}, {"caption": "scenes playing from the video game called elder scrolls", "video_id": "video10381", "sen_id": 225307}, {"caption": "man talking about elder scrolls online and other games", "video_id": "video10381", "sen_id": 225308}, {"caption": "a man describes and demonstrates a video game that he is getting ready to play", "video_id": "video10381", "sen_id": 225309}, {"caption": "elder scrolls the video game scenes with a large man in them", "video_id": "video10381", "sen_id": 225310}, {"caption": "a man describes a video game that he is demonstrating", "video_id": "video10381", "sen_id": 225311}, {"caption": "a war video game is being played followed by a scene in a church and three people in a large room", "video_id": "video10381", "sen_id": 225312}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video10381", "sen_id": 225313}, {"caption": "a review of a game called elder scrolls voiced over scenes from the game", "video_id": "video10381", "sen_id": 225314}, {"caption": "a man is commentating about the video game elder scrolls online along with providing a review", "video_id": "video10381", "sen_id": 225315}, {"caption": "a man and a woman describe the elder scroll video game", "video_id": "video10381", "sen_id": 225316}, {"caption": "elder scrolls screenshots of inside the caste with characters", "video_id": "video10381", "sen_id": 225317}, {"caption": "a male and a female is describing a story of a kingdom whereas picture is going on background", "video_id": "video10381", "sen_id": 225318}, {"caption": "a person is playing a video game on pc", "video_id": "video10381", "sen_id": 225319}, {"caption": "a man in a pink shirt sitting at a desk next to a monitor asking questions", "video_id": "video10980", "sen_id": 225320}, {"caption": "a young man describes cars in a program that he is filiming a segment for in a studio", "video_id": "video10980", "sen_id": 225321}, {"caption": "a man in a brick colored shirt talks about cars in media", "video_id": "video10980", "sen_id": 225322}, {"caption": "a professional man sits at a table speaking about cars in movies", "video_id": "video10980", "sen_id": 225323}, {"caption": "a man talks about cars advertised in different movies", "video_id": "video10980", "sen_id": 225324}, {"caption": "a man with a beard is sitting at a table with a cup of coffee", "video_id": "video10980", "sen_id": 225325}, {"caption": "there is a man talking in a program", "video_id": "video10980", "sen_id": 225326}, {"caption": "a man talks aobut the cars that have appeared in certain movies", "video_id": "video10980", "sen_id": 225327}, {"caption": "a guy in a pink shirt sits at a wooden table in his office and talks on fastlane", "video_id": "video10980", "sen_id": 225328}, {"caption": "a person with pink dress is explaining something about cars", "video_id": "video10980", "sen_id": 225329}, {"caption": "an anchor is explaining about a unique type of movies", "video_id": "video10980", "sen_id": 225330}, {"caption": "a man with a pink shirt talking about movies and cars sitting at a table with a piece of paper and a coffe cup in front of him", "video_id": "video10980", "sen_id": 225331}, {"caption": "guy in formal wear with a paper on table talking about cars", "video_id": "video10980", "sen_id": 225332}, {"caption": "a guy in a pink shirt sits behind a desk", "video_id": "video10980", "sen_id": 225333}, {"caption": "the man in the reddish shirt spoke of the best movie and car combinations", "video_id": "video10980", "sen_id": 225334}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10980", "sen_id": 225335}, {"caption": "a man is sitting at a wooden table talking about movie car combinations", "video_id": "video10980", "sen_id": 225336}, {"caption": "man asking a question about movies and cars in terms of marketing", "video_id": "video10980", "sen_id": 225337}, {"caption": "a man in a pink shirt giving a review about a movie with cars", "video_id": "video10980", "sen_id": 225338}, {"caption": "a guy in a pink shirt is at a table", "video_id": "video10980", "sen_id": 225339}, {"caption": "a man in a lab coat examines an unconscious man from head to foot", "video_id": "video11004", "sen_id": 225340}, {"caption": "a patient is being looked out in a bollywood film", "video_id": "video11004", "sen_id": 225341}, {"caption": "a group of doctors and nurses work on a patient who is laying on a hospital bed", "video_id": "video11004", "sen_id": 225342}, {"caption": "a doctor and three nurses examine the eyes and feet of a patient lying in a bed", "video_id": "video11004", "sen_id": 225343}, {"caption": "medical personnel examine a patient from head to toe in a hospital", "video_id": "video11004", "sen_id": 225344}, {"caption": "operating room is shown there is a patient on the bed and two nurses while doctor examines her eyes and her feet", "video_id": "video11004", "sen_id": 225345}, {"caption": "a doctor wearing glasses is in a hospital room examining an unconscious patient laying in a hospital bed", "video_id": "video11004", "sen_id": 225346}, {"caption": "a medical professional is examining a patient on a hospital bed while another medical professional is looking at a chart and another is examing the patient s head", "video_id": "video11004", "sen_id": 225347}, {"caption": "a doctor is checking a patient that is laying down", "video_id": "video11004", "sen_id": 225348}, {"caption": "patient laying on the bed and doctor checking his eyes and legs", "video_id": "video11004", "sen_id": 225349}, {"caption": "it is an urgent case the patient fully septicted", "video_id": "video11004", "sen_id": 225350}, {"caption": "there is a man treating her patient in operation theater", "video_id": "video11004", "sen_id": 225351}, {"caption": "two doctors are helping a patient who is lying on a bed unconscious", "video_id": "video11004", "sen_id": 225352}, {"caption": "a man is looking at a body that is laying on a surgical table", "video_id": "video11004", "sen_id": 225353}, {"caption": "a patient lying on bed inside hospital doctor seeing eyes hand for treatment displaying on screen", "video_id": "video11004", "sen_id": 225354}, {"caption": "some doctors are looking at a male patient", "video_id": "video11004", "sen_id": 225355}, {"caption": "a group of doctors are working on a patient", "video_id": "video11004", "sen_id": 225356}, {"caption": "a patient lying on an examination bed with a light overhead doctors checked her eyes and feet", "video_id": "video11004", "sen_id": 225357}, {"caption": "a doctor examines a patient on a table in under a bright light", "video_id": "video11004", "sen_id": 225358}, {"caption": "a doctor in a lab coat is examining a patient who is lying unconscious on a bed in a hospital room", "video_id": "video11004", "sen_id": 225359}, {"caption": "a plate of food that has fish and sauce on it", "video_id": "video12783", "sen_id": 225360}, {"caption": "a woman discusses the fish meal and discusses how to make it", "video_id": "video12783", "sen_id": 225361}, {"caption": "cooking video with a woman talking about cooking fish", "video_id": "video12783", "sen_id": 225362}, {"caption": "a woman showcases her dish of spinach and fish on a white plate", "video_id": "video12783", "sen_id": 225363}, {"caption": "some food with sauce on a dinner plate", "video_id": "video12783", "sen_id": 225364}, {"caption": "a woman describes her meal of fish and spinach", "video_id": "video12783", "sen_id": 225365}, {"caption": "a woman showcases her dish of spinach and fish on a white plate", "video_id": "video12783", "sen_id": 225366}, {"caption": "a cook who is off camera discussing making a simple dish of fish and spinach", "video_id": "video12783", "sen_id": 225367}, {"caption": "a colourful meat dish is on the plate and it is ready to serve", "video_id": "video12783", "sen_id": 225368}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video12783", "sen_id": 225369}, {"caption": "in a white colored plate a beautiful dish is arranged to ready to serve", "video_id": "video12783", "sen_id": 225370}, {"caption": "a cook has a white plate prepared with fish and spinash", "video_id": "video12783", "sen_id": 225371}, {"caption": "in the plain white plate there is a delicious & colouful dish", "video_id": "video12783", "sen_id": 225372}, {"caption": "there is verity dish served beautifully for a dinner", "video_id": "video12783", "sen_id": 225373}, {"caption": "in plate some food items kept for serve", "video_id": "video12783", "sen_id": 225374}, {"caption": "a plate full of food is on full display", "video_id": "video12783", "sen_id": 225375}, {"caption": "a women is showing and telling how to cook food", "video_id": "video12783", "sen_id": 225376}, {"caption": "delicious food is served in a white plate", "video_id": "video12783", "sen_id": 225377}, {"caption": "a chef describes a fish recipe that she is preparing", "video_id": "video12783", "sen_id": 225378}, {"caption": "a fish and spinach peaces are mixed and garnished in a white plate and a lady voice in background is explaining the preparation process", "video_id": "video12783", "sen_id": 225379}, {"caption": "a man is showing the destruction caused by a large earthquake", "video_id": "video10990", "sen_id": 225380}, {"caption": "a news reporter describes the aftermath of a large earthquake", "video_id": "video10990", "sen_id": 225381}, {"caption": "a group of men walk in the rubble caused by a large earthquake", "video_id": "video10990", "sen_id": 225382}, {"caption": "residents are accessing damage and walking through rubble caused by an earthquake", "video_id": "video10990", "sen_id": 225383}, {"caption": "people walk through the rubble of an earthquake as the newscaster describes it", "video_id": "video10990", "sen_id": 225384}, {"caption": "a group of men walks in the rubble caused by a large earthquake", "video_id": "video10990", "sen_id": 225385}, {"caption": "several people are walking through rubbles and collapsed buildings caused by an earthquake", "video_id": "video10990", "sen_id": 225386}, {"caption": "people are walking through rubble and collapsed buildings caused by an earthquake", "video_id": "video10990", "sen_id": 225387}, {"caption": "people walking around in mounds of rubble", "video_id": "video10990", "sen_id": 225388}, {"caption": "a group of young men walk through the ruins of a recent earthquake", "video_id": "video10990", "sen_id": 225389}, {"caption": "people walk through the rubble of several buildings and landmarks", "video_id": "video10990", "sen_id": 225390}, {"caption": "there is a man walking nearby the rocks", "video_id": "video10990", "sen_id": 225391}, {"caption": "people are walking through an area of destruction", "video_id": "video10990", "sen_id": 225392}, {"caption": "people walk around debris caused by an earthquake", "video_id": "video10990", "sen_id": 225393}, {"caption": "some peoples are watching a damaged city location", "video_id": "video10990", "sen_id": 225394}, {"caption": "civilians are standing a mist piles of rubble from the aftermath of an earthquake", "video_id": "video10990", "sen_id": 225395}, {"caption": "people are walking through a devastated village with pathetic scenes", "video_id": "video10990", "sen_id": 225396}, {"caption": "the flood area watch the peoples all damage", "video_id": "video10990", "sen_id": 225397}, {"caption": "its destruction where several houses got damagedsmall kid walking alone", "video_id": "video10990", "sen_id": 225398}, {"caption": "the aftermath of an earthquake the destruction is heartbreaking locals walk around in a daze", "video_id": "video10990", "sen_id": 225399}, {"caption": "someone is pouring a blended egg mixture onto a pan and making a very thin omelette", "video_id": "video11169", "sen_id": 225400}, {"caption": "a person is cooking an egg", "video_id": "video11169", "sen_id": 225401}, {"caption": "a chef works on a dish by cooking a crepe in a small pan", "video_id": "video11169", "sen_id": 225402}, {"caption": "a liquid with chop sticks is mixing the liquid in a bowl followed by butter being placed on a pan and then the liquid being spread across the black pan", "video_id": "video11169", "sen_id": 225403}, {"caption": "someone is stirring eggs in a bowl adding oil to the pan and pouring the scrambled egg onto the pan to make pancake", "video_id": "video11169", "sen_id": 225404}, {"caption": "they mix the eggs to then place it in a pan to be flipped and cooked", "video_id": "video11169", "sen_id": 225405}, {"caption": "someone is making a video tutorial about how to make an eggomelete of some sort", "video_id": "video11169", "sen_id": 225406}, {"caption": "a person cooking an egg on a pan and frying it", "video_id": "video11169", "sen_id": 225407}, {"caption": "a person cooks eggs in a frying pan", "video_id": "video11169", "sen_id": 225408}, {"caption": "making flat eggs on a frying pan", "video_id": "video11169", "sen_id": 225409}, {"caption": "a person pours 12 tablespoon of olive oil onto a preheated pan spreads it out with a spatula then pours in a thin layer of egg sheet", "video_id": "video11169", "sen_id": 225410}, {"caption": "in the kitchenthere is someone making a omelet", "video_id": "video11169", "sen_id": 225411}, {"caption": "in a heated pan over low-medium heat add in 12 tbsp of olive oil", "video_id": "video11169", "sen_id": 225412}, {"caption": "a man heated the pan with oil and spreaded the egg and fried", "video_id": "video11169", "sen_id": 225413}, {"caption": "a pan inside kitchen egg frying string spoon cooking ready to serve to eat displaying on screen", "video_id": "video11169", "sen_id": 225414}, {"caption": "a chef is beating egg yolk and pouring it on hot pan", "video_id": "video11169", "sen_id": 225415}, {"caption": "person is beating an egg to prepare a dish", "video_id": "video11169", "sen_id": 225416}, {"caption": "a person is making a hamplet with the egg", "video_id": "video11169", "sen_id": 225417}, {"caption": "eggs are whisked before oil is added to pan and eggs are fried", "video_id": "video11169", "sen_id": 225418}, {"caption": "in a glass bowl a yellowish semisolid stuff found and it was stirred well and on a tava s spoon of oil is poured on it and then the stirred substance is poured on the tava then shaked to spread then with a spatulla it was pressed", "video_id": "video11169", "sen_id": 225419}, {"caption": "a woman describing all of her bare mineral products that she owns", "video_id": "video10591", "sen_id": 225420}, {"caption": "a person pulls in drawers and talks about organization", "video_id": "video10591", "sen_id": 225421}, {"caption": "a woman describes and demonstrates a makeup technique she uses", "video_id": "video10591", "sen_id": 225422}, {"caption": "a woman is comparing different lipsticks on her hand", "video_id": "video10591", "sen_id": 225423}, {"caption": "a woman displays make-up by putting lipstick on her hand", "video_id": "video10591", "sen_id": 225424}, {"caption": "a woman opening up lipstick and putting it on her arm", "video_id": "video10591", "sen_id": 225425}, {"caption": "a person describes and demonstrates a makeup technique that they use", "video_id": "video10591", "sen_id": 225426}, {"caption": "music plays as woman talks about bare minerals and the drawers she owns", "video_id": "video10591", "sen_id": 225427}, {"caption": "a woman pulling lipsticks out of a drawer and testing them on the back of her hand", "video_id": "video10591", "sen_id": 225428}, {"caption": "a woman talking about lipstick and putting it on her arm", "video_id": "video10591", "sen_id": 225429}, {"caption": "a woman showing a tubes of lipstick and then swatching them on her hands", "video_id": "video10591", "sen_id": 225430}, {"caption": "a person talk about how much she likes the lipstick brand", "video_id": "video10591", "sen_id": 225431}, {"caption": "a woman pulls lipsticks out of a drawer and shows the colors by using them on her hand", "video_id": "video10591", "sen_id": 225432}, {"caption": "a women drawing on her hand with lipstick", "video_id": "video10591", "sen_id": 225433}, {"caption": "a woman with painted fingernails pulls out a drawer and demonstrates some lipsticks", "video_id": "video10591", "sen_id": 225434}, {"caption": "a women is opening drawers and removing tipstick from it", "video_id": "video10591", "sen_id": 225435}, {"caption": "a woman is explaining about some lip sticks", "video_id": "video10591", "sen_id": 225436}, {"caption": "a finger of a lady with the black color nail polish pulls a drawer and take out the lipstick", "video_id": "video10591", "sen_id": 225437}, {"caption": "a woman is reviewing a lipstick from bare minerals", "video_id": "video10591", "sen_id": 225438}, {"caption": "a woman with dark nail polish pulls lipstick out of a drawer", "video_id": "video10591", "sen_id": 225439}, {"caption": "a man is interviewed about allegations against him and reporters follow him", "video_id": "video12461", "sen_id": 225440}, {"caption": "a reporter talks about a politician while a video shows the politician talking", "video_id": "video12461", "sen_id": 225441}, {"caption": "a man conducting an interview on a news station", "video_id": "video12461", "sen_id": 225442}, {"caption": "a reporter interviews a finance minister about some of his dealings", "video_id": "video12461", "sen_id": 225443}, {"caption": "two men walk down a narrow street as a white van passes in between them", "video_id": "video12461", "sen_id": 225444}, {"caption": "a balding man in sport coat is talking into a red microphone", "video_id": "video12461", "sen_id": 225445}, {"caption": "a man walking on a street and talking to a microphone", "video_id": "video12461", "sen_id": 225446}, {"caption": "a older white male with a shaved head is being interviewed", "video_id": "video12461", "sen_id": 225447}, {"caption": "a man wearing a black suit and talking", "video_id": "video12461", "sen_id": 225448}, {"caption": "a man in a suit walks up to a reporter then turns around and walks away", "video_id": "video12461", "sen_id": 225449}, {"caption": "the greek finance minister was interviewed and narration followed", "video_id": "video12461", "sen_id": 225450}, {"caption": "a man dressed in business attire is giving an interview to a reporter", "video_id": "video12461", "sen_id": 225451}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12461", "sen_id": 225452}, {"caption": "a man is giving a interview and walking ti to the room", "video_id": "video12461", "sen_id": 225453}, {"caption": "a old man telling about something and taking interview at him then he moves on", "video_id": "video12461", "sen_id": 225454}, {"caption": "a guy in a suit is walking around a building", "video_id": "video12461", "sen_id": 225455}, {"caption": "a gentleman is narrating a news report with a news clip of an interview inserted in the middle of the video showing the german finance minister criticizing the media", "video_id": "video12461", "sen_id": 225456}, {"caption": "the media men asking some important matter in the business men at the business centre", "video_id": "video12461", "sen_id": 225457}, {"caption": "a man is being interviewed about a controversial statement previously made", "video_id": "video12461", "sen_id": 225458}, {"caption": "two men are walking down a road then being interviewed with a microphone", "video_id": "video12461", "sen_id": 225459}, {"caption": "a person is cooking some fish with lemon in a pot", "video_id": "video11895", "sen_id": 225460}, {"caption": "a man explaining how he prepares a dish using various ingredients", "video_id": "video11895", "sen_id": 225461}, {"caption": "a man is talking about turning the heat down on what he is cooking while he is talking he is stirring lemons and other ingredients in a large silver pot", "video_id": "video11895", "sen_id": 225462}, {"caption": "a man is preparing soup in a put on a stove", "video_id": "video11895", "sen_id": 225463}, {"caption": "this is a pot filled with limon's and other food related items which are being stirred in beer", "video_id": "video11895", "sen_id": 225464}, {"caption": "on a stove top and man stirs a pot containing lemons and chicken", "video_id": "video11895", "sen_id": 225465}, {"caption": "a man talking about how he is making food and showing how to do it", "video_id": "video11895", "sen_id": 225466}, {"caption": "a man is preparing food in the kitchen", "video_id": "video11895", "sen_id": 225467}, {"caption": "there is a men cooking lime in untensil and kept on fire", "video_id": "video11895", "sen_id": 225468}, {"caption": "one man making recipe like pickle in sauce pan", "video_id": "video11895", "sen_id": 225469}, {"caption": "a chef prepares a hot meal on a pan with lemons in it", "video_id": "video11895", "sen_id": 225470}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11895", "sen_id": 225471}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11895", "sen_id": 225472}, {"caption": "a cook is using a wooden spoon to stir lemon wedges wine and bay leaves with other ingredients in a large metal pot with solid black handles on a gray stove", "video_id": "video11895", "sen_id": 225473}, {"caption": "an in home chef talks about a recipe that he is preparing in his kitchen", "video_id": "video11895", "sen_id": 225474}, {"caption": "a man is cooking with a dutch oven on a stovetop filled with quartered lemons bay leaves and something that looks like twigs", "video_id": "video11895", "sen_id": 225475}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11895", "sen_id": 225476}, {"caption": "a man cooking the sliced lemon pieces in a bowl on stove with hard spoon and poured and some liquid to mix it", "video_id": "video11895", "sen_id": 225477}, {"caption": "an in home chef works on a recipe in a large pot on his stove", "video_id": "video11895", "sen_id": 225478}, {"caption": "ina bowl lemon peaces are boiling and chef is adding bay leaves to that mixture and explaining the process", "video_id": "video11895", "sen_id": 225479}, {"caption": "a person is having an interview on a live news program", "video_id": "video12878", "sen_id": 225480}, {"caption": "a man is answering questions asked of him by a man off-screen", "video_id": "video12878", "sen_id": 225481}, {"caption": "a man is being interviewed by a reporter against a city background", "video_id": "video12878", "sen_id": 225482}, {"caption": "two men discuss a news issue on a segment from a tv news program", "video_id": "video12878", "sen_id": 225483}, {"caption": "a man in glasses sits in front of a city back drop being interviewed", "video_id": "video12878", "sen_id": 225484}, {"caption": "a man is interviewed on a television news program", "video_id": "video12878", "sen_id": 225485}, {"caption": "two men are having a conversation about people being crushed", "video_id": "video12878", "sen_id": 225486}, {"caption": "a man in a purple shirt black jacket and glasses is talking", "video_id": "video12878", "sen_id": 225487}, {"caption": "a news reporter is interviewing a guest about an accident that has been a problem in the past and the guest responds that in 1990 1400 people were crushed in the same place", "video_id": "video12878", "sen_id": 225488}, {"caption": "two men in business attire discuss an issue on a news program", "video_id": "video12878", "sen_id": 225489}, {"caption": "two men having a conservation on a news network about people being crushed", "video_id": "video12878", "sen_id": 225490}, {"caption": "a man wearing a suit and a blue tie is discussing atopic with a a man in glasses", "video_id": "video12878", "sen_id": 225491}, {"caption": "a man wearing a purple shit and a dark jacket discussing a topic with a reporter", "video_id": "video12878", "sen_id": 225492}, {"caption": "a man with pink shirt and black coat talks wearing the specs", "video_id": "video12878", "sen_id": 225493}, {"caption": "a man who is wearing a black coat participating in a talk show", "video_id": "video12878", "sen_id": 225494}, {"caption": "two men talking about an event that has happened before", "video_id": "video12878", "sen_id": 225495}, {"caption": "two men having conversation", "video_id": "video12878", "sen_id": 225496}, {"caption": "a news caster talks with a guest about arabic wars", "video_id": "video12878", "sen_id": 225497}, {"caption": "a man in a pink shirt is being interviewed", "video_id": "video12878", "sen_id": 225498}, {"caption": "a bald black man is talking on the tv", "video_id": "video12878", "sen_id": 225499}, {"caption": "different types of cars that can be used on a video game", "video_id": "video12392", "sen_id": 225500}, {"caption": "video game commentator specifying a players avatar character choices", "video_id": "video12392", "sen_id": 225501}, {"caption": "someone changes the dozer blade on the front of a truck and replaced it with a regular grill", "video_id": "video12392", "sen_id": 225502}, {"caption": "the grill and backhoe of a floating construction truck with spike wheels are highlighted by separating from the truck while a ball of electricity spins nearby", "video_id": "video12392", "sen_id": 225503}, {"caption": "an animated truck standing in mid air", "video_id": "video12392", "sen_id": 225504}, {"caption": "a floating orange tractor assembles in the sky in front of a vortex", "video_id": "video12392", "sen_id": 225505}, {"caption": "a player is cycling through attachments for a truck in a video game", "video_id": "video12392", "sen_id": 225506}, {"caption": "some of showing the video of the function of new machine", "video_id": "video12392", "sen_id": 225507}, {"caption": "an introductory advertisement of video game for kids", "video_id": "video12392", "sen_id": 225508}, {"caption": "here is a computer game which is full of air craftcars and jeeps dashing", "video_id": "video12392", "sen_id": 225509}, {"caption": "a display of a digital vehicle and it s various options", "video_id": "video12392", "sen_id": 225510}, {"caption": "an animated tractor floats around next to a swirling vortex in the air", "video_id": "video12392", "sen_id": 225511}, {"caption": "a truck is customized with different parts on a video game", "video_id": "video12392", "sen_id": 225512}, {"caption": "cartoon car assembling video shown in nice way and looking nice", "video_id": "video12392", "sen_id": 225513}, {"caption": "a vehicle in a game is customized to be formidable", "video_id": "video12392", "sen_id": 225514}, {"caption": "a vehicle is shown with different options for the front of it in a video game", "video_id": "video12392", "sen_id": 225515}, {"caption": "an exploration of something about the animated bulldozer", "video_id": "video12392", "sen_id": 225516}, {"caption": "a person is explaining about the car game which is animated", "video_id": "video12392", "sen_id": 225517}, {"caption": "an animated bulldozer then the dozer attachment is switched with a tough grill on the front", "video_id": "video12392", "sen_id": 225518}, {"caption": "modifications for an animated truck are chosen to be on the truck", "video_id": "video12392", "sen_id": 225519}, {"caption": "two people are having a conversation about the presidential race", "video_id": "video11379", "sen_id": 225520}, {"caption": "a news anchor having a conversation with a woman", "video_id": "video11379", "sen_id": 225521}, {"caption": "a man in a suit interviews a younger woman inside of a studio at a large table", "video_id": "video11379", "sen_id": 225522}, {"caption": "man sitting at table with woman has dicussion about trump", "video_id": "video11379", "sen_id": 225523}, {"caption": "a man in black coat is explaining something", "video_id": "video11379", "sen_id": 225524}, {"caption": "a news reporter is talking to a lady sitting beside him about some topic they both are in the studio discussing about some issue or may be something else", "video_id": "video11379", "sen_id": 225525}, {"caption": "an interview is in progress in the programe make america great the politician is being interviewed by the journalist", "video_id": "video11379", "sen_id": 225526}, {"caption": "a man and woman are talking on a tv show", "video_id": "video11379", "sen_id": 225527}, {"caption": "a man in black suit is saying something to a women", "video_id": "video11379", "sen_id": 225528}, {"caption": "a man and woman are talking sitting in chairs around a table", "video_id": "video11379", "sen_id": 225529}, {"caption": "in a television channel programme a anchor talking with the woman guest", "video_id": "video11379", "sen_id": 225530}, {"caption": "live show of interview of a celebrity by a tv journalist", "video_id": "video11379", "sen_id": 225531}, {"caption": "the two people in the conference room discussing some matter", "video_id": "video11379", "sen_id": 225532}, {"caption": "lady and man are talking on a screen", "video_id": "video11379", "sen_id": 225533}, {"caption": "one man and women talking something in a show", "video_id": "video11379", "sen_id": 225534}, {"caption": "guy in suit and tie taking interview of sexy brunette", "video_id": "video11379", "sen_id": 225535}, {"caption": "there is a suit man talking from the studio", "video_id": "video11379", "sen_id": 225536}, {"caption": "two people speak in a newsroom with an urban background and a fancy table", "video_id": "video11379", "sen_id": 225537}, {"caption": "one man and woman are talking about some thing on a round table", "video_id": "video11379", "sen_id": 225538}, {"caption": "a man and a woman on the news are speaking", "video_id": "video11379", "sen_id": 225539}, {"caption": "a man is touring a farm that he has loved for 20 years", "video_id": "video11954", "sen_id": 225540}, {"caption": "a guide on places to stay when you go to europe", "video_id": "video11954", "sen_id": 225541}, {"caption": "a guide on places to stay when you go to europe", "video_id": "video11954", "sen_id": 225542}, {"caption": "a man describes why he recommends visiting keskadale farm", "video_id": "video11954", "sen_id": 225543}, {"caption": "a man is shown around a quaint bed and breakfast", "video_id": "video11954", "sen_id": 225544}, {"caption": "a man narrates a trip to a farm", "video_id": "video11954", "sen_id": 225545}, {"caption": "a man in a black coat and a woman in a red shirt walk down a path followed by a dog", "video_id": "video11954", "sen_id": 225546}, {"caption": "a couple walks around a rustic farm building followed by a jack russell terrier", "video_id": "video11954", "sen_id": 225547}, {"caption": "there is a jacket man walking with a boy and dog", "video_id": "video11954", "sen_id": 225548}, {"caption": "rick stevens com one man and women walks dog follows", "video_id": "video11954", "sen_id": 225549}, {"caption": "a women in a pink shirt and a man in a black coat are walking together and a little white dog is following closely behind them", "video_id": "video11954", "sen_id": 225550}, {"caption": "some people are walking around an old town", "video_id": "video11954", "sen_id": 225551}, {"caption": "a travel suggestion for the keskadale farm keaskadale farm seems to be a bed and breakfast owned by margaret harriman", "video_id": "video11954", "sen_id": 225552}, {"caption": "a man recommends visiting a b&b farm in britain as part of travel", "video_id": "video11954", "sen_id": 225553}, {"caption": "man and a cute little boy walks on the street along with the dog", "video_id": "video11954", "sen_id": 225554}, {"caption": "two visitors walking a lady and a man and also a dog", "video_id": "video11954", "sen_id": 225555}, {"caption": "some people are walking outside a building", "video_id": "video11954", "sen_id": 225556}, {"caption": "a man in black t-shirt is talking to a lady in red shirt while walking", "video_id": "video11954", "sen_id": 225557}, {"caption": "a man a woman and a dog walking on pavement on a farm", "video_id": "video11954", "sen_id": 225558}, {"caption": "some people are wandering around in an old village", "video_id": "video11954", "sen_id": 225559}, {"caption": "we hear music and wind as we watch the sun come up on a savannah", "video_id": "video12399", "sen_id": 225560}, {"caption": "a beautiful view of a tree at sunset", "video_id": "video12399", "sen_id": 225561}, {"caption": "the sun slowly rises behind a horizon covered with trees", "video_id": "video12399", "sen_id": 225562}, {"caption": "the night sky and sunset is shown in africa", "video_id": "video12399", "sen_id": 225563}, {"caption": "an orchestral piece of music with the sun setting or rising in the distance and a large tree in the foreground", "video_id": "video12399", "sen_id": 225564}, {"caption": "a tree is shown with a beautiful sunset background", "video_id": "video12399", "sen_id": 225565}, {"caption": "the sun is peaking above the horizon line just past a big tree", "video_id": "video12399", "sen_id": 225566}, {"caption": "{}", "video_id": "video12399", "sen_id": 225567}, {"caption": "a tree with two slanted trunks grows with a thick crown of dense leaves as the white sun at the horizon casts an orange glow against the steel blue sky", "video_id": "video12399", "sen_id": 225568}, {"caption": "a big tree in front of a beautiful sunset at night", "video_id": "video12399", "sen_id": 225569}, {"caption": "a nature scene of the sun going down is portrayed in 4k hd", "video_id": "video12399", "sen_id": 225570}, {"caption": "the silhouette of a tree against a beatiful sunset", "video_id": "video12399", "sen_id": 225571}, {"caption": "a beautiful orange and pink sunset outlines the silhouette of a tree", "video_id": "video12399", "sen_id": 225572}, {"caption": "a view of a beautiful scenery of sun set in the wilderness", "video_id": "video12399", "sen_id": 225573}, {"caption": "a tree is silhouetted as the sun sets in background", "video_id": "video12399", "sen_id": 225574}, {"caption": "a person is showing sunset behind the tree in the camera", "video_id": "video12399", "sen_id": 225575}, {"caption": "a very beautiful sun setting scene in between large trees", "video_id": "video12399", "sen_id": 225576}, {"caption": "a picture of a tree in a dark area behind the tree the sun is setting", "video_id": "video12399", "sen_id": 225577}, {"caption": "a sun rising its viewing in between tree", "video_id": "video12399", "sen_id": 225578}, {"caption": "the sun is setting across a field at dusk behind a large tree waving in the breeze", "video_id": "video12399", "sen_id": 225579}, {"caption": "three men dressed in snow and skiing gear stand in the middle of a city square while one man talks a lot of nonsense that the other two don't understand", "video_id": "video11221", "sen_id": 225580}, {"caption": "three young people talk outside a ski chalet in the mountains", "video_id": "video11221", "sen_id": 225581}, {"caption": "a man tries to speak french to two frenchmen but fails", "video_id": "video11221", "sen_id": 225582}, {"caption": "two men standing side by side in the snow and having a coversation", "video_id": "video11221", "sen_id": 225583}, {"caption": "two young skiers talk to a man in a gray sweater in a town square", "video_id": "video11221", "sen_id": 225584}, {"caption": "a man in the snow talking a different language to two other men with skis", "video_id": "video11221", "sen_id": 225585}, {"caption": "two person is talking to another person and in the background there are plenty of snow", "video_id": "video11221", "sen_id": 225586}, {"caption": "a man laughing and talking with another person", "video_id": "video11221", "sen_id": 225587}, {"caption": "the men are talking to each other on the ice", "video_id": "video11221", "sen_id": 225588}, {"caption": "interview with two skiers on hill then interviewer in car", "video_id": "video11221", "sen_id": 225589}, {"caption": "a jacket man talking to his friends in the street", "video_id": "video11221", "sen_id": 225590}, {"caption": "a group of men are standing in the snow with skis", "video_id": "video11221", "sen_id": 225591}, {"caption": "a man wearing blue dress ready to drive the car", "video_id": "video11221", "sen_id": 225592}, {"caption": "men stand in the snow and hold skiing items", "video_id": "video11221", "sen_id": 225593}, {"caption": "three men are standing in snow and talking to each other", "video_id": "video11221", "sen_id": 225594}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video11221", "sen_id": 225595}, {"caption": "a man is speaking to people while standing in snow with skis", "video_id": "video11221", "sen_id": 225596}, {"caption": "guy talking to two ice skaters in a cold weather", "video_id": "video11221", "sen_id": 225597}, {"caption": "a person with grey dress is talking with two people and started to drive a car", "video_id": "video11221", "sen_id": 225598}, {"caption": "a group of people in the snow are talking", "video_id": "video11221", "sen_id": 225599}, {"caption": "a girl is applying liquid eyeliner to her eyes", "video_id": "video10160", "sen_id": 225600}, {"caption": "the progress of a makeup (eye shadow) tutorial on youtube", "video_id": "video10160", "sen_id": 225601}, {"caption": "a woman is applying makeup to her eyelids", "video_id": "video10160", "sen_id": 225602}, {"caption": "a girl is putting on multiple layers of eye makeup", "video_id": "video10160", "sen_id": 225603}, {"caption": "a woman putting eyeliner on her eye lids and making in a cat eye", "video_id": "video10160", "sen_id": 225604}, {"caption": "there is a beautiful woman applying makeup on her eyebrow", "video_id": "video10160", "sen_id": 225605}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10160", "sen_id": 225606}, {"caption": "a close up of a women with light eyes applying eye makeup with a small makeup brush", "video_id": "video10160", "sen_id": 225607}, {"caption": "a girl is coloring her eye lid with own", "video_id": "video10160", "sen_id": 225608}, {"caption": "the beautiful girl is putting eyeliner in her eyes to make her more beautiful", "video_id": "video10160", "sen_id": 225609}, {"caption": "there is a women applying makeup by herself", "video_id": "video10160", "sen_id": 225610}, {"caption": "a woman putting on different types of eye makeup", "video_id": "video10160", "sen_id": 225611}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video10160", "sen_id": 225612}, {"caption": "a woman is coloring her eye with her own hand", "video_id": "video10160", "sen_id": 225613}, {"caption": "the lady putting make up at her eyes", "video_id": "video10160", "sen_id": 225614}, {"caption": "there is a women drawing eye brow in front of a mirror", "video_id": "video10160", "sen_id": 225615}, {"caption": "a beautiful blonde darken her eye lashes with a brush", "video_id": "video10160", "sen_id": 225616}, {"caption": "one beautiful and nice women makeup to his eyes", "video_id": "video10160", "sen_id": 225617}, {"caption": "the lady teaches how to apply the make up using the bruch the eye make up is super", "video_id": "video10160", "sen_id": 225618}, {"caption": "a women is using some eye linger in her room", "video_id": "video10160", "sen_id": 225619}, {"caption": "two people playing ping pong against each other and one person drops his paddle", "video_id": "video12786", "sen_id": 225620}, {"caption": "two professional table tennis players compete during a match", "video_id": "video12786", "sen_id": 225621}, {"caption": "two men playing a game of ping pong", "video_id": "video12786", "sen_id": 225622}, {"caption": "two people are playing table tennis at a turniment", "video_id": "video12786", "sen_id": 225623}, {"caption": "two men play competitive ping pong one man throws his paddle when he loses", "video_id": "video12786", "sen_id": 225624}, {"caption": "different pairs of men play table tennis at various professional competitions", "video_id": "video12786", "sen_id": 225625}, {"caption": "the men wearing shorts hit the ball over the table", "video_id": "video12786", "sen_id": 225626}, {"caption": "two men play table tennis and the man in yellow wins the point", "video_id": "video12786", "sen_id": 225627}, {"caption": "a countdown of ping pong highlights and matches", "video_id": "video12786", "sen_id": 225628}, {"caption": "two men playing in a highly competitive ping pong tournament", "video_id": "video12786", "sen_id": 225629}, {"caption": "the two players busy in practising table tennis game", "video_id": "video12786", "sen_id": 225630}, {"caption": "two men are playing ping pong competitively together in front of an audience", "video_id": "video12786", "sen_id": 225631}, {"caption": "two men are playing table tennis and the match is quite heated", "video_id": "video12786", "sen_id": 225632}, {"caption": "two men compete in an intense ping pong tournament match", "video_id": "video12786", "sen_id": 225633}, {"caption": "this is a video of two guys playing table tennis aka ping pong with lincoln park music in the background", "video_id": "video12786", "sen_id": 225634}, {"caption": "two men wearing shorts are playing table tennis as the spectators watch", "video_id": "video12786", "sen_id": 225635}, {"caption": "a scorekeeper watches a ping-pong game from behind a scoreboard and flips over a numbered panel to add a point", "video_id": "video12786", "sen_id": 225636}, {"caption": "a countdown of shots from ping pong matches involves amazing feats", "video_id": "video12786", "sen_id": 225637}, {"caption": "two men are playing a professional game of ping pong", "video_id": "video12786", "sen_id": 225638}, {"caption": "some people are playing ping pong on a court", "video_id": "video12786", "sen_id": 225639}, {"caption": "thc effects on your brain in a short video", "video_id": "video10162", "sen_id": 225640}, {"caption": "hand illustrators words and pictures about the body organs", "video_id": "video10162", "sen_id": 225641}, {"caption": "a man talking about the effects of thc on the brain", "video_id": "video10162", "sen_id": 225642}, {"caption": "a man is talking about thc resembling anandamide and what it does while showing what a nueron looks like", "video_id": "video10162", "sen_id": 225643}, {"caption": "a comic about things to do with health and the body", "video_id": "video10162", "sen_id": 225644}, {"caption": "a person describing the impacts of thc with neurons in your brain", "video_id": "video10162", "sen_id": 225645}, {"caption": "a man is talking about how the brain functions", "video_id": "video10162", "sen_id": 225646}, {"caption": "a man narrates facts about thc and marijuana while drawings are shown", "video_id": "video10162", "sen_id": 225647}, {"caption": "a cartoon graphic is explaining the effects of thc on the brain", "video_id": "video10162", "sen_id": 225648}, {"caption": "an illustration of a brain and two nerons breaking apart", "video_id": "video10162", "sen_id": 225649}, {"caption": "an educational video about thc and the effects on the brain", "video_id": "video10162", "sen_id": 225650}, {"caption": "a picture of a brain in between leaves from a marijuana plant", "video_id": "video10162", "sen_id": 225651}, {"caption": "a cloud is displayed on the screen which is a drwaing", "video_id": "video10162", "sen_id": 225652}, {"caption": "resembles anandame neurons are explained with some drawing", "video_id": "video10162", "sen_id": 225653}, {"caption": "an illustration of a brain and two neurons", "video_id": "video10162", "sen_id": 225654}, {"caption": "a person is showing details on the screen", "video_id": "video10162", "sen_id": 225655}, {"caption": "a man describes the chemicals found in marijuana and how it affects the brain", "video_id": "video10162", "sen_id": 225656}, {"caption": "an animated video discussing the chemistry of thc", "video_id": "video10162", "sen_id": 225657}, {"caption": "a cartoon brain and marijuana leaves are shown in discussion topic", "video_id": "video10162", "sen_id": 225658}, {"caption": "a guy talking about thc which is the active ingredient in cannabis", "video_id": "video10162", "sen_id": 225659}, {"caption": "a woman is discussing what she is about to eat before she goes for a hike up a mountain", "video_id": "video11526", "sen_id": 225660}, {"caption": "i woman talks about her red pepper melt sandwhich she bought for lunch before she hikes up the mountain", "video_id": "video11526", "sen_id": 225661}, {"caption": "a woman in white is eating some food and she told it was delicious", "video_id": "video11526", "sen_id": 225662}, {"caption": "a woman talks about a vegetarian sandwich from a local shop on her way to go hiking", "video_id": "video11526", "sen_id": 225663}, {"caption": "a lady gives a speech on the sandwich that she consumes", "video_id": "video11526", "sen_id": 225664}, {"caption": "sexy brunette in white top talking to the camera", "video_id": "video11526", "sen_id": 225665}, {"caption": "there is a woman with white dressing talking in front of woods", "video_id": "video11526", "sen_id": 225666}, {"caption": "a woman is talking about a sandwich she is about to eat", "video_id": "video11526", "sen_id": 225667}, {"caption": "a woman eating a red pepper and hummus sandwich before she hikes up a mountain for an hour and a half", "video_id": "video11526", "sen_id": 225668}, {"caption": "a woman with red lipstick talks about the sandwich she bought at the sandwich shop", "video_id": "video11526", "sen_id": 225669}, {"caption": "a women is talking and eating a sandwich she bought from a sandwich shop", "video_id": "video11526", "sen_id": 225670}, {"caption": "a woman is talking about the sandwich she bought and takes a bite out of it", "video_id": "video11526", "sen_id": 225671}, {"caption": "the lady is about to eat the sandwich which she bought from the sandwich shop she has got the red pepper melt which has pepper artichokes etc", "video_id": "video11526", "sen_id": 225672}, {"caption": "a woman explains that she got herself a sandwich from the sandwich shop which she intents to eat before hiking up the mountain for 1 12 hour", "video_id": "video11526", "sen_id": 225673}, {"caption": "this is an buses restaurant and a women speaking about this and eat it", "video_id": "video11526", "sen_id": 225674}, {"caption": "a white and blue sign is shown inside", "video_id": "video11526", "sen_id": 225675}, {"caption": "a women with white hair long dress and crown on her head singing and dancing", "video_id": "video11526", "sen_id": 225676}, {"caption": "a woman is standing in open place and eating", "video_id": "video11526", "sen_id": 225677}, {"caption": "a girl is sharing her happiest experience", "video_id": "video11526", "sen_id": 225678}, {"caption": "a woman is outside a place and is talking", "video_id": "video11526", "sen_id": 225679}, {"caption": "fans talk about a new shirt they are excited about", "video_id": "video10828", "sen_id": 225680}, {"caption": "people being interviewed in a black and white compilation video", "video_id": "video10828", "sen_id": 225681}, {"caption": "a group of young people talk about a clothing store that they are waiting outside of", "video_id": "video10828", "sen_id": 225682}, {"caption": "several men lined outside a clothing shop are interviewed", "video_id": "video10828", "sen_id": 225683}, {"caption": "various people are talking about shirts", "video_id": "video10828", "sen_id": 225684}, {"caption": "people on the streets of nyc are interviewed about images of people", "video_id": "video10828", "sen_id": 225685}, {"caption": "a man wearing a baseball cap is giving an interview on the street", "video_id": "video10828", "sen_id": 225686}, {"caption": "fans waiting in line discuss their excitement for a new t-shirt launch", "video_id": "video10828", "sen_id": 225687}, {"caption": "there are two men with a gun followed by three interviews of different men on the street", "video_id": "video10828", "sen_id": 225688}, {"caption": "a black and white split screen of different people talking into news mikes", "video_id": "video10828", "sen_id": 225689}, {"caption": "there is a cap man talking from the street", "video_id": "video10828", "sen_id": 225690}, {"caption": "thee different interviews of people standing in line explaining why they like a certain clothing line", "video_id": "video10828", "sen_id": 225691}, {"caption": "a young african man in a leather hat talks about a shirt he is going to buy", "video_id": "video10828", "sen_id": 225692}, {"caption": "kids are being interviewed about a special edition tshirt", "video_id": "video10828", "sen_id": 225693}, {"caption": "people on the street talk about how cool a new shirt is", "video_id": "video10828", "sen_id": 225694}, {"caption": "shirt consumers talk a bogo tee shirt and why every one wants the latest version of it", "video_id": "video10828", "sen_id": 225695}, {"caption": "journalists getting opinions on a basic white tee with a simple red logo", "video_id": "video10828", "sen_id": 225696}, {"caption": "a reporter is reporting about some live news", "video_id": "video10828", "sen_id": 225697}, {"caption": "different people are given microphone time to talk about a new shirt that will drop soon", "video_id": "video10828", "sen_id": 225698}, {"caption": "bearded guy in cap talking to the camera", "video_id": "video10828", "sen_id": 225699}, {"caption": "male runners are competing in a professional running competition", "video_id": "video12802", "sen_id": 225700}, {"caption": "a man in white is leading a race around a track", "video_id": "video12802", "sen_id": 225701}, {"caption": "a man wearing a white shirt racing on a track", "video_id": "video12802", "sen_id": 225702}, {"caption": "a man in a white track uniform runs on a track in front of a large crowd", "video_id": "video12802", "sen_id": 225703}, {"caption": "a man in running a track in a white running outfit", "video_id": "video12802", "sen_id": 225704}, {"caption": "a man is running on track followed by two other men", "video_id": "video12802", "sen_id": 225705}, {"caption": "a white man leading a race and two black men behring him", "video_id": "video12802", "sen_id": 225706}, {"caption": "running athelets are running on the road", "video_id": "video12802", "sen_id": 225707}, {"caption": "a men are running in the race on the ground", "video_id": "video12802", "sen_id": 225708}, {"caption": "young men run laps in a race along a track", "video_id": "video12802", "sen_id": 225709}, {"caption": "three men are running a race on a track but the white man steve jones is in the lead", "video_id": "video12802", "sen_id": 225710}, {"caption": "runners are finishing the long run in the track", "video_id": "video12802", "sen_id": 225711}, {"caption": "the man runs on the track wearing shorts and tank tops", "video_id": "video12802", "sen_id": 225712}, {"caption": "men ran on the track racing against each other", "video_id": "video12802", "sen_id": 225713}, {"caption": "steve jones defied naysayers by gaining 200 meters in ten seconds as the race wears on a fierce competitor from tanzania is closing in quickly", "video_id": "video12802", "sen_id": 225714}, {"caption": "there is a athlete running hard to finish", "video_id": "video12802", "sen_id": 225715}, {"caption": "000 mts long runner steve jones running towards the finishing point to win his gold medal", "video_id": "video12802", "sen_id": 225716}, {"caption": "the runners are running fast on the running track in the race", "video_id": "video12802", "sen_id": 225717}, {"caption": "a marathon with steve jones racing with subtitles", "video_id": "video12802", "sen_id": 225718}, {"caption": "in a sports event an athlete is running ahead of all", "video_id": "video12802", "sen_id": 225719}, {"caption": "show about our architecture of our farming fields", "video_id": "video12845", "sen_id": 225720}, {"caption": "a man explaining how farming has changed in his life", "video_id": "video12845", "sen_id": 225721}, {"caption": "two men are interviewed for a tv news magazine show", "video_id": "video12845", "sen_id": 225722}, {"caption": "a couple of middle-aged men talk about biotechnology and agriculture", "video_id": "video12845", "sen_id": 225723}, {"caption": "men talk about how weeding the fields helps with health of their farm animals", "video_id": "video12845", "sen_id": 225724}, {"caption": "farmers discuss new advances in tilling their fields", "video_id": "video12845", "sen_id": 225725}, {"caption": "in a room a man is seated and talking", "video_id": "video12845", "sen_id": 225726}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video12845", "sen_id": 225727}, {"caption": "a girl walks on grass and picks flowers a man speaks in a red room by a lamp with slanted shade", "video_id": "video12845", "sen_id": 225728}, {"caption": "two men are talking about the farming business", "video_id": "video12845", "sen_id": 225729}, {"caption": "two men explain a change in biotechnology and agriculture", "video_id": "video12845", "sen_id": 225730}, {"caption": "a man in shirt talking from his house", "video_id": "video12845", "sen_id": 225731}, {"caption": "there are short video clips and a man is being interviewed", "video_id": "video12845", "sen_id": 225732}, {"caption": "a man is talking while a kid plays on grass", "video_id": "video12845", "sen_id": 225733}, {"caption": "a old man speaking and little child walking on grass land and horse and man singing displaying on screen", "video_id": "video12845", "sen_id": 225734}, {"caption": "a guy with a double chin is talking", "video_id": "video12845", "sen_id": 225735}, {"caption": "there is a girl walking on the ground", "video_id": "video12845", "sen_id": 225736}, {"caption": "a man in the checked shirt having a conversation", "video_id": "video12845", "sen_id": 225737}, {"caption": "men talk about the new methods of farming in the modern era", "video_id": "video12845", "sen_id": 225738}, {"caption": "a man in a blue shirt is sitting in a house", "video_id": "video12845", "sen_id": 225739}, {"caption": "someone is adjusting an cell phone on a selfie stick", "video_id": "video10636", "sen_id": 225740}, {"caption": "a smart phone is attached to a selfie stick while a man is talking", "video_id": "video10636", "sen_id": 225741}, {"caption": "a man with hairy arms is using a selfie stick", "video_id": "video10636", "sen_id": 225742}, {"caption": "man in another language speaks while image of a selfie stick are shown with a cell phone attached", "video_id": "video10636", "sen_id": 225743}, {"caption": "a man is affixing a smartphone to a selfie stick", "video_id": "video10636", "sen_id": 225744}, {"caption": "a man is setting his mobile to selfie stick", "video_id": "video10636", "sen_id": 225745}, {"caption": "there is a person adjusting a phone on a selfie stick", "video_id": "video10636", "sen_id": 225746}, {"caption": "a man is just checking a tool with mobile fixed on it", "video_id": "video10636", "sen_id": 225747}, {"caption": "a man explains about the selfie stand for his smart phone", "video_id": "video10636", "sen_id": 225748}, {"caption": "someone is trying to fix mobile in the selfy stick and explaining", "video_id": "video10636", "sen_id": 225749}, {"caption": "a person is working with a selfie black colour object", "video_id": "video10636", "sen_id": 225750}, {"caption": "here the man is fixing the mobile to the camera stand", "video_id": "video10636", "sen_id": 225751}, {"caption": "camera is set on the selfie stick by a man", "video_id": "video10636", "sen_id": 225752}, {"caption": "a man is setting a mobile phone in the selfie stick", "video_id": "video10636", "sen_id": 225753}, {"caption": "a mobile and a sccissor lying and plastic bag on the screen", "video_id": "video10636", "sen_id": 225754}, {"caption": "a person is showing how to use a selfie stick", "video_id": "video10636", "sen_id": 225755}, {"caption": "a man speaking in a foreign language is holding his smart phone on a black contraption", "video_id": "video10636", "sen_id": 225756}, {"caption": "samsung mobile phone is set with a selfie stick", "video_id": "video10636", "sen_id": 225757}, {"caption": "a man demonstrates how to set up and use a selfie stick", "video_id": "video10636", "sen_id": 225758}, {"caption": "a person fit the mobile in one stand", "video_id": "video10636", "sen_id": 225759}, {"caption": "people look over a countryside while singing and discussing their hike", "video_id": "video12936", "sen_id": 225760}, {"caption": "a group of hikers going through some farm land the participants are awed by the beauty hikers awestruck by the beauty of the farmlands", "video_id": "video12936", "sen_id": 225761}, {"caption": "men take a hike in nature while one of the men sings america the beautiful", "video_id": "video12936", "sen_id": 225762}, {"caption": "a guy tries singing and being silly while out on a bright sunny hike", "video_id": "video12936", "sen_id": 225763}, {"caption": "a group of men are hiking through a field while witnessing nature's beauty", "video_id": "video12936", "sen_id": 225764}, {"caption": "a man sings america the beautiful while hiking along a dirt path on a grassy hill", "video_id": "video12936", "sen_id": 225765}, {"caption": "a group of men are talking and walking on a hiking path", "video_id": "video12936", "sen_id": 225766}, {"caption": "a group of people film themselves as they hike through a rural area", "video_id": "video12936", "sen_id": 225767}, {"caption": "a group of guys are going on a hike and enjoying", "video_id": "video12936", "sen_id": 225768}, {"caption": "a boys inside forest without shirts on body and blue t shirt man walking along with them speaking displaying on screen", "video_id": "video12936", "sen_id": 225769}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12936", "sen_id": 225770}, {"caption": "a group of people some body with topless walking on a desert area holding camera on their hands", "video_id": "video12936", "sen_id": 225771}, {"caption": "some black and white guys walking a plain lane without shirt", "video_id": "video12936", "sen_id": 225772}, {"caption": "a bunch of people are walking shirtless on a hike", "video_id": "video12936", "sen_id": 225773}, {"caption": "three or four guys is singing and having fun with the teleision person by giving answers to the interviewers", "video_id": "video12936", "sen_id": 225774}, {"caption": "men hiking with their shirts off one sings and holds the camera and videos himself and friends", "video_id": "video12936", "sen_id": 225775}, {"caption": "two boys speaking in a big land and walks", "video_id": "video12936", "sen_id": 225776}, {"caption": "some peoples are enjoying in a green field area", "video_id": "video12936", "sen_id": 225777}, {"caption": "a shirtless man and his shirtless friend walk through a field with other people behind them", "video_id": "video12936", "sen_id": 225778}, {"caption": "shirtless guys with a selfie camera walking on the field", "video_id": "video12936", "sen_id": 225779}, {"caption": "a little boy's voice is pretending to be a cat talking", "video_id": "video10673", "sen_id": 225780}, {"caption": "a very fluffy cat is chewing something for quite a while", "video_id": "video10673", "sen_id": 225781}, {"caption": "furry fluffy grey cat making funny meow sounds on a carpet", "video_id": "video10673", "sen_id": 225782}, {"caption": "a cat talking or singing in their home with it s ears down", "video_id": "video10673", "sen_id": 225783}, {"caption": "there is a cat being voiced over in a human voice", "video_id": "video10673", "sen_id": 225784}, {"caption": "a cat in a home makes a peculiar sound and looking at some one", "video_id": "video10673", "sen_id": 225785}, {"caption": "a fat cat stands in a hallway while a kid makes annoying voice over meowing noises as his mouth moves", "video_id": "video10673", "sen_id": 225786}, {"caption": "a cat is upset and is vocalizing his displeasure", "video_id": "video10673", "sen_id": 225787}, {"caption": "a cat is making a really weird noise", "video_id": "video10673", "sen_id": 225788}, {"caption": "a cat is trying to sing a song as per the owners guidance", "video_id": "video10673", "sen_id": 225789}, {"caption": "a cat is making human noises that sound like no", "video_id": "video10673", "sen_id": 225790}, {"caption": "a cat is chewing something and someone irritates it by mimicking it", "video_id": "video10673", "sen_id": 225791}, {"caption": "a brown cat that looks scared is making odd noises", "video_id": "video10673", "sen_id": 225792}, {"caption": "an odd cat makes noises that sound like the cat is talking", "video_id": "video10673", "sen_id": 225793}, {"caption": "a cat making noises as if it were traumatized at some point", "video_id": "video10673", "sen_id": 225794}, {"caption": "a cat with its hackles up sitting on a carpet and making odd noises", "video_id": "video10673", "sen_id": 225795}, {"caption": "a cat standing on a gray carpet with designs sounds like it s saying no over and over", "video_id": "video10673", "sen_id": 225796}, {"caption": "a cat sits on the floor and moves its mouth rapidly", "video_id": "video10673", "sen_id": 225797}, {"caption": "a cat making strange sounds almost sounding like a human saying no", "video_id": "video10673", "sen_id": 225798}, {"caption": "a cat is on the floor looking at something", "video_id": "video10673", "sen_id": 225799}, {"caption": "young boys in blue and black shirts singing in a choir together", "video_id": "video10448", "sen_id": 225800}, {"caption": "this is a young boys choir and the conductor is facing them the boys have black shirts on with bright blue color on the front", "video_id": "video10448", "sen_id": 225801}, {"caption": "a group of young people wearing black and blue tshirts are singing together in a choir", "video_id": "video10448", "sen_id": 225802}, {"caption": "a large chorus is going on and being conducted by a man", "video_id": "video10448", "sen_id": 225803}, {"caption": "a group of kids stand and sing at the podium", "video_id": "video10448", "sen_id": 225804}, {"caption": "a old man in blue color dress wearing and number of boys standing speaking prayer and doing practicing waving hands in hall displaying on screen", "video_id": "video10448", "sen_id": 225805}, {"caption": "a person conducts a choir of teenagers in black shirts with a blue symbol on them", "video_id": "video10448", "sen_id": 225806}, {"caption": "a choir of young men in black shirts with blue stars", "video_id": "video10448", "sen_id": 225807}, {"caption": "a choir is singing with the signals given by the music conductor", "video_id": "video10448", "sen_id": 225808}, {"caption": "an all-boys choir sings a song on stage for an audience", "video_id": "video10448", "sen_id": 225809}, {"caption": "there is a group of children playing a song", "video_id": "video10448", "sen_id": 225810}, {"caption": "a group of boys all wearing the same kind of shirt singing in a choir", "video_id": "video10448", "sen_id": 225811}, {"caption": "a teen chorus led by a conductor is singing a song in front of an audience", "video_id": "video10448", "sen_id": 225812}, {"caption": "a troop of orchestra sings together guided by a musician", "video_id": "video10448", "sen_id": 225813}, {"caption": "a choir of people is singing a song inside", "video_id": "video10448", "sen_id": 225814}, {"caption": "there is a man directing a group song", "video_id": "video10448", "sen_id": 225815}, {"caption": "a male choir director wearing black and blue directs a choir as they a sing a song", "video_id": "video10448", "sen_id": 225816}, {"caption": "women conducting a boy s choir", "video_id": "video10448", "sen_id": 225817}, {"caption": "a old man in blue color dress wearing cloth waving hand and many boys in hall practising music prayer displaying on screen", "video_id": "video10448", "sen_id": 225818}, {"caption": "a group of people are standing up in a room", "video_id": "video10448", "sen_id": 225819}, {"caption": "a few different scenes of a river in the amazon with people on a boat and animals", "video_id": "video12756", "sen_id": 225820}, {"caption": "three men in a small boat are using binoculars to look at vegetation birds and other people paddling small boats with straw canopies", "video_id": "video12756", "sen_id": 225821}, {"caption": "a group of people riding in a speedboat through the amazon river", "video_id": "video12756", "sen_id": 225822}, {"caption": "amazon river basin is being spoken about and people boating on it", "video_id": "video12756", "sen_id": 225823}, {"caption": "a group of people riding in a speedboat", "video_id": "video12756", "sen_id": 225824}, {"caption": "a male passenger on a guided boat wearing a wide-brimmed hat green safari shirt and gloves looks through binoculars at white cranes in trees", "video_id": "video12756", "sen_id": 225825}, {"caption": "a man uses binoculars to view birds as he boats up a river", "video_id": "video12756", "sen_id": 225826}, {"caption": "a group of people are exploring the amazon river", "video_id": "video12756", "sen_id": 225827}, {"caption": "a group of tourists take a cruise on the amazon in a rustic boat", "video_id": "video12756", "sen_id": 225828}, {"caption": "a man on a boat is watching the wildlife", "video_id": "video12756", "sen_id": 225829}, {"caption": "a man looking at birds through a pair of binoculars and riding down the amazon on a crowded boat", "video_id": "video12756", "sen_id": 225830}, {"caption": "riding up the amazon on a boat passing birds and other people rowing a boat", "video_id": "video12756", "sen_id": 225831}, {"caption": "a man is on a boat while adventuring the amazon river basin", "video_id": "video12756", "sen_id": 225832}, {"caption": "a man is in a boat and looking at the landscape throught a pair of binoculars", "video_id": "video12756", "sen_id": 225833}, {"caption": "several men in a boat with hats and glasses on", "video_id": "video12756", "sen_id": 225834}, {"caption": "a boat is moving in the deep sea", "video_id": "video12756", "sen_id": 225835}, {"caption": "a man is going in the boat in a lake", "video_id": "video12756", "sen_id": 225836}, {"caption": "a man is on a tour for the amazon river discussing the habitat and natural environment narriated over the boat", "video_id": "video12756", "sen_id": 225837}, {"caption": "bunch of guys on boat with safari hats looking at wild life", "video_id": "video12756", "sen_id": 225838}, {"caption": "some people are sailing on a boat", "video_id": "video12756", "sen_id": 225839}, {"caption": "a man is putting makeup onto his friend that is a girl", "video_id": "video11711", "sen_id": 225840}, {"caption": "a man and a woman are sitting laughing and talking about makeup products", "video_id": "video11711", "sen_id": 225841}, {"caption": "a young man and a young woman sit next to each other as the man recites jokes and she laughs", "video_id": "video11711", "sen_id": 225842}, {"caption": "a man and a woman discuss makeup during a christmas time video", "video_id": "video11711", "sen_id": 225843}, {"caption": "girl and guy talking about bringing powder", "video_id": "video11711", "sen_id": 225844}, {"caption": "a boy wearing glasses is talking about makeup while sitting next to his friend that is a girl", "video_id": "video11711", "sen_id": 225845}, {"caption": "two friends are enjoy talking and laughing each other", "video_id": "video11711", "sen_id": 225846}, {"caption": "a men and women is talking with eache other and laughing", "video_id": "video11711", "sen_id": 225847}, {"caption": "a girl talking with man wearing white color dress", "video_id": "video11711", "sen_id": 225848}, {"caption": "a girl and a guy talking about something in a function", "video_id": "video11711", "sen_id": 225849}, {"caption": "a guy and a girl talk about using bronzing lotionspray", "video_id": "video11711", "sen_id": 225850}, {"caption": "there is a man with his girl friend", "video_id": "video11711", "sen_id": 225851}, {"caption": "a handsome man with specs sitting near to a cute lady and crack jokes", "video_id": "video11711", "sen_id": 225852}, {"caption": "a man and woman sit and talk about products in the man s hand", "video_id": "video11711", "sen_id": 225853}, {"caption": "a man and a woman are laughing in a room", "video_id": "video11711", "sen_id": 225854}, {"caption": "there is a t-shirt man with his girlfriend", "video_id": "video11711", "sen_id": 225855}, {"caption": "people having some jokes", "video_id": "video11711", "sen_id": 225856}, {"caption": "a man and a woman are sitting in front of a christmas tree", "video_id": "video11711", "sen_id": 225857}, {"caption": "a man wearing glasses sits next to a girl while holding up tubes of products", "video_id": "video11711", "sen_id": 225858}, {"caption": "a man and woman are sitting in a room", "video_id": "video11711", "sen_id": 225859}, {"caption": "a woman sings while people run on top of cars and run in the streets", "video_id": "video11770", "sen_id": 225860}, {"caption": "a music video from a female rock artist", "video_id": "video11770", "sen_id": 225861}, {"caption": "teens throw a backpack off a building climb on cars and run through the streets", "video_id": "video11770", "sen_id": 225862}, {"caption": "a clip from a music video in new york city", "video_id": "video11770", "sen_id": 225863}, {"caption": "a man throws something off a tall building and young people rampage through a city", "video_id": "video11770", "sen_id": 225864}, {"caption": "a person is standing on a building and throwing an object from the top", "video_id": "video11770", "sen_id": 225865}, {"caption": "a blonde girl sings as several people try to set up a concert out in the streets", "video_id": "video11770", "sen_id": 225866}, {"caption": "a group of young people move down a busy street by walking on top of the cars", "video_id": "video11770", "sen_id": 225867}, {"caption": "a young man throws a back pack off the top of a roof", "video_id": "video11770", "sen_id": 225868}, {"caption": "a guy throws stuff off of a roof to help set up a concert out on the street", "video_id": "video11770", "sen_id": 225869}, {"caption": "there is a woman singing a song with someone", "video_id": "video11770", "sen_id": 225870}, {"caption": "a woman is singing a punk rock style song in a music video", "video_id": "video11770", "sen_id": 225871}, {"caption": "a people are running in the road and above the car", "video_id": "video11770", "sen_id": 225872}, {"caption": "a lady is getting ready to do an adventure", "video_id": "video11770", "sen_id": 225873}, {"caption": "a pretty lady with green colour dress is running on the top of the car", "video_id": "video11770", "sen_id": 225874}, {"caption": "a musician singing about how a man is oblivious while she throws a bag at him", "video_id": "video11770", "sen_id": 225875}, {"caption": "women singing the song and all peoples running above on the car", "video_id": "video11770", "sen_id": 225876}, {"caption": "a woman is singing the song and some incidents were shown", "video_id": "video11770", "sen_id": 225877}, {"caption": "the action of the music is on the road and from height of flats", "video_id": "video11770", "sen_id": 225878}, {"caption": "a female in a music video is singing a rock song", "video_id": "video11770", "sen_id": 225879}, {"caption": "a man sings a song in an open field surrounded by mountains", "video_id": "video12533", "sen_id": 225880}, {"caption": "a man in a vest sings a country song in a vast countryside", "video_id": "video12533", "sen_id": 225881}, {"caption": "a music video filmed in black and white with a musician in a hat and vest singing in a field", "video_id": "video12533", "sen_id": 225882}, {"caption": "a man singing a song about a girl in a field", "video_id": "video12533", "sen_id": 225883}, {"caption": "i white man in a white shirt and suspenders is singing in the mountains", "video_id": "video12533", "sen_id": 225884}, {"caption": "a women in white dress is walking and a man with a cap and white shirt is shouting", "video_id": "video12533", "sen_id": 225885}, {"caption": "a man is singing a song and a lady walking", "video_id": "video12533", "sen_id": 225886}, {"caption": "man singing christian songs in the mountains in black and white", "video_id": "video12533", "sen_id": 225887}, {"caption": "a man in tshirt and vest stands on grassy field singing with views of mountains", "video_id": "video12533", "sen_id": 225888}, {"caption": "a man is standing outside in a field by mountains singing", "video_id": "video12533", "sen_id": 225889}, {"caption": "a man in a white tshirt black vest and black hat is singing with the backdrop of the mountains", "video_id": "video12533", "sen_id": 225890}, {"caption": "a man singing in the forest", "video_id": "video12533", "sen_id": 225891}, {"caption": "in a music album a famous singer is singing in the forest with a dream of her lover", "video_id": "video12533", "sen_id": 225892}, {"caption": "a person is singing a song on a mountain place", "video_id": "video12533", "sen_id": 225893}, {"caption": "a man in sunglasses and a hat sings a song in a field", "video_id": "video12533", "sen_id": 225894}, {"caption": "a man sings in an open field that overlooks a mountain range", "video_id": "video12533", "sen_id": 225895}, {"caption": "a man wearing a fedora is singing about a woman that he likes", "video_id": "video12533", "sen_id": 225896}, {"caption": "a man sings while in an open field", "video_id": "video12533", "sen_id": 225897}, {"caption": "a man is singing a song about his love for her", "video_id": "video12533", "sen_id": 225898}, {"caption": "a man sings for a woman and beutiful mountains and landscape is shown", "video_id": "video12533", "sen_id": 225899}, {"caption": "a woman in a black shirt picks up a tennis racket and a bag", "video_id": "video11335", "sen_id": 225900}, {"caption": "a tennis announcer provides information about tennis competitors as they prepare for a match", "video_id": "video11335", "sen_id": 225901}, {"caption": "after a match tennis players go for rest", "video_id": "video11335", "sen_id": 225902}, {"caption": "a woman badminton player ready to serve a birdie", "video_id": "video11335", "sen_id": 225903}, {"caption": "a woman in a black shirt and a woman in a purple shirt play badmiton", "video_id": "video11335", "sen_id": 225904}, {"caption": "a female world champion badminton player prepares for her serve", "video_id": "video11335", "sen_id": 225905}, {"caption": "some female badminton players take a quick break before playing", "video_id": "video11335", "sen_id": 225906}, {"caption": "a women in black dress is playing a badminton match", "video_id": "video11335", "sen_id": 225907}, {"caption": "there is a black t-shirt women playing badminton", "video_id": "video11335", "sen_id": 225908}, {"caption": "two players playing badminton very interesting to watch", "video_id": "video11335", "sen_id": 225909}, {"caption": "two women play in a badmitton game in a large indoor facility", "video_id": "video11335", "sen_id": 225910}, {"caption": "a woman is playing a badminton game in a court", "video_id": "video11335", "sen_id": 225911}, {"caption": "two teams are playing lawn tennis on the ground", "video_id": "video11335", "sen_id": 225912}, {"caption": "women s singles badminton playing starts very interestingly in", "video_id": "video11335", "sen_id": 225913}, {"caption": "the player saina come back by whipping her sweat and the other player starts to beat the shuttle", "video_id": "video11335", "sen_id": 225914}, {"caption": "a badminton player is picking her bag up and then getting ready to serve the shuttle", "video_id": "video11335", "sen_id": 225915}, {"caption": "all persons are playing badminton game on the court", "video_id": "video11335", "sen_id": 225916}, {"caption": "2015 badminton saina nehwal from india vs rachanok intanon from thailond", "video_id": "video11335", "sen_id": 225917}, {"caption": "a person picking up tennis racket bag and towel while another sits it down on a table then a woman holds up a racket and ball", "video_id": "video11335", "sen_id": 225918}, {"caption": "an asian badminton player is taking her sports bag and towel to different side", "video_id": "video11335", "sen_id": 225919}, {"caption": "a group of athletes are racing on a track outdoors", "video_id": "video12477", "sen_id": 225920}, {"caption": "a group of men running on a track field", "video_id": "video12477", "sen_id": 225921}, {"caption": "athletes are sprinting towards the finish line and a man falls just short", "video_id": "video12477", "sen_id": 225922}, {"caption": "a man fall down on the runway while running in the running race", "video_id": "video12477", "sen_id": 225923}, {"caption": "as men race across a finish line one falls close to the end", "video_id": "video12477", "sen_id": 225924}, {"caption": "a running race was going on and one player was felt down in the ground", "video_id": "video12477", "sen_id": 225925}, {"caption": "there is a athlete falling down the track", "video_id": "video12477", "sen_id": 225926}, {"caption": "a track and field event where the runners are sprinting for the finish line and all cross but the last runner falls before reaching it", "video_id": "video12477", "sen_id": 225927}, {"caption": "a crowd of people are watching an athletic team that is on track running for the finish line", "video_id": "video12477", "sen_id": 225928}, {"caption": "runners on a track are coming in through the finish line but the last runner stumbles and falls just short of it", "video_id": "video12477", "sen_id": 225929}, {"caption": "the men are finishing the race but one of them is falling on the end", "video_id": "video12477", "sen_id": 225930}, {"caption": "a track race showing a close finish and at the end a man in all red falls across the finish line", "video_id": "video12477", "sen_id": 225931}, {"caption": "a group of men sprint towards the finsih line in a big race", "video_id": "video12477", "sen_id": 225932}, {"caption": "persons involved in a foot race are reviewed in slow motion the runner in lane 6 appears to have narrowly beat the runner in lane 3", "video_id": "video12477", "sen_id": 225933}, {"caption": "they are run in a ground and one person fall down", "video_id": "video12477", "sen_id": 225934}, {"caption": "the athlets are on the race while the spectators are seated", "video_id": "video12477", "sen_id": 225935}, {"caption": "the men race on the the larege track as the people watch", "video_id": "video12477", "sen_id": 225936}, {"caption": "track runners cross the finish line and the last guy stumbles ot a finish", "video_id": "video12477", "sen_id": 225937}, {"caption": "track stars run towards the finish line at high speeds", "video_id": "video12477", "sen_id": 225938}, {"caption": "some athletes are racing in a race ground and a racer fall down on the ground while racing", "video_id": "video12477", "sen_id": 225939}, {"caption": "a woman and two men riding in a car while two men on two horse ride beside them", "video_id": "video12193", "sen_id": 225940}, {"caption": "a woman sitting in a car talks to a man riding a horse beside her", "video_id": "video12193", "sen_id": 225941}, {"caption": "a group of people are going on the frontier together", "video_id": "video12193", "sen_id": 225942}, {"caption": "a man in a suit and a fancy hat rides a horse beside a moving car", "video_id": "video12193", "sen_id": 225943}, {"caption": "a scene from the movie legends of the fall where two young men are riding horses alongside an early model car", "video_id": "video12193", "sen_id": 225944}, {"caption": "men on horses ride along side a british man and woman in an antique car", "video_id": "video12193", "sen_id": 225945}, {"caption": "a man riding a horse next to a car with some passengers in it", "video_id": "video12193", "sen_id": 225946}, {"caption": "a man riding a horse next to an antique car with a woman in it holding an umbrella", "video_id": "video12193", "sen_id": 225947}, {"caption": "a group of people dressed up in suits and talking", "video_id": "video12193", "sen_id": 225948}, {"caption": "a couple of men on horses ride along side of a car out in the country", "video_id": "video12193", "sen_id": 225949}, {"caption": "a couple are in an old timey car between two men on horses", "video_id": "video12193", "sen_id": 225950}, {"caption": "two young men on horseback flirt with a female passender in an early model ford", "video_id": "video12193", "sen_id": 225951}, {"caption": "two people ride horses next to an old fashioned car driving in a field", "video_id": "video12193", "sen_id": 225952}, {"caption": "a man in a hat is riding his horse next to a car", "video_id": "video12193", "sen_id": 225953}, {"caption": "a man wearing a fedora rides a horse", "video_id": "video12193", "sen_id": 225954}, {"caption": "a couple going on a open car holding the umbrella and their guards following them in horse", "video_id": "video12193", "sen_id": 225955}, {"caption": "man on horse goes in front of car in car lady holds umbrella which is white color", "video_id": "video12193", "sen_id": 225956}, {"caption": "a man on a horse is talking to people riding in a car", "video_id": "video12193", "sen_id": 225957}, {"caption": "men on horses ride beside a woman in a car", "video_id": "video12193", "sen_id": 225958}, {"caption": "some people in hats are driving in a car", "video_id": "video12193", "sen_id": 225959}, {"caption": "a family learning how to snowboard down the slopes", "video_id": "video10238", "sen_id": 225960}, {"caption": "a young girl in a yellow coat practicing skiing", "video_id": "video10238", "sen_id": 225961}, {"caption": "assorted people go skiing and snowboarding down a snow covered hill", "video_id": "video10238", "sen_id": 225962}, {"caption": "a group of young children try to ski on a busy ski slope", "video_id": "video10238", "sen_id": 225963}, {"caption": "the camera is shaky as people on a ski slope stumble and fall", "video_id": "video10238", "sen_id": 225964}, {"caption": "people look shaky and fall on their skis and their snowboards", "video_id": "video10238", "sen_id": 225965}, {"caption": "several people on skis are falling in the snow", "video_id": "video10238", "sen_id": 225966}, {"caption": "some people are learning how to ski and snowboard in the snow", "video_id": "video10238", "sen_id": 225967}, {"caption": "a man in a yellow jacket skis slowly down a snow slope", "video_id": "video10238", "sen_id": 225968}, {"caption": "a group people outside skiing and falling down", "video_id": "video10238", "sen_id": 225969}, {"caption": "a young girl screams as she skis down a snowy mountain", "video_id": "video10238", "sen_id": 225970}, {"caption": "there s a family and they are on a mountain with snow and they re skiing", "video_id": "video10238", "sen_id": 225971}, {"caption": "beginning skiers fall down in several different ways on a small hill", "video_id": "video10238", "sen_id": 225972}, {"caption": "there are people recording themselves skiing at a ski resort", "video_id": "video10238", "sen_id": 225973}, {"caption": "person is skiing on the mountain filled with snow", "video_id": "video10238", "sen_id": 225974}, {"caption": "people are enjoying on snow with skating and playing", "video_id": "video10238", "sen_id": 225975}, {"caption": "a man fall down while skating on the snow", "video_id": "video10238", "sen_id": 225976}, {"caption": "a skier falling down in the snow while learnig to ski", "video_id": "video10238", "sen_id": 225977}, {"caption": "a man is recording people falling while skiing and snowboarding", "video_id": "video10238", "sen_id": 225978}, {"caption": "some people are playing around in the snow", "video_id": "video10238", "sen_id": 225979}, {"caption": "mariah carey sings a song of love and longing", "video_id": "video11205", "sen_id": 225980}, {"caption": "a woman sings in a clad outfit as images of a wedding are displayed and a groom stares into the camera", "video_id": "video11205", "sen_id": 225981}, {"caption": "a woman sits around in a sexy dress while some guys give serious glances", "video_id": "video11205", "sen_id": 225982}, {"caption": "a bride walking down an aisle then a man and a woman sitting in different places", "video_id": "video11205", "sen_id": 225983}, {"caption": "mariah carey in a music video of hers", "video_id": "video11205", "sen_id": 225984}, {"caption": "a woman singing about a wedding of another man and woman", "video_id": "video11205", "sen_id": 225985}, {"caption": "a lady singer singing the song for marriage of a girl and also for one of the man who is watching around", "video_id": "video11205", "sen_id": 225986}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video11205", "sen_id": 225987}, {"caption": "the modelling girls in the hotel room they are sing and attract the peoples", "video_id": "video11205", "sen_id": 225988}, {"caption": "a women is making poses sitting on stool and dancing near a door", "video_id": "video11205", "sen_id": 225989}, {"caption": "a woman is singing the album song and moving her body to the beat of the song", "video_id": "video11205", "sen_id": 225990}, {"caption": "maria carey is singing and dancing for her music video", "video_id": "video11205", "sen_id": 225991}, {"caption": "a pair of lovers were singing a romance song", "video_id": "video11205", "sen_id": 225992}, {"caption": "a lady singing a song and dancing with sexy look", "video_id": "video11205", "sen_id": 225993}, {"caption": "the woman sings and dances as the man watches her", "video_id": "video11205", "sen_id": 225994}, {"caption": "a women is happily singing while a man in black coat watches", "video_id": "video11205", "sen_id": 225995}, {"caption": "a women sings song in english", "video_id": "video11205", "sen_id": 225996}, {"caption": "a bride is singing a song and a groom is sitting", "video_id": "video11205", "sen_id": 225997}, {"caption": "a sexy lady dances with joy for a song", "video_id": "video11205", "sen_id": 225998}, {"caption": "a woman with a wedding dress is singing", "video_id": "video11205", "sen_id": 225999}, {"caption": "a man talking about women's fashion from 1910", "video_id": "video12705", "sen_id": 226000}, {"caption": "a man talking about a woman in 1910 being dressed beautifully but saying someone back in 1910 might not have the same opinion", "video_id": "video12705", "sen_id": 226001}, {"caption": "a man with light colored eyes and a dark shirt talks about fashion", "video_id": "video12705", "sen_id": 226002}, {"caption": "a man talking about photos from 1910 and how they were dressed", "video_id": "video12705", "sen_id": 226003}, {"caption": "a man talks about clothing over time it is probably a documentary", "video_id": "video12705", "sen_id": 226004}, {"caption": "a man in black with blue eyes is talking", "video_id": "video12705", "sen_id": 226005}, {"caption": "a man in a black shirt discusses his methods for completing a task", "video_id": "video12705", "sen_id": 226006}, {"caption": "a man in a black shirt discusses people's opinions of fashion trends", "video_id": "video12705", "sen_id": 226007}, {"caption": "a man is describing how peoples attitudes in clothing change over the years", "video_id": "video12705", "sen_id": 226008}, {"caption": "a man in a black shirt is describing a photograph of a woman from the 1900s", "video_id": "video12705", "sen_id": 226009}, {"caption": "a man talks about clothes and styles from back in the day", "video_id": "video12705", "sen_id": 226010}, {"caption": "a close up of a man's face as he is talking", "video_id": "video12705", "sen_id": 226011}, {"caption": "a white man in a black shirt with blue eyes is talking to the camera", "video_id": "video12705", "sen_id": 226012}, {"caption": "a man in a black shirt is talking about a woman in a photograph from the 1900s", "video_id": "video12705", "sen_id": 226013}, {"caption": "a man talks about the history of women's fashions", "video_id": "video12705", "sen_id": 226014}, {"caption": "there is a man with blue eyes talking from a room", "video_id": "video12705", "sen_id": 226015}, {"caption": "fashion expert offers his opinion on the current trends of fashion", "video_id": "video12705", "sen_id": 226016}, {"caption": "a man in black shirt talking about his experience on an issue", "video_id": "video12705", "sen_id": 226017}, {"caption": "a man talks about fashion differences by generations", "video_id": "video12705", "sen_id": 226018}, {"caption": "an ambulance is driving around as a man talks", "video_id": "video12705", "sen_id": 226019}, {"caption": "a man spray painting and dancing to music", "video_id": "video11443", "sen_id": 226020}, {"caption": "a graffiti artist works on a painting on a large glass window", "video_id": "video11443", "sen_id": 226021}, {"caption": "a grizzled-looking man paints the word variety on a sheet of glass then begins to dance to lively music with provocative lyrics--while semi-seated on a rolling stool", "video_id": "video11443", "sen_id": 226022}, {"caption": "an older man is singing while spraypainting graffiti inside a glass box", "video_id": "video11443", "sen_id": 226023}, {"caption": "a graffiti artist puts finishing touches on thick and round letters sprayed on a glass panel in yellow and red outlined in black and on a blue background", "video_id": "video11443", "sen_id": 226024}, {"caption": "a crazy looking black man dancing in a chair", "video_id": "video11443", "sen_id": 226025}, {"caption": "a man with a beard is spray painting graffiti on a wall", "video_id": "video11443", "sen_id": 226026}, {"caption": "a gentleman is performing a song about the vietnam war", "video_id": "video11443", "sen_id": 226027}, {"caption": "a man is graffitting a wall and there is music in the background", "video_id": "video11443", "sen_id": 226028}, {"caption": "a graffiti artist sings and dances while he paints", "video_id": "video11443", "sen_id": 226029}, {"caption": "a man paints graffiti on a glass wall and dances in a chair", "video_id": "video11443", "sen_id": 226030}, {"caption": "a man is spray painting and then starts dancing in his chair", "video_id": "video11443", "sen_id": 226031}, {"caption": "there is a man spray painting and then dancing on a chair", "video_id": "video11443", "sen_id": 226032}, {"caption": "an african american comedian and singer is performing a stand up show", "video_id": "video11443", "sen_id": 226033}, {"caption": "a black man is spraying graffitti on a wall and dancing", "video_id": "video11443", "sen_id": 226034}, {"caption": "a man is drawing a picture on the wall and he is dancing around", "video_id": "video11443", "sen_id": 226035}, {"caption": "a guy dancing and drawing colorful", "video_id": "video11443", "sen_id": 226036}, {"caption": "first see a man is drawing but he is dancing", "video_id": "video11443", "sen_id": 226037}, {"caption": "a man is coloring some words on a glass after that he is dancing", "video_id": "video11443", "sen_id": 226038}, {"caption": "a black man spray paints graffiti on a glass window", "video_id": "video11443", "sen_id": 226039}, {"caption": "a bunch of arms holding up garden tools as weapons", "video_id": "video11199", "sen_id": 226040}, {"caption": "greek philosophers are shown with their historical precedence", "video_id": "video11199", "sen_id": 226041}, {"caption": "a review of socrates is shown in the presentation", "video_id": "video11199", "sen_id": 226042}, {"caption": "a man gives a lecture on various people related to ancient greece", "video_id": "video11199", "sen_id": 226043}, {"caption": "a man who is providing a history lesson with animated characters", "video_id": "video11199", "sen_id": 226044}, {"caption": "its a animated diagarm drawing about all things", "video_id": "video11199", "sen_id": 226045}, {"caption": "a cartoon depiction is showing hands angrily raising sharp knives", "video_id": "video11199", "sen_id": 226046}, {"caption": "hands are raised in the air hands holding knives are raised in the air sophocles are shown", "video_id": "video11199", "sen_id": 226047}, {"caption": "some one is watching a animation film or serial on screen", "video_id": "video11199", "sen_id": 226048}, {"caption": "a historian reviews the ancient greek legacies of socrates and sophocles", "video_id": "video11199", "sen_id": 226049}, {"caption": "there is a man thinking and watching something", "video_id": "video11199", "sen_id": 226050}, {"caption": " some bloodied and some holding bloody swords or forks are raised upward against orange flames moving on a red background", "video_id": "video11199", "sen_id": 226051}, {"caption": "many weapons and hands are raised then a statue with red hair", "video_id": "video11199", "sen_id": 226052}, {"caption": "some one is telling about a community which kills men and make salves to women and children", "video_id": "video11199", "sen_id": 226053}, {"caption": "many hands raising their hands with cutting equipment and socretes and sophocles drawing shown", "video_id": "video11199", "sen_id": 226054}, {"caption": "they killed all the men and enslaved all the women and children", "video_id": "video11199", "sen_id": 226055}, {"caption": "a man is talking about ancient greece while informational graphics are displayed", "video_id": "video11199", "sen_id": 226056}, {"caption": "men s arms are raised in the air surrounded by swords demonstrating a ancient battle", "video_id": "video11199", "sen_id": 226057}, {"caption": "a guy speaking about sophocles and socrates and the wars that time", "video_id": "video11199", "sen_id": 226058}, {"caption": "a man in a red beard is on a tv show", "video_id": "video11199", "sen_id": 226059}, {"caption": "a man in a car talk about its cloth seats", "video_id": "video10331", "sen_id": 226060}, {"caption": "a man is talking about the interior of the car", "video_id": "video10331", "sen_id": 226061}, {"caption": "a man sits in a red car discussing it's cloth seats", "video_id": "video10331", "sen_id": 226062}, {"caption": "a man discusses the type of cloth seats available in the vw gti", "video_id": "video10331", "sen_id": 226063}, {"caption": "a casually-dressed man sits in the front passenger seat of a red car and admiringly touches the gray cloth covering the driver's seat", "video_id": "video10331", "sen_id": 226064}, {"caption": "a man talks to the camera as he sits in the passenger seat of a red car", "video_id": "video10331", "sen_id": 226065}, {"caption": "a man describes a car as he gets ready to give it a test drive", "video_id": "video10331", "sen_id": 226066}, {"caption": "a tall man with dark hair in a black shirt and jeans is talking in a red car", "video_id": "video10331", "sen_id": 226067}, {"caption": "a man in a black shirt is speaking in front of a red car and then inside of it", "video_id": "video10331", "sen_id": 226068}, {"caption": "a man is discussing and reviewing a car he's inside of", "video_id": "video10331", "sen_id": 226069}, {"caption": "a man is sitting in an automobile talking about the interior", "video_id": "video10331", "sen_id": 226070}, {"caption": "a man in a red car talking about driving", "video_id": "video10331", "sen_id": 226071}, {"caption": "a man in a red car speaking of the inside of it", "video_id": "video10331", "sen_id": 226072}, {"caption": "a man explains something about his red color car", "video_id": "video10331", "sen_id": 226073}, {"caption": "a man explaining about a new red color car", "video_id": "video10331", "sen_id": 226074}, {"caption": "a man is talking about a car as he sits", "video_id": "video10331", "sen_id": 226075}, {"caption": "there is a black shirt man talking inside the car", "video_id": "video10331", "sen_id": 226076}, {"caption": "a man seated inside a car explaining more about the seat in the car", "video_id": "video10331", "sen_id": 226077}, {"caption": "red car looks beautiful the person sit in the driver seat and then he explains about the parts", "video_id": "video10331", "sen_id": 226078}, {"caption": "a red color car and man in black dress sitting inside car speaking about topic car", "video_id": "video10331", "sen_id": 226079}, {"caption": "a man carrying a surfboard walks past bees and down to a sandy beach", "video_id": "video10526", "sen_id": 226080}, {"caption": "a man with a surfboard walks past a cluster of bees and ends up on a beach ready to go surfing", "video_id": "video10526", "sen_id": 226081}, {"caption": "a man is ignoring bees in order to go surfing on the beach", "video_id": "video10526", "sen_id": 226082}, {"caption": "a man is walking outside a house with a surfboard while the screen switches to a swarm of bees", "video_id": "video10526", "sen_id": 226083}, {"caption": "a man walking with a surf board down to the beach", "video_id": "video10526", "sen_id": 226084}, {"caption": "a bunch of bees buzzing around and a surfer walking around with his surfboard", "video_id": "video10526", "sen_id": 226085}, {"caption": "there are lot of cockroaches in the corner and a man is walking towards the sea", "video_id": "video10526", "sen_id": 226086}, {"caption": "men walking from the house with skating board and walking towards to the beach", "video_id": "video10526", "sen_id": 226087}, {"caption": "someone is walking with a water boat towards the sea", "video_id": "video10526", "sen_id": 226088}, {"caption": "a person is walking by carrying the yatch on hand towards the sea", "video_id": "video10526", "sen_id": 226089}, {"caption": "there is a man walking towards the beach", "video_id": "video10526", "sen_id": 226090}, {"caption": "a boy with a surfboard is climbing over a fence and is heading to the beach he s wearing a black pant", "video_id": "video10526", "sen_id": 226091}, {"caption": "a man walking past a group of bees with a surfboard towards the beach", "video_id": "video10526", "sen_id": 226092}, {"caption": "a man walks past a shack in rural area and hops over fence to secluded beach", "video_id": "video10526", "sen_id": 226093}, {"caption": "a man is carrying a deer in hawaii outside", "video_id": "video10526", "sen_id": 226094}, {"caption": "a man is carrying a surfboard and walking to a garage where bees are swarming", "video_id": "video10526", "sen_id": 226095}, {"caption": "bees are flying around and a boy with a surfboard is going to the beach", "video_id": "video10526", "sen_id": 226096}, {"caption": "many honey bees are shown then man has surfing board in hand", "video_id": "video10526", "sen_id": 226097}, {"caption": "a man walks past a shack with surfboard in hand and hops fence to a uninhabited beach", "video_id": "video10526", "sen_id": 226098}, {"caption": "a view of some mountains is being shown", "video_id": "video10526", "sen_id": 226099}, {"caption": "smart screens for handheld devices are described in a voiceover", "video_id": "video11119", "sen_id": 226100}, {"caption": "a phone screen protector that has been designed by an engineer to be cool to the touch and scratch resistant", "video_id": "video11119", "sen_id": 226101}, {"caption": "a man talking about smart material such as an iphone case", "video_id": "video11119", "sen_id": 226102}, {"caption": "several pieces of the latest smart materials are being shown such as scratch resistant phone screens", "video_id": "video11119", "sen_id": 226103}, {"caption": "the components of a smart phone are displayed and explained", "video_id": "video11119", "sen_id": 226104}, {"caption": "a man is talking about the clear phone case", "video_id": "video11119", "sen_id": 226105}, {"caption": "a report is made regarding the smart material and it is designed by the engineers", "video_id": "video11119", "sen_id": 226106}, {"caption": "a man displaying a cover for a cell phone screen", "video_id": "video11119", "sen_id": 226107}, {"caption": "guy talking about the make of a mobile phone", "video_id": "video11119", "sen_id": 226108}, {"caption": "clear plastic cases for a iphone smart phone", "video_id": "video11119", "sen_id": 226109}, {"caption": "a transparent sheet is used to cover the mobile screen", "video_id": "video11119", "sen_id": 226110}, {"caption": "some one showing the advertisement of new mobiles", "video_id": "video11119", "sen_id": 226111}, {"caption": "a mobile phone is kept on the table", "video_id": "video11119", "sen_id": 226112}, {"caption": "the apple tampered glass is tested for apple mobile", "video_id": "video11119", "sen_id": 226113}, {"caption": "a man in laboratory coat and glasses holds up a clear plastic material for display", "video_id": "video11119", "sen_id": 226114}, {"caption": "a man with glasses is speaking about something", "video_id": "video11119", "sen_id": 226115}, {"caption": "a mobile phone with simple methods to use", "video_id": "video11119", "sen_id": 226116}, {"caption": "a showcase of smart materials describing the characteristics that make them useful", "video_id": "video11119", "sen_id": 226117}, {"caption": "this video shows a number of different cell phone screen protectors or screens", "video_id": "video11119", "sen_id": 226118}, {"caption": "a engineered protective thin and strong glass with impervious to scratching", "video_id": "video11119", "sen_id": 226119}, {"caption": "a man is interviewed while he is driving down a road in a truck", "video_id": "video10954", "sen_id": 226120}, {"caption": "a man is talking about the time he was pulled over by a police officer who assumed he was going to purchase drugs due to the large amount of money in his trunk", "video_id": "video10954", "sen_id": 226121}, {"caption": "a short haired man giving a story about himself", "video_id": "video10954", "sen_id": 226122}, {"caption": "a man speaks to the camera during an interview before he is seen driving down the road and posed with a dog and money", "video_id": "video10954", "sen_id": 226123}, {"caption": "matt lee talking about a canine police officer", "video_id": "video10954", "sen_id": 226124}, {"caption": "man talking about his experience with a bad police officer", "video_id": "video10954", "sen_id": 226125}, {"caption": "a man is being interviewed about a traffic stop and is shown driving his black pickup truck when a picture of the police officer is briefly shown", "video_id": "video10954", "sen_id": 226126}, {"caption": "a man in a black tee shirt and the rearview mirror of a truck and a man with a dog", "video_id": "video10954", "sen_id": 226127}, {"caption": "a man wearing a v-neck black tee shirt tells a story in a tidy green living room with gray lounging chairs bright windows and a tv set in the corner", "video_id": "video10954", "sen_id": 226128}, {"caption": "there is a man in a black shirt talking in a room followed by the man driving in a black truck on a highway and a sheriff with his dog and some cash", "video_id": "video10954", "sen_id": 226129}, {"caption": "a man describes how he was stopped by the cops and searched by a canine for drugs which were not found but he had two thousand four hundred dollars which the cops confiscated claiming he had the money on him to purchase drugs", "video_id": "video10954", "sen_id": 226130}, {"caption": "a man with dark clothes explains that a police officer confiscated his money concluding that the money was for drugs", "video_id": "video10954", "sen_id": 226131}, {"caption": "a men in black top is talking and shaking her hands", "video_id": "video10954", "sen_id": 226132}, {"caption": "a man is telling about how he was caught by the police while he was travelling from michigan to california carrying about 2400 dollars gave by his dad", "video_id": "video10954", "sen_id": 226133}, {"caption": "a man in a black t-shirt talks about how a cop shook him down", "video_id": "video10954", "sen_id": 226134}, {"caption": "thre is a men in black driving a car on roads", "video_id": "video10954", "sen_id": 226135}, {"caption": "a man in a black shirt is sitting in a living room speaking about an encounter with a police officer", "video_id": "video10954", "sen_id": 226136}, {"caption": "a man talking about the car and driving the car and the dog", "video_id": "video10954", "sen_id": 226137}, {"caption": "a person is being interviewed by a tv personnel and the person is saying about some enquiries to the media persons", "video_id": "video10954", "sen_id": 226138}, {"caption": "a truck is driving down a lonely road", "video_id": "video10954", "sen_id": 226139}, {"caption": "postcards of various party scenes are being flashed", "video_id": "video12313", "sen_id": 226140}, {"caption": "slideshow video showing a woman in her social settings", "video_id": "video12313", "sen_id": 226141}, {"caption": "a woman wearing only a towel looks out from a balcony", "video_id": "video12313", "sen_id": 226142}, {"caption": "a woman's holiday photos flash on the screen along to music", "video_id": "video12313", "sen_id": 226143}, {"caption": "the pictures of the modern world and the model girls are nice", "video_id": "video12313", "sen_id": 226144}, {"caption": "various photos of people partying and enjoying themselves while on vacation", "video_id": "video12313", "sen_id": 226145}, {"caption": "pictures of different people doing different types of activities", "video_id": "video12313", "sen_id": 226146}, {"caption": "digital postcards show various people in different areas of the world", "video_id": "video12313", "sen_id": 226147}, {"caption": "several pictures and videos depicting the same woman in various locations indoors and outdoors", "video_id": "video12313", "sen_id": 226148}, {"caption": "a different photos and a videos are displaying", "video_id": "video12313", "sen_id": 226149}, {"caption": "a girl publish his modern photos by the software", "video_id": "video12313", "sen_id": 226150}, {"caption": "there is a woman posing for a photo with towel", "video_id": "video12313", "sen_id": 226151}, {"caption": "a young woman with dark hair looks out over her balcony", "video_id": "video12313", "sen_id": 226152}, {"caption": "multiple pictures of women in dresses and other clothing", "video_id": "video12313", "sen_id": 226153}, {"caption": "a teenage girl is dancing in a club wearing a small black dress", "video_id": "video12313", "sen_id": 226154}, {"caption": "a woman is standing on a balcony in china", "video_id": "video12313", "sen_id": 226155}, {"caption": "there is a woman watching to the street from her home", "video_id": "video12313", "sen_id": 226156}, {"caption": "the photo collage depicts girls and people and the beach among other images", "video_id": "video12313", "sen_id": 226157}, {"caption": "a woman doing many activities presented as a photo album", "video_id": "video12313", "sen_id": 226158}, {"caption": "there are pictures of a person in different places having fun", "video_id": "video12313", "sen_id": 226159}, {"caption": "woman in a pink and white shirt preparing a dish in a kitchen", "video_id": "video11813", "sen_id": 226160}, {"caption": "a woman zests a lemon and adds the peel to a yellow bowl sitting on a wooden cutting board", "video_id": "video11813", "sen_id": 226161}, {"caption": "a girl is cooking and greating lemon for her meat", "video_id": "video11813", "sen_id": 226162}, {"caption": "a lady wearing a striped shirt greats lemon zest into an orange bowl", "video_id": "video11813", "sen_id": 226163}, {"caption": "a young woman mixes lemon zest into various other ingredients", "video_id": "video11813", "sen_id": 226164}, {"caption": "there is a woman making a dish with fruits", "video_id": "video11813", "sen_id": 226165}, {"caption": "a woman is showing which ingredients go well with lamb", "video_id": "video11813", "sen_id": 226166}, {"caption": "a woman is grating a lemon to use as an ingredient in the lamb dish she is preparing", "video_id": "video11813", "sen_id": 226167}, {"caption": "a woman is scraping lemon zest for the mariande", "video_id": "video11813", "sen_id": 226168}, {"caption": "a woman in the kitchen making a marinade for a lamb she is about to cook", "video_id": "video11813", "sen_id": 226169}, {"caption": "a woman grinds lemon zest onto an orange plate", "video_id": "video11813", "sen_id": 226170}, {"caption": "a woman showing how to cook in a studio kitchen", "video_id": "video11813", "sen_id": 226171}, {"caption": "a woman zesting a lemon over an orange bowl", "video_id": "video11813", "sen_id": 226172}, {"caption": "a woman puts together seasonings including lemon zest for a lamb dish", "video_id": "video11813", "sen_id": 226173}, {"caption": "a woman is zesting lemon for her marinade she is making lamb dish she has pink on she is in a kitchen", "video_id": "video11813", "sen_id": 226174}, {"caption": "a lady wearing a striped shirt is shaving a lemon peel in order to obtain the zest", "video_id": "video11813", "sen_id": 226175}, {"caption": "a woman is zesting a lemon while she instructs", "video_id": "video11813", "sen_id": 226176}, {"caption": "a woman grating some fruit and cooking food", "video_id": "video11813", "sen_id": 226177}, {"caption": "a girl in white dress an a bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11813", "sen_id": 226178}, {"caption": "a woman in a kitchen is making some food", "video_id": "video11813", "sen_id": 226179}, {"caption": "ted talk explaining military situation awareness rooms and how it changed intelligence", "video_id": "video12776", "sen_id": 226180}, {"caption": "a man is giving a speech on a stage about iraq", "video_id": "video12776", "sen_id": 226181}, {"caption": "a speaker details how a military unit captured personnel records from the enemy", "video_id": "video12776", "sen_id": 226182}, {"caption": "a man standing up giving a public speech", "video_id": "video12776", "sen_id": 226183}, {"caption": "a man gives a lecture on his experiences in the army and in battle", "video_id": "video12776", "sen_id": 226184}, {"caption": "a man on a stage wearing a head set microphone gives a speech", "video_id": "video12776", "sen_id": 226185}, {"caption": "a man is speaking about a means to capture personnel records to identify those bringing foreign fighters into iraq in 2007", "video_id": "video12776", "sen_id": 226186}, {"caption": "four military men sit down next to each other a man speaks to an audience", "video_id": "video12776", "sen_id": 226187}, {"caption": "guy in formal dress giving presentation to a group of people", "video_id": "video12776", "sen_id": 226188}, {"caption": "a man in a red shirt is on stage talking to an audience", "video_id": "video12776", "sen_id": 226189}, {"caption": "a man talks about how army men work together", "video_id": "video12776", "sen_id": 226190}, {"caption": "a man standing on stage discussing military issues and it also showing army men sitting in chairs", "video_id": "video12776", "sen_id": 226191}, {"caption": "a soldier explains an exercise they have done earlier to avail of some personal records", "video_id": "video12776", "sen_id": 226192}, {"caption": "men in uniforms looking at computer screens then a man in a red shirt speaking on a stage", "video_id": "video12776", "sen_id": 226193}, {"caption": "a man in a red shirt is speaking to people", "video_id": "video12776", "sen_id": 226194}, {"caption": "four army man sitting and a guy talking about them", "video_id": "video12776", "sen_id": 226195}, {"caption": "one old man is talk something about in stage", "video_id": "video12776", "sen_id": 226196}, {"caption": "people in military dress sits in the chair and looks into something seriously", "video_id": "video12776", "sen_id": 226197}, {"caption": "a middle aged man in red shirt is talking about something and the audience keenly hearing it", "video_id": "video12776", "sen_id": 226198}, {"caption": "a woman with a mic is talking to an audience", "video_id": "video12776", "sen_id": 226199}, {"caption": "a man in a red shirt is being interviewed", "video_id": "video11942", "sen_id": 226200}, {"caption": "in a tv studio two men discuss technology products", "video_id": "video11942", "sen_id": 226201}, {"caption": "a man is talking about his online business and how to go about ordering phone cases on his website", "video_id": "video11942", "sen_id": 226202}, {"caption": "a brunette man wearing glasses and a red shirt describes website wwwcom while being interviewed", "video_id": "video11942", "sen_id": 226203}, {"caption": "a man in a black shirt is interviewing a man in a red shirt about slimport", "video_id": "video11942", "sen_id": 226204}, {"caption": "a reporter is interviewing a man about the products from slim port connect", "video_id": "video11942", "sen_id": 226205}, {"caption": "a person with a orange shirt being interviewed about a website by a reporter", "video_id": "video11942", "sen_id": 226206}, {"caption": "old bald guy in black shirt taking interviewing guy in red shirt", "video_id": "video11942", "sen_id": 226207}, {"caption": "a man describes a website for gaming and work that he developed", "video_id": "video11942", "sen_id": 226208}, {"caption": "two men discussing the website slimportconnectcom and one man is holding the microphone", "video_id": "video11942", "sen_id": 226209}, {"caption": "man with red shirt speaking about a webpage about phone", "video_id": "video11942", "sen_id": 226210}, {"caption": "a man with a mic is interviewing a person", "video_id": "video11942", "sen_id": 226211}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video11942", "sen_id": 226212}, {"caption": "a large bald man is interviewing a man wearing a red shirt", "video_id": "video11942", "sen_id": 226213}, {"caption": "person holding mike wear the black dress then he talks to the person in red dress about the slimport conect", "video_id": "video11942", "sen_id": 226214}, {"caption": "a bald old man wearing a black turtle neck interviews a man wearing a red collared shirt and wearing glasses with a microphone", "video_id": "video11942", "sen_id": 226215}, {"caption": "a man wearing red color dressed talking with another man who is on black color dressed having mike", "video_id": "video11942", "sen_id": 226216}, {"caption": " slim port connect com web for all apps", "video_id": "video11942", "sen_id": 226217}, {"caption": "a man in red is talking into a microphone about used cases and accessories for a phone", "video_id": "video11942", "sen_id": 226218}, {"caption": "a gentleman with black dress is interviewing about guy about something", "video_id": "video11942", "sen_id": 226219}, {"caption": "a woman telling where she got every piece of her outfit", "video_id": "video10188", "sen_id": 226220}, {"caption": "a woman has a photograph of a popular performer and copies the expensive celebrity look with a similar double breasted red jacket leopard scarf jeans and brown boots", "video_id": "video10188", "sen_id": 226221}, {"caption": "a girl on the video is speaking about different clothing pieces at affordable prices", "video_id": "video10188", "sen_id": 226222}, {"caption": "a woman describes all of the different pieces of an outfit she purchased", "video_id": "video10188", "sen_id": 226223}, {"caption": "a woman is talking about her clothing and accessories which consist of a white tank top a leopard print scarf from target dark wash skinny jeans from american eagle and brown boots from forever 21 and how she feels this outfit is a fun and classy look", "video_id": "video10188", "sen_id": 226224}, {"caption": "explanation of how a girl assembled her outfit tips for making a fun look simply and inexpensively", "video_id": "video10188", "sen_id": 226225}, {"caption": "a woman describes her outfit ensemble and details the retailers from which she bought each item", "video_id": "video10188", "sen_id": 226226}, {"caption": "a woman with a red shirt had a leopard print scarf that she wear with boots", "video_id": "video10188", "sen_id": 226227}, {"caption": "a woman is speaking about a fashion of a dress", "video_id": "video10188", "sen_id": 226228}, {"caption": "a person is showing photo of sexy brunette on the screen", "video_id": "video10188", "sen_id": 226229}, {"caption": "a young women wearing a fashionable dress and shoes", "video_id": "video10188", "sen_id": 226230}, {"caption": "women in red does fashion with the clothes", "video_id": "video10188", "sen_id": 226231}, {"caption": "this secssion is reflect on the diffrent girls are presenting on their variety red top dress", "video_id": "video10188", "sen_id": 226232}, {"caption": "a woman is talking a about a fashion of a dress", "video_id": "video10188", "sen_id": 226233}, {"caption": "sexy blonde wearing fashionable outfit with sexy shoes", "video_id": "video10188", "sen_id": 226234}, {"caption": "a women in red jacket walking out from a hall", "video_id": "video10188", "sen_id": 226235}, {"caption": "a woman poses with amazing fashions of dress", "video_id": "video10188", "sen_id": 226236}, {"caption": "someone describing her fashion purchases from various department stores", "video_id": "video10188", "sen_id": 226237}, {"caption": "lady speaking about leopard scarf and light wash jeans and combining them to an outfit", "video_id": "video10188", "sen_id": 226238}, {"caption": "a women wearing red jacket and tiger print scarf is posing for pictures", "video_id": "video10188", "sen_id": 226239}, {"caption": "a dark haired girl is blind folded and putting makeup on another girl", "video_id": "video11200", "sen_id": 226240}, {"caption": "two women are sitting next to each other and one is blindfolded", "video_id": "video11200", "sen_id": 226241}, {"caption": "two girls are playing with glitter and blinds with white bands", "video_id": "video11200", "sen_id": 226242}, {"caption": "a woman fails at attempts to uncap and use a marker while blindfolded", "video_id": "video11200", "sen_id": 226243}, {"caption": "a woman tries to apply makeup on her friend while blindfolded", "video_id": "video11200", "sen_id": 226244}, {"caption": "a blindfolded woman putting nail polish on another woman's face", "video_id": "video11200", "sen_id": 226245}, {"caption": "a young girl attempts to do makeup on another girl while blindfolded", "video_id": "video11200", "sen_id": 226246}, {"caption": "a young girl attempts to do makeup on another girl while blindfolded", "video_id": "video11200", "sen_id": 226247}, {"caption": "two girls are playing with make up and one is blindly applying red to the other's hand", "video_id": "video11200", "sen_id": 226248}, {"caption": "two young women apply makeup to themselves with blindfolds on", "video_id": "video11200", "sen_id": 226249}, {"caption": "a blindfolded woman with long hair tries to apply eye makeup with a small brush on another woman who has red gray and purple cosmetics smeared around her eyes forehead and mouth", "video_id": "video11200", "sen_id": 226250}, {"caption": "there is a woman doing something with hidden eyes", "video_id": "video11200", "sen_id": 226251}, {"caption": "a blind folded woman is attempting to place makeup on another woman", "video_id": "video11200", "sen_id": 226252}, {"caption": "a woman is blind folded and is trying to apply make-up on another woman", "video_id": "video11200", "sen_id": 226253}, {"caption": "a woman in a room is blind folded", "video_id": "video11200", "sen_id": 226254}, {"caption": "a woman with a blind fold on is putting makeup on another woman", "video_id": "video11200", "sen_id": 226255}, {"caption": "a girl tied her eyes with cloth and holds the hand of other and making a make up", "video_id": "video11200", "sen_id": 226256}, {"caption": "a lady closed her eyes is doing some make up of another lady", "video_id": "video11200", "sen_id": 226257}, {"caption": "a girl tries to put make up on her friend while blindfolded", "video_id": "video11200", "sen_id": 226258}, {"caption": "a woman with a blind fold is holding a thing", "video_id": "video11200", "sen_id": 226259}, {"caption": "a man is standing behind a podium giving a presentation", "video_id": "video10942", "sen_id": 226260}, {"caption": "a man is giving a presentation to a group of people at a show", "video_id": "video10942", "sen_id": 226261}, {"caption": "a man is standing at a podium speaking to some people with cameras", "video_id": "video10942", "sen_id": 226262}, {"caption": "a white man in a checker shirt standing at an info center", "video_id": "video10942", "sen_id": 226263}, {"caption": "a man in a purple and black shirt is standing at a podium talking to a crowd of people", "video_id": "video10942", "sen_id": 226264}, {"caption": "a guy with glasses gives a presentation in small of a small crowd", "video_id": "video10942", "sen_id": 226265}, {"caption": "a guy in checks shirt and spectacles is saying something to the people gathered", "video_id": "video10942", "sen_id": 226266}, {"caption": "a man in a purple plaid shirt is speaking about drawings", "video_id": "video10942", "sen_id": 226267}, {"caption": "a man looking a laptop screen and talking", "video_id": "video10942", "sen_id": 226268}, {"caption": "a man wearing specs talking about something to media", "video_id": "video10942", "sen_id": 226269}, {"caption": "a person keeps explaining in a public place where people keeps wondering", "video_id": "video10942", "sen_id": 226270}, {"caption": "a man in check shirt talking in a studio", "video_id": "video10942", "sen_id": 226271}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video10942", "sen_id": 226272}, {"caption": "a man standing near the lecture board having display of screen giving lecture to the people", "video_id": "video10942", "sen_id": 226273}, {"caption": "a guy in a plaid shirt is talking about something", "video_id": "video10942", "sen_id": 226274}, {"caption": "there is a check shirt man talking to his co-workers", "video_id": "video10942", "sen_id": 226275}, {"caption": "a man with eye glasses talking while standing in front of a monitor and hes crew looking at him", "video_id": "video10942", "sen_id": 226276}, {"caption": "one boy talks about something in the show", "video_id": "video10942", "sen_id": 226277}, {"caption": "a guy on a podium talks about sculptures in a show", "video_id": "video10942", "sen_id": 226278}, {"caption": "a man in a plaid shirt is talking to some people", "video_id": "video10942", "sen_id": 226279}, {"caption": "two men describing the quality of pictures that have been took", "video_id": "video12766", "sen_id": 226280}, {"caption": "an airforce pilot takes a selfie as he flies over a stadium", "video_id": "video12766", "sen_id": 226281}, {"caption": "two men are speaking about taking photos of a sporting event at a stadium", "video_id": "video12766", "sen_id": 226282}, {"caption": "two men are talking about a selfie taken from a skydiving trip", "video_id": "video12766", "sen_id": 226283}, {"caption": "two people are talking about a football game", "video_id": "video12766", "sen_id": 226284}, {"caption": "some one showing the large number of audience gathered in the stadium", "video_id": "video12766", "sen_id": 226285}, {"caption": "two men are playing a video game with a large stadium", "video_id": "video12766", "sen_id": 226286}, {"caption": "the picture of a sports stadium taken by a sky diver using the selfie technique", "video_id": "video12766", "sen_id": 226287}, {"caption": "a person sits at the highest seat in the stadium at a game", "video_id": "video12766", "sen_id": 226288}, {"caption": "a man talks about taking photos of yourself and stadiums", "video_id": "video12766", "sen_id": 226289}, {"caption": "there are some boys riding with cycle s", "video_id": "video12766", "sen_id": 226290}, {"caption": "a man is describe some driving very interestly", "video_id": "video12766", "sen_id": 226291}, {"caption": "a two people discuss a stadium collage one looks like the church lady", "video_id": "video12766", "sen_id": 226292}, {"caption": "two men are their and a man in that is talking about the stadium", "video_id": "video12766", "sen_id": 226293}, {"caption": "a selfie taken by a fighter pilot while flying above a stadium", "video_id": "video12766", "sen_id": 226294}, {"caption": "there two persons talking from a studio", "video_id": "video12766", "sen_id": 226295}, {"caption": "two men ate talking about a picture of a jet pilot took of himself while flying over a stadium", "video_id": "video12766", "sen_id": 226296}, {"caption": "two men talk about a selfie a pilot has taken with a stadium of people in the background", "video_id": "video12766", "sen_id": 226297}, {"caption": "two hosts admire a selfie photograph taken from far above a sports stadium", "video_id": "video12766", "sen_id": 226298}, {"caption": "an aerial view shown around a stadium in a tv show", "video_id": "video12766", "sen_id": 226299}, {"caption": "a lyric video of someone never forgetting some person", "video_id": "video10843", "sen_id": 226300}, {"caption": "a person is singing as the lyrics to his song are being broadcast", "video_id": "video10843", "sen_id": 226301}, {"caption": "a person is singing a song about his best friend or girl friend", "video_id": "video10843", "sen_id": 226302}, {"caption": "lyrics go by on the screen along with someone singing them to give viewers an understanding of how the song goes", "video_id": "video10843", "sen_id": 226303}, {"caption": "join us saturday in celebrating the life and passions of the late john brown", "video_id": "video10843", "sen_id": 226304}, {"caption": "there is black text coming across the screen with a green background", "video_id": "video10843", "sen_id": 226305}, {"caption": "a man is singing a love song while lyrics are shown", "video_id": "video10843", "sen_id": 226306}, {"caption": "a man is singing a song and the lyrics for the song is displayed", "video_id": "video10843", "sen_id": 226307}, {"caption": "lyrics to a song appear as soon as the words are sung", "video_id": "video10843", "sen_id": 226308}, {"caption": "some of the wordings explained in the presentations format", "video_id": "video10843", "sen_id": 226309}, {"caption": "love quotes telling that there is never a day that i dont think of you and you are always there for me", "video_id": "video10843", "sen_id": 226310}, {"caption": "a musical lyric video of a man talking about an ex-girlfriend or a wife or a loved one", "video_id": "video10843", "sen_id": 226311}, {"caption": "a person is singing a song and the words are being displayed on screen", "video_id": "video10843", "sen_id": 226312}, {"caption": "a lot of words are being displayed on a screen", "video_id": "video10843", "sen_id": 226313}, {"caption": "a song plays while its lyrics appear on screen with a blue background", "video_id": "video10843", "sen_id": 226314}, {"caption": "a musical lyric video talking about his girlfriend friend or mom", "video_id": "video10843", "sen_id": 226315}, {"caption": "an english song is being played with lyrics displayed", "video_id": "video10843", "sen_id": 226316}, {"caption": "some letters moving on the screen and moving different styles", "video_id": "video10843", "sen_id": 226317}, {"caption": "a teal screen displaying the words you were always there for me is written in black lettering", "video_id": "video10843", "sen_id": 226318}, {"caption": "some black text is on a green screen", "video_id": "video10843", "sen_id": 226319}, {"caption": "a busy street on a action packed night", "video_id": "video11373", "sen_id": 226320}, {"caption": "a busy latin street with people laughing and celebrating", "video_id": "video11373", "sen_id": 226321}, {"caption": "a large crowd of people are walking and sitting at night in an urban area", "video_id": "video11373", "sen_id": 226322}, {"caption": "in the street people are walking and they eat in the road side shops", "video_id": "video11373", "sen_id": 226323}, {"caption": "a number of girls and boys on streets walking music displaying on screen", "video_id": "video11373", "sen_id": 226324}, {"caption": "bunch of people in the middle of the street at night having fun", "video_id": "video11373", "sen_id": 226325}, {"caption": "two mens are discussing with each other by actions", "video_id": "video11373", "sen_id": 226326}, {"caption": "a small road and roadside eating places are full of people walking", "video_id": "video11373", "sen_id": 226327}, {"caption": "a night street scene with many people and loud music", "video_id": "video11373", "sen_id": 226328}, {"caption": "different people are here enjoying and it is a beautiful sight", "video_id": "video11373", "sen_id": 226329}, {"caption": "a crowd of people at night are having fun", "video_id": "video11373", "sen_id": 226330}, {"caption": "people are parting in the streets of montanita", "video_id": "video11373", "sen_id": 226331}, {"caption": "home video of someone walking the streets or somewhere in montana", "video_id": "video11373", "sen_id": 226332}, {"caption": "there where people walking around and there was a sign that said i love mountains", "video_id": "video11373", "sen_id": 226333}, {"caption": "some people are wandering around at night", "video_id": "video11373", "sen_id": 226334}, {"caption": "a group of people in the streets at night", "video_id": "video11373", "sen_id": 226335}, {"caption": "a people are standing in road side at night", "video_id": "video11373", "sen_id": 226336}, {"caption": "a clear view of some crowd of people walking in a bazaar", "video_id": "video11373", "sen_id": 226337}, {"caption": "a city street in a latino community at night that is full of people and music", "video_id": "video11373", "sen_id": 226338}, {"caption": "some people on the street are walking", "video_id": "video11373", "sen_id": 226339}, {"caption": "jimmy fallon is talking about how he is about to act out an impromptu scene with robert downey jr on his talk show robert downey jr is sitting in a chair facing jimmy at his desk", "video_id": "video12892", "sen_id": 226340}, {"caption": "jimmy fallon hosts robert downey jr on his show and has an interview", "video_id": "video12892", "sen_id": 226341}, {"caption": "a guest sitting on the couch at a late night show", "video_id": "video12892", "sen_id": 226342}, {"caption": "a male talk show host sitting behind a desk proposes to his male guest that they play a game", "video_id": "video12892", "sen_id": 226343}, {"caption": "jimmy fallon is playing a game called emotional interview with a guest on his show", "video_id": "video12892", "sen_id": 226344}, {"caption": "a dark haired talk show host interviews and white man", "video_id": "video12892", "sen_id": 226345}, {"caption": "two persons speaking each other in a news channel", "video_id": "video12892", "sen_id": 226346}, {"caption": "two men are engaged in a conversation in a program and they are getting ready for the real discussion with the ringing of a bell", "video_id": "video12892", "sen_id": 226347}, {"caption": "an emotional interview to a celebrity he sits folding his legs on the sofa", "video_id": "video12892", "sen_id": 226348}, {"caption": "guy in suit and tie interviewing a famous personality", "video_id": "video12892", "sen_id": 226349}, {"caption": "there is a suit man talking about the show", "video_id": "video12892", "sen_id": 226350}, {"caption": "a two men wearing suits talking in a broadcasting room", "video_id": "video12892", "sen_id": 226351}, {"caption": "late night show were too man are talking", "video_id": "video12892", "sen_id": 226352}, {"caption": "two television artists get ready and explain how the emotional enacting part works", "video_id": "video12892", "sen_id": 226353}, {"caption": "jimmy fallon sat at his desk and interviewed his guest", "video_id": "video12892", "sen_id": 226354}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12892", "sen_id": 226355}, {"caption": "on a talk show robert downey jr and the host prepare to act out emotions", "video_id": "video12892", "sen_id": 226356}, {"caption": "when the bell rings two men have to be in character and do stand-up performance in accordance with the theme", "video_id": "video12892", "sen_id": 226357}, {"caption": "two people are having a conversation for the television", "video_id": "video12892", "sen_id": 226358}, {"caption": "a man is being interviewed on a tv show", "video_id": "video12892", "sen_id": 226359}, {"caption": "describing how to best reorganize a kitchen to make it more open and functional", "video_id": "video11524", "sen_id": 226360}, {"caption": "a recipe video on how to create a nice kitchen", "video_id": "video11524", "sen_id": 226361}, {"caption": "in the kitchen a woman explains about arrangements", "video_id": "video11524", "sen_id": 226362}, {"caption": "in a kitchen fresh fruits near sink on", "video_id": "video11524", "sen_id": 226363}, {"caption": "a woman talks about the design of her kitchen", "video_id": "video11524", "sen_id": 226364}, {"caption": "in the white kitchen there are some red apples in white dish", "video_id": "video11524", "sen_id": 226365}, {"caption": "talking about the kitchen", "video_id": "video11524", "sen_id": 226366}, {"caption": "a woman is talking how to complete a pass through for a galley kitchen", "video_id": "video11524", "sen_id": 226367}, {"caption": "in a kitchen fress fruits near sink on", "video_id": "video11524", "sen_id": 226368}, {"caption": "there is a modular kitchen with apples on the kitchen tablea lady is explaining the steps for functional and beautiful gallery kitchen", "video_id": "video11524", "sen_id": 226369}, {"caption": "a kitchen inside infrastructure fruits on the table arranged displaying on screen", "video_id": "video11524", "sen_id": 226370}, {"caption": "a very nice moduler kitchen with nice white colour paint and fresh friuts", "video_id": "video11524", "sen_id": 226371}, {"caption": "an exploration of kitchen and its interiors in home", "video_id": "video11524", "sen_id": 226372}, {"caption": "its the kitchen all the doors are in white color apple is placed on the table", "video_id": "video11524", "sen_id": 226373}, {"caption": "a well equiped kitchen is shown and a lady explaining some tips to create beautiful kitchen", "video_id": "video11524", "sen_id": 226374}, {"caption": "a person is showing kitchen furniture and its appliance", "video_id": "video11524", "sen_id": 226375}, {"caption": "a beautiful display of modular kitchen with white finish and some red apples oh the kitchen counter", "video_id": "video11524", "sen_id": 226376}, {"caption": "a bowl of fruit sits perfectly still near the sink of a gorgeous kitchen", "video_id": "video11524", "sen_id": 226377}, {"caption": "a woman describes with soft voice how to create a functional galley kitchen", "video_id": "video11524", "sen_id": 226378}, {"caption": "tips of how to created a better kitchen", "video_id": "video11524", "sen_id": 226379}, {"caption": "its a womans recipe called iheart recipes video", "video_id": "video11020", "sen_id": 226380}, {"caption": "the outro for a cooking channel with a larger lady", "video_id": "video11020", "sen_id": 226381}, {"caption": "an ad for hearty recipies is shown here", "video_id": "video11020", "sen_id": 226382}, {"caption": "heart recipes is soliciting subscribers to their website and youtube channel", "video_id": "video11020", "sen_id": 226383}, {"caption": "video showing to subscribe to a youtube channel", "video_id": "video11020", "sen_id": 226384}, {"caption": "a single frame of a woman with black curly hair and text asking you to subscribe to her channel", "video_id": "video11020", "sen_id": 226385}, {"caption": "there is a woman with curly hair smiling with food", "video_id": "video11020", "sen_id": 226386}, {"caption": "a fat lady wit curled hair sits and food items are shown in an ad", "video_id": "video11020", "sen_id": 226387}, {"caption": "a large african woman displays recipes she has prepared in her home kitchen", "video_id": "video11020", "sen_id": 226388}, {"caption": "a cook presents her delicious meals and recipes", "video_id": "video11020", "sen_id": 226389}, {"caption": "a person doing a cooking show and showing the link for her website", "video_id": "video11020", "sen_id": 226390}, {"caption": "a person is smiling showing recipes on the screen", "video_id": "video11020", "sen_id": 226391}, {"caption": "a lady and two tasty looking dishes along with the website iheartrecipes", "video_id": "video11020", "sen_id": 226392}, {"caption": "an african chef with long curly hair displays dishes she has prepared", "video_id": "video11020", "sen_id": 226393}, {"caption": "a woman with long curly hair makes recipes on her youtube channel", "video_id": "video11020", "sen_id": 226394}, {"caption": "a woman is advertising her website and showing her food she made with her recipe", "video_id": "video11020", "sen_id": 226395}, {"caption": "static photos of a woman and two dishes promote iheartrecipes", "video_id": "video11020", "sen_id": 226396}, {"caption": "an ad with an african american woman for a website with recipes", "video_id": "video11020", "sen_id": 226397}, {"caption": "a girl and some dishes of still pictures prepared to serve to eat displaying on screen", "video_id": "video11020", "sen_id": 226398}, {"caption": "youtuber iheart recipes links to her website and channel in this outro", "video_id": "video11020", "sen_id": 226399}, {"caption": "a man is sitting at a table with a light blue tablecloth eating a meal in a hole-in-the-wall restaurant and talking about how delicious it is", "video_id": "video10444", "sen_id": 226400}, {"caption": "a man describing a dish he just tasted for the first time", "video_id": "video10444", "sen_id": 226401}, {"caption": "a man eats a chinese dish", "video_id": "video10444", "sen_id": 226402}, {"caption": "a with a black shirt in a restaurant enjoying a plate of food", "video_id": "video10444", "sen_id": 226403}, {"caption": "a man at a resturant enjoying a plate of food he's eating", "video_id": "video10444", "sen_id": 226404}, {"caption": "a guy is trying a vegetable and noodle dish", "video_id": "video10444", "sen_id": 226405}, {"caption": "a man in black t shirt is eating something using a spoon and fork", "video_id": "video10444", "sen_id": 226406}, {"caption": "a man in a black shirt giving feed back on a dish he is eating at a restaurant", "video_id": "video10444", "sen_id": 226407}, {"caption": "a man in a black shirt takes a bite of food and praises the off camera cook", "video_id": "video10444", "sen_id": 226408}, {"caption": "a man is sitting at a table and eating meat and vegitables", "video_id": "video10444", "sen_id": 226409}, {"caption": "man at a restaurant eating asian food with vegetables in it", "video_id": "video10444", "sen_id": 226410}, {"caption": "a man in a black shirt is eating at a restaurant", "video_id": "video10444", "sen_id": 226411}, {"caption": "a man in a black t-shirt is eating a meal in a small restaurant and complementing the chef", "video_id": "video10444", "sen_id": 226412}, {"caption": "a person in black dress eat food in restaurant with fork in hand", "video_id": "video10444", "sen_id": 226413}, {"caption": "a man is eat food in restaturant and telling how tasty the food is", "video_id": "video10444", "sen_id": 226414}, {"caption": "a man is eating a plate of food and greatly enjoying it", "video_id": "video10444", "sen_id": 226415}, {"caption": "a man eats his meal while commenting on how good it tastes", "video_id": "video10444", "sen_id": 226416}, {"caption": "in a restaurant a man eating an authentic dish", "video_id": "video10444", "sen_id": 226417}, {"caption": "the person eating some thing he is using fork for eating", "video_id": "video10444", "sen_id": 226418}, {"caption": "a man is eating some food at a table", "video_id": "video10444", "sen_id": 226419}, {"caption": "gordon ramsay and another man inspect a kitchen infected with cockroaches", "video_id": "video11596", "sen_id": 226420}, {"caption": "a man discusses nasty dirt and bugs in a restaurant storeroom with the owner", "video_id": "video11596", "sen_id": 226421}, {"caption": "two men are shown in a kitchen surprised to see several cockroaches in all parts of the kitchen", "video_id": "video11596", "sen_id": 226422}, {"caption": "a chef finds rat feces and cockroaches in a restaurant kitchen", "video_id": "video11596", "sen_id": 226423}, {"caption": "a chef finds rat feces and cockroaches in a restaurant kitchen", "video_id": "video11596", "sen_id": 226424}, {"caption": "there was many cockroaches in the room", "video_id": "video11596", "sen_id": 226425}, {"caption": "a man in a kitchen in a restaurant finds various signs of cockroach and rat infestation", "video_id": "video11596", "sen_id": 226426}, {"caption": "a man inspects a restaurant kitchen and finds roaches and rat droppings", "video_id": "video11596", "sen_id": 226427}, {"caption": "rat dropping and complaints of cockroaches in the kitchen", "video_id": "video11596", "sen_id": 226428}, {"caption": "a male in the kitchen of a resturant discovering the roach infestation", "video_id": "video11596", "sen_id": 226429}, {"caption": "there is a white tshirt man talking in the kitchen", "video_id": "video11596", "sen_id": 226430}, {"caption": "some people are moving some parts in the video", "video_id": "video11596", "sen_id": 226431}, {"caption": "two men discover rat feces and cockroaches inside the back of a restaurant", "video_id": "video11596", "sen_id": 226432}, {"caption": "a man is disgusted with what he is finding in a kitchen", "video_id": "video11596", "sen_id": 226433}, {"caption": "the man moves the equipment and sees lots of cockroaches all over the kitchen", "video_id": "video11596", "sen_id": 226434}, {"caption": "a man is in a room with bug running on the floor", "video_id": "video11596", "sen_id": 226435}, {"caption": "a man white colored dress is packing a box", "video_id": "video11596", "sen_id": 226436}, {"caption": "in the hotwl kitchen the mens are ready to attack the cokcroaches and the insectides", "video_id": "video11596", "sen_id": 226437}, {"caption": "two men talking in a very dirty kitchen infested with rats and cockroaches", "video_id": "video11596", "sen_id": 226438}, {"caption": "some people are cleaning up a kitchen", "video_id": "video11596", "sen_id": 226439}, {"caption": "some goats and an llama running together in a field", "video_id": "video11902", "sen_id": 226440}, {"caption": "a dog walks over to a llama and they both begin to run along a wire fence", "video_id": "video11902", "sen_id": 226441}, {"caption": "animalls are running wild in the field together", "video_id": "video11902", "sen_id": 226442}, {"caption": "the two black and white dog are watching and playing with the farm animals in the fence", "video_id": "video11902", "sen_id": 226443}, {"caption": "a dog and goat are running and playing in the field divided by a wire fence", "video_id": "video11902", "sen_id": 226444}, {"caption": "a black dog watches as another dog and various other animals run toward it in a grassy fenced area", "video_id": "video11902", "sen_id": 226445}, {"caption": "dog is shown watching another dog chase llamas on the other side of the fence", "video_id": "video11902", "sen_id": 226446}, {"caption": "a dog scaring and chasing some animals behind a wire fence", "video_id": "video11902", "sen_id": 226447}, {"caption": "a pair of herding dogs run along with a group of alpacas", "video_id": "video11902", "sen_id": 226448}, {"caption": "two dogs are running on one side of a fence and goats are running on the other side", "video_id": "video11902", "sen_id": 226449}, {"caption": "a dog is watching another dog run down a fence", "video_id": "video11902", "sen_id": 226450}, {"caption": "a black dog chasing a llama around a fenced yard", "video_id": "video11902", "sen_id": 226451}, {"caption": "a dog watching some animals on ground and it run while other animals run", "video_id": "video11902", "sen_id": 226452}, {"caption": "a dog chases llamas running up and down the field", "video_id": "video11902", "sen_id": 226453}, {"caption": "two dogs are running here and there to catch the lama animal which is running in another track", "video_id": "video11902", "sen_id": 226454}, {"caption": "two black dogs are seen looking at a fence one of the dogs runs along side the fence beside several llamas", "video_id": "video11902", "sen_id": 226455}, {"caption": "black dog stand in green fields then after seeing other animals it started to run", "video_id": "video11902", "sen_id": 226456}, {"caption": "two dogs are running along a fence that has animals on the other side", "video_id": "video11902", "sen_id": 226457}, {"caption": "dogs and other animals prance around in the grass", "video_id": "video11902", "sen_id": 226458}, {"caption": "lama chasing away from the dog behind the cage", "video_id": "video11902", "sen_id": 226459}, {"caption": "a woman telling her husband about her own experience the candy or food he is consuming", "video_id": "video10666", "sen_id": 226460}, {"caption": "a man laying on the floor eating some food and then getting up", "video_id": "video10666", "sen_id": 226461}, {"caption": "a man takes a bite of a spicy food while lying on the floor and then starts to react to the spiciness", "video_id": "video10666", "sen_id": 226462}, {"caption": "a man is laying on the floor eating with his dog", "video_id": "video10666", "sen_id": 226463}, {"caption": "a vlog from a couple that has a dog", "video_id": "video10666", "sen_id": 226464}, {"caption": "a man eating a hot snack complains about the snack burning his mouth", "video_id": "video10666", "sen_id": 226465}, {"caption": "a girl talking and a man eating something which he finds very sensational and a dog looks on", "video_id": "video10666", "sen_id": 226466}, {"caption": "guy in green t-shirt is lying on floor and enjoying his time", "video_id": "video10666", "sen_id": 226467}, {"caption": "man speaking with a lady and dog behind him", "video_id": "video10666", "sen_id": 226468}, {"caption": "a guy in a green shirt lays on the floor and eats snacks next to his dog and family", "video_id": "video10666", "sen_id": 226469}, {"caption": "the man sitting on the floor eats some spicy hot food", "video_id": "video10666", "sen_id": 226470}, {"caption": "a man is lying on the floor and eating something from a packet while a dog watches him", "video_id": "video10666", "sen_id": 226471}, {"caption": "the woman behind the camera is talking to a man who is laying on the floor", "video_id": "video10666", "sen_id": 226472}, {"caption": "a man reacts funny to eating hot pop rocks", "video_id": "video10666", "sen_id": 226473}, {"caption": "a man is lying on a floor with a dog", "video_id": "video10666", "sen_id": 226474}, {"caption": "a man with a beard and mustache reclines on his side while propped up on one arm and pours food into his mouth from a small packet", "video_id": "video10666", "sen_id": 226475}, {"caption": "there is a men eating and dog is there side of him", "video_id": "video10666", "sen_id": 226476}, {"caption": "a dog is watching a man laying on the floor eating a candy bar", "video_id": "video10666", "sen_id": 226477}, {"caption": "a woman talking about getting something stuck in her throat when she was at the mall of america", "video_id": "video10666", "sen_id": 226478}, {"caption": "a man is sitting on a floor with a dog", "video_id": "video10666", "sen_id": 226479}, {"caption": "news reporter talking to someone on a big screen", "video_id": "video12903", "sen_id": 226480}, {"caption": "a man on television teleconferences with another man who appears to be an executive from the pharmaceutical industry", "video_id": "video12903", "sen_id": 226481}, {"caption": "two men discuss financial issues on a news show about business", "video_id": "video12903", "sen_id": 226482}, {"caption": "man in a pink shirt and tie talks to a video screen while holding paper", "video_id": "video12903", "sen_id": 226483}, {"caption": "a clip of jim cramer's show about stocks", "video_id": "video12903", "sen_id": 226484}, {"caption": "a clip from jim crater's show on finance", "video_id": "video12903", "sen_id": 226485}, {"caption": "jim kramer is wearing a purple tie and listening to a man in suit talk about pharmaceuticals", "video_id": "video12903", "sen_id": 226486}, {"caption": "a man in a bright purple tie discusses business issues with an expert", "video_id": "video12903", "sen_id": 226487}, {"caption": "jim cramer talking to a horizon executive about his company", "video_id": "video12903", "sen_id": 226488}, {"caption": "a host of a tv show is listening to a man on a screen talk while he is looking through his notes", "video_id": "video12903", "sen_id": 226489}, {"caption": "a bald man in a white button down shirt and purple tie interviewing someone", "video_id": "video12903", "sen_id": 226490}, {"caption": "there is a man watching a speech on the screen", "video_id": "video12903", "sen_id": 226491}, {"caption": "an episode of mad money where the host is talking to a person about the drug industry", "video_id": "video12903", "sen_id": 226492}, {"caption": "a talk show guest discussing pharmaceutical programs", "video_id": "video12903", "sen_id": 226493}, {"caption": "a guy in a suit talks to a guy on a screen about the stock market", "video_id": "video12903", "sen_id": 226494}, {"caption": "there is white shirt man lessening from a suit man", "video_id": "video12903", "sen_id": 226495}, {"caption": "a man is talking to the host of mad money", "video_id": "video12903", "sen_id": 226496}, {"caption": "jim cramer from cnbc discusses a book on finances with another man", "video_id": "video12903", "sen_id": 226497}, {"caption": "two stock market analysts talk together on a popular tv show", "video_id": "video12903", "sen_id": 226498}, {"caption": "a gentleman with white colour dress is looking at a tv in which a man is speaking", "video_id": "video12903", "sen_id": 226499}, {"caption": "a man explains the use of a certain button on a camera", "video_id": "video10480", "sen_id": 226500}, {"caption": "the back of a black camera with the main selector dial highlighted", "video_id": "video10480", "sen_id": 226501}, {"caption": "a black camera with a white dial and assorted buttons", "video_id": "video10480", "sen_id": 226502}, {"caption": "a main dial primary selector is being shown on a black camera", "video_id": "video10480", "sen_id": 226503}, {"caption": "an animated black and white graphic with a voiceover explaining how best to use a camera", "video_id": "video10480", "sen_id": 226504}, {"caption": "the second most important button is the main selection dail", "video_id": "video10480", "sen_id": 226505}, {"caption": "instructions on how to use the primary selector of a camera is shown", "video_id": "video10480", "sen_id": 226506}, {"caption": "a description of the primary selector dial on a certain type of camera", "video_id": "video10480", "sen_id": 226507}, {"caption": "man describing the functions of black smart camera", "video_id": "video10480", "sen_id": 226508}, {"caption": "a man is describing about a product", "video_id": "video10480", "sen_id": 226509}, {"caption": "there is a man explains about a black camera", "video_id": "video10480", "sen_id": 226510}, {"caption": "black color primary collector are displayed on a screen", "video_id": "video10480", "sen_id": 226511}, {"caption": "a black camera sitting on a white surface", "video_id": "video10480", "sen_id": 226512}, {"caption": "someone is giving demo about some product and its features", "video_id": "video10480", "sen_id": 226513}, {"caption": "a person is explaining about a black colour camera", "video_id": "video10480", "sen_id": 226514}, {"caption": "there is a man explains about a camera", "video_id": "video10480", "sen_id": 226515}, {"caption": "a man is explaining buttons on a black camera", "video_id": "video10480", "sen_id": 226516}, {"caption": "main dial primary selector one man talk about camera features", "video_id": "video10480", "sen_id": 226517}, {"caption": "a main dial primary selector is being displayed", "video_id": "video10480", "sen_id": 226518}, {"caption": "a black camera is being shown for sale", "video_id": "video10480", "sen_id": 226519}, {"caption": "a person in the background talks about chemist's as animation cut scenes depict science related images", "video_id": "video12969", "sen_id": 226520}, {"caption": "a woman is explaining how substances react under different conditions", "video_id": "video12969", "sen_id": 226521}, {"caption": "a female scientist talks about how using questions can lead to discovery and advancement", "video_id": "video12969", "sen_id": 226522}, {"caption": "a big red question mark appears then a character appears next to it like he is thinking he then climbs on top of the question mark while a thermometer and a block of ice appears on the left of the question mark the ice melts and a wall and the eiffel tower appears above and a pop bottle appears below and to the right of the questionmark the bottle explodes", "video_id": "video12969", "sen_id": 226523}, {"caption": "a question mark with a white person image next to it them a thermometer and an image of the leaning tower of pizza", "video_id": "video12969", "sen_id": 226524}, {"caption": "explaining how or if we can answer the question what is it made of", "video_id": "video12969", "sen_id": 226525}, {"caption": "a big question mark with a cartoon person moving around next to the question mark", "video_id": "video12969", "sen_id": 226526}, {"caption": "a woman is talking about how a substance will react under different conditions", "video_id": "video12969", "sen_id": 226527}, {"caption": "a woman explains why it's important to be able to answer the question what's it made of", "video_id": "video12969", "sen_id": 226528}, {"caption": "there is a question mark and a toy near that", "video_id": "video12969", "sen_id": 226529}, {"caption": "a question mark displaying of what it s made of and how substances react to different conditions", "video_id": "video12969", "sen_id": 226530}, {"caption": "an animated man leans on a large red question mark and is surrounded by the eiffel tower a thermometer and water", "video_id": "video12969", "sen_id": 226531}, {"caption": "an educational presentation on materials and how they react to changes", "video_id": "video12969", "sen_id": 226532}, {"caption": "shows a question mark and a woman talking about substance what it is made of", "video_id": "video12969", "sen_id": 226533}, {"caption": "a woman is describing how a substance reacts in different conditions", "video_id": "video12969", "sen_id": 226534}, {"caption": "a question mark is displayed and people are standing and siting beside it", "video_id": "video12969", "sen_id": 226535}, {"caption": "a grapic that uses a lot of colored clipart to explain how to go about resolving your problem curiousity", "video_id": "video12969", "sen_id": 226536}, {"caption": "a woman on a science program explaining how chemists use the scientific method to perform tests", "video_id": "video12969", "sen_id": 226537}, {"caption": "a question mark appears a person appears in different positions around the person a blue bottle of liquid explodes", "video_id": "video12969", "sen_id": 226538}, {"caption": "a woman talks about physics ovr a slide show", "video_id": "video12969", "sen_id": 226539}, {"caption": "a boy band is performing a song in a music video", "video_id": "video11757", "sen_id": 226540}, {"caption": "a man with blonde hair wearing all black is singing a song", "video_id": "video11757", "sen_id": 226541}, {"caption": "man sings as he is surrounded by other men and lights in the video", "video_id": "video11757", "sen_id": 226542}, {"caption": "a young man sings a song as he walks along a busy city street", "video_id": "video11757", "sen_id": 226543}, {"caption": "a guy that is talking about his love for a woman", "video_id": "video11757", "sen_id": 226544}, {"caption": "a man sings about love while walking down the street", "video_id": "video11757", "sen_id": 226545}, {"caption": "a young man walks along a street and sings about a woman", "video_id": "video11757", "sen_id": 226546}, {"caption": "a man walking down a treet wearing a black jacket and singing", "video_id": "video11757", "sen_id": 226547}, {"caption": "a young man standing and singing outside in a black suit", "video_id": "video11757", "sen_id": 226548}, {"caption": "a blonde man is walking down a street singing emotionally while thinking of a woman", "video_id": "video11757", "sen_id": 226549}, {"caption": "a black suit man singing on the road", "video_id": "video11757", "sen_id": 226550}, {"caption": "a man in a black jacketsinging in a music video", "video_id": "video11757", "sen_id": 226551}, {"caption": "a music video of a man singing a song and walking outside", "video_id": "video11757", "sen_id": 226552}, {"caption": "a young man in a suit acting out and singing a love song in a city setting", "video_id": "video11757", "sen_id": 226553}, {"caption": "a well dressed man requesting some body to come back to him and shpw how to face the truth", "video_id": "video11757", "sen_id": 226554}, {"caption": "a man in black dressing singing from the street", "video_id": "video11757", "sen_id": 226555}, {"caption": "the men singers are singing the song while the woman is walking", "video_id": "video11757", "sen_id": 226556}, {"caption": "a man is singing while walking down a street", "video_id": "video11757", "sen_id": 226557}, {"caption": "a man with formal dressing is singing and following a girl", "video_id": "video11757", "sen_id": 226558}, {"caption": "a clip from a music video that shows the singer in the middle of the street", "video_id": "video11757", "sen_id": 226559}, {"caption": "there is an animation of a group of men from history at a meeting", "video_id": "video12590", "sen_id": 226560}, {"caption": "this cartoon depicts the twelve states that met and held the first continental congress georgia did not participate in this convention", "video_id": "video12590", "sen_id": 226561}, {"caption": "an animation about the convening of the first continental congress", "video_id": "video12590", "sen_id": 226562}, {"caption": "man explains how a group of delegates from tweleve of the thirteen colonies met in philadelphia to coordinate the resistance of the intolerable act while the image shows cartoon images of the delegates holding signs", "video_id": "video12590", "sen_id": 226563}, {"caption": "man explains how a group of delegates from tweleve of the thirteen colonies met in philadelphia to coordinate the resistance of the intolerable act while the image shows cartoon images of the delegates holding signs", "video_id": "video12590", "sen_id": 226564}, {"caption": "a man lectures on the happenings of the first continental congress", "video_id": "video12590", "sen_id": 226565}, {"caption": "there are many old people gathered and saying something in front of the camera", "video_id": "video12590", "sen_id": 226566}, {"caption": "this is a animated video with people from pennsylvania vs georgia", "video_id": "video12590", "sen_id": 226567}, {"caption": "a man speaking about the first continental congress", "video_id": "video12590", "sen_id": 226568}, {"caption": "cartoon imagery is used to explain the first continental congress", "video_id": "video12590", "sen_id": 226569}, {"caption": "cartoons display on the screen", "video_id": "video12590", "sen_id": 226570}, {"caption": "a man giving an american history lesson with animation to provide information about early colonial government", "video_id": "video12590", "sen_id": 226571}, {"caption": "there are some people aligned to take photo", "video_id": "video12590", "sen_id": 226572}, {"caption": "the people in the cartoon sing the song", "video_id": "video12590", "sen_id": 226573}, {"caption": "an animation film is playing in the screen", "video_id": "video12590", "sen_id": 226574}, {"caption": "a guy in a room is stretching his arms", "video_id": "video12590", "sen_id": 226575}, {"caption": "some cartoon which is making a photo session with a gorup", "video_id": "video12590", "sen_id": 226576}, {"caption": "a man is talking about the first government", "video_id": "video12590", "sen_id": 226577}, {"caption": "a man teaches history with funny little animations", "video_id": "video12590", "sen_id": 226578}, {"caption": "some people in a room are doing things", "video_id": "video12590", "sen_id": 226579}, {"caption": "strips of steak are shown being seasoned by a chef", "video_id": "video10155", "sen_id": 226580}, {"caption": "a female chef discusses the marinade she uses for a piece of meat", "video_id": "video10155", "sen_id": 226581}, {"caption": "a woman demonstrates how to marinate a steak", "video_id": "video10155", "sen_id": 226582}, {"caption": "the woman discusses how to marinate the meat in the tupperware", "video_id": "video10155", "sen_id": 226583}, {"caption": "some uncooked pieces of meat in a plastic container getting seasoned", "video_id": "video10155", "sen_id": 226584}, {"caption": "some person putting salt to a meat which is inside the box", "video_id": "video10155", "sen_id": 226585}, {"caption": "here it is show how to marinate the piece of a meat by adding some ingredients", "video_id": "video10155", "sen_id": 226586}, {"caption": "a women is making meat wth salt in kitchen", "video_id": "video10155", "sen_id": 226587}, {"caption": "a woman describes how to cook meat in a spicy different way", "video_id": "video10155", "sen_id": 226588}, {"caption": "mutton pieces are kept in a plastic bowl and a person is spraying salt on them", "video_id": "video10155", "sen_id": 226589}, {"caption": "there is a women going to make a dish", "video_id": "video10155", "sen_id": 226590}, {"caption": "pieces of meat is taken in a bowl and salt is being put over it by someone", "video_id": "video10155", "sen_id": 226591}, {"caption": "making a recipe with meat and add spice in a bowl", "video_id": "video10155", "sen_id": 226592}, {"caption": "the meat on a plastic container is marinating with garlic powder spreading on it", "video_id": "video10155", "sen_id": 226593}, {"caption": "some red cut up meat is in a bowl", "video_id": "video10155", "sen_id": 226594}, {"caption": "a woman is explaining how to season a steak", "video_id": "video10155", "sen_id": 226595}, {"caption": "a person demostrating on how to prepare a meat meal", "video_id": "video10155", "sen_id": 226596}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video10155", "sen_id": 226597}, {"caption": "an motton pieces inside bowl inside kitchen with masala mixing", "video_id": "video10155", "sen_id": 226598}, {"caption": "someone is filming a bowl full of red meat", "video_id": "video10155", "sen_id": 226599}, {"caption": "a man prepares food in a kitchen while discussing his cooking process", "video_id": "video10104", "sen_id": 226600}, {"caption": "a man in a pink shirt cooking ground beef in a skillet", "video_id": "video10104", "sen_id": 226601}, {"caption": "a man in a red and white checkered shirt is cooking ground meat on a stove top", "video_id": "video10104", "sen_id": 226602}, {"caption": "a person demonstrating a ground beef recipe on stove", "video_id": "video10104", "sen_id": 226603}, {"caption": "a heavyset man wearing a pink shirt and white apron gives a cooking lesson during which he cooks ground beef in a black pan on top of an off-white stove that has a black control panel", "video_id": "video10104", "sen_id": 226604}, {"caption": "a woman demonstrating how to make a meal in a pot", "video_id": "video10104", "sen_id": 226605}, {"caption": "a cooker keeps stirring the groud beef in the pan to drain out the fat that produces the extra flavor", "video_id": "video10104", "sen_id": 226606}, {"caption": "a man in a red shirt describing the ground beef that he is browning and how the fat in it gives it more flavor", "video_id": "video10104", "sen_id": 226607}, {"caption": "a man frying ground beef on a stove", "video_id": "video10104", "sen_id": 226608}, {"caption": "a man fries some ground beef in a large frying pan on the stove on low heat while breaking it up and stirring it with a spoon", "video_id": "video10104", "sen_id": 226609}, {"caption": "a woman in pink dress is busy preparing food in kitchen", "video_id": "video10104", "sen_id": 226610}, {"caption": "a lady cooking some dish and making them with a spoon", "video_id": "video10104", "sen_id": 226611}, {"caption": "a man is in his home kitchen explaining how to cook a dish", "video_id": "video10104", "sen_id": 226612}, {"caption": "an in-home african chef demonstrates a meat recipe in his home kitchen", "video_id": "video10104", "sen_id": 226613}, {"caption": "the man in pink dress is cooking a delicious dish in a black pan", "video_id": "video10104", "sen_id": 226614}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10104", "sen_id": 226615}, {"caption": "a cook is at the stove on a white range stirring ground beef in a green pot with a wooden spoon", "video_id": "video10104", "sen_id": 226616}, {"caption": "a man is stir and cooking in the pan", "video_id": "video10104", "sen_id": 226617}, {"caption": "a man preparing dish in kitchen to eat", "video_id": "video10104", "sen_id": 226618}, {"caption": "a woman is cooking some food in a pot", "video_id": "video10104", "sen_id": 226619}, {"caption": "man in athletic gear talking about how to perform on a basketball court", "video_id": "video11801", "sen_id": 226620}, {"caption": "a guy in black tshirt and blue shorts telling how to exercise in a youtube channel", "video_id": "video11801", "sen_id": 226621}, {"caption": "ads for workout videos are shown here for the speed", "video_id": "video11801", "sen_id": 226622}, {"caption": "a man in yellow shirt and grey shorts is talking about body building", "video_id": "video11801", "sen_id": 226623}, {"caption": "a man in grey and highlighter yellow is speaking on a basketball court followed by four clips of people working out", "video_id": "video11801", "sen_id": 226624}, {"caption": "a man is speaking on a court followed by a subscription information screen followed by various workout videos", "video_id": "video11801", "sen_id": 226625}, {"caption": "there are some tips to get more videos", "video_id": "video11801", "sen_id": 226626}, {"caption": "the end of a segment asking the viewers to subscribe to twice the speed", "video_id": "video11801", "sen_id": 226627}, {"caption": "a fit man in a bright yellow t-shirt completes an outdoor workout", "video_id": "video11801", "sen_id": 226628}, {"caption": "man is talking about his channel with playing basketball", "video_id": "video11801", "sen_id": 226629}, {"caption": "a video with links for speed training exercises and a link to twice the speed", "video_id": "video11801", "sen_id": 226630}, {"caption": "more videos are displayed", "video_id": "video11801", "sen_id": 226631}, {"caption": "an outro video to a youtube channel named twice the speed the channel is made to help athletes gain speed", "video_id": "video11801", "sen_id": 226632}, {"caption": "a subscription requesting clip shows images of links from which you can access exclusive information", "video_id": "video11801", "sen_id": 226633}, {"caption": "various videos are recommended based on what you watched", "video_id": "video11801", "sen_id": 226634}, {"caption": "a subscribe button and videos at the end of a fitness video", "video_id": "video11801", "sen_id": 226635}, {"caption": "a man speaks on a green tennis court gesturing with his arms a man does sideways push ups resting on a bent elbow", "video_id": "video11801", "sen_id": 226636}, {"caption": "the ending of an exercise video for men called twicethespeed", "video_id": "video11801", "sen_id": 226637}, {"caption": "a page for twice the speed with links to other videos and how to subscribe on different social media sites", "video_id": "video11801", "sen_id": 226638}, {"caption": "some scenes from various movies are being displayed", "video_id": "video11801", "sen_id": 226639}, {"caption": "two men talking about the creation of the movie a princess and a frog", "video_id": "video11331", "sen_id": 226640}, {"caption": "a couple of men talking about a cartoon movie", "video_id": "video11331", "sen_id": 226641}, {"caption": "a man in a brown suit talking about making a dream become a reality", "video_id": "video11331", "sen_id": 226642}, {"caption": "two men with glasses talk about the cartoon here", "video_id": "video11331", "sen_id": 226643}, {"caption": "two men talking about an animated show and the effort it took to complete", "video_id": "video11331", "sen_id": 226644}, {"caption": "a man with spectacles and wearing a grey over coat is talking to another person", "video_id": "video11331", "sen_id": 226645}, {"caption": "directors of the princess and the frog are interviewed about the making of their movie", "video_id": "video11331", "sen_id": 226646}, {"caption": "an animation specialist explains how the efforts of hundreds of people goes into making a character a reality", "video_id": "video11331", "sen_id": 226647}, {"caption": "a man talking about dreams being made real for audiences while clips of making animation appear on the screen", "video_id": "video11331", "sen_id": 226648}, {"caption": "ron clements discusses making an animated film become real while jon musker sits nearby", "video_id": "video11331", "sen_id": 226649}, {"caption": "two man are sitting and talking", "video_id": "video11331", "sen_id": 226650}, {"caption": "the director of the princess and the frog talks sits in a chair and talks about the making of the movie", "video_id": "video11331", "sen_id": 226651}, {"caption": "two men are talking about the creation and animation of the movie the princess and the frog", "video_id": "video11331", "sen_id": 226652}, {"caption": "two men describe how their drawings turned into an animated film", "video_id": "video11331", "sen_id": 226653}, {"caption": "man seen drawing something on a big piece of paper", "video_id": "video11331", "sen_id": 226654}, {"caption": "two men discuss the animated film they directed and created", "video_id": "video11331", "sen_id": 226655}, {"caption": "two men talk about all that went in to making a movie they worked on", "video_id": "video11331", "sen_id": 226656}, {"caption": "two men in suits sit in theater and discuss making of an animated movie", "video_id": "video11331", "sen_id": 226657}, {"caption": "the hard process of making a cartoon film is explained by its director", "video_id": "video11331", "sen_id": 226658}, {"caption": "a guy is sitting down in his computeroffice", "video_id": "video11331", "sen_id": 226659}, {"caption": "a dog and a bird playing with a stick", "video_id": "video10398", "sen_id": 226660}, {"caption": "a dog and a colorful bird on grass playing with a stick and people laughing in the background", "video_id": "video10398", "sen_id": 226661}, {"caption": "a dog and blue parrot hang out together", "video_id": "video10398", "sen_id": 226662}, {"caption": "a big dog and a bird interacting with one another in the grass", "video_id": "video10398", "sen_id": 226663}, {"caption": "a dog is playing with a colourful bird lying in grass", "video_id": "video10398", "sen_id": 226664}, {"caption": "a dog is laying down and playing with a bird", "video_id": "video10398", "sen_id": 226665}, {"caption": "a dog and a parrot play with each other using a small stick", "video_id": "video10398", "sen_id": 226666}, {"caption": "a dog and a parrot are playing together in a garden", "video_id": "video10398", "sen_id": 226667}, {"caption": "a dog is eating a stick and the parrot is taking that stick away from dog", "video_id": "video10398", "sen_id": 226668}, {"caption": "a dog is sitting on grass while a bird comes near it", "video_id": "video10398", "sen_id": 226669}, {"caption": "a dog and a parrot sit in the grass the dog is eating something", "video_id": "video10398", "sen_id": 226670}, {"caption": "a black colour dog sitting on grass playing with parrot on grass displaying on the screen", "video_id": "video10398", "sen_id": 226671}, {"caption": "a dog is lying down next to a parrot outside", "video_id": "video10398", "sen_id": 226672}, {"caption": "there is a dog sitting with a sparrow on the grass", "video_id": "video10398", "sen_id": 226673}, {"caption": "one dog and a parrot are in friendly in grass", "video_id": "video10398", "sen_id": 226674}, {"caption": "a parrot sits on a field with a german shepard", "video_id": "video10398", "sen_id": 226675}, {"caption": "the back dog and the yellow and blue parrot are sitting very friendly with each other", "video_id": "video10398", "sen_id": 226676}, {"caption": "a dog is eating something in a garden and a bird is there side of it", "video_id": "video10398", "sen_id": 226677}, {"caption": "a dog and parrot were playing on the ground with the stick", "video_id": "video10398", "sen_id": 226678}, {"caption": "a person is showing dog playing with the parrot", "video_id": "video10398", "sen_id": 226679}, {"caption": "lots of people drinking and celebrating to rich cultural band music", "video_id": "video12534", "sen_id": 226680}, {"caption": "there is music playing with a bunch of different people dancing to it", "video_id": "video12534", "sen_id": 226681}, {"caption": "men and women dance while a mariachi band plays the man takes a shot of tequila", "video_id": "video12534", "sen_id": 226682}, {"caption": "a man and a woman dancing with each other", "video_id": "video12534", "sen_id": 226683}, {"caption": "people playing music and dancing and a man drinking", "video_id": "video12534", "sen_id": 226684}, {"caption": "real life experiences by intrepid showing people partying dancing and drinking", "video_id": "video12534", "sen_id": 226685}, {"caption": "performing a show in a party and some are dancing and drinking", "video_id": "video12534", "sen_id": 226686}, {"caption": "several peolpe are dancing on the stage while others are cheering up", "video_id": "video12534", "sen_id": 226687}, {"caption": "a people are participating a different activity", "video_id": "video12534", "sen_id": 226688}, {"caption": "girl dancing with fire playing music with guitar clapping hand old man drinking displaying on screen", "video_id": "video12534", "sen_id": 226689}, {"caption": "energetic music plays while people eat drink and dance or play instruments", "video_id": "video12534", "sen_id": 226690}, {"caption": "women dancing and singing song in a group", "video_id": "video12534", "sen_id": 226691}, {"caption": "peoples are playing music and dancing", "video_id": "video12534", "sen_id": 226692}, {"caption": "we see people dancing in the streets and sitting drinking shots", "video_id": "video12534", "sen_id": 226693}, {"caption": "all people are dressed in different manner and enjoy dancingdrinking and playing music", "video_id": "video12534", "sen_id": 226694}, {"caption": "people are dancing drinking and having a great time while a group is playing music", "video_id": "video12534", "sen_id": 226695}, {"caption": "people are shown celebrating by eating dancing and enjoying themselves", "video_id": "video12534", "sen_id": 226696}, {"caption": "three seated people are hitting small drums held between their legs with both hands a woman is swinging two cords with fires on the ends", "video_id": "video12534", "sen_id": 226697}, {"caption": " dance and eat along a busy street at night", "video_id": "video12534", "sen_id": 226698}, {"caption": "a man traveling somewhere foreign and enjoying local attractions such as local music and exotic entertainment trying new food and drinking at night", "video_id": "video12534", "sen_id": 226699}, {"caption": "small aquarium with a gold fish in a plastic bag", "video_id": "video10477", "sen_id": 226700}, {"caption": "a bag with a fish in water sitting in a larger fish tank filled with water", "video_id": "video10477", "sen_id": 226701}, {"caption": "a goldfish in a small plastic bag gets used to the water in an aquarium", "video_id": "video10477", "sen_id": 226702}, {"caption": "a man talking about his fish the gold fish is swimming in a bag that is in the tank", "video_id": "video10477", "sen_id": 226703}, {"caption": "a pale with crabs in it and a fish tank with a bag with a small goldfish swimming around in the bag", "video_id": "video10477", "sen_id": 226704}, {"caption": "a fish is inside of a bag of water which is at the top of an aquarium filled with water", "video_id": "video10477", "sen_id": 226705}, {"caption": "a fish is inside a polythene cover which is kept inside a fish tank which has water plants in it", "video_id": "video10477", "sen_id": 226706}, {"caption": "a man explains how to add fish to your aquarium the correct way", "video_id": "video10477", "sen_id": 226707}, {"caption": "a fish is swimming in the aquarium water", "video_id": "video10477", "sen_id": 226708}, {"caption": "an aquarium with one fish and green plants", "video_id": "video10477", "sen_id": 226709}, {"caption": "a fish is in a plastic bag floating in an aquarium", "video_id": "video10477", "sen_id": 226710}, {"caption": "there are some fish tanks in a room", "video_id": "video10477", "sen_id": 226711}, {"caption": "a british voice describes how to acclimate a goldfish to a new tank", "video_id": "video10477", "sen_id": 226712}, {"caption": "someone is showing us there fish in a bag while telling us how to get them used to a new tank", "video_id": "video10477", "sen_id": 226713}, {"caption": "a man is talking about his white fish that is in a tank", "video_id": "video10477", "sen_id": 226714}, {"caption": "a fish in a bag sitting in a fish tank preparing to be released into the tank", "video_id": "video10477", "sen_id": 226715}, {"caption": "there is a aquarium with a small fish", "video_id": "video10477", "sen_id": 226716}, {"caption": "some fish is kept in the cover and it was put into the aquarium", "video_id": "video10477", "sen_id": 226717}, {"caption": "a goldfish is suspended in a bag inside an aquarium and a guy explains that he will add a little water from the aquarium to equalize the chemicals", "video_id": "video10477", "sen_id": 226718}, {"caption": "guy recording the fish he left in a plastic bag in his aquarium", "video_id": "video10477", "sen_id": 226719}, {"caption": "a man dressed in a white chef outfit standing in a kitchen giving a presentation; he had chicken in a bowl with kosher salt on top", "video_id": "video11916", "sen_id": 226720}, {"caption": "a chef in a kitchen is using kosher salt on fish", "video_id": "video11916", "sen_id": 226721}, {"caption": "a chef gets ready for a recipe by salting a couple of piece of chicken", "video_id": "video11916", "sen_id": 226722}, {"caption": "chef explains how to salt chicken with kosher salt while a video of him salting the chicken shows", "video_id": "video11916", "sen_id": 226723}, {"caption": "a chef is applying salt to a dish he is preparing to cook", "video_id": "video11916", "sen_id": 226724}, {"caption": "a chef showing some food prepration", "video_id": "video11916", "sen_id": 226725}, {"caption": "there is a white dressing man making a dish in the kitchen", "video_id": "video11916", "sen_id": 226726}, {"caption": "chef can make recipe with chicken and marinate it", "video_id": "video11916", "sen_id": 226727}, {"caption": "a cook seasons some raw chicken on a white plate", "video_id": "video11916", "sen_id": 226728}, {"caption": "a old man in white dress dish inside kitchen to prepared to serve to eat displaying on screen", "video_id": "video11916", "sen_id": 226729}, {"caption": "a person is preparing a tasty sweet", "video_id": "video11916", "sen_id": 226730}, {"caption": "a chef is showing and telling all ingredients for a recepie", "video_id": "video11916", "sen_id": 226731}, {"caption": "a chef in a kitchen is sprinkling kosher salt on meat", "video_id": "video11916", "sen_id": 226732}, {"caption": "a chef wearing white is cooking chicken in a kitchen", "video_id": "video11916", "sen_id": 226733}, {"caption": "a cook discusses salt cooling and heating", "video_id": "video11916", "sen_id": 226734}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11916", "sen_id": 226735}, {"caption": "the cheff is preparing some stuff in the kitchen", "video_id": "video11916", "sen_id": 226736}, {"caption": "a man sprinkles kosher salt over a meat", "video_id": "video11916", "sen_id": 226737}, {"caption": "a man in a kitchen wearing a chef s coat puts salt on some chicken", "video_id": "video11916", "sen_id": 226738}, {"caption": "a person prepares chicken breasts for cooking using kosher salt", "video_id": "video11916", "sen_id": 226739}, {"caption": "a man is talking about business on the bloomberg show", "video_id": "video12852", "sen_id": 226740}, {"caption": "a man is describing some business statistics on tv", "video_id": "video12852", "sen_id": 226741}, {"caption": "bloomberg business discusses earnings per share demonstrated in a bar chart in spanish", "video_id": "video12852", "sen_id": 226742}, {"caption": "a man in a suit talks about business in spanish", "video_id": "video12852", "sen_id": 226743}, {"caption": "a stock market ticker runs along the bottom as a single stock is shown above with an estimated value price", "video_id": "video12852", "sen_id": 226744}, {"caption": "a man in black suit is saying something here", "video_id": "video12852", "sen_id": 226745}, {"caption": "there is a graph with pure measurements from bloomberg", "video_id": "video12852", "sen_id": 226746}, {"caption": "a man is explaining a bar graph on the news", "video_id": "video12852", "sen_id": 226747}, {"caption": "guy in suit talking about business and showing graph", "video_id": "video12852", "sen_id": 226748}, {"caption": "a old man in white dress speaking sitting and graph showing displaying on screen", "video_id": "video12852", "sen_id": 226749}, {"caption": "a man in grey shirt here is explaining something", "video_id": "video12852", "sen_id": 226750}, {"caption": "a bar graph of four variables displayed while a man speaks about it", "video_id": "video12852", "sen_id": 226751}, {"caption": "a share market news is playing in the television", "video_id": "video12852", "sen_id": 226752}, {"caption": "a guy wearing a coat is explaining about some statistics", "video_id": "video12852", "sen_id": 226753}, {"caption": "a man on bloomberg discuses a bar graph in a foreign language", "video_id": "video12852", "sen_id": 226754}, {"caption": "there is a graph about a important matter with clear explanations", "video_id": "video12852", "sen_id": 226755}, {"caption": "they are going over the bloomberg stock exchange gains in spanish", "video_id": "video12852", "sen_id": 226756}, {"caption": "a financial analyst discusses the trends in a financial market", "video_id": "video12852", "sen_id": 226757}, {"caption": "man presenting the results from the survey for television", "video_id": "video12852", "sen_id": 226758}, {"caption": "a graph is being shown about something to people", "video_id": "video12852", "sen_id": 226759}, {"caption": "a prepared squid with a large eye is presented as an entre in a black tray next to a lime garnish and moves its tentacles in response to being touched by a person's fingers", "video_id": "video10065", "sen_id": 226760}, {"caption": "a person in a restaurant shows a dish where the squid on the plate is still alive", "video_id": "video10065", "sen_id": 226761}, {"caption": "a group of friends talking about their food", "video_id": "video10065", "sen_id": 226762}, {"caption": "there are a group of people sitting around the food that looks like a fish", "video_id": "video10065", "sen_id": 226763}, {"caption": "a man is showing off a squid dish and the squid is still moving", "video_id": "video10065", "sen_id": 226764}, {"caption": "people are eating live asian food at an authentic restaurant", "video_id": "video10065", "sen_id": 226765}, {"caption": "squid with beautiful appearance is in the plate and someone touches its tentacles", "video_id": "video10065", "sen_id": 226766}, {"caption": "an elaborate live squid sushi dish sits on a table next to beer", "video_id": "video10065", "sen_id": 226767}, {"caption": "someone is eating the live sea food putting on a table someone is trying to move the animal", "video_id": "video10065", "sen_id": 226768}, {"caption": "a live squid laying on a plate being touched by a person s fingers", "video_id": "video10065", "sen_id": 226769}, {"caption": "a japanese dish served in a restaurant in japan where a live octopus is on the plate", "video_id": "video10065", "sen_id": 226770}, {"caption": "star fish is kept on the tray", "video_id": "video10065", "sen_id": 226771}, {"caption": "people talking about how to cook squid and a person was touching the squid", "video_id": "video10065", "sen_id": 226772}, {"caption": "a person is showing the one food item that is squid prepared at while it is alive", "video_id": "video10065", "sen_id": 226773}, {"caption": "platter of seafood is on a wooden table and one of the creatures is still alive", "video_id": "video10065", "sen_id": 226774}, {"caption": "man describing the squid prepared alive", "video_id": "video10065", "sen_id": 226775}, {"caption": "the shop for squid prepared while alive a man explain", "video_id": "video10065", "sen_id": 226776}, {"caption": "people at a restaurant play with live sushi on the table", "video_id": "video10065", "sen_id": 226777}, {"caption": "a plate with a squid that has been prepared for eating but seems to still be alive is shown", "video_id": "video10065", "sen_id": 226778}, {"caption": "a man describes the dish in front of him as a squid that is still alive", "video_id": "video10065", "sen_id": 226779}, {"caption": "some talk show hosts interviewing a guest on a green couch", "video_id": "video11002", "sen_id": 226780}, {"caption": "a man in a black jacket and sunglasses is interviewed by a man and a woman while sitting on a green couch", "video_id": "video11002", "sen_id": 226781}, {"caption": "a musician is being interviewed on a talk show", "video_id": "video11002", "sen_id": 226782}, {"caption": "talk show with a male and female host the guest is a singer wearing glasses and has a gray beard", "video_id": "video11002", "sen_id": 226783}, {"caption": "a english talk show is discussing a singer s work the singer is wearing sunglasses indoors with grey hair there are two talk show hosts: one is a man", "video_id": "video11002", "sen_id": 226784}, {"caption": "a man with sunglasses and a beard is getting asked questions on a talk show", "video_id": "video11002", "sen_id": 226785}, {"caption": " in black and wearing glasses is being interviewed on a talk show by a middle aged man and woman", "video_id": "video11002", "sen_id": 226786}, {"caption": "an interview is going with a singer", "video_id": "video11002", "sen_id": 226787}, {"caption": "a man in a suit sitting on a green couch is being interviewed by two people", "video_id": "video11002", "sen_id": 226788}, {"caption": "a musician is interviewed on a british talk show", "video_id": "video11002", "sen_id": 226789}, {"caption": "a celebrity is being interviewed by a male and female anchors", "video_id": "video11002", "sen_id": 226790}, {"caption": "a composer cum singer interviewed on a program being asked by the hosts more about his other songs and compositions", "video_id": "video11002", "sen_id": 226791}, {"caption": "three people are talking on a talk show and talks about special songs", "video_id": "video11002", "sen_id": 226792}, {"caption": "there are two men and one woman sitting on a green couch in a colorful talk show setting", "video_id": "video11002", "sen_id": 226793}, {"caption": "a person is talking to a person on tv", "video_id": "video11002", "sen_id": 226794}, {"caption": "two hosts interview a song writer and musician", "video_id": "video11002", "sen_id": 226795}, {"caption": "a man and women asking question to a singer as do you have any special song", "video_id": "video11002", "sen_id": 226796}, {"caption": "a tv show of a man and woman interviewing an musician", "video_id": "video11002", "sen_id": 226797}, {"caption": "old bearded in shades talking to couple of hosts in talk show", "video_id": "video11002", "sen_id": 226798}, {"caption": "some people on a couch are sitting and talking", "video_id": "video11002", "sen_id": 226799}, {"caption": "a man is cooking stuffed crab shells in a pan", "video_id": "video10722", "sen_id": 226800}, {"caption": "a cook prepares a meal of crabs with a variety of ingredients", "video_id": "video10722", "sen_id": 226801}, {"caption": "the man is cooking some kind of food that is in boiling water", "video_id": "video10722", "sen_id": 226802}, {"caption": "a man is demonstrating how to fry seafood in oil in a pan on the stove", "video_id": "video10722", "sen_id": 226803}, {"caption": "a man discusses how to cook some food in a pan on a stove", "video_id": "video10722", "sen_id": 226804}, {"caption": "some one in a kitchen frying some crabs in the pan", "video_id": "video10722", "sen_id": 226805}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10722", "sen_id": 226806}, {"caption": "a guy is cooking a dish which looks like some sea shell or some fish when he turns them they look orange in color", "video_id": "video10722", "sen_id": 226807}, {"caption": "a man narrates as he turns over crabs in a pan", "video_id": "video10722", "sen_id": 226808}, {"caption": "foreign man giving tutorials for cooking shells", "video_id": "video10722", "sen_id": 226809}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10722", "sen_id": 226810}, {"caption": "the person turns over the food frying in the skillet", "video_id": "video10722", "sen_id": 226811}, {"caption": "a chef who is frying seafood describes and demonstrates his techniques", "video_id": "video10722", "sen_id": 226812}, {"caption": "on a fry pan with oil is frying the crab which is filled with some mixed vegetables", "video_id": "video10722", "sen_id": 226813}, {"caption": "a chef is doing some fry s in the kitchen show", "video_id": "video10722", "sen_id": 226814}, {"caption": "there is a man and he is coking in kichen", "video_id": "video10722", "sen_id": 226815}, {"caption": "a person cooking crab pieces in a frying pan", "video_id": "video10722", "sen_id": 226816}, {"caption": "an inhome chef works on a fried crab recipe in his kitchen", "video_id": "video10722", "sen_id": 226817}, {"caption": "a guy cooks and flips seafood over ina frying pan", "video_id": "video10722", "sen_id": 226818}, {"caption": "solmeone is cooking weird looking things in a pan", "video_id": "video10722", "sen_id": 226819}, {"caption": "a woman looks at her friend after she gets done with talking on the phone", "video_id": "video11786", "sen_id": 226820}, {"caption": "two brunette women sitting at a table one talking on a cell phone as a waitress in a white shirt walks up to the table", "video_id": "video11786", "sen_id": 226821}, {"caption": "a couple of women sitting at a table while one of them is talking on a phone", "video_id": "video11786", "sen_id": 226822}, {"caption": "a woman is talking on the phone while a waitress tries to take the order", "video_id": "video11786", "sen_id": 226823}, {"caption": "three women are in a cafe with one talking on a cell phone", "video_id": "video11786", "sen_id": 226824}, {"caption": "two women are sitting at a cafe when a third woman walks over to engage in a conversation", "video_id": "video11786", "sen_id": 226825}, {"caption": "two ladies are sitting in the bar and one lady is talking in a mobile and the other is watching her", "video_id": "video11786", "sen_id": 226826}, {"caption": "two women with dark hair are sitting in a restaurant and then a waitress walks over to them", "video_id": "video11786", "sen_id": 226827}, {"caption": "a waitress walks up to two woman sitting at a table while one talks on her cell phone", "video_id": "video11786", "sen_id": 226828}, {"caption": "a women oh her mobile and a girl beside with a menu card with her", "video_id": "video11786", "sen_id": 226829}, {"caption": "a pretty woman along with another lady in the bar", "video_id": "video11786", "sen_id": 226830}, {"caption": "one woman talking on a cell phone and another one mixing a drink at a restaurant table", "video_id": "video11786", "sen_id": 226831}, {"caption": "the two lady went to the coffe shop and one is talking phone with others and another lady is watching their activity", "video_id": "video11786", "sen_id": 226832}, {"caption": "two women are at a restaurant sitting at a table", "video_id": "video11786", "sen_id": 226833}, {"caption": "a waitress comes up to the table to attend to ladies sitting", "video_id": "video11786", "sen_id": 226834}, {"caption": "there is two females sitting at a table waiting to have their order taken while one is on the phone", "video_id": "video11786", "sen_id": 226835}, {"caption": "a woman holds her cell phone to her ear and scratches her nose with her other hand while sitting in front of a woman when a third woman walks by", "video_id": "video11786", "sen_id": 226836}, {"caption": "two women that look like sisters have a meal in a small cafe", "video_id": "video11786", "sen_id": 226837}, {"caption": "two women are sitting at a table one of them is talking on a cell phone they are approached by a third woman", "video_id": "video11786", "sen_id": 226838}, {"caption": "a woman in a white shirt walks over to the table where two other women are sitting", "video_id": "video11786", "sen_id": 226839}, {"caption": "a man is showing a power-point and discussing what it's about", "video_id": "video10422", "sen_id": 226840}, {"caption": "a man is going over the procedures for cycle detection", "video_id": "video10422", "sen_id": 226841}, {"caption": "a man is explaining a computer program to his viewers", "video_id": "video10422", "sen_id": 226842}, {"caption": "a man is giving a presentation for his students", "video_id": "video10422", "sen_id": 226843}, {"caption": "a man discusses using a program as he shows how to use the application", "video_id": "video10422", "sen_id": 226844}, {"caption": "a guy boringly talks about some mathematical and computer based information", "video_id": "video10422", "sen_id": 226845}, {"caption": "a male voice discusses how microsoft excel does directed cycle detection and uses computer generated illustrations to instruct viewers", "video_id": "video10422", "sen_id": 226846}, {"caption": "there is a man with white dressing sitting in a studio", "video_id": "video10422", "sen_id": 226847}, {"caption": "a person is explaining information on the computer screen", "video_id": "video10422", "sen_id": 226848}, {"caption": "a man is telling some thing a letters in the screen", "video_id": "video10422", "sen_id": 226849}, {"caption": "a man gives an details of a topic including cycle detection", "video_id": "video10422", "sen_id": 226850}, {"caption": "a man explains concepts about circular references in spreadsheets", "video_id": "video10422", "sen_id": 226851}, {"caption": "someone is working with a computer application softwae", "video_id": "video10422", "sen_id": 226852}, {"caption": "its presentation in which directed cycle application is explained", "video_id": "video10422", "sen_id": 226853}, {"caption": "man presenting his study on computer about some subject", "video_id": "video10422", "sen_id": 226854}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video10422", "sen_id": 226855}, {"caption": "a projection of a computer screen while an older man moves the mouse across the screen", "video_id": "video10422", "sen_id": 226856}, {"caption": "a man explaining about something on his personal computer", "video_id": "video10422", "sen_id": 226857}, {"caption": "directed cycle deletion application spread sheet recalculation", "video_id": "video10422", "sen_id": 226858}, {"caption": "a man showing how to use a function in microsoft excel", "video_id": "video10422", "sen_id": 226859}, {"caption": "a white man with dreads eats what he says is a goldfish", "video_id": "video12814", "sen_id": 226860}, {"caption": "a man with a blue shirt talking about something bitter he has eaten", "video_id": "video12814", "sen_id": 226861}, {"caption": "a white male with dreadlocks talking to the camera", "video_id": "video12814", "sen_id": 226862}, {"caption": "a man with weird hairstyle drunk something and expressing bad about about the drink", "video_id": "video12814", "sen_id": 226863}, {"caption": "there is a men in blue tshirt talking", "video_id": "video12814", "sen_id": 226864}, {"caption": "a man is drinking a alcohol and expressing", "video_id": "video12814", "sen_id": 226865}, {"caption": "a boy in blue dress drinking water speaking and opening mouth with long hairs at back", "video_id": "video12814", "sen_id": 226866}, {"caption": "a guy with dreadlocks is talking to the camera", "video_id": "video12814", "sen_id": 226867}, {"caption": "a guy in blue t-shirt has eaten some spicy stuff and drinking water to cool his tongue", "video_id": "video12814", "sen_id": 226868}, {"caption": "a man with long hair and beard talks in front of the camerahe wear blue shirt", "video_id": "video12814", "sen_id": 226869}, {"caption": "bearded guy with long hair talking to the camera", "video_id": "video12814", "sen_id": 226870}, {"caption": "a person is drinking a water and speaking", "video_id": "video12814", "sen_id": 226871}, {"caption": "a person is drinking something and reacting badly", "video_id": "video12814", "sen_id": 226872}, {"caption": "a french man is drinking water and saying something", "video_id": "video12814", "sen_id": 226873}, {"caption": "a man with long hair tied back wearing blue tshirt is talking", "video_id": "video12814", "sen_id": 226874}, {"caption": "a man with dread locks is drinking some water", "video_id": "video12814", "sen_id": 226875}, {"caption": "a man in blue t-shirt talking from a studio", "video_id": "video12814", "sen_id": 226876}, {"caption": "one smart man drinking water and talks something", "video_id": "video12814", "sen_id": 226877}, {"caption": "a guy with dreds sits in a couch and mkes faces", "video_id": "video12814", "sen_id": 226878}, {"caption": "a person with long hair in blue t shirt drinking water", "video_id": "video12814", "sen_id": 226879}, {"caption": "a slideshow explaining the reasons you should study biotechnology", "video_id": "video10564", "sen_id": 226880}, {"caption": "a slideshow on biotechnology and why it is a good subject to study", "video_id": "video10564", "sen_id": 226881}, {"caption": "a brief slideshow ad about why choosing biotech", "video_id": "video10564", "sen_id": 226882}, {"caption": "this clip is showing a video of a school project for science", "video_id": "video10564", "sen_id": 226883}, {"caption": "light moving around a glass looking glass describing biochemistry's function", "video_id": "video10564", "sen_id": 226884}, {"caption": "there is a presentation about why people should study biotechnology and it demonstrates that invisible life may be studied", "video_id": "video10564", "sen_id": 226885}, {"caption": "a video on why study biotechnology is telecast-ed", "video_id": "video10564", "sen_id": 226886}, {"caption": "there is something impressing matters goin on", "video_id": "video10564", "sen_id": 226887}, {"caption": "sentences flashing across the screen along with a moving sun", "video_id": "video10564", "sen_id": 226888}, {"caption": "the various aspects of using a biotechnology degree to see amazing things", "video_id": "video10564", "sen_id": 226889}, {"caption": "its a light beam you can see the invisible life", "video_id": "video10564", "sen_id": 226890}, {"caption": "a rounded moon type light is mocing", "video_id": "video10564", "sen_id": 226891}, {"caption": "a short slide show is displayed with music playing", "video_id": "video10564", "sen_id": 226892}, {"caption": "a big red fire ball burns in the sky brightly", "video_id": "video10564", "sen_id": 226893}, {"caption": "a person is showing small life form in the camera", "video_id": "video10564", "sen_id": 226894}, {"caption": "its about the biotechnology topic", "video_id": "video10564", "sen_id": 226895}, {"caption": "two sections displayed to music with the point of studying biology", "video_id": "video10564", "sen_id": 226896}, {"caption": "a type of round light like fire is being tiled all over the screen", "video_id": "video10564", "sen_id": 226897}, {"caption": "a scientist explains what is microbiology and what we can see", "video_id": "video10564", "sen_id": 226898}, {"caption": "someone gives reasons to study biotechnology including being able to see microorganisms", "video_id": "video10564", "sen_id": 226899}, {"caption": "someone enters their expensive vehicle and departs a luxury home", "video_id": "video10532", "sen_id": 226900}, {"caption": "a woman in orange colour saree watching the people who sit in the black car", "video_id": "video10532", "sen_id": 226901}, {"caption": "a women is looking into a microscope and then checking on monitor", "video_id": "video10532", "sen_id": 226902}, {"caption": "a scene of a tamil film is playing", "video_id": "video10532", "sen_id": 226903}, {"caption": "two people get in a car as a woman watches", "video_id": "video10532", "sen_id": 226904}, {"caption": "driver opens the door for the owner and drive away", "video_id": "video10532", "sen_id": 226905}, {"caption": "a man went inside a car and a woman is looking that", "video_id": "video10532", "sen_id": 226906}, {"caption": "the few men are sitting in the car and the women is watching them", "video_id": "video10532", "sen_id": 226907}, {"caption": "an indian driver lets people into his car while a woman looks on", "video_id": "video10532", "sen_id": 226908}, {"caption": "a men are getting in a black car and a woman is watching out a window", "video_id": "video10532", "sen_id": 226909}, {"caption": "a woman in a robe is looking at something", "video_id": "video10532", "sen_id": 226910}, {"caption": "there is a man getting his car at the morning", "video_id": "video10532", "sen_id": 226911}, {"caption": "a car driver opens the car door and his boss gets into the car and a lady radhika keeps her hand on chin thinking where her husband went in car", "video_id": "video10532", "sen_id": 226912}, {"caption": "women in sari watching surprisingly a guy boarding a car", "video_id": "video10532", "sen_id": 226913}, {"caption": "a man going on a old car with a driver and one assistanta female looking from near-by balcony and giving a remarks by viewing this", "video_id": "video10532", "sen_id": 226914}, {"caption": "a woman with a robe is looking at something", "video_id": "video10532", "sen_id": 226915}, {"caption": "there is a man getting inside the car", "video_id": "video10532", "sen_id": 226916}, {"caption": "in a tamil movie hero take car and heroine watches it", "video_id": "video10532", "sen_id": 226917}, {"caption": "heroine stands on the top she keeps her hand on the chin", "video_id": "video10532", "sen_id": 226918}, {"caption": "as a man jumps into his blue rolls royce a woman looks on from the balcony", "video_id": "video10532", "sen_id": 226919}, {"caption": "a famous male hip hop artist sings while a popular female pop star dances", "video_id": "video12064", "sen_id": 226920}, {"caption": "drake singing his song in a music video", "video_id": "video12064", "sen_id": 226921}, {"caption": "an african man sings a song while two dancers move to the music", "video_id": "video12064", "sen_id": 226922}, {"caption": "a man and woman dancing and singing in water", "video_id": "video12064", "sen_id": 226923}, {"caption": "drake is singing on music video while people are dancers in a form of art", "video_id": "video12064", "sen_id": 226924}, {"caption": "a music video for the singer drake with dancers in front of a dark cliff", "video_id": "video12064", "sen_id": 226925}, {"caption": "a young lady with short blonde hair is dancing as a man is singing", "video_id": "video12064", "sen_id": 226926}, {"caption": "drake is singing while beyonce is dancing in a music video", "video_id": "video12064", "sen_id": 226927}, {"caption": "a singer is singing love songs about love", "video_id": "video12064", "sen_id": 226928}, {"caption": "the rapper drake is singing in a music video", "video_id": "video12064", "sen_id": 226929}, {"caption": "a singer is singing a song and the couple are dancing for that song to match their emotions in a awesome manner", "video_id": "video12064", "sen_id": 226930}, {"caption": "a man is talking and dancing", "video_id": "video12064", "sen_id": 226931}, {"caption": "the celebrity drake is singing in a video while beyonce is modeling", "video_id": "video12064", "sen_id": 226932}, {"caption": "a man wearing a black shirt and gold neclaces is singing", "video_id": "video12064", "sen_id": 226933}, {"caption": "drake performs a music video with sexy women in the background", "video_id": "video12064", "sen_id": 226934}, {"caption": "a man and woman in front of a black screen singing and dancing", "video_id": "video12064", "sen_id": 226935}, {"caption": "a man and a woman are singing during a music video", "video_id": "video12064", "sen_id": 226936}, {"caption": "men singing the song ans women in black dancing and both of them dancing", "video_id": "video12064", "sen_id": 226937}, {"caption": "a music video of drake singing in the music video there are women dressing in silk curtains dancing", "video_id": "video12064", "sen_id": 226938}, {"caption": "drake performs with suggestive backup dancers in his music video", "video_id": "video12064", "sen_id": 226939}, {"caption": "an animation of two animals snuggling against each other", "video_id": "video12205", "sen_id": 226940}, {"caption": "cartoon of a lion cub that plays with lambs and he nuzzles with one in it", "video_id": "video12205", "sen_id": 226941}, {"caption": "a lion jumping on a sheep's back and snuggling with it", "video_id": "video12205", "sen_id": 226942}, {"caption": "a cartoon of a lion cub is rubbing a white sheep which is crying", "video_id": "video12205", "sen_id": 226943}, {"caption": "this is a scene from what appears to be a disney animated feature showing a lion cub consoling a sad sheep", "video_id": "video12205", "sen_id": 226944}, {"caption": "a cartoon of a little tiger cub and a sheep cuddling together", "video_id": "video12205", "sen_id": 226945}, {"caption": "a cartoon of animals where a cat rubs it's face on a sheep", "video_id": "video12205", "sen_id": 226946}, {"caption": "an animated lion cuddles up to a white lamb", "video_id": "video12205", "sen_id": 226947}, {"caption": "a lion cub jumps over a lamb and they become friends", "video_id": "video12205", "sen_id": 226948}, {"caption": "a lion is cheering up a sheep", "video_id": "video12205", "sen_id": 226949}, {"caption": "a baby lion see a sheep crying and goes over to comfort her with a cute nuzzle", "video_id": "video12205", "sen_id": 226950}, {"caption": "in a cartoon show a goat is crying and the little lion is encourage him", "video_id": "video12205", "sen_id": 226951}, {"caption": "a cartoon lion comforts a sheep that was sad", "video_id": "video12205", "sen_id": 226952}, {"caption": "a cartoon of a lion and sheep snuggling together", "video_id": "video12205", "sen_id": 226953}, {"caption": "disney s (1952) lambert the sheepish lion", "video_id": "video12205", "sen_id": 226954}, {"caption": "there is a dog playing with a goat", "video_id": "video12205", "sen_id": 226955}, {"caption": "a baby lion cub has woke a sleeping sheep the lion cuddles and makes friends with the sheep", "video_id": "video12205", "sen_id": 226956}, {"caption": "a cartoon of a lion and a sheep becoming friends", "video_id": "video12205", "sen_id": 226957}, {"caption": "a lion cub looking at a sheep crying and jupping on him and cuddling to chear him up", "video_id": "video12205", "sen_id": 226958}, {"caption": "the animation movie starts a goat and a little lion is there", "video_id": "video12205", "sen_id": 226959}, {"caption": "this man is an english teacher introducing people to his crash course", "video_id": "video12580", "sen_id": 226960}, {"caption": "a man in a green sweater and sneakers talks about crash course literature", "video_id": "video12580", "sen_id": 226961}, {"caption": "john green is an english teacher talking about seasons in the class and wanting to be friends", "video_id": "video12580", "sen_id": 226962}, {"caption": "a man prepares to give a series of lectures on varying topics", "video_id": "video12580", "sen_id": 226963}, {"caption": "john green sitting with his feet on the desk talking about crash course", "video_id": "video12580", "sen_id": 226964}, {"caption": "an english teacher with an animated demeanor talks about various elements of his course", "video_id": "video12580", "sen_id": 226965}, {"caption": "a man sitting in an empty space and a bookcase and laptop slides in as he is talking", "video_id": "video12580", "sen_id": 226966}, {"caption": "there is a man in green dressing talking nearby a shelf", "video_id": "video12580", "sen_id": 226967}, {"caption": "a boy explains about some books he puts his legs on the table", "video_id": "video12580", "sen_id": 226968}, {"caption": "a person is explaining about the crash courses like history and psycology", "video_id": "video12580", "sen_id": 226969}, {"caption": "a dark-haired guy wearing a green sweater and wire-framed glasses is sitting near a potted plant and book shelf while talking", "video_id": "video12580", "sen_id": 226970}, {"caption": "a man speaking about the reading of books in a library", "video_id": "video12580", "sen_id": 226971}, {"caption": "mr john greens talks about crashes courses in english science and maths etc", "video_id": "video12580", "sen_id": 226972}, {"caption": "male english teaching wearing a green sweater and sneakers", "video_id": "video12580", "sen_id": 226973}, {"caption": "a man in glasses sits at a desk on which there is a computer", "video_id": "video12580", "sen_id": 226974}, {"caption": "a man with glasses is speaking about something", "video_id": "video12580", "sen_id": 226975}, {"caption": "a man in a green sweater sits in a white room while an office materializes around him and he talk about his show", "video_id": "video12580", "sen_id": 226976}, {"caption": "an english teacher highlights the features of his english crash courses with sample screen shots", "video_id": "video12580", "sen_id": 226977}, {"caption": "a man wearing a sweater and jeans introducing his line of videos and then promoting the other seasons thereof", "video_id": "video12580", "sen_id": 226978}, {"caption": "a man in a green sweater and glasses is talking saying he is a teacher", "video_id": "video12580", "sen_id": 226979}, {"caption": "a woman in a grey blouse talking about 3d films and 3d glasses", "video_id": "video12512", "sen_id": 226980}, {"caption": "a woman stands in front of a green screen and talks about 3d technology", "video_id": "video12512", "sen_id": 226981}, {"caption": "a girl wearing a grey shirt is talking about about 3-d glasses", "video_id": "video12512", "sen_id": 226982}, {"caption": "a woman with long brown hair and wearing a gray shirt is talking", "video_id": "video12512", "sen_id": 226983}, {"caption": "a woman talking about james cameron and the wonder of 3d movies and glasses", "video_id": "video12512", "sen_id": 226984}, {"caption": "erin white is talking about james cameron and 3d glasses", "video_id": "video12512", "sen_id": 226985}, {"caption": "a man in a beard some 3d glasses and a woman showing a movie poster and a man in a beard", "video_id": "video12512", "sen_id": 226986}, {"caption": "a women in green dress is saying something in tv programme", "video_id": "video12512", "sen_id": 226987}, {"caption": "james cameron talks 3d future one nice girl talking", "video_id": "video12512", "sen_id": 226988}, {"caption": "man with glasses sitting and brunette woman talking about avatar in 3d", "video_id": "video12512", "sen_id": 226989}, {"caption": "a woman talks about the movie avatar and 3d in general", "video_id": "video12512", "sen_id": 226990}, {"caption": "a lady is talking about the world famous movie avatar", "video_id": "video12512", "sen_id": 226991}, {"caption": "there is a women telling new of movie", "video_id": "video12512", "sen_id": 226992}, {"caption": "a woman is talking about a movie of a avatar", "video_id": "video12512", "sen_id": 226993}, {"caption": "a old man still image and girl wearing ash color dress speaking and still picture displaying on screen", "video_id": "video12512", "sen_id": 226994}, {"caption": "a couple scenes of things are being shown", "video_id": "video12512", "sen_id": 226995}, {"caption": "there is a women talking from the studio", "video_id": "video12512", "sen_id": 226996}, {"caption": "director has stated that 3d formatted movies will eventually be the standard", "video_id": "video12512", "sen_id": 226997}, {"caption": "sexy brunette talking about james cameron s new 3d version googles", "video_id": "video12512", "sen_id": 226998}, {"caption": "a crowd of people with glasses are standing around", "video_id": "video12512", "sen_id": 226999}, {"caption": "a man is interviewing is edward snowden about nsa surveillance", "video_id": "video10487", "sen_id": 227000}, {"caption": "two men with glasses having a conversation with a black background", "video_id": "video10487", "sen_id": 227001}, {"caption": "edward snowden talking about his views on leaking", "video_id": "video10487", "sen_id": 227002}, {"caption": "a man in glasses and a black shirt discusses his views on surveillance", "video_id": "video10487", "sen_id": 227003}, {"caption": "edward snowden is being interviewed by an older man in a black suit wearing glasses discussing surveillance", "video_id": "video10487", "sen_id": 227004}, {"caption": "edward snowden is interviewed about surveillance and explains his views have not changed", "video_id": "video10487", "sen_id": 227005}, {"caption": "man with brown hair and glasses speaking against surveilance", "video_id": "video10487", "sen_id": 227006}, {"caption": "a man in glasses and a black shirt is speaking somberly", "video_id": "video10487", "sen_id": 227007}, {"caption": "a man discusses surveillance while being interviewed", "video_id": "video10487", "sen_id": 227008}, {"caption": "snowden being interviewed in front of black screen", "video_id": "video10487", "sen_id": 227009}, {"caption": "a man in black talking about something calmly", "video_id": "video10487", "sen_id": 227010}, {"caption": "the men wearing eye glases sit and talk to one another", "video_id": "video10487", "sen_id": 227011}, {"caption": "a news reporter does a interivew with an american traitor", "video_id": "video10487", "sen_id": 227012}, {"caption": "man talks about survellience issues on camera", "video_id": "video10487", "sen_id": 227013}, {"caption": "a person asking questions to a person about something", "video_id": "video10487", "sen_id": 227014}, {"caption": "during an interview edward snowden answers a question", "video_id": "video10487", "sen_id": 227015}, {"caption": "a man with glasses and short brown hair is talking with an older man", "video_id": "video10487", "sen_id": 227016}, {"caption": "edward snowden discusses his opinions on surveillance in interview with host", "video_id": "video10487", "sen_id": 227017}, {"caption": "two people are discussing survallience in what seems like an interview", "video_id": "video10487", "sen_id": 227018}, {"caption": "a man with glasses is speaking about something", "video_id": "video10487", "sen_id": 227019}, {"caption": "someone is talking about metaphase and chromosomes", "video_id": "video11244", "sen_id": 227020}, {"caption": "a person describes a scientific principle that is being demonstrated in an animation", "video_id": "video11244", "sen_id": 227021}, {"caption": "a video from scishow on youtube about cell replication", "video_id": "video11244", "sen_id": 227022}, {"caption": "cellular phases are shown in the presentation for science", "video_id": "video11244", "sen_id": 227023}, {"caption": "a yellow circle is being used to demonstrate the metaphase of a cell", "video_id": "video11244", "sen_id": 227024}, {"caption": "the metaphase of cellular division showing the chromosomes", "video_id": "video11244", "sen_id": 227025}, {"caption": "a yellow circle with motor proteins depicting metaphase", "video_id": "video11244", "sen_id": 227026}, {"caption": "a blue flag with a yellow dot in the middle and purple banner that says metaphase", "video_id": "video11244", "sen_id": 227027}, {"caption": "there is a yellow circle it contains some illustration for explaining meta phase", "video_id": "video11244", "sen_id": 227028}, {"caption": "metaphase motor proteins(centromere - associated protein e) in a diagram", "video_id": "video11244", "sen_id": 227029}, {"caption": "a man lectures about genetics and the changes that go on inside cells", "video_id": "video11244", "sen_id": 227030}, {"caption": "a man is explaining about the metaphase called motor protiens", "video_id": "video11244", "sen_id": 227031}, {"caption": "something is moving on screen very fast cannot recognize what it is", "video_id": "video11244", "sen_id": 227032}, {"caption": "a yellow circle with the word metaphase above it and various shapes inside of it", "video_id": "video11244", "sen_id": 227033}, {"caption": "a cell is hovering on screen as a scientist explains its process", "video_id": "video11244", "sen_id": 227034}, {"caption": "a light blue colour background with yellow colour ball in the middle", "video_id": "video11244", "sen_id": 227035}, {"caption": "a man is explaining the metaphase of chromosome on a power point", "video_id": "video11244", "sen_id": 227036}, {"caption": "a short clip of a man talking about the metaphase of a chromosome", "video_id": "video11244", "sen_id": 227037}, {"caption": "a yellow circle sits in the middle of the screen with a blue background", "video_id": "video11244", "sen_id": 227038}, {"caption": "a diagram of a cell is being used to demonstrate how metaphase occurs", "video_id": "video11244", "sen_id": 227039}, {"caption": "a man in a kitchen is cooking what looks like chicken", "video_id": "video10146", "sen_id": 227040}, {"caption": "flames lap a skillet as chicken is being prepared as described by the cook", "video_id": "video10146", "sen_id": 227041}, {"caption": "a man in a white shirt is cooking in a professional kitchen", "video_id": "video10146", "sen_id": 227042}, {"caption": "a man showing how to cook some meat and add seasonings", "video_id": "video10146", "sen_id": 227043}, {"caption": "male chef is cooking some chicken in a pan over a stove", "video_id": "video10146", "sen_id": 227044}, {"caption": "a man in the kitchen cooking meat in a skillet", "video_id": "video10146", "sen_id": 227045}, {"caption": "a man in white dress preparing some dish in a kitchen", "video_id": "video10146", "sen_id": 227046}, {"caption": "a man wearing white color dress cooking bread", "video_id": "video10146", "sen_id": 227047}, {"caption": "one man cooking in kitchen some tasty recipes", "video_id": "video10146", "sen_id": 227048}, {"caption": "the chef in white kitchen uniform pan fries meat over high flame as he seasons the dish", "video_id": "video10146", "sen_id": 227049}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video10146", "sen_id": 227050}, {"caption": "in the kitchen a man in white shirt making a dish", "video_id": "video10146", "sen_id": 227051}, {"caption": "a man is cooking food in a skillet on a stove with a high flame", "video_id": "video10146", "sen_id": 227052}, {"caption": "a man explain and how is prepare the food", "video_id": "video10146", "sen_id": 227053}, {"caption": "a old man white dress wearing frying shaking dish inside kitchen preparing displaying on screen", "video_id": "video10146", "sen_id": 227054}, {"caption": "someone is frying up some food in a pan", "video_id": "video10146", "sen_id": 227055}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video10146", "sen_id": 227056}, {"caption": "a cook describing how to cook a dish on the stove while adding dijon and garlic", "video_id": "video10146", "sen_id": 227057}, {"caption": "a chef describes and demonstrates a meat recipe he is working on", "video_id": "video10146", "sen_id": 227058}, {"caption": "a fat person with white dress is cooking some dish in his kitchen", "video_id": "video10146", "sen_id": 227059}, {"caption": "a man giving a monkey a bath in a small green bin", "video_id": "video10118", "sen_id": 227060}, {"caption": "a man in a zoo gives a couple of monkees baths", "video_id": "video10118", "sen_id": 227061}, {"caption": "a man in a yellow shirt gives a monkey a bath in a green tub of water", "video_id": "video10118", "sen_id": 227062}, {"caption": "a picture of a man wearing a yellow shirt giving a beige monkey a bath in a green tub by using a yellow hose and later two monkeys sit on a pink chair", "video_id": "video10118", "sen_id": 227063}, {"caption": "a man bathes a monkey another monkey watches him", "video_id": "video10118", "sen_id": 227064}, {"caption": "a man in yellow shirt is giving bath to a monkey", "video_id": "video10118", "sen_id": 227065}, {"caption": "a moneky is being given a bath in a green tub while other monekys are moving around", "video_id": "video10118", "sen_id": 227066}, {"caption": "one man put monkey in tub for bathing", "video_id": "video10118", "sen_id": 227067}, {"caption": "a man is bathing a monkey in a big water tub", "video_id": "video10118", "sen_id": 227068}, {"caption": "an yellow t shirt man giving bath to monkey in tub pouring water cleanning", "video_id": "video10118", "sen_id": 227069}, {"caption": "a man in yellow t-shirt bathing a monkey in a bucket water", "video_id": "video10118", "sen_id": 227070}, {"caption": "a men in yellow tshirt giving bath for monkeys", "video_id": "video10118", "sen_id": 227071}, {"caption": "one monkey take bath one man is helping", "video_id": "video10118", "sen_id": 227072}, {"caption": "a man washes his pets in a green bucket full of water", "video_id": "video10118", "sen_id": 227073}, {"caption": "a yello t shirt wearing person bathing a money and make it to sit on a rose color chair and leave the place", "video_id": "video10118", "sen_id": 227074}, {"caption": "a man in yellow t-shirt is giving bath to a monkey", "video_id": "video10118", "sen_id": 227075}, {"caption": "a man is bathing a monkey in the tub and another one stands near to it", "video_id": "video10118", "sen_id": 227076}, {"caption": "a man is give a bath to the monkes", "video_id": "video10118", "sen_id": 227077}, {"caption": "man with yellow t shirt bathing monkeys in a green square bucket", "video_id": "video10118", "sen_id": 227078}, {"caption": "a guy in a yellow shirt is washing a monkey", "video_id": "video10118", "sen_id": 227079}, {"caption": "man giving commentary and making jokes about historical people dying on the toilet", "video_id": "video11478", "sen_id": 227080}, {"caption": "a man is trying to tell a joke while explaining the death of different people", "video_id": "video11478", "sen_id": 227081}, {"caption": "a man in a coat and jacket is giving facts about toilet deaths", "video_id": "video11478", "sen_id": 227082}, {"caption": "an anchor makes bad puns while discussing the death of catherine the great", "video_id": "video11478", "sen_id": 227083}, {"caption": "a man lectures on the history of toilets in america", "video_id": "video11478", "sen_id": 227084}, {"caption": "a guy in a loose fitting jacket talks about history", "video_id": "video11478", "sen_id": 227085}, {"caption": "a man is speaking about the death of catherine the great", "video_id": "video11478", "sen_id": 227086}, {"caption": "a man is speaking on a video about famous toilet deaths", "video_id": "video11478", "sen_id": 227087}, {"caption": "a guy in grey shirt and spectacles is talking to somebody here", "video_id": "video11478", "sen_id": 227088}, {"caption": "there is a suit man talking from the studio", "video_id": "video11478", "sen_id": 227089}, {"caption": "a man is sitting and talking about people dying on the toilet", "video_id": "video11478", "sen_id": 227090}, {"caption": "a man gives a lecture on the history of catherine the great", "video_id": "video11478", "sen_id": 227091}, {"caption": "a globe beside man sitting in blue shirt wearing speaking waving hand displaying on screen", "video_id": "video11478", "sen_id": 227092}, {"caption": "a man with spectacles and wearing a grey coloured coat is saying something", "video_id": "video11478", "sen_id": 227093}, {"caption": "there is a men wearing brown suit and talking", "video_id": "video11478", "sen_id": 227094}, {"caption": "a guy in glasses is sitting down and talking", "video_id": "video11478", "sen_id": 227095}, {"caption": "a suit man with specs talking in front of a laptop", "video_id": "video11478", "sen_id": 227096}, {"caption": "a man talking and wearing grey color coat and specs", "video_id": "video11478", "sen_id": 227097}, {"caption": "a man in glasses and wearing a suit with his shirt unbuttoned at the collar humorously discusses how catherine the great and other well known people died on the toilet", "video_id": "video11478", "sen_id": 227098}, {"caption": "a blue colour dress wearing man sitting beside globe and speaking displaying on screen", "video_id": "video11478", "sen_id": 227099}, {"caption": "a man is explaining why he loves being a dad", "video_id": "video12222", "sen_id": 227100}, {"caption": "a man talks to and spends time with a young girl", "video_id": "video12222", "sen_id": 227101}, {"caption": "will farrel is acting as a father figure for a movie", "video_id": "video12222", "sen_id": 227102}, {"caption": "a man interacts with a young girl that is his daughter", "video_id": "video12222", "sen_id": 227103}, {"caption": "a man and a young girl interact together in various settings", "video_id": "video12222", "sen_id": 227104}, {"caption": "a will ferrell movie trailer with mark wahlberg", "video_id": "video12222", "sen_id": 227105}, {"caption": "a man enjoys working with kids very often", "video_id": "video12222", "sen_id": 227106}, {"caption": "will ferrel in his movie where he is a step dad", "video_id": "video12222", "sen_id": 227107}, {"caption": "will farell plays a father in the trailer for his new movie", "video_id": "video12222", "sen_id": 227108}, {"caption": "will ferrell is demonstrating how much he wants to be a dad he imagines reffing a basketball game and acting as a scout master", "video_id": "video12222", "sen_id": 227109}, {"caption": "a dad talking about his joys of fatherhood", "video_id": "video12222", "sen_id": 227110}, {"caption": "a movie preview on a film with will ferral", "video_id": "video12222", "sen_id": 227111}, {"caption": "a man makes a voice over while a collection of moments are shown a man talks to a little girl about a drawing the girl has done", "video_id": "video12222", "sen_id": 227112}, {"caption": "trailer of a family comedy starring will farell", "video_id": "video12222", "sen_id": 227113}, {"caption": "a man with kids playing sports and camping and a little girl sitting on his lap reading", "video_id": "video12222", "sen_id": 227114}, {"caption": "there is a suit man enjoying and leaving", "video_id": "video12222", "sen_id": 227115}, {"caption": "a man loving the act of being a father", "video_id": "video12222", "sen_id": 227116}, {"caption": "paramount red granite pictures father and daughter", "video_id": "video12222", "sen_id": 227117}, {"caption": "a dad takes a picture off from the refrigerator and kneels down next to a small female child", "video_id": "video12222", "sen_id": 227118}, {"caption": "a man is sitting and talking to his daughter", "video_id": "video12222", "sen_id": 227119}, {"caption": "a video trailer for the move avatar", "video_id": "video12361", "sen_id": 227120}, {"caption": "the trailer for avatar 2 thats coming to theaters in december", "video_id": "video12361", "sen_id": 227121}, {"caption": "avatar movie trailerfilm starts in theaters on december 18th check you local listings", "video_id": "video12361", "sen_id": 227122}, {"caption": "a blue alien warrior cries as her world is destroyed by fire caused humans and their aircraft but loves and connects with one of them at the end", "video_id": "video12361", "sen_id": 227123}, {"caption": "otherworldly creatures fight an army of future soldiers in the jungle", "video_id": "video12361", "sen_id": 227124}, {"caption": "clips from the move avatar which ends in credits", "video_id": "video12361", "sen_id": 227125}, {"caption": "a group of alien beings are involved in a major battle with men flying various kinds of ships", "video_id": "video12361", "sen_id": 227126}, {"caption": "a group of flying airships move toward a target while firing rockets", "video_id": "video12361", "sen_id": 227127}, {"caption": "a group of blue creatures try to outrun a dinosaur type animal", "video_id": "video12361", "sen_id": 227128}, {"caption": "a movie trailer featuring a blue alien race on their home plant is being released on december 18th", "video_id": "video12361", "sen_id": 227129}, {"caption": "a trailer showing action scenes from the movie avatar is shown", "video_id": "video12361", "sen_id": 227130}, {"caption": "a movie trailer for avatar coming out december 18th", "video_id": "video12361", "sen_id": 227131}, {"caption": "avatar time one girl and one boy with bow and arrow", "video_id": "video12361", "sen_id": 227132}, {"caption": "a cartoon games video guns firing at animal and cartoon doll meeting boy and girl each other displaying on screen", "video_id": "video12361", "sen_id": 227133}, {"caption": "in a forest two group of people are fighting each other their are blue in colour", "video_id": "video12361", "sen_id": 227134}, {"caption": "it was movie with consist of animated humans and it is going to be releases on december 18th", "video_id": "video12361", "sen_id": 227135}, {"caption": "this is the part of a famous movie avavtar trailer", "video_id": "video12361", "sen_id": 227136}, {"caption": "a scene of a avatar film is playing in the screen", "video_id": "video12361", "sen_id": 227137}, {"caption": "a cartoon video clip shown on the screen firing and animal chasing", "video_id": "video12361", "sen_id": 227138}, {"caption": "some scenes from the movie avatar are being shown", "video_id": "video12361", "sen_id": 227139}, {"caption": "three women are dancing with umbrellas in front of cardboard houses", "video_id": "video11766", "sen_id": 227140}, {"caption": "a group of people are dancing around with umbrellas", "video_id": "video11766", "sen_id": 227141}, {"caption": "three colorfully dressed girls are using umbrellas in a dance routine", "video_id": "video11766", "sen_id": 227142}, {"caption": "the people on the set dance with brightly colored umbrellas", "video_id": "video11766", "sen_id": 227143}, {"caption": "three women are dancing with parasolsumbrellas in front of cardboard cutouts of brightly-colored houses", "video_id": "video11766", "sen_id": 227144}, {"caption": "three people dancing in front of poorly drawn houses and trees", "video_id": "video11766", "sen_id": 227145}, {"caption": "some girls dancing with umbrellas in front of giant house drawings", "video_id": "video11766", "sen_id": 227146}, {"caption": "three people are dancing with umbrellas in front of colorful cardboard trees and houses", "video_id": "video11766", "sen_id": 227147}, {"caption": "three women holding umbrellas are dancing in front of the camera", "video_id": "video11766", "sen_id": 227148}, {"caption": "three young girls dance around with colorful umbrellas", "video_id": "video11766", "sen_id": 227149}, {"caption": "young ladies dance with umbrellas in front of a whimsical background of houses drawn in a childlike style", "video_id": "video11766", "sen_id": 227150}, {"caption": "teenage girls dancing with an umbrella on a colourful set", "video_id": "video11766", "sen_id": 227151}, {"caption": "three women are dancing and singing with umbrellas", "video_id": "video11766", "sen_id": 227152}, {"caption": "girls are dancing in front of a decorated stage and holding umbrellas", "video_id": "video11766", "sen_id": 227153}, {"caption": "three women dancing with umbrellas", "video_id": "video11766", "sen_id": 227154}, {"caption": "three women with umbrella performing a beautiful dance", "video_id": "video11766", "sen_id": 227155}, {"caption": "women dancing around with unberrals with colorful scene in the background", "video_id": "video11766", "sen_id": 227156}, {"caption": "two white girls and one black girl are dancing with umbrellas in all position in front of art cottages a red car is coming", "video_id": "video11766", "sen_id": 227157}, {"caption": "three girls with umbrellas dance in on a stage depicting three small houses and a car on the road", "video_id": "video11766", "sen_id": 227158}, {"caption": "three women with umbrellas are dancing around", "video_id": "video11766", "sen_id": 227159}, {"caption": "in a kitchensomeone is slicing a vegetable", "video_id": "video10657", "sen_id": 227160}, {"caption": "on a cutting board someone is peeling a cucumber", "video_id": "video10657", "sen_id": 227161}, {"caption": "a man holding a cucumber explains how to peel it", "video_id": "video10657", "sen_id": 227162}, {"caption": "a man narrates while he peels an english cucumber", "video_id": "video10657", "sen_id": 227163}, {"caption": "a man is peeling an english cucumber by running a vegetable peeler down the length of it from one end to the other", "video_id": "video10657", "sen_id": 227164}, {"caption": "ingredients for preparing food are kept in a table", "video_id": "video10657", "sen_id": 227165}, {"caption": "cucumber is turned and peal off", "video_id": "video10657", "sen_id": 227166}, {"caption": "cucumber is taken and the skin remover is used to remove the skins", "video_id": "video10657", "sen_id": 227167}, {"caption": "the person is slicing the cucumber which is placed on the table", "video_id": "video10657", "sen_id": 227168}, {"caption": "man is prepping a cucumber by peeling it", "video_id": "video10657", "sen_id": 227169}, {"caption": "a man giving a tutorial with a recipe comprising of an english cucumber", "video_id": "video10657", "sen_id": 227170}, {"caption": "someone is shaving off the skin of a cucumber with a peeling utensil", "video_id": "video10657", "sen_id": 227171}, {"caption": "a man is doing peeling a cucumber with peeler", "video_id": "video10657", "sen_id": 227172}, {"caption": "a man shows a large cucumber on table and begins peeling off skin", "video_id": "video10657", "sen_id": 227173}, {"caption": "a man is peeling a cucumber on a wood table", "video_id": "video10657", "sen_id": 227174}, {"caption": "someone is having green cucumber and removing surface area of the cucumber", "video_id": "video10657", "sen_id": 227175}, {"caption": "a man peeling an english cucumber on a table", "video_id": "video10657", "sen_id": 227176}, {"caption": "curd then a long cucumber is peeled all sides using peeler", "video_id": "video10657", "sen_id": 227177}, {"caption": "a man is peeling an english green cucumber with a peeler", "video_id": "video10657", "sen_id": 227178}, {"caption": "a person is peeling a vegetable inside a place", "video_id": "video10657", "sen_id": 227179}, {"caption": "in a kitchen someone is mixing a red sauce into some vegetables", "video_id": "video11085", "sen_id": 227180}, {"caption": "a person is mixing the noodles with the sauce by hand with gloves on", "video_id": "video11085", "sen_id": 227181}, {"caption": "a woman uses her hand to blend the sauce in with the spaghetti noodles in the metal bowl", "video_id": "video11085", "sen_id": 227182}, {"caption": "a person is wearing a plastic glove and is mixing noodles in a bowl", "video_id": "video11085", "sen_id": 227183}, {"caption": "a person is tossing cabbage with sauce in a bowl", "video_id": "video11085", "sen_id": 227184}, {"caption": "someone is mixing a up food in a metal bowl", "video_id": "video11085", "sen_id": 227185}, {"caption": "a person is mixing noodles with sauce", "video_id": "video11085", "sen_id": 227186}, {"caption": "person mixes what appears to be some kind of spaghetti looking food with some kind of red sauce", "video_id": "video11085", "sen_id": 227187}, {"caption": "a woman mixes together pasta and a red sauce with her hands while wearing gloves", "video_id": "video11085", "sen_id": 227188}, {"caption": "in a metal mixing bowl in a kitchen a woman mixes together kimchee", "video_id": "video11085", "sen_id": 227189}, {"caption": "a person is stirring some food in a bowl", "video_id": "video11085", "sen_id": 227190}, {"caption": "someone is mixing spaghetti with a red sauce in a silver colored bowl", "video_id": "video11085", "sen_id": 227191}, {"caption": "in wide pan noodles are added to it dark red substance is needed", "video_id": "video11085", "sen_id": 227192}, {"caption": "a cook uses her hand with a plastic glove to mix sauce into spaghetti", "video_id": "video11085", "sen_id": 227193}, {"caption": "worker seen mixing some sort of mixture that looks a lot like spaghetti and tomato sauce", "video_id": "video11085", "sen_id": 227194}, {"caption": "someone preparing noodles with sauce in a large round vessel", "video_id": "video11085", "sen_id": 227195}, {"caption": "a person mixing different ingredients in a bowl with their hands", "video_id": "video11085", "sen_id": 227196}, {"caption": "a hand with a glove on mixes a red sauce into vegetable strips", "video_id": "video11085", "sen_id": 227197}, {"caption": "someone is mixing pasta and red sauce in a silver bowl using a loved hand", "video_id": "video11085", "sen_id": 227198}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11085", "sen_id": 227199}, {"caption": "a woman talking about her relationship issues", "video_id": "video12298", "sen_id": 227200}, {"caption": "a young lady is discussing her life in front of a large group", "video_id": "video12298", "sen_id": 227201}, {"caption": "a woman standing on a red stage talking", "video_id": "video12298", "sen_id": 227202}, {"caption": "a woman wearing a headset microphone and horizontally striped black-and-white jacket stands on a red stage with blue-green draperies speaking to an attentive audience", "video_id": "video12298", "sen_id": 227203}, {"caption": "a woman gives a lecture to an auditorium full of people", "video_id": "video12298", "sen_id": 227204}, {"caption": "a lady on stage delivering a powerful speech", "video_id": "video12298", "sen_id": 227205}, {"caption": "a woman gives a lecture to a small group of people in an auditorium", "video_id": "video12298", "sen_id": 227206}, {"caption": "a light brown haired woman with a striped cardigan talks about infidelity in her relationship", "video_id": "video12298", "sen_id": 227207}, {"caption": "a woman gives a talk on a stage before a seated audience", "video_id": "video12298", "sen_id": 227208}, {"caption": "a woman on a stage in front of a crowd giving a lecture", "video_id": "video12298", "sen_id": 227209}, {"caption": "there is a woman in black speaking on a stage with a blue fabric backdrop to an audience", "video_id": "video12298", "sen_id": 227210}, {"caption": "a woman stands on a stage talking to a large crowd of people", "video_id": "video12298", "sen_id": 227211}, {"caption": "a lady on the stage of red carpet addressing to the audience crowd", "video_id": "video12298", "sen_id": 227212}, {"caption": "a woman in casual dress is speaking to a group of people on stage the woman is wearing a head-set microphone", "video_id": "video12298", "sen_id": 227213}, {"caption": "a woman with brown hair and a striped sweater speaking on a stage", "video_id": "video12298", "sen_id": 227214}, {"caption": "a lady speaking to audience on the satge about something in a show", "video_id": "video12298", "sen_id": 227215}, {"caption": "a woman is standing on a stage and speaking to a crowd of people", "video_id": "video12298", "sen_id": 227216}, {"caption": "a woman is giving a motivational speech about the trust levels in a relationship", "video_id": "video12298", "sen_id": 227217}, {"caption": "a woman is motivating the public that who are listening to her speech", "video_id": "video12298", "sen_id": 227218}, {"caption": "a woman in black dress speaking about something in stage", "video_id": "video12298", "sen_id": 227219}, {"caption": "blonde man in suit talking to a celebrity about making a commercial", "video_id": "video10083", "sen_id": 227220}, {"caption": "a man is sitting at a table with a can of diet pepsi and is talking to jackie chan", "video_id": "video10083", "sen_id": 227221}, {"caption": "a man and another man are talking about pepsi", "video_id": "video10083", "sen_id": 227222}, {"caption": "a man and jackie chan sit at a long conference room table and discuss jackie chan making a movie with diet pepsi", "video_id": "video10083", "sen_id": 227223}, {"caption": "a man is talking to jackie chan about pepsi", "video_id": "video10083", "sen_id": 227224}, {"caption": "two famous people discuss doing business with a diet pepsi", "video_id": "video10083", "sen_id": 227225}, {"caption": "a movie executive and a famous actor sit at opposite ends of a shiny conference table", "video_id": "video10083", "sen_id": 227226}, {"caption": "jackie chan and another man in a suit talking about pepsi", "video_id": "video10083", "sen_id": 227227}, {"caption": "a blonde man speaks to a can of pepsi and movie actor jackie chan", "video_id": "video10083", "sen_id": 227228}, {"caption": "jackie chan and jay mohr in a pepsi commercial", "video_id": "video10083", "sen_id": 227229}, {"caption": "a white guy with blonde hair is sitting at a conference table with a can of pepsi", "video_id": "video10083", "sen_id": 227230}, {"caption": "man is sitting on the floor and talking to another man", "video_id": "video10083", "sen_id": 227231}, {"caption": "a person is seated at the end of a table talking to another person who is seated at the other end", "video_id": "video10083", "sen_id": 227232}, {"caption": "a man stoops over the table and talks to pepsi then gets up and greets jackie chan", "video_id": "video10083", "sen_id": 227233}, {"caption": "a man sits to a table across from another man with a can drink near him", "video_id": "video10083", "sen_id": 227234}, {"caption": "two actors sit across from each other discussing pepsi", "video_id": "video10083", "sen_id": 227235}, {"caption": "a man in black suit is saying something here to the other man in the opposite side of the table", "video_id": "video10083", "sen_id": 227236}, {"caption": "a man wearing black color dress is talking with another man a pepsi can is near", "video_id": "video10083", "sen_id": 227237}, {"caption": "a man is talking to another man with a pepsi soda on the table", "video_id": "video10083", "sen_id": 227238}, {"caption": "a blonde man is negotiating a movie deal between a can of diet pepsi and actor jackie chan", "video_id": "video10083", "sen_id": 227239}, {"caption": "a man comes to help an injured woman 14 people were killed in an accident", "video_id": "video12226", "sen_id": 227240}, {"caption": "a video of an altercation at night on a busy street", "video_id": "video12226", "sen_id": 227241}, {"caption": "a man discusses the aftermath of a serious deadly incident as people are mulling around on the screen", "video_id": "video12226", "sen_id": 227242}, {"caption": "a group of people gather around some cars on a small city street", "video_id": "video12226", "sen_id": 227243}, {"caption": "large group of civilians gathering around a shooting victim in a roadway", "video_id": "video12226", "sen_id": 227244}, {"caption": "a man can be seen next to a vehicle as a person comments on the video about trying to get people to help the injured woman after a few seconds a group of people can be seen in the area as the commentor states that 14 people were killed there", "video_id": "video12226", "sen_id": 227245}, {"caption": "a group of people gather on a street corner in the late evening", "video_id": "video12226", "sen_id": 227246}, {"caption": "a man is standing over an injured woman near a car begging others to help", "video_id": "video12226", "sen_id": 227247}, {"caption": "a man getting down from a car", "video_id": "video12226", "sen_id": 227248}, {"caption": "a group of people are causing some sort of ruckus in the streets below", "video_id": "video12226", "sen_id": 227249}, {"caption": "a man tries to beckon pedestrians to help someone in the middle of a city street as he is squatting next to his open car", "video_id": "video12226", "sen_id": 227250}, {"caption": "a criminal with a gun standing out of the car and pointing at someone", "video_id": "video12226", "sen_id": 227251}, {"caption": "car wreck on a street draws a crowd and blocks the street", "video_id": "video12226", "sen_id": 227252}, {"caption": "a car is stopped in the middle of the street while a voice describes what is happening at the scene", "video_id": "video12226", "sen_id": 227253}, {"caption": "a man narrating a crime scene where people died", "video_id": "video12226", "sen_id": 227254}, {"caption": "a news reporter describes a terror attack in paris", "video_id": "video12226", "sen_id": 227255}, {"caption": "a blurry video shows a busy city street at night", "video_id": "video12226", "sen_id": 227256}, {"caption": "people are gathered on a city corner by a kneeling person storefronts with bright lights lit traffic lights sidewalk signs", "video_id": "video12226", "sen_id": 227257}, {"caption": "person is looking for help after the bad accident", "video_id": "video12226", "sen_id": 227258}, {"caption": "the man tries to get people to come help a wounded woman on the ground by the car fourteen people were killed here", "video_id": "video12226", "sen_id": 227259}, {"caption": "a horse and a man putting on a performance", "video_id": "video12747", "sen_id": 227260}, {"caption": "a man is getting his horse to do tricks for him", "video_id": "video12747", "sen_id": 227261}, {"caption": "a brown horse performs tricks under a spotlight", "video_id": "video12747", "sen_id": 227262}, {"caption": "a man plays with a horse in the spotlight at a circus", "video_id": "video12747", "sen_id": 227263}, {"caption": "there is a man in black dancing around a large horse and then hops on backward", "video_id": "video12747", "sen_id": 227264}, {"caption": "horse and a man are shown doing some tricks for a show", "video_id": "video12747", "sen_id": 227265}, {"caption": "a man under a spotlight getting on top of a horse backwards", "video_id": "video12747", "sen_id": 227266}, {"caption": "a comedic circus perfromer in a black uniform mounts a brown horse backwards and rides off the stage in a spotlight", "video_id": "video12747", "sen_id": 227267}, {"caption": "a guy in a suit puts on a show with a horse at a circus", "video_id": "video12747", "sen_id": 227268}, {"caption": "a man rides a brown and white horse backward", "video_id": "video12747", "sen_id": 227269}, {"caption": "a man performs funny tricks with a horse", "video_id": "video12747", "sen_id": 227270}, {"caption": "a man lifts a leaning horse s tail mounts the horse backwards from the neck lies down leaves the stage", "video_id": "video12747", "sen_id": 227271}, {"caption": "its a show with a great sound of audience a man in black color dress is sitting on the brown color horse from its front side and laying over it", "video_id": "video12747", "sen_id": 227272}, {"caption": "a man performing a show mounts a horse backwards and rides it laying down", "video_id": "video12747", "sen_id": 227273}, {"caption": "a person is doing stunts on a horse", "video_id": "video12747", "sen_id": 227274}, {"caption": "a man is wearing black and riding a horse backwards", "video_id": "video12747", "sen_id": 227275}, {"caption": "a circus performer wearing a uniform mounts and rides a horse backwards", "video_id": "video12747", "sen_id": 227276}, {"caption": "a man is jumping on the horse and a horse is walking", "video_id": "video12747", "sen_id": 227277}, {"caption": "a horse rears back and a man in black performs tricks and hops up riding horse backwards", "video_id": "video12747", "sen_id": 227278}, {"caption": "some horses are doing tricks in a circus", "video_id": "video12747", "sen_id": 227279}, {"caption": "a woman in a yellow hard had is standing on a college campus and preparing to give a video tour of the engineering buildings behind her", "video_id": "video12531", "sen_id": 227280}, {"caption": "a woman in a yellow safety hat talking outside a building", "video_id": "video12531", "sen_id": 227281}, {"caption": "a woman states that she is the lucky one to show us around the engineering building today there are two buildings", "video_id": "video12531", "sen_id": 227282}, {"caption": "there is a woman giving a tour or making a tour video of the engineering buildings", "video_id": "video12531", "sen_id": 227283}, {"caption": "a woman in overall and a hard had is talking about engineering buildings", "video_id": "video12531", "sen_id": 227284}, {"caption": "a board about of faculty of engineerthe person with yellow cap stands in front of the building", "video_id": "video12531", "sen_id": 227285}, {"caption": "an advertisement about the faculty of engineering is being shown in the television", "video_id": "video12531", "sen_id": 227286}, {"caption": "some machinery work is going on in the industry", "video_id": "video12531", "sen_id": 227287}, {"caption": "machine is running and a girl explains about a college", "video_id": "video12531", "sen_id": 227288}, {"caption": "sexy brunette wearing hard hat is talking to the cam", "video_id": "video12531", "sen_id": 227289}, {"caption": "there is a yellow helmet women on the street", "video_id": "video12531", "sen_id": 227290}, {"caption": "there is a women talking infront of the building", "video_id": "video12531", "sen_id": 227291}, {"caption": "faculty of engineering in college outside one girl speakeing", "video_id": "video12531", "sen_id": 227292}, {"caption": "a girl with a yellow hard hat and dressed in a blue construction outfit takes audience on a tour of an engineering plant", "video_id": "video12531", "sen_id": 227293}, {"caption": "a building is being filmed inside of a city", "video_id": "video12531", "sen_id": 227294}, {"caption": "a woman standing in front of a building with a yellow hard hat on", "video_id": "video12531", "sen_id": 227295}, {"caption": "a young lady wearing a builder s helmet and clothes to show us around the engineering building", "video_id": "video12531", "sen_id": 227296}, {"caption": "a young woman gives a tour of the engineering buildings on a college campus", "video_id": "video12531", "sen_id": 227297}, {"caption": "a women is explaining about the newly built engineering college", "video_id": "video12531", "sen_id": 227298}, {"caption": "a building is being filmed on the out side", "video_id": "video12531", "sen_id": 227299}, {"caption": "a man is showing break dance moves in living room", "video_id": "video11729", "sen_id": 227300}, {"caption": "a man doing break dancing in a room", "video_id": "video11729", "sen_id": 227301}, {"caption": "there is a a man in a white shirt break dancing on a living room floor", "video_id": "video11729", "sen_id": 227302}, {"caption": "i young boy is spinning around on his head in his livingroom", "video_id": "video11729", "sen_id": 227303}, {"caption": "a man dancing in his living room on top of and spinning on his head", "video_id": "video11729", "sen_id": 227304}, {"caption": "a young man is break dancing on a smooth surface in his living room", "video_id": "video11729", "sen_id": 227305}, {"caption": "a man with black pants and a white shirt break dances on the floor", "video_id": "video11729", "sen_id": 227306}, {"caption": "a man in a white shirt and black pants spinning on his head on a mat in his living room", "video_id": "video11729", "sen_id": 227307}, {"caption": "a man wearing black jeans and white tee shirt break dances on his head in front of a window in his yellowed colored livingroom", "video_id": "video11729", "sen_id": 227308}, {"caption": "a man break dancing in his living room on a mat", "video_id": "video11729", "sen_id": 227309}, {"caption": "a man break dancing in a living room on a large mat", "video_id": "video11729", "sen_id": 227310}, {"caption": "a man break dancing on doing tricks on the floor in a room", "video_id": "video11729", "sen_id": 227311}, {"caption": "a man is practicing his breakdancing maneuvers in his living room", "video_id": "video11729", "sen_id": 227312}, {"caption": "a person wearing white t-shirt and a black pant doing some moves and rolling down the floor with his head", "video_id": "video11729", "sen_id": 227313}, {"caption": "a man break dancing to electronic music indoors", "video_id": "video11729", "sen_id": 227314}, {"caption": "a young man is practicing dance in a room", "video_id": "video11729", "sen_id": 227315}, {"caption": "a man in a white t-shirt break dances on his head to upbeat music", "video_id": "video11729", "sen_id": 227316}, {"caption": "a man in his living room on a floor mat performs break dancing moves", "video_id": "video11729", "sen_id": 227317}, {"caption": "it is a person dancing in their living room", "video_id": "video11729", "sen_id": 227318}, {"caption": "a person is doing some moves in a room", "video_id": "video11729", "sen_id": 227319}, {"caption": "a young man and young woman sled down a snowy hill", "video_id": "video10412", "sen_id": 227320}, {"caption": "a young man and woman film themselves sledding down a snowy hill", "video_id": "video10412", "sen_id": 227321}, {"caption": "two people sled down a snow covered hill", "video_id": "video10412", "sen_id": 227322}, {"caption": "a man and a woman wearing jackets are sledding on snow", "video_id": "video10412", "sen_id": 227323}, {"caption": "a man and a woman both dressed in winter slide down a snowy hill together", "video_id": "video10412", "sen_id": 227324}, {"caption": "a man in a black coat and a hat is riding in the snow with a woman in sunglasses behind him", "video_id": "video10412", "sen_id": 227325}, {"caption": "a man and a woman are sledding down a hill in the snow", "video_id": "video10412", "sen_id": 227326}, {"caption": "couple sledding in the mountains with sunshine and trees", "video_id": "video10412", "sen_id": 227327}, {"caption": "two people on an sled slide down a snowy mountain", "video_id": "video10412", "sen_id": 227328}, {"caption": "a couple bundled up in winter clothing slides down a snowy hill together", "video_id": "video10412", "sen_id": 227329}, {"caption": "a man and a woman both dressed in winter clothing are sledding down a snowy hill", "video_id": "video10412", "sen_id": 227330}, {"caption": "a young man and a blond girl are riding on a motorbike through a snowy landscape near a forest", "video_id": "video10412", "sen_id": 227331}, {"caption": "its skating in snow man and lady in same skating board they both wear black dress", "video_id": "video10412", "sen_id": 227332}, {"caption": "man and woman riding down a snow hill on a sled", "video_id": "video10412", "sen_id": 227333}, {"caption": "couple sliding on icy hill and having fun together", "video_id": "video10412", "sen_id": 227334}, {"caption": "a man and a lady is riding on a snow", "video_id": "video10412", "sen_id": 227335}, {"caption": "a woman and a man are sled riding on a saucer sled at an accerlating speed down a snowy hill laughing", "video_id": "video10412", "sen_id": 227336}, {"caption": "a man in leather jacket and young woman sled down a snow covered hill", "video_id": "video10412", "sen_id": 227337}, {"caption": "a man and woman in black is moving on the snow", "video_id": "video10412", "sen_id": 227338}, {"caption": "a man and woman ride down a snowy hill and appear to be having a lovely time", "video_id": "video10412", "sen_id": 227339}, {"caption": "several people sitting in chairs critiqueing television shows", "video_id": "video10431", "sen_id": 227340}, {"caption": "a young man and two young speak in a foreign language during a montage of unrelated scenes", "video_id": "video10431", "sen_id": 227341}, {"caption": "two girls and a guy sit in a room filled with movie figurines and talk", "video_id": "video10431", "sen_id": 227342}, {"caption": "three young people talking about a tv show", "video_id": "video10431", "sen_id": 227343}, {"caption": "several people critiqueing television shows including how i met your mother", "video_id": "video10431", "sen_id": 227344}, {"caption": "three friends sitting down and talking about a movie", "video_id": "video10431", "sen_id": 227345}, {"caption": "two women and a man discussing video clips of telesvision programs", "video_id": "video10431", "sen_id": 227346}, {"caption": "three people are watching scenes from tv shows and speaking about it in a small room", "video_id": "video10431", "sen_id": 227347}, {"caption": "three people sitting on stools talking as tv clips pass", "video_id": "video10431", "sen_id": 227348}, {"caption": "a group of friends talking and laughing together", "video_id": "video10431", "sen_id": 227349}, {"caption": "there is someone talking from the studio", "video_id": "video10431", "sen_id": 227350}, {"caption": "two lady and men explaining some situation happen in past", "video_id": "video10431", "sen_id": 227351}, {"caption": "a boy sitting with two girl and still images of boys girl kissing images displaying on screen", "video_id": "video10431", "sen_id": 227352}, {"caption": "two women and one man siting on the chair and speaking about the movie", "video_id": "video10431", "sen_id": 227353}, {"caption": "two girls are talking about some tv shows", "video_id": "video10431", "sen_id": 227354}, {"caption": "two women and men discussing with each other on some topic", "video_id": "video10431", "sen_id": 227355}, {"caption": "one man and two womens in stage and talk something", "video_id": "video10431", "sen_id": 227356}, {"caption": "two girl sitting beside boy in chair and discusing with girl and still image picture on screen displaying", "video_id": "video10431", "sen_id": 227357}, {"caption": "the three people discussed the woman s facial expression", "video_id": "video10431", "sen_id": 227358}, {"caption": "two women on tv are talking", "video_id": "video10431", "sen_id": 227359}, {"caption": "a woman is petting a dog that is attached to an iv", "video_id": "video10920", "sen_id": 227360}, {"caption": "a brown small dog being petted on a towel", "video_id": "video10920", "sen_id": 227361}, {"caption": "a woman is petting a small blonde chihuahua dog and talking about the dog's medication and health", "video_id": "video10920", "sen_id": 227362}, {"caption": "an injured dog is being comforted by a women describing his condition", "video_id": "video10920", "sen_id": 227363}, {"caption": "a woman is betting the face of a brown dog with and iv", "video_id": "video10920", "sen_id": 227364}, {"caption": "a girl is petting a small puppy that seems to be injured", "video_id": "video10920", "sen_id": 227365}, {"caption": "a woman petting a small brown and cute puppy", "video_id": "video10920", "sen_id": 227366}, {"caption": "a small dog is sitting and the owner rubs its head", "video_id": "video10920", "sen_id": 227367}, {"caption": "a woman pets her small dog on a bed as he recovers with iv and fluids", "video_id": "video10920", "sen_id": 227368}, {"caption": "a small brown dog wearing a yellow cast is being cared for by a woman", "video_id": "video10920", "sen_id": 227369}, {"caption": "a woman talks to a lttle puppy with a yellow bandage on its leg", "video_id": "video10920", "sen_id": 227370}, {"caption": "a small dog received an iv and the vet talks about what treatment the dog received", "video_id": "video10920", "sen_id": 227371}, {"caption": "a brown chihuahua who has an injured leg is being caresses by the hand of a woman the dog also seems to have a bag of fluids attached to him", "video_id": "video10920", "sen_id": 227372}, {"caption": "a woman pets a little dog who is very sick", "video_id": "video10920", "sen_id": 227373}, {"caption": "a dog is scared as a person pets it", "video_id": "video10920", "sen_id": 227374}, {"caption": "a sick dog receving medication from a woman who is speaking", "video_id": "video10920", "sen_id": 227375}, {"caption": "a lady veterinary attendant explains the progress of an injured puppy and how it is coping up with the treatment", "video_id": "video10920", "sen_id": 227376}, {"caption": "a woman is petting and taking care of a little dog", "video_id": "video10920", "sen_id": 227377}, {"caption": "a woman with a sick puppy explaining their symptoms", "video_id": "video10920", "sen_id": 227378}, {"caption": "a man is standing in his backyard with a white dog", "video_id": "video10920", "sen_id": 227379}, {"caption": "changing scenes of people being served and eating in a cafeteria", "video_id": "video11566", "sen_id": 227380}, {"caption": "a group of young people eat in a very large indoor cafeteria", "video_id": "video11566", "sen_id": 227381}, {"caption": "green tents are in a row a person leans on top of a metal partition there are two rows of small wooden structures with open doors women are brushing their teeth outdoors a person is lounging indoors people are serving food and people are eating in a dining hall", "video_id": "video11566", "sen_id": 227382}, {"caption": "a man emerges from a long line of outdoor portable toilets", "video_id": "video11566", "sen_id": 227383}, {"caption": "tents and cabins are in a field before we see people in a cafeteria eating", "video_id": "video11566", "sen_id": 227384}, {"caption": "rock music is played over images of porter potties and a cafeteria", "video_id": "video11566", "sen_id": 227385}, {"caption": "a young man is leaning against a fence a line of outdoor bathroom stalls is shown we see a group of women are walking together one of them brushing her teeth a man lounges on a sofa people are served food cafeteria style and then we see people dining in a cafeteria", "video_id": "video11566", "sen_id": 227386}, {"caption": "a music video staged at a buffet with many people eating", "video_id": "video11566", "sen_id": 227387}, {"caption": "young people walk around brush their teeth and eat at a camp", "video_id": "video11566", "sen_id": 227388}, {"caption": "a person is sleeping and all are eating food in a hall", "video_id": "video11566", "sen_id": 227389}, {"caption": "music plays while people walk and share a meal", "video_id": "video11566", "sen_id": 227390}, {"caption": "scenes from a large gathering of people in a cafeteria set to rock music", "video_id": "video11566", "sen_id": 227391}, {"caption": "people are seen walking around brushing their teeth moving through a chow line and eating in a large room", "video_id": "video11566", "sen_id": 227392}, {"caption": "music plays while walk around and eat in a large room", "video_id": "video11566", "sen_id": 227393}, {"caption": "people walking around and eating food at an event with electric guitar music in the background", "video_id": "video11566", "sen_id": 227394}, {"caption": "many peoples are sitting together and eating their dishes", "video_id": "video11566", "sen_id": 227395}, {"caption": "there is a blue t-shirt man sleeping behind the window", "video_id": "video11566", "sen_id": 227396}, {"caption": "people are serving food and having their lunch in a big dinning room", "video_id": "video11566", "sen_id": 227397}, {"caption": "a man an da women are walking in the street", "video_id": "video11566", "sen_id": 227398}, {"caption": "a man sitting on a fence people walking people getting food and tables full of people eating", "video_id": "video11566", "sen_id": 227399}, {"caption": "a man is talking about people in the western area", "video_id": "video10817", "sen_id": 227400}, {"caption": "a spinning globe and then people representing the generations", "video_id": "video10817", "sen_id": 227401}, {"caption": "a twirling globe and several people depicting the passage of generations", "video_id": "video10817", "sen_id": 227402}, {"caption": "a map of the world and figures being revealed one a a time", "video_id": "video10817", "sen_id": 227403}, {"caption": "there's a picture of an animated globe followed by a picture of five men standing in a purple room", "video_id": "video10817", "sen_id": 227404}, {"caption": "an animated globe spins followed by animated ideas of men from the western culture including jesus christ and george washington", "video_id": "video10817", "sen_id": 227405}, {"caption": "a computer generated animation displays the earth spinning around and different people from around the world", "video_id": "video10817", "sen_id": 227406}, {"caption": "there are silhouette figures changed refers some characters", "video_id": "video10817", "sen_id": 227407}, {"caption": "person is describing the regions in the world and different people", "video_id": "video10817", "sen_id": 227408}, {"caption": "there is a map of the world and famous historical figures represented with animations on a purple background", "video_id": "video10817", "sen_id": 227409}, {"caption": "the western world is represented by animated figures including jesus christ and george washington", "video_id": "video10817", "sen_id": 227410}, {"caption": "an animated cartoon video of people standing within a blue background", "video_id": "video10817", "sen_id": 227411}, {"caption": "a man gives a lecture on the characteristics of the western world", "video_id": "video10817", "sen_id": 227412}, {"caption": "a world map turning and then showing the different civilizations over the time", "video_id": "video10817", "sen_id": 227413}, {"caption": "a person is showing information on the screen", "video_id": "video10817", "sen_id": 227414}, {"caption": "there are some cartoon characters on the stage", "video_id": "video10817", "sen_id": 227415}, {"caption": "different animation figures men and women are standing in a place", "video_id": "video10817", "sen_id": 227416}, {"caption": "globe rotates then characters that are in jesus crist person are shown", "video_id": "video10817", "sen_id": 227417}, {"caption": "a global culture has been reviewing in the news", "video_id": "video10817", "sen_id": 227418}, {"caption": "a person showing bunch of different kinds of people", "video_id": "video10817", "sen_id": 227419}, {"caption": "a news segment of tesla and bmw teaming up in the future", "video_id": "video11022", "sen_id": 227420}, {"caption": "a new segment about the possibility of tesla and bmw teaming up", "video_id": "video11022", "sen_id": 227421}, {"caption": "a dark haired man in a suit talks about elon musk at the new york stock exchange", "video_id": "video11022", "sen_id": 227422}, {"caption": "a tv reporter talks about a possible cooperative project by tesla and bmw", "video_id": "video11022", "sen_id": 227423}, {"caption": "a dark haired man in a suit talks about elon musk at the new york stock exchange", "video_id": "video11022", "sen_id": 227424}, {"caption": "a man on the news talking about someone named elon musk", "video_id": "video11022", "sen_id": 227425}, {"caption": "host of the news show talks about the tesla and bmw union in the f1 car race", "video_id": "video11022", "sen_id": 227426}, {"caption": "there is a suit man talking in a news time", "video_id": "video11022", "sen_id": 227427}, {"caption": "the man wearing a suit talks as the picture is to the right", "video_id": "video11022", "sen_id": 227428}, {"caption": "a tv reporter talking about tesla and bmw teaming for certain range of products", "video_id": "video11022", "sen_id": 227429}, {"caption": "a male news anchor in a suit and tie describes a conversation between tesla and bmw", "video_id": "video11022", "sen_id": 227430}, {"caption": "there is a suit man talking with a person", "video_id": "video11022", "sen_id": 227431}, {"caption": "a man is speaking to the camera about an important topic", "video_id": "video11022", "sen_id": 227432}, {"caption": "a man is talking about the bmw car company to channel", "video_id": "video11022", "sen_id": 227433}, {"caption": "bunch of guys in suit and tie talking to the camera from the newsroom", "video_id": "video11022", "sen_id": 227434}, {"caption": "a man in suit explaining some breaking news in front of the camera", "video_id": "video11022", "sen_id": 227435}, {"caption": "a man is commentating on bmw over a possible alliance", "video_id": "video11022", "sen_id": 227436}, {"caption": "a news program news reader talking about something", "video_id": "video11022", "sen_id": 227437}, {"caption": "a news reporter describes a possible deal between bmw and tesla", "video_id": "video11022", "sen_id": 227438}, {"caption": "a man in a suit and blue tie telling the news", "video_id": "video11022", "sen_id": 227439}, {"caption": "a man narrates rosemary and garlic being inserted into a lamb roast", "video_id": "video11901", "sen_id": 227440}, {"caption": "a person cuts incisions in order to put garlic and rosemary inside a piece of lamb", "video_id": "video11901", "sen_id": 227441}, {"caption": "lamb is prepared by making incisions and inserting different herbs", "video_id": "video11901", "sen_id": 227442}, {"caption": "showing you how to season a piece of meat", "video_id": "video11901", "sen_id": 227443}, {"caption": "someone is piercing a piece of meat and inserting herbs and garlic cloves", "video_id": "video11901", "sen_id": 227444}, {"caption": "a man inserting garlic and rosemary into a piece of meat", "video_id": "video11901", "sen_id": 227445}, {"caption": "a person is sitting holes in a piece of meat and adding garlic", "video_id": "video11901", "sen_id": 227446}, {"caption": "a tutorial video is showing how to prepare a leg of lamb", "video_id": "video11901", "sen_id": 227447}, {"caption": "a man showing how to insert garlic and rosemary into a roast", "video_id": "video11901", "sen_id": 227448}, {"caption": "on a table somebody preparing a piece of meat with seasonings including stuffing it with garlic and rosemary", "video_id": "video11901", "sen_id": 227449}, {"caption": "a man describing how to add herbs to the lamb he is going to bake", "video_id": "video11901", "sen_id": 227450}, {"caption": "a chef is giving instructions on how to cook lamb", "video_id": "video11901", "sen_id": 227451}, {"caption": "a man is showing how to prepare a lamb roast", "video_id": "video11901", "sen_id": 227452}, {"caption": "a man showing steps of how to prepare stew chicken", "video_id": "video11901", "sen_id": 227453}, {"caption": "the check applied the masala on the meat he place the small leaf and inject garlic into it", "video_id": "video11901", "sen_id": 227454}, {"caption": "a man s voice is narrating instructions on preparing lamb with garlic and rosemary", "video_id": "video11901", "sen_id": 227455}, {"caption": "someone is using their fingers to make some food", "video_id": "video11901", "sen_id": 227456}, {"caption": "a women is cutting meat with knife on a cutting board", "video_id": "video11901", "sen_id": 227457}, {"caption": "a meat and garlic paste inside kitchen cutting pressing inside preparing dish to serve to eat displaying on screen", "video_id": "video11901", "sen_id": 227458}, {"caption": "a cook is preparing some meat for a meal", "video_id": "video11901", "sen_id": 227459}, {"caption": "a man with a metal band around his head is somehow connected to an acoustical band", "video_id": "video12235", "sen_id": 227460}, {"caption": "a young man wearing a horizontal headset sits at a futuristic control panel in a partially dark room in front of a large circular light a violinist guitarist and an accordionist play their instruments outdoors during a fun gathering", "video_id": "video12235", "sen_id": 227461}, {"caption": "there are some people playing and enjoying different types of music instruments", "video_id": "video12235", "sen_id": 227462}, {"caption": "music is being played on various instruments in the middle of the video we see a sci-fi image of a man on a couch with a device on his head", "video_id": "video12235", "sen_id": 227463}, {"caption": "some men sit and plays a music instruments for a crowd", "video_id": "video12235", "sen_id": 227464}, {"caption": "a jolly music group in in recording of music", "video_id": "video12235", "sen_id": 227465}, {"caption": "men playing instruments then a man wearing a headset is shown followed by more men playing instruments", "video_id": "video12235", "sen_id": 227466}, {"caption": "several men playing different instruments at the same time", "video_id": "video12235", "sen_id": 227467}, {"caption": "a group of people gather around some men who are playing instruments outside", "video_id": "video12235", "sen_id": 227468}, {"caption": "a man playing guitar cuts to a science fiction show and then cuts to men playing instruments on the street", "video_id": "video12235", "sen_id": 227469}, {"caption": "a man playing guitar a woman walking away a man sitting in chair a violinist", "video_id": "video12235", "sen_id": 227470}, {"caption": "the men are playing the violin guitar ans singing the song", "video_id": "video12235", "sen_id": 227471}, {"caption": "player does guitar play then a person with head cap is shown", "video_id": "video12235", "sen_id": 227472}, {"caption": "a woman on a speaker talking about galaxy communications being billed to personal accounts from now on", "video_id": "video12235", "sen_id": 227473}, {"caption": "a man playing a guitar and a voice talking to a man in a space helmet then a band on a street playing music", "video_id": "video12235", "sen_id": 227474}, {"caption": "a movie clip from the entertainment place with a man in a gray jump suit sitting in a ship", "video_id": "video12235", "sen_id": 227475}, {"caption": "a man having the long hair playing a guitar in his home", "video_id": "video12235", "sen_id": 227476}, {"caption": "a person is wearing under garment mark k on his shoulder", "video_id": "video12235", "sen_id": 227477}, {"caption": "woman is playing a guitar while her man is hearing her", "video_id": "video12235", "sen_id": 227478}, {"caption": "a person is playing guitar and some people playing musical instruments together", "video_id": "video12235", "sen_id": 227479}, {"caption": "someone is on top of a hill taking a video of a waterfall", "video_id": "video12596", "sen_id": 227480}, {"caption": "a hiker is showing off the scenic views of her adventure", "video_id": "video12596", "sen_id": 227481}, {"caption": "a waterfall in a grassy area is flowing down the terrain", "video_id": "video12596", "sen_id": 227482}, {"caption": "a person is giving a scenic overview of the the grand canyon and one of its waterfalls", "video_id": "video12596", "sen_id": 227483}, {"caption": "the beautiful and lush scenery is shown with the waterfall", "video_id": "video12596", "sen_id": 227484}, {"caption": "there is a waterfall flowing in the mountain", "video_id": "video12596", "sen_id": 227485}, {"caption": "a wide outdoor shot of a waterfall with greenery surrounding it", "video_id": "video12596", "sen_id": 227486}, {"caption": "on the side of a mountain is a beautiful and narrow waterfall", "video_id": "video12596", "sen_id": 227487}, {"caption": "a commentator is speaking about the waterfalls across the canyon you can see a huge view of the canyon", "video_id": "video12596", "sen_id": 227488}, {"caption": "a woman shows a green canyon and waterfalls across the canyon opposite her", "video_id": "video12596", "sen_id": 227489}, {"caption": "various shots of different places on a mountain range", "video_id": "video12596", "sen_id": 227490}, {"caption": "water drops or flows down from hillit looks awesome full of greenish sight", "video_id": "video12596", "sen_id": 227491}, {"caption": " a long waterfall on a green grassy mountain", "video_id": "video12596", "sen_id": 227492}, {"caption": "a mountain water scene and land shown on screen trees beside displaying on screen", "video_id": "video12596", "sen_id": 227493}, {"caption": "the water rushes down the side of the mountain in the distance", "video_id": "video12596", "sen_id": 227494}, {"caption": "pictures of beautiful scenery and waterfalls while a woman narrates", "video_id": "video12596", "sen_id": 227495}, {"caption": "a wooded area looks out over a mountain with a waterfall and lots of trees and grass cover", "video_id": "video12596", "sen_id": 227496}, {"caption": "its a beautiful scenery of mountains and a waterfall", "video_id": "video12596", "sen_id": 227497}, {"caption": "pure water the rich natural resource oozin out from forests", "video_id": "video12596", "sen_id": 227498}, {"caption": "a scene of nature is being filmed from far away", "video_id": "video12596", "sen_id": 227499}, {"caption": "a woman telling a story about playing soccer and dislocating her elbow", "video_id": "video10716", "sen_id": 227500}, {"caption": "mixed martial artist ronda rousey describes fighting a finnish fighter to jimmy kimmel", "video_id": "video10716", "sen_id": 227501}, {"caption": "in an interview a woman is looking at the interviewer and talking", "video_id": "video10716", "sen_id": 227502}, {"caption": "a lady black color dressed talking", "video_id": "video10716", "sen_id": 227503}, {"caption": "one beautiful and lovely women talks in show", "video_id": "video10716", "sen_id": 227504}, {"caption": "a women is being interviewed for winning in the world cup by the media persons", "video_id": "video10716", "sen_id": 227505}, {"caption": "a woman in black colour dress is sitting on the chair talking with a man in black suit", "video_id": "video10716", "sen_id": 227506}, {"caption": "a women in black dress is talking to a men", "video_id": "video10716", "sen_id": 227507}, {"caption": "ronda roussey is speaking about a world cup experience on a tv show", "video_id": "video10716", "sen_id": 227508}, {"caption": "a woman wearing black top discusses a fight she was in", "video_id": "video10716", "sen_id": 227509}, {"caption": "jimmy fallon was hosting the lovely ronda rousey", "video_id": "video10716", "sen_id": 227510}, {"caption": "there is a women in black talking to a men in suit", "video_id": "video10716", "sen_id": 227511}, {"caption": "a woman in black dress giving answer to the reporter", "video_id": "video10716", "sen_id": 227512}, {"caption": "a female athlete talks about injuries she received in a judo match", "video_id": "video10716", "sen_id": 227513}, {"caption": "a woman with a pony tail is talkign to a man", "video_id": "video10716", "sen_id": 227514}, {"caption": "rhonda rousey is being interviewed on a late night television show", "video_id": "video10716", "sen_id": 227515}, {"caption": "a stout lady in armour talking to someone", "video_id": "video10716", "sen_id": 227516}, {"caption": "in a tv channel programme a man wearing suite interviews the short dressed woman", "video_id": "video10716", "sen_id": 227517}, {"caption": "a man is interviewing a woman boxer on television", "video_id": "video10716", "sen_id": 227518}, {"caption": "a women with brown hair is talking about something", "video_id": "video10716", "sen_id": 227519}, {"caption": "the evolution of the market revolution in the united states", "video_id": "video10291", "sen_id": 227520}, {"caption": "there is an animation of a factory and a town that keeps growing", "video_id": "video10291", "sen_id": 227521}, {"caption": "a man discusses the way manufacturing is performed in the usa", "video_id": "video10291", "sen_id": 227522}, {"caption": "a horse is walking on a face and a house is sitting in front of river", "video_id": "video10291", "sen_id": 227523}, {"caption": "a man gives a lecture on the history of manufacturing", "video_id": "video10291", "sen_id": 227524}, {"caption": "a man discusses the beginning of the traditional workforce set to a cartoon", "video_id": "video10291", "sen_id": 227525}, {"caption": "a man describes how shoes were manufactured before and after the market revolution", "video_id": "video10291", "sen_id": 227526}, {"caption": "an overview and description in cartoon of how the industrial revolution happened", "video_id": "video10291", "sen_id": 227527}, {"caption": "a man is explaining how manufacturing worked in the beginning", "video_id": "video10291", "sen_id": 227528}, {"caption": "a man is explaining the market revolution in america while cartoon images of individual houses and items are absorbed into a larger images in the moving graphic", "video_id": "video10291", "sen_id": 227529}, {"caption": "a male speaker describes the process of factory workers and owners", "video_id": "video10291", "sen_id": 227530}, {"caption": "an animation explaining the how the manufacturing of products changed during the market revolution from home production to factory production", "video_id": "video10291", "sen_id": 227531}, {"caption": "a cartoon of a factory besides river shows shoes and crates entering factory", "video_id": "video10291", "sen_id": 227532}, {"caption": "three shoes popped out of nowhere and went to three different houses", "video_id": "video10291", "sen_id": 227533}, {"caption": "a description of how industry works with manufacturing featuring animations", "video_id": "video10291", "sen_id": 227534}, {"caption": "a man talking about how industries changed employement", "video_id": "video10291", "sen_id": 227535}, {"caption": "an animated cartoon television program on the television", "video_id": "video10291", "sen_id": 227536}, {"caption": "three shoes are being displayed in an add and then fly off", "video_id": "video10291", "sen_id": 227537}, {"caption": "a narrator discusses how factory owners produced shoe patterns over an orange overlay he proceeds to explain that eventually workers were assembled into one building or factories to continue their work", "video_id": "video10291", "sen_id": 227538}, {"caption": "animated infomercial depicting how the industrial revolution changed things for the better", "video_id": "video10291", "sen_id": 227539}, {"caption": "a man making an amazing play in a rugby match", "video_id": "video10090", "sen_id": 227540}, {"caption": "a rugby match is being played in which one team scores", "video_id": "video10090", "sen_id": 227541}, {"caption": "a man in a black shirt and white shorts runs with a ball on a field during a sporting event", "video_id": "video10090", "sen_id": 227542}, {"caption": "a rugby player scores a point during a game", "video_id": "video10090", "sen_id": 227543}, {"caption": "a sporting event with the team in blue having posession of the ball", "video_id": "video10090", "sen_id": 227544}, {"caption": "man kicks football to another man while the other man catches the ball and runs for a touchdown", "video_id": "video10090", "sen_id": 227545}, {"caption": "a rugby player catches the ball and runs to the goal and scores", "video_id": "video10090", "sen_id": 227546}, {"caption": "two teams are playing rugby and one player caught a ball", "video_id": "video10090", "sen_id": 227547}, {"caption": "two teams play a game in front of a large crowd", "video_id": "video10090", "sen_id": 227548}, {"caption": "professional teams play a rugby game when a player in a black uniform grabs the ball from a player in a white uniform and outruns another player in white to the end zone", "video_id": "video10090", "sen_id": 227549}, {"caption": "a male football team wearing uniforms kicks and runs a football up a green grass football field while a foreign language voiceover plays in the background", "video_id": "video10090", "sen_id": 227550}, {"caption": "there are someone playing rugby on a ground", "video_id": "video10090", "sen_id": 227551}, {"caption": "team of players are playing ball on the ground", "video_id": "video10090", "sen_id": 227552}, {"caption": "a man in a blue skullcap intercepts the ball in a rugby game", "video_id": "video10090", "sen_id": 227553}, {"caption": "two male teams are running with a ball on the field", "video_id": "video10090", "sen_id": 227554}, {"caption": "a man describes a play from a rugby match between two teams", "video_id": "video10090", "sen_id": 227555}, {"caption": "two teams of rugby players are playing in the playground", "video_id": "video10090", "sen_id": 227556}, {"caption": "a soccer player wearing a blue headwrap is storming down the field", "video_id": "video10090", "sen_id": 227557}, {"caption": "a touch down is scored by a rugby team in a professional match", "video_id": "video10090", "sen_id": 227558}, {"caption": "a mn catches the ball runs and scores in a game of rugby", "video_id": "video10090", "sen_id": 227559}, {"caption": "a man describes a model of the building blocks of life", "video_id": "video12573", "sen_id": 227560}, {"caption": "a narrator talking about cell cultures within genetic engineering", "video_id": "video12573", "sen_id": 227561}, {"caption": "a circle filled with different things related to cell culture", "video_id": "video12573", "sen_id": 227562}, {"caption": "a scientist talks about the technology around cell culture and regineration", "video_id": "video12573", "sen_id": 227563}, {"caption": "a scientist talks about research work in genetics and cells", "video_id": "video12573", "sen_id": 227564}, {"caption": "a man explains how much the technologies in genetic engineering have changed since the 1980s", "video_id": "video12573", "sen_id": 227565}, {"caption": "a man is talking about what technologies related to generic engineering had become since 1980", "video_id": "video12573", "sen_id": 227566}, {"caption": "a narrator discusses the history of genetic engineering since the 1980 s", "video_id": "video12573", "sen_id": 227567}, {"caption": "a scientist talks about recent developments in genetic engineering", "video_id": "video12573", "sen_id": 227568}, {"caption": "how engineers improved genetic engineering from the 1980s", "video_id": "video12573", "sen_id": 227569}, {"caption": "a male narrator describes genetics and dna while illustrations of dna are shown", "video_id": "video12573", "sen_id": 227570}, {"caption": "a man is narrating image is different cell structures and dna", "video_id": "video12573", "sen_id": 227571}, {"caption": "a man is talking about a genetic technologies", "video_id": "video12573", "sen_id": 227572}, {"caption": "some person explaining about dna and cell structure and evolution of genetic engineering", "video_id": "video12573", "sen_id": 227573}, {"caption": "a man s voice narrates over different images and illustrations of dna", "video_id": "video12573", "sen_id": 227574}, {"caption": "there are some explanations about genetic engineering and cell culture", "video_id": "video12573", "sen_id": 227575}, {"caption": "someone explaining about generic engineering by showing some videos", "video_id": "video12573", "sen_id": 227576}, {"caption": "a narrator describes technology in the 1980s to look at dna", "video_id": "video12573", "sen_id": 227577}, {"caption": "somebody at the background demonstrates the cell culture and genetic engineeringfollowing is the explanation he has given since the 1980 s the technologies related to genetic engineering have developed", "video_id": "video12573", "sen_id": 227578}, {"caption": "documentary about dna configuration and other details", "video_id": "video12573", "sen_id": 227579}, {"caption": "a man is standing on a stage giving a lecture about mathematics", "video_id": "video12136", "sen_id": 227580}, {"caption": "a man on stage discusses math with an amused audience", "video_id": "video12136", "sen_id": 227581}, {"caption": "a man is on stage explaining to an audience that math doesn't work", "video_id": "video12136", "sen_id": 227582}, {"caption": "a young man in a vest and jeans is on a stage giving a talk about math", "video_id": "video12136", "sen_id": 227583}, {"caption": "man with dark hair at a tech conference speaking about distribution and math", "video_id": "video12136", "sen_id": 227584}, {"caption": "a man wearing jeans gives a lecture in front of a red curtain", "video_id": "video12136", "sen_id": 227585}, {"caption": "man in a black vest is giving a talk about math", "video_id": "video12136", "sen_id": 227586}, {"caption": "a man is on stage giving a presentation to an audience we cannot see", "video_id": "video12136", "sen_id": 227587}, {"caption": "a young handsome man on the stage is taking class to some people", "video_id": "video12136", "sen_id": 227588}, {"caption": "a man on stage explains math says that math doesn t work", "video_id": "video12136", "sen_id": 227589}, {"caption": "a man in a vest is on stage doing a presentation on math", "video_id": "video12136", "sen_id": 227590}, {"caption": "a man addressing a gathering of people inside room", "video_id": "video12136", "sen_id": 227591}, {"caption": "a man in a dark colored vest gives a lecture to a large group of people about math", "video_id": "video12136", "sen_id": 227592}, {"caption": " dressed in jeans a gray shirt and a dark gray vest talks to a crowd about how math doesn t work", "video_id": "video12136", "sen_id": 227593}, {"caption": "a young white man with long hairs wearing jeans and a vest walks back and forth on a stage explaining math", "video_id": "video12136", "sen_id": 227594}, {"caption": "a person speaking on stage to a show among viewers", "video_id": "video12136", "sen_id": 227595}, {"caption": "a man is on stage giving a speech", "video_id": "video12136", "sen_id": 227596}, {"caption": "a speaker up on stage talking about how math doesnt work", "video_id": "video12136", "sen_id": 227597}, {"caption": "a man wearing jeans and a grey and black shirt giving a discussion about mathematics", "video_id": "video12136", "sen_id": 227598}, {"caption": "a man giving a lecture talking about how math doesn t work", "video_id": "video12136", "sen_id": 227599}, {"caption": "a man explaininghow to watch a movie on the internet", "video_id": "video12623", "sen_id": 227600}, {"caption": "a person is showing a screenshot of a computer and explaining how to use the computer", "video_id": "video12623", "sen_id": 227601}, {"caption": "a man shows his computer screen and goes through various spots on it", "video_id": "video12623", "sen_id": 227602}, {"caption": "scary clown background set as a wallpaper on a desktop computer", "video_id": "video12623", "sen_id": 227603}, {"caption": "a man demonstrates and describes a video game he is preparing to play", "video_id": "video12623", "sen_id": 227604}, {"caption": "a picture of a man on a black screen", "video_id": "video12623", "sen_id": 227605}, {"caption": "a spanish gaming system demonstrating how to pick and start a game", "video_id": "video12623", "sen_id": 227606}, {"caption": "a mouse arrow on a desktop app on a home screen", "video_id": "video12623", "sen_id": 227607}, {"caption": "a man is talking while clicking on a screen and then minimizing it on a computer screen", "video_id": "video12623", "sen_id": 227608}, {"caption": "a guy talks in spanish as he plays a video game on his computer", "video_id": "video12623", "sen_id": 227609}, {"caption": "a guy discusses a computer game he's playing in spanish", "video_id": "video12623", "sen_id": 227610}, {"caption": "a man talks while he shows a desktop screen on a computer", "video_id": "video12623", "sen_id": 227611}, {"caption": "an exploration of something about the subscription for the game", "video_id": "video12623", "sen_id": 227612}, {"caption": "a man is describing a computer program while minimizing the window", "video_id": "video12623", "sen_id": 227613}, {"caption": "a man speaking a foreign language is showing a video from a computer", "video_id": "video12623", "sen_id": 227614}, {"caption": "a youtube help video in spanish is being played using a computer and likely is a tutorial", "video_id": "video12623", "sen_id": 227615}, {"caption": "a screen shot video of some tutorial to download something", "video_id": "video12623", "sen_id": 227616}, {"caption": "movie download is shown on a live computer screen", "video_id": "video12623", "sen_id": 227617}, {"caption": "a spanish speaking man shows how to navigate the desktop computer based game interface", "video_id": "video12623", "sen_id": 227618}, {"caption": "a black window is on someone s desk top", "video_id": "video12623", "sen_id": 227619}, {"caption": "a man is practicing walking over track hurdles", "video_id": "video10736", "sen_id": 227620}, {"caption": "a man gingerly steps over four hurdles placed back to back in the center of a gymnasium", "video_id": "video10736", "sen_id": 227621}, {"caption": "a young man trains for an upcoming hurdle competition", "video_id": "video10736", "sen_id": 227622}, {"caption": "a man in a white polo shirt is walking over hurdles", "video_id": "video10736", "sen_id": 227623}, {"caption": "a man wearing a white shirt practicing agility", "video_id": "video10736", "sen_id": 227624}, {"caption": "a man lifting his legs over hurtles", "video_id": "video10736", "sen_id": 227625}, {"caption": "a man on an indoor track stepping over track hurdles very slowly", "video_id": "video10736", "sen_id": 227626}, {"caption": "there is a white tshirt man practicing with hurdles", "video_id": "video10736", "sen_id": 227627}, {"caption": "men in white and black dress taking practise on the stadium", "video_id": "video10736", "sen_id": 227628}, {"caption": "a man slowly high-steps over obstacles in a room with a blue floor", "video_id": "video10736", "sen_id": 227629}, {"caption": "a guy with white and black dress is doing exercise in a place", "video_id": "video10736", "sen_id": 227630}, {"caption": "a guy in white t-shirt is mocking the hurdles sport by walking instead of jumping", "video_id": "video10736", "sen_id": 227631}, {"caption": "a man skipping some addles", "video_id": "video10736", "sen_id": 227632}, {"caption": "a man slowly running on the hurdles on stadium", "video_id": "video10736", "sen_id": 227633}, {"caption": "a man in white doing excerice in the stadium", "video_id": "video10736", "sen_id": 227634}, {"caption": "a person is stepping over a bunch of hurdles", "video_id": "video10736", "sen_id": 227635}, {"caption": "a man in a white tee shirt and black shorts walks slowly over four track and field hurdles", "video_id": "video10736", "sen_id": 227636}, {"caption": "a man in a white shirt and black shorts stepping slowly over hurdles", "video_id": "video10736", "sen_id": 227637}, {"caption": "one man with white shirt and black shorts is walking across some hurdles", "video_id": "video10736", "sen_id": 227638}, {"caption": "a boy in white color dress wearing cloth moving legs up and down walking exercise inside ground displaying on screen", "video_id": "video10736", "sen_id": 227639}, {"caption": "young blonde woman posing outdoors during a music video", "video_id": "video10181", "sen_id": 227640}, {"caption": "a woman singing the girl version of sean kingston's song", "video_id": "video10181", "sen_id": 227641}, {"caption": "a slideshow of a beautiful blonde woman set to music", "video_id": "video10181", "sen_id": 227642}, {"caption": "there are portrait photos of the singer jojo", "video_id": "video10181", "sen_id": 227643}, {"caption": "portrait photographs of the singer jojo passing by", "video_id": "video10181", "sen_id": 227644}, {"caption": "several pictures in sequence of a single blonde woman with curly hair", "video_id": "video10181", "sen_id": 227645}, {"caption": "a pretty young girl is shown in various photographs", "video_id": "video10181", "sen_id": 227646}, {"caption": "there is a woman with brown hair posing for a photo", "video_id": "video10181", "sen_id": 227647}, {"caption": "pictures being displayed on the screen", "video_id": "video10181", "sen_id": 227648}, {"caption": "the woman smiles as she wears make up and ccurly hair", "video_id": "video10181", "sen_id": 227649}, {"caption": "girl singing while a slideshow of pictures of her plays", "video_id": "video10181", "sen_id": 227650}, {"caption": "a woman is posing for several pictures in different poses", "video_id": "video10181", "sen_id": 227651}, {"caption": "a beautiful lady with blonde hair giving different poses", "video_id": "video10181", "sen_id": 227652}, {"caption": "an album song a girl singing a song on the stage", "video_id": "video10181", "sen_id": 227653}, {"caption": "music is applied to pictures of this singer she is beautiful in these photos", "video_id": "video10181", "sen_id": 227654}, {"caption": "some photos are shown on the screen as slide show", "video_id": "video10181", "sen_id": 227655}, {"caption": "a ldy image displayed on the screen", "video_id": "video10181", "sen_id": 227656}, {"caption": "a blonde headed woman sings a song while she is posing for pictures", "video_id": "video10181", "sen_id": 227657}, {"caption": "a girl still image of smiling face singing song displaying on screen", "video_id": "video10181", "sen_id": 227658}, {"caption": "slideshow of a young female with music in the background", "video_id": "video10181", "sen_id": 227659}, {"caption": "surveillance camera footage of a large construction site at night", "video_id": "video11918", "sen_id": 227660}, {"caption": "a car driving in the rain witnessed an accident", "video_id": "video11918", "sen_id": 227661}, {"caption": "a vehicle is crashing into a barrier and flipping over in slow motion", "video_id": "video11918", "sen_id": 227662}, {"caption": "a street is seen on a dim night through the windshield of a car", "video_id": "video11918", "sen_id": 227663}, {"caption": "a car runs a red light and smashes into another car headed in the opposite direction", "video_id": "video11918", "sen_id": 227664}, {"caption": "there is a vague incident happening in the night shade", "video_id": "video11918", "sen_id": 227665}, {"caption": "there is a silver car meet with an accident", "video_id": "video11918", "sen_id": 227666}, {"caption": "a most shocking crashes were playing on", "video_id": "video11918", "sen_id": 227667}, {"caption": "the most shocking crashes incidents are shown", "video_id": "video11918", "sen_id": 227668}, {"caption": "some cars are driving around the street", "video_id": "video11918", "sen_id": 227669}, {"caption": "work is progressing in the street at night", "video_id": "video11918", "sen_id": 227670}, {"caption": "a shocking crash is taking place on the road", "video_id": "video11918", "sen_id": 227671}, {"caption": "an accident seen is playing in the video", "video_id": "video11918", "sen_id": 227672}, {"caption": "a large truck collides with a car at a traffic crossing", "video_id": "video11918", "sen_id": 227673}, {"caption": "some various things are happening outside", "video_id": "video11918", "sen_id": 227674}, {"caption": "a people driving a truck with something on the side", "video_id": "video11918", "sen_id": 227675}, {"caption": "an accident was taken into video when someone driving a car", "video_id": "video11918", "sen_id": 227676}, {"caption": "most of shocking crashes are held in the road", "video_id": "video11918", "sen_id": 227677}, {"caption": "a video showing a brutal car crash on highway", "video_id": "video11918", "sen_id": 227678}, {"caption": "someone is getting into a car crash at night", "video_id": "video11918", "sen_id": 227679}, {"caption": "a woman doing a workout with a toddler playing near by", "video_id": "video11101", "sen_id": 227680}, {"caption": "a woman is doing exercises on a blue mat", "video_id": "video11101", "sen_id": 227681}, {"caption": "a fit young woman does a series of exercises in front of a garage door", "video_id": "video11101", "sen_id": 227682}, {"caption": "a woman doing squats and leg lifts while a toddler plays nearby", "video_id": "video11101", "sen_id": 227683}, {"caption": "a young mom is doing squat exercise while the baby is playing ball around", "video_id": "video11101", "sen_id": 227684}, {"caption": "women doing excersie in the garden and his child is looking her", "video_id": "video11101", "sen_id": 227685}, {"caption": " in a yellow tank top working out to music on a blue mat in front of a garage door while a baby plays with an orange ball", "video_id": "video11101", "sen_id": 227686}, {"caption": "one beautiful and lovely women exercise nicely in room", "video_id": "video11101", "sen_id": 227687}, {"caption": "a woman is doing exercise and a girl in pink dress is throwing a ball", "video_id": "video11101", "sen_id": 227688}, {"caption": "a women is doing exercise by looking the childs play and the cute kid is playing without disturbing her", "video_id": "video11101", "sen_id": 227689}, {"caption": "a lady is doing ground exercises and kid plays near to her", "video_id": "video11101", "sen_id": 227690}, {"caption": "a woman doing exercise while a toddler walks in the back ground", "video_id": "video11101", "sen_id": 227691}, {"caption": "one women exercise with his baby near down", "video_id": "video11101", "sen_id": 227692}, {"caption": "a girl in yellow and black nicker exercise in floorand babybeside", "video_id": "video11101", "sen_id": 227693}, {"caption": "sexy blonde working out in front of camera with baby around", "video_id": "video11101", "sen_id": 227694}, {"caption": "lady is taking exercise on blue mat and a kid plays near to her", "video_id": "video11101", "sen_id": 227695}, {"caption": "the beautiful women are doing exercise in very well", "video_id": "video11101", "sen_id": 227696}, {"caption": "a young woman in a yellow top demonstrates a series of exercises", "video_id": "video11101", "sen_id": 227697}, {"caption": "a girl in yellow t shirt dress bending down body and sleeping and doing exercise", "video_id": "video11101", "sen_id": 227698}, {"caption": "a woman in a green shirt is doing some exercises", "video_id": "video11101", "sen_id": 227699}, {"caption": "multiple samurai warriors are preparing to battle with their swords", "video_id": "video11872", "sen_id": 227700}, {"caption": "a girl is surrounded by boys that are chanting and waiving their swords in her general direction", "video_id": "video11872", "sen_id": 227701}, {"caption": "several soldiers stand with their backs up against tall wooden poles and move their swords up and down", "video_id": "video11872", "sen_id": 227702}, {"caption": "a group of men in the woods are raising their swords in preparation for battle", "video_id": "video11872", "sen_id": 227703}, {"caption": "a group of asian soldiers waving their swords up and down", "video_id": "video11872", "sen_id": 227704}, {"caption": "men in armor line a walk way and wave swords while a woman looks on in bewilderment", "video_id": "video11872", "sen_id": 227705}, {"caption": "a video animation of movie video scene sword in hands of soldiers shaking and girl standing seeing displaying on screen", "video_id": "video11872", "sen_id": 227706}, {"caption": "inside a forest a lady is standing with fear around some man", "video_id": "video11872", "sen_id": 227707}, {"caption": "men in armor holding swords standing in a forest and threatening a woman", "video_id": "video11872", "sen_id": 227708}, {"caption": "a group of samurai gather and prepare for battle", "video_id": "video11872", "sen_id": 227709}, {"caption": "there is a group of men holding swords swinging them overhead while standing in a straight line", "video_id": "video11872", "sen_id": 227710}, {"caption": "a group of men lifting and shaking swords while chanting at a woman", "video_id": "video11872", "sen_id": 227711}, {"caption": "a group of asian warriors in black colored armor holding swords", "video_id": "video11872", "sen_id": 227712}, {"caption": "a group of warriors in black armor surround woman and chant in forest", "video_id": "video11872", "sen_id": 227713}, {"caption": "several asian men are waiving swords simultaneously while a young woman looks frightened or surprised", "video_id": "video11872", "sen_id": 227714}, {"caption": "a group of men chanting something repeatedly while swinging swords back and forth and a lady looking scared", "video_id": "video11872", "sen_id": 227715}, {"caption": "men chant as they lift swords into the air and wave them back and forth", "video_id": "video11872", "sen_id": 227716}, {"caption": "group of men in black clothing swinging swords and chanting by a woman", "video_id": "video11872", "sen_id": 227717}, {"caption": "warriors in dark armor slowly raise swords and chant around a woman", "video_id": "video11872", "sen_id": 227718}, {"caption": "some people in the woods are ready to fight", "video_id": "video11872", "sen_id": 227719}, {"caption": "two men are explaining the fundamentals of and making dough in a kitchen", "video_id": "video12727", "sen_id": 227720}, {"caption": "this is a video of a cooking show", "video_id": "video12727", "sen_id": 227721}, {"caption": "two guys talking about making dough in a office", "video_id": "video12727", "sen_id": 227722}, {"caption": "two men are in the kitchen holding a glass bowl full of dough", "video_id": "video12727", "sen_id": 227723}, {"caption": "two guys are talking about some doe that they have made", "video_id": "video12727", "sen_id": 227724}, {"caption": "two men are in the kitchen and one is wearing a chef s dress he is holding the dough", "video_id": "video12727", "sen_id": 227725}, {"caption": "a man wearing blue color dress is talking black color dress", "video_id": "video12727", "sen_id": 227726}, {"caption": "two men are in the kitchen prepared to create food", "video_id": "video12727", "sen_id": 227727}, {"caption": "a man in chef uniform shows dough in glass bowl with guest", "video_id": "video12727", "sen_id": 227728}, {"caption": "the two persons prepared a dish and explains the speciality of the dish", "video_id": "video12727", "sen_id": 227729}, {"caption": "two men talk about how to bake bread in a kitchen", "video_id": "video12727", "sen_id": 227730}, {"caption": "two men are in the kitchen explaining that you need two hours for the butter to re-solidify and you need the gluten and the flour to just relax", "video_id": "video12727", "sen_id": 227731}, {"caption": "two men in a kitchen making some dough gluten free", "video_id": "video12727", "sen_id": 227732}, {"caption": "a two boys one in blue other in black dress bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12727", "sen_id": 227733}, {"caption": "a couple of men in a kitchen are showing food", "video_id": "video12727", "sen_id": 227734}, {"caption": "two handsome men one with eyeglasses and bowl in his hand standing in the kitchen and speaking", "video_id": "video12727", "sen_id": 227735}, {"caption": "two men discussing the process of building something while behind the counter of their shop", "video_id": "video12727", "sen_id": 227736}, {"caption": "two guys explaining how to make a better dough to be used for some sort of cooking or baking", "video_id": "video12727", "sen_id": 227737}, {"caption": "two men in polo shirts in a kitchen are discussing a recipe while holding a bowl of dough", "video_id": "video12727", "sen_id": 227738}, {"caption": "two men are making some food inside a room", "video_id": "video12727", "sen_id": 227739}, {"caption": "a lady with ombre hair is sleeping on her bed and her alarm goes off and then she realises how late she is", "video_id": "video10033", "sen_id": 227740}, {"caption": "a blonde girl looks at her phone while in bed and refuses to wake up", "video_id": "video10033", "sen_id": 227741}, {"caption": "a woman in bed under the covers looking at her phone putting down then she jumps up and her cat looks at her", "video_id": "video10033", "sen_id": 227742}, {"caption": "it can be really hard to wake up", "video_id": "video10033", "sen_id": 227743}, {"caption": "a cute women is sleeping on the bed and suddenly she gets up", "video_id": "video10033", "sen_id": 227744}, {"caption": "woman trying to sleep and also restlessly checking her iphone then she suddenly wakes to loud music", "video_id": "video10033", "sen_id": 227745}, {"caption": "a young girl is sleeping in her bed and turns off the alarms making herself late", "video_id": "video10033", "sen_id": 227746}, {"caption": "a woman laying in bed realizes she is late for school", "video_id": "video10033", "sen_id": 227747}, {"caption": "a blonde woman oversleeps and is startled by how late she is for school", "video_id": "video10033", "sen_id": 227748}, {"caption": "a young woman with awesome hair sleeps too late", "video_id": "video10033", "sen_id": 227749}, {"caption": "a woman lying in a white colored bed is having a hard time waking up", "video_id": "video10033", "sen_id": 227750}, {"caption": "a girl taking her mobile phone and waking", "video_id": "video10033", "sen_id": 227751}, {"caption": "a woman is laying in bed and looks at her phone", "video_id": "video10033", "sen_id": 227752}, {"caption": "a woman who is sleeping but has set various annoying ring tones as alarms on her phone and is late because she sleeps through them", "video_id": "video10033", "sen_id": 227753}, {"caption": "a woman is sleeping but keeps checking her phone", "video_id": "video10033", "sen_id": 227754}, {"caption": "a woman is timing her sleep through her mobile handset", "video_id": "video10033", "sen_id": 227755}, {"caption": "a lady looking at her cell phone while laying in her white bed", "video_id": "video10033", "sen_id": 227756}, {"caption": "a lady in a bed with all white sheets", "video_id": "video10033", "sen_id": 227757}, {"caption": "there is a blonde girl laying in a bed with white sheets who over slept and is late for school", "video_id": "video10033", "sen_id": 227758}, {"caption": "a cat is lying on a bed in a room", "video_id": "video10033", "sen_id": 227759}, {"caption": "man gives treats to a very large pig the size of his car", "video_id": "video10752", "sen_id": 227760}, {"caption": "a man in blue feeds a large pig in front of a white car", "video_id": "video10752", "sen_id": 227761}, {"caption": "a man feeds a very large pig that is standing next to a white car", "video_id": "video10752", "sen_id": 227762}, {"caption": "a man stands by a car with an enormous very clean pink pig", "video_id": "video10752", "sen_id": 227763}, {"caption": "a man in blue playing with pig near to the car", "video_id": "video10752", "sen_id": 227764}, {"caption": "a big pig standing nearby a car", "video_id": "video10752", "sen_id": 227765}, {"caption": "a man and enormous pig stand in front of a compact white car while the man entertains the pig with a treat", "video_id": "video10752", "sen_id": 227766}, {"caption": "the man feeds the big pink pig near the car", "video_id": "video10752", "sen_id": 227767}, {"caption": "a man is feeding a large pink pig next to a white car", "video_id": "video10752", "sen_id": 227768}, {"caption": "a man petting a very large pig beside a white car", "video_id": "video10752", "sen_id": 227769}, {"caption": "a man is giving food to the pig", "video_id": "video10752", "sen_id": 227770}, {"caption": "a man in a blue jacket incites a large pig next to a white car", "video_id": "video10752", "sen_id": 227771}, {"caption": "a man in a blue coat is talking to a giant pig the pig is almost as long as a compact car", "video_id": "video10752", "sen_id": 227772}, {"caption": "a huge pig stands next to a car on rt channel", "video_id": "video10752", "sen_id": 227773}, {"caption": "a car is parked in the house beside car a very big pig is given some thing to eat and pig is eating fastly", "video_id": "video10752", "sen_id": 227774}, {"caption": "there is a big pig nearby a car", "video_id": "video10752", "sen_id": 227775}, {"caption": "the man is connecting with the pig through affections", "video_id": "video10752", "sen_id": 227776}, {"caption": "a man is giving feed to a white big pig", "video_id": "video10752", "sen_id": 227777}, {"caption": "a big pink pig was touching the man with his mouth near to the car", "video_id": "video10752", "sen_id": 227778}, {"caption": "a giant pig is interacting with a human", "video_id": "video10752", "sen_id": 227779}, {"caption": "a dark-gray moose with pointed ears and rounded belly stands at the edge of a forest and eats lower green leaves from full bushes", "video_id": "video11391", "sen_id": 227780}, {"caption": "a moose is grazing in a forested area", "video_id": "video11391", "sen_id": 227781}, {"caption": "a moose is eating leaves from plants and a man is speaking about them at his desk", "video_id": "video11391", "sen_id": 227782}, {"caption": "two men talking to an interviewer and a mouse eating leaves", "video_id": "video11391", "sen_id": 227783}, {"caption": "a man is talking to an interviewer while in the woods with an animal in nature", "video_id": "video11391", "sen_id": 227784}, {"caption": "a rather large antelope is eating leaves and shrubs in a wooded area", "video_id": "video11391", "sen_id": 227785}, {"caption": "a big black sheep eating the leaves in the bush", "video_id": "video11391", "sen_id": 227786}, {"caption": "there is a suit man talking from a library", "video_id": "video11391", "sen_id": 227787}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video11391", "sen_id": 227788}, {"caption": "an animal is having a plant as feed", "video_id": "video11391", "sen_id": 227789}, {"caption": "a large black moose is eating in a grassy knoll", "video_id": "video11391", "sen_id": 227790}, {"caption": "a black horse eating the leaves of plants in the garden area", "video_id": "video11391", "sen_id": 227791}, {"caption": "a moose grazing and then a man sitting in a office describing science", "video_id": "video11391", "sen_id": 227792}, {"caption": "one horse there is makes a move on the outer", "video_id": "video11391", "sen_id": 227793}, {"caption": "a female moose is eating foliage in the woods", "video_id": "video11391", "sen_id": 227794}, {"caption": "there is a black suit man talking in a office", "video_id": "video11391", "sen_id": 227795}, {"caption": "the video is showing a moose eating leaves and then a man sitting at his desk talking", "video_id": "video11391", "sen_id": 227796}, {"caption": "a moose eating and chewing foliage in the forest", "video_id": "video11391", "sen_id": 227797}, {"caption": "a man explaining some thing and a animal is eating plants in a garden", "video_id": "video11391", "sen_id": 227798}, {"caption": "a moose is eating some food out side", "video_id": "video11391", "sen_id": 227799}, {"caption": "a cartoon for cheetos is shown for children", "video_id": "video12905", "sen_id": 227800}, {"caption": "a cheetah is showing some cheese curls in a bowl", "video_id": "video12905", "sen_id": 227801}, {"caption": "animated mouse and a man are in the screen", "video_id": "video12905", "sen_id": 227802}, {"caption": "cheetos cheetah is referenced in animated shows", "video_id": "video12905", "sen_id": 227803}, {"caption": "a bowl of cheetos is shown before cutting away to several short clips of an animated cheetah interacting with cheetos snacks", "video_id": "video12905", "sen_id": 227804}, {"caption": "a lady speaking about the snack cheetos and how they melt in our mouth", "video_id": "video12905", "sen_id": 227805}, {"caption": "saying about bad effects of junk food", "video_id": "video12905", "sen_id": 227806}, {"caption": "cartoon characters are talking", "video_id": "video12905", "sen_id": 227807}, {"caption": "the snacks is item cheetos balls are eaten by the character is looking funny", "video_id": "video12905", "sen_id": 227808}, {"caption": "an animation film is playing in the screen", "video_id": "video12905", "sen_id": 227809}, {"caption": "it is animated and cheetos and junk food is shown", "video_id": "video12905", "sen_id": 227810}, {"caption": "an advertisement for cheetos in an animation way to attract children to buy them", "video_id": "video12905", "sen_id": 227811}, {"caption": "a woman speaks about the history of cheetos and the cheetos mascot: chester", "video_id": "video12905", "sen_id": 227812}, {"caption": "the narrator describes the caloric content and iconic status of the snack food cheetos as several clips from animated tv shows referencing cheetos play", "video_id": "video12905", "sen_id": 227813}, {"caption": "it was reported that the cheese curls were not calorie free", "video_id": "video12905", "sen_id": 227814}, {"caption": "an animal is looking and taking", "video_id": "video12905", "sen_id": 227815}, {"caption": "a promom for a people trying to ban junk food", "video_id": "video12905", "sen_id": 227816}, {"caption": "a bowl of cheetos and how they are not calorie free food", "video_id": "video12905", "sen_id": 227817}, {"caption": "a woman talking about the junk food cheetos", "video_id": "video12905", "sen_id": 227818}, {"caption": "some cartoon characters are moving around an area", "video_id": "video12905", "sen_id": 227819}, {"caption": "a woman and a man standing in a kitchen talking", "video_id": "video10259", "sen_id": 227820}, {"caption": "a man in glasses discusses a kitchen topic with a woman", "video_id": "video10259", "sen_id": 227821}, {"caption": "a man and woman standing in a room near a table demonstrating a product", "video_id": "video10259", "sen_id": 227822}, {"caption": "man holding cue cards talks to woman in the kitchen in a tv show", "video_id": "video10259", "sen_id": 227823}, {"caption": "a man and women in a tan jacket talking in front of a white table", "video_id": "video10259", "sen_id": 227824}, {"caption": "a man and woman are standing behind a white counter talking", "video_id": "video10259", "sen_id": 227825}, {"caption": "men and women talking with each others in kitchen", "video_id": "video10259", "sen_id": 227826}, {"caption": "a man asking question with a woman in the kitchen", "video_id": "video10259", "sen_id": 227827}, {"caption": "i man reads a comment from a viewer about the layout of a kitchen", "video_id": "video10259", "sen_id": 227828}, {"caption": "a man and woman discuss kitchen design and cooking", "video_id": "video10259", "sen_id": 227829}, {"caption": "a man wearing glasses and a plaid shirt sorts notecards and prepares to ask a woman a question in a kitchen", "video_id": "video10259", "sen_id": 227830}, {"caption": "a man in a plaid shirt is standing near a woman in a tan vest behind a reflective white counter and in front of lit shelving", "video_id": "video10259", "sen_id": 227831}, {"caption": "a man and woman are talking to each other", "video_id": "video10259", "sen_id": 227832}, {"caption": "the man in the check shirt is explaining to the lady who is watching him eagerly", "video_id": "video10259", "sen_id": 227833}, {"caption": "guy in glasses with checks shirt talking to a black girl in coat", "video_id": "video10259", "sen_id": 227834}, {"caption": "a black women is talking to a man in checks shirt and spectacles", "video_id": "video10259", "sen_id": 227835}, {"caption": "in front of white colored table and man and woman standing a man reads out message on paper", "video_id": "video10259", "sen_id": 227836}, {"caption": "a woman speaks to a man in a kitchen for a video segment", "video_id": "video10259", "sen_id": 227837}, {"caption": "the young man in check shirt explains about something to the lady very elaborately", "video_id": "video10259", "sen_id": 227838}, {"caption": "a man is reading from card standing in kitchen with his co-host", "video_id": "video10259", "sen_id": 227839}, {"caption": "scenes of young people making slam dunks and impossible shots in different settings", "video_id": "video11539", "sen_id": 227840}, {"caption": "men playing basketball on an inside gym and also inside a house", "video_id": "video11539", "sen_id": 227841}, {"caption": "a young boy shooting a free throw on the basketball court", "video_id": "video11539", "sen_id": 227842}, {"caption": "a series of basketball players either making incredible shots missing the hoop or breaking something", "video_id": "video11539", "sen_id": 227843}, {"caption": "basketball players try to get the ball through the hoop during team games in a gym and at home gyms where a couple uses a hoop placed over a doorway", "video_id": "video11539", "sen_id": 227844}, {"caption": "various young teenagers in gym clothes perform trick basketball shots in slow motion", "video_id": "video11539", "sen_id": 227845}, {"caption": "guys play basketball and show off moves in amateur games", "video_id": "video11539", "sen_id": 227846}, {"caption": "there are man basketball players playing indoor very excitedly", "video_id": "video11539", "sen_id": 227847}, {"caption": "a movie clip of various persons playing basket ball and trying to basket", "video_id": "video11539", "sen_id": 227848}, {"caption": "some basketball players practice shots in a gym", "video_id": "video11539", "sen_id": 227849}, {"caption": "number of people playing basket ball a person with white cut bannian attempt to put goal but not succeed then another person with red bannianand black half pant put the goal", "video_id": "video11539", "sen_id": 227850}, {"caption": "many basketball players are practising together in a indoor court", "video_id": "video11539", "sen_id": 227851}, {"caption": "players playing basketball in a basketball court and people and the some hitting the basket are shown in a slow motion", "video_id": "video11539", "sen_id": 227852}, {"caption": "a collection of slow motion basketball shots that are then resumed to real time", "video_id": "video11539", "sen_id": 227853}, {"caption": "men are playing basketball and one does a jump dunk shot", "video_id": "video11539", "sen_id": 227854}, {"caption": "bunch of people playing basketball in a friendly game", "video_id": "video11539", "sen_id": 227855}, {"caption": "there are some boys playing basketball on the court", "video_id": "video11539", "sen_id": 227856}, {"caption": "a boys are playing a basket ball and background music is playing", "video_id": "video11539", "sen_id": 227857}, {"caption": "the teams are playing the basket ball in the court", "video_id": "video11539", "sen_id": 227858}, {"caption": "the man shoots a free throw then celebrates his shot", "video_id": "video11539", "sen_id": 227859}, {"caption": "music plays while a large waterfall is displayed in the background next to a bridge", "video_id": "video11691", "sen_id": 227860}, {"caption": "a person walks around while recording a part of a nature park and waterfall", "video_id": "video11691", "sen_id": 227861}, {"caption": "a beautiful waterfall with lots of greenery around it", "video_id": "video11691", "sen_id": 227862}, {"caption": "soft music plays as someone looks at a large waterfall that sprays water", "video_id": "video11691", "sen_id": 227863}, {"caption": "walking on a path with a waterfall in the distance", "video_id": "video11691", "sen_id": 227864}, {"caption": "a beautiful waterfall surrounded by green grass and a pathway where people are walking", "video_id": "video11691", "sen_id": 227865}, {"caption": "a beautiful scene of a nature covered with water falls and greenary", "video_id": "video11691", "sen_id": 227866}, {"caption": "there is a water fall with hard rocks around", "video_id": "video11691", "sen_id": 227867}, {"caption": "a waterfalls in a jungle and the slippery way to it", "video_id": "video11691", "sen_id": 227868}, {"caption": "beautiful falls and trees and plants in a mountain", "video_id": "video11691", "sen_id": 227869}, {"caption": "a wonder ful and forceful waterfall is flowing", "video_id": "video11691", "sen_id": 227870}, {"caption": "many people gathered to watch the famous water falls", "video_id": "video11691", "sen_id": 227871}, {"caption": "people walking down a road on side of a mountain", "video_id": "video11691", "sen_id": 227872}, {"caption": "the cameraman slowly walks on a path beside a waterfall", "video_id": "video11691", "sen_id": 227873}, {"caption": "shows a tourist spot of falls water falls with full force and many enjoy watching the scene", "video_id": "video11691", "sen_id": 227874}, {"caption": "a waterfall surrounded by green grass and a park bench", "video_id": "video11691", "sen_id": 227875}, {"caption": "water flowing from far end with so much greenery around", "video_id": "video11691", "sen_id": 227876}, {"caption": "a beautiful scenary of waterfalls with smoke falling from upwards to downwards", "video_id": "video11691", "sen_id": 227877}, {"caption": "its a water falls around i which the greens are super", "video_id": "video11691", "sen_id": 227878}, {"caption": "water falls from high mountain is video graphed from a vehicle in a high range tourism spot", "video_id": "video11691", "sen_id": 227879}, {"caption": "hands move in and out of sight as they move things on a hitchen counter", "video_id": "video10119", "sen_id": 227880}, {"caption": "a colorless faceted plastic cup and a red dish with utensil sit on a bathroom sink while hands unscrew a sippy cup and show a paper cup", "video_id": "video10119", "sen_id": 227881}, {"caption": "a person is in the bathroom they the lid off of a baby cup and takes the empty cup and shows it to the camera", "video_id": "video10119", "sen_id": 227882}, {"caption": "a woman showing how to put water in a plastic container", "video_id": "video10119", "sen_id": 227883}, {"caption": "a woman shows an empty cup she is preparing to use in her bathroom", "video_id": "video10119", "sen_id": 227884}, {"caption": "a person works with various items on a bathroom sink", "video_id": "video10119", "sen_id": 227885}, {"caption": "someone is in a bathroom using play cups", "video_id": "video10119", "sen_id": 227886}, {"caption": "a person is mixing things in a bowl", "video_id": "video10119", "sen_id": 227887}, {"caption": "a plastic container is taken and closed then the small bowl is taken", "video_id": "video10119", "sen_id": 227888}, {"caption": "a female is putting a pink cover on a baby bottle in front of the bathroom sink", "video_id": "video10119", "sen_id": 227889}, {"caption": "a pink lid sits next to a clear plastic pitcher on a sink", "video_id": "video10119", "sen_id": 227890}, {"caption": "a lady taking a container and glas", "video_id": "video10119", "sen_id": 227891}, {"caption": "a woman describes filling a cup with water for someone to drink from", "video_id": "video10119", "sen_id": 227892}, {"caption": "a woman is taking a bowl in the kitchen", "video_id": "video10119", "sen_id": 227893}, {"caption": "a woman is adding things to a bowl in the bathroom", "video_id": "video10119", "sen_id": 227894}, {"caption": "a women in cleaning vessels and glasses in wash basin", "video_id": "video10119", "sen_id": 227895}, {"caption": "a young girl is prepared to pour a drink inside a large glass", "video_id": "video10119", "sen_id": 227896}, {"caption": "little girl plays with cups on the bathroom sink", "video_id": "video10119", "sen_id": 227897}, {"caption": "a girl shows us a toy sippy cup then a toy regular cup", "video_id": "video10119", "sen_id": 227898}, {"caption": "woman is doing some experiments with the dishes in a kitchen", "video_id": "video10119", "sen_id": 227899}, {"caption": "a chef preparing a meal while explaining what he is doing", "video_id": "video10611", "sen_id": 227900}, {"caption": "a man seasons chopped up meat on a cutting board", "video_id": "video10611", "sen_id": 227901}, {"caption": "a man in a chef's jacket seasons red meat on a white chopping board", "video_id": "video10611", "sen_id": 227902}, {"caption": "a man teaching viewers how to season meat before it is cooked", "video_id": "video10611", "sen_id": 227903}, {"caption": "a cutting board covered with chopped meat sits on the table while a man speaks; he scoops the meat up with his hands", "video_id": "video10611", "sen_id": 227904}, {"caption": "a man in a white shirt putting salt on top of chunks of beef that he is preparing to cook", "video_id": "video10611", "sen_id": 227905}, {"caption": "a old man puts some ingredients in a tray to prepare food", "video_id": "video10611", "sen_id": 227906}, {"caption": "one man make recipe with a meat cuts into small", "video_id": "video10611", "sen_id": 227907}, {"caption": "a chef puts salt and pepper on a cutting board full of cut up meat pieces", "video_id": "video10611", "sen_id": 227908}, {"caption": "a male chef is in the kitchen working on a meat recipe", "video_id": "video10611", "sen_id": 227909}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10611", "sen_id": 227910}, {"caption": "a chef adds salt and pepper to a quantity of cube sliced beef", "video_id": "video10611", "sen_id": 227911}, {"caption": "a person in the kitchen spreading the meat with salt and pepper on it with white cutting board", "video_id": "video10611", "sen_id": 227912}, {"caption": "in a kitchen chef is preparing a dish with red meat", "video_id": "video10611", "sen_id": 227913}, {"caption": "a chef is demonstrating how to make a dish and is telling the audience to season the meat with seasoning such as freshly ground pepper or seasoned salt", "video_id": "video10611", "sen_id": 227914}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video10611", "sen_id": 227915}, {"caption": "a chef demonstrates a recipe by adding salt and pepper to some meat", "video_id": "video10611", "sen_id": 227916}, {"caption": "an old man in kitchen small pieces of meat ready to cook served on table for preparation", "video_id": "video10611", "sen_id": 227917}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10611", "sen_id": 227918}, {"caption": "a person is cutting up meat on a table", "video_id": "video10611", "sen_id": 227919}, {"caption": "man adding flour to a sauce pan and instructing on the technique", "video_id": "video12978", "sen_id": 227920}, {"caption": "a man is whisking flour in a green pot", "video_id": "video12978", "sen_id": 227921}, {"caption": "a chef works on a recipe by stirring flour into melted butter", "video_id": "video12978", "sen_id": 227922}, {"caption": "a man adds flour to melted butter in a pot on the stove and whisks it all together", "video_id": "video12978", "sen_id": 227923}, {"caption": "a hairy hand holds a small glass bowl of white flour and uses a whisk to pour and mix the flour with melted butter in a small green saucepan", "video_id": "video12978", "sen_id": 227924}, {"caption": "there is a man making a new dish in the kitchen", "video_id": "video12978", "sen_id": 227925}, {"caption": "someone is taking a white powder in the green sauce pan and stirs it", "video_id": "video12978", "sen_id": 227926}, {"caption": "a man pours flour into a green pot and whisks it in", "video_id": "video12978", "sen_id": 227927}, {"caption": "chef mixing flour in pan", "video_id": "video12978", "sen_id": 227928}, {"caption": "person is in the kitchen and mixing the ingredients", "video_id": "video12978", "sen_id": 227929}, {"caption": "there is a man mixing flour with water", "video_id": "video12978", "sen_id": 227930}, {"caption": "man in cooking show is doing a special dish with exotic ingredients", "video_id": "video12978", "sen_id": 227931}, {"caption": "a man is mixing a flour in the pan", "video_id": "video12978", "sen_id": 227932}, {"caption": "in pan which has green inner part is placed on stove then white flour is added", "video_id": "video12978", "sen_id": 227933}, {"caption": "a person adds two spoons of flour to pan with some water", "video_id": "video12978", "sen_id": 227934}, {"caption": "a man is whisking flour into a pot to the consistency of wet sand", "video_id": "video12978", "sen_id": 227935}, {"caption": "there are hands shown adding flour to a pot of water on the stove", "video_id": "video12978", "sen_id": 227936}, {"caption": "a man pouring white powder in a green pot", "video_id": "video12978", "sen_id": 227937}, {"caption": "a cook adds flour to a hot pot with oil and veggies", "video_id": "video12978", "sen_id": 227938}, {"caption": "a man is whisking flour into the consistency of wet sand", "video_id": "video12978", "sen_id": 227939}, {"caption": "people crowd outside near a large man made fountain", "video_id": "video12398", "sen_id": 227940}, {"caption": "many people are standing right on top of aa waterfall", "video_id": "video12398", "sen_id": 227941}, {"caption": "several people are out enjoying a nice day by a water fountain", "video_id": "video12398", "sen_id": 227942}, {"caption": "a manmade waterfall flowing into a fountain at a park", "video_id": "video12398", "sen_id": 227943}, {"caption": "several people are walking across a flowing waterfall", "video_id": "video12398", "sen_id": 227944}, {"caption": "water is flowing at full speed with so many people around", "video_id": "video12398", "sen_id": 227945}, {"caption": "there is a water falling from a big mountain", "video_id": "video12398", "sen_id": 227946}, {"caption": "water falls are falling with silver color peoples are standing", "video_id": "video12398", "sen_id": 227947}, {"caption": "an artificial water falls the people are walking in the park", "video_id": "video12398", "sen_id": 227948}, {"caption": "a person on sight seeing recorded a small water fall just on side of the road", "video_id": "video12398", "sen_id": 227949}, {"caption": "there is a water fall and lot of trees", "video_id": "video12398", "sen_id": 227950}, {"caption": "thre are many people near the dam looking the waterfall", "video_id": "video12398", "sen_id": 227951}, {"caption": "so many people are enjoying the tourist place which has water fall in it", "video_id": "video12398", "sen_id": 227952}, {"caption": "some peoples are enjoying in a garden and water fall", "video_id": "video12398", "sen_id": 227953}, {"caption": "a scene of garden where water is falling though a channel", "video_id": "video12398", "sen_id": 227954}, {"caption": "there is a waterfall surrounded with gree trees", "video_id": "video12398", "sen_id": 227955}, {"caption": "water is falling from a huge mountain and trees around", "video_id": "video12398", "sen_id": 227956}, {"caption": "people have gathered near a tourist place where there are beautiful waterfalls", "video_id": "video12398", "sen_id": 227957}, {"caption": "a water falls from up falling down and many person beside roaming displaying on screen", "video_id": "video12398", "sen_id": 227958}, {"caption": "a bunch of people are walking above a waterfall", "video_id": "video12398", "sen_id": 227959}, {"caption": "a red and yellow car is driving very quickly down a road", "video_id": "video12880", "sen_id": 227960}, {"caption": "a little red car is driving down the street with little puffs of smoke coming out of the back", "video_id": "video12880", "sen_id": 227961}, {"caption": "cartoon cars are racing against each other as a woman speaks over them", "video_id": "video12880", "sen_id": 227962}, {"caption": "a cartoon showing racing cars and advertising dr mcqueen coloring pages", "video_id": "video12880", "sen_id": 227963}, {"caption": "a red car speeding pass a blue car with smoke coming from the tail pipe", "video_id": "video12880", "sen_id": 227964}, {"caption": "two race cars move past each other during a road race", "video_id": "video12880", "sen_id": 227965}, {"caption": "an animated red and yellow racecar with the number 95 speeds past the other cars", "video_id": "video12880", "sen_id": 227966}, {"caption": "the red car racing on road with other two cars", "video_id": "video12880", "sen_id": 227967}, {"caption": "red car with number 95 comes first by overcoming all other cars", "video_id": "video12880", "sen_id": 227968}, {"caption": "two cars race and face off at high speeds on a sunny day", "video_id": "video12880", "sen_id": 227969}, {"caption": "there is a red car defeating all the other cars", "video_id": "video12880", "sen_id": 227970}, {"caption": "red color car running on the road faster", "video_id": "video12880", "sen_id": 227971}, {"caption": "animated race cars speed along a racing course in a race", "video_id": "video12880", "sen_id": 227972}, {"caption": "a brand new racing car game that can able to change your favourite colours upon your interest", "video_id": "video12880", "sen_id": 227973}, {"caption": "the red car is driven very fast and it is ranked first", "video_id": "video12880", "sen_id": 227974}, {"caption": "animation cars are moving on the road with favorite colors in a video game", "video_id": "video12880", "sen_id": 227975}, {"caption": "a red cartoon car is driving past every other car at a high pace", "video_id": "video12880", "sen_id": 227976}, {"caption": "an advertisement where the lady tells about how we can download the coloring page and color various cars as seen in the video", "video_id": "video12880", "sen_id": 227977}, {"caption": "women describing a cartoon race car painting features", "video_id": "video12880", "sen_id": 227978}, {"caption": "a cartoon featuring a red car winning a race", "video_id": "video12880", "sen_id": 227979}, {"caption": "a sports car is diving down the road haphazardly", "video_id": "video12375", "sen_id": 227980}, {"caption": "a red dodge challenger drives through the highways of atlanta", "video_id": "video12375", "sen_id": 227981}, {"caption": "a red dodge charger being driven in a television show", "video_id": "video12375", "sen_id": 227982}, {"caption": "similarities between classic shows breaking bad and walking dead are shown in particular we see glenn drive a red dodger challenger down a street", "video_id": "video12375", "sen_id": 227983}, {"caption": "a scene from the walking dead shows glenn driving a car to detract walkers", "video_id": "video12375", "sen_id": 227984}, {"caption": "a man is speeding in a charger in the city", "video_id": "video12375", "sen_id": 227985}, {"caption": "a person is riding a red car wildly on road few people gather around the car to hurt him so he turns back and rides away", "video_id": "video12375", "sen_id": 227986}, {"caption": "a red car is driven fast on the road by a young man", "video_id": "video12375", "sen_id": 227987}, {"caption": "a man is driving a red charger while a host narrates", "video_id": "video12375", "sen_id": 227988}, {"caption": "a man is driving a red sports car down a road", "video_id": "video12375", "sen_id": 227989}, {"caption": "a red car moves awkwardly as people try to stop the car", "video_id": "video12375", "sen_id": 227990}, {"caption": "a man drives his red dodge challenger in a city while avoiding dozens of zombies in a scene from the walking dead", "video_id": "video12375", "sen_id": 227991}, {"caption": "a man drives a red sports car as a mob attempt to surround it in a city", "video_id": "video12375", "sen_id": 227992}, {"caption": "someone is driving a red sports car into a crowd of drab-clothed zombies and then speeding away down a highway", "video_id": "video12375", "sen_id": 227993}, {"caption": "a person driving car and showing his skills", "video_id": "video12375", "sen_id": 227994}, {"caption": "a man describes the red car that is used in a popular tv show", "video_id": "video12375", "sen_id": 227995}, {"caption": "a man rashly driving the car on the road side", "video_id": "video12375", "sen_id": 227996}, {"caption": "a red car is being driven by a man in a large city", "video_id": "video12375", "sen_id": 227997}, {"caption": "a man drives a red car quickly away from zombies", "video_id": "video12375", "sen_id": 227998}, {"caption": "glen is driving a red charger in this opening scene of the walking dead in this clip a unknown man is describing what is happening", "video_id": "video12375", "sen_id": 227999}, {"caption": "young woman and older man preparing the dirt for gardening outdoors", "video_id": "video12997", "sen_id": 228000}, {"caption": "a man and a woman are digging and moving dirt in a garden", "video_id": "video12997", "sen_id": 228001}, {"caption": "a man and a woman work together in a large vegetable garden", "video_id": "video12997", "sen_id": 228002}, {"caption": "a couple of people work in a garden tilling the soil", "video_id": "video12997", "sen_id": 228003}, {"caption": "a man and a woman conversing as they work on a farm while using shovels", "video_id": "video12997", "sen_id": 228004}, {"caption": "man and woman are gardening and using hoes to break up the ground", "video_id": "video12997", "sen_id": 228005}, {"caption": "a man and a woman talk while digging in a garden", "video_id": "video12997", "sen_id": 228006}, {"caption": "a woman and an elderly man plow the fields on a farm", "video_id": "video12997", "sen_id": 228007}, {"caption": "a man and a woman is doing garden work", "video_id": "video12997", "sen_id": 228008}, {"caption": "a man and woman are digging a hole in a garden", "video_id": "video12997", "sen_id": 228009}, {"caption": "a man and a woman work together in a large garden", "video_id": "video12997", "sen_id": 228010}, {"caption": "people tilling up a garden in order to plant some plants", "video_id": "video12997", "sen_id": 228011}, {"caption": "a woman and a man is digging in a garden", "video_id": "video12997", "sen_id": 228012}, {"caption": "a young woman and an old woman are working in a field with spades", "video_id": "video12997", "sen_id": 228013}, {"caption": "the man and woman hoe the field to prepare it for the garden", "video_id": "video12997", "sen_id": 228014}, {"caption": "there is a old man working with a woman in a farm", "video_id": "video12997", "sen_id": 228015}, {"caption": "a man and a woman are digging in a garden", "video_id": "video12997", "sen_id": 228016}, {"caption": "blonde woman is having activity outdoors with her husband", "video_id": "video12997", "sen_id": 228017}, {"caption": "this is a video of a man and woman digging some type of grave or some type of apparatus for plant vegetation", "video_id": "video12997", "sen_id": 228018}, {"caption": "some people are tending a garden in england", "video_id": "video12997", "sen_id": 228019}, {"caption": "a bunch of kids playing around in a jungle gym", "video_id": "video12728", "sen_id": 228020}, {"caption": "a little boy wearing a white shirt and grey pants is climbing in an indoor playground", "video_id": "video12728", "sen_id": 228021}, {"caption": "a woman follows children playing in a play place and offers them guidance and supervision", "video_id": "video12728", "sen_id": 228022}, {"caption": "a child is crawling through a play house and going through the obstacles", "video_id": "video12728", "sen_id": 228023}, {"caption": "several kids play in an indoor jungle gym as a woman looks over them", "video_id": "video12728", "sen_id": 228024}, {"caption": "a child in a white shirt runs around in a playground", "video_id": "video12728", "sen_id": 228025}, {"caption": "there is a kid playing in the park", "video_id": "video12728", "sen_id": 228026}, {"caption": "a child is playing in the maze while his mother giving instructions", "video_id": "video12728", "sen_id": 228027}, {"caption": "ryan toys review one boy playing in the indoor games so fun", "video_id": "video12728", "sen_id": 228028}, {"caption": "a baby was going on the upstairs and playing and the mom was telling how to behave", "video_id": "video12728", "sen_id": 228029}, {"caption": "babies playing in the fun house with slides", "video_id": "video12728", "sen_id": 228030}, {"caption": "there is some kids playing in the park", "video_id": "video12728", "sen_id": 228031}, {"caption": "a woman speaks to her small child who plays in a playground", "video_id": "video12728", "sen_id": 228032}, {"caption": "a small cute boy playing funny games in his holidays", "video_id": "video12728", "sen_id": 228033}, {"caption": "a boy is climbing over the stairs following a person", "video_id": "video12728", "sen_id": 228034}, {"caption": "a guy in a white shirt is walking around", "video_id": "video12728", "sen_id": 228035}, {"caption": "a boy is climbing up on a slider and running", "video_id": "video12728", "sen_id": 228036}, {"caption": "a young child crawls on a playset amid a lot of germs", "video_id": "video12728", "sen_id": 228037}, {"caption": "a young boy goes through the different level of an indoor play land", "video_id": "video12728", "sen_id": 228038}, {"caption": "the young baby is climbing the woods and happily talking to the mother", "video_id": "video12728", "sen_id": 228039}, {"caption": "a man looks shocked while driving around a race course", "video_id": "video12873", "sen_id": 228040}, {"caption": "a person is driving car very fast around a race track", "video_id": "video12873", "sen_id": 228041}, {"caption": "a car speeds down a race track and we see water on the track before we see the driver", "video_id": "video12873", "sen_id": 228042}, {"caption": "various angles and views of a race track and a man driving a car", "video_id": "video12873", "sen_id": 228043}, {"caption": "a car races along a wet race track", "video_id": "video12873", "sen_id": 228044}, {"caption": "a vehicle is racing down the race track fast", "video_id": "video12873", "sen_id": 228045}, {"caption": "a black sports car features an adjustable air foil on the trunk", "video_id": "video12873", "sen_id": 228046}, {"caption": "a man is driving a car so fast in a car race track", "video_id": "video12873", "sen_id": 228047}, {"caption": "a car going faster on the road", "video_id": "video12873", "sen_id": 228048}, {"caption": "a car is speeding down the road at very high speeds the driver is shocked", "video_id": "video12873", "sen_id": 228049}, {"caption": "road drive cars run so fast so nice to see but the person get shock due to fast driving", "video_id": "video12873", "sen_id": 228050}, {"caption": "a car is going very fast on a racing track", "video_id": "video12873", "sen_id": 228051}, {"caption": "there is a old man driving a car with full speed", "video_id": "video12873", "sen_id": 228052}, {"caption": "a man in a green jacket is racing in a car", "video_id": "video12873", "sen_id": 228053}, {"caption": "a car races around a track and is seen at high speeds with an excited man at steering wheel", "video_id": "video12873", "sen_id": 228054}, {"caption": "a person is driving car and showing its features", "video_id": "video12873", "sen_id": 228055}, {"caption": "there is a stylish new car on the track", "video_id": "video12873", "sen_id": 228056}, {"caption": "shots of a sportcar as it is doing laps with an older gentleman behind its wheel", "video_id": "video12873", "sen_id": 228057}, {"caption": "we speed through a racetrack", "video_id": "video12873", "sen_id": 228058}, {"caption": "a man is behind driver seat of sports car surprised at speed as he travels around track", "video_id": "video12873", "sen_id": 228059}, {"caption": "a commercial playing of a candy called ayds while a women talks about its demise", "video_id": "video10478", "sen_id": 228060}, {"caption": "a diet candy that has a very unfortunate name", "video_id": "video10478", "sen_id": 228061}, {"caption": "a dated commerical showing a popular 60s tv host selling a choolate dietary aid", "video_id": "video10478", "sen_id": 228062}, {"caption": "a blonde-haired woman with a page-boy style hairdo holds a box filled with weight-loss chocolate candies which she promotes to lose weight", "video_id": "video10478", "sen_id": 228063}, {"caption": "a diet product that was compared to an std", "video_id": "video10478", "sen_id": 228064}, {"caption": "a 1960's dressed lady discusses candy which can help with your weight", "video_id": "video10478", "sen_id": 228065}, {"caption": "a diet aid commercial features a bright yellow coffee cup", "video_id": "video10478", "sen_id": 228066}, {"caption": "a weight-loss candy with an unfortunate name was marketed in the seventies", "video_id": "video10478", "sen_id": 228067}, {"caption": "a story of an unfortunately named diet candy called ayds which was discontinued after the aids virus spread", "video_id": "video10478", "sen_id": 228068}, {"caption": "old commercial from the 80's about a candy called ayds that is no longer available", "video_id": "video10478", "sen_id": 228069}, {"caption": "a woman in a white shirt and blue vest holds a box of chocolates in her handh", "video_id": "video10478", "sen_id": 228070}, {"caption": "a woman discussing the unfortunately named diet candy ayds", "video_id": "video10478", "sen_id": 228071}, {"caption": "a girl is discussing a diet candy with an untimely name", "video_id": "video10478", "sen_id": 228072}, {"caption": "a blonde woman is marketing a candy called ayds and then a brown haired woman does the same", "video_id": "video10478", "sen_id": 228073}, {"caption": "a small history on some candy named ayds during the 90s", "video_id": "video10478", "sen_id": 228074}, {"caption": "there ia well dressed women explaining about a product", "video_id": "video10478", "sen_id": 228075}, {"caption": "a woman is talking about ayds a weight loss supplement she explains that it quickly dropped off in popularity due to the similar sounding aids disease", "video_id": "video10478", "sen_id": 228076}, {"caption": "a clip of commercial ads for the ayds product being promoted by women", "video_id": "video10478", "sen_id": 228077}, {"caption": "a promotional video of health nutrition products from ayds", "video_id": "video10478", "sen_id": 228078}, {"caption": "a 1970 s commercial for a weight loss candy shows women eating the candy", "video_id": "video10478", "sen_id": 228079}, {"caption": "two men are carrying an old cast iron sink out the front door of a woman's apartment", "video_id": "video11198", "sen_id": 228080}, {"caption": "two men move a heavy sink out of an old house", "video_id": "video11198", "sen_id": 228081}, {"caption": "two men moving an object for a heavy set woman in red", "video_id": "video11198", "sen_id": 228082}, {"caption": "two men carrier a sink out of a home while a woman stands in the doorway waving goodbye", "video_id": "video11198", "sen_id": 228083}, {"caption": "two workers remove a heavy sink from an apartment kitchen", "video_id": "video11198", "sen_id": 228084}, {"caption": "two men remove a cast iron sink from a woman s home", "video_id": "video11198", "sen_id": 228085}, {"caption": "two men work together to carry furniture out the door", "video_id": "video11198", "sen_id": 228086}, {"caption": "two people are moving a cast iron sink out of the house", "video_id": "video11198", "sen_id": 228087}, {"caption": "two men carry a large cast iron sink out of a brick building", "video_id": "video11198", "sen_id": 228088}, {"caption": "two men are shifting a table from indoor to outdoor", "video_id": "video11198", "sen_id": 228089}, {"caption": "two men seem to be moving a cast-iron desk out of an african americanblack woman s house", "video_id": "video11198", "sen_id": 228090}, {"caption": "in a house a two men are moving out an old iron sink", "video_id": "video11198", "sen_id": 228091}, {"caption": "a pair of older men remove a sink from a kitchen", "video_id": "video11198", "sen_id": 228092}, {"caption": "two men are carrying a sink out of a brick house", "video_id": "video11198", "sen_id": 228093}, {"caption": "men walks out a house carrying a sink then a woman looks at them", "video_id": "video11198", "sen_id": 228094}, {"caption": "a heavy metal table is taken off by men appreciated by the woman", "video_id": "video11198", "sen_id": 228095}, {"caption": "a fat woman is exiting her red brick house", "video_id": "video11198", "sen_id": 228096}, {"caption": "two men carrying a cast iron sink out the doorway of a brick building as a women in a red shirt waves goodbye", "video_id": "video11198", "sen_id": 228097}, {"caption": "heavy cast iron sink taken out of the house and say bye to it", "video_id": "video11198", "sen_id": 228098}, {"caption": "a group of men carry a sink out the door", "video_id": "video11198", "sen_id": 228099}, {"caption": "people are singing to a song outside and kicking dirt", "video_id": "video12722", "sen_id": 228100}, {"caption": "a boy band emotes by the side of a road while singing about lost love", "video_id": "video12722", "sen_id": 228101}, {"caption": "men sing in a field on the side of a road and near a fire", "video_id": "video12722", "sen_id": 228102}, {"caption": "a group of men are in the forest together", "video_id": "video12722", "sen_id": 228103}, {"caption": "a band of five men is performing in a music video which is set outdoors in a wooded area and an empty lot", "video_id": "video12722", "sen_id": 228104}, {"caption": "a man singing then a group of men singing one kicks the dirt", "video_id": "video12722", "sen_id": 228105}, {"caption": "a group of young men singing in front of a brick wall", "video_id": "video12722", "sen_id": 228106}, {"caption": "young men film each other in wild wooded areas while they record a music video", "video_id": "video12722", "sen_id": 228107}, {"caption": "a man sings in the woods some fire burns nearby", "video_id": "video12722", "sen_id": 228108}, {"caption": "a boy band singing a love song while outdoors", "video_id": "video12722", "sen_id": 228109}, {"caption": "a band plays in front of a wall while the singer puts a marshmallow on a stick in front on a roaring bonfire", "video_id": "video12722", "sen_id": 228110}, {"caption": "a man is putting a marshmallow on a stick", "video_id": "video12722", "sen_id": 228111}, {"caption": "two persons with black coat and white banian singing a song with action", "video_id": "video12722", "sen_id": 228112}, {"caption": "a group of men are singing about a big mistake", "video_id": "video12722", "sen_id": 228113}, {"caption": "there is a group of men singing a song in an outdoor setting and a large 18 wheeler truck passing them by on the road", "video_id": "video12722", "sen_id": 228114}, {"caption": "a group of men are outside singing in different environments", "video_id": "video12722", "sen_id": 228115}, {"caption": "a music video of a five guy boy band", "video_id": "video12722", "sen_id": 228116}, {"caption": "a boy band sings their song in a field with fire", "video_id": "video12722", "sen_id": 228117}, {"caption": "a rock band singing in the forest in the countryside", "video_id": "video12722", "sen_id": 228118}, {"caption": "a group of people are outside singing a song", "video_id": "video12722", "sen_id": 228119}, {"caption": "news commentator talking about an expensive new electric train", "video_id": "video10467", "sen_id": 228120}, {"caption": "a male reporter is talking about ethiopia's new rail service", "video_id": "video10467", "sen_id": 228121}, {"caption": "a man is sitting behind a desk reporting the news", "video_id": "video10467", "sen_id": 228122}, {"caption": "viola davis from bbc world news discusses the first $417000000 fully electrified train in africa partially funded by a china bank", "video_id": "video10467", "sen_id": 228123}, {"caption": "a man is sitting in front of a green screen on a news program which is displaying an electrified train in ethiopia", "video_id": "video10467", "sen_id": 228124}, {"caption": "a man in a suit is introducing a news segment while sitting", "video_id": "video10467", "sen_id": 228125}, {"caption": "news anchor wearing a blue suit sitting on set telling us the news", "video_id": "video10467", "sen_id": 228126}, {"caption": "world news anchor talks about the new fully-electrified train service in africa and shows a picture of the train station", "video_id": "video10467", "sen_id": 228127}, {"caption": "a bbc news anchor is discussing a brand new ethiopian rail service", "video_id": "video10467", "sen_id": 228128}, {"caption": "a news anchor is talking about a train service", "video_id": "video10467", "sen_id": 228129}, {"caption": "a man wearing black color dress talking", "video_id": "video10467", "sen_id": 228130}, {"caption": "a man delivering the news regarding the ethiopian capital", "video_id": "video10467", "sen_id": 228131}, {"caption": "a bbc news anchor speaks on a new electric train service in ethiopa", "video_id": "video10467", "sen_id": 228132}, {"caption": "news reporter sharing story on new rail service in ethiopia", "video_id": "video10467", "sen_id": 228133}, {"caption": "guy in suit talking to live audience from the studio", "video_id": "video10467", "sen_id": 228134}, {"caption": "a man with black color dressed talking and sitting", "video_id": "video10467", "sen_id": 228135}, {"caption": "a man is explaing uses of train for people", "video_id": "video10467", "sen_id": 228136}, {"caption": "a man is talking in the bbc world channel", "video_id": "video10467", "sen_id": 228137}, {"caption": "a man in a suit is sitting on a couch giving news", "video_id": "video10467", "sen_id": 228138}, {"caption": "a man is talking about something on the news", "video_id": "video10467", "sen_id": 228139}, {"caption": "a woman cutting up noodles to prepare a meal", "video_id": "video11618", "sen_id": 228140}, {"caption": "a cook wearing a floral dress cuts a pile of noodles with scissors and smashes garlic cloves with a flat knife blade on a wooden cutting board", "video_id": "video11618", "sen_id": 228141}, {"caption": "a lady is cutting cabagge with scissors and smashing garlic", "video_id": "video11618", "sen_id": 228142}, {"caption": "in a kitchen a woman in an apron is cutting brussel sprouts with scissors and begins crushing garlic on a cutting board", "video_id": "video11618", "sen_id": 228143}, {"caption": "some pasta cutting strips of food with scissors on a cutting board", "video_id": "video11618", "sen_id": 228144}, {"caption": "a woman is cutting up shredded potatoes into bite sized pieces and smashing garlic to put into her meal", "video_id": "video11618", "sen_id": 228145}, {"caption": "a woman demonstrates cutting cooked spaghetti into bite-sized pieces and then smashes a clove of garlic", "video_id": "video11618", "sen_id": 228146}, {"caption": "a lady in her kitchen shows how to cut pasta into bite size pieces and then smash garlic that is to be used", "video_id": "video11618", "sen_id": 228147}, {"caption": "a lady with red sizors cutting white noodles and gathering them togheter a lady with a knife smashing cloves of garlic", "video_id": "video11618", "sen_id": 228148}, {"caption": "a woman cutting food into pieces with a pair of scissors and then smashing garlic", "video_id": "video11618", "sen_id": 228149}, {"caption": "a women in a kitchen cutting some vegetables carefully with a knife", "video_id": "video11618", "sen_id": 228150}, {"caption": "a woman using scissors to cut the bites into the small pieces", "video_id": "video11618", "sen_id": 228151}, {"caption": "woman cuts noodles into smaller pieces with scissors then crushes garlic", "video_id": "video11618", "sen_id": 228152}, {"caption": "a woman is cutting spaghetti into bite sized pieces with scissors and then smashing garlic with the side of a knife", "video_id": "video11618", "sen_id": 228153}, {"caption": "a woman cuts noodles with a scissor and smashes garlic with a knife", "video_id": "video11618", "sen_id": 228154}, {"caption": "there is a woman making a dish with a knife", "video_id": "video11618", "sen_id": 228155}, {"caption": "a man is cutting a noodles into many pieces", "video_id": "video11618", "sen_id": 228156}, {"caption": "a woman in a black outfit is shown cutting pasta into several bite size slices", "video_id": "video11618", "sen_id": 228157}, {"caption": "a woman cuts a nest of noodles or sprouts with kitchen shears then smashes garlic on a wood cutting board in prep for a recipe", "video_id": "video11618", "sen_id": 228158}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11618", "sen_id": 228159}, {"caption": "the history of british history being shown at a park", "video_id": "video12122", "sen_id": 228160}, {"caption": "a man walking by a large airplane that is out on a stand for display", "video_id": "video12122", "sen_id": 228161}, {"caption": "walking in an open air war museum a male person narrates british history relative to the replica hurricane world war ii plane", "video_id": "video12122", "sen_id": 228162}, {"caption": "a british man is observing an old wwii aircraft", "video_id": "video12122", "sen_id": 228163}, {"caption": "man explains how the place shown is a very large part of british history while walking down a stairs", "video_id": "video12122", "sen_id": 228164}, {"caption": "visit a local museum that is working hard to preserve the relics from the past", "video_id": "video12122", "sen_id": 228165}, {"caption": "the side of a fighter plane and a man in a cemetery walking underground", "video_id": "video12122", "sen_id": 228166}, {"caption": "a front propeller airplane is on display at a park", "video_id": "video12122", "sen_id": 228167}, {"caption": "a man wearing a shirt walking in the garden", "video_id": "video12122", "sen_id": 228168}, {"caption": "a man walks on lawn and then goes down on steps", "video_id": "video12122", "sen_id": 228169}, {"caption": "guy in formal shirt and pant walking into his office at army base", "video_id": "video12122", "sen_id": 228170}, {"caption": "a white shirt man walking through the grass", "video_id": "video12122", "sen_id": 228171}, {"caption": "there is a plane in the garden and a men is looking for plane", "video_id": "video12122", "sen_id": 228172}, {"caption": "old airplanes sits on the lawn and a man walks by and goes in a building", "video_id": "video12122", "sen_id": 228173}, {"caption": "there is a model of plain and the men walking beside that", "video_id": "video12122", "sen_id": 228174}, {"caption": "a yellow car is driving around a city street", "video_id": "video12122", "sen_id": 228175}, {"caption": "there is a aircraft in a beautiful park", "video_id": "video12122", "sen_id": 228176}, {"caption": "this is historic place where old plane were used for world war ii", "video_id": "video12122", "sen_id": 228177}, {"caption": "in this video clip a man explaining about the aeroplane", "video_id": "video12122", "sen_id": 228178}, {"caption": "someone is filming a street in the day light", "video_id": "video12122", "sen_id": 228179}, {"caption": "a man sits in the cab of a truck looking bored as two people wait inside a store", "video_id": "video11282", "sen_id": 228180}, {"caption": "a gentleman sits in his red car preparing to start the vehicle", "video_id": "video11282", "sen_id": 228181}, {"caption": "a man in a red a red a car and an alarm goes off", "video_id": "video11282", "sen_id": 228182}, {"caption": "two men are in a grocery store eating a snack and one man is in a car as the alarm sounds", "video_id": "video11282", "sen_id": 228183}, {"caption": "some food spilled on a floor and a man in a supermaket eating food", "video_id": "video11282", "sen_id": 228184}, {"caption": "a man in a red car who set off the car alarm", "video_id": "video11282", "sen_id": 228185}, {"caption": "a man in a car wearing a green long sleeve shirt is in the car the alarm going off", "video_id": "video11282", "sen_id": 228186}, {"caption": "a man is sitting in the red car and going places", "video_id": "video11282", "sen_id": 228187}, {"caption": "the man is about to test drive a car", "video_id": "video11282", "sen_id": 228188}, {"caption": "a man in black coat is standing with another man in a ugly printed shirt", "video_id": "video11282", "sen_id": 228189}, {"caption": "a man driving a red truck and making its alarm go off", "video_id": "video11282", "sen_id": 228190}, {"caption": "there is a man getting ready to drive a car", "video_id": "video11282", "sen_id": 228191}, {"caption": "the man with a seatbelt is seated infont of the car holding a staring", "video_id": "video11282", "sen_id": 228192}, {"caption": "a man sitting in a red car starts the car and the alarm sounds there are 2 people in the store they hear the car", "video_id": "video11282", "sen_id": 228193}, {"caption": "a man in a grocery store tries to start a car but fails and the alarm goes off", "video_id": "video11282", "sen_id": 228194}, {"caption": "a host from top gear trying to start a car", "video_id": "video11282", "sen_id": 228195}, {"caption": "a broken can is on the ground with food coming out two men look upset at another who is in a car while the alarm is going off", "video_id": "video11282", "sen_id": 228196}, {"caption": "a car which is red color is standing", "video_id": "video11282", "sen_id": 228197}, {"caption": "a man is prepared to drive off until an alarm sounds", "video_id": "video11282", "sen_id": 228198}, {"caption": "a car is parked in a show room and a man stares at the dash trying to determine something", "video_id": "video11282", "sen_id": 228199}, {"caption": "a man in gray talks about a war in ukraine as a translator translates", "video_id": "video10063", "sen_id": 228200}, {"caption": "a man talking in a field in front of a news mic", "video_id": "video10063", "sen_id": 228201}, {"caption": "a man with a brown shirt talking about soldiers", "video_id": "video10063", "sen_id": 228202}, {"caption": "a man is being interviewed by the news about a war", "video_id": "video10063", "sen_id": 228203}, {"caption": "a man talking about war on sky news tv", "video_id": "video10063", "sen_id": 228204}, {"caption": "a man with black hair and wearing a gray colored shirt standing outside talking about war", "video_id": "video10063", "sen_id": 228205}, {"caption": "a young man in a grey button down shirt in talking to someone", "video_id": "video10063", "sen_id": 228206}, {"caption": "a ukranian man discusses the situation in his country to a camera", "video_id": "video10063", "sen_id": 228207}, {"caption": "a man in a grey shirt is standing in a field talking to a news anchor", "video_id": "video10063", "sen_id": 228208}, {"caption": "a man in a button up shirt talking in a grassy field", "video_id": "video10063", "sen_id": 228209}, {"caption": "a man is interviewed about the current war problems in russia", "video_id": "video10063", "sen_id": 228210}, {"caption": "a person talking with media in a place with green grass", "video_id": "video10063", "sen_id": 228211}, {"caption": "there is a man talking about the grievances of war as those in power tend to forget the soldiers who fought for them and their nation", "video_id": "video10063", "sen_id": 228212}, {"caption": "a reporter translates for a man who is telling him what he thinks of the war in oekraine that it has to stop", "video_id": "video10063", "sen_id": 228213}, {"caption": "man discussing the benefits of stopping a war and the harm wars do", "video_id": "video10063", "sen_id": 228214}, {"caption": "a man standing outside talking to a news reporter", "video_id": "video10063", "sen_id": 228215}, {"caption": "a man in a button up shirt speaks ukrainian in front of a collection of flowers while another voice translates for him", "video_id": "video10063", "sen_id": 228216}, {"caption": "a boy in black color wearing cloth inside park standing speaking on topic displaying on screen", "video_id": "video10063", "sen_id": 228217}, {"caption": "guy in brown shirt talking to the camera", "video_id": "video10063", "sen_id": 228218}, {"caption": "a man with a shirt is standing outside", "video_id": "video10063", "sen_id": 228219}, {"caption": "student explaining thesis on 3d mapping in a computer lab", "video_id": "video12607", "sen_id": 228220}, {"caption": "a man is sitting in a computer lab and is explaining his thesis", "video_id": "video12607", "sen_id": 228221}, {"caption": "a student seated in a computer lab talks about his thesis on 3-d mapping", "video_id": "video12607", "sen_id": 228222}, {"caption": "a student describes his thesis on dense 3d mapping", "video_id": "video12607", "sen_id": 228223}, {"caption": "a man describes his thesis on 3-d mapping", "video_id": "video12607", "sen_id": 228224}, {"caption": "a white male with red hair and a black shirt talking by a computer", "video_id": "video12607", "sen_id": 228225}, {"caption": "an inventor is describing his invention", "video_id": "video12607", "sen_id": 228226}, {"caption": "there is a tshirt man talking in front of a computer", "video_id": "video12607", "sen_id": 228227}, {"caption": "a man is sitting alone in a room of computersspeaking slowly about 3d models", "video_id": "video12607", "sen_id": 228228}, {"caption": "a kiki man in a black t-shirt with glasses is talking by his computer", "video_id": "video12607", "sen_id": 228229}, {"caption": "a man with glasses and black shirt and explaining his thesis", "video_id": "video12607", "sen_id": 228230}, {"caption": "a man with an accent wearing glasses talks about reconstructing 3d models from recorded footage", "video_id": "video12607", "sen_id": 228231}, {"caption": "a man in a black shirt is sitting in an office explaining his thesis", "video_id": "video12607", "sen_id": 228232}, {"caption": "the man wearing eye glasses sit in the chair near the desk and talks", "video_id": "video12607", "sen_id": 228233}, {"caption": "a guy in a black tee talks about his it job and it s responsibilities", "video_id": "video12607", "sen_id": 228234}, {"caption": "a man in a lab talking 3d construction using a video camera", "video_id": "video12607", "sen_id": 228235}, {"caption": "a man with glasses is speaking about something", "video_id": "video12607", "sen_id": 228236}, {"caption": "a man in glasses and a black shirt is sitting in front of a computer screen talking about his thesis he says his thesis is about 3d modeling", "video_id": "video12607", "sen_id": 228237}, {"caption": "a man wearing a black shirt is explaining his thesis which essentially involves 3d mapping using a cheap camera", "video_id": "video12607", "sen_id": 228238}, {"caption": "a man discussing information technology to the camera", "video_id": "video12607", "sen_id": 228239}, {"caption": "a woman going crazy over meet a special kid", "video_id": "video12332", "sen_id": 228240}, {"caption": "a woman is emotional and hugs the young winner of a televised cooking contest", "video_id": "video12332", "sen_id": 228241}, {"caption": "in somone kietchen talking to some girl", "video_id": "video12332", "sen_id": 228242}, {"caption": "host is excited to have the guest on her show and hugs her to show the happiness", "video_id": "video12332", "sen_id": 228243}, {"caption": "in a game show-like environment a woman dressed up like an elf hugs a younger girl", "video_id": "video12332", "sen_id": 228244}, {"caption": "a peoples are enjoying and clapping and girl going to the stage", "video_id": "video12332", "sen_id": 228245}, {"caption": "a woman on the tv show the real excited to see a guest walking on to the set", "video_id": "video12332", "sen_id": 228246}, {"caption": "a blonde women gets very happy when she sees a small girl walks in", "video_id": "video12332", "sen_id": 228247}, {"caption": "there is a woman in white dressing talking to a woman", "video_id": "video12332", "sen_id": 228248}, {"caption": "an episode of the real during christmas time where a girl is very excited", "video_id": "video12332", "sen_id": 228249}, {"caption": "two excited women hug each other as a crowd of people cheer for them", "video_id": "video12332", "sen_id": 228250}, {"caption": "amazing woman is in the kitchen and she is meeting small girl", "video_id": "video12332", "sen_id": 228251}, {"caption": "a wome got excited and started shouting when she sees a small girl walk in", "video_id": "video12332", "sen_id": 228252}, {"caption": "on the reality show the anchor came and clap the cine artist", "video_id": "video12332", "sen_id": 228253}, {"caption": "in a show a participant comes they audience clap and the lady in white dress hug gere", "video_id": "video12332", "sen_id": 228254}, {"caption": "a girl in white dress and small kid in black dress wearing clapping hands meeting each other audience clapping hands displaying on screen", "video_id": "video12332", "sen_id": 228255}, {"caption": "two women in a kitchen are hugging", "video_id": "video12332", "sen_id": 228256}, {"caption": "a television show a girl hugs another girl in the program", "video_id": "video12332", "sen_id": 228257}, {"caption": "the talk show the real the host runs to hug alittle girl", "video_id": "video12332", "sen_id": 228258}, {"caption": "a women is excited when a young girl comes on stage", "video_id": "video12332", "sen_id": 228259}, {"caption": "a man is discussing the settings for a scene that was being shot for a movie", "video_id": "video10140", "sen_id": 228260}, {"caption": "a group of people walk around outside while flying a kite", "video_id": "video10140", "sen_id": 228261}, {"caption": "a clip from the making of the lord of the rings", "video_id": "video10140", "sen_id": 228262}, {"caption": "a man wearing sunglasses with long hair and goattee standing in an open field", "video_id": "video10140", "sen_id": 228263}, {"caption": "an actor prepares for a scene on a sunny hillside", "video_id": "video10140", "sen_id": 228264}, {"caption": "a helicopter taking off by a lake while a man talks about not wanting to fly", "video_id": "video10140", "sen_id": 228265}, {"caption": "a rescue helacoper is take off on the mountain top", "video_id": "video10140", "sen_id": 228266}, {"caption": "a man is speaking on a situation in creekstown", "video_id": "video10140", "sen_id": 228267}, {"caption": "{}", "video_id": "video10140", "sen_id": 228268}, {"caption": "a helicopter takes off near a lake as a number of people walk away through a field of rocky boulders", "video_id": "video10140", "sen_id": 228269}, {"caption": "a man with a dark pair of sunglasses is talking", "video_id": "video10140", "sen_id": 228270}, {"caption": "few man talking in the mountain road side to the", "video_id": "video10140", "sen_id": 228271}, {"caption": "there is man with cooling glass standing nearby a river", "video_id": "video10140", "sen_id": 228272}, {"caption": "a man describes shooting a scene by a lake in queenstown and another man explains that sean did not want to fly", "video_id": "video10140", "sen_id": 228273}, {"caption": "one man talk about stage something with a man", "video_id": "video10140", "sen_id": 228274}, {"caption": "a man with a beard talks about a location which shows a helicopter lifting off from rough terrain", "video_id": "video10140", "sen_id": 228275}, {"caption": "something moves up to sky somebody is there", "video_id": "video10140", "sen_id": 228276}, {"caption": "people walk over a remote area littered with white debris near a pool of greyish water while a helicopter lifts off", "video_id": "video10140", "sen_id": 228277}, {"caption": "a famous director talks about some of the scenes he shot in a famous movie", "video_id": "video10140", "sen_id": 228278}, {"caption": "there are two people in a field flying a kite by a lake", "video_id": "video10140", "sen_id": 228279}, {"caption": "a video explaining what the narrator is saying", "video_id": "video12899", "sen_id": 228280}, {"caption": "two animated characters look on as a third male character is in a submersion of water", "video_id": "video12899", "sen_id": 228281}, {"caption": "a science experiment is visualized with some cartoons", "video_id": "video12899", "sen_id": 228282}, {"caption": "a man lectures about world scientific history and the places scientists were from originally", "video_id": "video12899", "sen_id": 228283}, {"caption": "a couple of cartoon people standing in front of a science machine", "video_id": "video12899", "sen_id": 228284}, {"caption": "man talks about charles while a cartoon image of a man inside a tank with green water is shown", "video_id": "video12899", "sen_id": 228285}, {"caption": "man explains about charles while cartoon images show a man inside a tank of green liquid", "video_id": "video12899", "sen_id": 228286}, {"caption": "a cartoon that shows and old lady and an old man standing in front of a water machine", "video_id": "video12899", "sen_id": 228287}, {"caption": "a scientist lectures about an odd scientist who worked in the past", "video_id": "video12899", "sen_id": 228288}, {"caption": "charles is discussed via genetic engineering and his origins in belgium", "video_id": "video12899", "sen_id": 228289}, {"caption": "a man lectures on a development in the scientific community", "video_id": "video12899", "sen_id": 228290}, {"caption": "a scantily clad cartoon man is submerged in a vat of liquid while two other cartoon people look on", "video_id": "video12899", "sen_id": 228291}, {"caption": "an animated description of genetic engineer named charles who was from belgium", "video_id": "video12899", "sen_id": 228292}, {"caption": "a women is explaining about super ruler proper", "video_id": "video12899", "sen_id": 228293}, {"caption": "there is a man breathing inside the water", "video_id": "video12899", "sen_id": 228294}, {"caption": "two cartoons look at the viewer while a man is held captive in water", "video_id": "video12899", "sen_id": 228295}, {"caption": "two men are standing in a laboratory and observing a man in a tank", "video_id": "video12899", "sen_id": 228296}, {"caption": "a guy talking about a guy named charles on a computer or tv", "video_id": "video12899", "sen_id": 228297}, {"caption": "a person narrates about the origin of a genetic engineer who was born in belgium", "video_id": "video12899", "sen_id": 228298}, {"caption": "a discussion about how charles was basically genetically engineered to be ruler of spain", "video_id": "video12899", "sen_id": 228299}, {"caption": "a man interviews an actor on his past roles", "video_id": "video11071", "sen_id": 228300}, {"caption": "the man is interviewing tj", "video_id": "video11071", "sen_id": 228301}, {"caption": "a clip from an interview from actor mr norton from birdman", "video_id": "video11071", "sen_id": 228302}, {"caption": "a reporter interviews an actor about a part he played in a major movie", "video_id": "video11071", "sen_id": 228303}, {"caption": "there are two men in suits speaking about the movie birdman", "video_id": "video11071", "sen_id": 228304}, {"caption": "two men wearing suits and talking to each other", "video_id": "video11071", "sen_id": 228305}, {"caption": "a man in grey suit is talking to another person in black suit", "video_id": "video11071", "sen_id": 228306}, {"caption": "a personality is being interviewed by a good looking young man in a show", "video_id": "video11071", "sen_id": 228307}, {"caption": "an entertainment reporter interviews a famous actor about a movie he is in", "video_id": "video11071", "sen_id": 228308}, {"caption": "guy in suit and tie taking interview of the actor in the movie", "video_id": "video11071", "sen_id": 228309}, {"caption": "two young people sharing their views in front of the camera", "video_id": "video11071", "sen_id": 228310}, {"caption": "a hollywood celebrity is giving interview and sharing his thoghts", "video_id": "video11071", "sen_id": 228311}, {"caption": "guy wearing tie and suit interview a guy", "video_id": "video11071", "sen_id": 228312}, {"caption": "the young man in grey suit and design tie explains about something to the person sitting opposite to him", "video_id": "video11071", "sen_id": 228313}, {"caption": "a man is interviewing a male celebrity on a talk show", "video_id": "video11071", "sen_id": 228314}, {"caption": "there is a suit man talking about the movie birdman", "video_id": "video11071", "sen_id": 228315}, {"caption": "two men wearing black and grey color dressed talking", "video_id": "video11071", "sen_id": 228316}, {"caption": "conversation about the bird man movie between two guys by sitting on the chair", "video_id": "video11071", "sen_id": 228317}, {"caption": "a man interviews ed norton about his role in the movie", "video_id": "video11071", "sen_id": 228318}, {"caption": "the anchor of chat show is interviewing a celebrity", "video_id": "video11071", "sen_id": 228319}, {"caption": "a woman describes the workings of a farm she lives on", "video_id": "video12158", "sen_id": 228320}, {"caption": "a female farmer talks about what she has to do to take a vacation", "video_id": "video12158", "sen_id": 228321}, {"caption": "a woman stands outside and talks to the camera in front of a rolling green field", "video_id": "video12158", "sen_id": 228322}, {"caption": "a woman is talking about her farm", "video_id": "video12158", "sen_id": 228323}, {"caption": "a woman outside on a farm talking about going away for a while and letting a professional fill in on the farm", "video_id": "video12158", "sen_id": 228324}, {"caption": "a woman in a gray shirt is standing in front of a fence and talking", "video_id": "video12158", "sen_id": 228325}, {"caption": "a women with t-shirt explaining some topic in her garden", "video_id": "video12158", "sen_id": 228326}, {"caption": "a woman in a grey sweatshirt talking about getting away from the farm", "video_id": "video12158", "sen_id": 228327}, {"caption": "a lady talking about something in her garden to media", "video_id": "video12158", "sen_id": 228328}, {"caption": "a lady stands outside on the field on a nice sunny day", "video_id": "video12158", "sen_id": 228329}, {"caption": "a woman stands outside near bushes in the grass", "video_id": "video12158", "sen_id": 228330}, {"caption": "a lady discusses the need to get away from her farm for a little while corey hamilton oversees the farm", "video_id": "video12158", "sen_id": 228331}, {"caption": "a woman is standing on a farm talking about a variety of different topics", "video_id": "video12158", "sen_id": 228332}, {"caption": "a woman stands besides fence of farm and discusses trip away", "video_id": "video12158", "sen_id": 228333}, {"caption": "a woman wearing a grey and black shirt talks next to a wooden fence and green bushes", "video_id": "video12158", "sen_id": 228334}, {"caption": "a lady speaking about something in a green plains", "video_id": "video12158", "sen_id": 228335}, {"caption": "a woman in a gray shirt is standing outside while discussing how it is necessary and wonderful to get away from the farm with the help of a professional named corey hamilton", "video_id": "video12158", "sen_id": 228336}, {"caption": "a woman stand in a wooded area talking about her recent farming experience", "video_id": "video12158", "sen_id": 228337}, {"caption": "a woman is speaking about a wonderful experience at the farm", "video_id": "video12158", "sen_id": 228338}, {"caption": "the lady in ash dress is explaining about the landplantations and grass", "video_id": "video12158", "sen_id": 228339}, {"caption": "a little boy is wearing a baseball cap and talking", "video_id": "video11344", "sen_id": 228340}, {"caption": "young boys in a school setting are interviewed for a tv program", "video_id": "video11344", "sen_id": 228341}, {"caption": "two little boys are answering questions that someone unseen is asking them", "video_id": "video11344", "sen_id": 228342}, {"caption": "a lady asks children what they want to be when they grow up", "video_id": "video11344", "sen_id": 228343}, {"caption": "a little boy with a sore nose talks as another boy in a hat talks", "video_id": "video11344", "sen_id": 228344}, {"caption": "in a classroom a child in a red shirt is speaking then a child in a reversed blue baseball cap is speaking", "video_id": "video11344", "sen_id": 228345}, {"caption": "spend days with our littlest citizens as we visit the local elementary schools", "video_id": "video11344", "sen_id": 228346}, {"caption": "a women is asking a series of kids what they want to do when they grow up", "video_id": "video11344", "sen_id": 228347}, {"caption": "a boy is speaking in the bbc news channel", "video_id": "video11344", "sen_id": 228348}, {"caption": "two small kids at the age of 4 having an interview", "video_id": "video11344", "sen_id": 228349}, {"caption": "a boy with brown hair is talking", "video_id": "video11344", "sen_id": 228350}, {"caption": "there are some boys answering to a woman", "video_id": "video11344", "sen_id": 228351}, {"caption": "little boy wearing black color cap is standing", "video_id": "video11344", "sen_id": 228352}, {"caption": "the kids are the boys who had the age 34 12 etc are speaking very beautifully", "video_id": "video11344", "sen_id": 228353}, {"caption": "a teacher talks to students about what they want to be when they grow up", "video_id": "video11344", "sen_id": 228354}, {"caption": "a kid in a red shirt is talkign to someone", "video_id": "video11344", "sen_id": 228355}, {"caption": " age 4 and 12 tells the woman he wants to be a spider when he grows up and the other boy", "video_id": "video11344", "sen_id": 228356}, {"caption": "a little boy stands and talks about careers", "video_id": "video11344", "sen_id": 228357}, {"caption": "young boys answer questions about their future life plans", "video_id": "video11344", "sen_id": 228358}, {"caption": "a kid with a black hat is standing inside", "video_id": "video11344", "sen_id": 228359}, {"caption": "a chef works on a recipe by stirring food in a small skillet", "video_id": "video12752", "sen_id": 228360}, {"caption": "a person stirs a sticky mixture as it sizzles in a cast iron skillet", "video_id": "video12752", "sen_id": 228361}, {"caption": "a chef stirs vegetables in a fry pan she is using in a restaurant kitchen", "video_id": "video12752", "sen_id": 228362}, {"caption": "a receipt video from lucky penny shop", "video_id": "video12752", "sen_id": 228363}, {"caption": "potatoes are being cooked in the skillet in the kitchen", "video_id": "video12752", "sen_id": 228364}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video12752", "sen_id": 228365}, {"caption": "potatoes are being cooked in the skillet with water", "video_id": "video12752", "sen_id": 228366}, {"caption": "apples being cooked and stirred around in a skillet", "video_id": "video12752", "sen_id": 228367}, {"caption": "a man is cooking apples in a pan for something", "video_id": "video12752", "sen_id": 228368}, {"caption": "apples are being cooked in a frying pan while a man talks about his dish", "video_id": "video12752", "sen_id": 228369}, {"caption": "a person cookes food in a black pan while using a white spoon to stir it", "video_id": "video12752", "sen_id": 228370}, {"caption": "a man is preparing apples in butter cinnamon and sugar in a saute pan", "video_id": "video12752", "sen_id": 228371}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video12752", "sen_id": 228372}, {"caption": "a man cooking apples on a pan and spreading them around", "video_id": "video12752", "sen_id": 228373}, {"caption": "a frying pan filled with apples is being cooked down", "video_id": "video12752", "sen_id": 228374}, {"caption": "in the kitchen a man preparing a chinese dish", "video_id": "video12752", "sen_id": 228375}, {"caption": "someone is mixing the food in the big pan using the white spoon", "video_id": "video12752", "sen_id": 228376}, {"caption": "cooking apples in the pan making them softer cooking them in butter sugar and cinnamon", "video_id": "video12752", "sen_id": 228377}, {"caption": "a man is working on cooking some apples for some type of apple jamsaucefilling giving some additional information as well", "video_id": "video12752", "sen_id": 228378}, {"caption": "in a kitchen a person is pouring the oil in the meat and frying them", "video_id": "video12752", "sen_id": 228379}, {"caption": "a chef holds open a cookbook in a commercial kitchen next to a glass refrigerator containing stacks of plated salad", "video_id": "video12139", "sen_id": 228380}, {"caption": "a chef holds onto a cookbook while the camera man looks at the assorted cupboards", "video_id": "video12139", "sen_id": 228381}, {"caption": "a cook holds open a book page showing a prepared entre a cookbook leans on a case above a pile of white towels and empty and filled refrigerated cases stand side by side in a commercial kitchen", "video_id": "video12139", "sen_id": 228382}, {"caption": "the inside of a restaurant's kitchen area where they prep and store cold foods that have been prepared", "video_id": "video12139", "sen_id": 228383}, {"caption": "chefs and many dishes in a professional kitchen", "video_id": "video12139", "sen_id": 228384}, {"caption": "there are chefs in a kitchen followed by someone holding a cookbook and a small portion of a kitchen", "video_id": "video12139", "sen_id": 228385}, {"caption": "a chef shows a menu for the items he has prepared in his kitchen", "video_id": "video12139", "sen_id": 228386}, {"caption": "chef stand in a commercial kitchen and display their culinary designs", "video_id": "video12139", "sen_id": 228387}, {"caption": "a chef in a kitchen showing a books pages and food on plates being warmed", "video_id": "video12139", "sen_id": 228388}, {"caption": "a view of five star hotel kitchen with some latest technology machinery for making dishes", "video_id": "video12139", "sen_id": 228389}, {"caption": "various prepared food dishes are shown stacked behind a window", "video_id": "video12139", "sen_id": 228390}, {"caption": "a person is showing the automated service at their place", "video_id": "video12139", "sen_id": 228391}, {"caption": "there is a factory with heavy equipment inside", "video_id": "video12139", "sen_id": 228392}, {"caption": "a chef looks through a book in a state of the art kitchen", "video_id": "video12139", "sen_id": 228393}, {"caption": "kitchen staff are standing around while the camera shows premade salads in a fridge", "video_id": "video12139", "sen_id": 228394}, {"caption": "the people are standing with holding a book and there is sound in background about machine sound is going on", "video_id": "video12139", "sen_id": 228395}, {"caption": "the person holding the book was wearing black pants and a white shirt", "video_id": "video12139", "sen_id": 228396}, {"caption": "some people are viewing the food factory with interest", "video_id": "video12139", "sen_id": 228397}, {"caption": "in restaurant inside kitchen in fridge and also course book", "video_id": "video12139", "sen_id": 228398}, {"caption": "a person in a room is showing a book in their hands", "video_id": "video12139", "sen_id": 228399}, {"caption": "a man talking about a 20 year old dolphin that has cancer in her mouth", "video_id": "video10638", "sen_id": 228400}, {"caption": "a 20 year old dolphin in florida was diagnosed with squamous cell carcinoma she was treated with antiangiogenic paste which was painted on lesions 3 times a week she was completely treated in 7 months which was proven by biopsy later on", "video_id": "video10638", "sen_id": 228401}, {"caption": "man talking about a dolphin living in florida and its cancer", "video_id": "video10638", "sen_id": 228402}, {"caption": "a speaker is speaking about how he created a cure for a dolphin who is a victim of cancer", "video_id": "video10638", "sen_id": 228403}, {"caption": "man explains antiangiogenic therapy which was done to a dolphin in florida while pictures of the dolphin and the cancer cells are shown", "video_id": "video10638", "sen_id": 228404}, {"caption": "a grey dolphin is floating with her head sticking out of blue clear water as pictures of cancer cells are shown", "video_id": "video10638", "sen_id": 228405}, {"caption": "a picture of a dolphin swimming in a pool", "video_id": "video10638", "sen_id": 228406}, {"caption": "flashing pictures of a dolphin outer body and insides", "video_id": "video10638", "sen_id": 228407}, {"caption": "a man is talking about a 20 year old dolphin from florida that had cancer and a cream they created to cure it", "video_id": "video10638", "sen_id": 228408}, {"caption": "an image of a gray dolphin is shown while a man is discussing this dolphin s cancer diagnosis", "video_id": "video10638", "sen_id": 228409}, {"caption": "a man describing a 20-year old dolphin s cancer and treatment", "video_id": "video10638", "sen_id": 228410}, {"caption": "a man wearing blue dress explaining about some thing to people", "video_id": "video10638", "sen_id": 228411}, {"caption": "a man talks to an audience about dolphin mouth cancer with photos", "video_id": "video10638", "sen_id": 228412}, {"caption": "a reporter showing about a dolphin in the florida having cancer", "video_id": "video10638", "sen_id": 228413}, {"caption": "cute dolphin comes out of water antiangiogenic therapy treatement is given to dolphin", "video_id": "video10638", "sen_id": 228414}, {"caption": "a picture of a dolphin with a man talking about the cancer it was suffering from and the treatment method they followed", "video_id": "video10638", "sen_id": 228415}, {"caption": "one man talks about something in a stage", "video_id": "video10638", "sen_id": 228416}, {"caption": "a dolphin smiling in the blue water and then a squamous cell carminoma", "video_id": "video10638", "sen_id": 228417}, {"caption": "a man wearing blue shirt wearing standing speaking on the topic teeth mouth cancer audience watching", "video_id": "video10638", "sen_id": 228418}, {"caption": "someone is showing a piece of a thing", "video_id": "video10638", "sen_id": 228419}, {"caption": "two women preparing a family meal together", "video_id": "video11811", "sen_id": 228420}, {"caption": "two women making a pie together and talking", "video_id": "video11811", "sen_id": 228421}, {"caption": "two women make fruit tarts in a kitchen", "video_id": "video11811", "sen_id": 228422}, {"caption": "a couple of women demonstrating how to make tart cakes", "video_id": "video11811", "sen_id": 228423}, {"caption": "in the kitchen two women prepare a delicious meal", "video_id": "video11811", "sen_id": 228424}, {"caption": "two women cooking and explaining how to do it", "video_id": "video11811", "sen_id": 228425}, {"caption": "a women in green top and another women in white top are preparing food", "video_id": "video11811", "sen_id": 228426}, {"caption": "there is a women cooking food in untensil", "video_id": "video11811", "sen_id": 228427}, {"caption": "two women are making pies in the kitchen", "video_id": "video11811", "sen_id": 228428}, {"caption": "two ladies are making preparation of a recipe", "video_id": "video11811", "sen_id": 228429}, {"caption": "a couple of women are in a kitchen making some food", "video_id": "video11811", "sen_id": 228430}, {"caption": "two women are preparing special food in kitchen", "video_id": "video11811", "sen_id": 228431}, {"caption": "green color dressed girl putting sauce on parota", "video_id": "video11811", "sen_id": 228432}, {"caption": "an old lady and young lady making a dish in kitchen arranging dish", "video_id": "video11811", "sen_id": 228433}, {"caption": "2 ladies coking in the kitchen they both wear apron they place something green on the bread", "video_id": "video11811", "sen_id": 228434}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11811", "sen_id": 228435}, {"caption": "the younfg chef is making of pasta is teling to the old women both the dress are very attractive", "video_id": "video11811", "sen_id": 228436}, {"caption": "two women were making a pastry dish and arraging some veg items on it", "video_id": "video11811", "sen_id": 228437}, {"caption": "a paste is spreaded over the pizza and greens are arranges aroung it", "video_id": "video11811", "sen_id": 228438}, {"caption": "a woman in a green shirt is helping her mother make food", "video_id": "video11811", "sen_id": 228439}, {"caption": "a llamma is dressed up as a jamaican man at a parade or festival", "video_id": "video11390", "sen_id": 228440}, {"caption": "little girl in a pink dress walking in a crowd moving down a street", "video_id": "video11390", "sen_id": 228441}, {"caption": "people walk with alpacas in rasta wigs in a parade", "video_id": "video11390", "sen_id": 228442}, {"caption": "a large group of dogs begin barking as people walk their llamas across the street", "video_id": "video11390", "sen_id": 228443}, {"caption": "a crowd of people mills around on a street with dogs and lamas", "video_id": "video11390", "sen_id": 228444}, {"caption": "a parade of people move down a street walking with their leashed dogs and are surprised when a woman leads an alpaca and a llama to join them one wearing sunglasses and the other a colorful hat", "video_id": "video11390", "sen_id": 228445}, {"caption": "a llama wearing a rasta hat is walking through a crowd full of dogs", "video_id": "video11390", "sen_id": 228446}, {"caption": "a pair of llamas walk doen the street in a parade", "video_id": "video11390", "sen_id": 228447}, {"caption": "several people are walking around the street with dogs and other animals", "video_id": "video11390", "sen_id": 228448}, {"caption": "a large crowd of people in the street as a person pulls around a lama", "video_id": "video11390", "sen_id": 228449}, {"caption": "more peoples are on the road with animal", "video_id": "video11390", "sen_id": 228450}, {"caption": "people walking around a street fair with sounds of dog barking g and people talking", "video_id": "video11390", "sen_id": 228451}, {"caption": "an animal fare on a street where various animals like dogshorses are seen with their masters", "video_id": "video11390", "sen_id": 228452}, {"caption": "a crowd full of people are walking around", "video_id": "video11390", "sen_id": 228453}, {"caption": "there is a large crowd of people walking in the street and a woman is pulling 2 alpacos that are wearing hats", "video_id": "video11390", "sen_id": 228454}, {"caption": "there is a mature woman walking with an animal", "video_id": "video11390", "sen_id": 228455}, {"caption": "many people and pets are walking together on a very crowded road", "video_id": "video11390", "sen_id": 228456}, {"caption": "a dog parade is going on and a big crowd is there", "video_id": "video11390", "sen_id": 228457}, {"caption": "a crowd is walking down a street with dogs and other animals (maybe a llama", "video_id": "video11390", "sen_id": 228458}, {"caption": "some animals are on a street with people", "video_id": "video11390", "sen_id": 228459}, {"caption": "two buses racing on a video game with music playing in the backgroud", "video_id": "video11685", "sen_id": 228460}, {"caption": "a child's song about buses and accompanying video", "video_id": "video11685", "sen_id": 228461}, {"caption": "a child is singing people on the bus while one blue bus and one yellow bus can be seen driving next to each other", "video_id": "video11685", "sen_id": 228462}, {"caption": "a blue bus and a yellow bus race each other down a very steep ramp", "video_id": "video11685", "sen_id": 228463}, {"caption": "a blue bus and a yellow bus are racing down a track", "video_id": "video11685", "sen_id": 228464}, {"caption": "two cartoon busses are driving on a slide to the singing of wheels on the bus", "video_id": "video11685", "sen_id": 228465}, {"caption": "a blue bus and yellow bus race along a ramp in a video game while the wheels on the bus plays in the background", "video_id": "video11685", "sen_id": 228466}, {"caption": "one blue and one yellow bus driving down a slope", "video_id": "video11685", "sen_id": 228467}, {"caption": "two buses one blue and one yellow are driving down a tube by a large water repository", "video_id": "video11685", "sen_id": 228468}, {"caption": "an yellow and a blue bus is going on a bridge and a gril is singing in the background", "video_id": "video11685", "sen_id": 228469}, {"caption": "a blue and yellow bus is driving down the street", "video_id": "video11685", "sen_id": 228470}, {"caption": "two animated buses ride along while music plays in the background", "video_id": "video11685", "sen_id": 228471}, {"caption": "buses race after each other down an enormous track", "video_id": "video11685", "sen_id": 228472}, {"caption": "there are two buses moving on the road", "video_id": "video11685", "sen_id": 228473}, {"caption": "busses drive on a steep downhill banked road side by side", "video_id": "video11685", "sen_id": 228474}, {"caption": "a young person sings a kid s song while two animated school buses drive on a highway", "video_id": "video11685", "sen_id": 228475}, {"caption": "a truck is overtaking another truck in a narrow roadway and falls int the valley", "video_id": "video11685", "sen_id": 228476}, {"caption": "two bus is running on the sand", "video_id": "video11685", "sen_id": 228477}, {"caption": "animated buses ride along a track while a song plays", "video_id": "video11685", "sen_id": 228478}, {"caption": "a blue school bus speeds past a yellow one on its way down a giant vertical pipe that hangs suspended over the metropolis", "video_id": "video11685", "sen_id": 228479}, {"caption": "a man in a space ship works on navigational calculations", "video_id": "video11529", "sen_id": 228480}, {"caption": "in a ship a man by the name of pilot of rick martinez is talking about pre flight checks while you see the seats and control panels of the ship", "video_id": "video11529", "sen_id": 228481}, {"caption": "the pilot of a space ship goes through a series of pre-flight checks", "video_id": "video11529", "sen_id": 228482}, {"caption": "someone pointing a pole at a pilot in a spacecraft", "video_id": "video11529", "sen_id": 228483}, {"caption": "a spaceship with four seats and one man in uniform sitting", "video_id": "video11529", "sen_id": 228484}, {"caption": "a space ship pilot is doing a series of navigational calculations", "video_id": "video11529", "sen_id": 228485}, {"caption": "there is a cockpit inside a man getting ready to fly", "video_id": "video11529", "sen_id": 228486}, {"caption": "movie scene from a english movie mens are talking", "video_id": "video11529", "sen_id": 228487}, {"caption": "one movei the machine operated by a man in the", "video_id": "video11529", "sen_id": 228488}, {"caption": "science fiction animation clip of a pilot doing a pre-flight check on a rocket ship", "video_id": "video11529", "sen_id": 228489}, {"caption": "there is a man sitting inside a machine", "video_id": "video11529", "sen_id": 228490}, {"caption": "the characters are sitting in the control room of some air vehicle and talking", "video_id": "video11529", "sen_id": 228491}, {"caption": "a man walks through a futuristic space ship saying it is a flight to mars", "video_id": "video11529", "sen_id": 228492}, {"caption": "a pilot does pre-flight checks and jokes with pilot", "video_id": "video11529", "sen_id": 228493}, {"caption": "a pilot sitting in the cockpit is checking and noting the condition of the plane before take off", "video_id": "video11529", "sen_id": 228494}, {"caption": " the pilot is walking through a space ship that will be headed to mars", "video_id": "video11529", "sen_id": 228495}, {"caption": "the pilot is getting ready with some pretty sophisticated mask to get to mars", "video_id": "video11529", "sen_id": 228496}, {"caption": "its the space vehicle in which the person sit and does the work he is writing on the paper", "video_id": "video11529", "sen_id": 228497}, {"caption": "a man talking about the robot and the machine", "video_id": "video11529", "sen_id": 228498}, {"caption": "a man is in the machine control room", "video_id": "video11529", "sen_id": 228499}, {"caption": "a young woman with long straight brown hair sits on the edge of a bed petting a fuzzy tan-and-white dog and babbling", "video_id": "video12029", "sen_id": 228500}, {"caption": "a woman playing with a puppy while sitting on a bed", "video_id": "video12029", "sen_id": 228501}, {"caption": "a teenager holding a dog talks about her experience with flying with a pet", "video_id": "video12029", "sen_id": 228502}, {"caption": "a young female holding a cat and petting the cat", "video_id": "video12029", "sen_id": 228503}, {"caption": "a lady is speaking about a beautiful puppy that was just shipped to her", "video_id": "video12029", "sen_id": 228504}, {"caption": "a pretty woman talks while holding and petting her cat", "video_id": "video12029", "sen_id": 228505}, {"caption": "a girl in her bedroom showing and talking about her newly adopted dog", "video_id": "video12029", "sen_id": 228506}, {"caption": "a girl in bed kissinghugging and rubbing her pet dog and explaining things it does", "video_id": "video12029", "sen_id": 228507}, {"caption": "a woman on a bed is rubbing a dog she acquired", "video_id": "video12029", "sen_id": 228508}, {"caption": "a lady pushing a dos and keeping it on her lap", "video_id": "video12029", "sen_id": 228509}, {"caption": "one girl playing video game dog there and teddy", "video_id": "video12029", "sen_id": 228510}, {"caption": "a girl with her cat on the bed speaking about her cat and giving some news", "video_id": "video12029", "sen_id": 228511}, {"caption": "women is sitting with her lovely dog she is talking to dog", "video_id": "video12029", "sen_id": 228512}, {"caption": "a girl holding her pet dog with her and sitting on the bed and playing with tit", "video_id": "video12029", "sen_id": 228513}, {"caption": "a girl is talking with her pet dog in her hand", "video_id": "video12029", "sen_id": 228514}, {"caption": "there is a women talking from her bed", "video_id": "video12029", "sen_id": 228515}, {"caption": "a girl is caressing a cat while sitting on the bed", "video_id": "video12029", "sen_id": 228516}, {"caption": "one beautiful girl with a puppy and she talk about it", "video_id": "video12029", "sen_id": 228517}, {"caption": "a woman discusses cats transportation experience at the airport", "video_id": "video12029", "sen_id": 228518}, {"caption": "a woman is talking and holding a dog", "video_id": "video12029", "sen_id": 228519}, {"caption": "a house being carried by balloon around a citry", "video_id": "video11093", "sen_id": 228520}, {"caption": "an animation of a bunch of people watching a large balloon fly through a city", "video_id": "video11093", "sen_id": 228521}, {"caption": "people in a city that see a floating house in the sky held up by many balloons", "video_id": "video11093", "sen_id": 228522}, {"caption": "animination of a hot air balloon carrying a house over a city catching the attention of many people", "video_id": "video11093", "sen_id": 228523}, {"caption": "city streets are lined with cars trees people and buildings", "video_id": "video11093", "sen_id": 228524}, {"caption": "a lcartoon of a a house floating in the air held with balloons", "video_id": "video11093", "sen_id": 228525}, {"caption": "a family looking up at the sky to see the air balloon", "video_id": "video11093", "sen_id": 228526}, {"caption": "people are watching as a house attached to balloons floats over them", "video_id": "video11093", "sen_id": 228527}, {"caption": "a house tied to a balloon parachute is flying and children are watching it from the street", "video_id": "video11093", "sen_id": 228528}, {"caption": "the cartoon character is showing a house moving by use of baloons", "video_id": "video11093", "sen_id": 228529}, {"caption": "there is a balloon moving on the sky", "video_id": "video11093", "sen_id": 228530}, {"caption": "animated girl character are displayed", "video_id": "video11093", "sen_id": 228531}, {"caption": "a scene from an animated movie showing kids looking in amazement at a home flying hung from balloons", "video_id": "video11093", "sen_id": 228532}, {"caption": "the animated characters are dancing singing and flying with lot of energy", "video_id": "video11093", "sen_id": 228533}, {"caption": " suspended by an enormous bundle of helium balloons floats over a city street", "video_id": "video11093", "sen_id": 228534}, {"caption": "there is a parachute moving on the sky", "video_id": "video11093", "sen_id": 228535}, {"caption": "four little guys are watching colorful baloon", "video_id": "video11093", "sen_id": 228536}, {"caption": "a short clip from the pixar movie up", "video_id": "video11093", "sen_id": 228537}, {"caption": "a house tied to balloons floats majestically over the stunned people", "video_id": "video11093", "sen_id": 228538}, {"caption": "a girl in a room is looking at a balloon", "video_id": "video11093", "sen_id": 228539}, {"caption": "young men dance in a choreographed way to hiphop music", "video_id": "video12420", "sen_id": 228540}, {"caption": "six men in black pants are dancing to an electronic song in front of a blue background", "video_id": "video12420", "sen_id": 228541}, {"caption": "a group of young men dance and sing in unison", "video_id": "video12420", "sen_id": 228542}, {"caption": "a dance team of six young men take turns doing dance solos", "video_id": "video12420", "sen_id": 228543}, {"caption": "six people are dancing around to techno music on blue background and they are wearing dark panks and tennis shoes", "video_id": "video12420", "sen_id": 228544}, {"caption": "a group of young men in casual clothes are dancing against a blue backdrop", "video_id": "video12420", "sen_id": 228545}, {"caption": "group of young men doing some dance moves", "video_id": "video12420", "sen_id": 228546}, {"caption": "a group of men doing dance moves singularly and together", "video_id": "video12420", "sen_id": 228547}, {"caption": "six people take turns dancing in the middle of group", "video_id": "video12420", "sen_id": 228548}, {"caption": "a group of six men does freestyle dancing to club music", "video_id": "video12420", "sen_id": 228549}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12420", "sen_id": 228550}, {"caption": "men that are free style rap dancing to some music", "video_id": "video12420", "sen_id": 228551}, {"caption": "a gang of dancers moving around to what sounds like edm", "video_id": "video12420", "sen_id": 228552}, {"caption": "a group of young men perform hip hop dance moves", "video_id": "video12420", "sen_id": 228553}, {"caption": "a group of people are dancing in a room", "video_id": "video12420", "sen_id": 228554}, {"caption": "a group of dancers are dancing together in sync to the music", "video_id": "video12420", "sen_id": 228555}, {"caption": "boys are singing and dancing in the stage", "video_id": "video12420", "sen_id": 228556}, {"caption": "a group of young men do modern dances as music plays", "video_id": "video12420", "sen_id": 228557}, {"caption": "a fast paced pop music video of 6 asian males dancing in unity", "video_id": "video12420", "sen_id": 228558}, {"caption": "some people are doing some exercises", "video_id": "video12420", "sen_id": 228559}, {"caption": "someone is pressing there finger in what looks like a waxy slime mold", "video_id": "video10738", "sen_id": 228560}, {"caption": "a woman pokes her finger into a bowl of a white glue-like substance", "video_id": "video10738", "sen_id": 228561}, {"caption": "a hand pokes a finger into the solidified mass in a bowl with flowered rim touches a gooey patch on the counter returns poking the bowl with a hand pulls up a piece to form into a ball and then feels the material ooze into the bowl in a stringy form", "video_id": "video10738", "sen_id": 228562}, {"caption": "a person plays with a gooey substance in a bowl of liquid", "video_id": "video10738", "sen_id": 228563}, {"caption": "a person showing how a certain liquid substance works", "video_id": "video10738", "sen_id": 228564}, {"caption": "the girl take one batter in a bowl and play with that", "video_id": "video10738", "sen_id": 228565}, {"caption": "cheese and sauce are miced", "video_id": "video10738", "sen_id": 228566}, {"caption": "a man is pressing down his finger into a bowl with a milky substance inside", "video_id": "video10738", "sen_id": 228567}, {"caption": "a pesrson using hand to play with a white substance", "video_id": "video10738", "sen_id": 228568}, {"caption": "man is doing something in the kitchen with soap", "video_id": "video10738", "sen_id": 228569}, {"caption": "there is someone making a color on the table", "video_id": "video10738", "sen_id": 228570}, {"caption": "a person is playing with non-newtonian fluids that he just created", "video_id": "video10738", "sen_id": 228571}, {"caption": "guy checking the hardness of a liquid poured in a bowl", "video_id": "video10738", "sen_id": 228572}, {"caption": "someone is showing how to work with a hard item kept in a white plate flowers printed on the plate", "video_id": "video10738", "sen_id": 228573}, {"caption": "an individual playing with a chemical liquid which is turning into a solid", "video_id": "video10738", "sen_id": 228574}, {"caption": "a person pokes and scopes up with thier hand a white substance that is in a small white dish", "video_id": "video10738", "sen_id": 228575}, {"caption": "a person playing with a pasty substance in a bowl", "video_id": "video10738", "sen_id": 228576}, {"caption": "a woman pokes a bowl of starch food that appears very solid", "video_id": "video10738", "sen_id": 228577}, {"caption": "a lady touching a mixture on the wooden board", "video_id": "video10738", "sen_id": 228578}, {"caption": "a person is squeezing up some stuff", "video_id": "video10738", "sen_id": 228579}, {"caption": "a man discusses opening a hotel on a beach and obtaining a boat", "video_id": "video10713", "sen_id": 228580}, {"caption": "a man in light blue against a wall talking to another man about oppening up a little hotell on the beach", "video_id": "video10713", "sen_id": 228581}, {"caption": "a man in a blue shirt is talking about a boat on the beach", "video_id": "video10713", "sen_id": 228582}, {"caption": "caucasian and african american prisoners talk about plans after prison", "video_id": "video10713", "sen_id": 228583}, {"caption": "two middle aged men in prison uniforms sitting up against a stone wall", "video_id": "video10713", "sen_id": 228584}, {"caption": "the man is speaking about a topic in a very depressed manner", "video_id": "video10713", "sen_id": 228585}, {"caption": "tim robbins talks about buying a worthless old boat", "video_id": "video10713", "sen_id": 228586}, {"caption": "a scene from shawnshank redemption with a guy saying a monologue", "video_id": "video10713", "sen_id": 228587}, {"caption": "there is a blue shirt man talking with a smile", "video_id": "video10713", "sen_id": 228588}, {"caption": "actor of the movie says he wants to buy an old boat and fix it up new", "video_id": "video10713", "sen_id": 228589}, {"caption": "a man speaks with a crying eyes to a person sitting near him", "video_id": "video10713", "sen_id": 228590}, {"caption": "its a movie in which the person sit on the rock and talk with the smiling face", "video_id": "video10713", "sen_id": 228591}, {"caption": "a man with a big head is talking about something", "video_id": "video10713", "sen_id": 228592}, {"caption": "a man speaks about his worthless life while standing in front of a rock", "video_id": "video10713", "sen_id": 228593}, {"caption": "one boy talk with a old man in outerside", "video_id": "video10713", "sen_id": 228594}, {"caption": "two mens sharing their feelings in a place and both of them are in a very sad condition", "video_id": "video10713", "sen_id": 228595}, {"caption": "the movie shawshank redemption is being shown on tv", "video_id": "video10713", "sen_id": 228596}, {"caption": "two men in prison tim robbins and morgan freeman discussing freedom", "video_id": "video10713", "sen_id": 228597}, {"caption": "two men set next to a wall and discuss their future plans", "video_id": "video10713", "sen_id": 228598}, {"caption": "a man is having a chat with another mature man", "video_id": "video10713", "sen_id": 228599}, {"caption": "a clip of president trumps shown on the hannity show discussing the musilm ban", "video_id": "video10087", "sen_id": 228600}, {"caption": "donald trump is talking on the hannity television show", "video_id": "video10087", "sen_id": 228601}, {"caption": "donald trump talking about the travel ban not being against muslims", "video_id": "video10087", "sen_id": 228602}, {"caption": "a man with yellow hair talking about the united states", "video_id": "video10087", "sen_id": 228603}, {"caption": "a man with blond hair and wearing a black suit and stripe tie talk about the country religion and safety", "video_id": "video10087", "sen_id": 228604}, {"caption": "donald trump is on tv talking about the muslim ban", "video_id": "video10087", "sen_id": 228605}, {"caption": "a old in black suit talking in front of the camera", "video_id": "video10087", "sen_id": 228606}, {"caption": "a man in a suit and a striped blue tie donald trump talking about immigration on a news show", "video_id": "video10087", "sen_id": 228607}, {"caption": "a politician gives his stance on immigration as part of a campaign", "video_id": "video10087", "sen_id": 228608}, {"caption": "donald trump is speaking regarding his proposed muslim ban in a fox news broadcast", "video_id": "video10087", "sen_id": 228609}, {"caption": "there is a suit man talking with hand expressions", "video_id": "video10087", "sen_id": 228610}, {"caption": "a man wearing black dress talking something in news", "video_id": "video10087", "sen_id": 228611}, {"caption": "donald trump being interviewed in a black suit white shirt and blue striped tie", "video_id": "video10087", "sen_id": 228612}, {"caption": "on fox news donald trump talks about his proposed ban on muslims", "video_id": "video10087", "sen_id": 228613}, {"caption": "donald trump is giving an interview about safety out of the country", "video_id": "video10087", "sen_id": 228614}, {"caption": "there is an old man talking something seriously", "video_id": "video10087", "sen_id": 228615}, {"caption": "a political candidate gives his position on a hot button issue", "video_id": "video10087", "sen_id": 228616}, {"caption": "donald trump is describing how his proposed muslim ban is not about religion it is about safety", "video_id": "video10087", "sen_id": 228617}, {"caption": "man is presenting the latest news for television", "video_id": "video10087", "sen_id": 228618}, {"caption": "trump is talking to a person on the news", "video_id": "video10087", "sen_id": 228619}, {"caption": "a person is sitting in a tent in the wildness", "video_id": "video12625", "sen_id": 228620}, {"caption": "a still shot of a tent is shown with a voice over about camping on the appalachian trail", "video_id": "video12625", "sen_id": 228621}, {"caption": "people shown in a camping tent on the appalachian trail", "video_id": "video12625", "sen_id": 228622}, {"caption": "a pup tent sets in front of a wooded area with young trees", "video_id": "video12625", "sen_id": 228623}, {"caption": "a picture with someone inside a tent", "video_id": "video12625", "sen_id": 228624}, {"caption": "a man narrates about camping tents and camping experiences", "video_id": "video12625", "sen_id": 228625}, {"caption": "a photo of a woman sitting inside of a tent in the woods", "video_id": "video12625", "sen_id": 228626}, {"caption": "a girl sitting inside the outdoor tent near the water", "video_id": "video12625", "sen_id": 228627}, {"caption": "a man in a tent describes the type of tent needed for hard care camping and hiking", "video_id": "video12625", "sen_id": 228628}, {"caption": "a person is describing about tents that resist heavy rain strikes", "video_id": "video12625", "sen_id": 228629}, {"caption": "a fellow in a campground showing a tent describing the importance of a good tent", "video_id": "video12625", "sen_id": 228630}, {"caption": "there is a man sleeping in a hut", "video_id": "video12625", "sen_id": 228631}, {"caption": "a man is sitting in a tent on the appalachian trail", "video_id": "video12625", "sen_id": 228632}, {"caption": "a tent with a person inside with hanging decorations from the campsite in the tent", "video_id": "video12625", "sen_id": 228633}, {"caption": "a person is inside of a tent out side", "video_id": "video12625", "sen_id": 228634}, {"caption": "a man talks about camping while there is a person sitting inside of a tent", "video_id": "video12625", "sen_id": 228635}, {"caption": "a man gives advice about choosing a tent for a stay in the appalachian region", "video_id": "video12625", "sen_id": 228636}, {"caption": "a tent sits open idly in a wooded outside area", "video_id": "video12625", "sen_id": 228637}, {"caption": "in a tent a person inside claims of safety of every problem including rain also", "video_id": "video12625", "sen_id": 228638}, {"caption": "a person is sitting down inside of their tent", "video_id": "video12625", "sen_id": 228639}, {"caption": "a group of tenagers are having a dramadance", "video_id": "video12137", "sen_id": 228640}, {"caption": "women wearing ties perform various pieces of interpretative dance", "video_id": "video12137", "sen_id": 228641}, {"caption": "a woman pantomimes drinking while another woman lifts her multiple women dance", "video_id": "video12137", "sen_id": 228642}, {"caption": "four woman are dancing to a very strange robotic sound and acting like robots", "video_id": "video12137", "sen_id": 228643}, {"caption": "a group of people are on stage performing and are dancing in groups", "video_id": "video12137", "sen_id": 228644}, {"caption": "there is a women dancing with a group", "video_id": "video12137", "sen_id": 228645}, {"caption": "four woman doing an artistic dance to electronic music on a stage with three square light areas", "video_id": "video12137", "sen_id": 228646}, {"caption": "laughing and dancing look like funny game with a music", "video_id": "video12137", "sen_id": 228647}, {"caption": "four people perform a modern dance routine on a stage", "video_id": "video12137", "sen_id": 228648}, {"caption": "the dancer appeared to throw the woman off his back", "video_id": "video12137", "sen_id": 228649}, {"caption": "there is some one dancing on the stage", "video_id": "video12137", "sen_id": 228650}, {"caption": "one dance tutor is studying dance in various students", "video_id": "video12137", "sen_id": 228651}, {"caption": "a group of people dancing and acting out scenes with no talking just music", "video_id": "video12137", "sen_id": 228652}, {"caption": "actor perform a play on the stage and dance", "video_id": "video12137", "sen_id": 228653}, {"caption": "some people are on stage doing performance art", "video_id": "video12137", "sen_id": 228654}, {"caption": "many womens with different costumes are acting on a stage", "video_id": "video12137", "sen_id": 228655}, {"caption": "the dance master teach the students in the dance class in very well", "video_id": "video12137", "sen_id": 228656}, {"caption": "a men and women were dancing for a music", "video_id": "video12137", "sen_id": 228657}, {"caption": "dancers are telling a story through dance resulting in one girl being thrown around a lot", "video_id": "video12137", "sen_id": 228658}, {"caption": "some people on stage are doing a performance", "video_id": "video12137", "sen_id": 228659}, {"caption": "a young man with a goatee declaims about chemical bonds", "video_id": "video12251", "sen_id": 228660}, {"caption": "a sci show video about covalent and ionic bonds", "video_id": "video12251", "sen_id": 228661}, {"caption": "a man is making a speech in front of a wall of science", "video_id": "video12251", "sen_id": 228662}, {"caption": "a man in glasses with a mustache and goatee is enthusiastic about biology", "video_id": "video12251", "sen_id": 228663}, {"caption": "a man is standing in front of a wall making grand gestures", "video_id": "video12251", "sen_id": 228664}, {"caption": "a man with glasses is standing in front of a board speaking about science", "video_id": "video12251", "sen_id": 228665}, {"caption": "a man with red hair and wearing glasses gestures in front of a white board with black dots", "video_id": "video12251", "sen_id": 228666}, {"caption": "a clip from sci show biology for bonds", "video_id": "video12251", "sen_id": 228667}, {"caption": "a man with a goatee and glasses talks about biology", "video_id": "video12251", "sen_id": 228668}, {"caption": "a man discuses biology with a diagram of a element on the wall behind him", "video_id": "video12251", "sen_id": 228669}, {"caption": "a young man standing with his arms apart and speaking about stuff", "video_id": "video12251", "sen_id": 228670}, {"caption": "a nerdy man with light brown hair and glasses is talking", "video_id": "video12251", "sen_id": 228671}, {"caption": "a man standing in front of diagram of conected dots on a wall", "video_id": "video12251", "sen_id": 228672}, {"caption": "a blonde man in glasses talks about biology", "video_id": "video12251", "sen_id": 228673}, {"caption": "a man is doing the introduction to a biology course", "video_id": "video12251", "sen_id": 228674}, {"caption": "a man in a dark plaid shirt describes how bonds in chemistry work", "video_id": "video12251", "sen_id": 228675}, {"caption": "a man is standing in front of a backdrop welcoming the viewer to learn more about biology on a molecular level", "video_id": "video12251", "sen_id": 228676}, {"caption": "a kid in a black polo and glasses talk about bombs and biology", "video_id": "video12251", "sen_id": 228677}, {"caption": "a man talking about biology and chemistry in an upbeat fashion", "video_id": "video12251", "sen_id": 228678}, {"caption": "a man with glasses is speaking about something", "video_id": "video12251", "sen_id": 228679}, {"caption": "a man and woman couple chilling in the grass as his girlfriend messes with him", "video_id": "video11125", "sen_id": 228680}, {"caption": "a woman is taking selfies while her male friend is complaining", "video_id": "video11125", "sen_id": 228681}, {"caption": "a female is trying to pose with her partner and he doesn't seem too interested", "video_id": "video11125", "sen_id": 228682}, {"caption": "a couple is sitting together and the male is speaking to the female", "video_id": "video11125", "sen_id": 228683}, {"caption": "a woman and a man sit on a field of grass", "video_id": "video11125", "sen_id": 228684}, {"caption": "a man in a blue shirt is talking while a woman in a white tank top rubs his face", "video_id": "video11125", "sen_id": 228685}, {"caption": "a women in white dressing taking selfie with her boyfriend", "video_id": "video11125", "sen_id": 228686}, {"caption": "a girl and a guy pose while sitting on the grass together on a sunny day", "video_id": "video11125", "sen_id": 228687}, {"caption": "the couple in the picture at the beginning is the same couple in the video that follows the picture and the woman grabs the man s chin and poses for the video as the man speaks in italian", "video_id": "video11125", "sen_id": 228688}, {"caption": "a black-haired lady in a white tank top and a camouflage cap poses while a man in blue talks", "video_id": "video11125", "sen_id": 228689}, {"caption": "a woman takes selfies of herself as her boyfried protests", "video_id": "video11125", "sen_id": 228690}, {"caption": "here the girl wanted to have a selfy with her boyfriend where her boy friend was not interested to have selfy", "video_id": "video11125", "sen_id": 228691}, {"caption": "a man is speaking italian on the grass while a woman is filming them selves", "video_id": "video11125", "sen_id": 228692}, {"caption": "one women and man sitting in grass for a selfie", "video_id": "video11125", "sen_id": 228693}, {"caption": "women wearing cap taking a selfie with a guy", "video_id": "video11125", "sen_id": 228694}, {"caption": "a man and a woman are next to each other outside", "video_id": "video11125", "sen_id": 228695}, {"caption": " wearing a gray cap reaches backwards to place her hand around a man s neck while they are sitting on a lawn by a tan building", "video_id": "video11125", "sen_id": 228696}, {"caption": "one women take selfie with a man nicely snaps", "video_id": "video11125", "sen_id": 228697}, {"caption": "a couple sits on a lawn and girlfriend pets his face", "video_id": "video11125", "sen_id": 228698}, {"caption": "a man and woman are sitting down out side", "video_id": "video11125", "sen_id": 228699}, {"caption": "an indian woman is talking about a tree", "video_id": "video11604", "sen_id": 228700}, {"caption": "an indian woman in green and purple is explaining information on a screen behind her", "video_id": "video11604", "sen_id": 228701}, {"caption": "an indian woman explains an agricultural concept using a presentation", "video_id": "video11604", "sen_id": 228702}, {"caption": "a woman wearing a green and pink sari speaks and gestures to the image of a tree on a screen", "video_id": "video11604", "sen_id": 228703}, {"caption": "a lady explaining biotechnology tree on the screen", "video_id": "video11604", "sen_id": 228704}, {"caption": "the lady in the green saree is explaining the concept of bio technology tree", "video_id": "video11604", "sen_id": 228705}, {"caption": "a woman wearing a saree is teaching the subject biology", "video_id": "video11604", "sen_id": 228706}, {"caption": "there is a woman teaching someone in front of a screen", "video_id": "video11604", "sen_id": 228707}, {"caption": "a lady wearing green color sari is talking", "video_id": "video11604", "sen_id": 228708}, {"caption": "one beautiful and lovely women teaching biotechnology tree", "video_id": "video11604", "sen_id": 228709}, {"caption": "a woman in a green dress is giving a presentation about a biotechnology tree", "video_id": "video11604", "sen_id": 228710}, {"caption": "a woman in a dress is speaking about a drawing", "video_id": "video11604", "sen_id": 228711}, {"caption": "a lady proffesor is explaining the information on the screen", "video_id": "video11604", "sen_id": 228712}, {"caption": "a presentation about the biotechnology tree in presentation", "video_id": "video11604", "sen_id": 228713}, {"caption": "a young woman in a watermelon colored sari points out diagrams against a dark wall", "video_id": "video11604", "sen_id": 228714}, {"caption": "an indian woman in a robe is talking to people", "video_id": "video11604", "sen_id": 228715}, {"caption": "a young woman of east indian decent makes gestures with her hands to express the importance of the topic she is teaching", "video_id": "video11604", "sen_id": 228716}, {"caption": "a girl with green saree explains about some application through a power point presentation", "video_id": "video11604", "sen_id": 228717}, {"caption": "a woman in indian dress explains a diagram with a tree and text", "video_id": "video11604", "sen_id": 228718}, {"caption": "a pretty women with green and pink saree is explaining about something", "video_id": "video11604", "sen_id": 228719}, {"caption": "a grown man is acting like a baby and won't be happy until the woman gives him doritos", "video_id": "video11367", "sen_id": 228720}, {"caption": "commercial with woman talking and man being excited about doritos", "video_id": "video11367", "sen_id": 228721}, {"caption": "a woman is on the couch eating doritos while a man is lying on the floor doing circles then the man is lying in couple of odd positions on the couch he then has the doritos while sitting on the end table as the woman sits on the edge of the couch the scene ends with them both in the kitchen and the woman has given the man a bag of doritos at the end she feeds him dorito's while he wears a bib", "video_id": "video11367", "sen_id": 228722}, {"caption": "a man in a striped shirt is very excited about eating doritos", "video_id": "video11367", "sen_id": 228723}, {"caption": "a woman talks about how keeping her husband happy with doritos keeps him calm", "video_id": "video11367", "sen_id": 228724}, {"caption": "a man and a woman are eating snacks on a couch and in the kitchen", "video_id": "video11367", "sen_id": 228725}, {"caption": "a woman feeding a man a bag of chips", "video_id": "video11367", "sen_id": 228726}, {"caption": "a man is lying on different positions and is exclaiming aloud on seeing a chips packet", "video_id": "video11367", "sen_id": 228727}, {"caption": "a man is laying in different spots on a sofa and then gets offered chips", "video_id": "video11367", "sen_id": 228728}, {"caption": "a man and a woman at a home is acting for an advertisement", "video_id": "video11367", "sen_id": 228729}, {"caption": "person reacts like the baby he wear the bib and he try to eat the chips", "video_id": "video11367", "sen_id": 228730}, {"caption": "a person is doing funny things for getting dortis chips", "video_id": "video11367", "sen_id": 228731}, {"caption": "a man acting crazy and lies on the fllor in front of awomen", "video_id": "video11367", "sen_id": 228732}, {"caption": "a male lays down and acts strangely while a woman is calm and eventually feeds him chips", "video_id": "video11367", "sen_id": 228733}, {"caption": "a woman and a man in home that man is act like a mad", "video_id": "video11367", "sen_id": 228734}, {"caption": "there is a man excited when he saw the food", "video_id": "video11367", "sen_id": 228735}, {"caption": "a man acting like a baby in a doritos commercial", "video_id": "video11367", "sen_id": 228736}, {"caption": "a man and woman act strangely and the man gets very excited when he is given a bag of chips", "video_id": "video11367", "sen_id": 228737}, {"caption": "a lady on sofa sitting and man lying down and man eating chips girl holding chips in her hand", "video_id": "video11367", "sen_id": 228738}, {"caption": "a guy with white dress is eating a snack like and baby and dancing", "video_id": "video11367", "sen_id": 228739}, {"caption": "a man is interviewed on the people that have set fire to a building", "video_id": "video12639", "sen_id": 228740}, {"caption": "a man talks about another religion which he believes doesn't believe in god", "video_id": "video12639", "sen_id": 228741}, {"caption": "a man wearing glasses talking while standing in front of a building", "video_id": "video12639", "sen_id": 228742}, {"caption": "a person wearing glasses is talking to a reporter about a fire", "video_id": "video12639", "sen_id": 228743}, {"caption": "man giving an interviewer after firefighters have stopped a hazard", "video_id": "video12639", "sen_id": 228744}, {"caption": "firefighters walk down city street and host discusses recent fire", "video_id": "video12639", "sen_id": 228745}, {"caption": "rescue workers walk past a building then a man wearing glasses talks", "video_id": "video12639", "sen_id": 228746}, {"caption": "a news channel having a interview with a witness", "video_id": "video12639", "sen_id": 228747}, {"caption": "a man in glasses and a scarf talking on a busy city street corner", "video_id": "video12639", "sen_id": 228748}, {"caption": "a man is speaking in an english accent while another man is being interviewed in another language", "video_id": "video12639", "sen_id": 228749}, {"caption": "group of people are looking to find someone", "video_id": "video12639", "sen_id": 228750}, {"caption": "a narrator translate the words of a man who is describing godless bandits", "video_id": "video12639", "sen_id": 228751}, {"caption": "a man is giving his opinion on a certain group of people and their moral views", "video_id": "video12639", "sen_id": 228752}, {"caption": "a man is describing an occurance of a burned down building", "video_id": "video12639", "sen_id": 228753}, {"caption": "a group of fireman are walking across a decimated building", "video_id": "video12639", "sen_id": 228754}, {"caption": "a man with large eyeglasses and wearing a shawl around his neck is talking about his views", "video_id": "video12639", "sen_id": 228755}, {"caption": "a man with scarf and jacket stands outside by building talking to interviewer", "video_id": "video12639", "sen_id": 228756}, {"caption": "a man wearing glasses and a scarf is being interviewed", "video_id": "video12639", "sen_id": 228757}, {"caption": "a man in glasses talks about people and their religion", "video_id": "video12639", "sen_id": 228758}, {"caption": "a man with glasses is speaking about something", "video_id": "video12639", "sen_id": 228759}, {"caption": "two men playing basketball on an outside basketball court one man was dressed in a spider man outfit and the other man was in white shorts and light blue jersey", "video_id": "video11601", "sen_id": 228760}, {"caption": "spider-man plays basketball with others on a public outdoor court and shows quick repetitive leg movements while bouncing the ball", "video_id": "video11601", "sen_id": 228761}, {"caption": "a person in a spider man suit playing basketball on an outdoor court", "video_id": "video11601", "sen_id": 228762}, {"caption": "a man in a spider-man outfit plays basketball outdoors", "video_id": "video11601", "sen_id": 228763}, {"caption": "a man dressed as spiderman plays basketball in a large city park", "video_id": "video11601", "sen_id": 228764}, {"caption": "a man in a spiderman costume is playing basketball against normally dressed players", "video_id": "video11601", "sen_id": 228765}, {"caption": "a man wearing a spider man dress playing with others on the ground", "video_id": "video11601", "sen_id": 228766}, {"caption": "a person dressed in a spiderman costume playing a game of basketball", "video_id": "video11601", "sen_id": 228767}, {"caption": "spiderman playing basketbal against a man in a park", "video_id": "video11601", "sen_id": 228768}, {"caption": "a man in a spider-man costume plays basketball in a public park", "video_id": "video11601", "sen_id": 228769}, {"caption": "a person dressed as a super hero plays basketball in public", "video_id": "video11601", "sen_id": 228770}, {"caption": "a man in a spiderman costume plays basketball", "video_id": "video11601", "sen_id": 228771}, {"caption": "spiderman dribbles and shoots a basketball on an outdoor basketball court against a man in a blue tank top", "video_id": "video11601", "sen_id": 228772}, {"caption": "a man dressed as spider man plays a game of basketball", "video_id": "video11601", "sen_id": 228773}, {"caption": "there is a man in a spiderman costume playing basketball against one opponent in an outdoor urban basketball court", "video_id": "video11601", "sen_id": 228774}, {"caption": "spiderman plays basketball with a group of kids in a city park", "video_id": "video11601", "sen_id": 228775}, {"caption": "a person dressed as the super hero spider man is playing basketball", "video_id": "video11601", "sen_id": 228776}, {"caption": "spiderman playing amazing basketball on a neighborhood court", "video_id": "video11601", "sen_id": 228777}, {"caption": "a man dessed as spider-man plays pickup basketball on an outdoor court", "video_id": "video11601", "sen_id": 228778}, {"caption": "spider man is outside and playing basket ball", "video_id": "video11601", "sen_id": 228779}, {"caption": "bedroom being shown with colorful walls and phone and ipod station", "video_id": "video11074", "sen_id": 228780}, {"caption": "a man identifies the features of a room including the telephone and an ipod docking station", "video_id": "video11074", "sen_id": 228781}, {"caption": "a table with a phone and a docking station for an ipod", "video_id": "video11074", "sen_id": 228782}, {"caption": "a tour of a very colorful bedroom with a bed table and chair", "video_id": "video11074", "sen_id": 228783}, {"caption": "a man describes the features and amenities of a room", "video_id": "video11074", "sen_id": 228784}, {"caption": "a person describing a house and a phone i pad charger", "video_id": "video11074", "sen_id": 228785}, {"caption": "a view of a very brightly colored room with a black night stand", "video_id": "video11074", "sen_id": 228786}, {"caption": "a man explaining this very colorful bedroom with a lamp on a brown night table", "video_id": "video11074", "sen_id": 228787}, {"caption": "an inside of a colorful contemporary bedroom with an ipod docking station", "video_id": "video11074", "sen_id": 228788}, {"caption": "a man talking about an ndeide telephone with a docking station for an ipod", "video_id": "video11074", "sen_id": 228789}, {"caption": "inside the bedroom there is a landline phone", "video_id": "video11074", "sen_id": 228790}, {"caption": "a nice looking phone with different articles like bed phones etc", "video_id": "video11074", "sen_id": 228791}, {"caption": "a man giving a verbal description of items in a room", "video_id": "video11074", "sen_id": 228792}, {"caption": "a very beautifully colored bed room", "video_id": "video11074", "sen_id": 228793}, {"caption": "a gentleman is explaining about a very colourful room interior", "video_id": "video11074", "sen_id": 228794}, {"caption": "views from in a persons bedroom with brightly colored painted walls and modern furniture", "video_id": "video11074", "sen_id": 228795}, {"caption": "a man is reviewing a hotel room along with docking stations the room itself is quite vibrant in color and inviting", "video_id": "video11074", "sen_id": 228796}, {"caption": "hotel advertisement showing the furniture and ammenities in the room", "video_id": "video11074", "sen_id": 228797}, {"caption": "the person is telling about the landline telephone present in the bedroom", "video_id": "video11074", "sen_id": 228798}, {"caption": "a colorful room is being filmed in side a house", "video_id": "video11074", "sen_id": 228799}, {"caption": "people are participating in multiple forms of track and field", "video_id": "video12882", "sen_id": 228800}, {"caption": "a montage of track and field pictures set to who are you by the who", "video_id": "video12882", "sen_id": 228801}, {"caption": "a montage of a school's track and field team", "video_id": "video12882", "sen_id": 228802}, {"caption": "photos with transitions between that have multiple track athletes standing side by side", "video_id": "video12882", "sen_id": 228803}, {"caption": "pictures of runners in red and yellow uniforms being displayed", "video_id": "video12882", "sen_id": 228804}, {"caption": "a team of young boys standing together in a gym", "video_id": "video12882", "sen_id": 228805}, {"caption": "there is a woman jumping on the court", "video_id": "video12882", "sen_id": 228806}, {"caption": "a graphic showing different sports such as female gymnastics and young men s basketball", "video_id": "video12882", "sen_id": 228807}, {"caption": "a athlete pictures are shown as a slide shows", "video_id": "video12882", "sen_id": 228808}, {"caption": "a young woman jumps on indoor track course and young men line up for race", "video_id": "video12882", "sen_id": 228809}, {"caption": "there is a woman jumping on the track", "video_id": "video12882", "sen_id": 228810}, {"caption": "the who plays as images of teenagers playing sports are shown", "video_id": "video12882", "sen_id": 228811}, {"caption": "an athlete is doing long jump and other athlets are ready for jump", "video_id": "video12882", "sen_id": 228812}, {"caption": "a song is being played and a group of sportsmen are standing", "video_id": "video12882", "sen_id": 228813}, {"caption": "the animation pictures are placed the girl while doing the long jumb the players are waiting on the play court", "video_id": "video12882", "sen_id": 228814}, {"caption": "an upbeat pop song plays while showing different sports teams", "video_id": "video12882", "sen_id": 228815}, {"caption": "more players images are displayed one by one", "video_id": "video12882", "sen_id": 228816}, {"caption": "video about being the best you can at what you do", "video_id": "video12882", "sen_id": 228817}, {"caption": "the song who are you plays while young athletes have shown their personal best", "video_id": "video12882", "sen_id": 228818}, {"caption": "some people in a gym are standing around", "video_id": "video12882", "sen_id": 228819}, {"caption": "a person holds a clapboard next to r2d2 and a line of stormtroopers", "video_id": "video12001", "sen_id": 228820}, {"caption": "different scenes for a movie are beginning with the clapper", "video_id": "video12001", "sen_id": 228821}, {"caption": "a samll robot sets still on a large movie set", "video_id": "video12001", "sen_id": 228822}, {"caption": "this is a trailer beginning by showing the inside of a ship a droid and then storm troopers", "video_id": "video12001", "sen_id": 228823}, {"caption": "movie scenes from the popular movie star wars are being recorded", "video_id": "video12001", "sen_id": 228824}, {"caption": "a video graphic showing several a robot and a scene clapper", "video_id": "video12001", "sen_id": 228825}, {"caption": "star wars clips are being shown with the clapper in between", "video_id": "video12001", "sen_id": 228826}, {"caption": "star wars robots are shown on a movie set", "video_id": "video12001", "sen_id": 228827}, {"caption": "movie shoot on the star warz movie video", "video_id": "video12001", "sen_id": 228828}, {"caption": "someone stating shooting items by using clap plates and shown some items and machineries", "video_id": "video12001", "sen_id": 228829}, {"caption": "a long hallway and a robot with a scene divider using in recording movies", "video_id": "video12001", "sen_id": 228830}, {"caption": "the take board cutting the film sean starts", "video_id": "video12001", "sen_id": 228831}, {"caption": "there is a vehicle ready to use for a shooting", "video_id": "video12001", "sen_id": 228832}, {"caption": "video showing some electronic gadgets", "video_id": "video12001", "sen_id": 228833}, {"caption": "a shooting of a film is going on", "video_id": "video12001", "sen_id": 228834}, {"caption": "a person is giving clap for action of a film shooting", "video_id": "video12001", "sen_id": 228835}, {"caption": "star wars movie cuts with light music playing throughout", "video_id": "video12001", "sen_id": 228836}, {"caption": "a movie scene is taking place with robots in the background", "video_id": "video12001", "sen_id": 228837}, {"caption": "more robots are standing in a long queue", "video_id": "video12001", "sen_id": 228838}, {"caption": "guy clapping to being the shooting of a movie scene", "video_id": "video12001", "sen_id": 228839}, {"caption": "in a kitchen a woman is cooking a broth on stove in a pot ", "video_id": "video10941", "sen_id": 228840}, {"caption": "a pot of broth is shown while a woman is describing how to cook it and adds bones back into the mixture", "video_id": "video10941", "sen_id": 228841}, {"caption": "a female voice instructs on how to cook a soup of chicken and carrots", "video_id": "video10941", "sen_id": 228842}, {"caption": "chicken is being added to a pot with carrots and broth", "video_id": "video10941", "sen_id": 228843}, {"caption": "a woman is preparing some curry using eggscarrot in the kitchen", "video_id": "video10941", "sen_id": 228844}, {"caption": "a chef works on a broth by putting ingredients into a large silver pot", "video_id": "video10941", "sen_id": 228845}, {"caption": "chicken bones being added into chicken broth which also contians carrots", "video_id": "video10941", "sen_id": 228846}, {"caption": "chicken bones are added to a large pot filled with broth and onions by woman", "video_id": "video10941", "sen_id": 228847}, {"caption": "a girl and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10941", "sen_id": 228848}, {"caption": "a women is preparing a recipe and telling to us", "video_id": "video10941", "sen_id": 228849}, {"caption": "in the kitchen a woman making dish with carrot", "video_id": "video10941", "sen_id": 228850}, {"caption": "a woman describes how to make soup from scratch", "video_id": "video10941", "sen_id": 228851}, {"caption": "chicken bones are added to broth with carrots in large pot then more broth is added", "video_id": "video10941", "sen_id": 228852}, {"caption": "a woman adds bones to broth to add flavor", "video_id": "video10941", "sen_id": 228853}, {"caption": "a woman doing a cooking show making some food", "video_id": "video10941", "sen_id": 228854}, {"caption": "a person is pouring chicken and a liquid into a soup that is simmering in a hot pot on the stove", "video_id": "video10941", "sen_id": 228855}, {"caption": "a woman is preparing a gravy in the stove", "video_id": "video10941", "sen_id": 228856}, {"caption": "someone preparing a broth with chicken and carrots", "video_id": "video10941", "sen_id": 228857}, {"caption": "a woman adds broth to her soup creation making it thicker", "video_id": "video10941", "sen_id": 228858}, {"caption": "a woman is telling you she is adding bones to a broth to add more flavor then she says she will cook it another 30 minutes", "video_id": "video10941", "sen_id": 228859}, {"caption": "a video of the small horse in great britain", "video_id": "video10005", "sen_id": 228860}, {"caption": "a women in white t-shirt is taking care of horse", "video_id": "video10005", "sen_id": 228861}, {"caption": "a woman in white shirt is playing with the three year old miniature horse", "video_id": "video10005", "sen_id": 228862}, {"caption": "women holding the pony and playing with that and walking with that to the garden", "video_id": "video10005", "sen_id": 228863}, {"caption": "the lady in blue jean holds the calf of the horse in the hand using the rope", "video_id": "video10005", "sen_id": 228864}, {"caption": "a woman is playing with a tiny horse", "video_id": "video10005", "sen_id": 228865}, {"caption": "a white tshirt women with her horse on the grass", "video_id": "video10005", "sen_id": 228866}, {"caption": "a small girl in pink is standing side of a horse", "video_id": "video10005", "sen_id": 228867}, {"caption": "one women with a small cute and nice horse", "video_id": "video10005", "sen_id": 228868}, {"caption": "a woman in a white shirt with a very small brown horse with a light color mane", "video_id": "video10005", "sen_id": 228869}, {"caption": "a woman is standing while holding a small horse", "video_id": "video10005", "sen_id": 228870}, {"caption": "there is a women with horse on the grass", "video_id": "video10005", "sen_id": 228871}, {"caption": "a woman is having a little ash animal", "video_id": "video10005", "sen_id": 228872}, {"caption": "a woman is playing with the 3 year old miniature horse believed to be the smallest horse in britain just 22 inches tall", "video_id": "video10005", "sen_id": 228873}, {"caption": "a woman is walking around with a small horse", "video_id": "video10005", "sen_id": 228874}, {"caption": "a woman showcasing her miniature horse around a farm", "video_id": "video10005", "sen_id": 228875}, {"caption": "the woman hug the animals and walk them in the grass", "video_id": "video10005", "sen_id": 228876}, {"caption": "there is a women having horse as a pet", "video_id": "video10005", "sen_id": 228877}, {"caption": "a blonde women is hugging and playing with a horse in home and in garden", "video_id": "video10005", "sen_id": 228878}, {"caption": "some people are standing around near some horses", "video_id": "video10005", "sen_id": 228879}, {"caption": "a man explaining the process of fixing something", "video_id": "video12056", "sen_id": 228880}, {"caption": "a hand illustrates various hand gestures over a computer chip sitting on a gray surface", "video_id": "video12056", "sen_id": 228881}, {"caption": "a man off camera talks about how he will sand a piece of metal", "video_id": "video12056", "sen_id": 228882}, {"caption": "a man tells you what he is going to do and then he does it", "video_id": "video12056", "sen_id": 228883}, {"caption": "a man talking about a certain technology gadget", "video_id": "video12056", "sen_id": 228884}, {"caption": "a man is playing around a square shaped magnet", "video_id": "video12056", "sen_id": 228885}, {"caption": "there is a men teeling about the intel processor chip and drives", "video_id": "video12056", "sen_id": 228886}, {"caption": "a man shaking his hand above a chip", "video_id": "video12056", "sen_id": 228887}, {"caption": "a rectangle material is placed on the table and a man talks about it", "video_id": "video12056", "sen_id": 228888}, {"caption": "someone is trying to hold a square metal piece which is moving as though by some magic", "video_id": "video12056", "sen_id": 228889}, {"caption": "a man is describing the process of lapping a computer processor", "video_id": "video12056", "sen_id": 228890}, {"caption": "there is a men telling about the intel processor chip and drives", "video_id": "video12056", "sen_id": 228891}, {"caption": "the man scratched magnet on the floor and he is engaged in some research", "video_id": "video12056", "sen_id": 228892}, {"caption": "a square substance is placed on the black board and rotated many times", "video_id": "video12056", "sen_id": 228893}, {"caption": "this is a computer processor unit some one giving description on it", "video_id": "video12056", "sen_id": 228894}, {"caption": "there is a explanation of a product for multiple use", "video_id": "video12056", "sen_id": 228895}, {"caption": "man going to do it thirty times then rotate it in a quarter turn", "video_id": "video12056", "sen_id": 228896}, {"caption": "a man is explaining what he is going to do with a item", "video_id": "video12056", "sen_id": 228897}, {"caption": "a person explains about the chip in the processor and pic it up", "video_id": "video12056", "sen_id": 228898}, {"caption": "a person is showing how the process works", "video_id": "video12056", "sen_id": 228899}, {"caption": "a man is in a field running and jumping over small hurdles as an obstacle course", "video_id": "video10173", "sen_id": 228900}, {"caption": "an athletic guy shows off how to do some basic training techniques", "video_id": "video10173", "sen_id": 228901}, {"caption": "sports persons are seriously practising their drills here", "video_id": "video10173", "sen_id": 228902}, {"caption": "a men is jumping between stands which are kept in the garden", "video_id": "video10173", "sen_id": 228903}, {"caption": "advanced speed training by a trainer creating faster athletes", "video_id": "video10173", "sen_id": 228904}, {"caption": "an adult man wearing black t-shirt and shorts is doing various obstacle exercises", "video_id": "video10173", "sen_id": 228905}, {"caption": "guy in dark green tshirt working out in the grass", "video_id": "video10173", "sen_id": 228906}, {"caption": "a man is completing an obstacle course in various ways", "video_id": "video10173", "sen_id": 228907}, {"caption": " advanced speed training creating faster athlets in website www", "video_id": "video10173", "sen_id": 228908}, {"caption": "a guy in black shorts leaps across the grass", "video_id": "video10173", "sen_id": 228909}, {"caption": "a man is running around in the grass", "video_id": "video10173", "sen_id": 228910}, {"caption": "there is a man practicing for a match", "video_id": "video10173", "sen_id": 228911}, {"caption": "atheletes taking training running between small hurdles jumping front and sideways", "video_id": "video10173", "sen_id": 228912}, {"caption": "a man is running repeatedly in different ways through a small obstacle course", "video_id": "video10173", "sen_id": 228913}, {"caption": "an old man in black dress jumping and running in grass ground", "video_id": "video10173", "sen_id": 228914}, {"caption": "music plays while a man is jumping over some things", "video_id": "video10173", "sen_id": 228915}, {"caption": "there is some players practicing before a match", "video_id": "video10173", "sen_id": 228916}, {"caption": "an advanced speed training tool is shown by example a man runs and jumps over and around markers on the ground", "video_id": "video10173", "sen_id": 228917}, {"caption": "a young man demonstrates exercises designed to increase his speed", "video_id": "video10173", "sen_id": 228918}, {"caption": "a man demonstrates the drills he does to increase his speed", "video_id": "video10173", "sen_id": 228919}, {"caption": "a women discusses biotechnology in the context of agriculture", "video_id": "video11866", "sen_id": 228920}, {"caption": "a woman is talking about plants while someone with blue clothes is holding a sapling", "video_id": "video11866", "sen_id": 228921}, {"caption": "a woman discusses biotechnology in agriculture stating its one of the most popular", "video_id": "video11866", "sen_id": 228922}, {"caption": "scientist is talking about biotechnology and shows a plant being tested", "video_id": "video11866", "sen_id": 228923}, {"caption": "the video shows a plant while a woman talks about agricultural biotechnology", "video_id": "video11866", "sen_id": 228924}, {"caption": "a woman describes biotechnology", "video_id": "video11866", "sen_id": 228925}, {"caption": "a woman saying one of the most popular aspects of bio-technology is farmers improving plants", "video_id": "video11866", "sen_id": 228926}, {"caption": "a small green plant in a block of soil being held by hands wearing blue gloves", "video_id": "video11866", "sen_id": 228927}, {"caption": "a person with blue gloves on is inspecting a plant", "video_id": "video11866", "sen_id": 228928}, {"caption": "a woman talking about the science of bio technology and plants", "video_id": "video11866", "sen_id": 228929}, {"caption": "a scientist wearing blue gloves uses tweezers to work on a plant", "video_id": "video11866", "sen_id": 228930}, {"caption": "a scientist uses tweezers to woork with the leaves on a small plant", "video_id": "video11866", "sen_id": 228931}, {"caption": "a pair of hands wears blue rubber gloves with one palm holding a small flowering green plant growing an a cube of dirt and the other hand holding a tweezer touching the plant stem", "video_id": "video11866", "sen_id": 228932}, {"caption": "a strawberry is being held in gloved hands while being probed with tweezers the narrator speaks of bio-technology and agriculture", "video_id": "video11866", "sen_id": 228933}, {"caption": "a graphic with a female voiceover hands wearing blue gloves explaining agriculture and biotechnology", "video_id": "video11866", "sen_id": 228934}, {"caption": "there is a woman talking about biotechnology", "video_id": "video11866", "sen_id": 228935}, {"caption": "one of the more popular forms of bio technology is agrivulture", "video_id": "video11866", "sen_id": 228936}, {"caption": "a hand with a blue glove on tweezing a part of a tiny green plant with soil in the other hand", "video_id": "video11866", "sen_id": 228937}, {"caption": "a lab scientist is experimenting on a plant and is explaining about its features", "video_id": "video11866", "sen_id": 228938}, {"caption": "a person is using tweezers to pick at a plant", "video_id": "video11866", "sen_id": 228939}, {"caption": "a doctor is speaking about his work at the lab", "video_id": "video10929", "sen_id": 228940}, {"caption": "dr niall o' reilly manager of pmbrc is on camera talking about the small one off contract analysis and quality investigations", "video_id": "video10929", "sen_id": 228941}, {"caption": "a clip of a person from a current university", "video_id": "video10929", "sen_id": 228942}, {"caption": "a man sitting in a room discussing a topic", "video_id": "video10929", "sen_id": 228943}, {"caption": "scientists discuss the work that they do on a news segment", "video_id": "video10929", "sen_id": 228944}, {"caption": "in a lab people are working a man is seated and talking", "video_id": "video10929", "sen_id": 228945}, {"caption": "a man talking in the chemical lab", "video_id": "video10929", "sen_id": 228946}, {"caption": " with an oval face speaks next to a black-and-white poster on a brown wall by a window with wooden blinds", "video_id": "video10929", "sen_id": 228947}, {"caption": "a doctor is talking about his company and products", "video_id": "video10929", "sen_id": 228948}, {"caption": "niall o reilly speaking about the quality checking of the medicine", "video_id": "video10929", "sen_id": 228949}, {"caption": "this may seem like a robot but it really is a guy", "video_id": "video10929", "sen_id": 228950}, {"caption": "the man describes the duties of the research company", "video_id": "video10929", "sen_id": 228951}, {"caption": "a lab technician is speaking text is at the bottom of the screen", "video_id": "video10929", "sen_id": 228952}, {"caption": "a man talking to the camera discussing a topic", "video_id": "video10929", "sen_id": 228953}, {"caption": "a man with short hair is sitting and talking", "video_id": "video10929", "sen_id": 228954}, {"caption": "man in a collared shirt describing workprojects he does in a lab", "video_id": "video10929", "sen_id": 228955}, {"caption": "a man in a laboratory setting is discussing his projects and analyses", "video_id": "video10929", "sen_id": 228956}, {"caption": "a man is speaking about investigations in product quality", "video_id": "video10929", "sen_id": 228957}, {"caption": "a doctor explains the operations of his research company", "video_id": "video10929", "sen_id": 228958}, {"caption": "a skinny man in a room is talking to someone", "video_id": "video10929", "sen_id": 228959}, {"caption": "a photograph shows a first responder kneeling in uniform in the street two men and a woman are seated on the blue set of a talk show on plush maroon chairs behind wooden-block tables", "video_id": "video12981", "sen_id": 228960}, {"caption": "a scuba diver is discussing an organized trip he took on the ellen degeneres show", "video_id": "video12981", "sen_id": 228961}, {"caption": "a clip of a guy talking on the tv show ellen", "video_id": "video12981", "sen_id": 228962}, {"caption": "two men sit and talk to a talk show host on a stage", "video_id": "video12981", "sen_id": 228963}, {"caption": "a talk show is going under way two men are speaking to the famous tv talk show host ellen", "video_id": "video12981", "sen_id": 228964}, {"caption": "an off duty fireman talks about an experinece he had while at work", "video_id": "video12981", "sen_id": 228965}, {"caption": "a man is speaking on the ellen show while ellen and another man listen", "video_id": "video12981", "sen_id": 228966}, {"caption": "a man is speaking on the ellen degeneres show", "video_id": "video12981", "sen_id": 228967}, {"caption": "a man talks to ellen about an experience he had", "video_id": "video12981", "sen_id": 228968}, {"caption": "a man is talking to ellen about an experience from when he was firefighting", "video_id": "video12981", "sen_id": 228969}, {"caption": "a man is sitting in a red chair and talking to two other people", "video_id": "video12981", "sen_id": 228970}, {"caption": "there is a black shirt man talking in a show", "video_id": "video12981", "sen_id": 228971}, {"caption": "a person giving an explanation to the other two men", "video_id": "video12981", "sen_id": 228972}, {"caption": "two men talk with a day time talk show host about a fire related mission they were on", "video_id": "video12981", "sen_id": 228973}, {"caption": "two persons are being interviewed on a tv show", "video_id": "video12981", "sen_id": 228974}, {"caption": "there is a white shirt man sitting nearby his friends", "video_id": "video12981", "sen_id": 228975}, {"caption": "one man talking about movie in with two mans", "video_id": "video12981", "sen_id": 228976}, {"caption": "two firefighters on a chat show describe an encounter", "video_id": "video12981", "sen_id": 228977}, {"caption": "a boy sitting beside other old man sitting and speaking shaking hands discusing on topic displaying on screen", "video_id": "video12981", "sen_id": 228978}, {"caption": "some men on a tv show are talking about something", "video_id": "video12981", "sen_id": 228979}, {"caption": "a green vegetable being thrown on several pieces of meats", "video_id": "video11270", "sen_id": 228980}, {"caption": "a chef puts herbs into a large pot where they are preparing a chicken dish", "video_id": "video11270", "sen_id": 228981}, {"caption": "a man is throwing many greens into a pot of chicken he is cooking a special dish", "video_id": "video11270", "sen_id": 228982}, {"caption": "a person grabs a handful of chopped green seasoning and tosses it into a large bowl with other food already in it", "video_id": "video11270", "sen_id": 228983}, {"caption": "a person is putting some seasoning in to a bowl of raw chicken", "video_id": "video11270", "sen_id": 228984}, {"caption": "someone putting herbs on raw chicken", "video_id": "video11270", "sen_id": 228985}, {"caption": "a women in a kitchen adding coriander leaves to the chicken curry", "video_id": "video11270", "sen_id": 228986}, {"caption": "a person is standing at a stove cooking a recipe", "video_id": "video11270", "sen_id": 228987}, {"caption": "i think he is making chilly chicken i wish you make tasty", "video_id": "video11270", "sen_id": 228988}, {"caption": "a person is throwing herbs in a big pot full of assorted meats", "video_id": "video11270", "sen_id": 228989}, {"caption": "someone is cooking something that has chicken and green things in it", "video_id": "video11270", "sen_id": 228990}, {"caption": "a person is preparing a chicken briyani with chicken and vegatables", "video_id": "video11270", "sen_id": 228991}, {"caption": "few greens are put in the chicken raw meat and made to mix", "video_id": "video11270", "sen_id": 228992}, {"caption": "hearing a man voice and hands are shown throwing coriander leaves over some flesh", "video_id": "video11270", "sen_id": 228993}, {"caption": "a person putting fresh ingredients into a big pot", "video_id": "video11270", "sen_id": 228994}, {"caption": "a person is prepping a chicken dish with an orange sauce and lots of parsley", "video_id": "video11270", "sen_id": 228995}, {"caption": "a large pot is shown with many ingredients that are about to be cooked", "video_id": "video11270", "sen_id": 228996}, {"caption": "a person shown adding coriander and thyme to the dish in the pans", "video_id": "video11270", "sen_id": 228997}, {"caption": "large handfuls of green leafy herbs are thrown into an ever larger bowl full of meats and vegetables", "video_id": "video11270", "sen_id": 228998}, {"caption": "some green vegetables are sitting on a thing", "video_id": "video11270", "sen_id": 228999}, {"caption": "a movie just ended and the cast and the crew are been honored", "video_id": "video12737", "sen_id": 229000}, {"caption": "the closing credits of a film are shown", "video_id": "video12737", "sen_id": 229001}, {"caption": "white credits move vertically from bottom to top against a black background naming an actor director musician and two movie studios", "video_id": "video12737", "sen_id": 229002}, {"caption": "the credits for a roll by on a black screen with white lettering", "video_id": "video12737", "sen_id": 229003}, {"caption": "the credits include tom hanks dreamworks and fox", "video_id": "video12737", "sen_id": 229004}, {"caption": "credits roll on a black screen with white text", "video_id": "video12737", "sen_id": 229005}, {"caption": "the end credits of a movie are showing on a black screen", "video_id": "video12737", "sen_id": 229006}, {"caption": "we see the end credits of a film titled 'tom hanks kills 15' which is directed by sam mendes other credits are shown", "video_id": "video12737", "sen_id": 229007}, {"caption": "movie credits in white lettering scrolling up a black screen about a tom hanks movie", "video_id": "video12737", "sen_id": 229008}, {"caption": "the credits of a movie scroll by on a black background", "video_id": "video12737", "sen_id": 229009}, {"caption": "the end credits runs from bottom to up and gives credits to everyone worked in the movie", "video_id": "video12737", "sen_id": 229010}, {"caption": "credits for a short film called tom hanks kills 15", "video_id": "video12737", "sen_id": 229011}, {"caption": "end credits rolling for title tom hanks kills 15", "video_id": "video12737", "sen_id": 229012}, {"caption": "some names of the director and musician was displayed in running letters", "video_id": "video12737", "sen_id": 229013}, {"caption": "a film ends and the credits roll-up the screen", "video_id": "video12737", "sen_id": 229014}, {"caption": "the black screen shows the credits of the movie on it", "video_id": "video12737", "sen_id": 229015}, {"caption": "movie credits in white letters are scrolling from bottom to top on a black screen", "video_id": "video12737", "sen_id": 229016}, {"caption": "the movie ends and the titles are moving up", "video_id": "video12737", "sen_id": 229017}, {"caption": "a bunch of text showing actors and copyrights with loud music playing in the background", "video_id": "video12737", "sen_id": 229018}, {"caption": "some credits are scrolling on a screen", "video_id": "video12737", "sen_id": 229019}, {"caption": "a woman makes homemade chicken soup from a recipe and lades it into a white soup bowl", "video_id": "video10788", "sen_id": 229020}, {"caption": "more soup is being ladled into a steaming bowl of soup", "video_id": "video10788", "sen_id": 229021}, {"caption": "additional broth is ladled over pieces of steaming chicken topped with green-parsley garnish placed in the center of a soup plate", "video_id": "video10788", "sen_id": 229022}, {"caption": "a woman is praising the chicken soup recipie about how easy and delicious it is", "video_id": "video10788", "sen_id": 229023}, {"caption": "steam wafts from a dish of chicken soup with a large piece of chicken in the middle when more broth is poured from a ladle and the chicken is garnished with a parsley sprig", "video_id": "video10788", "sen_id": 229024}, {"caption": "delicious chicken soup cooked and some leaves poured by the cooker", "video_id": "video10788", "sen_id": 229025}, {"caption": "a woman showing us a preapred home made delicious chicken soup", "video_id": "video10788", "sen_id": 229026}, {"caption": "a woman is preparing a soup recipe and explain it", "video_id": "video10788", "sen_id": 229027}, {"caption": "its a food item for eating and a soup in bowl", "video_id": "video10788", "sen_id": 229028}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video10788", "sen_id": 229029}, {"caption": "a homemade chicken soup recipe from allrecipes is introduced", "video_id": "video10788", "sen_id": 229030}, {"caption": "in the kitchena woman preparing a dish", "video_id": "video10788", "sen_id": 229031}, {"caption": "a person pour chicken soup and broth into a white bowl", "video_id": "video10788", "sen_id": 229032}, {"caption": "home made chicken soup in bowl all recipes", "video_id": "video10788", "sen_id": 229033}, {"caption": "a woman man is explain about a food recipe", "video_id": "video10788", "sen_id": 229034}, {"caption": "in a kitchen a plate in white color with some dish and someone adding a some liquid and garnishing", "video_id": "video10788", "sen_id": 229035}, {"caption": "there is a hot dish making and decorating by a women", "video_id": "video10788", "sen_id": 229036}, {"caption": "a woman cooks chicken soup in a porcelain white bowl with cilantro on top", "video_id": "video10788", "sen_id": 229037}, {"caption": "one women maked a recipe with some of the", "video_id": "video10788", "sen_id": 229038}, {"caption": "a soup in a white bowl has steam coming off of it and more broth is added to it", "video_id": "video10788", "sen_id": 229039}, {"caption": "several different pictures of korean dishes are being displayed consecutively", "video_id": "video12408", "sen_id": 229040}, {"caption": "delicious dishes that were prepared in the korean kitchen", "video_id": "video12408", "sen_id": 229041}, {"caption": "images of various foods flash on the screen on a show called korean kitchen", "video_id": "video12408", "sen_id": 229042}, {"caption": "a plate and a bowl of food is shown as words flash across colorful backgrounds", "video_id": "video12408", "sen_id": 229043}, {"caption": "many different beautiful dishes are displayed with upbeat music", "video_id": "video12408", "sen_id": 229044}, {"caption": "a cookery program korean kitchen a variety of different dishes appear on different screen shots", "video_id": "video12408", "sen_id": 229045}, {"caption": "delicious items are being displayed form korean kitchen", "video_id": "video12408", "sen_id": 229046}, {"caption": "a screen is showing many different dishes and foods prepared in the korean kitchen", "video_id": "video12408", "sen_id": 229047}, {"caption": "a colorful display of korea dishes with musical accompaniment", "video_id": "video12408", "sen_id": 229048}, {"caption": "delicious meal ideas placed beside each other in a korean kitchen", "video_id": "video12408", "sen_id": 229049}, {"caption": "music playing while images pan of colorful korean cooked dishes of food", "video_id": "video12408", "sen_id": 229050}, {"caption": "a slideshow depicting various korean foods with funky music in the background", "video_id": "video12408", "sen_id": 229051}, {"caption": "various asian dishes are shown in the opening sequence to a show called korean kitchen", "video_id": "video12408", "sen_id": 229052}, {"caption": "various meals are scene of elaborate asian dishes including sushi and noodle dish", "video_id": "video12408", "sen_id": 229053}, {"caption": "some food is being filmed on a table inside", "video_id": "video12408", "sen_id": 229054}, {"caption": "an introduction to a korean cooking show highlighting dfferent foods", "video_id": "video12408", "sen_id": 229055}, {"caption": "a compilation of korean dishes that were created in the korean kitchen", "video_id": "video12408", "sen_id": 229056}, {"caption": "a panorama of colorful and delicious korean dishes being exhibited in a cooking show program", "video_id": "video12408", "sen_id": 229057}, {"caption": "a photo montage of some asian food and table placments", "video_id": "video12408", "sen_id": 229058}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video12408", "sen_id": 229059}, {"caption": "a woman is talking about her pet paint horse", "video_id": "video12948", "sen_id": 229060}, {"caption": "a paint horse standing by a pipe coral fence", "video_id": "video12948", "sen_id": 229061}, {"caption": "woman speaks about her beautiful painted horse and the horse is shown", "video_id": "video12948", "sen_id": 229062}, {"caption": "a woman being interviewed about buying a horse", "video_id": "video12948", "sen_id": 229063}, {"caption": "the woman is showing and talking about an animal in the farm", "video_id": "video12948", "sen_id": 229064}, {"caption": "a woman holding up a picture and then her talking about and showing the actual horse", "video_id": "video12948", "sen_id": 229065}, {"caption": "a woman describes the first time she encountered her horse", "video_id": "video12948", "sen_id": 229066}, {"caption": "a woman talks about her brown and white horse named lacey", "video_id": "video12948", "sen_id": 229067}, {"caption": "a lady talks about how she brought her horse lase 12 years ago", "video_id": "video12948", "sen_id": 229068}, {"caption": "a woman wearing a gray sweater and long brown hair is standing on a farm talking about her brown and white horse", "video_id": "video12948", "sen_id": 229069}, {"caption": "a woman shows her horse and discusses him", "video_id": "video12948", "sen_id": 229070}, {"caption": "a woman talks about how she acquired her brown and white horse named lacy", "video_id": "video12948", "sen_id": 229071}, {"caption": "a spokeswoman with long brown hair named dretta hitzeman with a brown and white horse named lacy that she s had for twelve years", "video_id": "video12948", "sen_id": 229072}, {"caption": "a ldy talking about a horse", "video_id": "video12948", "sen_id": 229073}, {"caption": "a pet care taker explaining about something of her pets", "video_id": "video12948", "sen_id": 229074}, {"caption": "a woman is talking about the horse is brown and white colour", "video_id": "video12948", "sen_id": 229075}, {"caption": "a woman is standing next to a horse", "video_id": "video12948", "sen_id": 229076}, {"caption": "a lady shows the horse in her tab which she grows in her farm", "video_id": "video12948", "sen_id": 229077}, {"caption": "a woman is speaking about a horse in carriage", "video_id": "video12948", "sen_id": 229078}, {"caption": "a lady in white dress wearing speaking showing horse and brown horse standing displaying on screen", "video_id": "video12948", "sen_id": 229079}, {"caption": "an airplane landing next to a yellow sports car", "video_id": "video11217", "sen_id": 229080}, {"caption": "a yellow and a red sports car with the wing doors up", "video_id": "video11217", "sen_id": 229081}, {"caption": "an airplane is flying next to a yellow car on a split screen with an orange car with lamborghini doors", "video_id": "video11217", "sen_id": 229082}, {"caption": "a split screen is showing a helicopter flying over a car on the left and on the right is a parked red sports car", "video_id": "video11217", "sen_id": 229083}, {"caption": "a plane and a car are in juxtaposition of one another", "video_id": "video11217", "sen_id": 229084}, {"caption": "the man in white shirt coming from tiny flight and drive the yellow colour stylish car", "video_id": "video11217", "sen_id": 229085}, {"caption": "a man steps off of an airplane that lands and get into a bright yellow sports car", "video_id": "video11217", "sen_id": 229086}, {"caption": "this video is talking abou the supercars and the history that goes along with it", "video_id": "video11217", "sen_id": 229087}, {"caption": "there is planecars and people talking", "video_id": "video11217", "sen_id": 229088}, {"caption": "a sports car is shown off next to an aircraft", "video_id": "video11217", "sen_id": 229089}, {"caption": "a small plane is flying over a car and then rides in front of it there is a red car displayed", "video_id": "video11217", "sen_id": 229090}, {"caption": "a white airplane is flying above and lands near a yellow sports car", "video_id": "video11217", "sen_id": 229091}, {"caption": "the screen is showing two very expensive luxury cars one is red the other is yellow", "video_id": "video11217", "sen_id": 229092}, {"caption": "guy getting down from a jet flight and boarding into a car", "video_id": "video11217", "sen_id": 229093}, {"caption": "a race car speeds down an aircraft runway alongside a small plane", "video_id": "video11217", "sen_id": 229094}, {"caption": "there is a aircraft landing in to the land", "video_id": "video11217", "sen_id": 229095}, {"caption": "the same car in two different colors are displayed to show how fast and sleek they are", "video_id": "video11217", "sen_id": 229096}, {"caption": "the men introducing the new sports car and their features", "video_id": "video11217", "sen_id": 229097}, {"caption": "the person is explaining about the cars designed by the designer", "video_id": "video11217", "sen_id": 229098}, {"caption": "there are two sports cars an an airplane on a concrete track and people are examining these cars", "video_id": "video11217", "sen_id": 229099}, {"caption": "two girls are showing how to make a meal in a kitchen", "video_id": "video10228", "sen_id": 229100}, {"caption": "two girls are getting ready to fix a recipe", "video_id": "video10228", "sen_id": 229101}, {"caption": "two women talking about the ingredients for a dish", "video_id": "video10228", "sen_id": 229102}, {"caption": "two women talking about the ingredients for a dish", "video_id": "video10228", "sen_id": 229103}, {"caption": "a couple of girls go over a list of food items needed for a recipe", "video_id": "video10228", "sen_id": 229104}, {"caption": "two dark haired young women make tuna salad", "video_id": "video10228", "sen_id": 229105}, {"caption": "there is a woman introducing some products with a friend", "video_id": "video10228", "sen_id": 229106}, {"caption": "two cute girls with some products and showing them", "video_id": "video10228", "sen_id": 229107}, {"caption": "the two young ladies making the pasta and their receipes telling in simply method", "video_id": "video10228", "sen_id": 229108}, {"caption": "two young women show the ingredients they are using for a recipe they are preparing", "video_id": "video10228", "sen_id": 229109}, {"caption": "two girls are showing the ingredients to cook a dish", "video_id": "video10228", "sen_id": 229110}, {"caption": "there is a woman with long hair introducing some products", "video_id": "video10228", "sen_id": 229111}, {"caption": "there are two young ladies making tuna pasta in a kitchen together", "video_id": "video10228", "sen_id": 229112}, {"caption": "the two girls are showing the different bottles in the kitchen", "video_id": "video10228", "sen_id": 229113}, {"caption": "two women talking about what you need for a recipe", "video_id": "video10228", "sen_id": 229114}, {"caption": "two cute girls taking some products one by one to explain the procedure", "video_id": "video10228", "sen_id": 229115}, {"caption": "two women are explaining the ingredients needed to make a dish", "video_id": "video10228", "sen_id": 229116}, {"caption": "a pair of young girls discuss the ingredients that go into a recipe they are preparing", "video_id": "video10228", "sen_id": 229117}, {"caption": "two women are in a kitchen listing and showing the ingredients for their recipe", "video_id": "video10228", "sen_id": 229118}, {"caption": "two girls are in the kitchen are showing ingredients for a recipe", "video_id": "video10228", "sen_id": 229119}, {"caption": "a man and a child talk off camera as a remote control car runs into a wall", "video_id": "video11525", "sen_id": 229120}, {"caption": "a red remote control car moving back and forward on hardwood floors", "video_id": "video11525", "sen_id": 229121}, {"caption": "some one is running the electric toy car on the floor", "video_id": "video11525", "sen_id": 229122}, {"caption": "a men is playing with remote cars in room", "video_id": "video11525", "sen_id": 229123}, {"caption": "the red remote control car drives over the wooden floor", "video_id": "video11525", "sen_id": 229124}, {"caption": "a father and his child play with a very fast remote control car", "video_id": "video11525", "sen_id": 229125}, {"caption": "some one running a electric toy car on the floor which is nice to watch", "video_id": "video11525", "sen_id": 229126}, {"caption": "a sleek red-and-black remote-control car travels on a wood floor past parked vehicles and boxes of toys when it hits a door and goes backwards", "video_id": "video11525", "sen_id": 229127}, {"caption": "a young child and his father play with a high end remote control car", "video_id": "video11525", "sen_id": 229128}, {"caption": "a person is driving remote red car in the house", "video_id": "video11525", "sen_id": 229129}, {"caption": "there is a car toy racing in side the house", "video_id": "video11525", "sen_id": 229130}, {"caption": "person is driving a toy car in red", "video_id": "video11525", "sen_id": 229131}, {"caption": "one battery operated car is in the home", "video_id": "video11525", "sen_id": 229132}, {"caption": "a red toy car rolls across the floor slams into a wall and then backs up", "video_id": "video11525", "sen_id": 229133}, {"caption": "a kid is playing with a remote control car toy", "video_id": "video11525", "sen_id": 229134}, {"caption": "a red car is being maneuvered by a remote control over the hardwood floor", "video_id": "video11525", "sen_id": 229135}, {"caption": "a bed color toy car coming front and going back", "video_id": "video11525", "sen_id": 229136}, {"caption": "one boy operating toy car which is battery operated", "video_id": "video11525", "sen_id": 229137}, {"caption": "amazing red car has been driven by remote control", "video_id": "video11525", "sen_id": 229138}, {"caption": "a red car is driving around a wood floor", "video_id": "video11525", "sen_id": 229139}, {"caption": "a man in red and another in white play badminton while a song about homelessness plays in the background", "video_id": "video10572", "sen_id": 229140}, {"caption": "two men are playing badminton aggressively in an indoor competition", "video_id": "video10572", "sen_id": 229141}, {"caption": "a couple of men playing tennis one in white and one in red", "video_id": "video10572", "sen_id": 229142}, {"caption": "two men play badmitton in a large indoor stadium in front of a large crowd", "video_id": "video10572", "sen_id": 229143}, {"caption": "a man in a pink shirt plays a game of tennis against a man in a white shirt", "video_id": "video10572", "sen_id": 229144}, {"caption": "two players are playing badminton match watched by crowd", "video_id": "video10572", "sen_id": 229145}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10572", "sen_id": 229146}, {"caption": "table tennise player with blue and red shirt are playing", "video_id": "video10572", "sen_id": 229147}, {"caption": "two men playing professional badminton in front of a small crowd", "video_id": "video10572", "sen_id": 229148}, {"caption": "two men playing a heated game of badminton in front of an audience", "video_id": "video10572", "sen_id": 229149}, {"caption": "a white jersey man playing tennis with someone", "video_id": "video10572", "sen_id": 229150}, {"caption": "a man in a white shirt and a man in a pink shirt are playing tennis while music plays in the background", "video_id": "video10572", "sen_id": 229151}, {"caption": "a two men are playing a table tennis game", "video_id": "video10572", "sen_id": 229152}, {"caption": "a players were playing tennis on the ground", "video_id": "video10572", "sen_id": 229153}, {"caption": "two men playing badmitten while music plays in the background", "video_id": "video10572", "sen_id": 229154}, {"caption": "two male players are playing indoor badminton in a tournament while relaxing music is playing in the background", "video_id": "video10572", "sen_id": 229155}, {"caption": "two players competing on a long tennis game", "video_id": "video10572", "sen_id": 229156}, {"caption": "a pair of men play badmitton in a large stadium in front of a large crowd", "video_id": "video10572", "sen_id": 229157}, {"caption": "game of shuttle cork between 2 team with red and white jersey", "video_id": "video10572", "sen_id": 229158}, {"caption": "music plays as two men play tennis during the night time", "video_id": "video10572", "sen_id": 229159}, {"caption": "a tan dog looks out the rear-view car window leads a pack of horses and jumps into a working man's outstretched arms", "video_id": "video12184", "sen_id": 229160}, {"caption": "a dog barking at a horse which is following to pursue the dog", "video_id": "video12184", "sen_id": 229161}, {"caption": "a dog and horse are communicating and running with each other", "video_id": "video12184", "sen_id": 229162}, {"caption": "a commercial is showing a man driving with a dog passing a horse farm and when the car stops the dog runs to a man", "video_id": "video12184", "sen_id": 229163}, {"caption": "a dog in a car seeing a horse and the dog is barking", "video_id": "video12184", "sen_id": 229164}, {"caption": "a man is watching horses follow a puppie down the road", "video_id": "video12184", "sen_id": 229165}, {"caption": "there is a horse riding on the road", "video_id": "video12184", "sen_id": 229166}, {"caption": "a horse running behind a car while the dog barks at the horse", "video_id": "video12184", "sen_id": 229167}, {"caption": "dog running to his master along with a group of horses", "video_id": "video12184", "sen_id": 229168}, {"caption": "a dog is running from a car and horses are running away from the stable", "video_id": "video12184", "sen_id": 229169}, {"caption": "there is a horse running in to the road", "video_id": "video12184", "sen_id": 229170}, {"caption": "horse runs to a car dog runs to its master", "video_id": "video12184", "sen_id": 229171}, {"caption": "music playing while a dog is brought back home to his owner", "video_id": "video12184", "sen_id": 229172}, {"caption": "a dog looking the horses from the car and horse following the car and blocked and dog coming along with the horse", "video_id": "video12184", "sen_id": 229173}, {"caption": "uniting of pet and his master", "video_id": "video12184", "sen_id": 229174}, {"caption": "there is a man with his small dog", "video_id": "video12184", "sen_id": 229175}, {"caption": "a man driving towards horse", "video_id": "video12184", "sen_id": 229176}, {"caption": "horse is running in the ground very fastly", "video_id": "video12184", "sen_id": 229177}, {"caption": "a group of clydesdale horses chase after and surround a car carrying a puppy", "video_id": "video12184", "sen_id": 229178}, {"caption": "a dog is looking at a horse run after it", "video_id": "video12184", "sen_id": 229179}, {"caption": "a man is describing why people like to go to the vacation location that the man is standing in front of", "video_id": "video10928", "sen_id": 229180}, {"caption": "a man in a blue shirt standing in front of a body of water talking about a tourist destination", "video_id": "video10928", "sen_id": 229181}, {"caption": "man in a blue shirt and white hat describing how much he enjoys his vacation", "video_id": "video10928", "sen_id": 229182}, {"caption": "a guide is speaking about a tropical paradise to visit", "video_id": "video10928", "sen_id": 229183}, {"caption": "a man in a blue shirt talking in front of a lake", "video_id": "video10928", "sen_id": 229184}, {"caption": "a mural on a wall is shown before a man stands near a lake and speaks to the camera on a sunny day", "video_id": "video10928", "sen_id": 229185}, {"caption": "a man in a blue shirt and white hat is standing in front of some water talking about what people can do in the area he is visiting", "video_id": "video10928", "sen_id": 229186}, {"caption": "a man in blue t-shirt explaining some topic in front of the camera", "video_id": "video10928", "sen_id": 229187}, {"caption": "the man wearing a blue shirt talks near the lake", "video_id": "video10928", "sen_id": 229188}, {"caption": "a male person identifying why people go to a particular vacation spot to relax", "video_id": "video10928", "sen_id": 229189}, {"caption": "a man in a blue shirt with a camera on his neck is spouting off about how this destination is so relaxing which means hammock sitting", "video_id": "video10928", "sen_id": 229190}, {"caption": "a man with blue tshirt and wearing a white cap standing near to a river and talks", "video_id": "video10928", "sen_id": 229191}, {"caption": "a man is wearing a blue shirt talking in front of a river", "video_id": "video10928", "sen_id": 229192}, {"caption": "a young man discusses why he chose a particular vacation location", "video_id": "video10928", "sen_id": 229193}, {"caption": "a guy wearing a blue shirt describes the scenery at a tourist destination", "video_id": "video10928", "sen_id": 229194}, {"caption": "the man with blue tshirt and a camera saying something", "video_id": "video10928", "sen_id": 229195}, {"caption": "a man wearing a blue t-shirt and a white cap is giving the reason why people likes the place", "video_id": "video10928", "sen_id": 229196}, {"caption": "a beautiful painting on wall and a view of lake and a person wearing white cap explains about his tour", "video_id": "video10928", "sen_id": 229197}, {"caption": "guy with camera talking about a place", "video_id": "video10928", "sen_id": 229198}, {"caption": "a man in a blue shirt with a camera is standing next to a body of water", "video_id": "video10928", "sen_id": 229199}, {"caption": "a group of men at a match getting a speech from a coach", "video_id": "video10652", "sen_id": 229200}, {"caption": "a man rallies his teammates to get them ready for the game", "video_id": "video10652", "sen_id": 229201}, {"caption": "the players wearing green colour t-shirts and talking about playing techniques", "video_id": "video10652", "sen_id": 229202}, {"caption": "a man is giving an inspriational speech to his sports team to prepare them", "video_id": "video10652", "sen_id": 229203}, {"caption": "a players are in green color shirt are standing in the ground", "video_id": "video10652", "sen_id": 229204}, {"caption": "the national anthem is being concentrated for innovation by the team", "video_id": "video10652", "sen_id": 229205}, {"caption": "in a field inside the stadium players are standing in a circle discussing their stratergy to win", "video_id": "video10652", "sen_id": 229206}, {"caption": "a sports team is planning and preparing to complete a play back on the field", "video_id": "video10652", "sen_id": 229207}, {"caption": "men wearing green jerseys in a huddle at a rugby game", "video_id": "video10652", "sen_id": 229208}, {"caption": "players are getting ready to play wearing their uniforms", "video_id": "video10652", "sen_id": 229209}, {"caption": "coach of a sports team giving important tips to the players", "video_id": "video10652", "sen_id": 229210}, {"caption": "a football player gives his team an inspirational speech as chanting music plays in the background", "video_id": "video10652", "sen_id": 229211}, {"caption": "a man in a green shirt tries to rally and inspire his rugby team", "video_id": "video10652", "sen_id": 229212}, {"caption": "a green color dress wearing cloth players shouting inside ground audience watching displaying on screen", "video_id": "video10652", "sen_id": 229213}, {"caption": "as the country watches a coach inspires his team in the huddle", "video_id": "video10652", "sen_id": 229214}, {"caption": "a rugby team leader gives a pep talk to his team", "video_id": "video10652", "sen_id": 229215}, {"caption": "matt damon acting aside others on a soccer field in green shirts", "video_id": "video10652", "sen_id": 229216}, {"caption": "a sports team is in a huddle getting an inspirational speech from a player", "video_id": "video10652", "sen_id": 229217}, {"caption": "a coach ralling his team as a crowds sings in background", "video_id": "video10652", "sen_id": 229218}, {"caption": "a group of people are huddled up together", "video_id": "video10652", "sen_id": 229219}, {"caption": "a group of women dressed in beautiful garments dancing", "video_id": "video12333", "sen_id": 229220}, {"caption": "multiple women dressed in red shirts white skirts dancing together", "video_id": "video12333", "sen_id": 229221}, {"caption": "women in matching outfits doing a dance in unison", "video_id": "video12333", "sen_id": 229222}, {"caption": "some women are dancing uniformly to music", "video_id": "video12333", "sen_id": 229223}, {"caption": "a group of young women in costumes perform a traditional dance", "video_id": "video12333", "sen_id": 229224}, {"caption": "women in red shirts and white skirts do a dance from their culture", "video_id": "video12333", "sen_id": 229225}, {"caption": "women in pinks shirts doing a traditional indian dance", "video_id": "video12333", "sen_id": 229226}, {"caption": "women in skirts and red tops dance to a traditional and ethnic music", "video_id": "video12333", "sen_id": 229227}, {"caption": "a group of women in purple outfits and with long dark hair are dancing", "video_id": "video12333", "sen_id": 229228}, {"caption": "women in red shirts and white skirts are dancing", "video_id": "video12333", "sen_id": 229229}, {"caption": "women in red shirts white skirt and head bands on are doing a dance", "video_id": "video12333", "sen_id": 229230}, {"caption": "all woman s are dancing on the streets", "video_id": "video12333", "sen_id": 229231}, {"caption": "there are some people wearing different outfil and walking on streets", "video_id": "video12333", "sen_id": 229232}, {"caption": "the women dancers wearing red dresses are dancing in rhythm", "video_id": "video12333", "sen_id": 229233}, {"caption": "its a group dance done by the girls in pink dress they all have beautiful hair", "video_id": "video12333", "sen_id": 229234}, {"caption": "some tribal ladies are dancing their cultural dance", "video_id": "video12333", "sen_id": 229235}, {"caption": "there is someone dancing with a light music", "video_id": "video12333", "sen_id": 229236}, {"caption": "six group of ladys wearing same color dress and dancing", "video_id": "video12333", "sen_id": 229237}, {"caption": "multiple women are dancing a traditional dance outside", "video_id": "video12333", "sen_id": 229238}, {"caption": "the ladies were wearing same dress and dancing on the stage for the song", "video_id": "video12333", "sen_id": 229239}, {"caption": "a monitor that is playing a spartacus trailer", "video_id": "video10826", "sen_id": 229240}, {"caption": "ancient combat and fighting in a promo for spartacus the tv show", "video_id": "video10826", "sen_id": 229241}, {"caption": "a clip is shown of people fighting each other using axes and other weapons", "video_id": "video10826", "sen_id": 229242}, {"caption": "a flat screen has an advertising of a 1960 drama film thriller showing previews of the movie spartacus", "video_id": "video10826", "sen_id": 229243}, {"caption": "a man in roman attire fights with other men in a large arena", "video_id": "video10826", "sen_id": 229244}, {"caption": "several different men fly through the air in slow motion", "video_id": "video10826", "sen_id": 229245}, {"caption": "men battle and fight with swords in an arena", "video_id": "video10826", "sen_id": 229246}, {"caption": "two people fight with each other and one of them pushes the other fellow down", "video_id": "video10826", "sen_id": 229247}, {"caption": "several man fighting and one man claims to be spartacus", "video_id": "video10826", "sen_id": 229248}, {"caption": "person is hitting with great anger then he lifts man and throw him away", "video_id": "video10826", "sen_id": 229249}, {"caption": "men fight each other in various settings in a tv ad", "video_id": "video10826", "sen_id": 229250}, {"caption": "there is a man fighting against a force", "video_id": "video10826", "sen_id": 229251}, {"caption": "a fighting scene of a movie is playing on", "video_id": "video10826", "sen_id": 229252}, {"caption": "various scenes of men wearing skirts fighting with swords", "video_id": "video10826", "sen_id": 229253}, {"caption": "men fighting and one screaming i am spartacus", "video_id": "video10826", "sen_id": 229254}, {"caption": "there is a man with muscle throwing a person away", "video_id": "video10826", "sen_id": 229255}, {"caption": "the people in the video are fighting with each other", "video_id": "video10826", "sen_id": 229256}, {"caption": "a group of barbarian type men fight in arenas and in castle settings", "video_id": "video10826", "sen_id": 229257}, {"caption": "muscular men in roman-era clothing fight with swords and axes", "video_id": "video10826", "sen_id": 229258}, {"caption": "a tv screen that plays scenes from the movie spartacus on a brown background", "video_id": "video10826", "sen_id": 229259}, {"caption": "scenic footage from a large indoor track and field match", "video_id": "video12126", "sen_id": 229260}, {"caption": "a group of runners and other athletes train for the day", "video_id": "video12126", "sen_id": 229261}, {"caption": "people are running and working out and playing sports in an indoor stadium", "video_id": "video12126", "sen_id": 229262}, {"caption": "some people working out and doing different activities on a track and field area", "video_id": "video12126", "sen_id": 229263}, {"caption": "the inside of a large gymnasium with lots of people getting ready for a big event", "video_id": "video12126", "sen_id": 229264}, {"caption": "olympians are practicing running and ball hurling in a gymnasium", "video_id": "video12126", "sen_id": 229265}, {"caption": "an athletic even is going to take place and the players are getting ready for the event", "video_id": "video12126", "sen_id": 229266}, {"caption": "an indoor track and field event montage", "video_id": "video12126", "sen_id": 229267}, {"caption": "many people running walking and stretching in a large indoor athletics area", "video_id": "video12126", "sen_id": 229268}, {"caption": "sports such as gymnastics are being shown in a large arena", "video_id": "video12126", "sen_id": 229269}, {"caption": "there are some women running with friends", "video_id": "video12126", "sen_id": 229270}, {"caption": "an indoor track and field building athletes are prepared to compete", "video_id": "video12126", "sen_id": 229271}, {"caption": "a track with runners training and stretching preapring for a race", "video_id": "video12126", "sen_id": 229272}, {"caption": "a person is showing bunch of athlete training in the tracks", "video_id": "video12126", "sen_id": 229273}, {"caption": "some people in a building are doing sports", "video_id": "video12126", "sen_id": 229274}, {"caption": "people get ready and warm up on an indoor track", "video_id": "video12126", "sen_id": 229275}, {"caption": "a view of stadium where three athletes running on the track and a athelete practising shot put ball in nets", "video_id": "video12126", "sen_id": 229276}, {"caption": "people jog around a race track and practice other sports", "video_id": "video12126", "sen_id": 229277}, {"caption": "a group of people are competing at an indoor track", "video_id": "video12126", "sen_id": 229278}, {"caption": "some people in a gym are doing some stunts", "video_id": "video12126", "sen_id": 229279}, {"caption": "a person is kicking a ball at dummies in front of a soccer field in stop and go motion", "video_id": "video12040", "sen_id": 229280}, {"caption": "a method for accurately kicking a soccer ball is exemplified by a man in a black soccer uniform", "video_id": "video12040", "sen_id": 229281}, {"caption": "a man is examining the technique of a soccer player", "video_id": "video12040", "sen_id": 229282}, {"caption": "a soccer tutorial about how to aim and kick the soccer ball at any given target", "video_id": "video12040", "sen_id": 229283}, {"caption": "there is a football in all black showing how to kick a ball over five defenders made of cardboard", "video_id": "video12040", "sen_id": 229284}, {"caption": "a player in black t-shirt and black shorts is about to hit a football", "video_id": "video12040", "sen_id": 229285}, {"caption": "a man kicking a food ball in the ground", "video_id": "video12040", "sen_id": 229286}, {"caption": "a german man is narrating a man in a black soccer uniform praticing", "video_id": "video12040", "sen_id": 229287}, {"caption": "a man talking in german while you see a soccer player shooting at dummies on a soccer field", "video_id": "video12040", "sen_id": 229288}, {"caption": "a soccer player on a green field is kicking a ball towards a goal with cardboard goalies as part of practice", "video_id": "video12040", "sen_id": 229289}, {"caption": "there is a man practicing with a ball", "video_id": "video12040", "sen_id": 229290}, {"caption": "a soccer player is kicking a soccer ball over some fake human looking targets", "video_id": "video12040", "sen_id": 229291}, {"caption": "a man kicks a soccer ball past a wall of figures towards a goal", "video_id": "video12040", "sen_id": 229292}, {"caption": "man in black shirt is shooting a free kick", "video_id": "video12040", "sen_id": 229293}, {"caption": "a person in a black jersey is practicing a penality soccer kick", "video_id": "video12040", "sen_id": 229294}, {"caption": "a man wearing a black uniform and tall black socks is kicking the soccer ball to the net around an obstacle", "video_id": "video12040", "sen_id": 229295}, {"caption": "german speaker explaining how you should kick in soccer", "video_id": "video12040", "sen_id": 229296}, {"caption": "at the end your shooting leg can be infront of your standing leg", "video_id": "video12040", "sen_id": 229297}, {"caption": "a soccer player is demonstrating kicking techniques while someone narrates the process", "video_id": "video12040", "sen_id": 229298}, {"caption": "a person is taking the steps by legs to be land in a particular point", "video_id": "video12040", "sen_id": 229299}, {"caption": "a clip of girls modeling provocatively in underwear", "video_id": "video11209", "sen_id": 229300}, {"caption": "a woman moves and dances seductively to a smooth beat", "video_id": "video11209", "sen_id": 229301}, {"caption": "music video with a woman dancing very sexually", "video_id": "video11209", "sen_id": 229302}, {"caption": "women in the video are acting seductively and sitting", "video_id": "video11209", "sen_id": 229303}, {"caption": "a women in a bathing suit sitting on a plastic half sphere chair", "video_id": "video11209", "sen_id": 229304}, {"caption": "beautiful women pose suggestively in bikinis while looking at the camera", "video_id": "video11209", "sen_id": 229305}, {"caption": "a woman dancing and showing her body", "video_id": "video11209", "sen_id": 229306}, {"caption": "a sedutive model shows off her branded fashionable underwear", "video_id": "video11209", "sen_id": 229307}, {"caption": "fashion girl dancing and movement in different styles", "video_id": "video11209", "sen_id": 229308}, {"caption": "a girl posing for a picture taking in the room", "video_id": "video11209", "sen_id": 229309}, {"caption": "a woman in a half bowl is swinging around", "video_id": "video11209", "sen_id": 229310}, {"caption": "there is a hot lady dancing out side wearing black dress", "video_id": "video11209", "sen_id": 229311}, {"caption": "tori black wearing black boots models for black sexy underwear", "video_id": "video11209", "sen_id": 229312}, {"caption": "one sexy girl posing and makes a movement in", "video_id": "video11209", "sen_id": 229313}, {"caption": "a woman dances erotically in a bikini sitting in a hanging chair", "video_id": "video11209", "sen_id": 229314}, {"caption": "music is playing while a woman gesticulates around", "video_id": "video11209", "sen_id": 229315}, {"caption": "a woman in a bikini and knee-high boots dancing in a clear circle chair", "video_id": "video11209", "sen_id": 229316}, {"caption": "the beautyful women is presentin on a plastic ball their dress shape is amazing", "video_id": "video11209", "sen_id": 229317}, {"caption": "a girl wearing only bra and panties singing a song", "video_id": "video11209", "sen_id": 229318}, {"caption": "pornstar tori black is making some moves in a circle shaped swing", "video_id": "video11209", "sen_id": 229319}, {"caption": "a man with a receding hairline beard and moustache is sitting in a lab room talking about his student conclusions", "video_id": "video12545", "sen_id": 229320}, {"caption": "bruce van dayke is is speaking about teaching at his college", "video_id": "video12545", "sen_id": 229321}, {"caption": "bruce van dyke explains the importance of teaching bio-manufacturing and compliance", "video_id": "video12545", "sen_id": 229322}, {"caption": "a man with balding hair and a white beard sitting at a desk explains about students getting jobs in the bio manufacturing field", "video_id": "video12545", "sen_id": 229323}, {"caption": "a man in a gray shirt discusses the results of experiments he has conducted", "video_id": "video12545", "sen_id": 229324}, {"caption": "a man with gray hair and a blue shirt talks about education", "video_id": "video12545", "sen_id": 229325}, {"caption": "a man with a grey beard and a polo shirt sitting down talking", "video_id": "video12545", "sen_id": 229326}, {"caption": "a old man in grey shirt is saying something", "video_id": "video12545", "sen_id": 229327}, {"caption": "an expert talks the best way for students to get job is to learn bio manufacturer in compliness", "video_id": "video12545", "sen_id": 229328}, {"caption": "two men are having conversation in front of the computer", "video_id": "video12545", "sen_id": 229329}, {"caption": "a lecturer of quincy college gives a speech", "video_id": "video12545", "sen_id": 229330}, {"caption": "a old man talking in front of the camera", "video_id": "video12545", "sen_id": 229331}, {"caption": "a man having a conversation", "video_id": "video12545", "sen_id": 229332}, {"caption": "a man with a grey shirt and white beard is talking", "video_id": "video12545", "sen_id": 229333}, {"caption": "an old man in blue dress wearing with white dress man sitting beside a monitor screen and showing explaning", "video_id": "video12545", "sen_id": 229334}, {"caption": "old bearded guy in violet tshirt talking to the camera", "video_id": "video12545", "sen_id": 229335}, {"caption": "a blue tshirt man talking from the studio", "video_id": "video12545", "sen_id": 229336}, {"caption": "an elderly man by the name of bruce is speking about various topics", "video_id": "video12545", "sen_id": 229337}, {"caption": "an old man in white hair is speaking", "video_id": "video12545", "sen_id": 229338}, {"caption": "an instructor wearing a blue polo shirt is in an office setting discussing students learning bio manufactoring", "video_id": "video12545", "sen_id": 229339}, {"caption": "a man collapsing on the soccer field during a match", "video_id": "video11248", "sen_id": 229340}, {"caption": "a man collided with a barrier on a soccer field as teammates rushed to his side", "video_id": "video11248", "sen_id": 229341}, {"caption": "a man collapses during a soccer match in a very large stadium", "video_id": "video11248", "sen_id": 229342}, {"caption": "soccer players from opposing teams wearing blue or red uniforms run to check on a player who collided with a wall in front of spectators", "video_id": "video11248", "sen_id": 229343}, {"caption": "most of this tragic memorial shows a soccer player named hrvoje custic who collides with a concrete wall during a game and dies 5 days later in the hospital due to head injuries", "video_id": "video11248", "sen_id": 229344}, {"caption": "players practising some game in a play ground", "video_id": "video11248", "sen_id": 229345}, {"caption": "in a foot ball ground one of the player get sever injuriesso other players are in pathetic condition", "video_id": "video11248", "sen_id": 229346}, {"caption": "some players are playing foot ball game on a green grass ground", "video_id": "video11248", "sen_id": 229347}, {"caption": "hrvoje custic of the republic of croatia collided with a concrete wall during a game and died 5 days later", "video_id": "video11248", "sen_id": 229348}, {"caption": "a man playing soccer ran into a wall causing his unfortunate death", "video_id": "video11248", "sen_id": 229349}, {"caption": "a soccer team play the game one person is hurt on the ground", "video_id": "video11248", "sen_id": 229350}, {"caption": "a soccer field with players running to the player who had just collided with a cement wall the video explains he died 5 days later from his injuries", "video_id": "video11248", "sen_id": 229351}, {"caption": "a man on a hits a wall and gets hurt during a game", "video_id": "video11248", "sen_id": 229352}, {"caption": "two soccer teams are playing when one of the players collapses and dies", "video_id": "video11248", "sen_id": 229353}, {"caption": "an accident seen happening during a soccer game one person running into concrete wall", "video_id": "video11248", "sen_id": 229354}, {"caption": "the men in uniforms run and play on the scoccer field", "video_id": "video11248", "sen_id": 229355}, {"caption": "two accidents in soccer that resulted in deaths are shown on a t screen while the sound of soft piano music is being played in the background", "video_id": "video11248", "sen_id": 229356}, {"caption": "a soccer player runs into a concrete wall during a game and dies", "video_id": "video11248", "sen_id": 229357}, {"caption": "a red and blue dress color wearing t shirt players playing football game running in stadium audience watching displaying on screen", "video_id": "video11248", "sen_id": 229358}, {"caption": "a blue tshirt foot ball player got a hit of his opponent and faints", "video_id": "video11248", "sen_id": 229359}, {"caption": "a dog is wearing a crown and is looking in a mirror", "video_id": "video11055", "sen_id": 229360}, {"caption": "some woman describing american culture with a picture of a dog wearing a crown", "video_id": "video11055", "sen_id": 229361}, {"caption": "a small dog wearing a crown looks at itself in a small silver mirror", "video_id": "video11055", "sen_id": 229362}, {"caption": "a small brown dog wearing a crown looks at it's reflection in a small silver mirror", "video_id": "video11055", "sen_id": 229363}, {"caption": "a woman gives a lecture on high self-esteem using as an example a crown-wearing puppy looking at itself in a mirror", "video_id": "video11055", "sen_id": 229364}, {"caption": "a dog wears a crown as a woman discusses american culture", "video_id": "video11055", "sen_id": 229365}, {"caption": "there is a brief flash of a woman but then they show a dog with a pink crown looking into a mirror", "video_id": "video11055", "sen_id": 229366}, {"caption": "a puppy with a crown is staring into a mirror a woman you can't see begins talking about american culture", "video_id": "video11055", "sen_id": 229367}, {"caption": "a lion cub wearing a crown admires herself in a small mirror", "video_id": "video11055", "sen_id": 229368}, {"caption": "an overweight puppy wearing a crown sits facing a mirror", "video_id": "video11055", "sen_id": 229369}, {"caption": "a lion cub wearing a crown admires herself in a small mirror", "video_id": "video11055", "sen_id": 229370}, {"caption": "an animal is wearing a crown and a woman is talking about self-esteem", "video_id": "video11055", "sen_id": 229371}, {"caption": "a small puppy dog with a crown on his head looking at the mirror", "video_id": "video11055", "sen_id": 229372}, {"caption": "a picture of a dog staring into a mirror the dog is wearing a crown", "video_id": "video11055", "sen_id": 229373}, {"caption": "a puppy wearing a crown looks into a mirror while a female voice over talks about self-esteem", "video_id": "video11055", "sen_id": 229374}, {"caption": "small dog with a crown on its head in front of a small mirror", "video_id": "video11055", "sen_id": 229375}, {"caption": "a dog with a crown on its head stares into a mirror", "video_id": "video11055", "sen_id": 229376}, {"caption": "dog standing near mirror with crown placed on its head", "video_id": "video11055", "sen_id": 229377}, {"caption": "a woman giving good debate on american culture", "video_id": "video11055", "sen_id": 229378}, {"caption": "a dog is staring in to a mirror inside", "video_id": "video11055", "sen_id": 229379}, {"caption": "man gives commentary about a movie actor and roles he was given", "video_id": "video12038", "sen_id": 229380}, {"caption": "harrison ford shown in different roles from star wars and other roles", "video_id": "video12038", "sen_id": 229381}, {"caption": "a war scene a couple of antique cars road racing and an giant explosion", "video_id": "video12038", "sen_id": 229382}, {"caption": "harrison ford is shown in a number of his films while a man commentates", "video_id": "video12038", "sen_id": 229383}, {"caption": "war birds land tanks drive on the ground men are racing cars and explosions in a war movie", "video_id": "video12038", "sen_id": 229384}, {"caption": "an army tank shoots fire out of the barrel of its main gun", "video_id": "video12038", "sen_id": 229385}, {"caption": "man explains about a movie with harrison ford while trailer is being shown", "video_id": "video12038", "sen_id": 229386}, {"caption": "a guy is talking about the actor harrison ford and how he made his career in acting", "video_id": "video12038", "sen_id": 229387}, {"caption": "group of people are trying the firing from helicopter", "video_id": "video12038", "sen_id": 229388}, {"caption": "warships bombing bombs and three men discussing about war and a large number of helicopters are coming", "video_id": "video12038", "sen_id": 229389}, {"caption": "a war is going on some army personal are fightind and fire fighters are controlling fire", "video_id": "video12038", "sen_id": 229390}, {"caption": "big fire spread behind coconut trees very hardly", "video_id": "video12038", "sen_id": 229391}, {"caption": "on the war ground place various warriors are busy and the helicopters are flying", "video_id": "video12038", "sen_id": 229392}, {"caption": "bombings and conflicts are taking place on a road", "video_id": "video12038", "sen_id": 229393}, {"caption": "harrison ford drives an antique car in a movie set", "video_id": "video12038", "sen_id": 229394}, {"caption": "various video clips of harrison ford are being shown while his acting is discussed", "video_id": "video12038", "sen_id": 229395}, {"caption": "a shirtless man wearing a large brimmed hat squats low to the ground while soldiers carrying weapons are positioned around him and a helicopter flies by", "video_id": "video12038", "sen_id": 229396}, {"caption": "from a movie terror attacks and blasting fires", "video_id": "video12038", "sen_id": 229397}, {"caption": "soilders battle on the dirty sandy battlefield", "video_id": "video12038", "sen_id": 229398}, {"caption": "a scene from a movie shows people fighting a war", "video_id": "video12038", "sen_id": 229399}, {"caption": "some boys are playing basketball in the morning then the video cuts away to a living room", "video_id": "video10488", "sen_id": 229400}, {"caption": "three young boys play basketball in a city park", "video_id": "video10488", "sen_id": 229401}, {"caption": "several young men playing basketball on an outdoor court", "video_id": "video10488", "sen_id": 229402}, {"caption": "three boys playing basketball on the basketball court", "video_id": "video10488", "sen_id": 229403}, {"caption": "a group of young men playing basketball outdoor", "video_id": "video10488", "sen_id": 229404}, {"caption": "a group of three men playing basketball and then a cat runs out of a room", "video_id": "video10488", "sen_id": 229405}, {"caption": "woman narrates over a clip of a man playing basketball while she talks about her crush on him", "video_id": "video10488", "sen_id": 229406}, {"caption": "three boys playing basket ball is being talked about by a girl", "video_id": "video10488", "sen_id": 229407}, {"caption": "there are some kids playing basketball on an outdoor court followed by a white dog running through a light colored room", "video_id": "video10488", "sen_id": 229408}, {"caption": "three people are playing basketball game in open court", "video_id": "video10488", "sen_id": 229409}, {"caption": "a boy isplaying basketball with his co players a girl s vocice can be heard saying that one day she will build up her courage and say hi to him and say that he is a good basket ball player", "video_id": "video10488", "sen_id": 229410}, {"caption": "three basketbal players go at it in the neighborhod courts", "video_id": "video10488", "sen_id": 229411}, {"caption": "boys are playing basket ball in ground", "video_id": "video10488", "sen_id": 229412}, {"caption": "there is someone playing basket ball and enjoying", "video_id": "video10488", "sen_id": 229413}, {"caption": "a boys are playing a football and dog ran in the house", "video_id": "video10488", "sen_id": 229414}, {"caption": "three persons playing basket ball in basket ball ground next video one dog coming from room", "video_id": "video10488", "sen_id": 229415}, {"caption": "some people are playing with a dog in their house", "video_id": "video10488", "sen_id": 229416}, {"caption": "there is three boys playing basket ball and one of them get scored", "video_id": "video10488", "sen_id": 229417}, {"caption": "the rehersal of a basket ball players in the ground", "video_id": "video10488", "sen_id": 229418}, {"caption": "little boys palying basket ball in stadium", "video_id": "video10488", "sen_id": 229419}, {"caption": "disney movie titles being displayed with music on top of the video", "video_id": "video10551", "sen_id": 229420}, {"caption": "a montage of movie picture stills of famous box office movies hits", "video_id": "video10551", "sen_id": 229421}, {"caption": "a disney songs plays to pictures of disney movies", "video_id": "video10551", "sen_id": 229422}, {"caption": "a poster showing beauty and the beast in a dancing position transitioning to a poster of aladdin with the lamp being held and rubbed by a hand", "video_id": "video10551", "sen_id": 229423}, {"caption": "a woman singing in the background and a picture of aladdin", "video_id": "video10551", "sen_id": 229424}, {"caption": "the posters for disney's beauty and the beast and aladdin are shown", "video_id": "video10551", "sen_id": 229425}, {"caption": "the poster of two different movies is displayed", "video_id": "video10551", "sen_id": 229426}, {"caption": "disney s beauty and the beast and alladin cover being shown", "video_id": "video10551", "sen_id": 229427}, {"caption": "movie names displaying with song in the background", "video_id": "video10551", "sen_id": 229428}, {"caption": "various posters are shown for different disney films", "video_id": "video10551", "sen_id": 229429}, {"caption": "a song plays while a montage of disney film posters is shown", "video_id": "video10551", "sen_id": 229430}, {"caption": "promotional slide show of two walt disney movies beauty and the beast and aladdin", "video_id": "video10551", "sen_id": 229431}, {"caption": "beauty and the best then about alaadin lamb when we scratch helper come out", "video_id": "video10551", "sen_id": 229432}, {"caption": "disney makes unique and beautiful posters for two of their favorite movies", "video_id": "video10551", "sen_id": 229433}, {"caption": "walt disney has produced the movies aladdin and beauty and the beast", "video_id": "video10551", "sen_id": 229434}, {"caption": "there is a movie poster with a man", "video_id": "video10551", "sen_id": 229435}, {"caption": "a series of still images is presenting different movie titles from walt disney", "video_id": "video10551", "sen_id": 229436}, {"caption": "a person is singing the song about the aladdin", "video_id": "video10551", "sen_id": 229437}, {"caption": "the cover of two disney movies beauty and the beast and aladdin", "video_id": "video10551", "sen_id": 229438}, {"caption": "a dvd box art cover is being shown", "video_id": "video10551", "sen_id": 229439}, {"caption": "a mom and her baby are dancing in the living room", "video_id": "video11467", "sen_id": 229440}, {"caption": "a lady is dancing while holding a baby", "video_id": "video11467", "sen_id": 229441}, {"caption": "a woman in a black shirt holding a baby girl with her left arm dancing and swaying to music", "video_id": "video11467", "sen_id": 229442}, {"caption": "a women in black dress dancing with a baby", "video_id": "video11467", "sen_id": 229443}, {"caption": "a women in black dress holding a baby in hall and dancing", "video_id": "video11467", "sen_id": 229444}, {"caption": "a person wearing a black shirt and holding a baby and dancing", "video_id": "video11467", "sen_id": 229445}, {"caption": "a woman with a short bob wearing jeans dances with her little baby", "video_id": "video11467", "sen_id": 229446}, {"caption": "a woman is holding a baby and dancing around", "video_id": "video11467", "sen_id": 229447}, {"caption": "there is a women dancing with her baby", "video_id": "video11467", "sen_id": 229448}, {"caption": "one beautiful women dancing with a child for a music", "video_id": "video11467", "sen_id": 229449}, {"caption": "a woman dancing in a living room whilst holding onto a baby", "video_id": "video11467", "sen_id": 229450}, {"caption": "a women in black t shirt holding her baby on his hand and dancing near the sofa", "video_id": "video11467", "sen_id": 229451}, {"caption": "mother and son dancing on the beat of a song", "video_id": "video11467", "sen_id": 229452}, {"caption": "a mom is dancing crazy with her baby in her hand", "video_id": "video11467", "sen_id": 229453}, {"caption": "a female dancing for a song with a baby in her hand", "video_id": "video11467", "sen_id": 229454}, {"caption": "a women in black top and paint holding the baby in green dress dancing in the house", "video_id": "video11467", "sen_id": 229455}, {"caption": "a woman in a black shirt and jeans dancing to music with a baby in her arms", "video_id": "video11467", "sen_id": 229456}, {"caption": "a woman is holding a baby and dancing", "video_id": "video11467", "sen_id": 229457}, {"caption": "the beautiful girl in black dress is singing and dancing carrying a baby in her hands", "video_id": "video11467", "sen_id": 229458}, {"caption": "a woman is dancing around with a little baby", "video_id": "video11467", "sen_id": 229459}, {"caption": "a person is talking about all of their ingredients for the dish", "video_id": "video12168", "sen_id": 229460}, {"caption": "a person in a kitchen with ingredients for fried rice on a counter", "video_id": "video12168", "sen_id": 229461}, {"caption": "a man talks about vegetable fried rice as he shows the ingredients", "video_id": "video12168", "sen_id": 229462}, {"caption": "a person stands in a kitchen while pointing at bowls of food items", "video_id": "video12168", "sen_id": 229463}, {"caption": "a woman stands in a kitchen pointing at bowls filled with ingredients for a meal", "video_id": "video12168", "sen_id": 229464}, {"caption": "a man shows ingredients for vegetable fried rice including rice eggs mixed vegetables and green onions", "video_id": "video12168", "sen_id": 229465}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video12168", "sen_id": 229466}, {"caption": "there is someone explain about a recipe", "video_id": "video12168", "sen_id": 229467}, {"caption": "in the kitchen the chef is telling the vegetable fried rice and the other materials are in the stand", "video_id": "video12168", "sen_id": 229468}, {"caption": "an inhome chef demonstrates and describes a fried rice recipe", "video_id": "video12168", "sen_id": 229469}, {"caption": "in a kitchen lady describing to make vegetable fried rice and ingredients of rice mix vegetable green onion and egg on white bowls", "video_id": "video12168", "sen_id": 229470}, {"caption": "man is cooking fried rices with vegetables and is in the process of showcasing the ingredients", "video_id": "video12168", "sen_id": 229471}, {"caption": "a lady preparing some chinese style dish in the home", "video_id": "video12168", "sen_id": 229472}, {"caption": "a man shows the beginnings of how to make vegetable fried rice", "video_id": "video12168", "sen_id": 229473}, {"caption": "a person is about to make vegetable fried rice and is showing the viewer the necessary ingredients", "video_id": "video12168", "sen_id": 229474}, {"caption": "a person is preparing food item in a fry bowl", "video_id": "video12168", "sen_id": 229475}, {"caption": "the person talks about the ingredients in the white dishes", "video_id": "video12168", "sen_id": 229476}, {"caption": "how to make fried rice with the ingredients", "video_id": "video12168", "sen_id": 229477}, {"caption": "women in a white shirt showing the ingredients for a recipe", "video_id": "video12168", "sen_id": 229478}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video12168", "sen_id": 229479}, {"caption": "a man uses a glue stick to smear glue all over a blue piece of paper", "video_id": "video10643", "sen_id": 229480}, {"caption": "a man is talking about something being factory stretched while putting glue onto a blue paper", "video_id": "video10643", "sen_id": 229481}, {"caption": "a man in a gray shirt is applying glue to a blue piece of paper", "video_id": "video10643", "sen_id": 229482}, {"caption": "a man in a grey sweater glue blue paper", "video_id": "video10643", "sen_id": 229483}, {"caption": "someone explaining how to glue together blue building material", "video_id": "video10643", "sen_id": 229484}, {"caption": "a man glues two pieces of blue fabric", "video_id": "video10643", "sen_id": 229485}, {"caption": "there is a making a product on the table", "video_id": "video10643", "sen_id": 229486}, {"caption": "a guy talking about glueing things to other things", "video_id": "video10643", "sen_id": 229487}, {"caption": "a man rubbing a glue on a paper pad", "video_id": "video10643", "sen_id": 229488}, {"caption": "a man is applying some paste on a blue square while describing that they will shrink once you pull them off their container because they are factory stretched", "video_id": "video10643", "sen_id": 229489}, {"caption": "a man is glueing the rubber padding for a pingpong paddle", "video_id": "video10643", "sen_id": 229490}, {"caption": "a person sitting at a table and applies gum on blue object", "video_id": "video10643", "sen_id": 229491}, {"caption": "a man sitting at a table demonstrates how to apply glue on a project", "video_id": "video10643", "sen_id": 229492}, {"caption": "a guy preparing some kind of fabric with a glue stick", "video_id": "video10643", "sen_id": 229493}, {"caption": "a man is demonstrating how to apply glue to a sheet", "video_id": "video10643", "sen_id": 229494}, {"caption": "a man is working on a wood project adding glue to the back of a picture", "video_id": "video10643", "sen_id": 229495}, {"caption": "a man works on a craft project by applying glue to a blue surface", "video_id": "video10643", "sen_id": 229496}, {"caption": "a man is sitting and applying glue on a blue poster", "video_id": "video10643", "sen_id": 229497}, {"caption": "demostration of applying the proper strokes of glue to the blue board", "video_id": "video10643", "sen_id": 229498}, {"caption": "a person is using glue on some blue paper", "video_id": "video10643", "sen_id": 229499}, {"caption": "an subscription page for episode of the dc comics", "video_id": "video11139", "sen_id": 229500}, {"caption": "a man grabs another mans face and shoot electricity through it", "video_id": "video11139", "sen_id": 229501}, {"caption": "someone falling in a city and a robot shocking another robot", "video_id": "video11139", "sen_id": 229502}, {"caption": "a person demonstrates and describes a video game they are playing", "video_id": "video11139", "sen_id": 229503}, {"caption": "various video game characters fight and race near a picture of batman", "video_id": "video11139", "sen_id": 229504}, {"caption": "music is played in the background while several video games are being shown on screen while an image of batman is on the left side all the time", "video_id": "video11139", "sen_id": 229505}, {"caption": "batman stands next to a video showing various sci-fi and fantasy characters", "video_id": "video11139", "sen_id": 229506}, {"caption": "a twitch streamer reveals an outro video featuring multiple video game segments", "video_id": "video11139", "sen_id": 229507}, {"caption": "home made video review of an action video game", "video_id": "video11139", "sen_id": 229508}, {"caption": "a video game is being played in the right hand corner of the screen", "video_id": "video11139", "sen_id": 229509}, {"caption": "the conclusion of a video game review is shown along with the contact information of the author of the video", "video_id": "video11139", "sen_id": 229510}, {"caption": "there is a person playing video game on tv screen", "video_id": "video11139", "sen_id": 229511}, {"caption": "a joker shoots a gun various games plays while a mask man stands to the left of the screen", "video_id": "video11139", "sen_id": 229512}, {"caption": "some cruel animation video is going on", "video_id": "video11139", "sen_id": 229513}, {"caption": "there is a muscle man with a mask", "video_id": "video11139", "sen_id": 229514}, {"caption": "a fan page of a comic characters with background music playing continuously", "video_id": "video11139", "sen_id": 229515}, {"caption": "a conclusion of a youtube video showcases many video games and popular comic characters", "video_id": "video11139", "sen_id": 229516}, {"caption": "a comics movie is playing on the screen", "video_id": "video11139", "sen_id": 229517}, {"caption": "a cartoon video game firing arrow throwing poking to dolls displaying on screen", "video_id": "video11139", "sen_id": 229518}, {"caption": "a video of a character is next to bat man", "video_id": "video11139", "sen_id": 229519}, {"caption": "a man and woman are singing while a woman explains the scene", "video_id": "video10953", "sen_id": 229520}, {"caption": "an actress discusses her work in movie she once", "video_id": "video10953", "sen_id": 229521}, {"caption": "a girl and a boy sing on a small stage while a blond woman is interviewed", "video_id": "video10953", "sen_id": 229522}, {"caption": "a man and woman sing in a cafe", "video_id": "video10953", "sen_id": 229523}, {"caption": "a man and a lady play guitar and sing on a stage before a man walks to a crying lady outside", "video_id": "video10953", "sen_id": 229524}, {"caption": "a woman and a man conversing at different times together", "video_id": "video10953", "sen_id": 229525}, {"caption": "a man is playing a guitar and singing and a woman is singing with him", "video_id": "video10953", "sen_id": 229526}, {"caption": "a women in black top is performing in a stage with another person", "video_id": "video10953", "sen_id": 229527}, {"caption": "there is a woman singing a song with his friend", "video_id": "video10953", "sen_id": 229528}, {"caption": "the woman is singing while the man is playing guitar in the room in front of people", "video_id": "video10953", "sen_id": 229529}, {"caption": "a woman is speaking about a tv series while clips are shown", "video_id": "video10953", "sen_id": 229530}, {"caption": "a female actress talks about the casting decisions for a show she is on", "video_id": "video10953", "sen_id": 229531}, {"caption": "a women in black dress talking from her house", "video_id": "video10953", "sen_id": 229532}, {"caption": "a man and a woman singing on stage in a coffee shop with a woman in a black dress speaks", "video_id": "video10953", "sen_id": 229533}, {"caption": "a man playing a guitar and a girl singing for it", "video_id": "video10953", "sen_id": 229534}, {"caption": "a heavy set woman discusses her friend who is a singer", "video_id": "video10953", "sen_id": 229535}, {"caption": "a man and woman outside are talking", "video_id": "video10953", "sen_id": 229536}, {"caption": "there is a black dressing women talking from a room", "video_id": "video10953", "sen_id": 229537}, {"caption": "an album song a girl singing a song with a guy", "video_id": "video10953", "sen_id": 229538}, {"caption": "a person is playing music for a girl sitting there in restaurant", "video_id": "video10953", "sen_id": 229539}, {"caption": "a man is hosting a cooking show and making food", "video_id": "video12939", "sen_id": 229540}, {"caption": "man in a pink dress shirt cooking small items on a black fry pan", "video_id": "video12939", "sen_id": 229541}, {"caption": "a middle eastern man cooking some appetizers on a frying pan", "video_id": "video12939", "sen_id": 229542}, {"caption": "a man with a spatula stirs the food in the pan", "video_id": "video12939", "sen_id": 229543}, {"caption": "a man in a show kitchen prepares a meal using lemon", "video_id": "video12939", "sen_id": 229544}, {"caption": "a man in a pink shirt cooking in a kitchen", "video_id": "video12939", "sen_id": 229545}, {"caption": "a man in rose preparing and explaining fried dish", "video_id": "video12939", "sen_id": 229546}, {"caption": "a man in a pink shirt is in a kitchen using the frying pan", "video_id": "video12939", "sen_id": 229547}, {"caption": "an asian man in pink sautes shrimp in large red kitchen built for a cooking show", "video_id": "video12939", "sen_id": 229548}, {"caption": "it is a man cooking on top of a stove in a kitchen", "video_id": "video12939", "sen_id": 229549}, {"caption": "a guy in blue shirt frying something in pan and preparing a dish in the kitchen", "video_id": "video12939", "sen_id": 229550}, {"caption": "a man is standing in the kitchen cooking", "video_id": "video12939", "sen_id": 229551}, {"caption": "a man standing in a kitchen on tv show cooking he has black hair and a pink shirt", "video_id": "video12939", "sen_id": 229552}, {"caption": "its cooking show in which the chef cooks prawn then he cuts using wooden board", "video_id": "video12939", "sen_id": 229553}, {"caption": "a man in a kitchen cooks food in a pan", "video_id": "video12939", "sen_id": 229554}, {"caption": "man in kitchen studio preparing shrimp in a pan and beginning to cut vegetable on cutting board", "video_id": "video12939", "sen_id": 229555}, {"caption": "sanjeev kumar s show khana kazana instructing how to cook shrimp", "video_id": "video12939", "sen_id": 229556}, {"caption": "someone is cooking in a kitchen in a frying pan", "video_id": "video12939", "sen_id": 229557}, {"caption": "a man inside kitchen pan frying mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12939", "sen_id": 229558}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12939", "sen_id": 229559}, {"caption": "an asian restaurant is shown and is empty", "video_id": "video11993", "sen_id": 229560}, {"caption": "two men discuss the menu of a restaurant as you see a panormic view of the seating", "video_id": "video11993", "sen_id": 229561}, {"caption": "a restaurant is shown to be empty with the exeption of two people", "video_id": "video11993", "sen_id": 229562}, {"caption": "the interior of a resturant is shown with brown chairs and a brown wall featuring aqua colored placemats", "video_id": "video11993", "sen_id": 229563}, {"caption": "two men sitting at a table and having a conversation", "video_id": "video11993", "sen_id": 229564}, {"caption": "{}", "video_id": "video11993", "sen_id": 229565}, {"caption": "a small caf has outdoor seating between trellis partitions decorated with plants an orange board lists the menu in white lettering and two men chat at a table with blue-and-white placemats by pictures", "video_id": "video11993", "sen_id": 229566}, {"caption": "a restaurant being shown and an interview with two men being done", "video_id": "video11993", "sen_id": 229567}, {"caption": "two men sitting at the table having a conversation", "video_id": "video11993", "sen_id": 229568}, {"caption": "a young man wearing eyeglasses sits in a corner behind a table and speaks directly to a man wearing a tan suit sitting next to him", "video_id": "video11993", "sen_id": 229569}, {"caption": "two men discuss a restaurant that they are sitting in", "video_id": "video11993", "sen_id": 229570}, {"caption": "a two boys sitting and speaking chairs elephant on table displaying", "video_id": "video11993", "sen_id": 229571}, {"caption": "a two guys with black and brown dress are talking something in a hotel", "video_id": "video11993", "sen_id": 229572}, {"caption": "a beautiful clean and cosy place to eat", "video_id": "video11993", "sen_id": 229573}, {"caption": "sai two man in restaurant talking about foods", "video_id": "video11993", "sen_id": 229574}, {"caption": "this is a restaurant where tables and chairs are set and menu card is displayed", "video_id": "video11993", "sen_id": 229575}, {"caption": "a couple of people are sitting at a table", "video_id": "video11993", "sen_id": 229576}, {"caption": "a camera spans over a workshop before focusing on two men", "video_id": "video11993", "sen_id": 229577}, {"caption": "two asian men discuss a restaurant and the menu", "video_id": "video11993", "sen_id": 229578}, {"caption": "a tables and chairs and two guys sitting and speaking displaying on screen", "video_id": "video11993", "sen_id": 229579}, {"caption": "a man wearing athletic gear is talking to the interviewer", "video_id": "video10838", "sen_id": 229580}, {"caption": "older man in a black sweater describing his admiration for an athlete", "video_id": "video10838", "sen_id": 229581}, {"caption": "an older african athlete is interviewed about his career and life", "video_id": "video10838", "sen_id": 229582}, {"caption": "there are feet followed by a man in a dark blue jacket speaking", "video_id": "video10838", "sen_id": 229583}, {"caption": "there is a coach explains something much important", "video_id": "video10838", "sen_id": 229584}, {"caption": "the famous coach telling their experience in the profession", "video_id": "video10838", "sen_id": 229585}, {"caption": "a dark skin bald man with black dress dress is speaking", "video_id": "video10838", "sen_id": 229586}, {"caption": "a black man talking about himself and track", "video_id": "video10838", "sen_id": 229587}, {"caption": "a men in blue tshirt and no hair on his head talking", "video_id": "video10838", "sen_id": 229588}, {"caption": "man in black jacket speaking to the camera about sports", "video_id": "video10838", "sen_id": 229589}, {"caption": "an african man talks about his time coaching track and field at a college", "video_id": "video10838", "sen_id": 229590}, {"caption": "a old man in blue dress speaking standing and man ready to run", "video_id": "video10838", "sen_id": 229591}, {"caption": "a man with a jacket is talking about some thing", "video_id": "video10838", "sen_id": 229592}, {"caption": "a sports men telling his experience running in the track", "video_id": "video10838", "sen_id": 229593}, {"caption": "man has cat eyes talks in front of the camera he wear the blue dress", "video_id": "video10838", "sen_id": 229594}, {"caption": "the dark man in black and white dress is telling us about a something", "video_id": "video10838", "sen_id": 229595}, {"caption": "a man wearing blue color dress talikng", "video_id": "video10838", "sen_id": 229596}, {"caption": "alonzo webb men s track head coach talking about", "video_id": "video10838", "sen_id": 229597}, {"caption": "a man in a track suit jacket talks about why he likes the school he coaches at", "video_id": "video10838", "sen_id": 229598}, {"caption": "the runner gave tips and advice about his particular style of running", "video_id": "video10838", "sen_id": 229599}, {"caption": "a woman is being interviewed about a dress on tv", "video_id": "video11940", "sen_id": 229600}, {"caption": "a news reporter talks about fashion as she stands in front of a rack of dresses", "video_id": "video11940", "sen_id": 229601}, {"caption": "a fashion reporter talks about a new dress design that has become popular", "video_id": "video11940", "sen_id": 229602}, {"caption": "a woman wearing a black and blue dress is sitting in a chair surrounded by dresses", "video_id": "video11940", "sen_id": 229603}, {"caption": "a woman in a news studio is interviewing another woman in another location with clothing the woman being interviewed is sitting in front of two mannequins and she's talking about the dresses", "video_id": "video11940", "sen_id": 229604}, {"caption": "a woman speaking about the latest dressing in an interview", "video_id": "video11940", "sen_id": 229605}, {"caption": "a women in blue dress is telling news report", "video_id": "video11940", "sen_id": 229606}, {"caption": "a woman talks about clothes next to a lot of clothing racks", "video_id": "video11940", "sen_id": 229607}, {"caption": "a female news anchor speaks to the camera for a news segment", "video_id": "video11940", "sen_id": 229608}, {"caption": "a fashion designer is talking to the news anchor while sitting in her boutique", "video_id": "video11940", "sen_id": 229609}, {"caption": "a women in blue dressing talking from a shop", "video_id": "video11940", "sen_id": 229610}, {"caption": "there is a women in blue top telling news", "video_id": "video11940", "sen_id": 229611}, {"caption": "a woman in a blue dress is sitting in a room full of dresses", "video_id": "video11940", "sen_id": 229612}, {"caption": "the woman talks about a popular piece of clothing", "video_id": "video11940", "sen_id": 229613}, {"caption": "an asian women in her boutique is talking to a news anchor", "video_id": "video11940", "sen_id": 229614}, {"caption": "a women with sweet smile talking from a textile", "video_id": "video11940", "sen_id": 229615}, {"caption": "lady is nice fashion cloth talking about new trends in fashion", "video_id": "video11940", "sen_id": 229616}, {"caption": "sky news tonight debate over the colour of the dress has", "video_id": "video11940", "sen_id": 229617}, {"caption": "a woman in shop talking about clothes", "video_id": "video11940", "sen_id": 229618}, {"caption": "a woman on a newscast talking in a clothing store", "video_id": "video11940", "sen_id": 229619}, {"caption": "a woman from india talks as she measures ingredients for a sauce", "video_id": "video12310", "sen_id": 229620}, {"caption": "a woman wearing a dress is adding spice to a boiling black pot", "video_id": "video12310", "sen_id": 229621}, {"caption": "preparing a traditional indian dish with delectable spices and seasonings", "video_id": "video12310", "sen_id": 229622}, {"caption": "an indian lady is mixing spices in a pot of sauce which is cooking on a stove", "video_id": "video12310", "sen_id": 229623}, {"caption": "an indian woman in the kitchen adding spices to curry she is cooking", "video_id": "video12310", "sen_id": 229624}, {"caption": "an indian woman is showing how to make a regional dish", "video_id": "video12310", "sen_id": 229625}, {"caption": "a woman is adding ingredients in a pot and stirring them", "video_id": "video12310", "sen_id": 229626}, {"caption": "one women make a recipe in garam masala coriander power", "video_id": "video12310", "sen_id": 229627}, {"caption": "a woman describes what she is doing as she cooks curry in her kitchen", "video_id": "video12310", "sen_id": 229628}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video12310", "sen_id": 229629}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12310", "sen_id": 229630}, {"caption": "the woman in the indian attire talks as she cooks the food", "video_id": "video12310", "sen_id": 229631}, {"caption": "an indian woman shows preparation steps for a red curry dish", "video_id": "video12310", "sen_id": 229632}, {"caption": "a lady ls pouring some intrigrans in a bowl for preparing a dish", "video_id": "video12310", "sen_id": 229633}, {"caption": "a person in a red shirt is cooking food", "video_id": "video12310", "sen_id": 229634}, {"caption": "here the women in her kitchen is preparing a dish where she is adding a spices in to it", "video_id": "video12310", "sen_id": 229635}, {"caption": "a lady is cooking a dish in her kitchen she adding the ingredients one by one and telling us what she is adding", "video_id": "video12310", "sen_id": 229636}, {"caption": "an inhome indian chef adds spice to a recipe she is working on in her kitchen", "video_id": "video12310", "sen_id": 229637}, {"caption": "an indian woman demonstrates a recipe full of different spices", "video_id": "video12310", "sen_id": 229638}, {"caption": "a person is making some food in a kitchen", "video_id": "video12310", "sen_id": 229639}, {"caption": "a person is driving very reckless up a dirt road in a sport utility vehicle", "video_id": "video11097", "sen_id": 229640}, {"caption": "a car is skidding up the poorly constructed path", "video_id": "video11097", "sen_id": 229641}, {"caption": "there is a bad ass stainwagon taking on a big ruff hill", "video_id": "video11097", "sen_id": 229642}, {"caption": "a car speeds up a hill in a forested area", "video_id": "video11097", "sen_id": 229643}, {"caption": "people are driving around an older station wagon off road", "video_id": "video11097", "sen_id": 229644}, {"caption": "a car driving down a dirt road then up a road on a hill", "video_id": "video11097", "sen_id": 229645}, {"caption": "a car speeding on a dirt road up a hill between trees and grass", "video_id": "video11097", "sen_id": 229646}, {"caption": "the jeep go fast and move forward to the hill top", "video_id": "video11097", "sen_id": 229647}, {"caption": "a car is driving on a dirt road and then turns to drive up a small path on a mountain", "video_id": "video11097", "sen_id": 229648}, {"caption": "a car runs fast in the mountain area and it emits pollution", "video_id": "video11097", "sen_id": 229649}, {"caption": "off road vehicles riding around on dirt roads", "video_id": "video11097", "sen_id": 229650}, {"caption": "there is a car moving in to the top of the hill", "video_id": "video11097", "sen_id": 229651}, {"caption": "a car is offroading through a rural area on an unpaved road", "video_id": "video11097", "sen_id": 229652}, {"caption": "a car is driven very fast down a narrow road", "video_id": "video11097", "sen_id": 229653}, {"caption": "a car riding down a dirt trail through the woods", "video_id": "video11097", "sen_id": 229654}, {"caption": "a station wagon type vehicle is riding down a steep dirt road through trees and brush", "video_id": "video11097", "sen_id": 229655}, {"caption": "a small car races up and down a dirt road", "video_id": "video11097", "sen_id": 229656}, {"caption": "a car is running on a road passing the forest", "video_id": "video11097", "sen_id": 229657}, {"caption": "a man drives a very fast station wagon up a rough dirt road on a hill", "video_id": "video11097", "sen_id": 229658}, {"caption": "a car is driving around out side in the dirt", "video_id": "video11097", "sen_id": 229659}, {"caption": "a monkey is eating the vegetables from someone's salad", "video_id": "video10242", "sen_id": 229660}, {"caption": "a monkey eating a salad on a table", "video_id": "video10242", "sen_id": 229661}, {"caption": "a monkey sits on a desk and eats green vegetables from a plate", "video_id": "video10242", "sen_id": 229662}, {"caption": "a monkey eating a salad on top of a desk by a keyboard", "video_id": "video10242", "sen_id": 229663}, {"caption": "a monkey seated on a desk in front of a computer taking and eating pieces of salad from a plate also on the desk", "video_id": "video10242", "sen_id": 229664}, {"caption": "a monkey standing on a keyboard is eating vegetables", "video_id": "video10242", "sen_id": 229665}, {"caption": "a small monkey eating food from a container on a desk", "video_id": "video10242", "sen_id": 229666}, {"caption": "a monkey eating leafy greens on top of a computer keyboard", "video_id": "video10242", "sen_id": 229667}, {"caption": "a monkey eats a leafy green vegetable type of food from a person s food tray", "video_id": "video10242", "sen_id": 229668}, {"caption": "a ape is eating some greenish leaves sitting on a computer keyboard then take noodles and eat neaby a paper tumbler is kept", "video_id": "video10242", "sen_id": 229669}, {"caption": "small brown and white monkey on a desk eating", "video_id": "video10242", "sen_id": 229670}, {"caption": "a monkey eats leafy vegtables", "video_id": "video10242", "sen_id": 229671}, {"caption": "a baby monkey samples food from a dish on a computer desk", "video_id": "video10242", "sen_id": 229672}, {"caption": "a monkey sits by the computer and eats some food", "video_id": "video10242", "sen_id": 229673}, {"caption": "very cute video of a small monkey sitting on a desk with his left foot on a keyboard while eating out of a salad dish", "video_id": "video10242", "sen_id": 229674}, {"caption": "a vacation or amateur video of a monkey eating asian food setting on a desk", "video_id": "video10242", "sen_id": 229675}, {"caption": "a monkey is eating green vegetables in the home", "video_id": "video10242", "sen_id": 229676}, {"caption": "a monkey sitting eating dish plate beside and computer beside displaying on screen", "video_id": "video10242", "sen_id": 229677}, {"caption": "a little monkey eating vegetables on a desktop computer", "video_id": "video10242", "sen_id": 229678}, {"caption": "small monkey eating someones lunch while sitting at a desk", "video_id": "video10242", "sen_id": 229679}, {"caption": "a red car is being driven across the wet track", "video_id": "video11034", "sen_id": 229680}, {"caption": "a car is being driven to show how well it handles with suspension and control", "video_id": "video11034", "sen_id": 229681}, {"caption": "the driver of a red car curves on a paved surface made slick with rain and skids beside a barrier of tires before regaining some sense of control", "video_id": "video11034", "sen_id": 229682}, {"caption": "a british man talks about how the car company had to weigh down the engine of the car while the car races on a wet track", "video_id": "video11034", "sen_id": 229683}, {"caption": "a person is driving a red car very fast in the rain on a race track", "video_id": "video11034", "sen_id": 229684}, {"caption": "a red car is moving fast in an empty road", "video_id": "video11034", "sen_id": 229685}, {"caption": "a men explainging car is displayed with its features", "video_id": "video11034", "sen_id": 229686}, {"caption": "bbc world news one man talks about new car", "video_id": "video11034", "sen_id": 229687}, {"caption": "a car in red is driven on the road and the road is wetthe car goes fast", "video_id": "video11034", "sen_id": 229688}, {"caption": "a red colour car moving on road in rain turning fast on screen", "video_id": "video11034", "sen_id": 229689}, {"caption": "there is a red car riding on the road", "video_id": "video11034", "sen_id": 229690}, {"caption": "a red car drives on the ice in cold weather", "video_id": "video11034", "sen_id": 229691}, {"caption": "an advertisement about a car travelling on the road", "video_id": "video11034", "sen_id": 229692}, {"caption": "red car driven fast on the wet road its in red color", "video_id": "video11034", "sen_id": 229693}, {"caption": "a car is red and driving around outside", "video_id": "video11034", "sen_id": 229694}, {"caption": "a red car driving the highway in the rain", "video_id": "video11034", "sen_id": 229695}, {"caption": "this is add and demonstration of new model car", "video_id": "video11034", "sen_id": 229696}, {"caption": "a man discusses the suspension improvements in an expensive sports car", "video_id": "video11034", "sen_id": 229697}, {"caption": "a red car swerves into the side of a road and drifts", "video_id": "video11034", "sen_id": 229698}, {"caption": "a car outdoors is driving around the snow", "video_id": "video11034", "sen_id": 229699}, {"caption": "a family trying to get on a train during a frenzy", "video_id": "video10714", "sen_id": 229700}, {"caption": "people rushing a train pleading for the doors to be opened two men pleading to get into a moving train", "video_id": "video10714", "sen_id": 229701}, {"caption": "a young man woman and their baby -- possible indian -- try to board a train with other people escaping an uprising but the others close the door on the train in fear", "video_id": "video10714", "sen_id": 229702}, {"caption": "video of man throwing a grenade and a crowd of people climbing onto a train", "video_id": "video10714", "sen_id": 229703}, {"caption": "people in a movie run around while gunshots are being fired and they cannot get in an automobile", "video_id": "video10714", "sen_id": 229704}, {"caption": "a lot of people are running into a train but a man and a woman gets locked behind", "video_id": "video10714", "sen_id": 229705}, {"caption": "two persons are running and trying to open the door", "video_id": "video10714", "sen_id": 229706}, {"caption": "two chinese people furiously attempt to get inside a moving train", "video_id": "video10714", "sen_id": 229707}, {"caption": "a man shouts from outside a train asking the insiders to open the door to let the lady in during a riotous situation", "video_id": "video10714", "sen_id": 229708}, {"caption": "people are running and climbing on a train", "video_id": "video10714", "sen_id": 229709}, {"caption": "two people running toward the train with some following them", "video_id": "video10714", "sen_id": 229710}, {"caption": "a man woman and child are banging on a bus to get on it for safety and then the bus has stopped for them to get on it", "video_id": "video10714", "sen_id": 229711}, {"caption": "a bunch of people trying to board a moving train and a few people can t get to the train in time", "video_id": "video10714", "sen_id": 229712}, {"caption": "train on track lady and boy try to get into train but everybody closed door", "video_id": "video10714", "sen_id": 229713}, {"caption": "a bunch of people are running away from other people trying to kill them", "video_id": "video10714", "sen_id": 229714}, {"caption": "people are scrambling frantically to board a train while others attempt to assault them", "video_id": "video10714", "sen_id": 229715}, {"caption": "the people run and jump up at the train as it leaves", "video_id": "video10714", "sen_id": 229716}, {"caption": "a group of indian people try to board a train to get away from a battle", "video_id": "video10714", "sen_id": 229717}, {"caption": "several people run from explosions and try to board a train", "video_id": "video10714", "sen_id": 229718}, {"caption": "people run from explosions and try to board a train", "video_id": "video10714", "sen_id": 229719}, {"caption": "a group of men are walking on the track", "video_id": "video12529", "sen_id": 229720}, {"caption": "a man talking about the ncaa finals while going through clips of many people in the area", "video_id": "video12529", "sen_id": 229721}, {"caption": "various track athletes warm up for a championship", "video_id": "video12529", "sen_id": 229722}, {"caption": "a man in a blue shirt walking and describing an upcoming sporting event", "video_id": "video12529", "sen_id": 229723}, {"caption": "athletes prepare in front of a crowd for a track championship", "video_id": "video12529", "sen_id": 229724}, {"caption": "a group of students running in an college event", "video_id": "video12529", "sen_id": 229725}, {"caption": "a man wearing a light blue checkered shirt is talking about some young canadien track athletes", "video_id": "video12529", "sen_id": 229726}, {"caption": "a sports reporter does a report on a major track and field championship", "video_id": "video12529", "sen_id": 229727}, {"caption": "track athletes walk along field and host talks about upcoming athletes", "video_id": "video12529", "sen_id": 229728}, {"caption": "sentence 1: a us track and filed championship happening with lots of canadian and others are participating in it", "video_id": "video12529", "sen_id": 229729}, {"caption": "men wearing red jackets and backpacks are walking through an opening in a fence", "video_id": "video12529", "sen_id": 229730}, {"caption": "a track and field team is prepared a big track and field competition", "video_id": "video12529", "sen_id": 229731}, {"caption": "a man is at the ncaa finals and speaks about how more canadians are now involved in this american event", "video_id": "video12529", "sen_id": 229732}, {"caption": "at a u university track field with bystanders and runners", "video_id": "video12529", "sen_id": 229733}, {"caption": "some people are talking and walking around", "video_id": "video12529", "sen_id": 229734}, {"caption": "track athletes and stadium goers gather into a championship meet", "video_id": "video12529", "sen_id": 229735}, {"caption": "athletic players getting ready for match and more players walking on the ground", "video_id": "video12529", "sen_id": 229736}, {"caption": "a team of athletes walk next to running track and host discusses up coming athletes", "video_id": "video12529", "sen_id": 229737}, {"caption": "young people exercise and practice jumping hurdles", "video_id": "video12529", "sen_id": 229738}, {"caption": "some people are walking around in a track place", "video_id": "video12529", "sen_id": 229739}, {"caption": "a woman giving the beginning steps to making ice cream", "video_id": "video10950", "sen_id": 229740}, {"caption": "a cook gives instructions on how to get started cooking an ice cream recipe", "video_id": "video10950", "sen_id": 229741}, {"caption": "person mixing cream and fruit in a glass bowl with sugar", "video_id": "video10950", "sen_id": 229742}, {"caption": "a lady is talking about how to make ice cream as she demonstrates", "video_id": "video10950", "sen_id": 229743}, {"caption": "a woman demonstrating on how to make an ice cream base", "video_id": "video10950", "sen_id": 229744}, {"caption": "some one adding ingredients to a bowl and mixing the same", "video_id": "video10950", "sen_id": 229745}, {"caption": "a lady wisks egg yolks and sugar for an ice cream recipe", "video_id": "video10950", "sen_id": 229746}, {"caption": "a female chef demonstrates an ice cream recipe she is preparing", "video_id": "video10950", "sen_id": 229747}, {"caption": "a person is pouring some food material in a bowl and preparing its", "video_id": "video10950", "sen_id": 229748}, {"caption": "a person is mixing ingredients together in a bowl", "video_id": "video10950", "sen_id": 229749}, {"caption": "for a cooking show a woman is showing how to make ice cream", "video_id": "video10950", "sen_id": 229750}, {"caption": "place the eggs yolk and sugar into a bowl whisk them together untill they pale in color", "video_id": "video10950", "sen_id": 229751}, {"caption": "an inhome chef discusses the procedures for making home made ice cream", "video_id": "video10950", "sen_id": 229752}, {"caption": "cream is poured into a bowl and a person stirs it", "video_id": "video10950", "sen_id": 229753}, {"caption": "someone is making home made ice cream", "video_id": "video10950", "sen_id": 229754}, {"caption": "a men is cooking ice creams he is mixing with mixer", "video_id": "video10950", "sen_id": 229755}, {"caption": "ice cream how to cook thatnet beating in a bowl", "video_id": "video10950", "sen_id": 229756}, {"caption": "egg is added to the white flour they beat it nicely until it become a dough", "video_id": "video10950", "sen_id": 229757}, {"caption": "a bowl mixing with colour with spoon how to cook quantity to prepare inside kitchen", "video_id": "video10950", "sen_id": 229758}, {"caption": "someone is mixing an egg in a bowl", "video_id": "video10950", "sen_id": 229759}, {"caption": "a race that comes down to the wire", "video_id": "video12923", "sen_id": 229760}, {"caption": "eight woman performing a race with hurdles in it", "video_id": "video12923", "sen_id": 229761}, {"caption": "girls running a race while jumping over hurdles", "video_id": "video12923", "sen_id": 229762}, {"caption": "people running hurtles through a finish line", "video_id": "video12923", "sen_id": 229763}, {"caption": "female athletes in various outfits are running in a high hurdle track event and bronze silver and gold mdals are won", "video_id": "video12923", "sen_id": 229764}, {"caption": "athletes are running for a 100 meter hurdles here", "video_id": "video12923", "sen_id": 229765}, {"caption": "runners compete in a race before an audience", "video_id": "video12923", "sen_id": 229766}, {"caption": "seight female racers jump over hurdles on a track at an event there is a seiko logo at the bottom of the video", "video_id": "video12923", "sen_id": 229767}, {"caption": "very intense lady running match with the one player falls", "video_id": "video12923", "sen_id": 229768}, {"caption": "an announcer is commentating on a women s track competition", "video_id": "video12923", "sen_id": 229769}, {"caption": "there are some athletes running hard on the track", "video_id": "video12923", "sen_id": 229770}, {"caption": "more players are running on the ground", "video_id": "video12923", "sen_id": 229771}, {"caption": "professional athletes are jumping hurdles as an announcer speaks", "video_id": "video12923", "sen_id": 229772}, {"caption": "the video is showing a track event possibly from the olympics", "video_id": "video12923", "sen_id": 229773}, {"caption": "some sprinters are running against each other", "video_id": "video12923", "sen_id": 229774}, {"caption": "there is some athletes running hard on the track", "video_id": "video12923", "sen_id": 229775}, {"caption": "a video of a track and field 100 meter hurdle race the winner is happy", "video_id": "video12923", "sen_id": 229776}, {"caption": "100 meter dash competition from the olympics of women runners out on the track williams wins the gold", "video_id": "video12923", "sen_id": 229777}, {"caption": "a commentator describing a women s 100m hurdles race", "video_id": "video12923", "sen_id": 229778}, {"caption": "racers take off and jump over hurdles in the olympics", "video_id": "video12923", "sen_id": 229779}, {"caption": "a male runner is warming up for a run", "video_id": "video10320", "sen_id": 229780}, {"caption": "a man narrates instructions about warming up before physical activity", "video_id": "video10320", "sen_id": 229781}, {"caption": "a man is out on a field preparing to warm up and jog", "video_id": "video10320", "sen_id": 229782}, {"caption": "a man messes with his gym bag before he starts jogging in a grassy field", "video_id": "video10320", "sen_id": 229783}, {"caption": "a man wearing red is doing exercises on the field", "video_id": "video10320", "sen_id": 229784}, {"caption": "a man in a red shirt and black pants looks through a bag on a field", "video_id": "video10320", "sen_id": 229785}, {"caption": "a man in a red shirt runs off onto a soccer field", "video_id": "video10320", "sen_id": 229786}, {"caption": "man speaking about track and field and conditioning", "video_id": "video10320", "sen_id": 229787}, {"caption": "a man is prepared to train for his track and field sprinting he is explaining how it works", "video_id": "video10320", "sen_id": 229788}, {"caption": "a man in a red shirt and black pants is jogging across a field", "video_id": "video10320", "sen_id": 229789}, {"caption": "an african american man shows his track warm up exercises", "video_id": "video10320", "sen_id": 229790}, {"caption": "a man wearing a red shirt doing a warm up", "video_id": "video10320", "sen_id": 229791}, {"caption": "a black man in a red shirt is running in a field", "video_id": "video10320", "sen_id": 229792}, {"caption": "an athletic guy discusses how to do some basic workouts", "video_id": "video10320", "sen_id": 229793}, {"caption": "a man begins his workut with a quick stretch and jog", "video_id": "video10320", "sen_id": 229794}, {"caption": "a man red color dressed talking a bottle from a bag", "video_id": "video10320", "sen_id": 229795}, {"caption": "a black man in a red shirt is jogging as part of a warmup routine", "video_id": "video10320", "sen_id": 229796}, {"caption": "guy preparing himself for jog", "video_id": "video10320", "sen_id": 229797}, {"caption": "a man is talking about exercising and warming up", "video_id": "video10320", "sen_id": 229798}, {"caption": "some people are running around green grass", "video_id": "video10320", "sen_id": 229799}, {"caption": "multiple magazine covers are displayed showing different variations", "video_id": "video11925", "sen_id": 229800}, {"caption": "magazine covers flash against the screen including one with war images in red", "video_id": "video11925", "sen_id": 229801}, {"caption": "magazine covers with red and purple cartoon depictions of celebrities", "video_id": "video11925", "sen_id": 229802}, {"caption": "there is a cover of a mad tv magazine of the icon and a person in a purple jacket followed by two pictures of men in all red yielding guns", "video_id": "video11925", "sen_id": 229803}, {"caption": "the cover of mad magazine and the cover of gulaal", "video_id": "video11925", "sen_id": 229804}, {"caption": "these are four types of magazine covers which are displayed within this video", "video_id": "video11925", "sen_id": 229805}, {"caption": "pictures from a magazine are being shown with music in the background", "video_id": "video11925", "sen_id": 229806}, {"caption": "movie posters of different pictures are displayed", "video_id": "video11925", "sen_id": 229807}, {"caption": "different animated magazine covers two are blue and two are red and white", "video_id": "video11925", "sen_id": 229808}, {"caption": "there are picture of some film and a red dressed man holding a gun", "video_id": "video11925", "sen_id": 229809}, {"caption": "a still pictures shown on screen displaying on screen", "video_id": "video11925", "sen_id": 229810}, {"caption": "mad magazine covers are displayed side by side", "video_id": "video11925", "sen_id": 229811}, {"caption": "the cover photos of some magazines are shown", "video_id": "video11925", "sen_id": 229812}, {"caption": "a poster of film is is display in the screeen", "video_id": "video11925", "sen_id": 229813}, {"caption": "a video compares similarities between a couple images", "video_id": "video11925", "sen_id": 229814}, {"caption": "some red characters are on white boards", "video_id": "video11925", "sen_id": 229815}, {"caption": "more images are displayed on the screen", "video_id": "video11925", "sen_id": 229816}, {"caption": "picture of person in blue dress and then man holding gun in red costume", "video_id": "video11925", "sen_id": 229817}, {"caption": "graphic designs for mad magazine and justin biener are shown", "video_id": "video11925", "sen_id": 229818}, {"caption": "some red drawings are on some white boards", "video_id": "video11925", "sen_id": 229819}, {"caption": "multiple citizens are learning exercise during their morning commutes", "video_id": "video10337", "sen_id": 229820}, {"caption": "new reporter talks about city plan for citizens to do exercises", "video_id": "video10337", "sen_id": 229821}, {"caption": "men wait in line for a train and then get on when it arrives", "video_id": "video10337", "sen_id": 229822}, {"caption": "new reporter talks about city plan for citizens to do exercises", "video_id": "video10337", "sen_id": 229823}, {"caption": "a woman broadcaster discusses issues", "video_id": "video10337", "sen_id": 229824}, {"caption": "a train is stopping at a station while a bbc announcer talks about the government encouraging commuters to exercise", "video_id": "video10337", "sen_id": 229825}, {"caption": "people wait on a platform at a train station and another man performs squats", "video_id": "video10337", "sen_id": 229826}, {"caption": "people stand on a platform waiting for a train", "video_id": "video10337", "sen_id": 229827}, {"caption": "people standing in line for a subway train are encouraged to exercise", "video_id": "video10337", "sen_id": 229828}, {"caption": "many people gather to wait for the subway to approach", "video_id": "video10337", "sen_id": 229829}, {"caption": "mostly male commuters with shoulder bags and briefcases wait for a red train to pull into the station and for the doors to open", "video_id": "video10337", "sen_id": 229830}, {"caption": "a world news pod cast is showing a group on people enter a subway", "video_id": "video10337", "sen_id": 229831}, {"caption": "people are waiting for a train to stop in front of them next a man wearing a red shirt is doing some squats", "video_id": "video10337", "sen_id": 229832}, {"caption": "transportation users are doing squats to exercise as reported by bbc news", "video_id": "video10337", "sen_id": 229833}, {"caption": "men wait outside as a train arrives at the station", "video_id": "video10337", "sen_id": 229834}, {"caption": "people boarding a train", "video_id": "video10337", "sen_id": 229835}, {"caption": "a bbc news program exploring about people getting into the train", "video_id": "video10337", "sen_id": 229836}, {"caption": "bbc news clip highlighting a reporter cleverly describing how the local health department wants more people physically active and outdoors", "video_id": "video10337", "sen_id": 229837}, {"caption": "newscast of people using public transit and exercising", "video_id": "video10337", "sen_id": 229838}, {"caption": "some men are standing around in a line", "video_id": "video10337", "sen_id": 229839}, {"caption": "three horses are drinking water in a muddy water pot", "video_id": "video10485", "sen_id": 229840}, {"caption": "a palomino horse pawing in a puddle while a black horse rolls behind it", "video_id": "video10485", "sen_id": 229841}, {"caption": "two brown horses and a tan horse are playing and rolling in a mud puddle", "video_id": "video10485", "sen_id": 229842}, {"caption": "one tan horse and two black horses frolic in a mud puddle", "video_id": "video10485", "sen_id": 229843}, {"caption": "a tan horse plays in the muddy water while a brown horse lays down and rolls around", "video_id": "video10485", "sen_id": 229844}, {"caption": "horses cooling off and enjoying a puddle of mud", "video_id": "video10485", "sen_id": 229845}, {"caption": "three horses play and drink in a large puddle of water and one of them rolls around on the grass", "video_id": "video10485", "sen_id": 229846}, {"caption": "three horses refresh and play on a poodle of water", "video_id": "video10485", "sen_id": 229847}, {"caption": "several horses are playing in a muddy green field and laying on the field", "video_id": "video10485", "sen_id": 229848}, {"caption": "three horses in a field of grass and two of them are playing with the mud", "video_id": "video10485", "sen_id": 229849}, {"caption": "a tan colored horse is splashing in puddle of mud next to two dark colored horse in the grass", "video_id": "video10485", "sen_id": 229850}, {"caption": "some horses play around in the mud and one lays down and kicks", "video_id": "video10485", "sen_id": 229851}, {"caption": "a black horse is on the ground rolling in mud", "video_id": "video10485", "sen_id": 229852}, {"caption": "a white color horse and brown color horse inside forest sleeping in muddy water digging with legs on screen", "video_id": "video10485", "sen_id": 229853}, {"caption": "several horses are playing in a big mud puddle", "video_id": "video10485", "sen_id": 229854}, {"caption": "horses are having a fun time taking a bath in the mud", "video_id": "video10485", "sen_id": 229855}, {"caption": "3 horses are so wonderful they are searching for food its drinking water", "video_id": "video10485", "sen_id": 229856}, {"caption": "a blonde colored horse is playing in a mud hole", "video_id": "video10485", "sen_id": 229857}, {"caption": "a bride and groom leading a horse onto the beach and then there are three horses in a field", "video_id": "video10485", "sen_id": 229858}, {"caption": "a few horses are relaxing around some water", "video_id": "video10485", "sen_id": 229859}, {"caption": "an african woman is interviewed for a tv show in a rural setting", "video_id": "video10410", "sen_id": 229860}, {"caption": "actor speaks about the director of the film she is working in", "video_id": "video10410", "sen_id": 229861}, {"caption": "an woman speaks while people stand in the background", "video_id": "video10410", "sen_id": 229862}, {"caption": "a young black woman discusses her life while she is being interviewed", "video_id": "video10410", "sen_id": 229863}, {"caption": "a woman talks about a director and some of his personal qualities", "video_id": "video10410", "sen_id": 229864}, {"caption": "an actress is explaining her director is very good at directing and also gives the actors room to perform well", "video_id": "video10410", "sen_id": 229865}, {"caption": "a black woman sitting in chair is talking", "video_id": "video10410", "sen_id": 229866}, {"caption": "a woman is being interviewed by a man she is very fond of", "video_id": "video10410", "sen_id": 229867}, {"caption": "a woman is looking like negro is talking about something", "video_id": "video10410", "sen_id": 229868}, {"caption": "a woman talking about how a man is open as a director", "video_id": "video10410", "sen_id": 229869}, {"caption": "there is a woman talking from a movie set", "video_id": "video10410", "sen_id": 229870}, {"caption": "a black woman with people in the background talking about the director of a movie", "video_id": "video10410", "sen_id": 229871}, {"caption": "a woman wearing a blouse sits and speaks while other people standing in background in a field", "video_id": "video10410", "sen_id": 229872}, {"caption": "a black woman talks about how much she enjoys a director", "video_id": "video10410", "sen_id": 229873}, {"caption": "a content yet excited actress talks about her satisfaction and creative freedom when working with a specific director", "video_id": "video10410", "sen_id": 229874}, {"caption": "a black woman describes that she likes the freedom allowed by a specific director", "video_id": "video10410", "sen_id": 229875}, {"caption": "a woman is sitting in the garden and talking", "video_id": "video10410", "sen_id": 229876}, {"caption": "a black color lady sitting on a chair and talking while some people are standing behind her", "video_id": "video10410", "sen_id": 229877}, {"caption": "a black woman with a short hairs is sitting in a chair talking", "video_id": "video10410", "sen_id": 229878}, {"caption": "a women sitting in open green land is talking and making hand gestures", "video_id": "video10410", "sen_id": 229879}, {"caption": "a man wearing a dark cowboy hat and dark shirt talks while cars and larger vehicles travel along a highway curve", "video_id": "video10584", "sen_id": 229880}, {"caption": "a man discusses the implications of using increased computer technology in automobile manufacturing", "video_id": "video10584", "sen_id": 229881}, {"caption": "a man in a cowboy hat talks about how cars could become cheaper with technology", "video_id": "video10584", "sen_id": 229882}, {"caption": "a man in a cowboy hat discusses a quote about cars", "video_id": "video10584", "sen_id": 229883}, {"caption": "a man in a cowboy hat talks before we see heavy traffic on a freeway", "video_id": "video10584", "sen_id": 229884}, {"caption": "cars are passing by on a freeway as a man narrates about technology", "video_id": "video10584", "sen_id": 229885}, {"caption": "a man in a cowboy hat talks as traffic is shown", "video_id": "video10584", "sen_id": 229886}, {"caption": "a man wearing a cowboy hat talks about the miles per gallon capacity of cars", "video_id": "video10584", "sen_id": 229887}, {"caption": "a man wearing a cowboy hat and traffic on a three lane freeway", "video_id": "video10584", "sen_id": 229888}, {"caption": "cars would get 1000 miles per gallon and cost $25 dollars says the man", "video_id": "video10584", "sen_id": 229889}, {"caption": "cars are shown driving down one portion of a highway", "video_id": "video10584", "sen_id": 229890}, {"caption": "a man in a cowboy had is describing cars and their mileage while cars are driving on the freeway", "video_id": "video10584", "sen_id": 229891}, {"caption": "a man in a hat talks about educational matters in regards to automobiles", "video_id": "video10584", "sen_id": 229892}, {"caption": "a man in a cowboy hat and cars going down a curved highway", "video_id": "video10584", "sen_id": 229893}, {"caption": "a male in a black cowboy hat and black pants talks about building cars and the cost", "video_id": "video10584", "sen_id": 229894}, {"caption": "view of cars trucks and suv moving on a high ways at a high speed", "video_id": "video10584", "sen_id": 229895}, {"caption": "a man in a black hat black shirt and tan pants describing how cars would get twenty five mile per gallon", "video_id": "video10584", "sen_id": 229896}, {"caption": "a man wearing black dress talking about the vehicles on the road", "video_id": "video10584", "sen_id": 229897}, {"caption": "a man in a cowboy hat says that if lessons learned in computer technology were applied to cars they would get 1", "video_id": "video10584", "sen_id": 229898}, {"caption": "a man in a cowboy hat talks about improving upon technology where cars can be built with better material become more fuel efficient and cost less", "video_id": "video10584", "sen_id": 229899}, {"caption": "a basketball player is showing an animation of the movement of the players on the court", "video_id": "video12535", "sen_id": 229900}, {"caption": "a motion diagram of a specific play a team can do while playing basketball", "video_id": "video12535", "sen_id": 229901}, {"caption": "a clip showing different basketball formations", "video_id": "video12535", "sen_id": 229902}, {"caption": "player moves in a basketball game are shown on a graph", "video_id": "video12535", "sen_id": 229903}, {"caption": "a play for a basket ball game is being demonstrated on a digital model", "video_id": "video12535", "sen_id": 229904}, {"caption": "numbers being encased in circles as they move on a simulated court", "video_id": "video12535", "sen_id": 229905}, {"caption": "a diagram of basketball strategy involves moving numbers around a basketball court", "video_id": "video12535", "sen_id": 229906}, {"caption": "numbers are moving around on a basketball court to show plays an action", "video_id": "video12535", "sen_id": 229907}, {"caption": "a top-down view of a basketball court is shown with numbers representing players on the court", "video_id": "video12535", "sen_id": 229908}, {"caption": "a diagram showing a basketball court with numbered players from fastmodel sports is shown", "video_id": "video12535", "sen_id": 229909}, {"caption": "fastmodel sports ad showing strategic play on court", "video_id": "video12535", "sen_id": 229910}, {"caption": "a simulation of a basketball match from a tactical point of view", "video_id": "video12535", "sen_id": 229911}, {"caption": "a basketball court shows the plays being drawn out", "video_id": "video12535", "sen_id": 229912}, {"caption": "a game displaying screen players playing and screen of number pointing displaying on screen", "video_id": "video12535", "sen_id": 229913}, {"caption": "bunch of players playing basketball and showing their tricks", "video_id": "video12535", "sen_id": 229914}, {"caption": "there are some tips about basketball game", "video_id": "video12535", "sen_id": 229915}, {"caption": "a screen showing a key which resemble basketball players plans", "video_id": "video12535", "sen_id": 229916}, {"caption": "a basketball play involving the movement of players on offense", "video_id": "video12535", "sen_id": 229917}, {"caption": "the basket ball quick playing passing out ball model is illustrated", "video_id": "video12535", "sen_id": 229918}, {"caption": "boys are practicing basketball in court and team planning on screen", "video_id": "video12535", "sen_id": 229919}, {"caption": "a camera observes from a watercraft as the wake forms behind them", "video_id": "video10782", "sen_id": 229920}, {"caption": "the wake of a boat is being filmed and followed by footage of land in the distance", "video_id": "video10782", "sen_id": 229921}, {"caption": "a scenic boatride shows the back draft of the boat and its surroundings", "video_id": "video10782", "sen_id": 229922}, {"caption": "a metal railing looks out onto the boat's wake as the boat travels across steely-blue water past islands and inhabited peninsulas", "video_id": "video10782", "sen_id": 229923}, {"caption": "boats traveling on the open ocean in croatia", "video_id": "video10782", "sen_id": 229924}, {"caption": "a woman is travelling on boat in a sea", "video_id": "video10782", "sen_id": 229925}, {"caption": "a woman recalls her trip in croatia from the back of a large boat", "video_id": "video10782", "sen_id": 229926}, {"caption": "an exploration about a sea and lady watching the sea", "video_id": "video10782", "sen_id": 229927}, {"caption": "a boat sales out of a large harbor with other boats close near them", "video_id": "video10782", "sen_id": 229928}, {"caption": "motorized boats and sailboats sailing in the ocean with a vista of a city and a small forested island", "video_id": "video10782", "sen_id": 229929}, {"caption": "people sitting on beach and walking on beach and enjoying", "video_id": "video10782", "sen_id": 229930}, {"caption": "a boat motoring through a waterway with a clear sky to electronic music", "video_id": "video10782", "sen_id": 229931}, {"caption": "an ad for croatia travel shows a boat in the ocean water traveling through a nice looking area", "video_id": "video10782", "sen_id": 229932}, {"caption": "a beautiful view of the wavy water is seen from the back of a moving boat", "video_id": "video10782", "sen_id": 229933}, {"caption": "a person is showing the sea as they go through the water on the boat", "video_id": "video10782", "sen_id": 229934}, {"caption": "a boat is cruising in a large body of water and making waves", "video_id": "video10782", "sen_id": 229935}, {"caption": "music playing while a person sits on a boat and watches the waves in the ocean", "video_id": "video10782", "sen_id": 229936}, {"caption": "a lady with a brown dress and spectacles is sitting on a beach", "video_id": "video10782", "sen_id": 229937}, {"caption": "a boat spews water out the back of it as it rides the ocean", "video_id": "video10782", "sen_id": 229938}, {"caption": "music plays as a woman sits on a boat looking out at the ocean", "video_id": "video10782", "sen_id": 229939}, {"caption": "a person is riding a motorcycle with skis strapped to his back on the road", "video_id": "video12328", "sen_id": 229940}, {"caption": "a man in a blue jacket rides a motorcycle down a highway with skis on his back", "video_id": "video12328", "sen_id": 229941}, {"caption": "a man with skis on his back drives down the road on his scooter", "video_id": "video12328", "sen_id": 229942}, {"caption": "a person wearing blue is driving down the road", "video_id": "video12328", "sen_id": 229943}, {"caption": "a person is traveling down the road while doing a trick on a skateboard", "video_id": "video12328", "sen_id": 229944}, {"caption": "a man rides a mini motorcycle with ski's strapped to his back", "video_id": "video12328", "sen_id": 229945}, {"caption": "the man wearing blue coar and helmet and made the fantastic riding in the road", "video_id": "video12328", "sen_id": 229946}, {"caption": "a man in a blue jacket drives a short motor bike towards a tall mountain", "video_id": "video12328", "sen_id": 229947}, {"caption": "man rides small motorcycle with bad moon rising playing in the background", "video_id": "video12328", "sen_id": 229948}, {"caption": "in this clip it shows a a young male riding a small motorcycle also carrying a bag pack wearing a blue sweater and a helmet enjoying life", "video_id": "video12328", "sen_id": 229949}, {"caption": "man in blue jacket riding on scooter with snowboard strapped to his back", "video_id": "video12328", "sen_id": 229950}, {"caption": "a person in a blue coat riding a scooter to a snow capped mountain with a snowboard on his back", "video_id": "video12328", "sen_id": 229951}, {"caption": "a person wearing a light blue jacket is riding on a small motor bike toward a mountain", "video_id": "video12328", "sen_id": 229952}, {"caption": "a man in blue shirt is riding in the bike", "video_id": "video12328", "sen_id": 229953}, {"caption": "a man is riding a motorcycle down the road", "video_id": "video12328", "sen_id": 229954}, {"caption": "a person on a mini bike carrying snow skies riding down a road that apparently leads to a large mountain with snow", "video_id": "video12328", "sen_id": 229955}, {"caption": "a man in blue shirt and a helmet is riding with a large stick in back in a bike in a road", "video_id": "video12328", "sen_id": 229956}, {"caption": "a beautiful scene with mountains in the background showing a man along with his skis tied up to his backpack rides a motorcycle past a car through the countryside", "video_id": "video12328", "sen_id": 229957}, {"caption": "a man riding down the street on a motorbike passing a car in the opposite direction", "video_id": "video12328", "sen_id": 229958}, {"caption": "some one is traveling on a large road", "video_id": "video12328", "sen_id": 229959}, {"caption": "a man rolls and cuts a fresh lime while describing a fresh chili dressing that he is making he then adds vegetables", "video_id": "video11267", "sen_id": 229960}, {"caption": "chef ramsey is preparing a simple recipe that he learned in cambodia", "video_id": "video11267", "sen_id": 229961}, {"caption": "a chef works on a recipe by quickly rolling a lime on a countertop", "video_id": "video11267", "sen_id": 229962}, {"caption": "a man with blond hair and a black shirt is cooking in a kitchen", "video_id": "video11267", "sen_id": 229963}, {"caption": "gordon ramsey massages and squeezes a lime and adds it into a fresh chili dressing he fell in love with the taste of lime and vegetables in vietnam and cambodia", "video_id": "video11267", "sen_id": 229964}, {"caption": "a man rolling a lime on a cutting board and then squeezing it in a pot", "video_id": "video11267", "sen_id": 229965}, {"caption": "a man in black t-shirt making a lemon juice", "video_id": "video11267", "sen_id": 229966}, {"caption": "a man is busy with making a preparation with lemon and other ingredients", "video_id": "video11267", "sen_id": 229967}, {"caption": "chef ramsey is rolling and cutting a lime and squeezing the juice in a simple chili dressing", "video_id": "video11267", "sen_id": 229968}, {"caption": "a young man in black dress is washing vegetablescutting lime and collecting the juice in a black jar", "video_id": "video11267", "sen_id": 229969}, {"caption": "a man is cutting lemon from knife and mixing it in a dish", "video_id": "video11267", "sen_id": 229970}, {"caption": "a man is using a green lime and vegetables in something he is making in a black bowl", "video_id": "video11267", "sen_id": 229971}, {"caption": "a man wearing black t-shirt cut the lemon and make juice in his kitchen", "video_id": "video11267", "sen_id": 229972}, {"caption": "in a kitchen the man cuts a lime and added sugar", "video_id": "video11267", "sen_id": 229973}, {"caption": "a person is doing some receipe and squeezing lemon in the pan and adding sugar to it", "video_id": "video11267", "sen_id": 229974}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11267", "sen_id": 229975}, {"caption": "chef gordon is seen rolling a lemon on the table and then he cuts it into two halves squeezes it into a bowl adds sugar and tastes it and says wow", "video_id": "video11267", "sen_id": 229976}, {"caption": "a boy inside kitchen in blue dress cutting lemon with knife and mixing in bowl drinking", "video_id": "video11267", "sen_id": 229977}, {"caption": "a man is cutting lemon and pouring its juice in a dish", "video_id": "video11267", "sen_id": 229978}, {"caption": "gordon ramsay is making some food on a cabinet", "video_id": "video11267", "sen_id": 229979}, {"caption": "a series of flashing words describe a new way of looking at things", "video_id": "video10362", "sen_id": 229980}, {"caption": "a commercial on a company that provides data", "video_id": "video10362", "sen_id": 229981}, {"caption": "a public-relations company for tech businesses uses white text and black white and blue dots in its advertisement", "video_id": "video10362", "sen_id": 229982}, {"caption": "white text on a light-blue screen with black horizontal borders and mostly black dots turns into white text on a salmon-pink screen with black horizontal borders and mostly black dots", "video_id": "video10362", "sen_id": 229983}, {"caption": "a pink screen with lots of messages about discovering and doing things in real time with loud music in the background", "video_id": "video10362", "sen_id": 229984}, {"caption": "a pink background with white letters that spell out bloom", "video_id": "video10362", "sen_id": 229985}, {"caption": "white text on a bright pink background advertising the bloom company", "video_id": "video10362", "sen_id": 229986}, {"caption": "some one showing the advertisement in front of the video", "video_id": "video10362", "sen_id": 229987}, {"caption": "the intoduction of some tv programme is shown", "video_id": "video10362", "sen_id": 229988}, {"caption": "the presentation of a company s advertisement is displaying", "video_id": "video10362", "sen_id": 229989}, {"caption": "there are some explanations about bloom always discovering", "video_id": "video10362", "sen_id": 229990}, {"caption": "in a slideshow a advertisemet companies matter is displayed", "video_id": "video10362", "sen_id": 229991}, {"caption": "its trailer of dot pointsmany dots are marked on red background", "video_id": "video10362", "sen_id": 229992}, {"caption": "brands like samaritans waitrose and jewson coming together and to help gather information as accurately and quickly as possible for a bigger company", "video_id": "video10362", "sen_id": 229993}, {"caption": "a pink background is being shown to people", "video_id": "video10362", "sen_id": 229994}, {"caption": "the advertisement of bloom that is always discovering is being shown", "video_id": "video10362", "sen_id": 229995}, {"caption": "this type advertisement very attract but not reached all people", "video_id": "video10362", "sen_id": 229996}, {"caption": "a presentation about the bloom always discovering about the products", "video_id": "video10362", "sen_id": 229997}, {"caption": "a video is being shown showing graphics and text", "video_id": "video10362", "sen_id": 229998}, {"caption": "some white text is on a pink background", "video_id": "video10362", "sen_id": 229999}, {"caption": "a woman and a man are talking in a restaurant", "video_id": "video12881", "sen_id": 230000}, {"caption": "a man in a suit and a woman in a dress discuss politicians", "video_id": "video12881", "sen_id": 230001}, {"caption": "a woman wearing a black dress is talking to a man in a suit", "video_id": "video12881", "sen_id": 230002}, {"caption": "a man and woman talking together in a room", "video_id": "video12881", "sen_id": 230003}, {"caption": "a woman in a black dress talking to a man", "video_id": "video12881", "sen_id": 230004}, {"caption": "a woman is talking to a man in suit", "video_id": "video12881", "sen_id": 230005}, {"caption": "a woman in a black dress is speaking with a man wearing a black suit", "video_id": "video12881", "sen_id": 230006}, {"caption": "in a hollywood movie one man talks to another woman", "video_id": "video12881", "sen_id": 230007}, {"caption": "a man and woman standing in a bar have a conversation", "video_id": "video12881", "sen_id": 230008}, {"caption": "brunette lady in black dress speaking with a man", "video_id": "video12881", "sen_id": 230009}, {"caption": "a men and women is talking with eache other on the streets where food stalls are there", "video_id": "video12881", "sen_id": 230010}, {"caption": "a brief clip of a film or tv show depicts an interaction between a man and a woman", "video_id": "video12881", "sen_id": 230011}, {"caption": "a man and a woman are speaking in the room", "video_id": "video12881", "sen_id": 230012}, {"caption": "a woman in a dress to a man in a suit", "video_id": "video12881", "sen_id": 230013}, {"caption": "a woman in a black dress is talking to a man", "video_id": "video12881", "sen_id": 230014}, {"caption": "conversation the man and the lady", "video_id": "video12881", "sen_id": 230015}, {"caption": "a man is talking to a woman in a black dress", "video_id": "video12881", "sen_id": 230016}, {"caption": "a well dress man and woman discuss politicians", "video_id": "video12881", "sen_id": 230017}, {"caption": "beautiful woman having conversation with the man in front of her", "video_id": "video12881", "sen_id": 230018}, {"caption": "a woman is talking to a suited man", "video_id": "video12881", "sen_id": 230019}, {"caption": "a female reporter in a blue top reports on a story on television", "video_id": "video11948", "sen_id": 230020}, {"caption": "a young lady in a blue dress is discussing the news", "video_id": "video11948", "sen_id": 230021}, {"caption": "a young lady in a blue dress is discussing the news", "video_id": "video11948", "sen_id": 230022}, {"caption": "a woman in a blue shirt explains a news story to the camera", "video_id": "video11948", "sen_id": 230023}, {"caption": "a female news anchor speaks in arabic on tv", "video_id": "video11948", "sen_id": 230024}, {"caption": "a woman news anchor wearing blue explains about a story in arabic language", "video_id": "video11948", "sen_id": 230025}, {"caption": "a woman in a blue shirt talking o the news", "video_id": "video11948", "sen_id": 230026}, {"caption": "a female news reporter gives her report in front of a series of large buildings", "video_id": "video11948", "sen_id": 230027}, {"caption": "a woman wearing a blue shirt is talking in a foreign language on tv", "video_id": "video11948", "sen_id": 230028}, {"caption": "a lady is doing a news broadcast in her foreign country", "video_id": "video11948", "sen_id": 230029}, {"caption": "a brunette news anchor in a blue dress reads the news in arabic", "video_id": "video11948", "sen_id": 230030}, {"caption": "in tv news a lady in blue dress is talking", "video_id": "video11948", "sen_id": 230031}, {"caption": "a woman wearing blue is speaking to the camera about a news report", "video_id": "video11948", "sen_id": 230032}, {"caption": "a woman wearing blue is giving a news report", "video_id": "video11948", "sen_id": 230033}, {"caption": "a woman in a blue shirt delivers the news of the day", "video_id": "video11948", "sen_id": 230034}, {"caption": "a woman with brown hair is talking about something", "video_id": "video11948", "sen_id": 230035}, {"caption": "a lady wearing blue color dress is talking", "video_id": "video11948", "sen_id": 230036}, {"caption": "a female news reporter in a blue shirt gives a report", "video_id": "video11948", "sen_id": 230037}, {"caption": "woman in blue shirt is talking about the latest news", "video_id": "video11948", "sen_id": 230038}, {"caption": "a woman is talking on a news broadcast", "video_id": "video11948", "sen_id": 230039}, {"caption": "a woman is sweating and wearing a tank top", "video_id": "video10323", "sen_id": 230040}, {"caption": "a sweaty woman with short hair talks to a man", "video_id": "video10323", "sen_id": 230041}, {"caption": "segourney weaver in a tank top talking to a young man", "video_id": "video10323", "sen_id": 230042}, {"caption": "a woman (sigourney weaver) talks to a man about destroying some group of things rather than studying or bringing them back", "video_id": "video10323", "sen_id": 230043}, {"caption": "a woman asking a guy if he is going to destroy them or is he bringing back", "video_id": "video10323", "sen_id": 230044}, {"caption": "up close of a woman talking to a man in a movie", "video_id": "video10323", "sen_id": 230045}, {"caption": "a holly wood movie scene a lady talking to a guy", "video_id": "video10323", "sen_id": 230046}, {"caption": "a woman is having a serious conversation with a young man in a movie", "video_id": "video10323", "sen_id": 230047}, {"caption": "its a video clips from a english movie", "video_id": "video10323", "sen_id": 230048}, {"caption": "lady with the slip talks infront of the camera then a guy talks again in front of camera", "video_id": "video10323", "sen_id": 230049}, {"caption": "a clip from the movie alien with sigourney weaver discussing the hostility of the alien race", "video_id": "video10323", "sen_id": 230050}, {"caption": "a woman is having a tense conversation with a young man", "video_id": "video10323", "sen_id": 230051}, {"caption": "a man with thw vest is talking to thr other one", "video_id": "video10323", "sen_id": 230052}, {"caption": " with wavy black hair and thin lips looks down while she starts to speak and then looks up before she is finished", "video_id": "video10323", "sen_id": 230053}, {"caption": "a movie produced by 20th century fox where an actress delivers a dialogue to an actor", "video_id": "video10323", "sen_id": 230054}, {"caption": "sigourney weaver was fairly attractive in her younger days", "video_id": "video10323", "sen_id": 230055}, {"caption": "there is a women is talking to boy", "video_id": "video10323", "sen_id": 230056}, {"caption": "an actress is talking to a man on a movie", "video_id": "video10323", "sen_id": 230057}, {"caption": "in a hollywood movie one man talks to another woman", "video_id": "video10323", "sen_id": 230058}, {"caption": "the woman speaking to a man about destroy some people rather than writing history", "video_id": "video10323", "sen_id": 230059}, {"caption": "two chefs discuss the flavor of a product they are using in a kitchen", "video_id": "video10101", "sen_id": 230060}, {"caption": "a man in white shirt is tasting food while talking to another cook", "video_id": "video10101", "sen_id": 230061}, {"caption": "a chef speaking to the older chef about the taste of the food", "video_id": "video10101", "sen_id": 230062}, {"caption": "two men are wearing white and talking and tasting food in a kitchen", "video_id": "video10101", "sen_id": 230063}, {"caption": "2 cooks in a restaurant kitchen joking around about some food chewing or not", "video_id": "video10101", "sen_id": 230064}, {"caption": "in a kitchen show a person has cooked some thing and he wants to try it out by the chef and the tastes dosent good well both are laughing", "video_id": "video10101", "sen_id": 230065}, {"caption": "two chefts talk together very happily and eat something", "video_id": "video10101", "sen_id": 230066}, {"caption": "there are two men who are chefs talking and eating in the kitchen", "video_id": "video10101", "sen_id": 230067}, {"caption": "a man is talking to a chef in a big kitchen", "video_id": "video10101", "sen_id": 230068}, {"caption": "two cooks taste their food as one is more hesitant to the other", "video_id": "video10101", "sen_id": 230069}, {"caption": "there is a man talking with a person", "video_id": "video10101", "sen_id": 230070}, {"caption": "two chefs in a kitchen discussing food and tasting ingredients", "video_id": "video10101", "sen_id": 230071}, {"caption": "two chefs conversing one tries to eat a hot pepper", "video_id": "video10101", "sen_id": 230072}, {"caption": "a old man in white color dress other boy eating dish laughing speaking displaying on screen", "video_id": "video10101", "sen_id": 230073}, {"caption": "a chef in a kitchen is smiling at something", "video_id": "video10101", "sen_id": 230074}, {"caption": "chefs in a commercial kitchen tasting an ingredient", "video_id": "video10101", "sen_id": 230075}, {"caption": "two men are talking in a restaurant kitchen and tasting something while laughing about it", "video_id": "video10101", "sen_id": 230076}, {"caption": "a chef speaks to another chef in a kitchen", "video_id": "video10101", "sen_id": 230077}, {"caption": "people preparing a meal of food for a show", "video_id": "video10101", "sen_id": 230078}, {"caption": "some people in a kitchen are talking to each other", "video_id": "video10101", "sen_id": 230079}, {"caption": "a woman checked up on her make-up while a band is playing for a crowd", "video_id": "video11527", "sen_id": 230080}, {"caption": "a woman with blonde hair is putting on makeup using a mirror", "video_id": "video11527", "sen_id": 230081}, {"caption": "a band playing music at a dance or club", "video_id": "video11527", "sen_id": 230082}, {"caption": "a movie scene is shown in which a woman wearing a dark grey dress kisses her reflection in a compact mirror adjusts her makeup and then the scene cuts to a band on stage performing that thing you do", "video_id": "video11527", "sen_id": 230083}, {"caption": "a woman is checking her make up in a compact mirror", "video_id": "video11527", "sen_id": 230084}, {"caption": "a women in blue applying makeup with a mirror", "video_id": "video11527", "sen_id": 230085}, {"caption": "a band is performing on a stage while a woman is looking in a mirror", "video_id": "video11527", "sen_id": 230086}, {"caption": "one beautiful and lovely women makeup his face", "video_id": "video11527", "sen_id": 230087}, {"caption": "a young girl reapplies her makeup at a small concert", "video_id": "video11527", "sen_id": 230088}, {"caption": "sexy brunette putting on makeup and showing the shades", "video_id": "video11527", "sen_id": 230089}, {"caption": "a group dance a with a song in a concert", "video_id": "video11527", "sen_id": 230090}, {"caption": "at the night hotel club party the music troup is compose their songs in very well", "video_id": "video11527", "sen_id": 230091}, {"caption": "a lady doing self makeup in a stage show", "video_id": "video11527", "sen_id": 230092}, {"caption": "a lady in a music concert is applying make up to her face", "video_id": "video11527", "sen_id": 230093}, {"caption": "a woman with blonde hair is doing her make up", "video_id": "video11527", "sen_id": 230094}, {"caption": "the lady is putting up some makeups while some people are performing on the stage", "video_id": "video11527", "sen_id": 230095}, {"caption": "people are enjoying the song and a women is applying make up and looking at some one and again she takes out some cosmetics to finish the makeup and then the guy on the stage with a guitar turns around to the guy playing drums and shouts at him asking hey what s going on here", "video_id": "video11527", "sen_id": 230096}, {"caption": "a woman applies makeup to her face at a party where a band is playing", "video_id": "video11527", "sen_id": 230097}, {"caption": "a lady in a music show not bothered of the crowd putting lipstick and looking around", "video_id": "video11527", "sen_id": 230098}, {"caption": "music is playing while a woman looks at herself in a mirror", "video_id": "video11527", "sen_id": 230099}, {"caption": "a chef grills meat on a large outdoor grill", "video_id": "video12926", "sen_id": 230100}, {"caption": "a chef barbecues meat on a large outdoor grill", "video_id": "video12926", "sen_id": 230101}, {"caption": "someone is cooking and removing lamb and steaks from an outdoor grill", "video_id": "video12926", "sen_id": 230102}, {"caption": "a man uses tongs to remove cooked steaks from a grill", "video_id": "video12926", "sen_id": 230103}, {"caption": "a man is barbecuing and states that he's taking the steaks off the grill", "video_id": "video12926", "sen_id": 230104}, {"caption": "a person grilling and then removing a rack of lamb and steaks", "video_id": "video12926", "sen_id": 230105}, {"caption": "a person is barbecuing picks up a piece of meat one at a time removing it from the grill", "video_id": "video12926", "sen_id": 230106}, {"caption": "man prepares grilled meat and takes it out", "video_id": "video12926", "sen_id": 230107}, {"caption": "a person takes 5 steaks off of a grill with tongs the grill is double layered", "video_id": "video12926", "sen_id": 230108}, {"caption": "a man is taking food items off of a grill with tongs", "video_id": "video12926", "sen_id": 230109}, {"caption": "non veg pieces kept in a griller and someone took out the chicken and kept outsude", "video_id": "video12926", "sen_id": 230110}, {"caption": "a demonstration of how to remove steaks from a gas grill", "video_id": "video12926", "sen_id": 230111}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12926", "sen_id": 230112}, {"caption": "someone is cooking a rack of lamb and several other pieces of meat on the grill", "video_id": "video12926", "sen_id": 230113}, {"caption": "the man is cooking steaks on the grill", "video_id": "video12926", "sen_id": 230114}, {"caption": "the most common way is to grill the whole horseshoe crab", "video_id": "video12926", "sen_id": 230115}, {"caption": "a man is moving food off of a open grill with tongs", "video_id": "video12926", "sen_id": 230116}, {"caption": "a cook uses orange-tipped tongs to remove cooked ribs from an elevated rack and then removes the rounds of beef from the larger and lower rack of the black barbecue", "video_id": "video12926", "sen_id": 230117}, {"caption": "person grilling some steaks on a barbecue and describing what he will do", "video_id": "video12926", "sen_id": 230118}, {"caption": "a person is picking up the baked hot chicken pieces", "video_id": "video12926", "sen_id": 230119}, {"caption": "a free brown horse with black mane speaks sarcastically in a high-pitched voice to a confined black-and-white horse who laughs back", "video_id": "video10350", "sen_id": 230120}, {"caption": "a toy horse is given a high pitched voice and is laughed at by a another toy horse with a deeper voice", "video_id": "video10350", "sen_id": 230121}, {"caption": "toy horses and a zebra talk and laugh at each other in funny voices in a homemade film", "video_id": "video10350", "sen_id": 230122}, {"caption": "a woman plays with a couple of plastic horses in her living room", "video_id": "video10350", "sen_id": 230123}, {"caption": "someone is playing with two different toy horses that are two different colors", "video_id": "video10350", "sen_id": 230124}, {"caption": "two people playing with horse toys together", "video_id": "video10350", "sen_id": 230125}, {"caption": "a person plays with a set of small plastic horses", "video_id": "video10350", "sen_id": 230126}, {"caption": "one kid was playing with toy horse near the window", "video_id": "video10350", "sen_id": 230127}, {"caption": "a man shaking a horse doll with his hand in different places", "video_id": "video10350", "sen_id": 230128}, {"caption": "play horses laughing and talking about how each others voices sound one is squeaky while the other has an evil laugh", "video_id": "video10350", "sen_id": 230129}, {"caption": "figurines of horses conversing a light brown horse on a carpet and a large multicolored horse behind a gate", "video_id": "video10350", "sen_id": 230130}, {"caption": "a toy horse outside talks to a laughing toy horse in a stable", "video_id": "video10350", "sen_id": 230131}, {"caption": "a person plays with toy horses and makes them talk", "video_id": "video10350", "sen_id": 230132}, {"caption": "some one playing with a statue of horse in their hand", "video_id": "video10350", "sen_id": 230133}, {"caption": "two doll horses are engaged in a conversation", "video_id": "video10350", "sen_id": 230134}, {"caption": "a person is playing with some toy horses", "video_id": "video10350", "sen_id": 230135}, {"caption": "there are some toys playing on the floor", "video_id": "video10350", "sen_id": 230136}, {"caption": "toy animals with funny voices converse inside a house", "video_id": "video10350", "sen_id": 230137}, {"caption": "trailor of a cartoon film or serial is running on screen", "video_id": "video10350", "sen_id": 230138}, {"caption": "a brown plastic horse and a black and white plastic horse appear to be talking to each other in a living room", "video_id": "video10350", "sen_id": 230139}, {"caption": "a woman putting stirring food and then layering strawberries and adding honey", "video_id": "video12669", "sen_id": 230140}, {"caption": "a woman arranges a bowl of food adding strawberries and honey", "video_id": "video12669", "sen_id": 230141}, {"caption": "a woman prepares a desert by placing strawberries on oatmeal", "video_id": "video12669", "sen_id": 230142}, {"caption": "a woman putting strawberries and honey on top of a bowl porridge", "video_id": "video12669", "sen_id": 230143}, {"caption": "a woman feels that oatmeal is to sweet so she puts a hot cereal in a white bowl topped with strawberries and honey she also claims she eats with her eyes", "video_id": "video12669", "sen_id": 230144}, {"caption": "a woman talking about a recipe with strawberry", "video_id": "video12669", "sen_id": 230145}, {"caption": "a woman making an alternative to oatmeal and topping with strawberries and honey", "video_id": "video12669", "sen_id": 230146}, {"caption": "a girl is making a breakfast cereal topping it with strawberries and honey", "video_id": "video12669", "sen_id": 230147}, {"caption": "an inhome chef works on a breakfast recipe with honey and strawberries", "video_id": "video12669", "sen_id": 230148}, {"caption": "a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12669", "sen_id": 230149}, {"caption": "there is a woman decorating a dish with strawberry slice", "video_id": "video12669", "sen_id": 230150}, {"caption": "person preparing a meal while explaining the recipe", "video_id": "video12669", "sen_id": 230151}, {"caption": "someone pouring some food items to the cup and placing strawberry on that and pouring sauce", "video_id": "video12669", "sen_id": 230152}, {"caption": "a woman scoops hot cereal into a bowl and tops it off with sliced strawberries and honey", "video_id": "video12669", "sen_id": 230153}, {"caption": "a woman mixes together food and fruit in a bowl", "video_id": "video12669", "sen_id": 230154}, {"caption": "there is a woman decorating a dish with strawberry", "video_id": "video12669", "sen_id": 230155}, {"caption": "the person places the food in the white bowl", "video_id": "video12669", "sen_id": 230156}, {"caption": "a lady doing some dish and decorating in on the plate", "video_id": "video12669", "sen_id": 230157}, {"caption": "a young woman preparing a meal and with strawberries and honey on top while discussing the benefits", "video_id": "video12669", "sen_id": 230158}, {"caption": "a woman prepares and describes an oatmeal alternative with strawberries and honey in a white bowl", "video_id": "video12669", "sen_id": 230159}, {"caption": "a man in a black shirt and blue jeans fishing out squid of a tub of water", "video_id": "video11636", "sen_id": 230160}, {"caption": "a man is searching the water for fishes with a line", "video_id": "video11636", "sen_id": 230161}, {"caption": "a man catching a small fish in a barell with a small fishing pole", "video_id": "video11636", "sen_id": 230162}, {"caption": "a guy uses a stick to try and fish some fish out of a tub to eat", "video_id": "video11636", "sen_id": 230163}, {"caption": "a man in black t shirt is fishing and another girl is touching the fish", "video_id": "video11636", "sen_id": 230164}, {"caption": "a man uses a tiny fishing rod to catch an orange fish from a tub of water", "video_id": "video11636", "sen_id": 230165}, {"caption": "a person is holding up a fish out of the water", "video_id": "video11636", "sen_id": 230166}, {"caption": "a guy in the black tshirt fishing in a small miniature pond and captures a squid fish", "video_id": "video11636", "sen_id": 230167}, {"caption": "man in black t shirt is playing with the animals in the pool", "video_id": "video11636", "sen_id": 230168}, {"caption": "almost like being at the fair where you take a little fishing rod and fish here you fish for live fish", "video_id": "video11636", "sen_id": 230169}, {"caption": "man in blue shirt is picking up some kind of fish from water tub", "video_id": "video11636", "sen_id": 230170}, {"caption": "a man stands by a big blue tub filled with water and fishes for a squid", "video_id": "video11636", "sen_id": 230171}, {"caption": "a man stands over a pool of water that filled with live fish", "video_id": "video11636", "sen_id": 230172}, {"caption": "a man in black color dress wearing holding a fish in hand girls beside taking from water tub catching displaying on screen", "video_id": "video11636", "sen_id": 230173}, {"caption": "a guy is catching a fish in a tub", "video_id": "video11636", "sen_id": 230174}, {"caption": "there is a black tshirt man fishing from a tank", "video_id": "video11636", "sen_id": 230175}, {"caption": "a man is using a rod to fish out of a small pool", "video_id": "video11636", "sen_id": 230176}, {"caption": "a man in black shirt is in a fish market harvesting fresh fish from a water pool", "video_id": "video11636", "sen_id": 230177}, {"caption": "a man in a black shirt is playing a fishing game inside of a store and catches an orange fish", "video_id": "video11636", "sen_id": 230178}, {"caption": "a man in a black shirt wants a fish", "video_id": "video11636", "sen_id": 230179}, {"caption": "a parrot says 'what the fuck' multiple times", "video_id": "video12819", "sen_id": 230180}, {"caption": "a parrot bobs its head and uses human swears", "video_id": "video12819", "sen_id": 230181}, {"caption": "a persons pet parrot makes noises and walks along a silver rod", "video_id": "video12819", "sen_id": 230182}, {"caption": "a parrot is standing on a a perch and reciting profanities", "video_id": "video12819", "sen_id": 230183}, {"caption": "a green and yellow parrot walks and bounces its head while making funny sounds", "video_id": "video12819", "sen_id": 230184}, {"caption": "a beautiful large parrot is able to talk and has picked up bad language", "video_id": "video12819", "sen_id": 230185}, {"caption": "a large parakeet bird is cursing while standing on a bird stancd", "video_id": "video12819", "sen_id": 230186}, {"caption": "a cute green parrot doing something funny on the home", "video_id": "video12819", "sen_id": 230187}, {"caption": "a parrot is standing on it s perch and making noises", "video_id": "video12819", "sen_id": 230188}, {"caption": "a colorful parrot stands on a rod and talks", "video_id": "video12819", "sen_id": 230189}, {"caption": "there is a bird sitting inside the room", "video_id": "video12819", "sen_id": 230190}, {"caption": "a parrot that keeps saying what the fuck", "video_id": "video12819", "sen_id": 230191}, {"caption": "a parakeet copying our english language so well and using profanity to express itself", "video_id": "video12819", "sen_id": 230192}, {"caption": "a bird as like as a parrot with a chain sitting on a steel rod and shouting", "video_id": "video12819", "sen_id": 230193}, {"caption": "parrot coming closer and looking at the camera", "video_id": "video12819", "sen_id": 230194}, {"caption": "a yellow and green parrot sitting on a birch", "video_id": "video12819", "sen_id": 230195}, {"caption": "a parrot with yellow and green colour is speaking by nodding its head", "video_id": "video12819", "sen_id": 230196}, {"caption": "close up shots of a parrot on a rod inside a home using foul language", "video_id": "video12819", "sen_id": 230197}, {"caption": "a colorful parrot stands on a pole and makes funny sounds", "video_id": "video12819", "sen_id": 230198}, {"caption": "a parrot turns slowly and then bobs its head back and forth a few times", "video_id": "video12819", "sen_id": 230199}, {"caption": "a man is showing how to play an xbox video game", "video_id": "video10967", "sen_id": 230200}, {"caption": "hurevolution4lx is a gamer telling about a new game coming out on xbox live in december 2014", "video_id": "video10967", "sen_id": 230201}, {"caption": "video game footage of a man riding a chrome lawn mower through a city", "video_id": "video10967", "sen_id": 230202}, {"caption": "its a video game where the player is on his vehicle and moving here and there", "video_id": "video10967", "sen_id": 230203}, {"caption": "a person is taking about the bike race and the way he is riding a bike and sponser ship etc", "video_id": "video10967", "sen_id": 230204}, {"caption": "a man in black dress riding some vehicle like bike on the road", "video_id": "video10967", "sen_id": 230205}, {"caption": "revolution game animate a person driving the vehicle on the road", "video_id": "video10967", "sen_id": 230206}, {"caption": "a man on a fourwheeler is driving down the street and running into things", "video_id": "video10967", "sen_id": 230207}, {"caption": "the word revolution being shown before a young mans voice starts to talk about xbox live", "video_id": "video10967", "sen_id": 230208}, {"caption": "a person driving the bike on the road and its an revolution", "video_id": "video10967", "sen_id": 230209}, {"caption": "there is a man driving a vehicle on the road", "video_id": "video10967", "sen_id": 230210}, {"caption": "someone is playing a video game driving around on a small vehicle", "video_id": "video10967", "sen_id": 230211}, {"caption": "a man is explaining how to play an atv video game", "video_id": "video10967", "sen_id": 230212}, {"caption": "man driving a quad bike on grand theft auto five", "video_id": "video10967", "sen_id": 230213}, {"caption": "a men is describing about a video game", "video_id": "video10967", "sen_id": 230214}, {"caption": "there is a man riding a vehicle without fear", "video_id": "video10967", "sen_id": 230215}, {"caption": "a man drives a small four-wheeled vehicle through the streets of a city in a video game", "video_id": "video10967", "sen_id": 230216}, {"caption": "a man is talking about an atv video game he is playing", "video_id": "video10967", "sen_id": 230217}, {"caption": "a young man rides on a vehicle while talking about the game", "video_id": "video10967", "sen_id": 230218}, {"caption": "someone is playing grand theft auto five", "video_id": "video10967", "sen_id": 230219}, {"caption": "a mouse in a large bag of small animal bedding", "video_id": "video10743", "sen_id": 230220}, {"caption": "a hamster cleans itself in an open bag of bedding", "video_id": "video10743", "sen_id": 230221}, {"caption": "a hamster is sitting in a big of food while nibbling on it", "video_id": "video10743", "sen_id": 230222}, {"caption": "child talks to hamster who is inside a bag of hamster bedding", "video_id": "video10743", "sen_id": 230223}, {"caption": "a brown and white hamster in it cage eating food", "video_id": "video10743", "sen_id": 230224}, {"caption": "a small hamster is inside a bag of cedar bedding", "video_id": "video10743", "sen_id": 230225}, {"caption": "the rat sitting in one snacks pocket and eating that snacks", "video_id": "video10743", "sen_id": 230226}, {"caption": "a little hamster is inside of a back filled with shavings and then jumps down onto an orange counter top", "video_id": "video10743", "sen_id": 230227}, {"caption": "a child is filming and making kissing noises to a pet hamster", "video_id": "video10743", "sen_id": 230228}, {"caption": "a hamster is shown in a bag of bedding while the owner talks to it", "video_id": "video10743", "sen_id": 230229}, {"caption": "the pet is just jumping out side its food packet", "video_id": "video10743", "sen_id": 230230}, {"caption": "an adorable gerbil jumps out of a bag while a person talks to it", "video_id": "video10743", "sen_id": 230231}, {"caption": "a hamster is cleaning himself and crawling around in bedding", "video_id": "video10743", "sen_id": 230232}, {"caption": "a small cute rat eating some food in home", "video_id": "video10743", "sen_id": 230233}, {"caption": "rat responding to the call by its master", "video_id": "video10743", "sen_id": 230234}, {"caption": "a young woman tries to draw the attention of a hamtergerbil", "video_id": "video10743", "sen_id": 230235}, {"caption": "a baby rabbit searching for a food in the middle of plastic bags", "video_id": "video10743", "sen_id": 230236}, {"caption": "a boy with a foreign accent talking to a pet hamster", "video_id": "video10743", "sen_id": 230237}, {"caption": "a black mammal inside an open cereal pack", "video_id": "video10743", "sen_id": 230238}, {"caption": "hamster playing in a bag of nesting material", "video_id": "video10743", "sen_id": 230239}, {"caption": "a man is standing on the red carpet promoting a film", "video_id": "video12913", "sen_id": 230240}, {"caption": "a large group of people all famous are standing outside of a train station tom hanks is shown", "video_id": "video12913", "sen_id": 230241}, {"caption": "tom hanks talks about his experiences doing different film", "video_id": "video12913", "sen_id": 230242}, {"caption": "a popular actor and famous director stand with a movie crew and laugh at something playing on a monitor the actor stands by a movie poster starring himself placed on the sidewalk and a child actor speaks outside by a roped barrier", "video_id": "video12913", "sen_id": 230243}, {"caption": "actors are being interviewed about working with a director", "video_id": "video12913", "sen_id": 230244}, {"caption": "a middle aged man wearing a black cap is having fun time as he laughs at something", "video_id": "video12913", "sen_id": 230245}, {"caption": "actors are being interviewed while on the red carpet", "video_id": "video12913", "sen_id": 230246}, {"caption": "celebrities are being interviewed on a red carpet", "video_id": "video12913", "sen_id": 230247}, {"caption": "a famous actor is talking from his shooting spot about his movie", "video_id": "video12913", "sen_id": 230248}, {"caption": "some people in a forest are doing things", "video_id": "video12913", "sen_id": 230249}, {"caption": "all persons are talking each other about the movie trailer", "video_id": "video12913", "sen_id": 230250}, {"caption": " haley joel osment and a narrator discuss working with steven spielberg", "video_id": "video12913", "sen_id": 230251}, {"caption": "interview with tom hanks on the street followed by a short talk with haley joel osment on the red carpet", "video_id": "video12913", "sen_id": 230252}, {"caption": "tom hanks and haley joel osment are interviewd about steven spielberg", "video_id": "video12913", "sen_id": 230253}, {"caption": "some people in a forest are doing things outside", "video_id": "video12913", "sen_id": 230254}, {"caption": "a man in a suit is being interviewed with several microphones pointing toward him with a movie poster behind him", "video_id": "video12913", "sen_id": 230255}, {"caption": "a boy is talking and wearing black color coat", "video_id": "video12913", "sen_id": 230256}, {"caption": "men in suit giving interview to someone and more peoples gathered in one place", "video_id": "video12913", "sen_id": 230257}, {"caption": "group of people are watching the latest presentation and giving comments", "video_id": "video12913", "sen_id": 230258}, {"caption": "some scenes from some movies are being shown", "video_id": "video12913", "sen_id": 230259}, {"caption": "a girl asks that you subscribe to her channel while she demonstrates her barbie doll look", "video_id": "video12513", "sen_id": 230260}, {"caption": "a cute girl dressed up like barbie with a blond wig and pink lipstick", "video_id": "video12513", "sen_id": 230261}, {"caption": "a woman is talking and smiling in a room full of streamers", "video_id": "video12513", "sen_id": 230262}, {"caption": "a woman with blonde hair and pink lips is waving with both hands", "video_id": "video12513", "sen_id": 230263}, {"caption": "a blonde woman with lots of makeup looking like barbie", "video_id": "video12513", "sen_id": 230264}, {"caption": "a woman with blonde hair and lots of makeup on gestures excitedly", "video_id": "video12513", "sen_id": 230265}, {"caption": "a woman is giving a thumbs up and then primping her hair", "video_id": "video12513", "sen_id": 230266}, {"caption": "a woman wearing a blonde wig is talking excitedly about changing her looks this is her barbie look", "video_id": "video12513", "sen_id": 230267}, {"caption": "a woman wearing pink lipstick with blonde hair is smiling and speaking to the camera", "video_id": "video12513", "sen_id": 230268}, {"caption": "a young woman uses her makeup techniques to make herself look like different people", "video_id": "video12513", "sen_id": 230269}, {"caption": "a woman with a blonde wig has transformed herself into barbie and is asking viewers for comments on her look", "video_id": "video12513", "sen_id": 230270}, {"caption": "a young women explaining about hair coloring", "video_id": "video12513", "sen_id": 230271}, {"caption": "a woman with blonds hair is making herself look like barbie", "video_id": "video12513", "sen_id": 230272}, {"caption": "a girl with make up explains about her hair style", "video_id": "video12513", "sen_id": 230273}, {"caption": "the celebrity is confident of her beauty", "video_id": "video12513", "sen_id": 230274}, {"caption": "a female in red dress wearing red and black is showing her eye brows", "video_id": "video12513", "sen_id": 230275}, {"caption": "a lady is talking and wearing pink color lip stic", "video_id": "video12513", "sen_id": 230276}, {"caption": "a woman with blonde hair is talking and using her hands a lot while talking", "video_id": "video12513", "sen_id": 230277}, {"caption": "a woman wearing a wig is standing in front of colorful pom poms", "video_id": "video12513", "sen_id": 230278}, {"caption": "a young girl does a vlog of looking like barbie", "video_id": "video12513", "sen_id": 230279}, {"caption": "a young man bends down from steps to lift water in his hand from the river while an older man in native dress emotionally protests", "video_id": "video10598", "sen_id": 230280}, {"caption": "a young man standing dressed in a white robe", "video_id": "video10598", "sen_id": 230281}, {"caption": "two south asian men in traditional garb are singing while music plays in the background", "video_id": "video10598", "sen_id": 230282}, {"caption": "a man picking up a certain dangerous item while another man cries", "video_id": "video10598", "sen_id": 230283}, {"caption": "a man in a white robe is walking with a large man with a mustache", "video_id": "video10598", "sen_id": 230284}, {"caption": "men are in a boat and one of the men is speaking in a foreign language", "video_id": "video10598", "sen_id": 230285}, {"caption": "exotic music plays in the background as a boy in white robes picks up water with his hands", "video_id": "video10598", "sen_id": 230286}, {"caption": "a scene alongside river ganga where an actor enacts a scene on the steps leading to the banks of the river", "video_id": "video10598", "sen_id": 230287}, {"caption": "two robed men perform religious ceremony outdoors", "video_id": "video10598", "sen_id": 230288}, {"caption": "actor sharukh khan take water using hand before a man", "video_id": "video10598", "sen_id": 230289}, {"caption": "a man in white dhoti is drunk and singing and another man is worried", "video_id": "video10598", "sen_id": 230290}, {"caption": "two man are talking with white color dress", "video_id": "video10598", "sen_id": 230291}, {"caption": "a man with white clothes and wine bottle in hand giving homage by offering river water", "video_id": "video10598", "sen_id": 230292}, {"caption": "the most celebrated hindi actor sharoo khan making performance in a hindi film", "video_id": "video10598", "sen_id": 230293}, {"caption": "a hindi movie clip acted by sharukkhan has be screened", "video_id": "video10598", "sen_id": 230294}, {"caption": "a man in white dress drunked heavily and his father convincing him", "video_id": "video10598", "sen_id": 230295}, {"caption": "two drunk men are talking one holds a bottle and dips his hand in a stream", "video_id": "video10598", "sen_id": 230296}, {"caption": "a man in white clothing is holding a bottle of alcohol", "video_id": "video10598", "sen_id": 230297}, {"caption": "a man with white dhoti is singing a song", "video_id": "video10598", "sen_id": 230298}, {"caption": "a fat guy in a robe is talking to a man", "video_id": "video10598", "sen_id": 230299}, {"caption": "a woman is in the kitchen cooking in a pan", "video_id": "video11380", "sen_id": 230300}, {"caption": "a young woman in a chef's coat shows how to roast oatmeal", "video_id": "video11380", "sen_id": 230301}, {"caption": "an indian woman in a food tv show showing how to cook with a pan", "video_id": "video11380", "sen_id": 230302}, {"caption": "the chef is showing how to toast grains in a pan", "video_id": "video11380", "sen_id": 230303}, {"caption": "in a kitchen a woman is talking about a recipe and showing how to mix what she is making in a pan", "video_id": "video11380", "sen_id": 230304}, {"caption": "a man in white dress puts some ingredients into a vessel and starts frying it", "video_id": "video11380", "sen_id": 230305}, {"caption": "a female chef wearing a white chef coat cooks some oats in a frying pan", "video_id": "video11380", "sen_id": 230306}, {"caption": "in a tv cookery program a nutritious item oats is made by a white dressed lady it is roasted up to changing color for crispy", "video_id": "video11380", "sen_id": 230307}, {"caption": "a woman is talking about how to cook a food on the stove", "video_id": "video11380", "sen_id": 230308}, {"caption": "a woman is demonstrating how to cook some oats on a stove", "video_id": "video11380", "sen_id": 230309}, {"caption": "in the kitchen a white dressing woman cooking with a pan", "video_id": "video11380", "sen_id": 230310}, {"caption": "a lady fried some grains on a tawa she is white color dressed", "video_id": "video11380", "sen_id": 230311}, {"caption": "i am very happy see this video cooking is women", "video_id": "video11380", "sen_id": 230312}, {"caption": "foreign lady cook mixing some seeds in the frying pan", "video_id": "video11380", "sen_id": 230313}, {"caption": "an indian chef lady is cooking what appears to be rice in a frying pan teaching how to do it properly", "video_id": "video11380", "sen_id": 230314}, {"caption": "in the kitchen there is a woman making a dish in the pan", "video_id": "video11380", "sen_id": 230315}, {"caption": "a lady chef frying some oats in the frying pan", "video_id": "video11380", "sen_id": 230316}, {"caption": "an indian chef works on roasting some oats in a small skillet", "video_id": "video11380", "sen_id": 230317}, {"caption": "a white dress girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11380", "sen_id": 230318}, {"caption": "a woman in a kitchen is cooking some rice", "video_id": "video11380", "sen_id": 230319}, {"caption": "a red and white volvo being put on display", "video_id": "video11557", "sen_id": 230320}, {"caption": "we are getting a view of a restored vw bus", "video_id": "video11557", "sen_id": 230321}, {"caption": "upbeat music playing while the video is showing both inside and out of a restored vw volkswagon van", "video_id": "video11557", "sen_id": 230322}, {"caption": "a vw bus is being previewed on the inside and outside", "video_id": "video11557", "sen_id": 230323}, {"caption": "a video graphic shot from the in and outside of a red and white vehicle on a clear day", "video_id": "video11557", "sen_id": 230324}, {"caption": "there is a van parked in front of a building", "video_id": "video11557", "sen_id": 230325}, {"caption": "music plays while pictures of the interior of a volkswagen bus are shown", "video_id": "video11557", "sen_id": 230326}, {"caption": "its small vehicle in which we have all the facility the vehicle is in red color", "video_id": "video11557", "sen_id": 230327}, {"caption": "a red and white volks wagon bus and its insides", "video_id": "video11557", "sen_id": 230328}, {"caption": " panning shots of an old restored vw bus", "video_id": "video11557", "sen_id": 230329}, {"caption": "a men explainging car is displayed with its features", "video_id": "video11557", "sen_id": 230330}, {"caption": "photos of the inside and outside of a vw van", "video_id": "video11557", "sen_id": 230331}, {"caption": "a terrible pop song plays while we see the attributes of a vintage vw van from the sixties", "video_id": "video11557", "sen_id": 230332}, {"caption": "images of the outside and inside of a volks wagon van", "video_id": "video11557", "sen_id": 230333}, {"caption": "a person is showing classic van and talking about its features", "video_id": "video11557", "sen_id": 230334}, {"caption": "the interior of a red van is shown which remains parked on the road", "video_id": "video11557", "sen_id": 230335}, {"caption": "a homey red-and-white van has a round logo on top of a chevron between the front headlights and is parked in front of a tan buildings with moldings", "video_id": "video11557", "sen_id": 230336}, {"caption": "the interior of a red and white mini van the interior has a a blue and green scheme", "video_id": "video11557", "sen_id": 230337}, {"caption": "a vehicle is being shown outside someone s house", "video_id": "video11557", "sen_id": 230338}, {"caption": "a volks wagon van is being photo graphed outside", "video_id": "video11557", "sen_id": 230339}, {"caption": "a baseball player runs into the crowd to catch a ball", "video_id": "video10496", "sen_id": 230340}, {"caption": "a baseball player wearing the number 44 catches a ball as he leaps in to the stands", "video_id": "video10496", "sen_id": 230341}, {"caption": "a baseball player makes a spectacular catch by leaping into the stands", "video_id": "video10496", "sen_id": 230342}, {"caption": "a baseball player jumps onto a wall to catch a fly ball eventually landing in the crowd of people", "video_id": "video10496", "sen_id": 230343}, {"caption": "a baseball player tries to make a catch by jumping into a crowd of onlookers", "video_id": "video10496", "sen_id": 230344}, {"caption": "a baseball field showing home runs a baseball player trying to catch the ball falling over the crowd", "video_id": "video10496", "sen_id": 230345}, {"caption": "a fileder caught the ball standing on the fence in a baseball game", "video_id": "video10496", "sen_id": 230346}, {"caption": "cricket players are performing action on the ground", "video_id": "video10496", "sen_id": 230347}, {"caption": "a one of rugby player catch the ball in the audience gallery", "video_id": "video10496", "sen_id": 230348}, {"caption": "its a base ball game in which the player try to catch the ball crossing the boarder", "video_id": "video10496", "sen_id": 230349}, {"caption": "a cricketer trying his best to catch the sixer ball", "video_id": "video10496", "sen_id": 230350}, {"caption": "one baseball player catch the ball in the crowd", "video_id": "video10496", "sen_id": 230351}, {"caption": "in the base ball game a player is catch ball in the audience gallery", "video_id": "video10496", "sen_id": 230352}, {"caption": "a beautiful catch in the baseball match where the fielder jumps into the audience gallery and catche the ball and throws", "video_id": "video10496", "sen_id": 230353}, {"caption": "a baseball player #44 for the chicago cubs is standing on a low rail trying to catch a baseball", "video_id": "video10496", "sen_id": 230354}, {"caption": "two team players are playing base ball on ground", "video_id": "video10496", "sen_id": 230355}, {"caption": "two teams playing baseball very interestingly in grouns one player take catch in crowd", "video_id": "video10496", "sen_id": 230356}, {"caption": "professional baseball players make unbelievable plays during games they are playing in", "video_id": "video10496", "sen_id": 230357}, {"caption": "two teams are playing a funny base ball game at a ground", "video_id": "video10496", "sen_id": 230358}, {"caption": "some baseball players are doing their best to win", "video_id": "video10496", "sen_id": 230359}, {"caption": "a dog plays with and stares at a tiny pumpkin", "video_id": "video11410", "sen_id": 230360}, {"caption": "a dog is trying to play with a small pumpkin", "video_id": "video11410", "sen_id": 230361}, {"caption": "a small cute dog is playing with a vegetable on a kitchen floor", "video_id": "video11410", "sen_id": 230362}, {"caption": "a small pup in light brown color is playing with an yellow vegetable", "video_id": "video11410", "sen_id": 230363}, {"caption": "a dog is playing with a small pumpkin and barking at it", "video_id": "video11410", "sen_id": 230364}, {"caption": "a small dog barking and staring in front of a mini pumpkin", "video_id": "video11410", "sen_id": 230365}, {"caption": "a small dog is playing with a little pumpkin", "video_id": "video11410", "sen_id": 230366}, {"caption": "a small dog playing with a yellow coloured vegetable", "video_id": "video11410", "sen_id": 230367}, {"caption": "the dog is playing with the fruit while burking", "video_id": "video11410", "sen_id": 230368}, {"caption": "a dog plays with a small pumpkin on the ground", "video_id": "video11410", "sen_id": 230369}, {"caption": "a dog lying on floor with vegetable on floor playing barking displaying on screen", "video_id": "video11410", "sen_id": 230370}, {"caption": "a corgi puppy tries to fight a small pumpkin", "video_id": "video11410", "sen_id": 230371}, {"caption": "a young puppy plays on a tile floor with a miniature pumpkin", "video_id": "video11410", "sen_id": 230372}, {"caption": "the small puppy is playing on the ground", "video_id": "video11410", "sen_id": 230373}, {"caption": "a puppy plays with a pumpkin and bites at it", "video_id": "video11410", "sen_id": 230374}, {"caption": "an adorable dog barks at a tiny pumpkin", "video_id": "video11410", "sen_id": 230375}, {"caption": "a puppy dog with a belt on its neck is playing with a tomato in the living room", "video_id": "video11410", "sen_id": 230376}, {"caption": "a dog is playing with a tomato in the home", "video_id": "video11410", "sen_id": 230377}, {"caption": "a puppy playing with small pumpkin", "video_id": "video11410", "sen_id": 230378}, {"caption": "a cat is looking at a small pumpkin", "video_id": "video11410", "sen_id": 230379}, {"caption": "a video of several different people using tools", "video_id": "video10129", "sen_id": 230380}, {"caption": "a man in a white shirt doing construction", "video_id": "video10129", "sen_id": 230381}, {"caption": "visit a local shop where local inventors are working hard to create the next big thing", "video_id": "video10129", "sen_id": 230382}, {"caption": "a graphic showing handing hammering sanding and buffing several different object on a work table in a work shed", "video_id": "video10129", "sen_id": 230383}, {"caption": "a man is holding something using wood and power tools", "video_id": "video10129", "sen_id": 230384}, {"caption": "some one busy in doing art work on the table", "video_id": "video10129", "sen_id": 230385}, {"caption": "a man is hammering and drilling wood to create something", "video_id": "video10129", "sen_id": 230386}, {"caption": "a person is using multiple tools to work on a device", "video_id": "video10129", "sen_id": 230387}, {"caption": "using the knife and the hammer the man works on something", "video_id": "video10129", "sen_id": 230388}, {"caption": "a video of someone building a small playset of some sort", "video_id": "video10129", "sen_id": 230389}, {"caption": "there is a man making toys in a garage", "video_id": "video10129", "sen_id": 230390}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video10129", "sen_id": 230391}, {"caption": "a person is using woodworking tools to make play items for miniature playground", "video_id": "video10129", "sen_id": 230392}, {"caption": "a old man doing carpentary work inside hammering nail wood displaying on screen", "video_id": "video10129", "sen_id": 230393}, {"caption": "different kinds of toys and musical instruments are made here", "video_id": "video10129", "sen_id": 230394}, {"caption": "there is a man repairing a machine in the room", "video_id": "video10129", "sen_id": 230395}, {"caption": "a man is manufacturing a craft in a small work room", "video_id": "video10129", "sen_id": 230396}, {"caption": "one man make an hand made art on", "video_id": "video10129", "sen_id": 230397}, {"caption": "a person with hammer drilling machine doing carpenter work in hand holding displaying on screen", "video_id": "video10129", "sen_id": 230398}, {"caption": "a person is showing the work shop for product creation", "video_id": "video10129", "sen_id": 230399}, {"caption": "a man and a women are sitting at a table working on something and afterwards they are in the car arguing", "video_id": "video10676", "sen_id": 230400}, {"caption": "a commentary about working on a movie specifically the female lead", "video_id": "video10676", "sen_id": 230401}, {"caption": "a couple are in a home working at a desk with many varied items and then they are driving in a car", "video_id": "video10676", "sen_id": 230402}, {"caption": "see clips from the timeless classic still loved by millions the original terminator", "video_id": "video10676", "sen_id": 230403}, {"caption": "a woman in a pink blouse is handing a silver container to a man in a grey shirt and the two are then in an automobile", "video_id": "video10676", "sen_id": 230404}, {"caption": "an actor discusses his role and his view of an actress he worked with on a film", "video_id": "video10676", "sen_id": 230405}, {"caption": "the two couples are trying to repair some machine", "video_id": "video10676", "sen_id": 230406}, {"caption": "a wounded man is being dressed by a lady and later she is taken by the same man in a car", "video_id": "video10676", "sen_id": 230407}, {"caption": "a man and a woman is freaking out in a car", "video_id": "video10676", "sen_id": 230408}, {"caption": "a man commenting on the generosity of an actress while a movie clip plays starring the actress", "video_id": "video10676", "sen_id": 230409}, {"caption": "a man talking about linda hamilton while a clip pays of her in her role in the terminator movie", "video_id": "video10676", "sen_id": 230410}, {"caption": "a man and a woman in various movie scenes while a man narrates", "video_id": "video10676", "sen_id": 230411}, {"caption": "a girl takes the torch and a man helps her to open it", "video_id": "video10676", "sen_id": 230412}, {"caption": "the man is describing a movie with a blonde haired woman and brown haired man in it", "video_id": "video10676", "sen_id": 230413}, {"caption": "a man and a women together living life", "video_id": "video10676", "sen_id": 230414}, {"caption": "a narrator talks a generous female who just happens also to be actor", "video_id": "video10676", "sen_id": 230415}, {"caption": "an actor speaks about his experience working with a female co-star in a film stating that she is the most generous person", "video_id": "video10676", "sen_id": 230416}, {"caption": "man got many hurt he has hurt in right hand then on shoulder", "video_id": "video10676", "sen_id": 230417}, {"caption": "as movie scenes play of two actors in the terminator the male actor describes the actress as being the most generous person in his life", "video_id": "video10676", "sen_id": 230418}, {"caption": "a guy in the terminator is from the future", "video_id": "video10676", "sen_id": 230419}, {"caption": "a motorcycle rider crashes into two bicyclists in a sharp curve", "video_id": "video11216", "sen_id": 230420}, {"caption": "a man on a motorcycle runs into bicyclists", "video_id": "video11216", "sen_id": 230421}, {"caption": "a person on a red motorcycle crashes into to individuals on bicycles", "video_id": "video11216", "sen_id": 230422}, {"caption": "a motorcyclist wearing a white helmet and riding a red bike on a mountainside road crashes into two bicyclists ahead causing all three to fall while the motorcycle continues for a bit before stopping", "video_id": "video11216", "sen_id": 230423}, {"caption": "a person on a motorcycle clipping and running over two cyclists", "video_id": "video11216", "sen_id": 230424}, {"caption": "a bike rider hits a cycle and falls down", "video_id": "video11216", "sen_id": 230425}, {"caption": "a ride is riding bike very fast and he went and hits the person who was riding bicycle and throws him down", "video_id": "video11216", "sen_id": 230426}, {"caption": "one man riding fast and crash with cycler", "video_id": "video11216", "sen_id": 230427}, {"caption": "a motorcyclist rides down the road and crashes in slow motion", "video_id": "video11216", "sen_id": 230428}, {"caption": "the rider was riding the bike carefully but he collided with a cyclist and fall down", "video_id": "video11216", "sen_id": 230429}, {"caption": "here we can see three riders dashing with each other", "video_id": "video11216", "sen_id": 230430}, {"caption": "motorcycle race motorbike hits cycle and damaged rider", "video_id": "video11216", "sen_id": 230431}, {"caption": "a man riding in the bike and he hit it into a two person who going by bicycle", "video_id": "video11216", "sen_id": 230432}, {"caption": "a man in red bike derives along the road and hit 2 people in bicycle one guy in bicycle wore blue shit", "video_id": "video11216", "sen_id": 230433}, {"caption": "the young man is riding the bike so rashly it hit with some other bike and he fell down", "video_id": "video11216", "sen_id": 230434}, {"caption": "a person riding bike in a road and hit by a bicycle and got acident", "video_id": "video11216", "sen_id": 230435}, {"caption": "a man on a motorcycle collides with a man on a bicycle then continues going forward and collides with a second man on a bicycle", "video_id": "video11216", "sen_id": 230436}, {"caption": "a motorcycle rider speeding along a road crashes in to two bicycle riders on the same road", "video_id": "video11216", "sen_id": 230437}, {"caption": "a man in a motorcycle crashes into a man on a bike and falls", "video_id": "video11216", "sen_id": 230438}, {"caption": "in slow mothing you can see a mother cycle come around a corner and smash into the back of a bicycle", "video_id": "video11216", "sen_id": 230439}, {"caption": "a semi truck with other cars on it is driving across the interior of a warehouse space", "video_id": "video12246", "sen_id": 230440}, {"caption": "a truck hauls sports cars from a highway into a covered area", "video_id": "video12246", "sen_id": 230441}, {"caption": "a black truck pulls a trailer lined with race cars into a garage", "video_id": "video12246", "sen_id": 230442}, {"caption": "minature trailers carying minature cards are driving on a road", "video_id": "video12246", "sen_id": 230443}, {"caption": "a video showing semi-trucks hauling cars around an indoor facility", "video_id": "video12246", "sen_id": 230444}, {"caption": "a long truck with full of sports car is getting inside a warehouse", "video_id": "video12246", "sen_id": 230445}, {"caption": "long trailer brings cars to the huge factory", "video_id": "video12246", "sen_id": 230446}, {"caption": "a semi truck drives around pulling several race cars in tow", "video_id": "video12246", "sen_id": 230447}, {"caption": "miniature semi trucks hitched to trailers with miniature cars on them", "video_id": "video12246", "sen_id": 230448}, {"caption": "a truck noisily drives into a warehouse loaded with cars", "video_id": "video12246", "sen_id": 230449}, {"caption": "there is a truck moving in to the company", "video_id": "video12246", "sen_id": 230450}, {"caption": "a variety of different style trucks driving by", "video_id": "video12246", "sen_id": 230451}, {"caption": "a truck carrying cars rolls through a grand facility with a skylight roof", "video_id": "video12246", "sen_id": 230452}, {"caption": "a semi truck is driving through a warehouse", "video_id": "video12246", "sen_id": 230453}, {"caption": "several tractor trailer trucks are performing tasks one is coming ouy of a construction site whle another is hauling red", "video_id": "video12246", "sen_id": 230454}, {"caption": "there is a truck moving on the road with vehicles", "video_id": "video12246", "sen_id": 230455}, {"caption": "the cars roll on the tipper and arrange order", "video_id": "video12246", "sen_id": 230456}, {"caption": "in a warehouse several different types of cars on a car hauler", "video_id": "video12246", "sen_id": 230457}, {"caption": "in a truck 5-10 cars are carrying to another place it is factory wearouse", "video_id": "video12246", "sen_id": 230458}, {"caption": "some person is filming a bunch of cars", "video_id": "video12246", "sen_id": 230459}, {"caption": "a cat is growling at a kid in a scary costume outside a glass door", "video_id": "video11188", "sen_id": 230460}, {"caption": "a cat screams at a young boy in a mask", "video_id": "video11188", "sen_id": 230461}, {"caption": "a cat is acting very viciously torwards a playful person outisepp", "video_id": "video11188", "sen_id": 230462}, {"caption": "a cat is playing with the person that is right outside", "video_id": "video11188", "sen_id": 230463}, {"caption": "a small child in a mask scares his pet cat", "video_id": "video11188", "sen_id": 230464}, {"caption": "home video of cat angry with person on other side of glass", "video_id": "video11188", "sen_id": 230465}, {"caption": "a man films a cat yelling at a costumed character", "video_id": "video11188", "sen_id": 230466}, {"caption": "there is a brown cat playing the in the house", "video_id": "video11188", "sen_id": 230467}, {"caption": "a cat inside the house doing some actions by seeing the man who is outside the door", "video_id": "video11188", "sen_id": 230468}, {"caption": "a dog waits by a door to attack a person or thing in the window", "video_id": "video11188", "sen_id": 230469}, {"caption": "cat is very angry attack the man but between door", "video_id": "video11188", "sen_id": 230470}, {"caption": "a man talking and cat was shouting at the man outside the door", "video_id": "video11188", "sen_id": 230471}, {"caption": "a person is showing cat being funny in front of the glass door", "video_id": "video11188", "sen_id": 230472}, {"caption": "cat is playing with a boy who is outside the house", "video_id": "video11188", "sen_id": 230473}, {"caption": "a cat trying to attack a person with a mask threw a glass door", "video_id": "video11188", "sen_id": 230474}, {"caption": "a cat in brown colour walking shouting a boy out side playing behind glass", "video_id": "video11188", "sen_id": 230475}, {"caption": "a person outside a house is teasing a dog", "video_id": "video11188", "sen_id": 230476}, {"caption": "some womens are doing cat walk in front of big crowd", "video_id": "video11188", "sen_id": 230477}, {"caption": "a cat is scared of a child in a mask", "video_id": "video11188", "sen_id": 230478}, {"caption": "a little kittens see a person and talking and meowing", "video_id": "video11188", "sen_id": 230479}, {"caption": "a man is walking through a store and is looking around", "video_id": "video12507", "sen_id": 230480}, {"caption": "a man with a beard takes a selfie with heart toys then continues shopping at the supermarket", "video_id": "video12507", "sen_id": 230481}, {"caption": "a man takes a video of himself walking around a convenience store", "video_id": "video12507", "sen_id": 230482}, {"caption": "a white guy in a green shirt is shopping in store", "video_id": "video12507", "sen_id": 230483}, {"caption": "a man standing in front of stuffed animals and walking around a drugstore", "video_id": "video12507", "sen_id": 230484}, {"caption": "a white man with a beard and mustache wearing a dark colored hat walks through the isles of a big box store", "video_id": "video12507", "sen_id": 230485}, {"caption": "a man is walking around a retail store posing in front of stuffed animals and is preparing to buy a box that is labeled go", "video_id": "video12507", "sen_id": 230486}, {"caption": "a man in a store walking down the aisle", "video_id": "video12507", "sen_id": 230487}, {"caption": "a man is wearing a cap and walking in the store", "video_id": "video12507", "sen_id": 230488}, {"caption": "a man wearing a cap poses in front of a heart shaped toys", "video_id": "video12507", "sen_id": 230489}, {"caption": "a guy casually poses in front of some stuffed hearts", "video_id": "video12507", "sen_id": 230490}, {"caption": "a man with beard and a black cap is walking on the aisle of a store", "video_id": "video12507", "sen_id": 230491}, {"caption": "a man walking around a store trying out a a selfie go stick", "video_id": "video12507", "sen_id": 230492}, {"caption": "a man with a hat is posing next to two heart-shaped stuffed animals a man is then walking", "video_id": "video12507", "sen_id": 230493}, {"caption": "a man in a grey shirt poses next to heart shaped plush toys before walking down a store isle", "video_id": "video12507", "sen_id": 230494}, {"caption": "man wanders around store appraising various items for sale", "video_id": "video12507", "sen_id": 230495}, {"caption": "a man with a beard wearing a baseball hat squats and poses by a red and a pink stuffed valentine heart", "video_id": "video12507", "sen_id": 230496}, {"caption": "guy in a grey shirt with dark hat a standing in front of stuffed hearts and then gets up and starts walking with a product in his hand", "video_id": "video12507", "sen_id": 230497}, {"caption": "a man sits in front of stuffed animals and moves down the aisle of a grocery store", "video_id": "video12507", "sen_id": 230498}, {"caption": "a man in a hat and beard is walking around", "video_id": "video12507", "sen_id": 230499}, {"caption": "a review of a movie with a little girl who has a make believe friend", "video_id": "video10844", "sen_id": 230500}, {"caption": "a little girl starts to speak to an unknown force that teaches her to be violent", "video_id": "video10844", "sen_id": 230501}, {"caption": "children playing in the lawn next to a sprinkler", "video_id": "video10844", "sen_id": 230502}, {"caption": "small kids running around in the yard playing water activities then a woman falls through the ceiling", "video_id": "video10844", "sen_id": 230503}, {"caption": "a yard with a sprinkler in it and a woman falls through the attic", "video_id": "video10844", "sen_id": 230504}, {"caption": "a guy talks about a movie as clips from the movie play in the background", "video_id": "video10844", "sen_id": 230505}, {"caption": "children play on a large front lawn with trees under a curving sprinkler and floating bubbles a girl talks a girl wears a yellow floatation toy shaped like a tiger and a mother falls through a treehouse floor onto a stone pathway", "video_id": "video10844", "sen_id": 230506}, {"caption": "many children are playing on the ground and a little girl is talking to someone", "video_id": "video10844", "sen_id": 230507}, {"caption": "children are busy playing in the park area", "video_id": "video10844", "sen_id": 230508}, {"caption": "in the hotel front the customers are spent their time in very well", "video_id": "video10844", "sen_id": 230509}, {"caption": "group of childrens playing in garden trees beside girl falling down from up displaying on screen", "video_id": "video10844", "sen_id": 230510}, {"caption": "all kids are playing each other on a green grass land", "video_id": "video10844", "sen_id": 230511}, {"caption": "a group of little children where playing", "video_id": "video10844", "sen_id": 230512}, {"caption": "under green trees a group of children playing games and a lady came near to the child falls from wooden ground on a floor", "video_id": "video10844", "sen_id": 230513}, {"caption": "a man describes a show about a mysterious imaginary friend named drill who influences children to commit bad acts", "video_id": "video10844", "sen_id": 230514}, {"caption": "a little girl talks to an invisible friend as other children dance around the sprinkler", "video_id": "video10844", "sen_id": 230515}, {"caption": "there are some kids playing in front of the house", "video_id": "video10844", "sen_id": 230516}, {"caption": "a group of kids playing in the sprinkler with a mother asking one girl all by herself who she is talking to", "video_id": "video10844", "sen_id": 230517}, {"caption": "a little girl explaining to her mom about her imaginary friend that makes harmful rules to her to follow", "video_id": "video10844", "sen_id": 230518}, {"caption": "children are playing in the front lawn with water", "video_id": "video10844", "sen_id": 230519}, {"caption": "a yellow kite is flying over a snowy field with no people", "video_id": "video10925", "sen_id": 230520}, {"caption": "a yellow leaf falls from a tree and floats to the ground", "video_id": "video10925", "sen_id": 230521}, {"caption": "there is something yellow falling down in the sky and a tree without leafs", "video_id": "video10925", "sen_id": 230522}, {"caption": "a golden leaf blows in the wind and a tree grows from the ground", "video_id": "video10925", "sen_id": 230523}, {"caption": "a yellow leaf floats across a grey background and then a tree starts to sprout up from the ground", "video_id": "video10925", "sen_id": 230524}, {"caption": "a tall skinny tree with no leaves stands alone and the sun is shining very bright", "video_id": "video10925", "sen_id": 230525}, {"caption": "there is a yellow leaf falling down from a tree", "video_id": "video10925", "sen_id": 230526}, {"caption": "a yellow leaf blows about with white background then a tree grows up", "video_id": "video10925", "sen_id": 230527}, {"caption": "somber music with piano and strings plays while a yellow leaf floats slowly through the air in a backdrop of a colorless", "video_id": "video10925", "sen_id": 230528}, {"caption": "a leaf is flying from height from floor", "video_id": "video10925", "sen_id": 230529}, {"caption": "as sun shines the tree grew taller and taller after a fallen leaf sunk into the earth", "video_id": "video10925", "sen_id": 230530}, {"caption": "a tree in a lonely land is growing stubbornly", "video_id": "video10925", "sen_id": 230531}, {"caption": "tree photos being displayed on the screen", "video_id": "video10925", "sen_id": 230532}, {"caption": "a leaf flies and falls down on the ground and a hot sun is there with a single tree with no greens", "video_id": "video10925", "sen_id": 230533}, {"caption": "a yellow butterfly flying up on screen and a tress without leaves", "video_id": "video10925", "sen_id": 230534}, {"caption": "a truck is driving down a lonely road", "video_id": "video10925", "sen_id": 230535}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10925", "sen_id": 230536}, {"caption": "a yellow piece of paper is floating in the air on a white background", "video_id": "video10925", "sen_id": 230537}, {"caption": "a yellow paper floats through the air then a tree starts to grow", "video_id": "video10925", "sen_id": 230538}, {"caption": "an animated process of a leaf falling and slowly forming into a tree", "video_id": "video10925", "sen_id": 230539}, {"caption": "a person is speaking about meerkats and their habitat while a nature scene is displayed", "video_id": "video10862", "sen_id": 230540}, {"caption": "a man is speaking about the dominance of meerkats while an open field is displayed", "video_id": "video10862", "sen_id": 230541}, {"caption": "a grassy wildland with meerkats running off into the distance", "video_id": "video10862", "sen_id": 230542}, {"caption": "a group of meerkats are going off into the distance on the grassland", "video_id": "video10862", "sen_id": 230543}, {"caption": "a man talks about meercats while walking around outside", "video_id": "video10862", "sen_id": 230544}, {"caption": "a video that is talking about muircats in the wild", "video_id": "video10862", "sen_id": 230545}, {"caption": "the sun sits low over a field of dry brush and a few bushes", "video_id": "video10862", "sen_id": 230546}, {"caption": "a lush landcape of green is shown with a sunny sky", "video_id": "video10862", "sen_id": 230547}, {"caption": "a person is recording a sha field of dry land", "video_id": "video10862", "sen_id": 230548}, {"caption": "a hillside covered by low scrubby bushes has a trail running right up the middle", "video_id": "video10862", "sen_id": 230549}, {"caption": "there is a man explains about a land", "video_id": "video10862", "sen_id": 230550}, {"caption": "a man behind a camera recording footage in an outdoor safari-like setting with the bright sun above focusing on meerkats heading out into the distance while commenting that changes of dominance is uncommon", "video_id": "video10862", "sen_id": 230551}, {"caption": "a man is filming bushland and discussing meerkats", "video_id": "video10862", "sen_id": 230552}, {"caption": "a man standing outdoors talks about merecat s trait of dominance", "video_id": "video10862", "sen_id": 230553}, {"caption": "a waste land are displaying and a man is speaking", "video_id": "video10862", "sen_id": 230554}, {"caption": "a green field with a dirt road going up the hill", "video_id": "video10862", "sen_id": 230555}, {"caption": "forest area shown deeply plats are there", "video_id": "video10862", "sen_id": 230556}, {"caption": "a way to walk by humans in a forest", "video_id": "video10862", "sen_id": 230557}, {"caption": "a person explaining about changes of dominance", "video_id": "video10862", "sen_id": 230558}, {"caption": "a desert scene with a man narrating about the lifespan of the meerkat", "video_id": "video10862", "sen_id": 230559}, {"caption": "a man giving a training video to correctly perform the exercise", "video_id": "video11658", "sen_id": 230560}, {"caption": "a man wearing a teeshirt and black shoprts explaning single leg mini hurdle jumps", "video_id": "video11658", "sen_id": 230561}, {"caption": "a man in red shoes prepares for an activity on a soccer field", "video_id": "video11658", "sen_id": 230562}, {"caption": "a man in a field explains how to jump mini hurdles", "video_id": "video11658", "sen_id": 230563}, {"caption": "a young man demonstrates an atheletic drill", "video_id": "video11658", "sen_id": 230564}, {"caption": "a man in black shorts is standing on the ground and explaining something", "video_id": "video11658", "sen_id": 230565}, {"caption": "there is a man practicing on the ground", "video_id": "video11658", "sen_id": 230566}, {"caption": "a man in shorts standing on the ground and explaining about using the equipments", "video_id": "video11658", "sen_id": 230567}, {"caption": "a man video-graphing about an exercise for legs", "video_id": "video11658", "sen_id": 230568}, {"caption": "a man is demostrating how to do turtle jumps", "video_id": "video11658", "sen_id": 230569}, {"caption": "a person in grey t-shirt and black shorts is standing in plane ground", "video_id": "video11658", "sen_id": 230570}, {"caption": "there is a tshirt man talking about practice", "video_id": "video11658", "sen_id": 230571}, {"caption": "the player is explaining the steps on the green ground", "video_id": "video11658", "sen_id": 230572}, {"caption": "the sports person how do we need to take practice in crossing the hurdle", "video_id": "video11658", "sen_id": 230573}, {"caption": "a huddles race trainer giving may important tips of huddles game on a trial ground", "video_id": "video11658", "sen_id": 230574}, {"caption": "a man is demonstrating how to do a special type of exercise", "video_id": "video11658", "sen_id": 230575}, {"caption": "a men is jumping between stands which are kept in the garden", "video_id": "video11658", "sen_id": 230576}, {"caption": "a man wearing shorts is explaining how to jump hurdles", "video_id": "video11658", "sen_id": 230577}, {"caption": "a man wearing black shorts ad a gray shirt with red writing gives instruction on how to do mini hurdles", "video_id": "video11658", "sen_id": 230578}, {"caption": "guy in grey tshirt talking about the workout moves", "video_id": "video11658", "sen_id": 230579}, {"caption": "a pharmacist sitting in a laboratory talking about medications", "video_id": "video10344", "sen_id": 230580}, {"caption": "a medical student is explaining about his project in enzymes and gene expression", "video_id": "video10344", "sen_id": 230581}, {"caption": "a men talking on some experiments in his laboratory", "video_id": "video10344", "sen_id": 230582}, {"caption": "a man discusses working on a project with professor phil molyneux in plant molecular biology", "video_id": "video10344", "sen_id": 230583}, {"caption": "a man is talking in the lab about a biology", "video_id": "video10344", "sen_id": 230584}, {"caption": "a pharmacist is talking about medicines and its use", "video_id": "video10344", "sen_id": 230585}, {"caption": "a man in white dressing talking nearby a shelf", "video_id": "video10344", "sen_id": 230586}, {"caption": "scientist demonstrates a experiments in the laboratory and test", "video_id": "video10344", "sen_id": 230587}, {"caption": "a doctor explains about his bio technology project about bio genetics", "video_id": "video10344", "sen_id": 230588}, {"caption": "a doctor is explains about his project regarding biology", "video_id": "video10344", "sen_id": 230589}, {"caption": "there is a scientist talking from a lab", "video_id": "video10344", "sen_id": 230590}, {"caption": "a man with a white lab suit speaks about his project in a room filled with medicine", "video_id": "video10344", "sen_id": 230591}, {"caption": "a man wearing white dress talking about something in lab", "video_id": "video10344", "sen_id": 230592}, {"caption": "a scientist discusses plant biotechnology with enzymes and genes of plants", "video_id": "video10344", "sen_id": 230593}, {"caption": "a doctor gives the heath tips to patient", "video_id": "video10344", "sen_id": 230594}, {"caption": "a man wearing a white coat is talking in the pharmacy wiith bottles and prescriptions behind him", "video_id": "video10344", "sen_id": 230595}, {"caption": "a man in a white lab coat is speaking", "video_id": "video10344", "sen_id": 230596}, {"caption": "a man in a lab talking about a biology", "video_id": "video10344", "sen_id": 230597}, {"caption": "a man in a white coat is talking about a project on biology", "video_id": "video10344", "sen_id": 230598}, {"caption": "bearded guy in lab coat talking to the camera", "video_id": "video10344", "sen_id": 230599}, {"caption": "a woman with her hair pulled up wearing a symmetrical striped dress with thin straps hops in place while lifting a cellphone to her ear", "video_id": "video12161", "sen_id": 230600}, {"caption": "a woman who is frantically calling someone in a tv show or movie", "video_id": "video12161", "sen_id": 230601}, {"caption": "a woman in a tank top makes a phone call and begins hopping up and down", "video_id": "video12161", "sen_id": 230602}, {"caption": "girl dialing number and waiting for someone to pick up", "video_id": "video12161", "sen_id": 230603}, {"caption": "a woman talking on the phone and jumping up and down", "video_id": "video12161", "sen_id": 230604}, {"caption": "there is a woman talking with her mobile", "video_id": "video12161", "sen_id": 230605}, {"caption": "a lady is talking by mobile ohine", "video_id": "video12161", "sen_id": 230606}, {"caption": "a woman in a multi colored tank top with hair in a bun jumping up and down while on cell phone", "video_id": "video12161", "sen_id": 230607}, {"caption": "a woman dressed in lingerie speaks by phone while jumping on one leg", "video_id": "video12161", "sen_id": 230608}, {"caption": "a fat skank is talking on her phone in a room", "video_id": "video12161", "sen_id": 230609}, {"caption": "there is a woman talking with mobile phone", "video_id": "video12161", "sen_id": 230610}, {"caption": "a lady is talking with mobile phone", "video_id": "video12161", "sen_id": 230611}, {"caption": "a young woman inside a home is dialing on a cellphone", "video_id": "video12161", "sen_id": 230612}, {"caption": "a girl picking up a mobile call with a tense and moving", "video_id": "video12161", "sen_id": 230613}, {"caption": "a fat woman is talking on her phone", "video_id": "video12161", "sen_id": 230614}, {"caption": "a woman is making a telephone call while jumping up and down", "video_id": "video12161", "sen_id": 230615}, {"caption": " wearing a tank top with her hair tied in a pony tail calling someone on her cell phone", "video_id": "video12161", "sen_id": 230616}, {"caption": "a lady receiving a phone call and getting disappointed before she calls", "video_id": "video12161", "sen_id": 230617}, {"caption": "sexy brunette calling on phone in front of camera", "video_id": "video12161", "sen_id": 230618}, {"caption": "a woman in underwear is talking on a phone", "video_id": "video12161", "sen_id": 230619}, {"caption": "a woman talks about how she adjusting a white wig", "video_id": "video10479", "sen_id": 230620}, {"caption": "a lady in a pink room demonstrates braiding her white blonde wig", "video_id": "video10479", "sen_id": 230621}, {"caption": "a woman with white hair shows a camera how to do a hairstyle", "video_id": "video10479", "sen_id": 230622}, {"caption": "a woman is telling us how to do a hairstyle", "video_id": "video10479", "sen_id": 230623}, {"caption": "a blonde girl gives instructions on how to do a ponytail with a wig", "video_id": "video10479", "sen_id": 230624}, {"caption": "there is a woman combing her hair in front of a mirror", "video_id": "video10479", "sen_id": 230625}, {"caption": "a narrator describing how to apply a platinum blond lace front wig while a pretty cuacasion model demonstrates it", "video_id": "video10479", "sen_id": 230626}, {"caption": "a girl giving a tutorial of how to do a certain hair style and explaining hair parting and hair ties and bobby pins", "video_id": "video10479", "sen_id": 230627}, {"caption": "teenage girl fixing and styling her blonde wig into a ponytail", "video_id": "video10479", "sen_id": 230628}, {"caption": "a girl finger in head making hair style for make up beauty facial look displaying on screen", "video_id": "video10479", "sen_id": 230629}, {"caption": "a woman narrates and demonstrates how to style a white wig", "video_id": "video10479", "sen_id": 230630}, {"caption": "a lady with blonde hair teaching others how to do a hair style", "video_id": "video10479", "sen_id": 230631}, {"caption": "a lady is showing how to gather and section hair to place in an elastic band", "video_id": "video10479", "sen_id": 230632}, {"caption": "a blond girl with black ponytail holders doing her hair", "video_id": "video10479", "sen_id": 230633}, {"caption": "sexy brunette putting on hair style and showing different ways", "video_id": "video10479", "sen_id": 230634}, {"caption": "an attractive girl with silvery blond and long hair shows how to do a certain hairstyle on her own commenting what she is doing in each step", "video_id": "video10479", "sen_id": 230635}, {"caption": "a girl doing dressing on her hair and explaining it", "video_id": "video10479", "sen_id": 230636}, {"caption": "a girl with platinum blonde hair styles it with a ponytail", "video_id": "video10479", "sen_id": 230637}, {"caption": "a woman wearing a blond aid showing how to style wig hair", "video_id": "video10479", "sen_id": 230638}, {"caption": "the blond haired woman fixes her hair in a pony tail on her head", "video_id": "video10479", "sen_id": 230639}, {"caption": "a woman with dark hair and wearing glasses is answering a question", "video_id": "video10536", "sen_id": 230640}, {"caption": "a clip form an interview from the bbc", "video_id": "video10536", "sen_id": 230641}, {"caption": "a woman wearing glasses is talking to a large crowd", "video_id": "video10536", "sen_id": 230642}, {"caption": "a woman talks about how social media and tv symbiotic", "video_id": "video10536", "sen_id": 230643}, {"caption": "an asian woman seated at a desk wearing glasses explains to an audience about symbolic relief", "video_id": "video10536", "sen_id": 230644}, {"caption": "a women wearing spectacles is talking about something to a crowd in an auditorium", "video_id": "video10536", "sen_id": 230645}, {"caption": "the white lady wearing stripes top and tell the important of the social media in the audiance", "video_id": "video10536", "sen_id": 230646}, {"caption": "a lady with black hair and a watch talking to a crowd", "video_id": "video10536", "sen_id": 230647}, {"caption": "a woman wearing spects is talking about social media and looking like chinese", "video_id": "video10536", "sen_id": 230648}, {"caption": "creator jenny ferre talking about dracula and social media", "video_id": "video10536", "sen_id": 230649}, {"caption": "a woman with dark hair and glasses and a checked shirt is giving an interview", "video_id": "video10536", "sen_id": 230650}, {"caption": "a lady with specs explaining something about her experience to a crowd of people", "video_id": "video10536", "sen_id": 230651}, {"caption": "a lady counselor explains during a meeting what she feels about a symbiotic relationship between the viewer and a program", "video_id": "video10536", "sen_id": 230652}, {"caption": "a woman with fairly long hair earing glasses wearing a watch on jer left wrist and a black and shite lare print checker dress shirt", "video_id": "video10536", "sen_id": 230653}, {"caption": "i m a woman in a flannel shirt is speaking about social media downfalls", "video_id": "video10536", "sen_id": 230654}, {"caption": "a women in spectacles is talking to someone in stage", "video_id": "video10536", "sen_id": 230655}, {"caption": "a lady wearing specs talking something to another person", "video_id": "video10536", "sen_id": 230656}, {"caption": "a woman with glasses telling why she doesn t like violence on tv and social media", "video_id": "video10536", "sen_id": 230657}, {"caption": "a woman discusses social media and dracula in regards her production", "video_id": "video10536", "sen_id": 230658}, {"caption": "sexy brunette with glass talking to the camera", "video_id": "video10536", "sen_id": 230659}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11317", "sen_id": 230660}, {"caption": "different type of food is cooked and mixed today in a pan to create a bangladesh's dish", "video_id": "video11317", "sen_id": 230661}, {"caption": "an egg is cooked in a hot pan as someone adds more ingredients to the dish", "video_id": "video11317", "sen_id": 230662}, {"caption": "a man is explaining how to make an asian dish", "video_id": "video11317", "sen_id": 230663}, {"caption": "a man taking about and showing how to season and cook a chicken dish", "video_id": "video11317", "sen_id": 230664}, {"caption": "someone is preparing food by adding spices and other ingredients", "video_id": "video11317", "sen_id": 230665}, {"caption": "there is someone making a dish with butter", "video_id": "video11317", "sen_id": 230666}, {"caption": "an instructional video on creating a crab dish with sauce", "video_id": "video11317", "sen_id": 230667}, {"caption": "a person stirs liquid and adds fresh food to the pot", "video_id": "video11317", "sen_id": 230668}, {"caption": "among other ingredients duck sauce and black pepper are added to this gourmet indian recipe", "video_id": "video11317", "sen_id": 230669}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video11317", "sen_id": 230670}, {"caption": "ingredients are added to a pan and cooked together", "video_id": "video11317", "sen_id": 230671}, {"caption": "this cook is trying to introduce a new culinary dish into american schools for a diverse menu", "video_id": "video11317", "sen_id": 230672}, {"caption": "a man is describing a type of food", "video_id": "video11317", "sen_id": 230673}, {"caption": "various ingredients are mixed together to make a delicious meal", "video_id": "video11317", "sen_id": 230674}, {"caption": "various food preparations with special taste across india", "video_id": "video11317", "sen_id": 230675}, {"caption": "a tv show that shows some of their fancy work", "video_id": "video11317", "sen_id": 230676}, {"caption": "a man gives cooking instructions for a recipe cooked in a wok", "video_id": "video11317", "sen_id": 230677}, {"caption": "a man is showing how to cook a dish in a pan", "video_id": "video11317", "sen_id": 230678}, {"caption": "a bowl of food is being made and described by a man", "video_id": "video11317", "sen_id": 230679}, {"caption": "a man wearch a white jacket is cooking some food in a wok", "video_id": "video11243", "sen_id": 230680}, {"caption": "a chef scooping eggs from a pan and oiling another pan and adding garlic and ginger", "video_id": "video11243", "sen_id": 230681}, {"caption": "a chef works on a recipe by finishing up some scrambled eggs", "video_id": "video11243", "sen_id": 230682}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11243", "sen_id": 230683}, {"caption": "a chef puts scrambled eggs on a white plate then uses the same wok and adds oil garlic and ginger", "video_id": "video11243", "sen_id": 230684}, {"caption": "a chef has made scrambled eggs and puts them on a plate and then proceeds to show how me made the eggs", "video_id": "video11243", "sen_id": 230685}, {"caption": "there is a men surving food for others in plate", "video_id": "video11243", "sen_id": 230686}, {"caption": "the chef showing the recipe with menu description and quantity that is used for", "video_id": "video11243", "sen_id": 230687}, {"caption": "in a hotel kitchen a chef prepares an omelette and frying ginger and garlic in a pan", "video_id": "video11243", "sen_id": 230688}, {"caption": "someone has prepared a delicious dish with garliceggs and vegetables and served in a white porcelain vessel", "video_id": "video11243", "sen_id": 230689}, {"caption": "there is a man serving food to a white plate", "video_id": "video11243", "sen_id": 230690}, {"caption": "a chef explaining ingredients about a dish he is preparing", "video_id": "video11243", "sen_id": 230691}, {"caption": "one chef make recipe with oil garlic ginger", "video_id": "video11243", "sen_id": 230692}, {"caption": "a man serving the dish and cooking another in the same pan", "video_id": "video11243", "sen_id": 230693}, {"caption": "someone has prepared a delicious dish with oilgarlic and eggs in a black pan", "video_id": "video11243", "sen_id": 230694}, {"caption": "a chef in his kitchen is showing some recepe and later he was adding all the requires ingredients in the pan while pouring olive oil in the pan", "video_id": "video11243", "sen_id": 230695}, {"caption": "making the egg omlate and serve to their customer in the chef", "video_id": "video11243", "sen_id": 230696}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11243", "sen_id": 230697}, {"caption": "man with white hat putting the prepared meal in the dish", "video_id": "video11243", "sen_id": 230698}, {"caption": "a chef wearing thick glasses is preparing and serving a dish", "video_id": "video11243", "sen_id": 230699}, {"caption": "a young woman with blond hair and grey eyes and wearing a blue blouse is discussing on camera makeup techniques", "video_id": "video10276", "sen_id": 230700}, {"caption": "a woman demonstrates make up techniques that can be done quickly", "video_id": "video10276", "sen_id": 230701}, {"caption": "a beautiful blonde woman speaks about makeup after seeing a before and after side by side shot", "video_id": "video10276", "sen_id": 230702}, {"caption": "a woman introduces her quick and easy makeup tutorial", "video_id": "video10276", "sen_id": 230703}, {"caption": "blonde girl expla i g how to apply a rush makeup job when on the go", "video_id": "video10276", "sen_id": 230704}, {"caption": "make up looks perfect if you spare at least five minutes for make up", "video_id": "video10276", "sen_id": 230705}, {"caption": "a woman shows how she looked before she put on her make-up and after and tells viewers to try this make-up as well", "video_id": "video10276", "sen_id": 230706}, {"caption": "a woman with white hair talking from her room", "video_id": "video10276", "sen_id": 230707}, {"caption": "a blond women without makeup on and then with makeup on then the women is talking", "video_id": "video10276", "sen_id": 230708}, {"caption": "a blonde woman doing a before and after video", "video_id": "video10276", "sen_id": 230709}, {"caption": "a girl in blue dress color standing speaking for make up beauty facial look displaying on screen", "video_id": "video10276", "sen_id": 230710}, {"caption": "there is a woman talking from his bedroom", "video_id": "video10276", "sen_id": 230711}, {"caption": "a young pretty blonde woman is smiling into the camera", "video_id": "video10276", "sen_id": 230712}, {"caption": "face of women after using a facial productafter using it her face is so soft and nice", "video_id": "video10276", "sen_id": 230713}, {"caption": "a fair girl with golden hair talks with smiling face about make up she has rosy lips good eye brows and lovely eyelashes with eye make-up through", "video_id": "video10276", "sen_id": 230714}, {"caption": "a blonde woman is describing her makeup tips to her online viewers", "video_id": "video10276", "sen_id": 230715}, {"caption": "there is a woman with white hair talking from a room", "video_id": "video10276", "sen_id": 230716}, {"caption": "a young blonde woman talks about quick ways to do makeup while on the go", "video_id": "video10276", "sen_id": 230717}, {"caption": "some makeup is bragged about how good it is", "video_id": "video10276", "sen_id": 230718}, {"caption": "a before and after of a woman who has a lot of makeup on", "video_id": "video10276", "sen_id": 230719}, {"caption": "a caucasian man and woman interact inside an apartment for sale while outside a black man struggles with a garbage container before falling inside it", "video_id": "video11815", "sen_id": 230720}, {"caption": "a man talks about the making of doctor who as sequences from the show play", "video_id": "video11815", "sen_id": 230721}, {"caption": "a man and a blonde lady talk before we see a garbage can eat another man", "video_id": "video11815", "sen_id": 230722}, {"caption": "a movie clip where a guy flips in a trash can", "video_id": "video11815", "sen_id": 230723}, {"caption": "a man in a black leather jacket is hanging out with a girl with blonde hair", "video_id": "video11815", "sen_id": 230724}, {"caption": "movie review showing groups of people doing comedy like acts", "video_id": "video11815", "sen_id": 230725}, {"caption": "a man and a blonde lady are together in a tight space before a black garbage bin sucks a man inside", "video_id": "video11815", "sen_id": 230726}, {"caption": "a blonde woman pulls a man into a doorway and a man gets pulled into a trash can", "video_id": "video11815", "sen_id": 230727}, {"caption": "a man in a leather jacket is assaulted by a blonde woman", "video_id": "video11815", "sen_id": 230728}, {"caption": "a young man describes a show that hes says was experimental", "video_id": "video11815", "sen_id": 230729}, {"caption": "a blond woman is arguing with a man in a house", "video_id": "video11815", "sen_id": 230730}, {"caption": "a man and a woman quickly move through a doorway to hide", "video_id": "video11815", "sen_id": 230731}, {"caption": "a man gets pulled inside of a door and another one gets pulled into a trash can", "video_id": "video11815", "sen_id": 230732}, {"caption": "the is clips playing from a show and a narrator speaking about the episodes somebody made for the show", "video_id": "video11815", "sen_id": 230733}, {"caption": "a woman pushing a man out of a door and a man flipping in a garbage can", "video_id": "video11815", "sen_id": 230734}, {"caption": "a narrator is providing a review of a movie or tv show", "video_id": "video11815", "sen_id": 230735}, {"caption": "a smiling couple is running into an elevator while another man in a suit is pulled about", "video_id": "video11815", "sen_id": 230736}, {"caption": "male and female actors showing acting skills in a trial run of new show", "video_id": "video11815", "sen_id": 230737}, {"caption": "a blonde girl along with a man is seen", "video_id": "video11815", "sen_id": 230738}, {"caption": "a man is being eaten by a black trash can", "video_id": "video11815", "sen_id": 230739}, {"caption": "a man working out on a workout bench", "video_id": "video12603", "sen_id": 230740}, {"caption": "a man is lifitng weights in the gym and comparing himself to other bodybuilders", "video_id": "video12603", "sen_id": 230741}, {"caption": "a workout clip from an indian commercial or movie", "video_id": "video12603", "sen_id": 230742}, {"caption": "a wharehouse full of really big body builders are wieght lifting", "video_id": "video12603", "sen_id": 230743}, {"caption": "men lifting weight and standing around talking", "video_id": "video12603", "sen_id": 230744}, {"caption": "a guy in a blue speedo is lying down bench pressing in the gym with many other guys standing and staring at him", "video_id": "video12603", "sen_id": 230745}, {"caption": "a person is exercising in a gym while few angry people from the same gym walks towards him", "video_id": "video12603", "sen_id": 230746}, {"caption": "there is a muscle man fighting with someone", "video_id": "video12603", "sen_id": 230747}, {"caption": "a group of very muscular men speaking a foreign language surround a gentleman who is bench pressing weights", "video_id": "video12603", "sen_id": 230748}, {"caption": "bodybuilders are bullying a man who is lifting weights", "video_id": "video12603", "sen_id": 230749}, {"caption": "bunch of muscled guys working out in the gym", "video_id": "video12603", "sen_id": 230750}, {"caption": "the is an actor doing exercise doing hardly", "video_id": "video12603", "sen_id": 230751}, {"caption": "lots of people are doing excerise in a gym", "video_id": "video12603", "sen_id": 230752}, {"caption": "in a tamil movie i body builders fight with hero", "video_id": "video12603", "sen_id": 230753}, {"caption": "a group of body builders with one being confronted by a few others in what looks to be a indian film", "video_id": "video12603", "sen_id": 230754}, {"caption": "some people in a gym are lifting weights", "video_id": "video12603", "sen_id": 230755}, {"caption": "there is a man fighting against his enemies", "video_id": "video12603", "sen_id": 230756}, {"caption": "a man doing some weight lifting at the gym", "video_id": "video12603", "sen_id": 230757}, {"caption": "group of foreign men stand around another man who is lifting weights", "video_id": "video12603", "sen_id": 230758}, {"caption": "a man is bench pressing weights while 4 men confront him", "video_id": "video12603", "sen_id": 230759}, {"caption": "a man dancing then talking and pointing into camera", "video_id": "video10755", "sen_id": 230760}, {"caption": "a young man demonstrates dance steps in an instructional way", "video_id": "video10755", "sen_id": 230761}, {"caption": "a man is standing and talking about how to change the position of your legs", "video_id": "video10755", "sen_id": 230762}, {"caption": "a teenage boy in a printed tank top dancing", "video_id": "video10755", "sen_id": 230763}, {"caption": "a man in a backwards baseball cap and a colorful tank top is discussing dance moves", "video_id": "video10755", "sen_id": 230764}, {"caption": "a man dancing on a floor", "video_id": "video10755", "sen_id": 230765}, {"caption": "a young man with hat is showing some steps of dance", "video_id": "video10755", "sen_id": 230766}, {"caption": "a man explains how to properly perform a dance move", "video_id": "video10755", "sen_id": 230767}, {"caption": "a man wearing a colored t-shirt and a black cap doing some steps and describing", "video_id": "video10755", "sen_id": 230768}, {"caption": "guy in colorful tank top showing ways dance on feet", "video_id": "video10755", "sen_id": 230769}, {"caption": "there is a man talking from his home", "video_id": "video10755", "sen_id": 230770}, {"caption": "a dance move move instructor showing out moves", "video_id": "video10755", "sen_id": 230771}, {"caption": "a man talking with a backwards black hat on and colored tank top", "video_id": "video10755", "sen_id": 230772}, {"caption": "a man is showing how to do a dance move", "video_id": "video10755", "sen_id": 230773}, {"caption": "guy with the cap showing his dancing skills to the camera", "video_id": "video10755", "sen_id": 230774}, {"caption": "there is a man with black cap talking from a hall", "video_id": "video10755", "sen_id": 230775}, {"caption": "a man wearing a tank top is talking about how one cant change the way legs are facing without changing the toes", "video_id": "video10755", "sen_id": 230776}, {"caption": "on a wood floor a man wearing a baseball hat and tank top is giving a lecture", "video_id": "video10755", "sen_id": 230777}, {"caption": "a boy wearing hat black color standing and shaking legs moving body displaying on screen", "video_id": "video10755", "sen_id": 230778}, {"caption": "a man in a colorful shirt and hat is talking", "video_id": "video10755", "sen_id": 230779}, {"caption": "a group of fish tacos are being displayed on different platters and plates", "video_id": "video10684", "sen_id": 230780}, {"caption": "a slide show presentation shows different types of soft tacos ", "video_id": "video10684", "sen_id": 230781}, {"caption": "a chef shows the results of their work in the kitchen", "video_id": "video10684", "sen_id": 230782}, {"caption": "the soft shelled tacos have many fresh vegetables and toppings on them", "video_id": "video10684", "sen_id": 230783}, {"caption": "a food is filled with fillings and it displaying", "video_id": "video10684", "sen_id": 230784}, {"caption": "a slideshow of different varieties and flavors of tacos", "video_id": "video10684", "sen_id": 230785}, {"caption": "there are some favorite dishes on the table", "video_id": "video10684", "sen_id": 230786}, {"caption": "tacos in hard shells are garnished with shredded purple cabbage", "video_id": "video10684", "sen_id": 230787}, {"caption": "apparently a silent ad on what appears to be good food from maine", "video_id": "video10684", "sen_id": 230788}, {"caption": "various taco dishes are shown on table with fish and shrimp filling", "video_id": "video10684", "sen_id": 230789}, {"caption": "plates of beautifully colorful foods sit on white plates and revolve on screen", "video_id": "video10684", "sen_id": 230790}, {"caption": "more vegetable salad are displayed on the screen", "video_id": "video10684", "sen_id": 230791}, {"caption": "a slideshow is presented with alternative taco dishes", "video_id": "video10684", "sen_id": 230792}, {"caption": "there are several food dish settings being presented", "video_id": "video10684", "sen_id": 230793}, {"caption": "different pictures of food that are on plates", "video_id": "video10684", "sen_id": 230794}, {"caption": "vegetables are cooked kept on the plate", "video_id": "video10684", "sen_id": 230795}, {"caption": "the slideshow presents exotic taco recipes", "video_id": "video10684", "sen_id": 230796}, {"caption": "a plate of different foods", "video_id": "video10684", "sen_id": 230797}, {"caption": "in a kitchen person is presenting the food he made", "video_id": "video10684", "sen_id": 230798}, {"caption": "some food on a plate is being filmed for tv", "video_id": "video10684", "sen_id": 230799}, {"caption": "a girl asks you to join her as she gets ready for picture day at school", "video_id": "video10199", "sen_id": 230800}, {"caption": "a woman dressed as draculaura wears a black and pink wig and makeup", "video_id": "video10199", "sen_id": 230801}, {"caption": "there is a woman with pink hair talking from her room", "video_id": "video10199", "sen_id": 230802}, {"caption": "a girl with pink make up and pink heart symbol on cheek hearing some songs", "video_id": "video10199", "sen_id": 230803}, {"caption": "a girl is colored her lace in pink color", "video_id": "video10199", "sen_id": 230804}, {"caption": "a girl with black and pink hair has just smiling while somebody does a voice over", "video_id": "video10199", "sen_id": 230805}, {"caption": "one beautiful young girl with full of make-up doing more facial gestures", "video_id": "video10199", "sen_id": 230806}, {"caption": "a woman with red and black hair is speaking about makeup", "video_id": "video10199", "sen_id": 230807}, {"caption": "a woman with red and black striped hair and puts on makeup in halloween decorated room", "video_id": "video10199", "sen_id": 230808}, {"caption": "lady with pink and red make up giving a tutorial for monster picture day", "video_id": "video10199", "sen_id": 230809}, {"caption": "a female in red dress wearing red and black is showing her eye brows", "video_id": "video10199", "sen_id": 230810}, {"caption": "a lady is talking with pink coloc dres", "video_id": "video10199", "sen_id": 230811}, {"caption": "a girl talking about a monster high doll", "video_id": "video10199", "sen_id": 230812}, {"caption": "a person with pink and black hair has a pink background with black bats", "video_id": "video10199", "sen_id": 230813}, {"caption": "woman with amazing pink make up showing her eyes and face", "video_id": "video10199", "sen_id": 230814}, {"caption": "there is a woman with colored hair smiling from the room", "video_id": "video10199", "sen_id": 230815}, {"caption": "the woman with the pink hair and lots of make up talks", "video_id": "video10199", "sen_id": 230816}, {"caption": "a girl with violet eyes and multi colored hair is looking in a mirror", "video_id": "video10199", "sen_id": 230817}, {"caption": "a woman is putting makeup and clothes on to look like monster high character", "video_id": "video10199", "sen_id": 230818}, {"caption": "a girl in extreme pink makeup and hair is sitting at a vanity table in front of a pink wall with black bat decals", "video_id": "video10199", "sen_id": 230819}, {"caption": "a cook pours soy sauce from a bottle to cover cut pieces of seasoned and uncooked red meat sitting in a glass bowl on a green gingham counter", "video_id": "video12935", "sen_id": 230820}, {"caption": "soy sauce is added to a pile of meat and then mixed in by a gloved hand", "video_id": "video12935", "sen_id": 230821}, {"caption": "soy sauce being poured onto red meat that is not cooked", "video_id": "video12935", "sen_id": 230822}, {"caption": "someone is marinating meat with pepper seasoning and soy sauce", "video_id": "video12935", "sen_id": 230823}, {"caption": "a cook is seasoning beef in a glass bowl", "video_id": "video12935", "sen_id": 230824}, {"caption": "a person is preparing food and describing the process it takes", "video_id": "video12935", "sen_id": 230825}, {"caption": "a chef prepares for a recipe by seasoning and marinating some meat", "video_id": "video12935", "sen_id": 230826}, {"caption": "some one in a kitchen adding ingredients to the meat in abowl", "video_id": "video12935", "sen_id": 230827}, {"caption": "a woman is adding soy sauce to a bowl of meat and mixing with her hand", "video_id": "video12935", "sen_id": 230828}, {"caption": "one woman cooking in kitchen some tasty recipes", "video_id": "video12935", "sen_id": 230829}, {"caption": "in a kitchen person is putting some red wine on the meat", "video_id": "video12935", "sen_id": 230830}, {"caption": "a women is making some beef receipe by adding some sauce and pepper etc in the kitchen show", "video_id": "video12935", "sen_id": 230831}, {"caption": "there is a woman making a dish with meet", "video_id": "video12935", "sen_id": 230832}, {"caption": "the lady tell in how to make the best pork item in the world and she is poorered the diffrent sauces", "video_id": "video12935", "sen_id": 230833}, {"caption": "meat in wide glass bowl then in that meat and many other ingredients are added", "video_id": "video12935", "sen_id": 230834}, {"caption": "a woman talks as she puts seasoning on some meat", "video_id": "video12935", "sen_id": 230835}, {"caption": "women is cleanig chicken and marinating it with spoon in a bowl", "video_id": "video12935", "sen_id": 230836}, {"caption": "a woman is speaking in spanish as she prepares a meat dish with soy sauce", "video_id": "video12935", "sen_id": 230837}, {"caption": "cook soaking and working soy sauce into meat", "video_id": "video12935", "sen_id": 230838}, {"caption": "some person is filming meat in a bowl", "video_id": "video12935", "sen_id": 230839}, {"caption": "a person in red skiing down a hill", "video_id": "video11926", "sen_id": 230840}, {"caption": "a skiing montage of a couple of people", "video_id": "video11926", "sen_id": 230841}, {"caption": "a couple of men are skiing down a slope while someone else follows to film", "video_id": "video11926", "sen_id": 230842}, {"caption": "a skiier skis quickly down a snow covered mountain", "video_id": "video11926", "sen_id": 230843}, {"caption": "a personalized view of skiers speeding down a mountain", "video_id": "video11926", "sen_id": 230844}, {"caption": "a skilled skier in a red jumpsuit with green skis flys down a mountain run", "video_id": "video11926", "sen_id": 230845}, {"caption": "on a sunny day a someone moving on the ice", "video_id": "video11926", "sen_id": 230846}, {"caption": "people racing down a mountain on skiis", "video_id": "video11926", "sen_id": 230847}, {"caption": "an extreme skier zooms down a steep mountainside with a group of other skiers", "video_id": "video11926", "sen_id": 230848}, {"caption": "a skiing competition is going on a thick snow covered mountain and can see a lot of them participating", "video_id": "video11926", "sen_id": 230849}, {"caption": " in burgundy speeds down a snow-covered mountain on green and black skis", "video_id": "video11926", "sen_id": 230850}, {"caption": "on a sunny day someone is skating with friends", "video_id": "video11926", "sen_id": 230851}, {"caption": "the skier is speeding up trying his level best to catch up with other skiers", "video_id": "video11926", "sen_id": 230852}, {"caption": "a man wearing a full ski suit is quickly skiing down a mountain", "video_id": "video11926", "sen_id": 230853}, {"caption": "first person view of skiers skiing down a snow covered mountain", "video_id": "video11926", "sen_id": 230854}, {"caption": "a man skies is skiing down a mountain", "video_id": "video11926", "sen_id": 230855}, {"caption": "a man is skating in the ice hill", "video_id": "video11926", "sen_id": 230856}, {"caption": "its a snow skating the guy has the stick on the hand he wear gloves", "video_id": "video11926", "sen_id": 230857}, {"caption": "a snow land and many person doing skating on snow displaying on screen", "video_id": "video11926", "sen_id": 230858}, {"caption": "a skiier dressed in red jacket and pants begins his his trek down a snow covered slope", "video_id": "video11926", "sen_id": 230859}, {"caption": "a man creating crafts in a white container", "video_id": "video11007", "sen_id": 230860}, {"caption": "a man pushes a malleable substance into a white mold", "video_id": "video11007", "sen_id": 230861}, {"caption": "a hand stuffing some sort of dough into a mold", "video_id": "video11007", "sen_id": 230862}, {"caption": "a man is putting pushing some material in to a plastic form", "video_id": "video11007", "sen_id": 230863}, {"caption": "a hand places a balled up roll of dough into a mold and then starts pulling it out", "video_id": "video11007", "sen_id": 230864}, {"caption": "someone holding a metal container with two brown objects in them", "video_id": "video11007", "sen_id": 230865}, {"caption": "someone pushing yellow clay into a plastic mold", "video_id": "video11007", "sen_id": 230866}, {"caption": "someone is making sweets using the plastic device designed for it", "video_id": "video11007", "sen_id": 230867}, {"caption": "a person is pressing dough balls into a mold", "video_id": "video11007", "sen_id": 230868}, {"caption": "one man put food in the plastic molded", "video_id": "video11007", "sen_id": 230869}, {"caption": "to make sweets and snacks easily manualy with the help of apre designed dice to give fancy forms", "video_id": "video11007", "sen_id": 230870}, {"caption": "a man stuffs some soft material into a plastic mould", "video_id": "video11007", "sen_id": 230871}, {"caption": "a man putting yellow color small ball on the small container", "video_id": "video11007", "sen_id": 230872}, {"caption": "this method of sweet make easy and children like this", "video_id": "video11007", "sen_id": 230873}, {"caption": "a person is placing some material into the box", "video_id": "video11007", "sen_id": 230874}, {"caption": "how to use a donut mold to make decorative donuts", "video_id": "video11007", "sen_id": 230875}, {"caption": "there is a man fixing a toy on the table", "video_id": "video11007", "sen_id": 230876}, {"caption": "a man is placing dough into a white mold and then removes it", "video_id": "video11007", "sen_id": 230877}, {"caption": "a man put food in a molded plate and", "video_id": "video11007", "sen_id": 230878}, {"caption": "a person is pressing a doughy substance into a container", "video_id": "video11007", "sen_id": 230879}, {"caption": "there are three kids singing about brushing your teeth", "video_id": "video11694", "sen_id": 230880}, {"caption": "three kids telling you when to brush your teeth and why", "video_id": "video11694", "sen_id": 230881}, {"caption": "a group of 3 kids pretends to brush their teeth with giant toothbrushes while saying a rhyme about teeth-brushing", "video_id": "video11694", "sen_id": 230882}, {"caption": "three kids sing a song that reminds other kids to brush their teeth", "video_id": "video11694", "sen_id": 230883}, {"caption": "there are three kids singing a song about brushing teeth", "video_id": "video11694", "sen_id": 230884}, {"caption": "kids are singing about brushing their teeth while holding giant toothbrushes", "video_id": "video11694", "sen_id": 230885}, {"caption": "three kids holding giant tooth brushes and toothpaste bottle are singing a song", "video_id": "video11694", "sen_id": 230886}, {"caption": "a girl flanked by two boys are holding large novelty toothbrushes and exaggerating brushing movements while singing brush your teeth brush your teeth", "video_id": "video11694", "sen_id": 230887}, {"caption": "a man in green t-shirt is having fun with a man and a women", "video_id": "video11694", "sen_id": 230888}, {"caption": "there is a green t-shirt guy with friends", "video_id": "video11694", "sen_id": 230889}, {"caption": "two boy and a girl holding a big tooth brush and singing to create awareness on brushing", "video_id": "video11694", "sen_id": 230890}, {"caption": "three young people do a song related to brushing your teeth", "video_id": "video11694", "sen_id": 230891}, {"caption": "a group of kids are singing a song about brushing teeth", "video_id": "video11694", "sen_id": 230892}, {"caption": "a man in green tshirt acting with his friends", "video_id": "video11694", "sen_id": 230893}, {"caption": "three little girls having a tooth brush on her hand", "video_id": "video11694", "sen_id": 230894}, {"caption": "three kids are holding large toothbrushes and singing", "video_id": "video11694", "sen_id": 230895}, {"caption": "three kids stand in a group holding a big toothbrush", "video_id": "video11694", "sen_id": 230896}, {"caption": "there are three people with a big brush", "video_id": "video11694", "sen_id": 230897}, {"caption": "the youth are promoting the important of brushing in very well", "video_id": "video11694", "sen_id": 230898}, {"caption": "three children are insisting others to brush their teeth", "video_id": "video11694", "sen_id": 230899}, {"caption": "there are two men discussing airlines and various disease scares", "video_id": "video12170", "sen_id": 230900}, {"caption": "two men on a news report talking bout airlines sales", "video_id": "video12170", "sen_id": 230901}, {"caption": "a financial reporter is impressed by southwest air's performance", "video_id": "video12170", "sen_id": 230902}, {"caption": "he's speaking about air travel ups and down during disease scares", "video_id": "video12170", "sen_id": 230903}, {"caption": "two bald white men are reporting news aggressively", "video_id": "video12170", "sen_id": 230904}, {"caption": "an old bald white guy in a suit is bitching about events on the news", "video_id": "video12170", "sen_id": 230905}, {"caption": "a news report between two men about airline sales", "video_id": "video12170", "sen_id": 230906}, {"caption": "a guy in dark suit discusses about best airlines and their positions in usa in the news channel", "video_id": "video12170", "sen_id": 230907}, {"caption": "a man is talking on tv in a news channel", "video_id": "video12170", "sen_id": 230908}, {"caption": "two men are sitting behind a news desk talking about stocks", "video_id": "video12170", "sen_id": 230909}, {"caption": "the news reader is wearing a black suit and blue designed tie and sitting in a really beautiful background", "video_id": "video12170", "sen_id": 230910}, {"caption": "there is a suit man talking from the studio", "video_id": "video12170", "sen_id": 230911}, {"caption": "a person giving outv a repport", "video_id": "video12170", "sen_id": 230912}, {"caption": "two reporters review gm report for airline traffic in america", "video_id": "video12170", "sen_id": 230913}, {"caption": "a old man wearing blue shirt sitting speaking with other and paper in hand discusing laptop beside displaying on screen", "video_id": "video12170", "sen_id": 230914}, {"caption": "two men are talking on the tv news", "video_id": "video12170", "sen_id": 230915}, {"caption": "a man is sitting at a desk talking to another person", "video_id": "video12170", "sen_id": 230916}, {"caption": "a report on finances economics and stocks from different airlines", "video_id": "video12170", "sen_id": 230917}, {"caption": "a man in balt hair talks using the paper content and holding the pen", "video_id": "video12170", "sen_id": 230918}, {"caption": "new york stock exchange update on airline stocks", "video_id": "video12170", "sen_id": 230919}, {"caption": "an animated video explaining how covalent bonds work", "video_id": "video11462", "sen_id": 230920}, {"caption": "atom binding presentation", "video_id": "video11462", "sen_id": 230921}, {"caption": "animated graphics of electron movements in a chemical reaction", "video_id": "video11462", "sen_id": 230922}, {"caption": "graphics illustrate bonds in semiconductors and the formation of a convalent bond", "video_id": "video11462", "sen_id": 230923}, {"caption": "a man is lecturing on bonds in semiconductors", "video_id": "video11462", "sen_id": 230924}, {"caption": "there are some balls moving on the surface", "video_id": "video11462", "sen_id": 230925}, {"caption": "small ball moving from left to right", "video_id": "video11462", "sen_id": 230926}, {"caption": "a lesson bonds in semiconductors is visually expressed for equal number of electron movements", "video_id": "video11462", "sen_id": 230927}, {"caption": "a deep male voice narrates a scientific talk on atom bond formations", "video_id": "video11462", "sen_id": 230928}, {"caption": "an animation is explaining covalent bonds with a man narrating in the background", "video_id": "video11462", "sen_id": 230929}, {"caption": "there are some tips about a important matter", "video_id": "video11462", "sen_id": 230930}, {"caption": "animation about atoms is being shown to demonstrate bonds", "video_id": "video11462", "sen_id": 230931}, {"caption": "a scientist describes the bonds between atoms in a particular configuration", "video_id": "video11462", "sen_id": 230932}, {"caption": "a man is explaining how covalent bonds of atoms work", "video_id": "video11462", "sen_id": 230933}, {"caption": "a man talking about the formation of covalent bonds in relation to bonds in semiconductors", "video_id": "video11462", "sen_id": 230934}, {"caption": "there is a man explains about bonds in semiconductors", "video_id": "video11462", "sen_id": 230935}, {"caption": "a cartoon graphic is demonstrating different bonds in semiconductors", "video_id": "video11462", "sen_id": 230936}, {"caption": "some one is playing a video game on a screen", "video_id": "video11462", "sen_id": 230937}, {"caption": "a science video talking about covalent bonds between atoms", "video_id": "video11462", "sen_id": 230938}, {"caption": "the atoms of the molecule shift to a new position", "video_id": "video11462", "sen_id": 230939}, {"caption": "a young man stands by the edge of a grassy backyard waving and another man sits with a serious expression on the other side holding a beer and cellphone", "video_id": "video11305", "sen_id": 230940}, {"caption": "a girl is in her backyard with her two brothers sunbathing", "video_id": "video11305", "sen_id": 230941}, {"caption": "two brothers are hanging out with their sister in their mother's back yard", "video_id": "video11305", "sen_id": 230942}, {"caption": "a female points out her brothers in the back yard", "video_id": "video11305", "sen_id": 230943}, {"caption": "a woman is talking into the camera and saying hello to her two brothers as she shows them", "video_id": "video11305", "sen_id": 230944}, {"caption": "its in garden person in white dress pour water to plants its been seen by another guy", "video_id": "video11305", "sen_id": 230945}, {"caption": "a woman is videotaping her two brothers while they are in the backyard", "video_id": "video11305", "sen_id": 230946}, {"caption": "a woman wearing sunglasses is seated inside a car with anothe man and is talking a boy is playing in the garden", "video_id": "video11305", "sen_id": 230947}, {"caption": "a woman is with her two brothers in her mother s backyard and she is drinking out of a mason jar", "video_id": "video11305", "sen_id": 230948}, {"caption": "a large woman wearing glasses in a car and two men in a back yard surrounded by trees", "video_id": "video11305", "sen_id": 230949}, {"caption": "a man in blue shorts is moving in grass field as other man isisitting in a chair", "video_id": "video11305", "sen_id": 230950}, {"caption": "a man in basketball shorts is standing in his back yard while a bald man sits in a lawn chair", "video_id": "video11305", "sen_id": 230951}, {"caption": "a woman talks to her brothers one standing in the yard and the other seating she is drinking from a mason jar", "video_id": "video11305", "sen_id": 230952}, {"caption": "a woman is saying hi to her brother and laughing", "video_id": "video11305", "sen_id": 230953}, {"caption": "a young woman filming her two brothers in their large back yard", "video_id": "video11305", "sen_id": 230954}, {"caption": "a person is sitting on a chair on a green grass land", "video_id": "video11305", "sen_id": 230955}, {"caption": "a man is standing in a grassy field filled with trees his friends are sitting down", "video_id": "video11305", "sen_id": 230956}, {"caption": "a lady arriving in her car at her home introduces her family and others who wave out to us", "video_id": "video11305", "sen_id": 230957}, {"caption": "a man is standing outside in the yard and another man is sitting down", "video_id": "video11305", "sen_id": 230958}, {"caption": "a woman talks to her brother who s walking around in the lawn", "video_id": "video11305", "sen_id": 230959}, {"caption": "astronauts work together on various components of a space station", "video_id": "video10145", "sen_id": 230960}, {"caption": "a man is discussing the different companies involved in the space mission", "video_id": "video10145", "sen_id": 230961}, {"caption": "a man showing pictures of varied space equipment", "video_id": "video10145", "sen_id": 230962}, {"caption": "computer generated images of commercial space ships indicate how space travel is evolving", "video_id": "video10145", "sen_id": 230963}, {"caption": "rockets satelites and other equipment in space are shown and discussed", "video_id": "video10145", "sen_id": 230964}, {"caption": "an aircraft traveling through space with fire and smoke coming from the tailpipe", "video_id": "video10145", "sen_id": 230965}, {"caption": "a rocket is launched to space and astronauts are seen here", "video_id": "video10145", "sen_id": 230966}, {"caption": "satellite and astronuats on moon is being shown", "video_id": "video10145", "sen_id": 230967}, {"caption": "a man talks about several space odyssey adventures on the computer", "video_id": "video10145", "sen_id": 230968}, {"caption": "a man is talking about a rocket launch", "video_id": "video10145", "sen_id": 230969}, {"caption": "its a rocket going on to a space", "video_id": "video10145", "sen_id": 230970}, {"caption": "an aircraft is shown as animated to detail its functioning", "video_id": "video10145", "sen_id": 230971}, {"caption": "aircraft composed of four white sections connectors with crossed rods and elongated and extending panels moves above the blue planet", "video_id": "video10145", "sen_id": 230972}, {"caption": "a man is operating a setelite rocket and explain about it", "video_id": "video10145", "sen_id": 230973}, {"caption": "here animated characters are running doing something with machines in high speed", "video_id": "video10145", "sen_id": 230974}, {"caption": "there is something impressing matters goin on", "video_id": "video10145", "sen_id": 230975}, {"caption": "the scientist of nasa show how the space shuttle works in space without error", "video_id": "video10145", "sen_id": 230976}, {"caption": "a person is explaining about some space program", "video_id": "video10145", "sen_id": 230977}, {"caption": "a rocket was launch and they were explains how it was done", "video_id": "video10145", "sen_id": 230978}, {"caption": "a person is giving information about space craft", "video_id": "video10145", "sen_id": 230979}, {"caption": "two guys riding a bike over a bridge", "video_id": "video11657", "sen_id": 230980}, {"caption": "two bicyclists follow a paved path along an oval pond that is reflecting the sun cross a silver-and-orange bridge in front of a snow-capped mountain and chat with each other", "video_id": "video11657", "sen_id": 230981}, {"caption": "two people are riding over a bridge on their bikes", "video_id": "video11657", "sen_id": 230982}, {"caption": "two men riding bicycles across a red bridge on a sunny day", "video_id": "video11657", "sen_id": 230983}, {"caption": "two men are riding bikes across a bridge and onto a street as the narrator talks about the bike", "video_id": "video11657", "sen_id": 230984}, {"caption": "a male is talking about bikes while two men are riding a bike over a bridge with a mountain in the background", "video_id": "video11657", "sen_id": 230985}, {"caption": "two people are riding a bicycle on the bridge and talking each other", "video_id": "video11657", "sen_id": 230986}, {"caption": "two people riding bicycles outdoors while narator describes the bike", "video_id": "video11657", "sen_id": 230987}, {"caption": "two men riding bicycles across a bridge and in front of some large mountains", "video_id": "video11657", "sen_id": 230988}, {"caption": "a guy talking about bikes showing two guys riding bikes", "video_id": "video11657", "sen_id": 230989}, {"caption": "two men are cycling together on streets", "video_id": "video11657", "sen_id": 230990}, {"caption": "the two cycle sports men riding with their cycles and explaning the cycle features", "video_id": "video11657", "sen_id": 230991}, {"caption": "two man cycling over bridge equally good and fast", "video_id": "video11657", "sen_id": 230992}, {"caption": "friends are cycling in the morning with their speech to have a fresh hair", "video_id": "video11657", "sen_id": 230993}, {"caption": "two men ride their bikes across a bridge", "video_id": "video11657", "sen_id": 230994}, {"caption": "some people are riding their bikes on a bridge", "video_id": "video11657", "sen_id": 230995}, {"caption": "two men in dark outfits ride bicycles across a curved red and silver bridge with slanted vertical supports", "video_id": "video11657", "sen_id": 230996}, {"caption": "people are riding their bikes over a bridge", "video_id": "video11657", "sen_id": 230997}, {"caption": "two guys riding around the city on bikes and talking to each other", "video_id": "video11657", "sen_id": 230998}, {"caption": "couple of guys riding their bikes on the bridge", "video_id": "video11657", "sen_id": 230999}, {"caption": "tom hanks is sitting talking about james donovan", "video_id": "video12539", "sen_id": 231000}, {"caption": "tom hanks talks about one of his characters during an interview", "video_id": "video12539", "sen_id": 231001}, {"caption": "a man in an living room talking about a guy", "video_id": "video12539", "sen_id": 231002}, {"caption": "tom hanks is describing one of his characters from a film", "video_id": "video12539", "sen_id": 231003}, {"caption": "tom hanks sits in a chair and talks to an interviewer", "video_id": "video12539", "sen_id": 231004}, {"caption": "tom hanks sitting talking and gesturing with his hands", "video_id": "video12539", "sen_id": 231005}, {"caption": "tom hanks is describing his movie character james donovan", "video_id": "video12539", "sen_id": 231006}, {"caption": "a man talking about another man in a dark room", "video_id": "video12539", "sen_id": 231007}, {"caption": "tom hanks in a black jacket and gray shirt sits in a study with bookshelves and a tall lamp", "video_id": "video12539", "sen_id": 231008}, {"caption": "a black suit man talking nearby a lamp", "video_id": "video12539", "sen_id": 231009}, {"caption": "middle-aged man speaking about a negotiator who is built for irish", "video_id": "video12539", "sen_id": 231010}, {"caption": "tom hanks talking about james donovan", "video_id": "video12539", "sen_id": 231011}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12539", "sen_id": 231012}, {"caption": "tom hanks speaks about james donovan during an interview", "video_id": "video12539", "sen_id": 231013}, {"caption": " tom hanks talks about james donovan being a tough negotiator", "video_id": "video12539", "sen_id": 231014}, {"caption": "a person in black suit it explaining some thing by waveing hit both hands there is a table lamp is switched on nearby where he stands", "video_id": "video12539", "sen_id": 231015}, {"caption": "a man in black suit explaining some incident in the t", "video_id": "video12539", "sen_id": 231016}, {"caption": "a man telling more about james who is a bold negotiater", "video_id": "video12539", "sen_id": 231017}, {"caption": "a man is speaking in the home some thing", "video_id": "video12539", "sen_id": 231018}, {"caption": "tom hanks in suit talking to the camera about his career and movie", "video_id": "video12539", "sen_id": 231019}, {"caption": "two parrots in a box talking to humans", "video_id": "video12084", "sen_id": 231020}, {"caption": "two parrots in a cardboard box who are talking back and forth with a man and a woman", "video_id": "video12084", "sen_id": 231021}, {"caption": "a woman and man are having a conversation with two pet birds", "video_id": "video12084", "sen_id": 231022}, {"caption": "two birds interacting in a box with human voice overs", "video_id": "video12084", "sen_id": 231023}, {"caption": "two green parrots are shown pecking at each other", "video_id": "video12084", "sen_id": 231024}, {"caption": "a man is having a conversation with a green parrot and his friend", "video_id": "video12084", "sen_id": 231025}, {"caption": "green yellow and red parrots sitting next to each other on a box", "video_id": "video12084", "sen_id": 231026}, {"caption": "a man and woman ask a parrot why he is biting", "video_id": "video12084", "sen_id": 231027}, {"caption": "two green birds with yellow neck stripe are standing together", "video_id": "video12084", "sen_id": 231028}, {"caption": "a green parrot is seen talking with the owner the parrot is answering questions asked by the a guy and a lady", "video_id": "video12084", "sen_id": 231029}, {"caption": "a parrot speaking english words that it s owner taught it", "video_id": "video12084", "sen_id": 231030}, {"caption": "there is a sparrow with playing with another one", "video_id": "video12084", "sen_id": 231031}, {"caption": "two green birds are kissing each others", "video_id": "video12084", "sen_id": 231032}, {"caption": "one male and female beautiful parrots are speaking together", "video_id": "video12084", "sen_id": 231033}, {"caption": "a green coloured parrot kissing each other", "video_id": "video12084", "sen_id": 231034}, {"caption": "two birds are being filmed doing nothing at all", "video_id": "video12084", "sen_id": 231035}, {"caption": "there is a two sparrows walking inside a cage", "video_id": "video12084", "sen_id": 231036}, {"caption": "the both parrots are trying to speak like as humanbeing", "video_id": "video12084", "sen_id": 231037}, {"caption": "two parakeets sit in a box together staring at one another", "video_id": "video12084", "sen_id": 231038}, {"caption": "a beautiful parrot is talking that is answering to the people", "video_id": "video12084", "sen_id": 231039}, {"caption": "a parrot makes funny noises as a woman talks to it", "video_id": "video10455", "sen_id": 231040}, {"caption": "a green parrot burps laughs and then cries like a baby", "video_id": "video10455", "sen_id": 231041}, {"caption": "a green and yellow parrot in a cage burping then crying like a baby", "video_id": "video10455", "sen_id": 231042}, {"caption": "a pretty green parrot in a cage cries just like a baby", "video_id": "video10455", "sen_id": 231043}, {"caption": "a green parrot in a cage makes a crying sound like a baby", "video_id": "video10455", "sen_id": 231044}, {"caption": "a green parrot in a cage burps and then bawls", "video_id": "video10455", "sen_id": 231045}, {"caption": "a green parrot with a yellow head makes the most annoying sound in the world", "video_id": "video10455", "sen_id": 231046}, {"caption": "a small green parrot in a cage makes a variety of noises", "video_id": "video10455", "sen_id": 231047}, {"caption": "green parrot is shown making burping sounds then he makes baby crying sounds while person filming says what's the matter", "video_id": "video10455", "sen_id": 231048}, {"caption": "a green parrot makes the most annoying sound in the world", "video_id": "video10455", "sen_id": 231049}, {"caption": "a bird in a cage is imatating different human sounds", "video_id": "video10455", "sen_id": 231050}, {"caption": "a green tropical bird makes a noise and a baby cries", "video_id": "video10455", "sen_id": 231051}, {"caption": "a green color parrot is parroting with baby cries loudly", "video_id": "video10455", "sen_id": 231052}, {"caption": "a parrot is in a cage making burping and crying sounds and a female voice is speaking to the bird", "video_id": "video10455", "sen_id": 231053}, {"caption": "a parrot with green and yellow feathers sits in a cage and mimics the sounds of a crying baby", "video_id": "video10455", "sen_id": 231054}, {"caption": "a green bird imitates a crying baby perfectly", "video_id": "video10455", "sen_id": 231055}, {"caption": "a green and yellow colored parrot making burping noises and imitating a baby crying", "video_id": "video10455", "sen_id": 231056}, {"caption": "showing a parrot in a cagge", "video_id": "video10455", "sen_id": 231057}, {"caption": "a parrot inside a cage is making lots of noise and its owner is talking to it", "video_id": "video10455", "sen_id": 231058}, {"caption": "a green parrot is screeching and making weird bird noises", "video_id": "video10455", "sen_id": 231059}, {"caption": "a woman is talking about teacup pigs and how they are so small", "video_id": "video12094", "sen_id": 231060}, {"caption": "a veterinarian talks about miniature pigs and a pig is shown", "video_id": "video12094", "sen_id": 231061}, {"caption": "a woman talking and a little pig in a teacup and a piglet", "video_id": "video12094", "sen_id": 231062}, {"caption": "a woman in white is speaking followed by a pig in the cup on a scale and a pig in pearls", "video_id": "video12094", "sen_id": 231063}, {"caption": "a woman from the vet center for exotic animals discusses a spotted miniature pig that sprouts from a teacup along with a kitchen scale", "video_id": "video12094", "sen_id": 231064}, {"caption": "a girl in white speaking about pigs a small pig smells", "video_id": "video12094", "sen_id": 231065}, {"caption": "doctor talks about teacup pigs and their weight", "video_id": "video12094", "sen_id": 231066}, {"caption": "women speaking about something and pig getting up on the cup and upon the clock", "video_id": "video12094", "sen_id": 231067}, {"caption": "a woman with frizzy brown hair talks and a pig scrunches its nose while wearing pearls", "video_id": "video12094", "sen_id": 231068}, {"caption": "a woman speaks and pig gets weighed in a tea cup wearing pearls", "video_id": "video12094", "sen_id": 231069}, {"caption": "a pig is put into a cup then weighed the pig then smells the air", "video_id": "video12094", "sen_id": 231070}, {"caption": " laurie hess a veterinarian at the vet center for birds & exotics is discussing miniature pigs sizes", "video_id": "video12094", "sen_id": 231071}, {"caption": "a woman describing the growth patterns of pigs", "video_id": "video12094", "sen_id": 231072}, {"caption": "there is a women in white and a small pig inside a cup being weighed on a scale", "video_id": "video12094", "sen_id": 231073}, {"caption": "a woman is talking about the size of small pigs", "video_id": "video12094", "sen_id": 231074}, {"caption": "a woman is talking a pig is put into a cup and weighed it then smells around", "video_id": "video12094", "sen_id": 231075}, {"caption": "a woman describes the growth tendencies of a certain breed of pig when it s young", "video_id": "video12094", "sen_id": 231076}, {"caption": "a woman descibes teapot pigs", "video_id": "video12094", "sen_id": 231077}, {"caption": "a woman talking about the size of pigs with embeded graphics and pig videos", "video_id": "video12094", "sen_id": 231078}, {"caption": "a pig is standing around in a white room", "video_id": "video12094", "sen_id": 231079}, {"caption": "a man at a table tennis table teaching how to serve", "video_id": "video11160", "sen_id": 231080}, {"caption": "a man in a grey shirt is standing at one end of a table demonstrating how to properly serve a ball when playing the game table tennis", "video_id": "video11160", "sen_id": 231081}, {"caption": "a male table tennis instructor explains and demonstrates how to serve", "video_id": "video11160", "sen_id": 231082}, {"caption": "a bald man in a black shirt explains how to serve a ball for table tennis", "video_id": "video11160", "sen_id": 231083}, {"caption": "a man with an australian accent is standing behind a tennis table; as he hits a ball across the net with his paddle he begins to explain how to play table tennis", "video_id": "video11160", "sen_id": 231084}, {"caption": "a coach teaching how serve a ball in table tennis game", "video_id": "video11160", "sen_id": 231085}, {"caption": "there is a man talking about table tennis", "video_id": "video11160", "sen_id": 231086}, {"caption": "a man is wearing a gray shirt with curved vertical white stripes while standing between a wood-paneled partition and a blue ping-pong table", "video_id": "video11160", "sen_id": 231087}, {"caption": "a man giving a demonstration on how to serve while playing table tennis", "video_id": "video11160", "sen_id": 231088}, {"caption": "a guy talking about how to serve in table tennis", "video_id": "video11160", "sen_id": 231089}, {"caption": "a man in black dress explaining about table tennis game", "video_id": "video11160", "sen_id": 231090}, {"caption": "the man demonstrates how to play ping-pong in front of a blue table", "video_id": "video11160", "sen_id": 231091}, {"caption": "a talking man is standing between a wood-paneled wall and a blue ping-pong table while holding a ball and paddle", "video_id": "video11160", "sen_id": 231092}, {"caption": "a man with a bald head explain about a table tennis", "video_id": "video11160", "sen_id": 231093}, {"caption": "a man explaining how to serve in table tennis", "video_id": "video11160", "sen_id": 231094}, {"caption": "a table tennis player explaining some tricks in front of the camera", "video_id": "video11160", "sen_id": 231095}, {"caption": "a men is telling and showing how to play table tennis", "video_id": "video11160", "sen_id": 231096}, {"caption": "how to play tabletennis one man explains about it", "video_id": "video11160", "sen_id": 231097}, {"caption": "a man talks about how to hit a ping pong ball", "video_id": "video11160", "sen_id": 231098}, {"caption": "a bald man in a grey polo shirt demonstrates how to serve a ping pong ball", "video_id": "video11160", "sen_id": 231099}, {"caption": "a woman is describing various types of generators on the market", "video_id": "video12362", "sen_id": 231100}, {"caption": "a computer generated voice is speaking about thermoelectric energy gadgets", "video_id": "video12362", "sen_id": 231101}, {"caption": "a narator is talking about various electronics", "video_id": "video12362", "sen_id": 231102}, {"caption": "thermolelectric generator parts and a person talking about them", "video_id": "video12362", "sen_id": 231103}, {"caption": "a pot and some electronic components are on a white background", "video_id": "video12362", "sen_id": 231104}, {"caption": "a news clip talking about thermoelectric generators that can charge a cell phone", "video_id": "video12362", "sen_id": 231105}, {"caption": "different equipment are being showed off on the news", "video_id": "video12362", "sen_id": 231106}, {"caption": "a woman is talking about thermoelectric generators", "video_id": "video12362", "sen_id": 231107}, {"caption": "there are some important home equipment s everyone can use", "video_id": "video12362", "sen_id": 231108}, {"caption": "a computerized female voice speak about pictured camps stoves and a thermoelectric generator", "video_id": "video12362", "sen_id": 231109}, {"caption": "a woman describes a series of gadgets that are made to work off of a grid", "video_id": "video12362", "sen_id": 231110}, {"caption": "a person is doing a tutorial on the different types of generators", "video_id": "video12362", "sen_id": 231111}, {"caption": "a weird small device is being shown off on tv", "video_id": "video12362", "sen_id": 231112}, {"caption": "there is a women telling about a products shown on the screen", "video_id": "video12362", "sen_id": 231113}, {"caption": "a television ad explaining use of thermoelectric generators", "video_id": "video12362", "sen_id": 231114}, {"caption": "a black and yellow colour thermoelectric generators", "video_id": "video12362", "sen_id": 231115}, {"caption": "the advertisement is about the elecrical generatoe", "video_id": "video12362", "sen_id": 231116}, {"caption": "ld news thermoelectric generators in the nice", "video_id": "video12362", "sen_id": 231117}, {"caption": "a person in a news channel explains how a thermo electric generators work", "video_id": "video12362", "sen_id": 231118}, {"caption": "a small device of some sort is being shown", "video_id": "video12362", "sen_id": 231119}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video11415", "sen_id": 231120}, {"caption": "fighters advance in groups during aerial and ground attacks in a walled compound with large metal structures and marked areas", "video_id": "video11415", "sen_id": 231121}, {"caption": "a clip from a twitch streamer playing starcraft", "video_id": "video11415", "sen_id": 231122}, {"caption": "a man demonstrates and describes a video game he is playing", "video_id": "video11415", "sen_id": 231123}, {"caption": "someone is playing a videogame", "video_id": "video11415", "sen_id": 231124}, {"caption": "youtube video of a futuristic strategy game", "video_id": "video11415", "sen_id": 231125}, {"caption": "a man is playing and commentating a role playing computer game", "video_id": "video11415", "sen_id": 231126}, {"caption": "a streamer playing what appears to be starcraft while minimally talking", "video_id": "video11415", "sen_id": 231127}, {"caption": "young boy playing video games and live streaming at the same time", "video_id": "video11415", "sen_id": 231128}, {"caption": "man is recording himself while playing online game", "video_id": "video11415", "sen_id": 231129}, {"caption": "the matchin is operating all the movements in the area", "video_id": "video11415", "sen_id": 231130}, {"caption": "a man playing a multi player game and talking to the screen", "video_id": "video11415", "sen_id": 231131}, {"caption": "its gun shot game where many many missile is shot in many places", "video_id": "video11415", "sen_id": 231132}, {"caption": "a man is playing a video game where you shoot things", "video_id": "video11415", "sen_id": 231133}, {"caption": "there is a lot of action of fighting and armies moving around in a make believe world", "video_id": "video11415", "sen_id": 231134}, {"caption": "a man live streaming some kind of fast paced combat game", "video_id": "video11415", "sen_id": 231135}, {"caption": "an animated action game a man shoots the enemy", "video_id": "video11415", "sen_id": 231136}, {"caption": "video gamer player in the middle of a battle while live streaming", "video_id": "video11415", "sen_id": 231137}, {"caption": "a person is playing a video games and is also talking aloud", "video_id": "video11415", "sen_id": 231138}, {"caption": "a person is playing the star craft game", "video_id": "video11415", "sen_id": 231139}, {"caption": "two people putting toilet paper all over a lamborghini in a driveway", "video_id": "video11662", "sen_id": 231140}, {"caption": "a man and a woman work together to cover a car in strips of paper", "video_id": "video11662", "sen_id": 231141}, {"caption": "a man and woman cover a sports car in strips of white toilet paper", "video_id": "video11662", "sen_id": 231142}, {"caption": "a young couple spreads strips of toilet paper over the top of a white sports car", "video_id": "video11662", "sen_id": 231143}, {"caption": "a man and woman are decorating a white car with toilet paper", "video_id": "video11662", "sen_id": 231144}, {"caption": "two people are covering a nice car with toilet paper", "video_id": "video11662", "sen_id": 231145}, {"caption": "a couple toilet papers an expensive white car", "video_id": "video11662", "sen_id": 231146}, {"caption": "a man and a woman are putting toilet paper all over a white sports car", "video_id": "video11662", "sen_id": 231147}, {"caption": "a sped up video of two people toilet papering a car", "video_id": "video11662", "sen_id": 231148}, {"caption": "two people are putting toilet paper all over an exotic car", "video_id": "video11662", "sen_id": 231149}, {"caption": "a man and woman wrap a shite sports car in toilet paper", "video_id": "video11662", "sen_id": 231150}, {"caption": "with dramatic music playing in the background a couple toilet papers a car in fast motion", "video_id": "video11662", "sen_id": 231151}, {"caption": "a white car is getting wrapped in toilet paper by a male and a female wearing dark clothing", "video_id": "video11662", "sen_id": 231152}, {"caption": "two persons are wrapping a white majestic sedan with white tapes parked in the portico", "video_id": "video11662", "sen_id": 231153}, {"caption": "a lady and a man using toilet paper roll to cover the white lamborghini car", "video_id": "video11662", "sen_id": 231154}, {"caption": "two people are wrapping a car with tissue", "video_id": "video11662", "sen_id": 231155}, {"caption": "a man and woman wrap a white car in toilet paper", "video_id": "video11662", "sen_id": 231156}, {"caption": "a man and woman are toilet papering an expensive sports car", "video_id": "video11662", "sen_id": 231157}, {"caption": "people are putting toilet paper on a nice white car", "video_id": "video11662", "sen_id": 231158}, {"caption": "a man and a woman is wrapping a fancy sports car with toilet tissue", "video_id": "video11662", "sen_id": 231159}, {"caption": "a man is preparing a meal and discussing the consistency of the dish", "video_id": "video12686", "sen_id": 231160}, {"caption": "a man in a green turban prepares a meal in a kitchen", "video_id": "video12686", "sen_id": 231161}, {"caption": "a indian man with a beard and turban cooking food on a stove", "video_id": "video12686", "sen_id": 231162}, {"caption": "there is a middle eastern looking male talking about a food he is making", "video_id": "video12686", "sen_id": 231163}, {"caption": "a middle eastern gentleman preparing a recipe", "video_id": "video12686", "sen_id": 231164}, {"caption": "there is a panjabi making a dish in the kitchen", "video_id": "video12686", "sen_id": 231165}, {"caption": "a man talks about the consistency of a food dish while scooping it out of a pan and putting it in a white bowl", "video_id": "video12686", "sen_id": 231166}, {"caption": "a man in a green shirt wearing a green turban is putting food on a plate", "video_id": "video12686", "sen_id": 231167}, {"caption": "a man stands in the kitchen preparing a dish in a bowl", "video_id": "video12686", "sen_id": 231168}, {"caption": "an indian man in a green chef coat and turban spoons a stew from a black pot on the stove into a waiting white bowl", "video_id": "video12686", "sen_id": 231169}, {"caption": "there is a punjabi making his favorite dish", "video_id": "video12686", "sen_id": 231170}, {"caption": "the man in green serving some food", "video_id": "video12686", "sen_id": 231171}, {"caption": "a man wearing a turban is cooking in a kitchen", "video_id": "video12686", "sen_id": 231172}, {"caption": "an arab man stands in the kitchen and cooks a recipe", "video_id": "video12686", "sen_id": 231173}, {"caption": "a cooking show with a sihk man that has made a dish and he puts some of what he has made into a bowl", "video_id": "video12686", "sen_id": 231174}, {"caption": "a oriental looking man with rich facial hair wearing a turban is preparing a meal and describing the proper consistency of the meal", "video_id": "video12686", "sen_id": 231175}, {"caption": "a man poring sauce into a container", "video_id": "video12686", "sen_id": 231176}, {"caption": "a man wearing a turban is talking and cooking in a kitchen", "video_id": "video12686", "sen_id": 231177}, {"caption": "an indian cook prepared a dish in a kitchen and scooping the food in a bowl", "video_id": "video12686", "sen_id": 231178}, {"caption": "a man in a turban finishes cooking and transports his meal to a bowl", "video_id": "video12686", "sen_id": 231179}, {"caption": "a man discusses and demonstrates the turning radius of a sports car", "video_id": "video12210", "sen_id": 231180}, {"caption": "a man with an accent talking about the steering angle of a lamborghini", "video_id": "video12210", "sen_id": 231181}, {"caption": "a black racing car with neon green wheels covered in advertisements", "video_id": "video12210", "sen_id": 231182}, {"caption": "some one demonstrating the new sports car in front of the video", "video_id": "video12210", "sen_id": 231183}, {"caption": "a black race car covered in decals showing the steering angle for drifting", "video_id": "video12210", "sen_id": 231184}, {"caption": "a man explaining about the black sports car", "video_id": "video12210", "sen_id": 231185}, {"caption": "a man describing the parts used to set a steering tire angle that may be used for drifting", "video_id": "video12210", "sen_id": 231186}, {"caption": "a sports car showing on a road with another", "video_id": "video12210", "sen_id": 231187}, {"caption": "the steering angle of a sports car is being shown", "video_id": "video12210", "sen_id": 231188}, {"caption": "on the car factort the men telling the new sports car and their features", "video_id": "video12210", "sen_id": 231189}, {"caption": "a race car is shown while a person talks about the steering angle of a lamborghini", "video_id": "video12210", "sen_id": 231190}, {"caption": "there is a car with powerful engine inside", "video_id": "video12210", "sen_id": 231191}, {"caption": "a car parts and a car shown fully", "video_id": "video12210", "sen_id": 231192}, {"caption": "men showing and telling the parts and features of sports car", "video_id": "video12210", "sen_id": 231193}, {"caption": "a sports car unveils in the speedway in all black", "video_id": "video12210", "sen_id": 231194}, {"caption": "the man is discussing the steering angle of a lamborgini", "video_id": "video12210", "sen_id": 231195}, {"caption": "a steering angle of a lamborgini is being demonstrated by another racing car", "video_id": "video12210", "sen_id": 231196}, {"caption": "a man is explaining the steering for drifting while driving the black racing lamborghini", "video_id": "video12210", "sen_id": 231197}, {"caption": "this car string very strong easily turn any road", "video_id": "video12210", "sen_id": 231198}, {"caption": "a man speaking about the steered wheels of a black and green lamborghini", "video_id": "video12210", "sen_id": 231199}, {"caption": "a flag has been released for the cars to start racing", "video_id": "video10386", "sen_id": 231200}, {"caption": "1970's style race cars are shown speeding around a track", "video_id": "video10386", "sen_id": 231201}, {"caption": "a group of race cars starting a car race", "video_id": "video10386", "sen_id": 231202}, {"caption": "old time race cars with ads on them are out on a track", "video_id": "video10386", "sen_id": 231203}, {"caption": "various race cars from the past are shown while a man narrates", "video_id": "video10386", "sen_id": 231204}, {"caption": "a car race is shown while a narrator talks about a driver", "video_id": "video10386", "sen_id": 231205}, {"caption": "there is a tshirt man talking before a race", "video_id": "video10386", "sen_id": 231206}, {"caption": "a man waves a flag from an elevated position on a striped tower and flat cars start a race in front of dotted white lines on a smoky course", "video_id": "video10386", "sen_id": 231207}, {"caption": "the number of are participating in the car racing", "video_id": "video10386", "sen_id": 231208}, {"caption": "in an interview of peter a clip of car racing is shown", "video_id": "video10386", "sen_id": 231209}, {"caption": "a series of olf 1970s cars begins racing down a paved street", "video_id": "video10386", "sen_id": 231210}, {"caption": "a man in a green shirt talking about race cars", "video_id": "video10386", "sen_id": 231211}, {"caption": "many cars are lined up in a nascar race before the flag waves and they take off", "video_id": "video10386", "sen_id": 231212}, {"caption": "group of cars starting a fast race on the racing stage", "video_id": "video10386", "sen_id": 231213}, {"caption": "a race at a racetrack in 1972 with brock starting", "video_id": "video10386", "sen_id": 231214}, {"caption": "an group of cars racing while a man gives commentary on a racer named peter brock", "video_id": "video10386", "sen_id": 231215}, {"caption": "a group of cars are lined up a flag moves the cars begin to race", "video_id": "video10386", "sen_id": 231216}, {"caption": "race car drivers racing cars in a race track", "video_id": "video10386", "sen_id": 231217}, {"caption": "stock car racers pull out from the pole position and begin racing on a closed track", "video_id": "video10386", "sen_id": 231218}, {"caption": "a man is talking about some cars out side", "video_id": "video10386", "sen_id": 231219}, {"caption": "a group of crystals are being shown in their natural state", "video_id": "video11638", "sen_id": 231220}, {"caption": "vivid colors on flowers and water and sky are shown in a painting", "video_id": "video11638", "sen_id": 231221}, {"caption": "a blue painting with mountains and sky and ocean", "video_id": "video11638", "sen_id": 231222}, {"caption": "a slideshow of the crystal palace and a man talking about it", "video_id": "video11638", "sen_id": 231223}, {"caption": "a scientist talks about the insides of a large underground cave", "video_id": "video11638", "sen_id": 231224}, {"caption": "a commentator is speaking about many crystals in the crystal palace", "video_id": "video11638", "sen_id": 231225}, {"caption": "rock formations line the wall of a large cave", "video_id": "video11638", "sen_id": 231226}, {"caption": "the grand chamber known as the crystal palace is awesome specticals that cannot be forgotten", "video_id": "video11638", "sen_id": 231227}, {"caption": "beautiful nature with trees rivers and mountains surrounded", "video_id": "video11638", "sen_id": 231228}, {"caption": "the colourful beautiful nature is at its best", "video_id": "video11638", "sen_id": 231229}, {"caption": "a man is speaking about the grand chamber while it is being shown", "video_id": "video11638", "sen_id": 231230}, {"caption": "some natures and snow and big and beautiful mountains", "video_id": "video11638", "sen_id": 231231}, {"caption": "a beautiful colour picture dispalying on screen", "video_id": "video11638", "sen_id": 231232}, {"caption": "a beautiful rivers with variety of mountain", "video_id": "video11638", "sen_id": 231233}, {"caption": "a men explaning the iceland and nature beauty of china", "video_id": "video11638", "sen_id": 231234}, {"caption": "a man discusses features of caves that he has explored", "video_id": "video11638", "sen_id": 231235}, {"caption": "a very nice place to see with red and blue background", "video_id": "video11638", "sen_id": 231236}, {"caption": "there is a picture of snow fall mountain shown on the screen and a men is talking about it", "video_id": "video11638", "sen_id": 231237}, {"caption": "a man talks about some unbelievable features found in a large underground cave", "video_id": "video11638", "sen_id": 231238}, {"caption": "it is the video of amazing place", "video_id": "video11638", "sen_id": 231239}, {"caption": "a woman getting out of a car on a crowded sidewalk", "video_id": "video11578", "sen_id": 231240}, {"caption": "a group of people gather at night around some automobiles", "video_id": "video11578", "sen_id": 231241}, {"caption": "a man reports a current situation in spanish about a sports car", "video_id": "video11578", "sen_id": 231242}, {"caption": "there are several people out on the street corner in the evening a woman approaches the police several people are speaking together in a group on the sidewalk", "video_id": "video11578", "sen_id": 231243}, {"caption": "a large group of people gather up around the scene of an accident", "video_id": "video11578", "sen_id": 231244}, {"caption": "there is a group of people standing around and two men are talking", "video_id": "video11578", "sen_id": 231245}, {"caption": "a busy night street with cars and people", "video_id": "video11578", "sen_id": 231246}, {"caption": "a man is speaking in spanish about a car accident while onlookers watch the aftermath of said accident", "video_id": "video11578", "sen_id": 231247}, {"caption": "a news report of a situation that has happened in which multiple individuals are standing around and watching", "video_id": "video11578", "sen_id": 231248}, {"caption": "a crowd is shown during the night time while a man speaks in a foreign language", "video_id": "video11578", "sen_id": 231249}, {"caption": "a couple of people outside by cars near the sidewalk", "video_id": "video11578", "sen_id": 231250}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video11578", "sen_id": 231251}, {"caption": "a group of people are standing on the side of a road while a person is reporting on the scene", "video_id": "video11578", "sen_id": 231252}, {"caption": "bystanders gather along a road at night in an asia country", "video_id": "video11578", "sen_id": 231253}, {"caption": "many people are near the black car because of an accident", "video_id": "video11578", "sen_id": 231254}, {"caption": "a crowd of people is gathered around outside", "video_id": "video11578", "sen_id": 231255}, {"caption": "a lady walking into the group", "video_id": "video11578", "sen_id": 231256}, {"caption": " maynila sports car sumadsad sa railing ng center", "video_id": "video11578", "sen_id": 231257}, {"caption": "a group of people stand on the side of the road waiting for a race", "video_id": "video11578", "sen_id": 231258}, {"caption": "a lady from car coming out door opening and girls and boys standing girl waving hand displaying on screen", "video_id": "video11578", "sen_id": 231259}, {"caption": "two people discuss something on a news program", "video_id": "video11218", "sen_id": 231260}, {"caption": "reports on television speak about cashless societies and the dollar", "video_id": "video11218", "sen_id": 231261}, {"caption": "a woman and man talk about facial recognition", "video_id": "video11218", "sen_id": 231262}, {"caption": "a male and female newscaster discussing facial recognition", "video_id": "video11218", "sen_id": 231263}, {"caption": "a woman in a purple suit is interviewing a man in a red tie", "video_id": "video11218", "sen_id": 231264}, {"caption": "a woman in purple shirt is asking a question to man in suit for a tv show", "video_id": "video11218", "sen_id": 231265}, {"caption": "a woman on the tech bet program is talking about alibaba facial recognition software", "video_id": "video11218", "sen_id": 231266}, {"caption": "the tech bet alibaba tests facial recognition", "video_id": "video11218", "sen_id": 231267}, {"caption": "a news man and a woman is talking about a product and some kind of payments", "video_id": "video11218", "sen_id": 231268}, {"caption": "a woman and a man are discussing a company s facial recognition technology", "video_id": "video11218", "sen_id": 231269}, {"caption": "a short hair woman talking with a suit man", "video_id": "video11218", "sen_id": 231270}, {"caption": "a news correspondent is talking to a man about china", "video_id": "video11218", "sen_id": 231271}, {"caption": "a man and woman are giving an interview for a news program", "video_id": "video11218", "sen_id": 231272}, {"caption": "2 people in a news program talking about alibaba test facial recognition", "video_id": "video11218", "sen_id": 231273}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video11218", "sen_id": 231274}, {"caption": "a woman with short hair talking to a suit man", "video_id": "video11218", "sen_id": 231275}, {"caption": "two speakers talk about the technology of the alibaba facial recognition", "video_id": "video11218", "sen_id": 231276}, {"caption": "two news readers are reading some news on cnbc news channel", "video_id": "video11218", "sen_id": 231277}, {"caption": "an interview between a man an a woman", "video_id": "video11218", "sen_id": 231278}, {"caption": "a man and a woman on the news are speaking", "video_id": "video11218", "sen_id": 231279}, {"caption": "a cute white and grey hampster relaxes near the hut in his tank", "video_id": "video12541", "sen_id": 231280}, {"caption": "a video of a hamster biting on its house", "video_id": "video12541", "sen_id": 231281}, {"caption": "a fluffy hamster sitting by a hut in his cage", "video_id": "video12541", "sen_id": 231282}, {"caption": "the girl telling the caring method of white hamster in the winter", "video_id": "video12541", "sen_id": 231283}, {"caption": "a hamster is inside of a glass tank next to many appliances", "video_id": "video12541", "sen_id": 231284}, {"caption": "young girl narrating instructions on winter white hamster care showing one with little house", "video_id": "video12541", "sen_id": 231285}, {"caption": "clip is about how to take care of winter white hamster", "video_id": "video12541", "sen_id": 231286}, {"caption": "a white rodent plays in his cage on a bed of cedar chips near a straw roofed house", "video_id": "video12541", "sen_id": 231287}, {"caption": "there is a little hamster in his cage next to a small building with a hay roof", "video_id": "video12541", "sen_id": 231288}, {"caption": "a small white animal beside a tiki hut", "video_id": "video12541", "sen_id": 231289}, {"caption": "a hamster is playing inside its enclave and there are plenty of space in it", "video_id": "video12541", "sen_id": 231290}, {"caption": "a young girl is showing viewers about winter hamster care", "video_id": "video12541", "sen_id": 231291}, {"caption": "a small animal sitting under the hut in a winter season", "video_id": "video12541", "sen_id": 231292}, {"caption": "in a small tidy habitat a winter white hamster in sniffing around a little model of a house a girl speaks over the video stating she will be giving instructions on how to care for winter white hamsters", "video_id": "video12541", "sen_id": 231293}, {"caption": "a winter white hamster moves around in his cage while a young girl prepares to explain how to properly care for him", "video_id": "video12541", "sen_id": 231294}, {"caption": "there is a mouse sitting in a cage", "video_id": "video12541", "sen_id": 231295}, {"caption": "a young girl is describing how to care for a winter hamster", "video_id": "video12541", "sen_id": 231296}, {"caption": "a white hamster next to a thatched hut in an aquarium", "video_id": "video12541", "sen_id": 231297}, {"caption": "a hamster in a tank with a small straw hut that it is playing with is shown while a little girl talks about how to take care of hamsters", "video_id": "video12541", "sen_id": 231298}, {"caption": "a person is filming their pet in its habitat", "video_id": "video12541", "sen_id": 231299}, {"caption": "a man drives a snow plow through a big field of snow", "video_id": "video12536", "sen_id": 231300}, {"caption": "several men pound through a snowy terrain in a massive snow plow with ease and success", "video_id": "video12536", "sen_id": 231301}, {"caption": "a snow plow moving snow in a field", "video_id": "video12536", "sen_id": 231302}, {"caption": "a large yellow truck with a plow on the front pushes it's way through snow", "video_id": "video12536", "sen_id": 231303}, {"caption": "man drives a very large snow vehicle through the snow", "video_id": "video12536", "sen_id": 231304}, {"caption": "there is a vehicle going through the ice", "video_id": "video12536", "sen_id": 231305}, {"caption": "the truck with some people on it moving on the snow", "video_id": "video12536", "sen_id": 231306}, {"caption": "a man driving the vehicle which cleans the snow on road", "video_id": "video12536", "sen_id": 231307}, {"caption": "a snow land inside a truck moving on snow wearing in blue color dress cloth displaying on screen", "video_id": "video12536", "sen_id": 231308}, {"caption": "a man driving a large snow removal machine called the dominator", "video_id": "video12536", "sen_id": 231309}, {"caption": "a snowmobile is clearing out the snow on a field", "video_id": "video12536", "sen_id": 231310}, {"caption": "a yellow truck drives through a snowy environment as a narrator describes the journey", "video_id": "video12536", "sen_id": 231311}, {"caption": "a vehicle is cleaning deep snow on the road", "video_id": "video12536", "sen_id": 231312}, {"caption": "a man drives a rig called the dominator and plows large amounts of snow", "video_id": "video12536", "sen_id": 231313}, {"caption": "a man is using heavy machinery to move through a large snow drift", "video_id": "video12536", "sen_id": 231314}, {"caption": "a driver is driving tractor which was kept on a truck", "video_id": "video12536", "sen_id": 231315}, {"caption": "john may driving a huge snow truck in a remote area", "video_id": "video12536", "sen_id": 231316}, {"caption": "a vehicle is clearing a snow on the road", "video_id": "video12536", "sen_id": 231317}, {"caption": "a man drives a large yellow machine in the snow", "video_id": "video12536", "sen_id": 231318}, {"caption": "a thing is traveling out in the snow", "video_id": "video12536", "sen_id": 231319}, {"caption": "a person is mixing vegetables in a bowl with other ingredients", "video_id": "video12581", "sen_id": 231320}, {"caption": "a woman is adding black past to a bowl that contains other ingredients", "video_id": "video12581", "sen_id": 231321}, {"caption": "a chef discusses and demonstrates a recipe she is preparing", "video_id": "video12581", "sen_id": 231322}, {"caption": "a person mixes some vegetables in the bowl toegether", "video_id": "video12581", "sen_id": 231323}, {"caption": "a chef works on a recipe by crushing vegetables in a bowl", "video_id": "video12581", "sen_id": 231324}, {"caption": "a person mashing food in a bowl with a dowel", "video_id": "video12581", "sen_id": 231325}, {"caption": "a cook adds ingredients to a bowl including a black paste and speaks in a foreign language", "video_id": "video12581", "sen_id": 231326}, {"caption": "a man is cooking a recipe and is being shown on", "video_id": "video12581", "sen_id": 231327}, {"caption": "a person making a special chutney in a clay made utensil", "video_id": "video12581", "sen_id": 231328}, {"caption": "in a kitchen woman is mixing the vegetables and preparing the meal", "video_id": "video12581", "sen_id": 231329}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12581", "sen_id": 231330}, {"caption": "a women in a kitchen preparing some dish in a mud pot", "video_id": "video12581", "sen_id": 231331}, {"caption": "someone prearing a meal", "video_id": "video12581", "sen_id": 231332}, {"caption": "a woman adds spices into a pot as well as a black sauce", "video_id": "video12581", "sen_id": 231333}, {"caption": "someone is cooking something and adding ingredient and talking in different laungage", "video_id": "video12581", "sen_id": 231334}, {"caption": "a woman makes fresh salsa with a mortar and pestle", "video_id": "video12581", "sen_id": 231335}, {"caption": "in the kitchen a woman preparing a tasty dish", "video_id": "video12581", "sen_id": 231336}, {"caption": "ingredients are being muddled with a mortar and pestle then a thick paste is added", "video_id": "video12581", "sen_id": 231337}, {"caption": "a cook taps a spoon on the side of a pot to release an ingredient", "video_id": "video12581", "sen_id": 231338}, {"caption": "a women is doing some salads receipe using some tomatoes carrots and some pastes etc", "video_id": "video12581", "sen_id": 231339}, {"caption": "two cartoon characters are walking together towards a bookcase", "video_id": "video10872", "sen_id": 231340}, {"caption": "a young woman tries to help her friend to have a better day", "video_id": "video10872", "sen_id": 231341}, {"caption": "one cartoon character tries to cheer up a depressed cartoon character", "video_id": "video10872", "sen_id": 231342}, {"caption": "a cartoon character of a woman picks up another woman and takes her to a shelf of books", "video_id": "video10872", "sen_id": 231343}, {"caption": "a cartoon woman with blue hair and wearing a green dress picks up a blue depressed person and drags them over to a bookshelf filled with books", "video_id": "video10872", "sen_id": 231344}, {"caption": "an animated glowing girl tries to brighten up another one", "video_id": "video10872", "sen_id": 231345}, {"caption": "two animated cartoons with blue hair walk to a library", "video_id": "video10872", "sen_id": 231346}, {"caption": "a 3d animated girl is lifting another 3d animated boy", "video_id": "video10872", "sen_id": 231347}, {"caption": "movie mistakes 8 so if sadness can read", "video_id": "video10872", "sen_id": 231348}, {"caption": "characters from the movie inside out are talking", "video_id": "video10872", "sen_id": 231349}, {"caption": "bunch of characters are talking to each other in cartoon movie", "video_id": "video10872", "sen_id": 231350}, {"caption": "in the cartoon video a girl lifts up a boy from the floor who looks sad", "video_id": "video10872", "sen_id": 231351}, {"caption": "cartoon girl goes and picks a boy cartoon and bring him to dance", "video_id": "video10872", "sen_id": 231352}, {"caption": "its animation movie in which the girl says that we think about something else", "video_id": "video10872", "sen_id": 231353}, {"caption": "animated characters are movingdancing talking and playing", "video_id": "video10872", "sen_id": 231354}, {"caption": "a small girl doll taking away the boy doll who sleeping on the floor", "video_id": "video10872", "sen_id": 231355}, {"caption": "its related to the movie mistakes that the film makers commit while making films", "video_id": "video10872", "sen_id": 231356}, {"caption": "a little fairy picks up a heavy object off the ground", "video_id": "video10872", "sen_id": 231357}, {"caption": "a person is showing cartoon character on screen", "video_id": "video10872", "sen_id": 231358}, {"caption": "some scenes from movies are being shown", "video_id": "video10872", "sen_id": 231359}, {"caption": "old man with beard talks about political threats at beginning of presidential debate", "video_id": "video12442", "sen_id": 231360}, {"caption": "cnn host wolf blitzer is moderating a republican presidential primary debate", "video_id": "video12442", "sen_id": 231361}, {"caption": "cnn news channel host speaking about the recent terror attacks in paris and how the united states is on its highest alert since 911", "video_id": "video12442", "sen_id": 231362}, {"caption": "on a stage a speaker is talking to the camera at the republican presidential debate", "video_id": "video12442", "sen_id": 231363}, {"caption": "wolf blitzer on cnn moderates a 2016 presidential debate and poses a question to donald trump", "video_id": "video12442", "sen_id": 231364}, {"caption": "wolf blitzer introduces a republican presidential debate citing terror attacks in the us", "video_id": "video12442", "sen_id": 231365}, {"caption": "a man moderates a political debate in front of a large audience", "video_id": "video12442", "sen_id": 231366}, {"caption": "a man in a gray tie and black glasses is pointing and talking", "video_id": "video12442", "sen_id": 231367}, {"caption": "cnn host wolf blitzer discusses issues to be discussed during republican presidential debate", "video_id": "video12442", "sen_id": 231368}, {"caption": "a man holding a paper while talking to the camera while an audience is behind him", "video_id": "video12442", "sen_id": 231369}, {"caption": "a man in a suit and glasses live on a podium talking", "video_id": "video12442", "sen_id": 231370}, {"caption": "republican presidential debate opening", "video_id": "video12442", "sen_id": 231371}, {"caption": "an elderly man dressed in a suit hosting the debate on cnn", "video_id": "video12442", "sen_id": 231372}, {"caption": "a people are clapping and a man is talking in the stage", "video_id": "video12442", "sen_id": 231373}, {"caption": "an old man wearing black suit with specs on the stage speaking with big crowd on his backside", "video_id": "video12442", "sen_id": 231374}, {"caption": "a host standing in front of many debaters in an auditorium filled with people", "video_id": "video12442", "sen_id": 231375}, {"caption": "wolf blitzer is at the republican presidential debate discussing the current issues of terrorism", "video_id": "video12442", "sen_id": 231376}, {"caption": "old guy in black coat and white hair talking in mike by holding paper in hand", "video_id": "video12442", "sen_id": 231377}, {"caption": "a old man in white color dress standing speaking a paper in hand discusing on topic audience watching clapping hands displaying on screen", "video_id": "video12442", "sen_id": 231378}, {"caption": "an audience is listening to a man talking", "video_id": "video12442", "sen_id": 231379}, {"caption": "the man in the video is showing how you can save the food he just prepared for the next day", "video_id": "video11261", "sen_id": 231380}, {"caption": "a young man stirring together food items in a bowl", "video_id": "video11261", "sen_id": 231381}, {"caption": "a young man moving food around in a bowl", "video_id": "video11261", "sen_id": 231382}, {"caption": "a man is sitting at a table stirring a bowl of food while talking", "video_id": "video11261", "sen_id": 231383}, {"caption": "a man in a striped tank and red glasses is mixing ceviche in a white bowl on a patio", "video_id": "video11261", "sen_id": 231384}, {"caption": "a guy is using a spoon to stir a bowl of ceviche while explaining how it is going to taste better tomorrow", "video_id": "video11261", "sen_id": 231385}, {"caption": "a man makes shrimp ceviche and discusses how much better it will be after it sits overnight", "video_id": "video11261", "sen_id": 231386}, {"caption": "a man stirs a meal in his plate consisting of shrimp and vegetables", "video_id": "video11261", "sen_id": 231387}, {"caption": "a man is preparing a salad and mixing it in a plate", "video_id": "video11261", "sen_id": 231388}, {"caption": "a man narrates while stirring a dish of shrimp and veggies in a bowl", "video_id": "video11261", "sen_id": 231389}, {"caption": "there is a man making a dish with prawn fish", "video_id": "video11261", "sen_id": 231390}, {"caption": "a man eating and stirring a dish of shrimp and sliced vegetables", "video_id": "video11261", "sen_id": 231391}, {"caption": "a young man with curly hair red sunglasses and a sleeveless shirt is stirring a shrimp ceviche with a spoon", "video_id": "video11261", "sen_id": 231392}, {"caption": "a man in glass is mixing prawn and some other vegetable in a bowl and talking about that", "video_id": "video11261", "sen_id": 231393}, {"caption": "a person wearing glass mixes the ingredients inside the bowl", "video_id": "video11261", "sen_id": 231394}, {"caption": "a narrator explains how to prepare seafood cerviche and tells the viewing audience how much better the dish will taste the next day", "video_id": "video11261", "sen_id": 231395}, {"caption": "a man is showing how to prepare ceviche", "video_id": "video11261", "sen_id": 231396}, {"caption": "a man mixes up a shrimp dish in a bowl", "video_id": "video11261", "sen_id": 231397}, {"caption": "a man bowl spoon mixing dish sitting inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11261", "sen_id": 231398}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11261", "sen_id": 231399}, {"caption": "a man in a motorcycle helmet explores the beach", "video_id": "video10965", "sen_id": 231400}, {"caption": "young man in plaid shirt wearing a helmet and walking on the beach", "video_id": "video10965", "sen_id": 231401}, {"caption": "a man leaves his scooter to walk along a rocky beach", "video_id": "video10965", "sen_id": 231402}, {"caption": "a man in a motorcycle helmet walking around a beach", "video_id": "video10965", "sen_id": 231403}, {"caption": "a dirt bike rider wearing a red shirt stops to explore a rock covered sandy beach", "video_id": "video10965", "sen_id": 231404}, {"caption": "a person with a helmet is climbing small rocks on a beach with lush mountains in the background", "video_id": "video10965", "sen_id": 231405}, {"caption": "a man is climbing on a small rock and there are mountains and a beach", "video_id": "video10965", "sen_id": 231406}, {"caption": " wearing a white helmet with dark face shield leaves his motorcycle on elevated ground to walk over dark-gray rocks on a tan beach", "video_id": "video10965", "sen_id": 231407}, {"caption": "a person walks around a mountain which is surrounded by beach stand and sea shore", "video_id": "video10965", "sen_id": 231408}, {"caption": "a sand covered rock covered beach near mountains with a man climbing on one of the rocks then walking through the sand", "video_id": "video10965", "sen_id": 231409}, {"caption": "person is on the mountain with his big motorbike", "video_id": "video10965", "sen_id": 231410}, {"caption": "a man with a helmet is walking along a rocky sea side on s beautiful blue sky day", "video_id": "video10965", "sen_id": 231411}, {"caption": "a video clip of a beach and mountain with a man in a motorcycle helmet roaming the beach", "video_id": "video10965", "sen_id": 231412}, {"caption": "a bike rider walking in the seashore wearing his helmet", "video_id": "video10965", "sen_id": 231413}, {"caption": "a motorcycle rider walking on a very rocky beach with mountains in the background", "video_id": "video10965", "sen_id": 231414}, {"caption": "a man is walking around one some beach rocks", "video_id": "video10965", "sen_id": 231415}, {"caption": "there is a man with helmet walking in to the shore", "video_id": "video10965", "sen_id": 231416}, {"caption": "on the sand in between mountain a bike was kept and the person with helmet searching something", "video_id": "video10965", "sen_id": 231417}, {"caption": "a man is walking around the rock in the sea side", "video_id": "video10965", "sen_id": 231418}, {"caption": "a bike is standing alone and a person is searching something near sea shore", "video_id": "video10965", "sen_id": 231419}, {"caption": "a woman is discussing the different types of current fashion trends", "video_id": "video12525", "sen_id": 231420}, {"caption": "the models have dressed up their look with accessories", "video_id": "video12525", "sen_id": 231421}, {"caption": "fashion models display outfits in various urban settings", "video_id": "video12525", "sen_id": 231422}, {"caption": "a woman poses in a pale blue turtleneck sweater and black miniskirt while holding a shocking pink purse a model wears a white outfit with torn jeans and a shoulder bag resembling a license plate a model wears a white tunic sweater with cutout pants and carries a handbag resembling a playing card", "video_id": "video12525", "sen_id": 231423}, {"caption": "a female voice comments on the fashionable clothing being worn by a trio of still photos of female models", "video_id": "video12525", "sen_id": 231424}, {"caption": "three pictures of women wearing the lastest fashions", "video_id": "video12525", "sen_id": 231425}, {"caption": "there are three modal girls dressing well and goodlooked", "video_id": "video12525", "sen_id": 231426}, {"caption": "three ladies are posing with magnificent fashion clothes", "video_id": "video12525", "sen_id": 231427}, {"caption": "three women are being presented and rated on their fashion", "video_id": "video12525", "sen_id": 231428}, {"caption": "several photos of models while a woman narrates about fashion", "video_id": "video12525", "sen_id": 231429}, {"caption": "a three different girls are wearing a very nice dress along with a hand bag", "video_id": "video12525", "sen_id": 231430}, {"caption": "women are standing posing in different kinds of outfits", "video_id": "video12525", "sen_id": 231431}, {"caption": "a lady advertising the fashion in her and giving some important points on the fashion", "video_id": "video12525", "sen_id": 231432}, {"caption": "a woman is explaining something as the video shown three women", "video_id": "video12525", "sen_id": 231433}, {"caption": "a woman is explaining about the latest fashion accessories for women", "video_id": "video12525", "sen_id": 231434}, {"caption": "a woman talks about her outfits while showing off her fashion style", "video_id": "video12525", "sen_id": 231435}, {"caption": "there is a model wear look from the ladies", "video_id": "video12525", "sen_id": 231436}, {"caption": "three young women in very fashionable outfits pose for pictures", "video_id": "video12525", "sen_id": 231437}, {"caption": "models are showing off different current fashion trends", "video_id": "video12525", "sen_id": 231438}, {"caption": "a woman is posing in places out side", "video_id": "video12525", "sen_id": 231439}, {"caption": "a screen uses color white lettering text and equal symbols to explain the meaning of acronym-type abbreviations against a black background", "video_id": "video11260", "sen_id": 231440}, {"caption": "a text list containing afs afc and afa", "video_id": "video11260", "sen_id": 231441}, {"caption": "a man and some text on a black bacground about aft afc and afa", "video_id": "video11260", "sen_id": 231442}, {"caption": "a man explains the functions of a camera while a graphic on screen illustrates different photography terms", "video_id": "video11260", "sen_id": 231443}, {"caption": "abbreviations are being show", "video_id": "video11260", "sen_id": 231444}, {"caption": "a check shirt man talking from room", "video_id": "video11260", "sen_id": 231445}, {"caption": "several words with equal signs and meanings are listed on the screen", "video_id": "video11260", "sen_id": 231446}, {"caption": "a man describeing directions and functions on how to use a camera", "video_id": "video11260", "sen_id": 231447}, {"caption": "a man is explaining how to focus a camera lens", "video_id": "video11260", "sen_id": 231448}, {"caption": "a person is explaining about how to use the camera", "video_id": "video11260", "sen_id": 231449}, {"caption": "there is a man talking about some modeling matters", "video_id": "video11260", "sen_id": 231450}, {"caption": "a man in a blue striped shirt describing different focusing modes for a camera", "video_id": "video11260", "sen_id": 231451}, {"caption": "the man dicusses different focus modes based on whether you press the shutter down once or multiple times", "video_id": "video11260", "sen_id": 231452}, {"caption": "a man wearing a blue striped shirt is discussing how a camera shutter works", "video_id": "video11260", "sen_id": 231453}, {"caption": "a man is giving instructions regarding the focusing of a camera lens", "video_id": "video11260", "sen_id": 231454}, {"caption": "instruction is presented on the operation of the focusing modes and type of shot that will be taken with a camera", "video_id": "video11260", "sen_id": 231455}, {"caption": "definitions of acronyms and words which explain what they mean", "video_id": "video11260", "sen_id": 231456}, {"caption": "a man describes the various focusing modes of a camera with respect to how you will be using them", "video_id": "video11260", "sen_id": 231457}, {"caption": "a man narrates over a tutorial on camera workings", "video_id": "video11260", "sen_id": 231458}, {"caption": "a man is talking about focusing modes used on a camera", "video_id": "video11260", "sen_id": 231459}, {"caption": "a man is giving an interview on air about greece", "video_id": "video12704", "sen_id": 231460}, {"caption": "people are walking around a building and using an atm while a man discusses banking", "video_id": "video12704", "sen_id": 231461}, {"caption": "a guy is explaining about the stock market through audio to some tv channel", "video_id": "video12704", "sen_id": 231462}, {"caption": "a men is wearing a suit and telling a sports news on bbc news", "video_id": "video12704", "sen_id": 231463}, {"caption": "a man opening a door and entered in it", "video_id": "video12704", "sen_id": 231464}, {"caption": "top news was discussed by news reporter greece on the brink", "video_id": "video12704", "sen_id": 231465}, {"caption": "a banking machine many peoples walking on the road displaying on screen", "video_id": "video12704", "sen_id": 231466}, {"caption": "a busy street and a person with money is shown", "video_id": "video12704", "sen_id": 231467}, {"caption": "there are lots of people walking on the streets outside the building", "video_id": "video12704", "sen_id": 231468}, {"caption": "a man is calling into the news giving an interview while a picture of him is displayed", "video_id": "video12704", "sen_id": 231469}, {"caption": "several people walking by a bank and then a close up a someone using an atm machine", "video_id": "video12704", "sen_id": 231470}, {"caption": "people are walking on the road in front of a huge building", "video_id": "video12704", "sen_id": 231471}, {"caption": " entering atm counter and taking money", "video_id": "video12704", "sen_id": 231472}, {"caption": "lady in black dress taking money from atm machine and kept in purse", "video_id": "video12704", "sen_id": 231473}, {"caption": "a few people walk pass a building while some walks in a person is looking at an atm", "video_id": "video12704", "sen_id": 231474}, {"caption": "a newscaster is discussing financial details in greece", "video_id": "video12704", "sen_id": 231475}, {"caption": "george papandreou talks about greece on the brink of financial crisis", "video_id": "video12704", "sen_id": 231476}, {"caption": "bloomberg george papandreou top news greeceon the brink", "video_id": "video12704", "sen_id": 231477}, {"caption": "george papandreou speeking about greece on the brink", "video_id": "video12704", "sen_id": 231478}, {"caption": "news about the greece is showing in the video and one person is taking money from the atm", "video_id": "video12704", "sen_id": 231479}, {"caption": "a tourist is giving us a tour of his vacation hotel for the week", "video_id": "video10111", "sen_id": 231480}, {"caption": "a man is unlocking his door and talking on the phone", "video_id": "video10111", "sen_id": 231481}, {"caption": "a man is using his phone to record himself in a room", "video_id": "video10111", "sen_id": 231482}, {"caption": "a man is shown in a mirror as a camera pans a living room in a house", "video_id": "video10111", "sen_id": 231483}, {"caption": "a hand is trying to open a silver lock on a door", "video_id": "video10111", "sen_id": 231484}, {"caption": "a man films himself in a mirror and then films himself opening a locked door", "video_id": "video10111", "sen_id": 231485}, {"caption": "a man wearing a black shirt trying to unlock the door", "video_id": "video10111", "sen_id": 231486}, {"caption": "a man looks into a mirror waves at himself and then struggles to unlock a door", "video_id": "video10111", "sen_id": 231487}, {"caption": "a boy is using his camera phone to record the inside of his house", "video_id": "video10111", "sen_id": 231488}, {"caption": "a man is talking about using his phone while recording with his cell trying to open a door with a metal lock", "video_id": "video10111", "sen_id": 231489}, {"caption": "a graphic where a man films another man to illustrate how best to use a cell phone's camera", "video_id": "video10111", "sen_id": 231490}, {"caption": "a dark-haired man is using his phone to film a hotel room", "video_id": "video10111", "sen_id": 231491}, {"caption": "a man shows himself in the mirror and then tries to unlock a door", "video_id": "video10111", "sen_id": 231492}, {"caption": "there is a man walking in to the room", "video_id": "video10111", "sen_id": 231493}, {"caption": "a boy in front of mirror phone in hand catching camera waving hand and close door displaying on screen", "video_id": "video10111", "sen_id": 231494}, {"caption": "a person is standing by a door locking it", "video_id": "video10111", "sen_id": 231495}, {"caption": "a guy keeping a mobile phone and taking camera", "video_id": "video10111", "sen_id": 231496}, {"caption": "a man is trying to open a lock to enter a room", "video_id": "video10111", "sen_id": 231497}, {"caption": "a man holding a phone is waving into a mirror", "video_id": "video10111", "sen_id": 231498}, {"caption": "a man explores a pink room with his phone and discovers a bolted door", "video_id": "video10111", "sen_id": 231499}, {"caption": "a man is driving a vehicle down a road and describing the features", "video_id": "video11302", "sen_id": 231500}, {"caption": "a man discusses the characteristics of a car he is test driving", "video_id": "video11302", "sen_id": 231501}, {"caption": "a man is standing besides a car while describing its specifications", "video_id": "video11302", "sen_id": 231502}, {"caption": "a man is driving a car down the road and then explains about it", "video_id": "video11302", "sen_id": 231503}, {"caption": "a man is driving then stands by the car talking about it", "video_id": "video11302", "sen_id": 231504}, {"caption": "a clip of a foreign person talking about his car", "video_id": "video11302", "sen_id": 231505}, {"caption": "a man speaks is russian while driving and standing near a motor vehicle", "video_id": "video11302", "sen_id": 231506}, {"caption": "man is driving car and speaking about its features", "video_id": "video11302", "sen_id": 231507}, {"caption": "a man wearing a seat belt gray jacket and checkered shirt drives a car through grassy land a man wearing a black leather jacket and bell-bottom pants leans against the side of a blue car while pointing and nodding in agreement", "video_id": "video11302", "sen_id": 231508}, {"caption": "a man discusses a car that he is getting ready to do a test drive in", "video_id": "video11302", "sen_id": 231509}, {"caption": "a man with black hair wearing bell bottoms and a leather coat rides in and stands outside of a car", "video_id": "video11302", "sen_id": 231510}, {"caption": "a man is driving and then shows off a small older blue car", "video_id": "video11302", "sen_id": 231511}, {"caption": "a man is explaining the specifications of a car", "video_id": "video11302", "sen_id": 231512}, {"caption": "a man is telling the features of a car", "video_id": "video11302", "sen_id": 231513}, {"caption": "a man describes his vehicle", "video_id": "video11302", "sen_id": 231514}, {"caption": "a man is driving around in a blue car", "video_id": "video11302", "sen_id": 231515}, {"caption": "a driver turns the steering wheel while wearing a seatbelt a big man with his feet crossed leans on a small blue car", "video_id": "video11302", "sen_id": 231516}, {"caption": "a person explain a new model car of some brand", "video_id": "video11302", "sen_id": 231517}, {"caption": "a man in jeans in jacket is leaning against a blue car speaking in a foreign language", "video_id": "video11302", "sen_id": 231518}, {"caption": "a man is talking as he drives a car", "video_id": "video11302", "sen_id": 231519}, {"caption": "one hand is holding a smart phone and another hand is taking screws out of it with a screwdriver", "video_id": "video12624", "sen_id": 231520}, {"caption": "a video repairing a broken part for an iphone", "video_id": "video12624", "sen_id": 231521}, {"caption": "a person is explaining various things involved in a cellphone", "video_id": "video12624", "sen_id": 231522}, {"caption": "unscrewing parts of the inside of a cell phone using a screwdriver", "video_id": "video12624", "sen_id": 231523}, {"caption": "an educational video shows how to secure a motherboard on a phone with screwdrivers", "video_id": "video12624", "sen_id": 231524}, {"caption": "a man shows how to take apart a cell phone", "video_id": "video12624", "sen_id": 231525}, {"caption": "a small piece of electronic equipment is being taken apart using a screwdriver", "video_id": "video12624", "sen_id": 231526}, {"caption": "the men telling the inner part of the mobile part and unscrew the part", "video_id": "video12624", "sen_id": 231527}, {"caption": "a man demonstrates how to remove a motherboard from a cell phone", "video_id": "video12624", "sen_id": 231528}, {"caption": "a technician demonstrating about the dismantling of a mobile phone", "video_id": "video12624", "sen_id": 231529}, {"caption": "there is a man explaining parts of a mobile phone", "video_id": "video12624", "sen_id": 231530}, {"caption": "a person showing how to attached screws to a divice mother board", "video_id": "video12624", "sen_id": 231531}, {"caption": "a man testing his device with the screw driver", "video_id": "video12624", "sen_id": 231532}, {"caption": "user describes on how to open the backcase of the phone", "video_id": "video12624", "sen_id": 231533}, {"caption": "a man is inserting screws to hold a motherboard in place", "video_id": "video12624", "sen_id": 231534}, {"caption": "a person is repairing a mobile phone with a screw driver", "video_id": "video12624", "sen_id": 231535}, {"caption": "someone showing a phone and then using a screwdriver to take it apart", "video_id": "video12624", "sen_id": 231536}, {"caption": "a person with a thin screw driver examines the inside of a device", "video_id": "video12624", "sen_id": 231537}, {"caption": "a mobile phone circuit repairing with hand displaying on screen", "video_id": "video12624", "sen_id": 231538}, {"caption": "a box of electronics is being shown to someone", "video_id": "video12624", "sen_id": 231539}, {"caption": "two robots one in the background was a grayish color giving orders and a white robot was working on the computer", "video_id": "video10806", "sen_id": 231540}, {"caption": "a block character chuckles evilly and another character waits impatiently", "video_id": "video10806", "sen_id": 231541}, {"caption": "two robots are interacting by a c omputer", "video_id": "video10806", "sen_id": 231542}, {"caption": "black box cartoon figure laughing at a white figure on a computer", "video_id": "video10806", "sen_id": 231543}, {"caption": "two robots utilizing and are dependent on laptop computers", "video_id": "video10806", "sen_id": 231544}, {"caption": "one white lego cartoon character types on his computer while one black lego cartoon character asks what is taking so long", "video_id": "video10806", "sen_id": 231545}, {"caption": "an animated robot works at a computer while another asks what is taking so long", "video_id": "video10806", "sen_id": 231546}, {"caption": "3d video of a star wars parody in the minecraft style", "video_id": "video10806", "sen_id": 231547}, {"caption": "a white-colored robot typing on a laptop computer and a black-colored robot asking him what's taking so long", "video_id": "video10806", "sen_id": 231548}, {"caption": "a robbert is working and talking to the computer", "video_id": "video10806", "sen_id": 231549}, {"caption": "two robots is sitting on the computer and waching something", "video_id": "video10806", "sen_id": 231550}, {"caption": "there is a man using laptop with his friend", "video_id": "video10806", "sen_id": 231551}, {"caption": "a robot operating laptop keyboard with his hand", "video_id": "video10806", "sen_id": 231552}, {"caption": "two characters speak as one of the two works on a computer system", "video_id": "video10806", "sen_id": 231553}, {"caption": "a skull head types on his laptop and is confronted by his overlord", "video_id": "video10806", "sen_id": 231554}, {"caption": "a square headed character is using a lap top", "video_id": "video10806", "sen_id": 231555}, {"caption": "there is a robot using a laptop in a room", "video_id": "video10806", "sen_id": 231556}, {"caption": "robots are there and typing in a laptop", "video_id": "video10806", "sen_id": 231557}, {"caption": "two animated characters are working on a lap top", "video_id": "video10806", "sen_id": 231558}, {"caption": "some skeleton block heads are doing their thing", "video_id": "video10806", "sen_id": 231559}, {"caption": "a still image of an asian woman sitting on a chair and then one in provocative clothing", "video_id": "video11580", "sen_id": 231560}, {"caption": "a woman sitting on a stool and a woman doing a seductive pose on the ground", "video_id": "video11580", "sen_id": 231561}, {"caption": "a woman sitting on a bench and a woman lying down erotically", "video_id": "video11580", "sen_id": 231562}, {"caption": "aoi tsukasa is wearing a blue and white dress sitting on a stool and a woman wearing black in a suggestive prose", "video_id": "video11580", "sen_id": 231563}, {"caption": "a woman posing on an outdoor stool and another woman on all fours", "video_id": "video11580", "sen_id": 231564}, {"caption": "a woman sitting on a stool outside an woman doing a seductive pose", "video_id": "video11580", "sen_id": 231565}, {"caption": "a very cute girl in green and white shorts is sitting alone", "video_id": "video11580", "sen_id": 231566}, {"caption": "two young girls posing for a photograph", "video_id": "video11580", "sen_id": 231567}, {"caption": "beautiful women airi suzumura aoi tsukasa www", "video_id": "video11580", "sen_id": 231568}, {"caption": "a video slideshow shows several scenes of a model", "video_id": "video11580", "sen_id": 231569}, {"caption": "a younger woman doing a photoshoot only showing 2 pictures", "video_id": "video11580", "sen_id": 231570}, {"caption": "there is a women sitting on the street", "video_id": "video11580", "sen_id": 231571}, {"caption": "an beauty girls are displaying the frocks and their image of beauty", "video_id": "video11580", "sen_id": 231572}, {"caption": "asian women pose for pictures in different settings wearing colorful outfits", "video_id": "video11580", "sen_id": 231573}, {"caption": "a japanese girl sits on a wooden stool wearing a white skirt", "video_id": "video11580", "sen_id": 231574}, {"caption": "it is the presentation of girls magazine", "video_id": "video11580", "sen_id": 231575}, {"caption": "there is a girl wearing white short dress and sitting on chair a women in black dress lying down with her tounge out", "video_id": "video11580", "sen_id": 231576}, {"caption": "cute chinese girl is being cute and playful", "video_id": "video11580", "sen_id": 231577}, {"caption": "beautiful young asian women pose outside and in a room wearing a costume", "video_id": "video11580", "sen_id": 231578}, {"caption": "an asian girl is sitting outside while music plays", "video_id": "video11580", "sen_id": 231579}, {"caption": "a women describing her experience on a film cast", "video_id": "video12636", "sen_id": 231580}, {"caption": "the actress kristen whig talking about a movie", "video_id": "video12636", "sen_id": 231581}, {"caption": "a blonde woman is talking happily in an office", "video_id": "video12636", "sen_id": 231582}, {"caption": "a woman with short hair sitting and talking", "video_id": "video12636", "sen_id": 231583}, {"caption": "an actress does an interview about the people she worked with on a movie", "video_id": "video12636", "sen_id": 231584}, {"caption": "inside a room a woman in official dress is seated and talking", "video_id": "video12636", "sen_id": 231585}, {"caption": "beautiful woman with blonde hair is talking to someone", "video_id": "video12636", "sen_id": 231586}, {"caption": "a blond woman talks about the cast of a film she works on", "video_id": "video12636", "sen_id": 231587}, {"caption": "blond women in a tan sweater and gold earrings talking to the camera", "video_id": "video12636", "sen_id": 231588}, {"caption": "the lady with gray colour dress sitting and saying something", "video_id": "video12636", "sen_id": 231589}, {"caption": "a women in brown dress is saying something here", "video_id": "video12636", "sen_id": 231590}, {"caption": "a lady is talking and wearing grey color dress", "video_id": "video12636", "sen_id": 231591}, {"caption": "women sitting on a chair and giving interview to someone", "video_id": "video12636", "sen_id": 231592}, {"caption": "a woman describes her experience working with a cast of actors on a movie", "video_id": "video12636", "sen_id": 231593}, {"caption": " wearing a grey shirt with her blonde hair styled straight is being interviewed about a movie she is in", "video_id": "video12636", "sen_id": 231594}, {"caption": "a lady in ash dress talking about some matter very calmly", "video_id": "video12636", "sen_id": 231595}, {"caption": "a blonde woman conducts an impromptu interview", "video_id": "video12636", "sen_id": 231596}, {"caption": " a former snl cast member wearing a gray cowl neck sweater dress talking about directing a movie", "video_id": "video12636", "sen_id": 231597}, {"caption": "a woman is white hair is laughing and talking about something", "video_id": "video12636", "sen_id": 231598}, {"caption": "a woman is speaking about her time on a reality show", "video_id": "video12636", "sen_id": 231599}, {"caption": "a person has their arm out wating for a car", "video_id": "video12750", "sen_id": 231600}, {"caption": "a lady sings about a girl that is hitchhiking along the roadside", "video_id": "video12750", "sen_id": 231601}, {"caption": "a young girl with long dark hair hitch hiking on the side of the road", "video_id": "video12750", "sen_id": 231602}, {"caption": "a woman with blonde hair is singing and moving around", "video_id": "video12750", "sen_id": 231603}, {"caption": "a woman with dark eye shadow and wearing a black jacket holds her thumb out to hitch hike", "video_id": "video12750", "sen_id": 231604}, {"caption": "a woman is singing on the road a girl is asking for lift while no vehicle stops", "video_id": "video12750", "sen_id": 231605}, {"caption": "lady with brown hair sings and a lady waits for a lift", "video_id": "video12750", "sen_id": 231606}, {"caption": "women singing a song and she is asking a lift on the roadside cars", "video_id": "video12750", "sen_id": 231607}, {"caption": "a blonde lady sings and hitches for a car", "video_id": "video12750", "sen_id": 231608}, {"caption": "the singers imagination of the song wandering in the city asking for lift", "video_id": "video12750", "sen_id": 231609}, {"caption": "a country music star is singing and acting out scenes for her music video", "video_id": "video12750", "sen_id": 231610}, {"caption": "a lady is singing while another lady is hitch hiking while walking down the road", "video_id": "video12750", "sen_id": 231611}, {"caption": "a women in a tank top making a musical video", "video_id": "video12750", "sen_id": 231612}, {"caption": "avril lavigne sings a song to footage of her hitchhiking", "video_id": "video12750", "sen_id": 231613}, {"caption": "a woman singing in half the scenes with a woman hitchhiker trying to get a ride on a busy highway in the other half", "video_id": "video12750", "sen_id": 231614}, {"caption": "a lady is singing and wearing black dress", "video_id": "video12750", "sen_id": 231615}, {"caption": "a lady with dark black make up to eyes sings about the help she couldn t make", "video_id": "video12750", "sen_id": 231616}, {"caption": "a woman in dark makeup is singing a woman is hitchicking", "video_id": "video12750", "sen_id": 231617}, {"caption": "a woman with dark eye makeup and light hair sings in a music video", "video_id": "video12750", "sen_id": 231618}, {"caption": "a music video depicting a woman hitchhiking", "video_id": "video12750", "sen_id": 231619}, {"caption": "a young couple play with toys and ornaments at a christmas store", "video_id": "video11932", "sen_id": 231620}, {"caption": "the lady in the black and red stripped dress is dancing in a store to christmas music", "video_id": "video11932", "sen_id": 231621}, {"caption": "a blog of a family going christmas shopping", "video_id": "video11932", "sen_id": 231622}, {"caption": "a lady dances in a store with a singing lightup christmas tree", "video_id": "video11932", "sen_id": 231623}, {"caption": "a woman dances in a store then it moves to toy animals that are dancing to christmas music", "video_id": "video11932", "sen_id": 231624}, {"caption": "a variety of christmas toys are featured including a woman dancing to one in the middle of a store", "video_id": "video11932", "sen_id": 231625}, {"caption": "a lady dancing in the toys shop while the music made by a toy", "video_id": "video11932", "sen_id": 231626}, {"caption": "it is a girl dancing along to the music of a toy", "video_id": "video11932", "sen_id": 231627}, {"caption": "a christmas tree toy is lighting up and singing whilst a girl dances", "video_id": "video11932", "sen_id": 231628}, {"caption": "a blond lady with black and red dress dances in a store with a male", "video_id": "video11932", "sen_id": 231629}, {"caption": "a women is dancing with a man in black t-shirt", "video_id": "video11932", "sen_id": 231630}, {"caption": "a hand holding a sprinkled donut then it holding a christmas toy", "video_id": "video11932", "sen_id": 231631}, {"caption": "a lady is dancing in a store to music from a stuffed christmas toy", "video_id": "video11932", "sen_id": 231632}, {"caption": "a woman ina black and r d dress is dancing in a christmas store to music playing from a musicial christmas tree novelty item", "video_id": "video11932", "sen_id": 231633}, {"caption": "woman in black and red striped dress dances in store to singing christmas tree plush toy man holds ornament of bandaged bear holding sign reading my heart is broken in hand", "video_id": "video11932", "sen_id": 231634}, {"caption": "a woman and a man is dancing in a toy store", "video_id": "video11932", "sen_id": 231635}, {"caption": "in shore girl dance with the green doll then she invites her boy friend to dance", "video_id": "video11932", "sen_id": 231636}, {"caption": "a guy playing with a christmas music toy while a couple is dancing to the music", "video_id": "video11932", "sen_id": 231637}, {"caption": "a man records himself tinkering with various products in a shopping outlet", "video_id": "video11932", "sen_id": 231638}, {"caption": "a woman in a striped red and black dances in a christmas along with some intricate toys", "video_id": "video11932", "sen_id": 231639}, {"caption": "a woman describes a way to get cats to come to you when you call them", "video_id": "video12405", "sen_id": 231640}, {"caption": "a woman discusses her method for getting a cat to come when it is called", "video_id": "video12405", "sen_id": 231641}, {"caption": "girl speaks about training cats and shows cats as they are relaxing", "video_id": "video12405", "sen_id": 231642}, {"caption": "a cat looks at the camera while a woman stands and talks about cats", "video_id": "video12405", "sen_id": 231643}, {"caption": "a women standing next to a cat teaching how to get a cat to come when called", "video_id": "video12405", "sen_id": 231644}, {"caption": "a lady with a blue shirt and black jacket talking about how easy it is to teach your cat to come as called with a treat", "video_id": "video12405", "sen_id": 231645}, {"caption": "a woman petting a cat and talking about how to summon cats", "video_id": "video12405", "sen_id": 231646}, {"caption": "a cat sits on a perch inside of a cat hotel and sniffs at the camera", "video_id": "video12405", "sen_id": 231647}, {"caption": "a woman discusses how to train a house cat to come when it's name is called", "video_id": "video12405", "sen_id": 231648}, {"caption": "a young woman talks about a method for training cats", "video_id": "video12405", "sen_id": 231649}, {"caption": "a woman teaches how to get your cat to come when called", "video_id": "video12405", "sen_id": 231650}, {"caption": "a woman in a formal suit talks about cats and treating them", "video_id": "video12405", "sen_id": 231651}, {"caption": "a cat playing around on a little play place", "video_id": "video12405", "sen_id": 231652}, {"caption": "two cats hang out on their scratching post while their owner discusses training cats", "video_id": "video12405", "sen_id": 231653}, {"caption": "a cat on a looking up and down on a cat gym", "video_id": "video12405", "sen_id": 231654}, {"caption": "a woman with her golden cat next to a cat post", "video_id": "video12405", "sen_id": 231655}, {"caption": "many cats are in room it brings its lounge outside and again takes it inside", "video_id": "video12405", "sen_id": 231656}, {"caption": "cats are shown and how we must train them", "video_id": "video12405", "sen_id": 231657}, {"caption": "a woman talks about training cats while one sniffs the camera", "video_id": "video12405", "sen_id": 231658}, {"caption": "a cat is standing on a table inside a place", "video_id": "video12405", "sen_id": 231659}, {"caption": "exterior shots of an office building and a man in a lab coat talking", "video_id": "video11240", "sen_id": 231660}, {"caption": "a man wearing a white shirt is giving information about taking a course study of biology showing examples of adults sitting inside a class room", "video_id": "video11240", "sen_id": 231661}, {"caption": "a man in a lab coat talks about biology while sitting at a desk", "video_id": "video11240", "sen_id": 231662}, {"caption": "man explains about how if you are interested in modern biology and the environments then perhaps this course of study and then the video cuts off showing four people in what appears to be a classroom", "video_id": "video11240", "sen_id": 231663}, {"caption": "a rectangular building stands by trees on a hill students walk by a campus map a terraced building is made of slats and wooden panels a professor wearing a lab coat sits in his office and four students sit at a table and speak", "video_id": "video11240", "sen_id": 231664}, {"caption": "a man in a lab coat and glasses talking by a computer and people in a class talking", "video_id": "video11240", "sen_id": 231665}, {"caption": "there is a old man talking about classrooms", "video_id": "video11240", "sen_id": 231666}, {"caption": "a scientist discusses the applications of modern biology", "video_id": "video11240", "sen_id": 231667}, {"caption": "a scientist talks about the applications of biology to modern world problems", "video_id": "video11240", "sen_id": 231668}, {"caption": "a person is talking about some educational values and the interest of the persons in biology", "video_id": "video11240", "sen_id": 231669}, {"caption": "there is a white dress man talking in front of a laptop", "video_id": "video11240", "sen_id": 231670}, {"caption": "a man is talking about a modern biology course and it studies", "video_id": "video11240", "sen_id": 231671}, {"caption": "a man wearing white coat and talking about something", "video_id": "video11240", "sen_id": 231672}, {"caption": "a man is talking about a course of biology", "video_id": "video11240", "sen_id": 231673}, {"caption": "a promotional video for a college course about the applications of modern biology", "video_id": "video11240", "sen_id": 231674}, {"caption": "a man is sitting at a computer desk talking", "video_id": "video11240", "sen_id": 231675}, {"caption": "a building is shown and a person explains something few friends chatting in the class", "video_id": "video11240", "sen_id": 231676}, {"caption": "an old man is speaking about a biology", "video_id": "video11240", "sen_id": 231677}, {"caption": "a man in a lab coat describing why you should take a certain course", "video_id": "video11240", "sen_id": 231678}, {"caption": "a scientist wearing a lab coat speaks about a course related to modern biology", "video_id": "video11240", "sen_id": 231679}, {"caption": "a person working on a chip with a tiny tool", "video_id": "video11472", "sen_id": 231680}, {"caption": "a man is discussing the broken pin on a chip", "video_id": "video11472", "sen_id": 231681}, {"caption": "a guy with a pin pressing it in to the back of a circuit", "video_id": "video11472", "sen_id": 231682}, {"caption": "a person showing how to stitch with needle", "video_id": "video11472", "sen_id": 231683}, {"caption": "a man wearing black color dress talking", "video_id": "video11472", "sen_id": 231684}, {"caption": "a person showing how to tighten a socket down with a tool", "video_id": "video11472", "sen_id": 231685}, {"caption": "a person explains hot to repair a defect on an electronic item with a pin", "video_id": "video11472", "sen_id": 231686}, {"caption": "there is a woman repairing with a small tool", "video_id": "video11472", "sen_id": 231687}, {"caption": "a man is showing how to tighten a socket on a piece of machinery", "video_id": "video11472", "sen_id": 231688}, {"caption": "an electronics engineer is doing his work with absolute focus and is trying to fix a component firmly into the socket with the hlep of pin", "video_id": "video11472", "sen_id": 231689}, {"caption": "its the rectangle with the yellow floor and the person has the needle in the finger", "video_id": "video11472", "sen_id": 231690}, {"caption": "a woman shows how to fix a broken cpu pin on a motherboard", "video_id": "video11472", "sen_id": 231691}, {"caption": "a man with very well groomed fingernails is demonstrating how to fix a circuit board that has a bent prong", "video_id": "video11472", "sen_id": 231692}, {"caption": "a man is fixing the inside of an electronic device and explaining how he is doing it", "video_id": "video11472", "sen_id": 231693}, {"caption": "a person is doing something to pins on their cpu", "video_id": "video11472", "sen_id": 231694}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11472", "sen_id": 231695}, {"caption": "a man showing you how to unbend a pin on a processing chip", "video_id": "video11472", "sen_id": 231696}, {"caption": "a man describes how to use a pin when tightening down a socket", "video_id": "video11472", "sen_id": 231697}, {"caption": "a man adjusting the pins on the socket of a cpu", "video_id": "video11472", "sen_id": 231698}, {"caption": "a person is using a needle to do something", "video_id": "video11472", "sen_id": 231699}, {"caption": "a person is putting dough in a bowl to let it ris", "video_id": "video12211", "sen_id": 231700}, {"caption": "a person is covering a glass bowl with plastic wrap", "video_id": "video12211", "sen_id": 231701}, {"caption": "a video that is showing off wrapping a bowl with plastic wrap", "video_id": "video12211", "sen_id": 231702}, {"caption": "a woman covers a bowl of dough in ceran wrap", "video_id": "video12211", "sen_id": 231703}, {"caption": "a woman putting plastic over a bowl of dough", "video_id": "video12211", "sen_id": 231704}, {"caption": "a woman is using plastic wrap to cover a bowl with bread dough in it", "video_id": "video12211", "sen_id": 231705}, {"caption": "a women is preparing some special food in kitchen", "video_id": "video12211", "sen_id": 231706}, {"caption": "there is a bowl with kneaded flour and oil is for preparing parotta a indian recipe", "video_id": "video12211", "sen_id": 231707}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video12211", "sen_id": 231708}, {"caption": "a woman speaking a foreign language explaining how to make bread rise", "video_id": "video12211", "sen_id": 231709}, {"caption": "a woman covers a glass bowl with a layer of plastic wrap", "video_id": "video12211", "sen_id": 231710}, {"caption": "a woman is covering a bowl with plastic wrap", "video_id": "video12211", "sen_id": 231711}, {"caption": "a woman is covering something in a bowl and talking", "video_id": "video12211", "sen_id": 231712}, {"caption": "a woman wraps a clear bowl in plastic cellophane to cover dough ball", "video_id": "video12211", "sen_id": 231713}, {"caption": "a girl inside kitchen a bowl dish inside kitchen to prepared to serve to eat displaying on screen", "video_id": "video12211", "sen_id": 231714}, {"caption": "a person is talking about a way to make food", "video_id": "video12211", "sen_id": 231715}, {"caption": "a lady covers the bowl with dough with transparent plastic", "video_id": "video12211", "sen_id": 231716}, {"caption": "a woman is telling about a cooking method", "video_id": "video12211", "sen_id": 231717}, {"caption": "a woman covers a meal in a glass bowl in plastic wrap", "video_id": "video12211", "sen_id": 231718}, {"caption": "a person is wrapping up a glass bowl", "video_id": "video12211", "sen_id": 231719}, {"caption": "narrators talking about game of the year along with clips of the walking dead", "video_id": "video10030", "sen_id": 231720}, {"caption": "a gruesome zombie is trying to get up in order to attack", "video_id": "video10030", "sen_id": 231721}, {"caption": "a group of reviewers is surprised 'the walking dead' video game was not ranked higher", "video_id": "video10030", "sen_id": 231722}, {"caption": "a video game character is walking through the woods near zombies", "video_id": "video10030", "sen_id": 231723}, {"caption": "video game reviewers reveal the walking dead is the fith-highest rated game of the year", "video_id": "video10030", "sen_id": 231724}, {"caption": "men showing a video game and explaining why it is a top video game", "video_id": "video10030", "sen_id": 231725}, {"caption": "a zombie awakensprops himself on his hands and chases after someone whose legs are backing away from him", "video_id": "video10030", "sen_id": 231726}, {"caption": "a few guys discuss their games of the year the current game in discussion is the walking dead game", "video_id": "video10030", "sen_id": 231727}, {"caption": "two men are talking about the walking dead video game", "video_id": "video10030", "sen_id": 231728}, {"caption": "a scene from the waking dead video game", "video_id": "video10030", "sen_id": 231729}, {"caption": "a forrest background barely lit and a zombie like figure trys to attack video game chartacter", "video_id": "video10030", "sen_id": 231730}, {"caption": "there are people who fighting each other on the ground", "video_id": "video10030", "sen_id": 231731}, {"caption": "a video game critic talking about the walking dead while a zombie attacks someone", "video_id": "video10030", "sen_id": 231732}, {"caption": "it looks person gets up suddenly from floor he looks horror then scrawls on road", "video_id": "video10030", "sen_id": 231733}, {"caption": "an animated person shoots another person that turned into a zombie", "video_id": "video10030", "sen_id": 231734}, {"caption": "a person with a gun shoots at the scary crawling zombies", "video_id": "video10030", "sen_id": 231735}, {"caption": "the walking dead game is game of the year and we see some clips from the game on a local tv promo", "video_id": "video10030", "sen_id": 231736}, {"caption": "a zombie graphics video game", "video_id": "video10030", "sen_id": 231737}, {"caption": "a person on a video game is being attacked by a zombie", "video_id": "video10030", "sen_id": 231738}, {"caption": "people narrate over a scene of a video game", "video_id": "video10030", "sen_id": 231739}, {"caption": "carrots potatoes onions and beef next to a stew mix", "video_id": "video10374", "sen_id": 231740}, {"caption": "a woman is explaining which ingredients are laid out on a counter top", "video_id": "video10374", "sen_id": 231741}, {"caption": "ingredients for a recipe are showcased including onions carrots potatoes curry mix and beef", "video_id": "video10374", "sen_id": 231742}, {"caption": "a woman is describing the ingredients she will be using in her recipe", "video_id": "video10374", "sen_id": 231743}, {"caption": "ingredients are displayed for a japanese cooking recipe", "video_id": "video10374", "sen_id": 231744}, {"caption": " potatoes and carrots are needed for making the beef curry", "video_id": "video10374", "sen_id": 231745}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10374", "sen_id": 231746}, {"caption": "in a plate meat and carrot vermont curry pack", "video_id": "video10374", "sen_id": 231747}, {"caption": "an in home chef works on a recipe that has a few simple ingredients", "video_id": "video10374", "sen_id": 231748}, {"caption": "someone has prepared a delicious dish with vegetables and served in a white porcelain vessel", "video_id": "video10374", "sen_id": 231749}, {"caption": "al the ingredients needed to prepare food are kept in table", "video_id": "video10374", "sen_id": 231750}, {"caption": "the women is showing the ingredients of making some non veg dish", "video_id": "video10374", "sen_id": 231751}, {"caption": "making a recipe you now two carrots two onions", "video_id": "video10374", "sen_id": 231752}, {"caption": "a woman narrates over an instructional video on making curry", "video_id": "video10374", "sen_id": 231753}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10374", "sen_id": 231754}, {"caption": "some one arranged different ingredients in a kitchen", "video_id": "video10374", "sen_id": 231755}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10374", "sen_id": 231756}, {"caption": "a chef discusses a recipe s ingredients as she prepares to make a beef dish", "video_id": "video10374", "sen_id": 231757}, {"caption": "on a table is onions and meat in a dish", "video_id": "video10374", "sen_id": 231758}, {"caption": "a woman is talking about some various ingredients", "video_id": "video10374", "sen_id": 231759}, {"caption": "a woman with curly hair giving news info", "video_id": "video11716", "sen_id": 231760}, {"caption": "a female reporter is reporting about american pop stars", "video_id": "video11716", "sen_id": 231761}, {"caption": "a woman with wavy long brown hair cascading over her exposed shoulders sits by a large window and makes comments about different performing female celebrities", "video_id": "video11716", "sen_id": 231762}, {"caption": "a lady is talking about various singer outfits", "video_id": "video11716", "sen_id": 231763}, {"caption": "a woman talking about the best in fashion for 2015", "video_id": "video11716", "sen_id": 231764}, {"caption": "a young woman talks about celebrity performers in a news setting", "video_id": "video11716", "sen_id": 231765}, {"caption": "a woman with curly hair talking from a room", "video_id": "video11716", "sen_id": 231766}, {"caption": "a woman standing next to a window is talking about celebrity news", "video_id": "video11716", "sen_id": 231767}, {"caption": "a lady explaining some thing about a fashion show 2015", "video_id": "video11716", "sen_id": 231768}, {"caption": "elle mcpherson was seen getting playful with a few other supermodels on the set", "video_id": "video11716", "sen_id": 231769}, {"caption": "there is a woman talking in front of a screen on the wall", "video_id": "video11716", "sen_id": 231770}, {"caption": "the lady with brown long hair and a striped top is talking", "video_id": "video11716", "sen_id": 231771}, {"caption": "a woman with tan skin is in a studio giving a report and her opinion on a fashion show", "video_id": "video11716", "sen_id": 231772}, {"caption": "woman announcer discussing a singers performance at a fashions show while the news feed plays", "video_id": "video11716", "sen_id": 231773}, {"caption": "there is a women in her 20 s in front of a window talking about a famous singer", "video_id": "video11716", "sen_id": 231774}, {"caption": "a woman talking about celebrity news with pictures", "video_id": "video11716", "sen_id": 231775}, {"caption": "a lady is talking with another lady", "video_id": "video11716", "sen_id": 231776}, {"caption": "lady with brown speaking about the stars at carpet run way", "video_id": "video11716", "sen_id": 231777}, {"caption": "a woman is talking about the vs fashion show", "video_id": "video11716", "sen_id": 231778}, {"caption": "the women giving the news report seems to be talking clothes and gossip", "video_id": "video11716", "sen_id": 231779}, {"caption": "a red car is being described in full detail while it sits parked", "video_id": "video11220", "sen_id": 231780}, {"caption": "a video that is showing off a ferrari", "video_id": "video11220", "sen_id": 231781}, {"caption": "a red porch is being shown off in this video views of the outside of the vehicle are being shown", "video_id": "video11220", "sen_id": 231782}, {"caption": "a red car is shown on the street", "video_id": "video11220", "sen_id": 231783}, {"caption": "a red sports car is in a driveway", "video_id": "video11220", "sen_id": 231784}, {"caption": "a man discusses a small red sports car he is planning on test driving", "video_id": "video11220", "sen_id": 231785}, {"caption": "images of portions of a fancy red sports car follwed by a complete image of the car", "video_id": "video11220", "sen_id": 231786}, {"caption": "someone is reviewing the ferrari car by detailing about it s innovations used", "video_id": "video11220", "sen_id": 231787}, {"caption": "there is a stylish red car on the ground", "video_id": "video11220", "sen_id": 231788}, {"caption": "a red car is parking and a man is talking its feature", "video_id": "video11220", "sen_id": 231789}, {"caption": "this is a super luxury car and red in color and somebody is telling is merits", "video_id": "video11220", "sen_id": 231790}, {"caption": "close views of ferrari from different angles are reviewed", "video_id": "video11220", "sen_id": 231791}, {"caption": "the show off the car outside body parts", "video_id": "video11220", "sen_id": 231792}, {"caption": "the red car is parked the parts are stunning the color is shinning", "video_id": "video11220", "sen_id": 231793}, {"caption": "an advertisement about the car has been shown and the person is explaining its features", "video_id": "video11220", "sen_id": 231794}, {"caption": "there is a red car on the floor", "video_id": "video11220", "sen_id": 231795}, {"caption": "a person is talking about a sports car while images of a sports care are shown", "video_id": "video11220", "sen_id": 231796}, {"caption": "someone is giving demo about the car", "video_id": "video11220", "sen_id": 231797}, {"caption": "a person is driving car and showing its features", "video_id": "video11220", "sen_id": 231798}, {"caption": "an expensive car is being filmed out side", "video_id": "video11220", "sen_id": 231799}, {"caption": "a man discusses american history in a lecture on the subject", "video_id": "video10058", "sen_id": 231800}, {"caption": "a man in a black and gray striped shirt sitting at a desk", "video_id": "video10058", "sen_id": 231801}, {"caption": "john green while sitting behind a desk with a computer says that he is going to talk about what america is best at which is war", "video_id": "video10058", "sen_id": 231802}, {"caption": "a man in glasses is doing a crash course on america's history", "video_id": "video10058", "sen_id": 231803}, {"caption": "a male actor wearing a striped shirt and glasses narrates that america is good at war", "video_id": "video10058", "sen_id": 231804}, {"caption": "a man sitting on a desk with his laptop in the back you can see a green chalkboard", "video_id": "video10058", "sen_id": 231805}, {"caption": "a man wearing glasses sits in front of a green and brown chalk board", "video_id": "video10058", "sen_id": 231806}, {"caption": "a guy uses a desk chair to roll into a set and starts discussing the american history of war", "video_id": "video10058", "sen_id": 231807}, {"caption": "a man gives an introduction into a show about american war history", "video_id": "video10058", "sen_id": 231808}, {"caption": "john green presents crash course us history where he plans to discuss what he claims america is best at: war even though war has only been declared five times in the last two hundred years", "video_id": "video10058", "sen_id": 231809}, {"caption": "john green sits next to a gold and talks about war in america", "video_id": "video10058", "sen_id": 231810}, {"caption": "a boy sitting with the laptop and explains about a country", "video_id": "video10058", "sen_id": 231811}, {"caption": "a presenter in a show talks about how america has performed in the past few years in wars", "video_id": "video10058", "sen_id": 231812}, {"caption": "a man named john green is discussing the subject of war within america", "video_id": "video10058", "sen_id": 231813}, {"caption": "there is a man sitting at a desk teaching some history of america in front of a chalkboard", "video_id": "video10058", "sen_id": 231814}, {"caption": "a man in glasses rolls his chair over to a lap top and starts talking about america", "video_id": "video10058", "sen_id": 231815}, {"caption": "a man is wearing a spectacle and sitting in the room", "video_id": "video10058", "sen_id": 231816}, {"caption": "john green sitting at a desk with a laptop talking", "video_id": "video10058", "sen_id": 231817}, {"caption": "person is sitting near the computer and talking about something", "video_id": "video10058", "sen_id": 231818}, {"caption": "a man with glasses is speaking about something", "video_id": "video10058", "sen_id": 231819}, {"caption": "a women talking in a foreign language about her face", "video_id": "video12846", "sen_id": 231820}, {"caption": "an asian woman sitting at a computer and touching her face as if there is a problem with it", "video_id": "video12846", "sen_id": 231821}, {"caption": "a woman sitting at a computer using it and talking about her face while using it", "video_id": "video12846", "sen_id": 231822}, {"caption": "a young woman discusses and demonstrates a make-up technique", "video_id": "video12846", "sen_id": 231823}, {"caption": "a woman spends her time in an internet cafe and touches up her makeup", "video_id": "video12846", "sen_id": 231824}, {"caption": "a young asian woman describes and demonstrates a makeup technique", "video_id": "video12846", "sen_id": 231825}, {"caption": "a woman appeaars and narrates in an asian language while scenes of her or someone at a computer go by then we see scenes of her looking in the mirror and applying something to her face before we see her reporting again", "video_id": "video12846", "sen_id": 231826}, {"caption": "a women working in the office and explaining something", "video_id": "video12846", "sen_id": 231827}, {"caption": "a young girl seated next to desktop", "video_id": "video12846", "sen_id": 231828}, {"caption": "a young asian woman works on a computer and messes with her makeup", "video_id": "video12846", "sen_id": 231829}, {"caption": "a women is speaking about the skin problem and how to avoid it", "video_id": "video12846", "sen_id": 231830}, {"caption": "there is a woman working hard in her office", "video_id": "video12846", "sen_id": 231831}, {"caption": "a lady is typing in front of a computer she also does her make up on her face", "video_id": "video12846", "sen_id": 231832}, {"caption": "cute girl working in the system by touching the mouse she touches the cheek", "video_id": "video12846", "sen_id": 231833}, {"caption": "a woman explains how her face skin changed after working in a computer", "video_id": "video12846", "sen_id": 231834}, {"caption": "a women in blue dress is telling news report", "video_id": "video12846", "sen_id": 231835}, {"caption": "a woman speaks chinese while using a computer and looking at her face in the mirror", "video_id": "video12846", "sen_id": 231836}, {"caption": "an asian woman searches the computer and discusses facial discolorations", "video_id": "video12846", "sen_id": 231837}, {"caption": "a lady uses a computer at her job in the office", "video_id": "video12846", "sen_id": 231838}, {"caption": "a woman is touching her face in a show", "video_id": "video12846", "sen_id": 231839}, {"caption": "two people doing a balancing act on a bike", "video_id": "video12985", "sen_id": 231840}, {"caption": "two people do tricks on one bicycle in a gymnasium for a small audience of onlookers", "video_id": "video12985", "sen_id": 231841}, {"caption": "a guy is peddling a bike while balancing another person while riding in a circle in front of other people", "video_id": "video12985", "sen_id": 231842}, {"caption": "two performers practice acrobatic maneuvers on a bicycle", "video_id": "video12985", "sen_id": 231843}, {"caption": "a pair of bike riders engage in acrobatics in a gym", "video_id": "video12985", "sen_id": 231844}, {"caption": "two people on one bike do tricks in a gymnasium", "video_id": "video12985", "sen_id": 231845}, {"caption": "two cyclists in a gyn ride a bicycle around a gynasium performing stunts while spectators look on", "video_id": "video12985", "sen_id": 231846}, {"caption": "a person climbs on top of and stands on the shoulders of a person riding a bicycle while it is in motion", "video_id": "video12985", "sen_id": 231847}, {"caption": "a couple of people are doing tricks while riding a bicycle in a gym", "video_id": "video12985", "sen_id": 231848}, {"caption": "a man and a woman do bicycle tricks in a gymnasium in front of an audience", "video_id": "video12985", "sen_id": 231849}, {"caption": "the two gymnastic women on a bicycle ride in a circle and do tricks", "video_id": "video12985", "sen_id": 231850}, {"caption": "a man riding a bike with a woman standing on his shoulders", "video_id": "video12985", "sen_id": 231851}, {"caption": "acrobatic bike riders practice a routine in an empty ball court", "video_id": "video12985", "sen_id": 231852}, {"caption": "two people doing tricks on one bike for others", "video_id": "video12985", "sen_id": 231853}, {"caption": "two women show off on a bicycle", "video_id": "video12985", "sen_id": 231854}, {"caption": "a woman is standing on top of another person riding a bicycle in a gym", "video_id": "video12985", "sen_id": 231855}, {"caption": "two people perform acrobatics while riding a bicycle around an indoor gym", "video_id": "video12985", "sen_id": 231856}, {"caption": "two acrobatic performers peddle a bicycle in circles around a gym", "video_id": "video12985", "sen_id": 231857}, {"caption": "its cycling trick where in one cycle two person try to go by doing stunt", "video_id": "video12985", "sen_id": 231858}, {"caption": "people in a gymnasium performing bicycle acrobatics", "video_id": "video12985", "sen_id": 231859}, {"caption": "this presentation is of a list for food types that are being studied", "video_id": "video11053", "sen_id": 231860}, {"caption": "a list of ingredients are shown for a meal", "video_id": "video11053", "sen_id": 231861}, {"caption": "a list of herbs and mineral oils used", "video_id": "video11053", "sen_id": 231862}, {"caption": "a man talks about a listing of items that will help a person be healthy", "video_id": "video11053", "sen_id": 231863}, {"caption": "a list of foods in three columns on a blue background", "video_id": "video11053", "sen_id": 231864}, {"caption": "there is a list of raw ingredients in a white font with blue background", "video_id": "video11053", "sen_id": 231865}, {"caption": "the list shows food types that scientists wish to study", "video_id": "video11053", "sen_id": 231866}, {"caption": "computer screen having more data are displayed and explained by a boy", "video_id": "video11053", "sen_id": 231867}, {"caption": "its all the food items on the blue background items such as green tea", "video_id": "video11053", "sen_id": 231868}, {"caption": "a blue background shows all types of fruits in white letters", "video_id": "video11053", "sen_id": 231869}, {"caption": "a person is explaining about list of different food items", "video_id": "video11053", "sen_id": 231870}, {"caption": "there is a list of fruits with beverage", "video_id": "video11053", "sen_id": 231871}, {"caption": "a three-column list of different foods is written in white text on a blue background", "video_id": "video11053", "sen_id": 231872}, {"caption": "a discussion of a list of food with supposed health benefits", "video_id": "video11053", "sen_id": 231873}, {"caption": "a narrator is listing out the benefits of various herbs vegetables and fruits", "video_id": "video11053", "sen_id": 231874}, {"caption": "list of fruits and spices and different spicies", "video_id": "video11053", "sen_id": 231875}, {"caption": "a man giving explanation for some vegetables and health drinks", "video_id": "video11053", "sen_id": 231876}, {"caption": "a list of some fruitsvegetables is showing on the screen", "video_id": "video11053", "sen_id": 231877}, {"caption": "a man is showing and talking about a list of food for anti aging", "video_id": "video11053", "sen_id": 231878}, {"caption": "there is a long list of white words on a blue background describing healthy food options", "video_id": "video11053", "sen_id": 231879}, {"caption": "a woman in a convertible videotapes the male driver", "video_id": "video11383", "sen_id": 231880}, {"caption": "a man wearing a cap enjoy driving a vehicle along with a girl", "video_id": "video11383", "sen_id": 231881}, {"caption": "a man is driving a car with the roof down taking a selfie like video", "video_id": "video11383", "sen_id": 231882}, {"caption": "while travelling of the blue tshirt wearing men enjoy thier rides in the evening", "video_id": "video11383", "sen_id": 231883}, {"caption": "there is a black man wearing a black cap blue short sleeved shirt and khaki pants pointing towards the man", "video_id": "video11383", "sen_id": 231884}, {"caption": "floyd mayweather takes a ride in his convertible drop-top", "video_id": "video11383", "sen_id": 231885}, {"caption": "there is a blue tshirt man riding a car", "video_id": "video11383", "sen_id": 231886}, {"caption": "a stout black man with cap is driving a car with his sweet car on the road", "video_id": "video11383", "sen_id": 231887}, {"caption": "a man in blue tshirt and black cap driving the car while a ferrari comes behind them", "video_id": "video11383", "sen_id": 231888}, {"caption": "a black man wearing a black cap and blue t-shirt is ringing in a convertible with red interior", "video_id": "video11383", "sen_id": 231889}, {"caption": "a man and a woman are driving in a care while the woman records it", "video_id": "video11383", "sen_id": 231890}, {"caption": "a man in a black hat driving a car with a red interior alongside a woman who is recording the drive", "video_id": "video11383", "sen_id": 231891}, {"caption": "a man in a black cap driving a car on the road", "video_id": "video11383", "sen_id": 231892}, {"caption": "a mar is riding in a car with the top of a car down then pointing at the camera", "video_id": "video11383", "sen_id": 231893}, {"caption": "guy driving a topless care and staring at camera", "video_id": "video11383", "sen_id": 231894}, {"caption": "a guy is riding in a car outside", "video_id": "video11383", "sen_id": 231895}, {"caption": "a man and a woman ride around town in a convertible", "video_id": "video11383", "sen_id": 231896}, {"caption": "a man wearing a cap is driving a red car", "video_id": "video11383", "sen_id": 231897}, {"caption": "a man driving a car with a girl on road", "video_id": "video11383", "sen_id": 231898}, {"caption": "a man in a hat is driving a convertible car", "video_id": "video11383", "sen_id": 231899}, {"caption": "a person serves food to a man in a uniform", "video_id": "video12922", "sen_id": 231900}, {"caption": "a clip of an army soldier that is trying to get more food", "video_id": "video12922", "sen_id": 231901}, {"caption": "two black guys are fighting over food served", "video_id": "video12922", "sen_id": 231902}, {"caption": "a guy in a military uniform discussing his food with the cook", "video_id": "video12922", "sen_id": 231903}, {"caption": "a person complaining about the amount of food he given", "video_id": "video12922", "sen_id": 231904}, {"caption": "a man in a military uniform complaining about the quantity of food to the chef but the chef is gives only one from each item and the guy says that it isn t even a piece", "video_id": "video12922", "sen_id": 231905}, {"caption": "a military man gets mad about the food serving size", "video_id": "video12922", "sen_id": 231906}, {"caption": "a man in a military uniform argues over portion sizes with a cook", "video_id": "video12922", "sen_id": 231907}, {"caption": "a person in military dress having a food plate in hand asking food server to serve more food to him", "video_id": "video12922", "sen_id": 231908}, {"caption": "an arguments goes between the server and the military man while serving food", "video_id": "video12922", "sen_id": 231909}, {"caption": "there is a man serving food to a commando", "video_id": "video12922", "sen_id": 231910}, {"caption": "a chef and a military personnel has some words about the food which is served for him", "video_id": "video12922", "sen_id": 231911}, {"caption": "a restaurant worker has given a soldier a small meal portion the soldier is upset", "video_id": "video12922", "sen_id": 231912}, {"caption": "a soldier is arguing with the chef about the portions of chicken and biscuit that he is receiving", "video_id": "video12922", "sen_id": 231913}, {"caption": "army soldier is complaining about the meal to the cook chef", "video_id": "video12922", "sen_id": 231914}, {"caption": "there is a man serving food to someone", "video_id": "video12922", "sen_id": 231915}, {"caption": "a man argues with the chef about the little food he get for breakfast", "video_id": "video12922", "sen_id": 231916}, {"caption": "a military man gets food from the cook and the cook refuses to give him more and hides the box", "video_id": "video12922", "sen_id": 231917}, {"caption": "man in military uniform gets served food by a man in a chef hat and altercation occurs", "video_id": "video12922", "sen_id": 231918}, {"caption": "a person is talking to a navy man", "video_id": "video12922", "sen_id": 231919}, {"caption": "a mystical fairy grants the wish of a small wooden puppet", "video_id": "video11971", "sen_id": 231920}, {"caption": "cartoon characters describing how much they think about wishes", "video_id": "video11971", "sen_id": 231921}, {"caption": "a cartoon with a princess a wooden puppet toy and man with magic lamp are animated with voiceover talking and singing", "video_id": "video11971", "sen_id": 231922}, {"caption": "pinocchio is brought to life by the fairy", "video_id": "video11971", "sen_id": 231923}, {"caption": "a fairy turning a wooden puppet into a real boy and aladin about to rub a lamp", "video_id": "video11971", "sen_id": 231924}, {"caption": "the diney clip is featuring the disney castle pinocchio and aladdin", "video_id": "video11971", "sen_id": 231925}, {"caption": "cinderella holds a basket while surrounded by animals", "video_id": "video11971", "sen_id": 231926}, {"caption": "its alladdin where if we scratch the lamp we get bootham and does anything", "video_id": "video11971", "sen_id": 231927}, {"caption": "different clips from disney movies are playing one after the other with sleeping beauty and then aladdin", "video_id": "video11971", "sen_id": 231928}, {"caption": "animated scenes with wooden puppet coming to life and man reaching for lamp", "video_id": "video11971", "sen_id": 231929}, {"caption": "a lady character is touching a small girl", "video_id": "video11971", "sen_id": 231930}, {"caption": "a magical woman brings a puppet to life", "video_id": "video11971", "sen_id": 231931}, {"caption": "pinocchio is turned into a real boy by a fairy with a wand", "video_id": "video11971", "sen_id": 231932}, {"caption": "a montage of different disney movies like aladdin and sleeping beauty", "video_id": "video11971", "sen_id": 231933}, {"caption": "a lady is sparkling on the baby s head in alibaba cartoon scene", "video_id": "video11971", "sen_id": 231934}, {"caption": "the video depicts classic disney movie characters including cinderella and pinocchio", "video_id": "video11971", "sen_id": 231935}, {"caption": "a castle stands out in the distance and raises over a small village", "video_id": "video11971", "sen_id": 231936}, {"caption": "various disney movie clips are scene including pinocchio and with fairy", "video_id": "video11971", "sen_id": 231937}, {"caption": "a bunch of old clips from previous disney movies", "video_id": "video11971", "sen_id": 231938}, {"caption": "some scenes from some disney movies are being shown", "video_id": "video11971", "sen_id": 231939}, {"caption": "in the police show dragnet friday interviews a man with head bandages", "video_id": "video12438", "sen_id": 231940}, {"caption": "a man bandaged up laying in a bed and having a conversation", "video_id": "video12438", "sen_id": 231941}, {"caption": "a man with a heavily bandaged face lying in a hospital bed gives details of an incident to a man standing over him in a suit", "video_id": "video12438", "sen_id": 231942}, {"caption": "black and white movie of a man laying on a hospital bed being interviewed", "video_id": "video12438", "sen_id": 231943}, {"caption": "a heavily bandaged bedridden man talks to a detective", "video_id": "video12438", "sen_id": 231944}, {"caption": "two men have a conversation one of them is injured with his face bandaged and the other is dressed in a suit", "video_id": "video12438", "sen_id": 231945}, {"caption": "a heavily bandaged man gives a description of a woman to a man asking him questions", "video_id": "video12438", "sen_id": 231946}, {"caption": "a man with bandages in a bed talking to a man in a tie", "video_id": "video12438", "sen_id": 231947}, {"caption": "a man in a hospital bed is describing a beautiful woman who pulled a gun on him to a detective inquiring about the case", "video_id": "video12438", "sen_id": 231948}, {"caption": "a man whose face is wrapped in gauze talks to a police detective", "video_id": "video12438", "sen_id": 231949}, {"caption": "there is a wounded man talking from the bed", "video_id": "video12438", "sen_id": 231950}, {"caption": "a man seriously wounded and dressed is explaining what had happened to a person standing nearby", "video_id": "video12438", "sen_id": 231951}, {"caption": "a black and white film of a guy laying in a bed with his face wrapped talking to a guy who is standing and wearing a suit", "video_id": "video12438", "sen_id": 231952}, {"caption": "a guy covered in bandages while laying in bed", "video_id": "video12438", "sen_id": 231953}, {"caption": "a person on bed with injured face speaking to another person standing near", "video_id": "video12438", "sen_id": 231954}, {"caption": "there is a wounded man talking from the hospital", "video_id": "video12438", "sen_id": 231955}, {"caption": "a wounded man with face dressed is talking to a person standing nearby", "video_id": "video12438", "sen_id": 231956}, {"caption": "two policemen talk to a man who is bandaged up in a hospital", "video_id": "video12438", "sen_id": 231957}, {"caption": "a man with his face and head bandages tells his story to joe friday on dragnet", "video_id": "video12438", "sen_id": 231958}, {"caption": "a man with a thoroughly bandaged head tells a story about a woman to a man who is questioning him", "video_id": "video12438", "sen_id": 231959}, {"caption": "this is a crab cake with panko bread crumbs", "video_id": "video10236", "sen_id": 231960}, {"caption": "a plate of crab cakes with lemon is show with a voice over by the maker", "video_id": "video10236", "sen_id": 231961}, {"caption": "a white square plate with many baked crab cakes", "video_id": "video10236", "sen_id": 231962}, {"caption": "a woman is talking about making crab cakes baked with panko bread crumbs", "video_id": "video10236", "sen_id": 231963}, {"caption": "baked fried chicken is being shown on a plate", "video_id": "video10236", "sen_id": 231964}, {"caption": "there is a closeup of crabcakes on a plate while the narrator prepares to demonstrate how to make them", "video_id": "video10236", "sen_id": 231965}, {"caption": "a woman introduces her recipe for baked crab cakes while footage of the crab cakes plays", "video_id": "video10236", "sen_id": 231966}, {"caption": "a lady is excited showing the baked crab cakes with panko bredcrums she made", "video_id": "video10236", "sen_id": 231967}, {"caption": "a woman describes in detail the cooking of baked crab cakes", "video_id": "video10236", "sen_id": 231968}, {"caption": "a woman is showing her version of baked crab cakes that she made", "video_id": "video10236", "sen_id": 231969}, {"caption": "a white serving tray with five baked crab cakes is displayed", "video_id": "video10236", "sen_id": 231970}, {"caption": "some boiled and fried stuff is kept on the plate along with some crab cakes", "video_id": "video10236", "sen_id": 231971}, {"caption": "crab cakes on a plate while a lady explains how excited she was to cook them", "video_id": "video10236", "sen_id": 231972}, {"caption": "a square white plate is displaying three large crabcakes", "video_id": "video10236", "sen_id": 231973}, {"caption": "a woman talking about cooking recipes and how she wants to try them", "video_id": "video10236", "sen_id": 231974}, {"caption": "baked crab cakes are displayed on a plate after they have been cooked", "video_id": "video10236", "sen_id": 231975}, {"caption": "a lady explaining her recipe of crab cakes with panko", "video_id": "video10236", "sen_id": 231976}, {"caption": " breaded crab cakes are shown displayed on a large white serving dish", "video_id": "video10236", "sen_id": 231977}, {"caption": "a woman talks about crab cakes while displaying a plate of crab cakes", "video_id": "video10236", "sen_id": 231978}, {"caption": "some meat is lying on a plate inside", "video_id": "video10236", "sen_id": 231979}, {"caption": "an american flag on a pole blows in the wind a split baseball reveals layers of filling a wooden bat has blue tape wound around the narrow end and a mitt is filled with layers of padding", "video_id": "video10489", "sen_id": 231980}, {"caption": "a cartoon depiction of baseball is discussing the elements of the game", "video_id": "video10489", "sen_id": 231981}, {"caption": "this is a video of baseball and the things you use to play it", "video_id": "video10489", "sen_id": 231982}, {"caption": "a cartoon of the american flag and baseball mitt", "video_id": "video10489", "sen_id": 231983}, {"caption": "a large american flag blows in a stiff breeze at the top of a flag pole", "video_id": "video10489", "sen_id": 231984}, {"caption": "a graphic showing a flying flag bat glove baseball explaining what each item is made of", "video_id": "video10489", "sen_id": 231985}, {"caption": "there is a man explains a american game", "video_id": "video10489", "sen_id": 231986}, {"caption": "a cartoon explaining how baseball is the national past time sport", "video_id": "video10489", "sen_id": 231987}, {"caption": "an american flag is waving and various baseball equipment items are described", "video_id": "video10489", "sen_id": 231988}, {"caption": "an advertisement with cartoons of a baseball game and a man tells how the sport and game is well put together", "video_id": "video10489", "sen_id": 231989}, {"caption": "an animated short describing baseball equipment including a ball bat and glove shows cross-sections of the equipment", "video_id": "video10489", "sen_id": 231990}, {"caption": "a narrator explains the great american pastime of millions of people baseball and the equiptment used to play the game", "video_id": "video10489", "sen_id": 231991}, {"caption": "a big stick and a micky mouse are there", "video_id": "video10489", "sen_id": 231992}, {"caption": "an old video explaining what baseball is and how the instruments of the game are used", "video_id": "video10489", "sen_id": 231993}, {"caption": "a cartoon animated description of the fundamentals of the game of baseball", "video_id": "video10489", "sen_id": 231994}, {"caption": "old man speaking of the national american sport baseball", "video_id": "video10489", "sen_id": 231995}, {"caption": "a cartoon is shown about baseball with the speaker discussing what the baseball is made of", "video_id": "video10489", "sen_id": 231996}, {"caption": "the flag and the national symbol hockey stick are introduced in carton model", "video_id": "video10489", "sen_id": 231997}, {"caption": "a narrator explains what a baseball a bat and a glove are made of", "video_id": "video10489", "sen_id": 231998}, {"caption": "an animated version of the american flag a baseball a bat and a mitt are shown", "video_id": "video10489", "sen_id": 231999}, {"caption": "a man talking to several people about finding the truth", "video_id": "video10037", "sen_id": 232000}, {"caption": "movie advertisement showing dialogue and action from various scenes", "video_id": "video10037", "sen_id": 232001}, {"caption": "a lady interviews a man sitting across the table from her before the man walks down the street with another man talking", "video_id": "video10037", "sen_id": 232002}, {"caption": "a woman interrogates a british man who later gets killed and appears to be reborn", "video_id": "video10037", "sen_id": 232003}, {"caption": "a man has been poisoned and he needs to find a cure to save his life", "video_id": "video10037", "sen_id": 232004}, {"caption": "a woam in a man are sitting across from each other in an interrogation room while the woman asks questions the man walks down the street talking to another man then lays on an operating table", "video_id": "video10037", "sen_id": 232005}, {"caption": "a man is talking to a woman and then he is talking to another man", "video_id": "video10037", "sen_id": 232006}, {"caption": "there is a man thinking in front of a woman", "video_id": "video10037", "sen_id": 232007}, {"caption": "a woman asks a man about why he told her that he was somewhere he was not the same man is shown talking with an older man about how he was poisoned", "video_id": "video10037", "sen_id": 232008}, {"caption": "a man and woman talking about a posion", "video_id": "video10037", "sen_id": 232009}, {"caption": "a woman and man have a discussing while sitting at a table next two men walking down a side walk have a discussion", "video_id": "video10037", "sen_id": 232010}, {"caption": "a woman in red dress is talking to a man about an incident happening in an office", "video_id": "video10037", "sen_id": 232011}, {"caption": "in a police station a woman in pink is leaning across a table questioning a man in a suit with an antagonistic manner", "video_id": "video10037", "sen_id": 232012}, {"caption": "a man and woman are discussing in an office and running in the street", "video_id": "video10037", "sen_id": 232013}, {"caption": "a couple scenes from a new television show", "video_id": "video10037", "sen_id": 232014}, {"caption": "a movie trailer with a woman interrogating a man", "video_id": "video10037", "sen_id": 232015}, {"caption": "a movie trailer featuring a woman talking to a man who is willingly dying", "video_id": "video10037", "sen_id": 232016}, {"caption": "a man who is dying is making witty passes at men and women and ends up in water", "video_id": "video10037", "sen_id": 232017}, {"caption": "a lady in a red shirt is talking to a man in a suit", "video_id": "video10037", "sen_id": 232018}, {"caption": "a man in a movie is doing some thing", "video_id": "video10037", "sen_id": 232019}, {"caption": "a young man speaks to an older woman who is lying in a bed", "video_id": "video11396", "sen_id": 232020}, {"caption": "a limping girl running down a dirt lane and an old woman in a bed", "video_id": "video11396", "sen_id": 232021}, {"caption": "a person is walking through the fields by themselves", "video_id": "video11396", "sen_id": 232022}, {"caption": "a lady in a bed talks to a man and a child runs in a field on a farm", "video_id": "video11396", "sen_id": 232023}, {"caption": "clips of a movie where people are dressed up like in olden times", "video_id": "video11396", "sen_id": 232024}, {"caption": "an older woman is laying in a bed talking to a younger man", "video_id": "video11396", "sen_id": 232025}, {"caption": "a child is running through the calm road", "video_id": "video11396", "sen_id": 232026}, {"caption": "an old lady lying in the bed is talking to a young man while a girl is running down the road", "video_id": "video11396", "sen_id": 232027}, {"caption": "a man in brown clothes runs over a dirt road towards a white building", "video_id": "video11396", "sen_id": 232028}, {"caption": "a oldwomen is explaining to her son about her something happened in her life", "video_id": "video11396", "sen_id": 232029}, {"caption": "an old gray haired woman talking to a younger man about life", "video_id": "video11396", "sen_id": 232030}, {"caption": "a movie clip where a person is running threw a crop field", "video_id": "video11396", "sen_id": 232031}, {"caption": "a boy sets on a bed and talks to his aged mother", "video_id": "video11396", "sen_id": 232032}, {"caption": "an old lady is laying in bed and talking with a man", "video_id": "video11396", "sen_id": 232033}, {"caption": "a crippled girl hobbles down a road to a white house at the end of a long road while an older couple is talking under a pink lamp", "video_id": "video11396", "sen_id": 232034}, {"caption": "a movie character laying in bed explains what it takes to survive in life", "video_id": "video11396", "sen_id": 232035}, {"caption": "a movie trailer regarding an action reality movie", "video_id": "video11396", "sen_id": 232036}, {"caption": "a very dynamic scene from a thriller movie taking your through some of the tense clips", "video_id": "video11396", "sen_id": 232037}, {"caption": "several people numerous centuries ago talking", "video_id": "video11396", "sen_id": 232038}, {"caption": "movie preview of a rural family during the early american settlements", "video_id": "video11396", "sen_id": 232039}, {"caption": "{}", "video_id": "video11037", "sen_id": 232040}, {"caption": "a man drives down wide paths as he talks about how extraordinary his car is", "video_id": "video11037", "sen_id": 232041}, {"caption": "a man with a yellow shirt driving a car on topgear", "video_id": "video11037", "sen_id": 232042}, {"caption": "a man on the tv show top gear driving a silver car down a winding road", "video_id": "video11037", "sen_id": 232043}, {"caption": "jeremy clarkson the tv anchor from top gear drives a car in high speed", "video_id": "video11037", "sen_id": 232044}, {"caption": "a man is talking about a fast car as he drives it", "video_id": "video11037", "sen_id": 232045}, {"caption": "a person who driving is describing about car feature", "video_id": "video11037", "sen_id": 232046}, {"caption": "a man talks about his car while he drives it at greast speed", "video_id": "video11037", "sen_id": 232047}, {"caption": "a man drives a car down a road while he discusses how his car is not ordinary and then goes on to discuss more cars", "video_id": "video11037", "sen_id": 232048}, {"caption": "a car is driving around on a road", "video_id": "video11037", "sen_id": 232049}, {"caption": "the anchor of the show topgear exclaims that the car he is driving is no ordinary car and how good it is compared to an older model", "video_id": "video11037", "sen_id": 232050}, {"caption": "a man in a car is driving very fast down a rural road", "video_id": "video11037", "sen_id": 232051}, {"caption": "a man gives a description of a car that he is test driving in a country setting", "video_id": "video11037", "sen_id": 232052}, {"caption": "a old man inside car ryding a car on road driving explayning wearing in blue dress speaking displaying on screen", "video_id": "video11037", "sen_id": 232053}, {"caption": "a car on the road is driving around fast", "video_id": "video11037", "sen_id": 232054}, {"caption": "advertisement with a man driving down a long road stretch", "video_id": "video11037", "sen_id": 232055}, {"caption": "a man shows off the speed of a luxury sports car", "video_id": "video11037", "sen_id": 232056}, {"caption": "a man wearing light color shirt and khaki color jacket is driving a car on a road near a very green field", "video_id": "video11037", "sen_id": 232057}, {"caption": "topgear is being shown and jeremy is driving down the road", "video_id": "video11037", "sen_id": 232058}, {"caption": "a man in a green hat is driving a car", "video_id": "video11037", "sen_id": 232059}, {"caption": "a man streaming himself playing a computer game", "video_id": "video10829", "sen_id": 232060}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video10829", "sen_id": 232061}, {"caption": "a person is controlling an army of fighters on a video game", "video_id": "video10829", "sen_id": 232062}, {"caption": "a man in a black shirt is playing a war video game", "video_id": "video10829", "sen_id": 232063}, {"caption": "a person demonstrates a video game that they are playing", "video_id": "video10829", "sen_id": 232064}, {"caption": "an army marching towards another army and over running them", "video_id": "video10829", "sen_id": 232065}, {"caption": "a young man playing a video game while explaining strategies live", "video_id": "video10829", "sen_id": 232066}, {"caption": "there are some people running to escape", "video_id": "video10829", "sen_id": 232067}, {"caption": "more animated characters are going", "video_id": "video10829", "sen_id": 232068}, {"caption": "a game play scene about a 3d game show", "video_id": "video10829", "sen_id": 232069}, {"caption": "cartoon soldiers fought each other on a battle field", "video_id": "video10829", "sen_id": 232070}, {"caption": "someone is playing star craft 2", "video_id": "video10829", "sen_id": 232071}, {"caption": "there is someone attacking a country with out fear", "video_id": "video10829", "sen_id": 232072}, {"caption": "more peoples are flying and shooted", "video_id": "video10829", "sen_id": 232073}, {"caption": "some one is playing a video game in the screen", "video_id": "video10829", "sen_id": 232074}, {"caption": "a stream of a gamer playing league of legends", "video_id": "video10829", "sen_id": 232075}, {"caption": "someone plays a multiplayer online battle arena game", "video_id": "video10829", "sen_id": 232076}, {"caption": "a boy playing a game in which soldiers going into the jungle to kill their enemies", "video_id": "video10829", "sen_id": 232077}, {"caption": "a starcraft 2 zerg player in a ladder match", "video_id": "video10829", "sen_id": 232078}, {"caption": "here is a computer game which is full of soldiersviolence and gun shots", "video_id": "video10829", "sen_id": 232079}, {"caption": "will smith is interviewed about his life and shares his wisdom", "video_id": "video12095", "sen_id": 232080}, {"caption": "will smith is talking about how much he loves his life", "video_id": "video12095", "sen_id": 232081}, {"caption": "an african america man sitting down talking with a white man", "video_id": "video12095", "sen_id": 232082}, {"caption": "will smith is talking to a reporter about how he loves his life and loves living", "video_id": "video12095", "sen_id": 232083}, {"caption": "hollywood actor will smith shares about the wisdom of life and other person smiles and hears him", "video_id": "video12095", "sen_id": 232084}, {"caption": "an man sharing is life time movements", "video_id": "video12095", "sen_id": 232085}, {"caption": "will smith is answering an interviewers question", "video_id": "video12095", "sen_id": 232086}, {"caption": "a man with white t shirt speaking to another person with black coat", "video_id": "video12095", "sen_id": 232087}, {"caption": "there is a men wearing black suit and talking", "video_id": "video12095", "sen_id": 232088}, {"caption": "hollywood actor speaking shares his wisdom on life in website www", "video_id": "video12095", "sen_id": 232089}, {"caption": "will smith sits in an interview wearing a grey shirt", "video_id": "video12095", "sen_id": 232090}, {"caption": "will smith is talking about something on tv", "video_id": "video12095", "sen_id": 232091}, {"caption": "there is a young man talking about him", "video_id": "video12095", "sen_id": 232092}, {"caption": "the two men sit in chairs and talk near a fire place", "video_id": "video12095", "sen_id": 232093}, {"caption": "a black man is speaking and a man with spectacles is nodding his head", "video_id": "video12095", "sen_id": 232094}, {"caption": "will smith talks to an interviewer for a tv special about wisdom and living", "video_id": "video12095", "sen_id": 232095}, {"caption": "there is casual boy talking to a suit man", "video_id": "video12095", "sen_id": 232096}, {"caption": "the men is telling some victory happens in his life sharing in the media men", "video_id": "video12095", "sen_id": 232097}, {"caption": "a man is talking about his life and future", "video_id": "video12095", "sen_id": 232098}, {"caption": "will smith doing a talk show with the guy in suit and tie", "video_id": "video12095", "sen_id": 232099}, {"caption": "a blue car wrecks during a race in a video game", "video_id": "video12258", "sen_id": 232100}, {"caption": "animated game of race cars on a racetrack on a sunny day", "video_id": "video12258", "sen_id": 232101}, {"caption": "a blue car is racing around a track in a video game", "video_id": "video12258", "sen_id": 232102}, {"caption": "a blue racecar passes a white racecar to the right their wheels touch the blue car drives onto a grassy strip on the side the blue car faces the opposite direction the blue car drives backwards and then drives off the course", "video_id": "video12258", "sen_id": 232103}, {"caption": "a blue race car bumped another car and went backwards and kept on driving backwards", "video_id": "video12258", "sen_id": 232104}, {"caption": "animated racing indianapolis race cars round a track and are bumped off course", "video_id": "video12258", "sen_id": 232105}, {"caption": "a car is running on the road", "video_id": "video12258", "sen_id": 232106}, {"caption": "a very fast car in a computer game is racing down a track and then eventually spins out after clipping another car", "video_id": "video12258", "sen_id": 232107}, {"caption": "a race car passes a car on the outside of curve and is spun out hitting wall", "video_id": "video12258", "sen_id": 232108}, {"caption": "a cars moving in row racing driving fast on road dashing displaying on the screen", "video_id": "video12258", "sen_id": 232109}, {"caption": "there is a car moving on the track without balance", "video_id": "video12258", "sen_id": 232110}, {"caption": "a man plays a video game where he controls a large-tired vehicle", "video_id": "video12258", "sen_id": 232111}, {"caption": "a man is narrating his game play as he replays a racing game", "video_id": "video12258", "sen_id": 232112}, {"caption": "race cars are driving around a track one car goes off into the grass", "video_id": "video12258", "sen_id": 232113}, {"caption": "a blue drag car races on a track and gets turned around as a man speaks over the footage", "video_id": "video12258", "sen_id": 232114}, {"caption": "there is a man riding the car with full power", "video_id": "video12258", "sen_id": 232115}, {"caption": "a man giving commentary on the replay of a simulated race he participated in", "video_id": "video12258", "sen_id": 232116}, {"caption": "a man is playing a racing video game and giving a tutorial", "video_id": "video12258", "sen_id": 232117}, {"caption": "a guy shows us a replay of his racing video game", "video_id": "video12258", "sen_id": 232118}, {"caption": "a racing game f1 simulation is being played with the offscreen player narrating the on screen actions", "video_id": "video12258", "sen_id": 232119}, {"caption": "a woman with a dog on her lap is talking and a man sitting next to her", "video_id": "video12941", "sen_id": 232120}, {"caption": "a white woman holding a black dog and a black man talk about television shows", "video_id": "video12941", "sen_id": 232121}, {"caption": "two people listing tv shows on a youtube video", "video_id": "video12941", "sen_id": 232122}, {"caption": "a woman with a dog on her lap talking and a man next to her shaking his head", "video_id": "video12941", "sen_id": 232123}, {"caption": "a lady holding a dog and a man are discussing a television show", "video_id": "video12941", "sen_id": 232124}, {"caption": "a girl in blue t-shirt is talking and holding black dog on her lap", "video_id": "video12941", "sen_id": 232125}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12941", "sen_id": 232126}, {"caption": "an african man and white woman talk about reality shows they enjoy watching", "video_id": "video12941", "sen_id": 232127}, {"caption": "a woman and man sit next to each other and talk about a show about dogs they like", "video_id": "video12941", "sen_id": 232128}, {"caption": "a person in black t shirt and a women in blue dress with her pet dog in black seating", "video_id": "video12941", "sen_id": 232129}, {"caption": " holding a puppy is sitting next to a man in a black t-shirt reviewing a reality show about rescuing pit bulls", "video_id": "video12941", "sen_id": 232130}, {"caption": "a man reaches over and scratches the neck of a small black dog that is sitting on the lap of the woman next to him", "video_id": "video12941", "sen_id": 232131}, {"caption": "guys are speaking about the dog that the lady holds", "video_id": "video12941", "sen_id": 232132}, {"caption": "one bald head man in black t shirt and another lady in blue color t shirt holding a dog both were laughing after saying some thing", "video_id": "video12941", "sen_id": 232133}, {"caption": "a black man and white woman are talking", "video_id": "video12941", "sen_id": 232134}, {"caption": "there is a woman in blue tshirt talking with a man", "video_id": "video12941", "sen_id": 232135}, {"caption": "a woman wearing a solid blue t-shirt holds a black dog with pointed ears on her lap while she sits next to a man wearing a black t-shirt with letters and a figure holding a pole", "video_id": "video12941", "sen_id": 232136}, {"caption": "a woman holding a dog is talking about the merits of a pit bull rescue group a man next to her agrees", "video_id": "video12941", "sen_id": 232137}, {"caption": "a woman explains her obsession with the show pit bulls and parolees", "video_id": "video12941", "sen_id": 232138}, {"caption": "a man and woman are sitting on a couch", "video_id": "video12941", "sen_id": 232139}, {"caption": "a person exiting a bus and picking up luggage out of the side of the bus", "video_id": "video12093", "sen_id": 232140}, {"caption": "people are carrying bags as they arrive somewhere", "video_id": "video12093", "sen_id": 232141}, {"caption": "a sporting team disembarks a bus with their luggage", "video_id": "video12093", "sen_id": 232142}, {"caption": "a group of boys are getting off a bus and picking up their luggage from the storage space underneath", "video_id": "video12093", "sen_id": 232143}, {"caption": "people are leaving a bus and gathering their luggage to go somewhere", "video_id": "video12093", "sen_id": 232144}, {"caption": "kids are getting off a bus and grabbing track and field equipment", "video_id": "video12093", "sen_id": 232145}, {"caption": "group of athletes get off of a bus and pick up their luggage at a bus station while music plays", "video_id": "video12093", "sen_id": 232146}, {"caption": "people taking track equipment off of a bus", "video_id": "video12093", "sen_id": 232147}, {"caption": "a group of people getting off a bus and picking up their luggage", "video_id": "video12093", "sen_id": 232148}, {"caption": "athletes are taking track gear off of a bus", "video_id": "video12093", "sen_id": 232149}, {"caption": "people getting their luggage out of a bus and carrying it down a street", "video_id": "video12093", "sen_id": 232150}, {"caption": "people carrying things and walking down a street", "video_id": "video12093", "sen_id": 232151}, {"caption": "a group of people walk around outdoors while carrying large objects", "video_id": "video12093", "sen_id": 232152}, {"caption": "tourists get off of a bus and gather their luggage", "video_id": "video12093", "sen_id": 232153}, {"caption": "groovy music plays as various people collect belongings and walk around", "video_id": "video12093", "sen_id": 232154}, {"caption": "some people with red dressing get down from the bus and taking luggage from busand going altogether", "video_id": "video12093", "sen_id": 232155}, {"caption": "a sports team gets off a bus and unloads their gear from the storage below the bus they have the letter r on their backpacks", "video_id": "video12093", "sen_id": 232156}, {"caption": "young men walk off tour bus and remove luggage from underneath compartment", "video_id": "video12093", "sen_id": 232157}, {"caption": "the people are taking their bags after leaving the bus", "video_id": "video12093", "sen_id": 232158}, {"caption": "some people in a group are doing some stuff", "video_id": "video12093", "sen_id": 232159}, {"caption": "a girl who drew her muscles on top of her skin", "video_id": "video12290", "sen_id": 232160}, {"caption": "a woman has a skeleton makeup on and will have a tutorial", "video_id": "video12290", "sen_id": 232161}, {"caption": "a lady advertising her tattoo business on you-tube", "video_id": "video12290", "sen_id": 232162}, {"caption": "a young woman describes and demonstrates a unique makeup method she uses", "video_id": "video12290", "sen_id": 232163}, {"caption": "a woman talking in an animated fashion talking about her various costumes and channel", "video_id": "video12290", "sen_id": 232164}, {"caption": "a woman with her half painted face with skeleton look is asking viewers to subscribe to her youtube channel", "video_id": "video12290", "sen_id": 232165}, {"caption": "there is a women who had sone skeliton make for her half face and talking", "video_id": "video12290", "sen_id": 232166}, {"caption": "a lady with paint on her half of face and upper body explaining something in a room with some paints in background", "video_id": "video12290", "sen_id": 232167}, {"caption": "a woman with a wild makeuppaintingon her face and chest asks for people to subscribe to her youtube channel", "video_id": "video12290", "sen_id": 232168}, {"caption": "a woman with tattoo design on her face and neck and talking something", "video_id": "video12290", "sen_id": 232169}, {"caption": "a women with colored face talking nearby colors", "video_id": "video12290", "sen_id": 232170}, {"caption": "a woman who is half cartoon speaks about her blog and other things that are important to her", "video_id": "video12290", "sen_id": 232171}, {"caption": "a girl with painting on half of her body that looks like you can see the inside of her body", "video_id": "video12290", "sen_id": 232172}, {"caption": "a cute girl done the tattoo on her right side face its so beautiful", "video_id": "video12290", "sen_id": 232173}, {"caption": "a girls is drawing cartoon in her side face", "video_id": "video12290", "sen_id": 232174}, {"caption": "there is a women applying makeup by herself", "video_id": "video12290", "sen_id": 232175}, {"caption": " with a section of her face and chest painted while speaking rapidly", "video_id": "video12290", "sen_id": 232176}, {"caption": "one beautiful and lovely women makeup in color face", "video_id": "video12290", "sen_id": 232177}, {"caption": "a girl drawn the tattoo on right side of her face she has white skin", "video_id": "video12290", "sen_id": 232178}, {"caption": "a woman is showing how to do her makeup", "video_id": "video12290", "sen_id": 232179}, {"caption": "a person is standing on a surfboard in an ocean on a wave", "video_id": "video10698", "sen_id": 232180}, {"caption": "a man is standing on his surfboard in the middle of the ocean", "video_id": "video10698", "sen_id": 232181}, {"caption": "the silhouette of a man surfing with a sunset in the background", "video_id": "video10698", "sen_id": 232182}, {"caption": "a man surfing and the barrell of a wave", "video_id": "video10698", "sen_id": 232183}, {"caption": "a man speaking about a dream career while showing paradise surf images", "video_id": "video10698", "sen_id": 232184}, {"caption": "a guy talks about his surfing career and the sacrifices he has made", "video_id": "video10698", "sen_id": 232185}, {"caption": "a man in a blue shirt talks while a surfer is shown", "video_id": "video10698", "sen_id": 232186}, {"caption": "a man in blue shirt talking with some one in front of the camera", "video_id": "video10698", "sen_id": 232187}, {"caption": "a men with blue shirt is talking by doing action with his hands and slide show", "video_id": "video10698", "sen_id": 232188}, {"caption": "a man is presenting photo s of himself surfing", "video_id": "video10698", "sen_id": 232189}, {"caption": "a man in a blue shirt wearing a microphone talks about surfing", "video_id": "video10698", "sen_id": 232190}, {"caption": "there is a man surfing on the blue waves", "video_id": "video10698", "sen_id": 232191}, {"caption": " in a blue shirt and a microphone speaks over pictures of waves and surfers", "video_id": "video10698", "sen_id": 232192}, {"caption": "one man talk about skating in sea waves", "video_id": "video10698", "sen_id": 232193}, {"caption": "a woman is standing in the poster and a cute photo is showing", "video_id": "video10698", "sen_id": 232194}, {"caption": "a man explains how he left his job to became a surfer", "video_id": "video10698", "sen_id": 232195}, {"caption": "there is a man surfing on the green waves", "video_id": "video10698", "sen_id": 232196}, {"caption": "the in the blue shirt talks in the microphone", "video_id": "video10698", "sen_id": 232197}, {"caption": "one man talking about huge wave in sea", "video_id": "video10698", "sen_id": 232198}, {"caption": "a man telling about the dream and the girl is on the wave", "video_id": "video10698", "sen_id": 232199}, {"caption": "a couple of young boys wearing fire hats putting tires on a large upsidedown firetruck toy", "video_id": "video10500", "sen_id": 232200}, {"caption": "these children are all dressed up to play firemen", "video_id": "video10500", "sen_id": 232201}, {"caption": "children smile and have a good time while assembling a large toy vehicle", "video_id": "video10500", "sen_id": 232202}, {"caption": "kids dressed as firefighters assemble a rideable fire truck in a living room", "video_id": "video10500", "sen_id": 232203}, {"caption": "several children dressed up in firemen uniforms changing fake plastic tires", "video_id": "video10500", "sen_id": 232204}, {"caption": "children are dressed as firefighters and assembling their toy fire truck", "video_id": "video10500", "sen_id": 232205}, {"caption": "a couple of kids playing with a toy truck", "video_id": "video10500", "sen_id": 232206}, {"caption": "changing tires from a racing car with tools urgently", "video_id": "video10500", "sen_id": 232207}, {"caption": "gabe and garrett two boys setting wheels to a car", "video_id": "video10500", "sen_id": 232208}, {"caption": "two boys in red hat putting wheel fixing with black dress", "video_id": "video10500", "sen_id": 232209}, {"caption": "children dressed in firemen costumes are putting the wheels on their play firetruck car", "video_id": "video10500", "sen_id": 232210}, {"caption": "there is someone fitting a car treys inside a garage", "video_id": "video10500", "sen_id": 232211}, {"caption": "young girls working on a toy fire truck wearing fireman clothes", "video_id": "video10500", "sen_id": 232212}, {"caption": "two children in firefighter costumes putting tires on a toy car", "video_id": "video10500", "sen_id": 232213}, {"caption": "the beautiful girl in black design dress is speaking to someone in the talk show", "video_id": "video10500", "sen_id": 232214}, {"caption": "a group of firefighters put wheels on a vehicle", "video_id": "video10500", "sen_id": 232215}, {"caption": "a little boy and a man sets the car wheel the boy is having red cap", "video_id": "video10500", "sen_id": 232216}, {"caption": "some young boys put the wheels on a large toy firetruck", "video_id": "video10500", "sen_id": 232217}, {"caption": " dressed as firemen fix the wheels on their wagon", "video_id": "video10500", "sen_id": 232218}, {"caption": "a person is working on a tire in a shop", "video_id": "video10500", "sen_id": 232219}, {"caption": "a man is applying eye makeup to another person's face", "video_id": "video10556", "sen_id": 232220}, {"caption": "a makeup tutorial for a guy that is tattooed", "video_id": "video10556", "sen_id": 232221}, {"caption": "a man sitting down gets his face painted by a makeup artist", "video_id": "video10556", "sen_id": 232222}, {"caption": "a makeup artist works on a person", "video_id": "video10556", "sen_id": 232223}, {"caption": "someone with a tattooed hand applies eye makeup to an androgenous person", "video_id": "video10556", "sen_id": 232224}, {"caption": "a man placing makeup on another persons face", "video_id": "video10556", "sen_id": 232225}, {"caption": "a tattoed man with tattoos applying makeup in a womans eye", "video_id": "video10556", "sen_id": 232226}, {"caption": "a man is applying eye makeup to a person face", "video_id": "video10556", "sen_id": 232227}, {"caption": "a man is applying a neutral shade of contouring make up around a man's black eye shadow while he seems to be talking to himself", "video_id": "video10556", "sen_id": 232228}, {"caption": "a malel makeup artist wearing a black vest illustrates how to apply eye shadow correctly to a female's face", "video_id": "video10556", "sen_id": 232229}, {"caption": "a women is applying eye lliner for her eyes", "video_id": "video10556", "sen_id": 232230}, {"caption": "a man with many tattoos and an earring puts makeup on a woman s face", "video_id": "video10556", "sen_id": 232231}, {"caption": "a beautician is eye lining to the woman", "video_id": "video10556", "sen_id": 232232}, {"caption": "a beautician gives a good make up to her customer with her eye shadows", "video_id": "video10556", "sen_id": 232233}, {"caption": "a woman is doing someone else s make up", "video_id": "video10556", "sen_id": 232234}, {"caption": "a man is applying eye shadow makeup to a woman", "video_id": "video10556", "sen_id": 232235}, {"caption": "man putting make-up to women eyes and he have tattoo in his hand", "video_id": "video10556", "sen_id": 232236}, {"caption": "a man in black applies eye makeup onto another man s eye area", "video_id": "video10556", "sen_id": 232237}, {"caption": "a person is doing a makeup of a statue", "video_id": "video10556", "sen_id": 232238}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10556", "sen_id": 232239}, {"caption": "a blue mustang driving around a race track with an announcer describing it", "video_id": "video11798", "sen_id": 232240}, {"caption": "a man describes and demonstrates a car that he is test driving", "video_id": "video11798", "sen_id": 232241}, {"caption": "a blue race car with a white stripe is driven round a track", "video_id": "video11798", "sen_id": 232242}, {"caption": "a blue car with a white stripe races on a track", "video_id": "video11798", "sen_id": 232243}, {"caption": "a man test drives a blue and white sports car on a closed course", "video_id": "video11798", "sen_id": 232244}, {"caption": "in an automobile race a blue car makes a tight turn", "video_id": "video11798", "sen_id": 232245}, {"caption": "a blue and white striped race car is driving a race track", "video_id": "video11798", "sen_id": 232246}, {"caption": "a blue car is racing on a race court", "video_id": "video11798", "sen_id": 232247}, {"caption": "a race car is moving fast in the bend road", "video_id": "video11798", "sen_id": 232248}, {"caption": "a blue colour car moving on the road fast turning displaying on screen", "video_id": "video11798", "sen_id": 232249}, {"caption": "there is a car race competition held on a race track", "video_id": "video11798", "sen_id": 232250}, {"caption": "a car is driving at high speeds around a course", "video_id": "video11798", "sen_id": 232251}, {"caption": "stunt drivers perform high speed turns in a blue automobile", "video_id": "video11798", "sen_id": 232252}, {"caption": "the car is on a test drive and the co passenger is explaining it s various features", "video_id": "video11798", "sen_id": 232253}, {"caption": "a person is driving car and showing its features", "video_id": "video11798", "sen_id": 232254}, {"caption": "car ready for racing and man showing features", "video_id": "video11798", "sen_id": 232255}, {"caption": "a blue color car is on the race track it go fast in the track", "video_id": "video11798", "sen_id": 232256}, {"caption": "a blue car is driving fast on a race track", "video_id": "video11798", "sen_id": 232257}, {"caption": "a blue car with a white stripe drives fastly", "video_id": "video11798", "sen_id": 232258}, {"caption": "a race car rider ride a car in blue color on the road and many tiers on roadside", "video_id": "video11798", "sen_id": 232259}, {"caption": "a music video of young people wearing colorful clothes and riding bicycles carrying and dropping huge sums of money from very large bags and getting into a yellow car", "video_id": "video12494", "sen_id": 232260}, {"caption": "a man in red falls as a girl on a yellow bike finds him and cycles away", "video_id": "video12494", "sen_id": 232261}, {"caption": "young women in blue and yellow bikes riding through a town with bags of money", "video_id": "video12494", "sen_id": 232262}, {"caption": "a bank robbery and get away music video", "video_id": "video12494", "sen_id": 232263}, {"caption": "a wman on a bicycle grabbing a bag of money from the payment", "video_id": "video12494", "sen_id": 232264}, {"caption": "a bunch of bikers rob people that just robbed a bank", "video_id": "video12494", "sen_id": 232265}, {"caption": "a group of hoodlums take a bag of money from two men in a car", "video_id": "video12494", "sen_id": 232266}, {"caption": "a car has made an accident and the things of the man includes cash bag scattered and some of the people riding through cycles to take that bags and other things and get out of the place", "video_id": "video12494", "sen_id": 232267}, {"caption": "some people are riding bicycles and take a large bag full of money", "video_id": "video12494", "sen_id": 232268}, {"caption": "two bmx riders interrupt a bank robbery by stealing the money from the robbers", "video_id": "video12494", "sen_id": 232269}, {"caption": "a girl cycling and driving car and going on the road", "video_id": "video12494", "sen_id": 232270}, {"caption": "a personwith red pant and white tea shirt wearing helmet falling in front of a car another another girl in yellow color bicycle coming infront of the car and take a bag leaving the place in the meantime another person jump ovr the car", "video_id": "video12494", "sen_id": 232271}, {"caption": "a blue color bicycle is hit on the car", "video_id": "video12494", "sen_id": 232272}, {"caption": "two girls riding cycle jump from car to collect money bag", "video_id": "video12494", "sen_id": 232273}, {"caption": "two cyclists smash-and-grab a bag of cash while a man in a pig suit hops into a gold mercedes", "video_id": "video12494", "sen_id": 232274}, {"caption": "a women is flying wth bicycle cross the car", "video_id": "video12494", "sen_id": 232275}, {"caption": "bicycle riders perform stunts near the front of a bank and then ride off we a bag of money", "video_id": "video12494", "sen_id": 232276}, {"caption": "an old yellow car pulls up to a large white house", "video_id": "video12494", "sen_id": 232277}, {"caption": "persons are lootiins some money in the publc", "video_id": "video12494", "sen_id": 232278}, {"caption": "some people in masks are driving in a car", "video_id": "video12494", "sen_id": 232279}, {"caption": "several people are walking through a thick jungle", "video_id": "video12441", "sen_id": 232280}, {"caption": "group of men watching through thick forest area in south america", "video_id": "video12441", "sen_id": 232281}, {"caption": "multiple men emerging from the woods with calming music in the background", "video_id": "video12441", "sen_id": 232282}, {"caption": "6 men walking through brushes of trees up a hill", "video_id": "video12441", "sen_id": 232283}, {"caption": "men walk through a dense forested area through trees to a clearing and up a plant-covered slope toward the sky", "video_id": "video12441", "sen_id": 232284}, {"caption": "a group of men walk on a path out of a heavily wooded area", "video_id": "video12441", "sen_id": 232285}, {"caption": "people wearing back packs walking out of a forest", "video_id": "video12441", "sen_id": 232286}, {"caption": "a group of men hiking in the forest", "video_id": "video12441", "sen_id": 232287}, {"caption": "a man wearing a hat and walking through trees", "video_id": "video12441", "sen_id": 232288}, {"caption": "a group of men trudge through a section of lush vegitation", "video_id": "video12441", "sen_id": 232289}, {"caption": "all persons are going to forest and moving upwards", "video_id": "video12441", "sen_id": 232290}, {"caption": "a group of people trekking thru the wood", "video_id": "video12441", "sen_id": 232291}, {"caption": "few men are moving in a forest path and head upwards", "video_id": "video12441", "sen_id": 232292}, {"caption": "a group of 5 men who are walking single file on a path emerging from a dense forest", "video_id": "video12441", "sen_id": 232293}, {"caption": "bunch of guys walking through the woods toward the uphill", "video_id": "video12441", "sen_id": 232294}, {"caption": "there is a white shirt man walking with friends through forest", "video_id": "video12441", "sen_id": 232295}, {"caption": "the four naturalist are walk throuh the wildforest they all weraing pant and shirt", "video_id": "video12441", "sen_id": 232296}, {"caption": "a group of men walk through a trail in the woods", "video_id": "video12441", "sen_id": 232297}, {"caption": "boys in white and red dresses walking towards forest grass land", "video_id": "video12441", "sen_id": 232298}, {"caption": "men walk through a densely packed rainforest in a line", "video_id": "video12441", "sen_id": 232299}, {"caption": "a woman doing her makeup along with a narration in a foreign language explaining how to do it", "video_id": "video11213", "sen_id": 232300}, {"caption": "a brunette woman in a white top is applying a makeup to her face", "video_id": "video11213", "sen_id": 232301}, {"caption": "a young woman explaining how to put on the eye shadow she is demonstrating in a make up tutorial", "video_id": "video11213", "sen_id": 232302}, {"caption": "a woman applys her makeup while talking about it and narrating", "video_id": "video11213", "sen_id": 232303}, {"caption": "a french woman is speaking french while applying eye makeup", "video_id": "video11213", "sen_id": 232304}, {"caption": "a french woman demonstrates makeup application techniques", "video_id": "video11213", "sen_id": 232305}, {"caption": "a woman shows a brownish red eyeshadow and then applies it to her face using a pink-handled brush", "video_id": "video11213", "sen_id": 232306}, {"caption": "a women is applying make up to her face", "video_id": "video11213", "sen_id": 232307}, {"caption": "a girl is taking and showing how to makeup eyes of girls to show more beautiful", "video_id": "video11213", "sen_id": 232308}, {"caption": "a woman is coloring her eye lid her self", "video_id": "video11213", "sen_id": 232309}, {"caption": "a woman is taking a makeup brush and putting makeup on her eyes", "video_id": "video11213", "sen_id": 232310}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11213", "sen_id": 232311}, {"caption": "there is a women applying makeup by herself", "video_id": "video11213", "sen_id": 232312}, {"caption": "a lady is applying some makeup under her eyes she is giving the under eye portion a pinkish look may be she is trying to hide the dark circles", "video_id": "video11213", "sen_id": 232313}, {"caption": "sentence 1: a women in white dress is using makeup tools on her face sentence 2: a women model is showing the face makeup tips", "video_id": "video11213", "sen_id": 232314}, {"caption": "a women is doing make up for the eyes", "video_id": "video11213", "sen_id": 232315}, {"caption": "there is a women touching makeup on the face", "video_id": "video11213", "sen_id": 232316}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video11213", "sen_id": 232317}, {"caption": "beautiful lady doing eye make up using the pink color", "video_id": "video11213", "sen_id": 232318}, {"caption": "a girl with brown hair is doing her make up", "video_id": "video11213", "sen_id": 232319}, {"caption": "a man appears on a news program that is related to making money", "video_id": "video10674", "sen_id": 232320}, {"caption": "welcome and join us this monday morning as we visit the highlights from yesterdays top news stories", "video_id": "video10674", "sen_id": 232321}, {"caption": "two people in a room holding laptops argue with another man", "video_id": "video10674", "sen_id": 232322}, {"caption": "there are three cnbc news anchors that are discussing a topic", "video_id": "video10674", "sen_id": 232323}, {"caption": "an anchorman and anchorwoman on a blue set laugh at the responses from a man at a different location who points forward with his pen", "video_id": "video10674", "sen_id": 232324}, {"caption": "man and woman in the studio speaking with their coleague in white shirt", "video_id": "video10674", "sen_id": 232325}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video10674", "sen_id": 232326}, {"caption": "a man and woman talking to a another man person", "video_id": "video10674", "sen_id": 232327}, {"caption": "cnbc gns in australia two reporters are speaking with", "video_id": "video10674", "sen_id": 232328}, {"caption": "a girl in blue color dress wearing siting with white shirt man beside speaking white dress man speaking displaying on screen", "video_id": "video10674", "sen_id": 232329}, {"caption": "a guy is talking to a man and woman", "video_id": "video10674", "sen_id": 232330}, {"caption": "there is a white shirt man talking to two news readers", "video_id": "video10674", "sen_id": 232331}, {"caption": "two news anchors are talking to a man in a white shirt and laughing", "video_id": "video10674", "sen_id": 232332}, {"caption": "the man and woman from cnbc news network were making fun on the man on the white collared long sleeved shirt", "video_id": "video10674", "sen_id": 232333}, {"caption": "a news panel discusses some of the details of living in australia", "video_id": "video10674", "sen_id": 232334}, {"caption": "a man and a woman on the news are speaking", "video_id": "video10674", "sen_id": 232335}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10674", "sen_id": 232336}, {"caption": "a cnbc talk show host in a white shirt and yellow tie is cross-talking over two guest hosts that are portrayed on a screen from a remote set", "video_id": "video10674", "sen_id": 232337}, {"caption": "a news channel is talking about random ideas dealing with animals in austrailia", "video_id": "video10674", "sen_id": 232338}, {"caption": "two news anchor are laughing as they listen to a guest speaker talking to them", "video_id": "video10674", "sen_id": 232339}, {"caption": "a man reporting some news", "video_id": "video12925", "sen_id": 232340}, {"caption": "a man in a blue jacket discusses a recent trip he took to an apple store", "video_id": "video12925", "sen_id": 232341}, {"caption": "a man wearing glasses is speaking in front of a building at night", "video_id": "video12925", "sen_id": 232342}, {"caption": "an instructor speaking for university of ervin california for a study course with sam coughman", "video_id": "video12925", "sen_id": 232343}, {"caption": "a man with glasses introduces himself as a professor", "video_id": "video12925", "sen_id": 232344}, {"caption": "a man wearing glasses talking in front of a building at night", "video_id": "video12925", "sen_id": 232345}, {"caption": "a man in a suit is talking about an intro he filmed at an apple store in new york", "video_id": "video12925", "sen_id": 232346}, {"caption": "a man wearing a black suit and glasses is giving news", "video_id": "video12925", "sen_id": 232347}, {"caption": "a man in black suit explaining about something", "video_id": "video12925", "sen_id": 232348}, {"caption": "a man is explaining about a topic regarding sound engineering", "video_id": "video12925", "sen_id": 232349}, {"caption": "a person explaining some instructions about how to use a place", "video_id": "video12925", "sen_id": 232350}, {"caption": "man in black suit is in the center of the city and talking for the tv", "video_id": "video12925", "sen_id": 232351}, {"caption": "a man with spectacles and wearing a grey coloured coat is saying something", "video_id": "video12925", "sen_id": 232352}, {"caption": "a man wearing specs and coat talking something in media", "video_id": "video12925", "sen_id": 232353}, {"caption": "a man wearing black coat and light blue shirt giving instruction to the students", "video_id": "video12925", "sen_id": 232354}, {"caption": "a man with glasses is speaking about something", "video_id": "video12925", "sen_id": 232355}, {"caption": "a black suit man talking in a tv show", "video_id": "video12925", "sen_id": 232356}, {"caption": "a teacher giving an intro of himself to his students", "video_id": "video12925", "sen_id": 232357}, {"caption": "guy in suit and glasses talking about cities in us", "video_id": "video12925", "sen_id": 232358}, {"caption": "a guy with glasses speaking about the partnership of apple store in new york", "video_id": "video12925", "sen_id": 232359}, {"caption": "pictures of matt damon and other actors from popular movies", "video_id": "video11551", "sen_id": 232360}, {"caption": "a young woman discusses the career of a couple of famous actors", "video_id": "video11551", "sen_id": 232361}, {"caption": "woman explains about the bourne legacy movie staring matt damon while images of the movie are being shown", "video_id": "video11551", "sen_id": 232362}, {"caption": "images of matt damon a blond haired white male appear sequentially one after another on a black background", "video_id": "video11551", "sen_id": 232363}, {"caption": "a man in a black button down shirt and brown hair is sitting on the subway", "video_id": "video11551", "sen_id": 232364}, {"caption": "the two young people are in angry mood and watching their eyes", "video_id": "video11551", "sen_id": 232365}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11551", "sen_id": 232366}, {"caption": "bourne identity the bourne ultimatu matt damon bourne legacy", "video_id": "video11551", "sen_id": 232367}, {"caption": "a still image camera and focusing images picture displaying on screen", "video_id": "video11551", "sen_id": 232368}, {"caption": "a man in different angles wearing different costumes", "video_id": "video11551", "sen_id": 232369}, {"caption": "a man wearing black color dressed looking", "video_id": "video11551", "sen_id": 232370}, {"caption": "an entertainment reporter talks about a famous actor and a series of movies he was in", "video_id": "video11551", "sen_id": 232371}, {"caption": "there is a man acting in a action roll", "video_id": "video11551", "sen_id": 232372}, {"caption": "a woman s voice is speaking about a movie", "video_id": "video11551", "sen_id": 232373}, {"caption": "the bourne ultimate film trailer clipings are excellent", "video_id": "video11551", "sen_id": 232374}, {"caption": "list of matt demon movies being shown on screen", "video_id": "video11551", "sen_id": 232375}, {"caption": "there is a man in shirt looking and thinking", "video_id": "video11551", "sen_id": 232376}, {"caption": "in a slideshow a movies hero and different movies posters are displayed and shooting of the film is also shown", "video_id": "video11551", "sen_id": 232377}, {"caption": "various photos and scenes from the bourne movie series narrated by a woman reading entertainment news", "video_id": "video11551", "sen_id": 232378}, {"caption": "in a add a person in black jerkin with bag on the back standing in front of camera", "video_id": "video11551", "sen_id": 232379}, {"caption": "a man is carrying his daughter on his shoulders showing one of the reasons she will love him for fathers day", "video_id": "video10401", "sen_id": 232380}, {"caption": "a girls is riding on her dad's shoulders", "video_id": "video10401", "sen_id": 232381}, {"caption": "a man walks forward carrying his daughter on his shoulders", "video_id": "video10401", "sen_id": 232382}, {"caption": "a man carries his little daughter on his shoulders through their back yard", "video_id": "video10401", "sen_id": 232383}, {"caption": "a video showing fathers appreciate in a small amount of time", "video_id": "video10401", "sen_id": 232384}, {"caption": "text that says you'll always be loved and happy fathers day", "video_id": "video10401", "sen_id": 232385}, {"caption": "there is a father carrying his girl on shoulder", "video_id": "video10401", "sen_id": 232386}, {"caption": "a young girl in pink sits on her father s shoulders as her dad walks away across the yard on grass", "video_id": "video10401", "sen_id": 232387}, {"caption": "a screen is playing a fathers day greetings", "video_id": "video10401", "sen_id": 232388}, {"caption": "a banner celebrate happy father s day in blue letters", "video_id": "video10401", "sen_id": 232389}, {"caption": "fading screen-shot of man carrying daughter is replaced with the text: you ll always be her first love happy fathers day", "video_id": "video10401", "sen_id": 232390}, {"caption": "a man holding a child on his shoulder walking in a park", "video_id": "video10401", "sen_id": 232391}, {"caption": "you ll always be her first love happy fathers day", "video_id": "video10401", "sen_id": 232392}, {"caption": "we should always be the first lovehappy fathers day its written in the blue color", "video_id": "video10401", "sen_id": 232393}, {"caption": "a man who is carrying their child on his shoulder and moving on the grass land", "video_id": "video10401", "sen_id": 232394}, {"caption": "there is some blue text on a white back ground", "video_id": "video10401", "sen_id": 232395}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video10401", "sen_id": 232396}, {"caption": "an advertisement for the fathers day a father holding his child on his shoulder", "video_id": "video10401", "sen_id": 232397}, {"caption": "dad carry her daughters on the shoulder and walks away", "video_id": "video10401", "sen_id": 232398}, {"caption": "a person is caring his baby on his shoulder", "video_id": "video10401", "sen_id": 232399}, {"caption": "a man is cutting up his meal so he can se the meat he is eating", "video_id": "video12770", "sen_id": 232400}, {"caption": "a woman tastes some food that she has just purchased in a restaurant", "video_id": "video12770", "sen_id": 232401}, {"caption": "woman cuts up some meat on a plate while man films and shows several platters on the table with food on them", "video_id": "video12770", "sen_id": 232402}, {"caption": "a person cuts into a piece of meat that they have recently purchased", "video_id": "video12770", "sen_id": 232403}, {"caption": "a man cuts meatballs into pieces and eats a piece", "video_id": "video12770", "sen_id": 232404}, {"caption": "people are eating spicy food kept in the table", "video_id": "video12770", "sen_id": 232405}, {"caption": "someone is cutting food on a white plate so you can see the meat", "video_id": "video12770", "sen_id": 232406}, {"caption": "one man is talking about filming the inside of the meat from a dish he is eating and another man named jeff signs off the clip", "video_id": "video12770", "sen_id": 232407}, {"caption": "different kinds of dishes are prepared and served in beautiful white plates", "video_id": "video12770", "sen_id": 232408}, {"caption": "a person is eating some meat on a plate", "video_id": "video12770", "sen_id": 232409}, {"caption": "there is a man eating food at the restaurant", "video_id": "video12770", "sen_id": 232410}, {"caption": "the video shows more food items with gravy and men holding fork", "video_id": "video12770", "sen_id": 232411}, {"caption": "a person cutting meat with a fork and knife while being surrounded by plates of food", "video_id": "video12770", "sen_id": 232412}, {"caption": "from a food table where food dish is prepared for eating there are many recipesmeatfrywith bread spoons and glases", "video_id": "video12770", "sen_id": 232413}, {"caption": "some dishes of food are on display for consumeres", "video_id": "video12770", "sen_id": 232414}, {"caption": "there is a man eating food with frends", "video_id": "video12770", "sen_id": 232415}, {"caption": "guy cutting eating food with fork and spoon", "video_id": "video12770", "sen_id": 232416}, {"caption": "a delicious piece of meat is cut and eaten by someone", "video_id": "video12770", "sen_id": 232417}, {"caption": "some people are eating a non-vegetarian food in the restauratnt", "video_id": "video12770", "sen_id": 232418}, {"caption": "some food on a table is being shown", "video_id": "video12770", "sen_id": 232419}, {"caption": "a person demonstrates the various features of computer program", "video_id": "video11560", "sen_id": 232420}, {"caption": "a man is recording his computer screen to demonstrate how a program works", "video_id": "video11560", "sen_id": 232421}, {"caption": "a person scrolls on a menu on a computer program screen", "video_id": "video11560", "sen_id": 232422}, {"caption": "a man is giving a tutorial on how to set up a computer", "video_id": "video11560", "sen_id": 232423}, {"caption": "a man is teaching what looks like a computer course on the computer", "video_id": "video11560", "sen_id": 232424}, {"caption": "we learn how to check information on a mac", "video_id": "video11560", "sen_id": 232425}, {"caption": "a tutorial on a computer about how to setup a program", "video_id": "video11560", "sen_id": 232426}, {"caption": "many screen shots of computer software and open windows", "video_id": "video11560", "sen_id": 232427}, {"caption": "a man opens up a tab with a moniter and scrolls around the page", "video_id": "video11560", "sen_id": 232428}, {"caption": "several menus are being navigated through on a desktop screen", "video_id": "video11560", "sen_id": 232429}, {"caption": "a man explaining how to create a project in a editing program", "video_id": "video11560", "sen_id": 232430}, {"caption": "a computer user is walking the viewer step by step through the settings of a program designed to change the graphic settings on a computer", "video_id": "video11560", "sen_id": 232431}, {"caption": "a tutorial on how to use a computer program from a person with a heavy accent", "video_id": "video11560", "sen_id": 232432}, {"caption": "someone is explaining how to input data into a computer software program", "video_id": "video11560", "sen_id": 232433}, {"caption": "in a macintosh one man explains how to setup a video clipping", "video_id": "video11560", "sen_id": 232434}, {"caption": "a man gives directions about editing a video using a mac computer", "video_id": "video11560", "sen_id": 232435}, {"caption": "on desktop an application is opened then many side options are chosed", "video_id": "video11560", "sen_id": 232436}, {"caption": "a computer screen is shown and on the screen is a silver and black monitor", "video_id": "video11560", "sen_id": 232437}, {"caption": "an information page of a computer screen of a software page of a video player", "video_id": "video11560", "sen_id": 232438}, {"caption": "a person is showing software in the computer", "video_id": "video11560", "sen_id": 232439}, {"caption": "two men in yellow hazmat suits are making crystal meth", "video_id": "video10025", "sen_id": 232440}, {"caption": "people are cooking crystal meth and the reporters are recording it", "video_id": "video10025", "sen_id": 232441}, {"caption": "a man in a yellow hazardous materials suite stands next to a metal container", "video_id": "video10025", "sen_id": 232442}, {"caption": "two men covered in body suits with breathing masks moving big vats of chemicals they are mixing to make crystal meth", "video_id": "video10025", "sen_id": 232443}, {"caption": "people are wearing protecting gear while cooking crystal meth", "video_id": "video10025", "sen_id": 232444}, {"caption": "a pair of men in hazmat suits mix ingredients in large stainless steel barrels", "video_id": "video10025", "sen_id": 232445}, {"caption": "two scientists are cooking drugs in large drums behind a fence", "video_id": "video10025", "sen_id": 232446}, {"caption": "a pair of men in hazmat suits mix chemicals in large metal barrels", "video_id": "video10025", "sen_id": 232447}, {"caption": "a man in a yellow coat and face mask on is moving a large container", "video_id": "video10025", "sen_id": 232448}, {"caption": "a group of men in hazmat suits mix ingredients in large barrels", "video_id": "video10025", "sen_id": 232449}, {"caption": "three men with protective gear are mixing chemicals to produce crystal meth", "video_id": "video10025", "sen_id": 232450}, {"caption": "a man wearing a yellow jacket cooking in a huge drum", "video_id": "video10025", "sen_id": 232451}, {"caption": "two men in yellow hazmat suits are cooking crystal meth in large drums", "video_id": "video10025", "sen_id": 232452}, {"caption": "there are people in yellow and white full body suits standing around a large silver barrel", "video_id": "video10025", "sen_id": 232453}, {"caption": "people in hazmat suits are standing by a very large silver pot", "video_id": "video10025", "sen_id": 232454}, {"caption": "there is a man with yellow color coat working with a man", "video_id": "video10025", "sen_id": 232455}, {"caption": "the video of men mixing chemicals the man is commentating that they are creating crystal meth", "video_id": "video10025", "sen_id": 232456}, {"caption": "a man narrates footage of two men cooking crystal meth", "video_id": "video10025", "sen_id": 232457}, {"caption": "the cook mixing ingredients in the drum and the mouth is covered for hygienic reasons", "video_id": "video10025", "sen_id": 232458}, {"caption": "a scene from breaking bad is being showen", "video_id": "video10025", "sen_id": 232459}, {"caption": "i prisoner in a cell is watched by two large guards", "video_id": "video10416", "sen_id": 232460}, {"caption": "a man and two security officers are standing in cell", "video_id": "video10416", "sen_id": 232461}, {"caption": "a man is shown on a security camera while men in jail angrily yell in the background", "video_id": "video10416", "sen_id": 232462}, {"caption": "prisoner is being escorted into prison and insults are shouted to him by other prisoner", "video_id": "video10416", "sen_id": 232463}, {"caption": "a man stands between two guards in a prison cell", "video_id": "video10416", "sen_id": 232464}, {"caption": "close circuit tv's in a prison while prisoners shout in the background", "video_id": "video10416", "sen_id": 232465}, {"caption": "a clip of a movie called the watchman where one of characters in jail", "video_id": "video10416", "sen_id": 232466}, {"caption": "man in jacket standing in surveillance camera pans up to man behind bars with two officers", "video_id": "video10416", "sen_id": 232467}, {"caption": "a man seems to be in a very angry mood", "video_id": "video10416", "sen_id": 232468}, {"caption": "a man stands behind bars with two security guards", "video_id": "video10416", "sen_id": 232469}, {"caption": "there is a man standing in a cell", "video_id": "video10416", "sen_id": 232470}, {"caption": "three mans are in jail and is observed in camera", "video_id": "video10416", "sen_id": 232471}, {"caption": "a holly wood movie scene cops watching the security camera", "video_id": "video10416", "sen_id": 232472}, {"caption": "person stands on the cage and there are three person they say im gonna fuck you", "video_id": "video10416", "sen_id": 232473}, {"caption": "one man is appearing in front of the camera", "video_id": "video10416", "sen_id": 232474}, {"caption": "there is a man waiting to open a door", "video_id": "video10416", "sen_id": 232475}, {"caption": "the man shows up in the survalence video", "video_id": "video10416", "sen_id": 232476}, {"caption": "a man is standing and musics are playing", "video_id": "video10416", "sen_id": 232477}, {"caption": "big man is in prison and he is very nervous", "video_id": "video10416", "sen_id": 232478}, {"caption": "a man is looking into cctv camera and some prisoners are standing in prison", "video_id": "video10416", "sen_id": 232479}, {"caption": "two girls preparing food using little kids toys", "video_id": "video11562", "sen_id": 232480}, {"caption": "two little girls are putting frosting and sprinkles on cookies", "video_id": "video11562", "sen_id": 232481}, {"caption": "grls decide to put frosting and sprinkles on cookies", "video_id": "video11562", "sen_id": 232482}, {"caption": "a little cute baking show for little girls", "video_id": "video11562", "sen_id": 232483}, {"caption": "a little girl and an older girl are talking about making frosting the color of your choice by adding food coloring", "video_id": "video11562", "sen_id": 232484}, {"caption": "a mother and a kid explaining the ingredients of some recipe in front of the camera", "video_id": "video11562", "sen_id": 232485}, {"caption": "two funny persons are about to make some food item", "video_id": "video11562", "sen_id": 232486}, {"caption": "one women and girl are speaking each other", "video_id": "video11562", "sen_id": 232487}, {"caption": "a couple of young girls doing a cooking video making cookies", "video_id": "video11562", "sen_id": 232488}, {"caption": "one small girl with specs and another grown up girl standing side by side mostly pink and yellow color background shelves two girls standing behind a table", "video_id": "video11562", "sen_id": 232489}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11562", "sen_id": 232490}, {"caption": "two girls play with and sing about a toy oven in a kitchen playroom", "video_id": "video11562", "sen_id": 232491}, {"caption": "two young girls put frosting and sprinkles on some cookies that they baked", "video_id": "video11562", "sen_id": 232492}, {"caption": "a girl inside kitchen speaking dancing and explaning on the screen", "video_id": "video11562", "sen_id": 232493}, {"caption": "a small and big girl are singing and dancing in a place which was in pink colour", "video_id": "video11562", "sen_id": 232494}, {"caption": "there is a small girl playing with barbie dolls", "video_id": "video11562", "sen_id": 232495}, {"caption": "one child and one adult telling the step 5 of frosting sprinkle time with enthusiastic", "video_id": "video11562", "sen_id": 232496}, {"caption": "two cute girls thinking dancing and says the step 5", "video_id": "video11562", "sen_id": 232497}, {"caption": "two young girls singing about its frosting sprinkle time", "video_id": "video11562", "sen_id": 232498}, {"caption": "a woman and girl are making some food in a room", "video_id": "video11562", "sen_id": 232499}, {"caption": "a slow motion video of a man running on the track", "video_id": "video12465", "sen_id": 232500}, {"caption": "a man in black is running in slow motion on a running track", "video_id": "video12465", "sen_id": 232501}, {"caption": "a man runs on a race track in slow motion", "video_id": "video12465", "sen_id": 232502}, {"caption": "slow motion running for those who want to appreciate muscle movement", "video_id": "video12465", "sen_id": 232503}, {"caption": "a guy is running in slow motion on a brick color track field", "video_id": "video12465", "sen_id": 232504}, {"caption": "a man running on an outdoor track in slow motion", "video_id": "video12465", "sen_id": 232505}, {"caption": "a person running on a running track", "video_id": "video12465", "sen_id": 232506}, {"caption": "a slow mo of a man running on a track", "video_id": "video12465", "sen_id": 232507}, {"caption": "a black dress color wearing boy running in slow motion displaying on screen", "video_id": "video12465", "sen_id": 232508}, {"caption": "an athlet is practicing in a ground for the tournament which is going to held", "video_id": "video12465", "sen_id": 232509}, {"caption": "a man in t-shirt running very seriously through the race track", "video_id": "video12465", "sen_id": 232510}, {"caption": "person running along the trucks", "video_id": "video12465", "sen_id": 232511}, {"caption": "a black dress sports man running slow motion in tracksuit", "video_id": "video12465", "sen_id": 232512}, {"caption": "a man wearing all black attire is running a red racing track just pass a metal fence", "video_id": "video12465", "sen_id": 232513}, {"caption": "view the one stadium and one person run on the sport stadium", "video_id": "video12465", "sen_id": 232514}, {"caption": "there is a man in black dressing running on the track", "video_id": "video12465", "sen_id": 232515}, {"caption": "a man running a red aback ground slowly", "video_id": "video12465", "sen_id": 232516}, {"caption": "a man is running in slow motion on a sports track", "video_id": "video12465", "sen_id": 232517}, {"caption": "a man wearing black shorts and t-shirt is on running on a field track in slow motion", "video_id": "video12465", "sen_id": 232518}, {"caption": "on a race track a man in black sportswear is running in slow motion", "video_id": "video12465", "sen_id": 232519}, {"caption": "a plan flying very close over the ocean", "video_id": "video11981", "sen_id": 232520}, {"caption": "an airplane descending into an island followed by another one", "video_id": "video11981", "sen_id": 232521}, {"caption": "a guy landing a plane on a beach", "video_id": "video11981", "sen_id": 232522}, {"caption": "a plane is flying very low over a tropical beach", "video_id": "video11981", "sen_id": 232523}, {"caption": "this video is showing an airplane landing on a beach", "video_id": "video11981", "sen_id": 232524}, {"caption": "an airplane landing at an airport near the beach", "video_id": "video11981", "sen_id": 232525}, {"caption": "planes come in very low for a landing over an ocean and a beach", "video_id": "video11981", "sen_id": 232526}, {"caption": "there is an airplane flying above the shore", "video_id": "video11981", "sen_id": 232527}, {"caption": "an airplane is crossing the very beautiful beach with crystal clear waters at phuket as it lands at the airport", "video_id": "video11981", "sen_id": 232528}, {"caption": "airplanes fly low over the ocean as they prepare to land on a small tropical island", "video_id": "video11981", "sen_id": 232529}, {"caption": "an aeroplane is landing in an beautiful island near a calm beach at morning", "video_id": "video11981", "sen_id": 232530}, {"caption": "a aeroplane is running very close to beach and people are watching the same", "video_id": "video11981", "sen_id": 232531}, {"caption": "a plane flies over a beach and lands at an airport that is just beyond the trees", "video_id": "video11981", "sen_id": 232532}, {"caption": "a plane makes a landing on to a beach", "video_id": "video11981", "sen_id": 232533}, {"caption": "planes come in for a landing right over the ocean and beach", "video_id": "video11981", "sen_id": 232534}, {"caption": "a flight is landing to airport near to beach", "video_id": "video11981", "sen_id": 232535}, {"caption": "plane flying is shown on the globe in white color", "video_id": "video11981", "sen_id": 232536}, {"caption": "a commercial jet flies close to the ocean preparing to land at an exotic beach airport", "video_id": "video11981", "sen_id": 232537}, {"caption": "there appears to be a plane landing at a tropical destination though the airport cannot be seen from the clip", "video_id": "video11981", "sen_id": 232538}, {"caption": "a flight is moving very fast down the sea which is very nice to see", "video_id": "video11981", "sen_id": 232539}, {"caption": "multiple people running a 1500m dash along with an announcer", "video_id": "video11892", "sen_id": 232540}, {"caption": "men compete in track and field's 1500 meter race", "video_id": "video11892", "sen_id": 232541}, {"caption": "a group of men are running a 1500 meter race on a track in a stadium", "video_id": "video11892", "sen_id": 232542}, {"caption": "a group of runners start a distance race at a large track meet", "video_id": "video11892", "sen_id": 232543}, {"caption": "a group of men running in a race while the voice of a male announcer narrates the race", "video_id": "video11892", "sen_id": 232544}, {"caption": "an outdoor 1500m track and field race begins at the university of oregon racers with different uniforms are all competing", "video_id": "video11892", "sen_id": 232545}, {"caption": "a large track meet competition with several people competing around a track and many spectators as a narrator narrates", "video_id": "video11892", "sen_id": 232546}, {"caption": "athletes running a 1500 meters race", "video_id": "video11892", "sen_id": 232547}, {"caption": "a men s 15 hundred meter race being won by the man in red shorts and a man in all green named villanova coming in second place", "video_id": "video11892", "sen_id": 232548}, {"caption": "some players are participate in the running race", "video_id": "video11892", "sen_id": 232549}, {"caption": "a team of field and track runners running in a 15 meter run for the champion ship", "video_id": "video11892", "sen_id": 232550}, {"caption": "a black person with white and red dress leading in a running competition where more than ten persons are participating", "video_id": "video11892", "sen_id": 232551}, {"caption": "a group of men running a 1500 meter track event", "video_id": "video11892", "sen_id": 232552}, {"caption": "athlete are running to win a medal in track commentator is commenting about it", "video_id": "video11892", "sen_id": 232553}, {"caption": "a black athelete is running first in a running race", "video_id": "video11892", "sen_id": 232554}, {"caption": "this is the first lap of a 1500 m race going on at the university of oregon", "video_id": "video11892", "sen_id": 232555}, {"caption": "a group of men competing in a race around a track", "video_id": "video11892", "sen_id": 232556}, {"caption": "a group of athletes run around a track and field course during big sporting event with many in stands", "video_id": "video11892", "sen_id": 232557}, {"caption": "a group of competitve runners compete in a mens 1500 meter race", "video_id": "video11892", "sen_id": 232558}, {"caption": "some sprinters are running against each other", "video_id": "video11892", "sen_id": 232559}, {"caption": "a group of young riders perform tricks on their motorcycles", "video_id": "video11678", "sen_id": 232560}, {"caption": "a motorcyclist pops a wheelie as fellow bikers zoom by", "video_id": "video11678", "sen_id": 232561}, {"caption": "people on motorcycles pop wheelies while driving down the street", "video_id": "video11678", "sen_id": 232562}, {"caption": "someone is recording a man doing stunts on his motorcycle", "video_id": "video11678", "sen_id": 232563}, {"caption": "there is a man riding a bike with one wheel", "video_id": "video11678", "sen_id": 232564}, {"caption": "a group of people riding motorcycles down a main street of a city", "video_id": "video11678", "sen_id": 232565}, {"caption": "a person rides a motorcycle dangerously down the street", "video_id": "video11678", "sen_id": 232566}, {"caption": "a young man showing some stunts in his bike", "video_id": "video11678", "sen_id": 232567}, {"caption": "the men are doing stunts on motorbikes", "video_id": "video11678", "sen_id": 232568}, {"caption": "a group of motorcyle riders racing down a street in a beach area", "video_id": "video11678", "sen_id": 232569}, {"caption": "a person riding a motorcyle is doing tricks while driving down the highway", "video_id": "video11678", "sen_id": 232570}, {"caption": "motorcycle races drive through traffic and do wheelies", "video_id": "video11678", "sen_id": 232571}, {"caption": "all persons are doing stunts on a motor bikes on the roads", "video_id": "video11678", "sen_id": 232572}, {"caption": "motor cycle driven by a man with high speed", "video_id": "video11678", "sen_id": 232573}, {"caption": "a bike racer is riding a bike very fast and he is showing some amazing by riding in one wheel and lifting the front whell t o top", "video_id": "video11678", "sen_id": 232574}, {"caption": "there is a man riding a bike with back wheel", "video_id": "video11678", "sen_id": 232575}, {"caption": "many motorcyclist are driving at high speeds and performing tricks on the road", "video_id": "video11678", "sen_id": 232576}, {"caption": "a group of motorcycle riders do tricks on a busy street near the ocean", "video_id": "video11678", "sen_id": 232577}, {"caption": "a motorcyclist goes down the road and pops a wheelie", "video_id": "video11678", "sen_id": 232578}, {"caption": "a person is riding their motorcycle on the road", "video_id": "video11678", "sen_id": 232579}, {"caption": "a man dressed in a sombrero walking around a paved area along with pictures of tom hanks flashing on screen", "video_id": "video12427", "sen_id": 232580}, {"caption": "man with a big hat is walking along and falling down", "video_id": "video12427", "sen_id": 232581}, {"caption": "a man wearing a sombrero speaks to the camera while walking", "video_id": "video12427", "sen_id": 232582}, {"caption": "a man is wearing a sombrero while walking and talking about tom hanks", "video_id": "video12427", "sen_id": 232583}, {"caption": "a young man dressed in mexixan attire walks around and then lies down on the ground", "video_id": "video12427", "sen_id": 232584}, {"caption": "a taller man is sharing his funniest moment", "video_id": "video12427", "sen_id": 232585}, {"caption": "there is a hat man walking on the street", "video_id": "video12427", "sen_id": 232586}, {"caption": "a man is talking on tv in a news channel", "video_id": "video12427", "sen_id": 232587}, {"caption": "one funny man walks in road and lye down", "video_id": "video12427", "sen_id": 232588}, {"caption": "a guy in a mexican sombrero walks sideways wearing a black blazer", "video_id": "video12427", "sen_id": 232589}, {"caption": "a person in white t shirt and black coat with red cap speaking something and skit down the road", "video_id": "video12427", "sen_id": 232590}, {"caption": "there is a man with red hat talking from a street", "video_id": "video12427", "sen_id": 232591}, {"caption": "a man is wearing a black jacket and a hat and walking on a street and talking", "video_id": "video12427", "sen_id": 232592}, {"caption": "one man look like beggar and lye down in road", "video_id": "video12427", "sen_id": 232593}, {"caption": "a guy in a sombrero is talking to the camera", "video_id": "video12427", "sen_id": 232594}, {"caption": "a man wearing a mexican style hat and black jacket and jeans is talking about tom hanks in a movie", "video_id": "video12427", "sen_id": 232595}, {"caption": "a man with big hat and black coat talk about someone funny", "video_id": "video12427", "sen_id": 232596}, {"caption": "a man in mexican mask wearing a sambro hat talking about tom hanks", "video_id": "video12427", "sen_id": 232597}, {"caption": "a person with black dress and hat is talking and walking on the road", "video_id": "video12427", "sen_id": 232598}, {"caption": "a man in a sombrero is walking around and talking", "video_id": "video12427", "sen_id": 232599}, {"caption": "a group of kids are at school talking about collecting cups", "video_id": "video12059", "sen_id": 232600}, {"caption": "a bunch of kids in school uniforms talking about cups", "video_id": "video12059", "sen_id": 232601}, {"caption": "kids are talking about cups", "video_id": "video12059", "sen_id": 232602}, {"caption": "a group of school students discuss drinking cups in various forms", "video_id": "video12059", "sen_id": 232603}, {"caption": "two little girls sitting and drinking together", "video_id": "video12059", "sen_id": 232604}, {"caption": "children are holding mugs at a table", "video_id": "video12059", "sen_id": 232605}, {"caption": " two girls and two boys kept mugs and cups and discussing about something", "video_id": "video12059", "sen_id": 232606}, {"caption": "two girls are taking a coffee cup colored wgite", "video_id": "video12059", "sen_id": 232607}, {"caption": "two boys and girls talking about something which can", "video_id": "video12059", "sen_id": 232608}, {"caption": "minority students in a school doing an exercise where each one is having a different kind of a cup", "video_id": "video12059", "sen_id": 232609}, {"caption": "there are some kids drinking something on a table", "video_id": "video12059", "sen_id": 232610}, {"caption": "the students are taking the tea break with their friends", "video_id": "video12059", "sen_id": 232611}, {"caption": "a kid sips water from a white plastic cup", "video_id": "video12059", "sen_id": 232612}, {"caption": "in a class students are having varieties of jugs of various shapes and size", "video_id": "video12059", "sen_id": 232613}, {"caption": "the children were sitting at a table and discussing the contents of the cup", "video_id": "video12059", "sen_id": 232614}, {"caption": "children are sitting at table with collecting vessels like cup mug etc", "video_id": "video12059", "sen_id": 232615}, {"caption": "a man talks about collections of different chipped cups", "video_id": "video12059", "sen_id": 232616}, {"caption": "students were talking and having coffee in a cup", "video_id": "video12059", "sen_id": 232617}, {"caption": "this is a coffeehouse where so many people are waiting for coffee and so many waiters to serve", "video_id": "video12059", "sen_id": 232618}, {"caption": "some kids are sitting at a table and holding cups", "video_id": "video12059", "sen_id": 232619}, {"caption": "several birds are eating food from off the ground", "video_id": "video10530", "sen_id": 232620}, {"caption": "a small yellow and black bird eats food among other birds", "video_id": "video10530", "sen_id": 232621}, {"caption": "birds are shown as they eat off the ground in a field", "video_id": "video10530", "sen_id": 232622}, {"caption": "a bird yellow and black bird eating food off the ground while surrounded by other birds", "video_id": "video10530", "sen_id": 232623}, {"caption": "some birdsand looks like they are talking to each other", "video_id": "video10530", "sen_id": 232624}, {"caption": "a black and yellow bird eats and looks around", "video_id": "video10530", "sen_id": 232625}, {"caption": "a yellow and black bird moves its beak as it eats", "video_id": "video10530", "sen_id": 232626}, {"caption": "some birds eating the grains from the sand in the forest", "video_id": "video10530", "sen_id": 232627}, {"caption": "a bird is eating while people discuss bird watching and bird counts", "video_id": "video10530", "sen_id": 232628}, {"caption": "a bird with yellow on it s face is eating food with other birds around it", "video_id": "video10530", "sen_id": 232629}, {"caption": "a bird is sitting down on the floor outside", "video_id": "video10530", "sen_id": 232630}, {"caption": "there is a sparrow eating food with friends", "video_id": "video10530", "sen_id": 232631}, {"caption": "a closeup of a bird with a yellow eyebrow and dark brown crown", "video_id": "video10530", "sen_id": 232632}, {"caption": "birds are shown who are feeding on some food", "video_id": "video10530", "sen_id": 232633}, {"caption": "a yellow and black bird is standing and looking for seeds outside while watching for predators in a crowd of other birds", "video_id": "video10530", "sen_id": 232634}, {"caption": "a group of birds are sitting on the ground and eating", "video_id": "video10530", "sen_id": 232635}, {"caption": "there is a sparrow eating some food with a friend", "video_id": "video10530", "sen_id": 232636}, {"caption": "a small cute birds were eating something on the garden", "video_id": "video10530", "sen_id": 232637}, {"caption": "lots of sparrow are are being fed with bird food the birds are happily eating it", "video_id": "video10530", "sen_id": 232638}, {"caption": "there is a bird with yellow and black feathers eating food outdoors with other birds", "video_id": "video10530", "sen_id": 232639}, {"caption": "a fluid research system is being unpacked in a dark room", "video_id": "video10669", "sen_id": 232640}, {"caption": "a display showing different types of explanations on fluid research", "video_id": "video10669", "sen_id": 232641}, {"caption": "parts of an artificial satellite are focused on", "video_id": "video10669", "sen_id": 232642}, {"caption": "a wall with research posters and displays covering it", "video_id": "video10669", "sen_id": 232643}, {"caption": "a fluid research object is being shown on video", "video_id": "video10669", "sen_id": 232644}, {"caption": "there is a room with a big sign", "video_id": "video10669", "sen_id": 232645}, {"caption": "a man is playing a video game for satellite", "video_id": "video10669", "sen_id": 232646}, {"caption": "an exploration about the educational program for fluid research unit", "video_id": "video10669", "sen_id": 232647}, {"caption": "different things are being shown in a laboratory", "video_id": "video10669", "sen_id": 232648}, {"caption": "an exhibition on space craft where a fluid research unit is explained", "video_id": "video10669", "sen_id": 232649}, {"caption": "a room with large white machines one is labeled fluid research unit and has two switches on it one for pump one and the other for pump two", "video_id": "video10669", "sen_id": 232650}, {"caption": "someone is observing a pump unit and looks up seeing a alien", "video_id": "video10669", "sen_id": 232651}, {"caption": "some one enters in to the fluid research unit and tooks all over it", "video_id": "video10669", "sen_id": 232652}, {"caption": "a graphic representation of fluid research being conducted from a space station", "video_id": "video10669", "sen_id": 232653}, {"caption": "a video of gameplay of an odd game that looks like it s taking place in outer space", "video_id": "video10669", "sen_id": 232654}, {"caption": "white machines called fluid research units with switches for pump one and pump two", "video_id": "video10669", "sen_id": 232655}, {"caption": "a space capsule is explored in the video game kerbal space program", "video_id": "video10669", "sen_id": 232656}, {"caption": "research of fluid the instrument is different", "video_id": "video10669", "sen_id": 232657}, {"caption": "gameplay to kerbal space program where they are inside a rocket", "video_id": "video10669", "sen_id": 232658}, {"caption": "some various things are being shown on camera", "video_id": "video10669", "sen_id": 232659}, {"caption": "a man in a green shirt eating some food and really enjoying it", "video_id": "video11854", "sen_id": 232660}, {"caption": "a man in a green shirt eats a plate of rice", "video_id": "video11854", "sen_id": 232661}, {"caption": "a man is tasting a rice dish and laughing while he is eating it", "video_id": "video11854", "sen_id": 232662}, {"caption": "a man enjoys eating the rice dish he cooked in a very satisfactory manner", "video_id": "video11854", "sen_id": 232663}, {"caption": "a guy wearing a green shirt is eating an exotic food that is super crunchy", "video_id": "video11854", "sen_id": 232664}, {"caption": "a man in green shirt is eating something and enjoys the taste", "video_id": "video11854", "sen_id": 232665}, {"caption": "a mannwearing a green shirt is sitting down and enjoying a meal", "video_id": "video11854", "sen_id": 232666}, {"caption": "a man in a green shirt sits at a red table and eats thai food", "video_id": "video11854", "sen_id": 232667}, {"caption": "a man wearing green t-shirt is eating foods at a resturant", "video_id": "video11854", "sen_id": 232668}, {"caption": "the man in front of a table and eating some thing", "video_id": "video11854", "sen_id": 232669}, {"caption": "mark wiens in a green shirt sitting at a table eating rice and enjoying it", "video_id": "video11854", "sen_id": 232670}, {"caption": "a man chews loudly while trying a dish", "video_id": "video11854", "sen_id": 232671}, {"caption": "a person enjoying a dish he has been present at his table approves of the way it has been cooked", "video_id": "video11854", "sen_id": 232672}, {"caption": "a man eats from a plate of food and comments on its deliciousness", "video_id": "video11854", "sen_id": 232673}, {"caption": "a guy in a green shirt is sitting and eating", "video_id": "video11854", "sen_id": 232674}, {"caption": "this person is tasting food and is reviewing it with many facial expressions", "video_id": "video11854", "sen_id": 232675}, {"caption": "men in green t-shirt eating food and kept plate on table and holding fork and spoon on his hand", "video_id": "video11854", "sen_id": 232676}, {"caption": "in a kitchen a man wearing a green shirt is eating food from a bowl", "video_id": "video11854", "sen_id": 232677}, {"caption": "a man eating a meal of food sitting a table", "video_id": "video11854", "sen_id": 232678}, {"caption": "a man with a green shirt is eating some food", "video_id": "video11854", "sen_id": 232679}, {"caption": "a man on stage talking then sitting covered in red liquid", "video_id": "video12481", "sen_id": 232680}, {"caption": "a man is sitting in a jumpsuit that is covered in blood", "video_id": "video12481", "sen_id": 232681}, {"caption": "a man in a smock covered in red paint sits on the stairs", "video_id": "video12481", "sen_id": 232682}, {"caption": "a man describes making a music video while showing an image of the opening frame", "video_id": "video12481", "sen_id": 232683}, {"caption": "a man sitting with goggles on his head in a shirt that has paint all over it", "video_id": "video12481", "sen_id": 232684}, {"caption": "a white shirt man is standing on a stage and a man is sit wearing a red stained shirt", "video_id": "video12481", "sen_id": 232685}, {"caption": "a man speaks on a stage and refers to an image of another man with red paint on him", "video_id": "video12481", "sen_id": 232686}, {"caption": "a person having a red color on his t shirt on a room", "video_id": "video12481", "sen_id": 232687}, {"caption": "a man talking white colored dress and pouring red color paint on him", "video_id": "video12481", "sen_id": 232688}, {"caption": "one old man talks about a man in stage", "video_id": "video12481", "sen_id": 232689}, {"caption": "there is a man with red color dress sitting in the steps", "video_id": "video12481", "sen_id": 232690}, {"caption": "a man is talking about a machine and an image of a man on a screen", "video_id": "video12481", "sen_id": 232691}, {"caption": "a man with red painted or blood stained shirt watching into the camera and a male voice description in background", "video_id": "video12481", "sen_id": 232692}, {"caption": "a man is speaking and another one hearing while sitting cool", "video_id": "video12481", "sen_id": 232693}, {"caption": "bald guy in white shirt explaining to the audience using photo", "video_id": "video12481", "sen_id": 232694}, {"caption": "a man is talking while a picture of a man covered in blood is shown", "video_id": "video12481", "sen_id": 232695}, {"caption": "an old man standing and speaking on stage and other sitting with blood on cloths still picture displaying on screen", "video_id": "video12481", "sen_id": 232696}, {"caption": "a men in white tshirt is telling about something", "video_id": "video12481", "sen_id": 232697}, {"caption": "a bald man waering white polo covered with what seems to be blood", "video_id": "video12481", "sen_id": 232698}, {"caption": "the man in stage and other one sitting full of blood at his dress", "video_id": "video12481", "sen_id": 232699}, {"caption": "multiple people on a movie set are in a court house setting discussing what their lines and actions are", "video_id": "video12326", "sen_id": 232700}, {"caption": "the film production crew are recording a scene in a court room setting", "video_id": "video12326", "sen_id": 232701}, {"caption": "people are sitting in a courtroom and a camera crew is present one of the men in the room is talking to a person behind him and beside him", "video_id": "video12326", "sen_id": 232702}, {"caption": "a crew films a fake seen in a courtroom", "video_id": "video12326", "sen_id": 232703}, {"caption": "people sitting down at a court with a camera crew", "video_id": "video12326", "sen_id": 232704}, {"caption": "the director of a movie is instructing his actors on how to behave for the upcoming scene", "video_id": "video12326", "sen_id": 232705}, {"caption": "there are many people taking shooting for a movie", "video_id": "video12326", "sen_id": 232706}, {"caption": "businessmen meet in a fancy room and discuss business while many cameras and news crews are around", "video_id": "video12326", "sen_id": 232707}, {"caption": "a film shooting is going on a director giving instruction", "video_id": "video12326", "sen_id": 232708}, {"caption": "many people have assembled for a meeting in a hall", "video_id": "video12326", "sen_id": 232709}, {"caption": "there is a black suit man acting in a film", "video_id": "video12326", "sen_id": 232710}, {"caption": "a shooting location where the characters sit at table", "video_id": "video12326", "sen_id": 232711}, {"caption": "few man talking in the shoot in room side to the", "video_id": "video12326", "sen_id": 232712}, {"caption": "a view of the setup from the scene in a movie of a couple lawyers in a courtroom", "video_id": "video12326", "sen_id": 232713}, {"caption": "a film crew sets up for the next shot", "video_id": "video12326", "sen_id": 232714}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video12326", "sen_id": 232715}, {"caption": "a group of people are sitting infront of camera", "video_id": "video12326", "sen_id": 232716}, {"caption": "in a shooting many of the peoples in the stage", "video_id": "video12326", "sen_id": 232717}, {"caption": "a video clip about a meeting and its shooting in a big hall", "video_id": "video12326", "sen_id": 232718}, {"caption": "a bunch of people are doing things in a room", "video_id": "video12326", "sen_id": 232719}, {"caption": "a man in prison while other men are trying to talk with him", "video_id": "video12373", "sen_id": 232720}, {"caption": "a group of solider stare as one solider talks to a man sitting in a cell in a dungeon", "video_id": "video12373", "sen_id": 232721}, {"caption": "the leader of a group of men wearing black uniforms and black caps meet with a man confined on the other side of metal bars to make an offer", "video_id": "video12373", "sen_id": 232722}, {"caption": "a movie trailer for an action packed movie", "video_id": "video12373", "sen_id": 232723}, {"caption": "a group of men pointing their guns at another man", "video_id": "video12373", "sen_id": 232724}, {"caption": "a bunch of nazi hunters approach a man in prison", "video_id": "video12373", "sen_id": 232725}, {"caption": "a group of men talking with one man that is behind bars", "video_id": "video12373", "sen_id": 232726}, {"caption": "inside a prison group of police men talking to a prisoner", "video_id": "video12373", "sen_id": 232727}, {"caption": "the man is behind the balck iron bars", "video_id": "video12373", "sen_id": 232728}, {"caption": "a scene of a film is playing on", "video_id": "video12373", "sen_id": 232729}, {"caption": "a man in cage is watching other who are planning big about some thing", "video_id": "video12373", "sen_id": 232730}, {"caption": "a couple of people in a prison are talking", "video_id": "video12373", "sen_id": 232731}, {"caption": "there is someone waiting with guns outside", "video_id": "video12373", "sen_id": 232732}, {"caption": "we can see a man with a group of people and standing outside the prison and a guy is telling some thing to the guy who is sitting alone inside the prison", "video_id": "video12373", "sen_id": 232733}, {"caption": "a group of soldiers talk to another soldier who is setting in a jail cell", "video_id": "video12373", "sen_id": 232734}, {"caption": "some people in prison are talking about something", "video_id": "video12373", "sen_id": 232735}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video12373", "sen_id": 232736}, {"caption": "universal the weintein company one man in jail", "video_id": "video12373", "sen_id": 232737}, {"caption": "a man who is in jail is talking to a bunch of prison guards", "video_id": "video12373", "sen_id": 232738}, {"caption": "guy in jail cell staring at officer to escape", "video_id": "video12373", "sen_id": 232739}, {"caption": "beyonce is singing and dancing in front of a man", "video_id": "video10187", "sen_id": 232740}, {"caption": "the a female in lingerie is dancing", "video_id": "video10187", "sen_id": 232741}, {"caption": "a woman wearing lingerie dances and sings in a small room", "video_id": "video10187", "sen_id": 232742}, {"caption": "a woman with shoulder-length blonde hair dances by a wall showing her gartered stockings under her clingy dress while a man watches her", "video_id": "video10187", "sen_id": 232743}, {"caption": "a blonde haired woman in a skimpy dress is dancing and sing for a man", "video_id": "video10187", "sen_id": 232744}, {"caption": "there is a hot singing and dancing in side the room", "video_id": "video10187", "sen_id": 232745}, {"caption": "the woman wearing a black outfit is singing and dancing to a pop song", "video_id": "video10187", "sen_id": 232746}, {"caption": "a girl is dancing for a song", "video_id": "video10187", "sen_id": 232747}, {"caption": "a woman dances around for a music video", "video_id": "video10187", "sen_id": 232748}, {"caption": "a woman dances in front of a guy with beautiful dress", "video_id": "video10187", "sen_id": 232749}, {"caption": "western video song with a girl dancing", "video_id": "video10187", "sen_id": 232750}, {"caption": "beyonce is singing and dancing in a music video", "video_id": "video10187", "sen_id": 232751}, {"caption": "a woman is dancing for a song and a man is watching it", "video_id": "video10187", "sen_id": 232752}, {"caption": "beyonce dances seductively in front of a man in this black and white music video", "video_id": "video10187", "sen_id": 232753}, {"caption": "a man is standing and a woman is dancing", "video_id": "video10187", "sen_id": 232754}, {"caption": "a women is dancing in black dress and a man is looking her", "video_id": "video10187", "sen_id": 232755}, {"caption": "the woman dancces as the man watches from a distance", "video_id": "video10187", "sen_id": 232756}, {"caption": "a heavy set african woman dances and sings in a very skimpy outfit", "video_id": "video10187", "sen_id": 232757}, {"caption": "a blonde woman ina dress dances seductivley on the table", "video_id": "video10187", "sen_id": 232758}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video10187", "sen_id": 232759}, {"caption": "a man narrates news footage of possible criminal activity", "video_id": "video12495", "sen_id": 232760}, {"caption": "a narrator who is setting up how a rave is being organized", "video_id": "video12495", "sen_id": 232761}, {"caption": "a man is narrarating about some strange activities at an underground culture location", "video_id": "video12495", "sen_id": 232762}, {"caption": "a red truck is being driving along side of a building with a covered walkway", "video_id": "video12495", "sen_id": 232763}, {"caption": "some men building a portable warehouse in a field", "video_id": "video12495", "sen_id": 232764}, {"caption": "several workmen are building a portable warehouse with a white tented roof and metal framework", "video_id": "video12495", "sen_id": 232765}, {"caption": "there is red truck driving to a tented area", "video_id": "video12495", "sen_id": 232766}, {"caption": "there is a truck moving on the road with goods", "video_id": "video12495", "sen_id": 232767}, {"caption": "panoramic images of a building and large trucks are displayed while a man speaka", "video_id": "video12495", "sen_id": 232768}, {"caption": "a red colour truck comes into the ground where the big tents are made", "video_id": "video12495", "sen_id": 232769}, {"caption": "a truck drives down a road then men put up a huge tent", "video_id": "video12495", "sen_id": 232770}, {"caption": "people are setting up a large tent in a field", "video_id": "video12495", "sen_id": 232771}, {"caption": "the big red truck drives near the building with the white roof top", "video_id": "video12495", "sen_id": 232772}, {"caption": "a big truck going on the road and a explaining about it", "video_id": "video12495", "sen_id": 232773}, {"caption": "a red truck drives through a field behind white tents while a male narrator talks about it", "video_id": "video12495", "sen_id": 232774}, {"caption": "a man reporting on a suspect underground culture with a portable warehouse", "video_id": "video12495", "sen_id": 232775}, {"caption": "a man is commentating on how profit is the motive of some now changes to land", "video_id": "video12495", "sen_id": 232776}, {"caption": "red trucks are seen in the distance parking below white portable canopies", "video_id": "video12495", "sen_id": 232777}, {"caption": "a red truck driving trough the grass in a farm", "video_id": "video12495", "sen_id": 232778}, {"caption": "a red truck is driving down a road", "video_id": "video12495", "sen_id": 232779}, {"caption": "crusty cooked chicken wings sit over a gridded rack with aluminum foil underneath catching the drippings in a baking sheet", "video_id": "video11491", "sen_id": 232780}, {"caption": "cooked and seasoned hot chicken wings on a cooling rack", "video_id": "video11491", "sen_id": 232781}, {"caption": "a receipt for how to create fried chicken wings", "video_id": "video11491", "sen_id": 232782}, {"caption": "a batchof cooked chicken resting on a drain rack", "video_id": "video11491", "sen_id": 232783}, {"caption": "in the kitchen some fried chicken on the grill", "video_id": "video11491", "sen_id": 232784}, {"caption": "a man narrates an impending food cooking tutorial with wings using an alternative approach", "video_id": "video11491", "sen_id": 232785}, {"caption": "one man talks about the fried tasty food", "video_id": "video11491", "sen_id": 232786}, {"caption": "chickens are take as filletss and these pieces grilled in oil", "video_id": "video11491", "sen_id": 232787}, {"caption": "a man describes the advantages of doing oven fried chicken wings", "video_id": "video11491", "sen_id": 232788}, {"caption": "a close up video of buffalo wings on a tray", "video_id": "video11491", "sen_id": 232789}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11491", "sen_id": 232790}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11491", "sen_id": 232791}, {"caption": "guide to chicken wings in the oven with a special ingredient", "video_id": "video11491", "sen_id": 232792}, {"caption": "a chef discusses an oven fried chicken wing recipe", "video_id": "video11491", "sen_id": 232793}, {"caption": "a grill sits with delicious empanadas in it", "video_id": "video11491", "sen_id": 232794}, {"caption": "a person is using a grill to cook up some food", "video_id": "video11491", "sen_id": 232795}, {"caption": "chicken pieces are kept in a grill and boiled", "video_id": "video11491", "sen_id": 232796}, {"caption": "this food is veg or non veg anyway see the food think to eat", "video_id": "video11491", "sen_id": 232797}, {"caption": "a chef talks about a chicken wing recipe that he prepared in his oven", "video_id": "video11491", "sen_id": 232798}, {"caption": "the oven fried chicken wings are placed on a cooling rack", "video_id": "video11491", "sen_id": 232799}, {"caption": "a group of people are talking about dolphins and explaining captivity", "video_id": "video10273", "sen_id": 232800}, {"caption": "actors discuss how their movie shows caring for dolphins by releasing them into the wild", "video_id": "video10273", "sen_id": 232801}, {"caption": "several people talking about caring for the environment", "video_id": "video10273", "sen_id": 232802}, {"caption": "actors such as morgan freeman as well as aquarium scientists are explaining how important it is not to keep dolphins or aquatic animals in captivity for a prolonged amount of time", "video_id": "video10273", "sen_id": 232803}, {"caption": "a person is playing with a dolphin followed by a man speaking in front of a computer two men talking morgan freeman talking three men standing and many people assisting a dolphin", "video_id": "video10273", "sen_id": 232804}, {"caption": "a couple of young people in blue and black swimming suite are playing with a dolphin", "video_id": "video10273", "sen_id": 232805}, {"caption": "a bald man is wearing glasses and sitting in a dark room in front of three screens on a desk and people are in shallow seawater with a black dolphin being guided toward the ocean", "video_id": "video10273", "sen_id": 232806}, {"caption": "different people talking about the movie winter and how they treat animals only to release them back into the wild not keep them in captivity", "video_id": "video10273", "sen_id": 232807}, {"caption": "two girls holding and swimming with fish in the water and people watching them", "video_id": "video10273", "sen_id": 232808}, {"caption": "actor speaking about a movie there playing in", "video_id": "video10273", "sen_id": 232809}, {"caption": "there is a whale swimming in the deep sea", "video_id": "video10273", "sen_id": 232810}, {"caption": "group of peoples were playing with the big in the water", "video_id": "video10273", "sen_id": 232811}, {"caption": "people trying to save and take care of marine life they save them and nurse them back and help them", "video_id": "video10273", "sen_id": 232812}, {"caption": "women feeding and helping an fish in the sea and talking", "video_id": "video10273", "sen_id": 232813}, {"caption": "a man is touching fish in water and a women releases a fish into ocean", "video_id": "video10273", "sen_id": 232814}, {"caption": "a man catching a wheal from the sea water", "video_id": "video10273", "sen_id": 232815}, {"caption": "a man in a purple shirt is talking about releasing aquatic animals", "video_id": "video10273", "sen_id": 232816}, {"caption": "a man telling about the fish in the water and telling the news", "video_id": "video10273", "sen_id": 232817}, {"caption": "someone is feeding something to dolphin and placing it in water", "video_id": "video10273", "sen_id": 232818}, {"caption": "some people are watching a thing in the water", "video_id": "video10273", "sen_id": 232819}, {"caption": "a red race car is racing on the car outside", "video_id": "video10786", "sen_id": 232820}, {"caption": "a red formula one race car tries to catch up to three other cars while another car comes close to passing it on the track", "video_id": "video10786", "sen_id": 232821}, {"caption": "some video game racing footage racing footage from a video game", "video_id": "video10786", "sen_id": 232822}, {"caption": "a first person view from inside of a car in a racing video game", "video_id": "video10786", "sen_id": 232823}, {"caption": "a formula one car races down a course of a video game", "video_id": "video10786", "sen_id": 232824}, {"caption": "a red race car is competing against other race cars in an event", "video_id": "video10786", "sen_id": 232825}, {"caption": "there is a red car riding on the track", "video_id": "video10786", "sen_id": 232826}, {"caption": "a cockpit view of a grand prix style video game race", "video_id": "video10786", "sen_id": 232827}, {"caption": "a red race car rides on the track racing against others", "video_id": "video10786", "sen_id": 232828}, {"caption": "a red color car moving on road fast beside racing car moving displaying on screen", "video_id": "video10786", "sen_id": 232829}, {"caption": "there are many participants in the car rally competition", "video_id": "video10786", "sen_id": 232830}, {"caption": "a video game of a sports car is being raced on a track", "video_id": "video10786", "sen_id": 232831}, {"caption": "a cartoon that is showing a small red race car racing in a compation", "video_id": "video10786", "sen_id": 232832}, {"caption": "the man is driving red formula too fast", "video_id": "video10786", "sen_id": 232833}, {"caption": "a sports car is moving at a hectic speed in the middle of the tarred road", "video_id": "video10786", "sen_id": 232834}, {"caption": "there is a red car moving on the track", "video_id": "video10786", "sen_id": 232835}, {"caption": "the car driver in the red car is driving fast in the car race", "video_id": "video10786", "sen_id": 232836}, {"caption": "a race car is running on the road in the video game", "video_id": "video10786", "sen_id": 232837}, {"caption": "video game of racing formulas in first person view", "video_id": "video10786", "sen_id": 232838}, {"caption": "a person playing a race car video game driving a red car", "video_id": "video10786", "sen_id": 232839}, {"caption": "two young women film themselves in a small studio they have set up in their home", "video_id": "video12853", "sen_id": 232840}, {"caption": "two women look at themselves in a computer monitor while they look at the stuff on the table", "video_id": "video12853", "sen_id": 232841}, {"caption": "two women are watching themselves record themselves on a computer monitor", "video_id": "video12853", "sen_id": 232842}, {"caption": "a person face timing a couple of girls on a laptop", "video_id": "video12853", "sen_id": 232843}, {"caption": "girl laughs while her computer is being show of her editing some video she just filmed", "video_id": "video12853", "sen_id": 232844}, {"caption": "a person sits in front of a laptop computer behind a studio light", "video_id": "video12853", "sen_id": 232845}, {"caption": "a girl talking to her friends on the laptop", "video_id": "video12853", "sen_id": 232846}, {"caption": "a person is viewing tv news on this personal laptop", "video_id": "video12853", "sen_id": 232847}, {"caption": "two women are setting up a home studio to film a podcast", "video_id": "video12853", "sen_id": 232848}, {"caption": "a person watching something in his laptop in home", "video_id": "video12853", "sen_id": 232849}, {"caption": "a light shaped like a ring stands next to a laptop", "video_id": "video12853", "sen_id": 232850}, {"caption": "someone in a house is watching a video through black colour laptop", "video_id": "video12853", "sen_id": 232851}, {"caption": "there is a woman talking with web cam", "video_id": "video12853", "sen_id": 232852}, {"caption": "a lady operating laptop another items are displayed", "video_id": "video12853", "sen_id": 232853}, {"caption": "a girls are talking in the video chat", "video_id": "video12853", "sen_id": 232854}, {"caption": "two people are videoing their selves on a computer", "video_id": "video12853", "sen_id": 232855}, {"caption": "sexy brunette talking to the webcam on her laptop", "video_id": "video12853", "sen_id": 232856}, {"caption": "girls watching a video of themselves on a computer", "video_id": "video12853", "sen_id": 232857}, {"caption": "a lady was talking in the skype or it may be a video", "video_id": "video12853", "sen_id": 232858}, {"caption": "a camera is showing everything in a room", "video_id": "video12853", "sen_id": 232859}, {"caption": "a green parrot is starring into the camera", "video_id": "video10469", "sen_id": 232860}, {"caption": "a green parakeet walking around on top of his cage while talking to his owner", "video_id": "video10469", "sen_id": 232861}, {"caption": "a quality green parrot is walking on a black rail near a brick building in front of a window talking and whistling", "video_id": "video10469", "sen_id": 232862}, {"caption": "a green tropical parrot is parroting back playfully with a woman", "video_id": "video10469", "sen_id": 232863}, {"caption": "a green and yellow bird calls her owner a pretty bird", "video_id": "video10469", "sen_id": 232864}, {"caption": "a green parrot sitting on the rod walking here and there", "video_id": "video10469", "sen_id": 232865}, {"caption": "a woman repeatedly says pretty bird to a green parrot standing atop a black cage in the hopes that the parrot will repeat the phrase", "video_id": "video10469", "sen_id": 232866}, {"caption": "a green parrot with yellow around it s eyes and blue on it s forehead walks around the outside rim of a cage", "video_id": "video10469", "sen_id": 232867}, {"caption": "a cute green parrot talking to its caretaker in home", "video_id": "video10469", "sen_id": 232868}, {"caption": "a green parrot saying pretty bird and whistling to the lady", "video_id": "video10469", "sen_id": 232869}, {"caption": "there is a parrot talking to a woman", "video_id": "video10469", "sen_id": 232870}, {"caption": "a green bird with yellow and blue highlights keeps repeating the phrase pretty bird as a woman encourages it", "video_id": "video10469", "sen_id": 232871}, {"caption": "a girl talking to her parrot and it repeating things", "video_id": "video10469", "sen_id": 232872}, {"caption": "green and yellow parrot saying the words pretty bird", "video_id": "video10469", "sen_id": 232873}, {"caption": "a parrot is searching for food", "video_id": "video10469", "sen_id": 232874}, {"caption": "there is a parrot talking with a woman", "video_id": "video10469", "sen_id": 232875}, {"caption": "a green parrot talking to his owner and repeating the phrase pretty bird while whistling", "video_id": "video10469", "sen_id": 232876}, {"caption": "it was an okay video with a pet owner and her parrot talking", "video_id": "video10469", "sen_id": 232877}, {"caption": "a talking parrot is talking with its master", "video_id": "video10469", "sen_id": 232878}, {"caption": "a parrot is talking the camera with various sayings", "video_id": "video10469", "sen_id": 232879}, {"caption": "a man is discussing the interests he has in seeing during his tour of thailand", "video_id": "video12668", "sen_id": 232880}, {"caption": "small scooters move up and down a narrow street in a large city", "video_id": "video12668", "sen_id": 232881}, {"caption": "people driving motor bikes in the streets of thailand", "video_id": "video12668", "sen_id": 232882}, {"caption": "vehicles on a street a door and a point on a map", "video_id": "video12668", "sen_id": 232883}, {"caption": "a travel reporter in thailand shows street scenes of food vendors and street traffic while discussing how great the food is there", "video_id": "video12668", "sen_id": 232884}, {"caption": "a video playing of thailand with a man talking about his journey there", "video_id": "video12668", "sen_id": 232885}, {"caption": "scenes from the streets of thailand are shows with people riding scooters and walking in the city", "video_id": "video12668", "sen_id": 232886}, {"caption": "in a small street in thailand people are driving and there are old houses", "video_id": "video12668", "sen_id": 232887}, {"caption": "a man narrates his journey in thailand for its cuisine", "video_id": "video12668", "sen_id": 232888}, {"caption": "in a travel tv they describes about thailand the old historic building and street of thailand is shown in a map where thailand is located is also described", "video_id": "video12668", "sen_id": 232889}, {"caption": "a man talking about his travels in thailand", "video_id": "video12668", "sen_id": 232890}, {"caption": "people on motorbikes are shown driving through streets in thailand surrounded by rustic and antique houses", "video_id": "video12668", "sen_id": 232891}, {"caption": "a women in black dress walking on street and looking here and there", "video_id": "video12668", "sen_id": 232892}, {"caption": "shows men on scooters riding and cars in cambonia and said was great food on his journey", "video_id": "video12668", "sen_id": 232893}, {"caption": "a man talking of something about the thai kitchen", "video_id": "video12668", "sen_id": 232894}, {"caption": "a map of thailand is being shown with a few buildings", "video_id": "video12668", "sen_id": 232895}, {"caption": "there is someone traveling in to the street", "video_id": "video12668", "sen_id": 232896}, {"caption": "a run down neighborhood though people have scooters", "video_id": "video12668", "sen_id": 232897}, {"caption": "peoples are walking and riding on the roads of thailand", "video_id": "video12668", "sen_id": 232898}, {"caption": "a bunch of asian men riding on motorcycles in the middle of the street", "video_id": "video12668", "sen_id": 232899}, {"caption": "an amazon representative explaining how the company will come back from loss", "video_id": "video10892", "sen_id": 232900}, {"caption": "a market analyst talks about amazon's stock price drop during a segment on cnbc", "video_id": "video10892", "sen_id": 232901}, {"caption": "a man in a suit on cnbc discusses specific trends in the stock market", "video_id": "video10892", "sen_id": 232902}, {"caption": "a man with a black suit talking about stocks", "video_id": "video10892", "sen_id": 232903}, {"caption": "a balding male analyst gives commentary to an off-screen male host from inside the new york stock exchange", "video_id": "video10892", "sen_id": 232904}, {"caption": "several men one balding wearing black suits and colorful ties talk about stocks on the stock exchange floor", "video_id": "video10892", "sen_id": 232905}, {"caption": "a balding man in a suit talks to an unseen man about what he will do about his investments in the future", "video_id": "video10892", "sen_id": 232906}, {"caption": "a busy stock exchange where the status is being evaluated", "video_id": "video10892", "sen_id": 232907}, {"caption": "a stock market with a lot of technology blue lights and an eldery man dressed in a taupe suit and purple tie speaks to other person", "video_id": "video10892", "sen_id": 232908}, {"caption": "a old man in blazer speaks about the stocks going down for the day", "video_id": "video10892", "sen_id": 232909}, {"caption": "jim cramer explains what s going on with amazon stock", "video_id": "video10892", "sen_id": 232910}, {"caption": "all persons are talking each other on the news channel", "video_id": "video10892", "sen_id": 232911}, {"caption": "some people are telling news on the tv", "video_id": "video10892", "sen_id": 232912}, {"caption": "a man is explaining how amazons business is failing", "video_id": "video10892", "sen_id": 232913}, {"caption": "markets now on cnbc talks about stocks being open for trade", "video_id": "video10892", "sen_id": 232914}, {"caption": "three men in suits sitting and talking with monitors and people in background", "video_id": "video10892", "sen_id": 232915}, {"caption": "there is a black suit man talking in a tv show", "video_id": "video10892", "sen_id": 232916}, {"caption": "in the online share trading shop the men telling the market fluctuation they are telecasting the cnbc channel", "video_id": "video10892", "sen_id": 232917}, {"caption": "a stock market analyst talks about the future of a major company", "video_id": "video10892", "sen_id": 232918}, {"caption": "a bald man in a suit and tie on cnbc is reporting on stocks and trading", "video_id": "video10892", "sen_id": 232919}, {"caption": "a sketch of tarzan from the 1989 version", "video_id": "video11327", "sen_id": 232920}, {"caption": "a man with shaggy hair walks in an illustration and in a cartoon", "video_id": "video11327", "sen_id": 232921}, {"caption": "a man in the jungle is with a gorilla", "video_id": "video11327", "sen_id": 232922}, {"caption": "a man discusses the basis for the disney movie tarzan", "video_id": "video11327", "sen_id": 232923}, {"caption": "a man named tarzan is seen in a sketch and then animated alongside a gorilla", "video_id": "video11327", "sen_id": 232924}, {"caption": "a black and white hand drawn poster and a colored video clip of the character tarzan and his friends", "video_id": "video11327", "sen_id": 232925}, {"caption": "there is a sketch of the character tarzan", "video_id": "video11327", "sen_id": 232926}, {"caption": "a half naked man holds a monkey's hand in the middle of a forest", "video_id": "video11327", "sen_id": 232927}, {"caption": "a black and white sketch of tarzan in a loincloth", "video_id": "video11327", "sen_id": 232928}, {"caption": "a person describes an animated movie based in the jungle", "video_id": "video11327", "sen_id": 232929}, {"caption": "there is a man with long hair playing with some animals", "video_id": "video11327", "sen_id": 232930}, {"caption": "a man talks about the animated movie tarzan", "video_id": "video11327", "sen_id": 232931}, {"caption": "some one showing the art work on some item", "video_id": "video11327", "sen_id": 232932}, {"caption": "a sketch of a popular film cartoon character his history being narrated before he comes to life and is led by a gorilla", "video_id": "video11327", "sen_id": 232933}, {"caption": "sketches of tarzan are shown as a narrator describes the film s creation", "video_id": "video11327", "sen_id": 232934}, {"caption": "a man is talking about the movie tarzan", "video_id": "video11327", "sen_id": 232935}, {"caption": "a man is talking about the 1999 disney movie tarzan", "video_id": "video11327", "sen_id": 232936}, {"caption": "an animated tarzan character flying in the cartoon show", "video_id": "video11327", "sen_id": 232937}, {"caption": "a man showing a sketch of tarzan and describing who he is", "video_id": "video11327", "sen_id": 232938}, {"caption": "behind the scenes with the movie tarzan from disney", "video_id": "video11327", "sen_id": 232939}, {"caption": "the beautiful interior design of a recreational vehicle", "video_id": "video12677", "sen_id": 232940}, {"caption": "the luxurious inside of a recreational vehicle with a leather sofa and stove", "video_id": "video12677", "sen_id": 232941}, {"caption": "a small travel trailer has a series of home like features inside it", "video_id": "video12677", "sen_id": 232942}, {"caption": "a bus is shown with a high end kitchen in it", "video_id": "video12677", "sen_id": 232943}, {"caption": "sleek cabinetry and drawers are built around a compact sink two-paneled door storage racks folded down tables a magazine rack recessed lighting and upholstered seating", "video_id": "video12677", "sen_id": 232944}, {"caption": "the inside rooms and ammenities of some type of recreational vehicle", "video_id": "video12677", "sen_id": 232945}, {"caption": "the inside of a travel trailer features a series of large white cabinets", "video_id": "video12677", "sen_id": 232946}, {"caption": "multiple image slideshow of the inside of a recreational vehicle", "video_id": "video12677", "sen_id": 232947}, {"caption": "some snapshots of a clean kitchen with music being played", "video_id": "video12677", "sen_id": 232948}, {"caption": "the inside of an rv truck unit is shown the inside of the truck is white and seems to be very modern and luxurious", "video_id": "video12677", "sen_id": 232949}, {"caption": "a home is looking very gorgeous and very neat looking of the environment", "video_id": "video12677", "sen_id": 232950}, {"caption": "several images of the inside of large modern recreational vehicles", "video_id": "video12677", "sen_id": 232951}, {"caption": "a look into the custome interior of a vand", "video_id": "video12677", "sen_id": 232952}, {"caption": "panning through different rooms in a modern home", "video_id": "video12677", "sen_id": 232953}, {"caption": "a video of an house and the designs of furniture", "video_id": "video12677", "sen_id": 232954}, {"caption": "kitchen interior of a custom made home trailer is displayed", "video_id": "video12677", "sen_id": 232955}, {"caption": "a person shows off their badass rv inside and out", "video_id": "video12677", "sen_id": 232956}, {"caption": "interiors of an office is shown alongwith music", "video_id": "video12677", "sen_id": 232957}, {"caption": "pictures of interior of rv with beige couch and walls then picture of kitchen with white cabinets", "video_id": "video12677", "sen_id": 232958}, {"caption": "the inside of a fancy mobile home is being displayed", "video_id": "video12677", "sen_id": 232959}, {"caption": "a man wants you to check out his video blogs with the link provided", "video_id": "video11661", "sen_id": 232960}, {"caption": "a man wants you to check out his video blogs with the link provided", "video_id": "video11661", "sen_id": 232961}, {"caption": "end of a vlog from a red headed dude", "video_id": "video11661", "sen_id": 232962}, {"caption": "a man who reviews movies talks about where you can read the reviews he does", "video_id": "video11661", "sen_id": 232963}, {"caption": "man is shown saying bye and then what appears to be an outro is played", "video_id": "video11661", "sen_id": 232964}, {"caption": "the words rick the brick productions presents are shown while music plays", "video_id": "video11661", "sen_id": 232965}, {"caption": "a commercial to check out bensberg films vlogs", "video_id": "video11661", "sen_id": 232966}, {"caption": "an advertisement for a production company to checkout", "video_id": "video11661", "sen_id": 232967}, {"caption": "a man with facial hair and wearing a tank top signs off gold credits show up on the screen with white text a social-media bluebird is in one corner and a rectangular invitation button is on the opposite side", "video_id": "video11661", "sen_id": 232968}, {"caption": "a picture of rick productions presents with a link to their vlogs", "video_id": "video11661", "sen_id": 232969}, {"caption": "movie scene from a english movie starting it", "video_id": "video11661", "sen_id": 232970}, {"caption": "a trailer for the television program in the television show", "video_id": "video11661", "sen_id": 232971}, {"caption": "bearded guy in yellow stripe talking to the camera", "video_id": "video11661", "sen_id": 232972}, {"caption": "the title introduction of movie rick the birck", "video_id": "video11661", "sen_id": 232973}, {"caption": "the check out my vlogs video the rich the brick lick in description box", "video_id": "video11661", "sen_id": 232974}, {"caption": "a logo is being shown on a tv screen", "video_id": "video11661", "sen_id": 232975}, {"caption": "presentation of rick the brick production present by bensberg flims", "video_id": "video11661", "sen_id": 232976}, {"caption": "check out my vlogs bens berg films link in description box", "video_id": "video11661", "sen_id": 232977}, {"caption": "a guy who dont have the hair in the head just laughs and a production logo films is displayed", "video_id": "video11661", "sen_id": 232978}, {"caption": "some text on a screen is introducing a video", "video_id": "video11661", "sen_id": 232979}, {"caption": "a very intense game of men's ping pong", "video_id": "video12359", "sen_id": 232980}, {"caption": "a ping pong match of some pretty epic plays", "video_id": "video12359", "sen_id": 232981}, {"caption": "several scenes of men playing single's ping pong", "video_id": "video12359", "sen_id": 232982}, {"caption": "an extreme game of ping pong between two guys", "video_id": "video12359", "sen_id": 232983}, {"caption": "a series of video showing a ping pong match with the man in blue winning points", "video_id": "video12359", "sen_id": 232984}, {"caption": "two men participate in table tennis matches in a large indoor stadium", "video_id": "video12359", "sen_id": 232985}, {"caption": "a couple of guys are intensely playing a competitive game of ping pong", "video_id": "video12359", "sen_id": 232986}, {"caption": "two men playing a tournament of ping pong", "video_id": "video12359", "sen_id": 232987}, {"caption": "two men are playing table tennis on a field", "video_id": "video12359", "sen_id": 232988}, {"caption": "two men are playing table tennis in a professional setting", "video_id": "video12359", "sen_id": 232989}, {"caption": "two groups of men playing an intense game of ping pong", "video_id": "video12359", "sen_id": 232990}, {"caption": "different table tennis teams are playing match against each other", "video_id": "video12359", "sen_id": 232991}, {"caption": "montage with music in the background of people playing ping pong", "video_id": "video12359", "sen_id": 232992}, {"caption": "various people paying in a ping pong tournament", "video_id": "video12359", "sen_id": 232993}, {"caption": "two people playing tournament ping pong on a blue table", "video_id": "video12359", "sen_id": 232994}, {"caption": "men play tennis table on red flooring that is surrounded by a small blue wall", "video_id": "video12359", "sen_id": 232995}, {"caption": "two players play a round of a ping-pong game", "video_id": "video12359", "sen_id": 232996}, {"caption": "people vigorously play competitive ping pong while wearing loose clothing", "video_id": "video12359", "sen_id": 232997}, {"caption": "a man in a blue shirt is playing a game of ping pong against a man in a red shirt", "video_id": "video12359", "sen_id": 232998}, {"caption": "two players are playing ping pong and showing their skills", "video_id": "video12359", "sen_id": 232999}, {"caption": "a tripadvisor ad with a boy in yellow holding an umbrella", "video_id": "video10525", "sen_id": 233000}, {"caption": "a child in a yellow jumpsuit is holding an umbrella and then there is text promoting a travel website and then the viewer is asked to rate and review the video", "video_id": "video10525", "sen_id": 233001}, {"caption": "a small asian boy in a yellow outfit stands beneath a black and white umbrella", "video_id": "video10525", "sen_id": 233002}, {"caption": "white text on a black background asking people to rate the video they just saw", "video_id": "video10525", "sen_id": 233003}, {"caption": "a small boy in a yellow outfit stands in a field under an umbrella", "video_id": "video10525", "sen_id": 233004}, {"caption": "a boy holds an umbrella and a request to rate and review a video is shown", "video_id": "video10525", "sen_id": 233005}, {"caption": "a young boy in yellow pants and shirt stands below an umbrella", "video_id": "video10525", "sen_id": 233006}, {"caption": "a young boy in a yellow outfit stands in a large field under an umbrella", "video_id": "video10525", "sen_id": 233007}, {"caption": "a small boy in a yellow outift holding an umbrella stands in a large field", "video_id": "video10525", "sen_id": 233008}, {"caption": "a person stands in a field while holding an umbrella", "video_id": "video10525", "sen_id": 233009}, {"caption": "a boy in a yellow shirt standing in the rain", "video_id": "video10525", "sen_id": 233010}, {"caption": "there is a boy walking to home with umbrella", "video_id": "video10525", "sen_id": 233011}, {"caption": "some photos are shown on the screen as slide show", "video_id": "video10525", "sen_id": 233012}, {"caption": "trip advisor presents a slide with white letters", "video_id": "video10525", "sen_id": 233013}, {"caption": "a little boy was holding an umbrella over his head", "video_id": "video10525", "sen_id": 233014}, {"caption": "there is a kid walking in to the field", "video_id": "video10525", "sen_id": 233015}, {"caption": "the tripadvisor advertisement is shown and it is asked to the others to rate and review it", "video_id": "video10525", "sen_id": 233016}, {"caption": "a young boy stands under an umbrella in a pouring down rain storm", "video_id": "video10525", "sen_id": 233017}, {"caption": "a little boy is holding an umbrella in a picture", "video_id": "video10525", "sen_id": 233018}, {"caption": "some white text is on a black back ground", "video_id": "video10525", "sen_id": 233019}, {"caption": "a person cutting clay on a cutting board", "video_id": "video12672", "sen_id": 233020}, {"caption": "a woman is using green clay to try to make a certain figure", "video_id": "video12672", "sen_id": 233021}, {"caption": "a person is using a pick knife to cut shapes from green clay on top of a yellow board", "video_id": "video12672", "sen_id": 233022}, {"caption": "a woman is cutting shapes out of a piece of play dough", "video_id": "video12672", "sen_id": 233023}, {"caption": "a women's hands cutting into blue playdoh to make a bikini", "video_id": "video12672", "sen_id": 233024}, {"caption": "a woman cuts triangles out of blue clay with a pink plastic knife", "video_id": "video12672", "sen_id": 233025}, {"caption": "a man cutting a clay into the cutter", "video_id": "video12672", "sen_id": 233026}, {"caption": "a guy doing some handicraft work in his home", "video_id": "video12672", "sen_id": 233027}, {"caption": "using the clay which is in green color he uses pink thing to cut clay", "video_id": "video12672", "sen_id": 233028}, {"caption": "a woman is making small triangular shapes out of clay", "video_id": "video12672", "sen_id": 233029}, {"caption": "there is a woman doing some techniques on the table", "video_id": "video12672", "sen_id": 233030}, {"caption": "a man cutting a piece of clay and taking it", "video_id": "video12672", "sen_id": 233031}, {"caption": "a lady using a model clay patch to carve out triangles to be used in their work", "video_id": "video12672", "sen_id": 233032}, {"caption": "a woman is teaching the play things for the children that can make in any home", "video_id": "video12672", "sen_id": 233033}, {"caption": "a woman cuts out pieces of green modeling clay", "video_id": "video12672", "sen_id": 233034}, {"caption": "a lady cutting playdough on a yellow sheet of paper", "video_id": "video12672", "sen_id": 233035}, {"caption": "a woman is cutting different shapes out a green play doh", "video_id": "video12672", "sen_id": 233036}, {"caption": "a person molds some crafts using tools on paper", "video_id": "video12672", "sen_id": 233037}, {"caption": "a woman has flattened clay dough then she cut two pieces of triangles out of it to make something", "video_id": "video12672", "sen_id": 233038}, {"caption": "a women is making some craft using her hand by instructing how to do that", "video_id": "video12672", "sen_id": 233039}, {"caption": "camera crews film reporters in outside locations such as by heavy traffic the united nations historic arch cultural landmarks crowds and piers", "video_id": "video12486", "sen_id": 233040}, {"caption": "news reporters prepare for live remotes at various spots around the globe", "video_id": "video12486", "sen_id": 233041}, {"caption": "female journalist is featured talking into a camera for a story", "video_id": "video12486", "sen_id": 233042}, {"caption": "the bbc news team demonstrates prepares for their broadcast in a montage among various international locales", "video_id": "video12486", "sen_id": 233043}, {"caption": "people with camera equipment and microphones are shooting a video outside", "video_id": "video12486", "sen_id": 233044}, {"caption": "reporters doing segments for their show from paris france", "video_id": "video12486", "sen_id": 233045}, {"caption": "there are some important news headlines going on", "video_id": "video12486", "sen_id": 233046}, {"caption": "the bbc channel is capturing the india gate at the new delhi at india", "video_id": "video12486", "sen_id": 233047}, {"caption": "taking shooting for a bbc world news channel", "video_id": "video12486", "sen_id": 233048}, {"caption": "photographers stand and take pictures of a beatutiful tower", "video_id": "video12486", "sen_id": 233049}, {"caption": "bunch of reporters getting their story on city in front of camera", "video_id": "video12486", "sen_id": 233050}, {"caption": "a women in pink top telling news on bbc channel", "video_id": "video12486", "sen_id": 233051}, {"caption": "bbc world news big crowd in a city 20:22", "video_id": "video12486", "sen_id": 233052}, {"caption": "a set of news reporters get ready to report stories from various locations around the globe", "video_id": "video12486", "sen_id": 233053}, {"caption": "a cameraman recording the video of some people talking it seems like some reality show", "video_id": "video12486", "sen_id": 233054}, {"caption": "some people are walking around on a large road", "video_id": "video12486", "sen_id": 233055}, {"caption": "there is a camera man taking shooting of people in different places", "video_id": "video12486", "sen_id": 233056}, {"caption": "a bbc news program exploring about some places and peoples", "video_id": "video12486", "sen_id": 233057}, {"caption": "news reporters at various locations around the world prepare to give their reports", "video_id": "video12486", "sen_id": 233058}, {"caption": "different events from different countries are covered by this newschannel", "video_id": "video12486", "sen_id": 233059}, {"caption": "an animated boy who looks angry dressed in a light green top with a dark green tie while a girl in a yellow dress waves happily at an audience in a stage", "video_id": "video12321", "sen_id": 233060}, {"caption": "a group of young people sing in front of a large stadium full of people", "video_id": "video12321", "sen_id": 233061}, {"caption": "animated cartoons singing a girl cartoon with blue hair and a boy with glasses", "video_id": "video12321", "sen_id": 233062}, {"caption": "an animated guy with glasses excitedly talks to other people in an arena", "video_id": "video12321", "sen_id": 233063}, {"caption": "a blue hair lady waving her hands in the middle of a cloud", "video_id": "video12321", "sen_id": 233064}, {"caption": "a guy reading a book and a girl mivong her hand", "video_id": "video12321", "sen_id": 233065}, {"caption": "cartoon character waives at the crowd in the arena", "video_id": "video12321", "sen_id": 233066}, {"caption": "a cartoon show pictures dolls video girl waving hands displaying on screen", "video_id": "video12321", "sen_id": 233067}, {"caption": "in the animated video a boy is shouting and then a girl waves her hand as she smiles", "video_id": "video12321", "sen_id": 233068}, {"caption": "in this video playing a show of cartoo network", "video_id": "video12321", "sen_id": 233069}, {"caption": "a song is being played to a cartoon", "video_id": "video12321", "sen_id": 233070}, {"caption": "a boy is angry while his girl friend is waving her hand and the boy is still angry", "video_id": "video12321", "sen_id": 233071}, {"caption": "animated characters are movingtalking and playing", "video_id": "video12321", "sen_id": 233072}, {"caption": "there is a boy talking loudly from a ground", "video_id": "video12321", "sen_id": 233073}, {"caption": "cartoon all like hercules and some cartoons very nice to watch", "video_id": "video12321", "sen_id": 233074}, {"caption": "a cartoon character is talking to others", "video_id": "video12321", "sen_id": 233075}, {"caption": "there is a man in green dressing singing a song", "video_id": "video12321", "sen_id": 233076}, {"caption": "a 2d movie is being displayed where the characters shouts waves hands etc", "video_id": "video12321", "sen_id": 233077}, {"caption": "in a cartoon one man and women hopes for", "video_id": "video12321", "sen_id": 233078}, {"caption": "a cartoon shows some characters talking", "video_id": "video12321", "sen_id": 233079}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video10883", "sen_id": 233080}, {"caption": "a man in a kitchen cuts some food before adding more to a bowl", "video_id": "video10883", "sen_id": 233081}, {"caption": "a man with a white shirt making a fruit dish", "video_id": "video10883", "sen_id": 233082}, {"caption": "a chef chops various ingredients and combines others in a kitchen and describe the recipe", "video_id": "video10883", "sen_id": 233083}, {"caption": "a chef adds many ingredients into a large bowl", "video_id": "video10883", "sen_id": 233084}, {"caption": "a man is making his own homemade trail mix from a variety of ingredients placed on the table in front of him", "video_id": "video10883", "sen_id": 233085}, {"caption": "there is a man making a dish with vegetables", "video_id": "video10883", "sen_id": 233086}, {"caption": "a master chef having tatoo on his hand cutting carrot into small pieces and later taken into bowl and mixes all ingredients to it in kitchen", "video_id": "video10883", "sen_id": 233087}, {"caption": "a man chops ingredients on a cutting board and then mixes them together in a bowl", "video_id": "video10883", "sen_id": 233088}, {"caption": "in a bowl adding ingredients in it some spices are there", "video_id": "video10883", "sen_id": 233089}, {"caption": "a chef in a kitchen slicing some fruits carefully", "video_id": "video10883", "sen_id": 233090}, {"caption": "a man slicing food items into small pieces and doing a mixture of some food items", "video_id": "video10883", "sen_id": 233091}, {"caption": "a chef prepares a recipe with several bowls of ingredients", "video_id": "video10883", "sen_id": 233092}, {"caption": "a bald man in a kitchen adds ingredients to a bowl", "video_id": "video10883", "sen_id": 233093}, {"caption": "a man cutting vegetables and putting them in a bowl with various berries and nuts", "video_id": "video10883", "sen_id": 233094}, {"caption": "a man in a kitchen slicing some fruit very carefully", "video_id": "video10883", "sen_id": 233095}, {"caption": "in the men at the kitchen is making vegetable item in simply method", "video_id": "video10883", "sen_id": 233096}, {"caption": "a person wearing white prepare a dish by adding different ingredients", "video_id": "video10883", "sen_id": 233097}, {"caption": "a man mixes together ingredients in a bowl", "video_id": "video10883", "sen_id": 233098}, {"caption": "a man is cutting up some stuff inside", "video_id": "video10883", "sen_id": 233099}, {"caption": "tourist trying to get a closer look at a cheetah", "video_id": "video10107", "sen_id": 233100}, {"caption": "a man speaks in spanish over footage of a leopard in the wild", "video_id": "video10107", "sen_id": 233101}, {"caption": "three men riding in a safari vehicle stalking a leopard", "video_id": "video10107", "sen_id": 233102}, {"caption": "a leopard is walking through a wild area and a truck with two men is following it", "video_id": "video10107", "sen_id": 233103}, {"caption": "a large wild cat walking through the woods with men hunting it", "video_id": "video10107", "sen_id": 233104}, {"caption": "a man is speaking in spanish while a large mammal is stalking", "video_id": "video10107", "sen_id": 233105}, {"caption": "a cheetah is walking along and two men in a vehicle are following the animal", "video_id": "video10107", "sen_id": 233106}, {"caption": "a cheetah is walking slowly through the tall grass", "video_id": "video10107", "sen_id": 233107}, {"caption": "an african rangers spotted a cheeta in the forest when they go for a ride", "video_id": "video10107", "sen_id": 233108}, {"caption": "two men ride in an open jeep through a jungle", "video_id": "video10107", "sen_id": 233109}, {"caption": "there is a wild cat in the jungle and some men on an armored vehicle tracking it down", "video_id": "video10107", "sen_id": 233110}, {"caption": "men are going in a jeep with a video camera and there is a leopard walking in the forest", "video_id": "video10107", "sen_id": 233111}, {"caption": "a leopard is walking through the brush while armored cars drive past", "video_id": "video10107", "sen_id": 233112}, {"caption": "a leopard walks through a grassy field followed by two men in a truck", "video_id": "video10107", "sen_id": 233113}, {"caption": "a leopard is walking through the jungle and some men are tracking it from a jeep", "video_id": "video10107", "sen_id": 233114}, {"caption": "there is a leopard walking in to the forest", "video_id": "video10107", "sen_id": 233115}, {"caption": "few hunters go in the car to check the leopard on the forest", "video_id": "video10107", "sen_id": 233116}, {"caption": "a tank travels through jungle road and a jaguar walks through the bushes", "video_id": "video10107", "sen_id": 233117}, {"caption": "a italian guy speaking about the cheetah in the wild life", "video_id": "video10107", "sen_id": 233118}, {"caption": "some people are driving around in africa", "video_id": "video10107", "sen_id": 233119}, {"caption": "two girls are laughing and talking while a video of minecraft play is being shown", "video_id": "video10545", "sen_id": 233120}, {"caption": "a video game character walking through a hallway", "video_id": "video10545", "sen_id": 233121}, {"caption": "two young women talk as they play a colorful video game", "video_id": "video10545", "sen_id": 233122}, {"caption": "women play video games and tease each other about who is losing", "video_id": "video10545", "sen_id": 233123}, {"caption": "a couple of kids talking while playing a video game", "video_id": "video10545", "sen_id": 233124}, {"caption": "someone playing a block looking video game", "video_id": "video10545", "sen_id": 233125}, {"caption": "some kids are playing minecraft in a colorful world while laughing", "video_id": "video10545", "sen_id": 233126}, {"caption": "the inside of a building in a video game and being chased when you turn around", "video_id": "video10545", "sen_id": 233127}, {"caption": "a group of people describe and demonstrate a video game", "video_id": "video10545", "sen_id": 233128}, {"caption": "some one holding a gun in their hand searching other people", "video_id": "video10545", "sen_id": 233129}, {"caption": "a group of kids are playing the game minecraft and their characters are running around inside the game", "video_id": "video10545", "sen_id": 233130}, {"caption": "a person is explaining about the game that was played", "video_id": "video10545", "sen_id": 233131}, {"caption": "ldshadowlady takes us through several pathways in this game", "video_id": "video10545", "sen_id": 233132}, {"caption": "minecraft players are chatting and racing into a fortress", "video_id": "video10545", "sen_id": 233133}, {"caption": "a minecraft scene shows a very colorful background and square graphics", "video_id": "video10545", "sen_id": 233134}, {"caption": "a teen girls performing a funny child video games in their home", "video_id": "video10545", "sen_id": 233135}, {"caption": "kids playing a computer game and talking through the game", "video_id": "video10545", "sen_id": 233136}, {"caption": "first person shooter perspective of a very colorful video game", "video_id": "video10545", "sen_id": 233137}, {"caption": "women speaking cheerfully while playing a minecraft type game", "video_id": "video10545", "sen_id": 233138}, {"caption": "a player navigates through a minecraft like environment with what looks like a first person shooter interface", "video_id": "video10545", "sen_id": 233139}, {"caption": "a man in a black suit and a woman wearing a pinkish sweater and blue jeans each crossed the street riding on a black object between each leg", "video_id": "video12424", "sen_id": 233140}, {"caption": "a person is riding on a segway down the street", "video_id": "video12424", "sen_id": 233141}, {"caption": "a man is riding a one-wheeled vehicle down a sidewalk and across the road", "video_id": "video12424", "sen_id": 233142}, {"caption": "people ride a one wheel scooter down a city sidewalk", "video_id": "video12424", "sen_id": 233143}, {"caption": "a man moving down the sidewalk on a circular device", "video_id": "video12424", "sen_id": 233144}, {"caption": "people are crossing the street at a crosswalk and one woman is riding a unicycle", "video_id": "video12424", "sen_id": 233145}, {"caption": "a woman in a purple shirt with a green scarf is using a one wheeled vehicle to navigate the city", "video_id": "video12424", "sen_id": 233146}, {"caption": "two different people are shown riding a wheeled device", "video_id": "video12424", "sen_id": 233147}, {"caption": "a man in a suit and a woman in a purple sweater ride a motorized unicycle down a street", "video_id": "video12424", "sen_id": 233148}, {"caption": "there is a black shirt man moving on the tyre", "video_id": "video12424", "sen_id": 233149}, {"caption": "a person is riding around town on a electronic one wheeled segway", "video_id": "video12424", "sen_id": 233150}, {"caption": "different people are riding a object down the sidewalks", "video_id": "video12424", "sen_id": 233151}, {"caption": "people in the city ride a funny new device", "video_id": "video12424", "sen_id": 233152}, {"caption": "there are many people walking on the street and one women going in a one wheel", "video_id": "video12424", "sen_id": 233153}, {"caption": "a lady going on the road by skirting", "video_id": "video12424", "sen_id": 233154}, {"caption": "a peroson is moving on the on the one wheel and wandering on the road", "video_id": "video12424", "sen_id": 233155}, {"caption": "a person is rooling on a machine on the roads", "video_id": "video12424", "sen_id": 233156}, {"caption": "people riding on segways on a busy street", "video_id": "video12424", "sen_id": 233157}, {"caption": "a person is moving on the single wheel and enjoying the people", "video_id": "video12424", "sen_id": 233158}, {"caption": "people ride a motorized one wheeled scooter on a sidewalk", "video_id": "video12424", "sen_id": 233159}, {"caption": "a song is meshed with the picture of a young woman in various poses", "video_id": "video12385", "sen_id": 233160}, {"caption": "a pretty asian female model posing in two different settings both indoor and outdoors", "video_id": "video12385", "sen_id": 233161}, {"caption": "asian music is playing as photos of asian women appear", "video_id": "video12385", "sen_id": 233162}, {"caption": "a picture of a young woman in traditional japanese clothing while asian music plays", "video_id": "video12385", "sen_id": 233163}, {"caption": "a woman in a green robe a woman lying down wearing black", "video_id": "video12385", "sen_id": 233164}, {"caption": "two images in sequence of asian women one in a green outfit and the other in a black outfit", "video_id": "video12385", "sen_id": 233165}, {"caption": "a young woman is shown in her everyday attire then as a model after a makeover", "video_id": "video12385", "sen_id": 233166}, {"caption": "a chinese girl in green colour dress and then with the black sleeveless", "video_id": "video12385", "sen_id": 233167}, {"caption": "music playing behind scrolling images of asian women", "video_id": "video12385", "sen_id": 233168}, {"caption": "an asian girl wearing different outfits from a two toned outfit to a black sleeveless outfit", "video_id": "video12385", "sen_id": 233169}, {"caption": "images of two attractive asian women with music playing", "video_id": "video12385", "sen_id": 233170}, {"caption": "there is music playing and an asian woman posing for pictures", "video_id": "video12385", "sen_id": 233171}, {"caption": "different women smile and pose for different pictures", "video_id": "video12385", "sen_id": 233172}, {"caption": "beautiful photo shoots of a japanese lady in different situations", "video_id": "video12385", "sen_id": 233173}, {"caption": "photos of beautiful chinese women in different poses and areas", "video_id": "video12385", "sen_id": 233174}, {"caption": "the child with brown hair is pousing for the camera", "video_id": "video12385", "sen_id": 233175}, {"caption": " dark haired asian female stands outside in a grassy area with other people before she is shown with red hair", "video_id": "video12385", "sen_id": 233176}, {"caption": "a girl in a green shirt had her picture taken in group of people", "video_id": "video12385", "sen_id": 233177}, {"caption": "a girl in diferent dresses still images shown on screen displaying on screen", "video_id": "video12385", "sen_id": 233178}, {"caption": "a woman is posed power point presentation animation show displaying", "video_id": "video12385", "sen_id": 233179}, {"caption": "a person describes photos taken of a far away planet", "video_id": "video10749", "sen_id": 233180}, {"caption": "an astronaut is describing the video being shown of a close up of an object in space", "video_id": "video10749", "sen_id": 233181}, {"caption": "an elderly man shows viewers the image he has discovered in space on the moon", "video_id": "video10749", "sen_id": 233182}, {"caption": "a man gives an explanation of a photo of a planet to an enthusiastic crowd", "video_id": "video10749", "sen_id": 233183}, {"caption": "a guy that is talking about nasa on usa today", "video_id": "video10749", "sen_id": 233184}, {"caption": "a moon is shown by nasa and we see up close and a part of the image in a different color", "video_id": "video10749", "sen_id": 233185}, {"caption": "a scientist talks about an image he recently received from a far away planet", "video_id": "video10749", "sen_id": 233186}, {"caption": "a man talks to an excited audience about advances in photography on another planet", "video_id": "video10749", "sen_id": 233187}, {"caption": "a man addresses an excited crowd about a zoomed in image on a new planet", "video_id": "video10749", "sen_id": 233188}, {"caption": "an astronaut is describing the video being shown of a close up of an object in space", "video_id": "video10749", "sen_id": 233189}, {"caption": "a shot of a planet and the close up of the underbelly of the island", "video_id": "video10749", "sen_id": 233190}, {"caption": "there is a man explaining some details about space", "video_id": "video10749", "sen_id": 233191}, {"caption": "usa today presents an astronomist showing a class some images of the moon", "video_id": "video10749", "sen_id": 233192}, {"caption": "an offscreen lecturer discusses mars and zooms in on a new image of its surface to audience applause", "video_id": "video10749", "sen_id": 233193}, {"caption": "an astronomer showing a part of a planet they discovered to a live audience", "video_id": "video10749", "sen_id": 233194}, {"caption": "a man on a show talking about a planet and space", "video_id": "video10749", "sen_id": 233195}, {"caption": "a scientist talks about the clear images nasa gets from new pictures they have", "video_id": "video10749", "sen_id": 233196}, {"caption": "a nasa scientist speaks to a large crowd about new images received of a planet the day before", "video_id": "video10749", "sen_id": 233197}, {"caption": "a man talking about an image of the moon", "video_id": "video10749", "sen_id": 233198}, {"caption": "the surface of the moon is being filmed", "video_id": "video10749", "sen_id": 233199}, {"caption": "a man preparing to ride a motorcycle through a road course", "video_id": "video12707", "sen_id": 233200}, {"caption": "a man on a motorcycle begins to complete an obstacle course of cones", "video_id": "video12707", "sen_id": 233201}, {"caption": "a police officer on a motorcycle starts an obstacle course full of orange traffic cones", "video_id": "video12707", "sen_id": 233202}, {"caption": "a man on a motorcycle attempted to start riding through a set of cones on a parking lot", "video_id": "video12707", "sen_id": 233203}, {"caption": "a man on a motorcycle drives through traffic cones", "video_id": "video12707", "sen_id": 233204}, {"caption": "a man riding his motorcycle though a course lined with cones", "video_id": "video12707", "sen_id": 233205}, {"caption": "a police officer on a motorcycle starts an obstacle course full of orange traffic cones", "video_id": "video12707", "sen_id": 233206}, {"caption": "the police man made the ride in the huge bike in the ground", "video_id": "video12707", "sen_id": 233207}, {"caption": "there is a man riding a bike with helmet", "video_id": "video12707", "sen_id": 233208}, {"caption": "a police officer rides on a motorcycle between many orange cones and begins to lose control", "video_id": "video12707", "sen_id": 233209}, {"caption": "a police man rides a bike for a show to people", "video_id": "video12707", "sen_id": 233210}, {"caption": "a policeman on a motorcycle begins a driving course marked by orange and white cones", "video_id": "video12707", "sen_id": 233211}, {"caption": "a man on a motorcycle driving through traffic cones on the street", "video_id": "video12707", "sen_id": 233212}, {"caption": "a person riding a motorcycle in betwen th arranged cones", "video_id": "video12707", "sen_id": 233213}, {"caption": "a man is riding a bike in zig zag", "video_id": "video12707", "sen_id": 233214}, {"caption": "a motorcycle police officer is about to begin an obstacle course using traffic cones", "video_id": "video12707", "sen_id": 233215}, {"caption": "a man is begin to ride bike withall protuctions", "video_id": "video12707", "sen_id": 233216}, {"caption": "someone riding a motorcycle through a large number of traffic cones", "video_id": "video12707", "sen_id": 233217}, {"caption": "police officer riding a motorcycle on a road coarse", "video_id": "video12707", "sen_id": 233218}, {"caption": "a man takes a motorcycle through an outdoor driver s training course", "video_id": "video12707", "sen_id": 233219}, {"caption": "a picture of a mountain followed by pictures of people climbing a mountain", "video_id": "video11680", "sen_id": 233220}, {"caption": "a few mountain hiking trail pictures are shown of mt huashan in china", "video_id": "video11680", "sen_id": 233221}, {"caption": "we see mt huashan the steepest mountain in the world", "video_id": "video11680", "sen_id": 233222}, {"caption": "pictures of people climbing mt huashan an extremely steep mountain in china", "video_id": "video11680", "sen_id": 233223}, {"caption": "music plays in the background while a few pictures of mt huashan in china are shown", "video_id": "video11680", "sen_id": 233224}, {"caption": "home made video featuring high mountain and scenic views", "video_id": "video11680", "sen_id": 233225}, {"caption": "there are pictures and video of mt huashan in china", "video_id": "video11680", "sen_id": 233226}, {"caption": "there is a mountain filled with snow and trees", "video_id": "video11680", "sen_id": 233227}, {"caption": "a mountain top view from mt huashan china with climbers clinging to the cliff sides", "video_id": "video11680", "sen_id": 233228}, {"caption": "a picture of a mountain in china a group of people climbing the moutain", "video_id": "video11680", "sen_id": 233229}, {"caption": "there is a mountain surrounded by trees and filled with snow", "video_id": "video11680", "sen_id": 233230}, {"caption": "photos of two daring mountian climbers hanging from a dangerous cliff", "video_id": "video11680", "sen_id": 233231}, {"caption": "an exploration about about the most dangerous hill", "video_id": "video11680", "sen_id": 233232}, {"caption": "a mountaintop with clouds people climbing on the side of a mountain", "video_id": "video11680", "sen_id": 233233}, {"caption": "a picture of a mountain is shown as text is displayed that talks about mt hua shan it then cuts to people climbing the mountain", "video_id": "video11680", "sen_id": 233234}, {"caption": "there is a snow mountain people are doing trucking", "video_id": "video11680", "sen_id": 233235}, {"caption": "a scenic slideshow of one of the steepest mountains in the world located in china", "video_id": "video11680", "sen_id": 233236}, {"caption": "china mountain is the steepest and people go there recreationaly", "video_id": "video11680", "sen_id": 233237}, {"caption": "photos of one of the steepest mountains in china showing climbers hanging on vertical rock faces", "video_id": "video11680", "sen_id": 233238}, {"caption": "people climb a dangerously steep mountain jutting out of the fog", "video_id": "video11680", "sen_id": 233239}, {"caption": "a band playing music with a drummer a guitarist and a singer", "video_id": "video10329", "sen_id": 233240}, {"caption": "several men play musical instruments in a dimly lit room with lights behind the fog in the room", "video_id": "video10329", "sen_id": 233241}, {"caption": "a rock band begins a song with a hard-driving arrangement", "video_id": "video10329", "sen_id": 233242}, {"caption": "heavy music is playing and you see a man playing the drums and another man on guitar smoke fills the screen and a man starts to sing", "video_id": "video10329", "sen_id": 233243}, {"caption": "a rock band plays music with light at their backs", "video_id": "video10329", "sen_id": 233244}, {"caption": "men play various instruments including drums and guitar", "video_id": "video10329", "sen_id": 233245}, {"caption": "a man singing a song and playing music", "video_id": "video10329", "sen_id": 233246}, {"caption": "a band of musicians playing the drums a guitar and singing in fog", "video_id": "video10329", "sen_id": 233247}, {"caption": "a rock band playing music and while singing", "video_id": "video10329", "sen_id": 233248}, {"caption": "a black and white scene of a rock band performing", "video_id": "video10329", "sen_id": 233249}, {"caption": "a band is playing a song in a hard rock style for a music video they are making", "video_id": "video10329", "sen_id": 233250}, {"caption": "a rock band plays its song in a steamy industrial environment", "video_id": "video10329", "sen_id": 233251}, {"caption": "a band of men are playing musical instruments and then a song is played", "video_id": "video10329", "sen_id": 233252}, {"caption": "a group of men singing and playing instruments in a black and white video", "video_id": "video10329", "sen_id": 233253}, {"caption": "a band is playing instruments while a man sings", "video_id": "video10329", "sen_id": 233254}, {"caption": "young men play on musical instruments in a smoke filled room", "video_id": "video10329", "sen_id": 233255}, {"caption": "a band plays instruments with a bright light in the background", "video_id": "video10329", "sen_id": 233256}, {"caption": "a rockband is playing music and performing on stage", "video_id": "video10329", "sen_id": 233257}, {"caption": "the great music of guitar and band along with melodious voice of the singer", "video_id": "video10329", "sen_id": 233258}, {"caption": "there is the silhouette of a rock band playing their music live", "video_id": "video10329", "sen_id": 233259}, {"caption": "a colorful parrot is talking right in the room", "video_id": "video10044", "sen_id": 233260}, {"caption": "a pet parrot screams curse words at the owner", "video_id": "video10044", "sen_id": 233261}, {"caption": "funniest parrots ever is about a parrot that is green and yellow", "video_id": "video10044", "sen_id": 233262}, {"caption": "a funny parrot walks along a silver bar and makes a series of noises", "video_id": "video10044", "sen_id": 233263}, {"caption": "a colorful chained parrot curses and is known as the funniest parrot ever", "video_id": "video10044", "sen_id": 233264}, {"caption": "a parrot using foul language and bobbing his head up and down", "video_id": "video10044", "sen_id": 233265}, {"caption": "a bird which has colours of yellow and green in balancing in a rod", "video_id": "video10044", "sen_id": 233266}, {"caption": "a parrot with different color making sound and moving to and fro", "video_id": "video10044", "sen_id": 233267}, {"caption": "the funniest parrots ever talks somethin in room", "video_id": "video10044", "sen_id": 233268}, {"caption": "a green with white color parrot standing in the steel rod", "video_id": "video10044", "sen_id": 233269}, {"caption": "there is a bird sitting in on the pipe in hall", "video_id": "video10044", "sen_id": 233270}, {"caption": "a parrot is moving his head and cursing", "video_id": "video10044", "sen_id": 233271}, {"caption": "a multi colour parrot doing something funny", "video_id": "video10044", "sen_id": 233272}, {"caption": "a beautiful parrot is making noise", "video_id": "video10044", "sen_id": 233273}, {"caption": "a parrot in a room is moving its body around", "video_id": "video10044", "sen_id": 233274}, {"caption": "there is a bird sitting in the bat room on a pipe", "video_id": "video10044", "sen_id": 233275}, {"caption": "a green parrot is turning to the left and saying cuss words", "video_id": "video10044", "sen_id": 233276}, {"caption": "a parrot is sitting and moving here and there", "video_id": "video10044", "sen_id": 233277}, {"caption": "parrot coming closer and looking at the camera and talking", "video_id": "video10044", "sen_id": 233278}, {"caption": "a parrot is bobbing its head in a house", "video_id": "video10044", "sen_id": 233279}, {"caption": "a man and woman are outside running on a track and then a dog begins running beside them", "video_id": "video10264", "sen_id": 233280}, {"caption": "two people and their dog are running around a track in full sprint", "video_id": "video10264", "sen_id": 233281}, {"caption": "two runners a dog and a musical voiceover race through an empty park", "video_id": "video10264", "sen_id": 233282}, {"caption": "a man in blue shirt and a girl in white shirt are running on the road then a dog joined with them", "video_id": "video10264", "sen_id": 233283}, {"caption": "there is a black tshirt man running with his girl", "video_id": "video10264", "sen_id": 233284}, {"caption": "the song dust in the wind plays over a man and a woman running down a path", "video_id": "video10264", "sen_id": 233285}, {"caption": "men and women are running fast and a dog is running along with them", "video_id": "video10264", "sen_id": 233286}, {"caption": "two persons are running on the street and then a dog runs along with them", "video_id": "video10264", "sen_id": 233287}, {"caption": "there is a t-shirt man running with a women", "video_id": "video10264", "sen_id": 233288}, {"caption": "a man and woman run next to each other as a white car passes in the back of them and a large dog passes in front of them", "video_id": "video10264", "sen_id": 233289}, {"caption": "a man and woman jog along a trail outside", "video_id": "video10264", "sen_id": 233290}, {"caption": "a couple works out and run with their dogs at the park", "video_id": "video10264", "sen_id": 233291}, {"caption": "the couples running on the road and a dog following them", "video_id": "video10264", "sen_id": 233292}, {"caption": "a man with black t shirt and a lady with a white t-shirt runs on the track with a dog running along with them", "video_id": "video10264", "sen_id": 233293}, {"caption": "a men in shorts and women running together in streets for race and the dog also runs with them", "video_id": "video10264", "sen_id": 233294}, {"caption": "a men and a women is running simultaneously and racing later joined by a black dog who try to catch them", "video_id": "video10264", "sen_id": 233295}, {"caption": "a man and a women is running steadfastly through a ground", "video_id": "video10264", "sen_id": 233296}, {"caption": "a man and a woman are running outside while music plays", "video_id": "video10264", "sen_id": 233297}, {"caption": "a man and woman race down a track and a dog joins in with them", "video_id": "video10264", "sen_id": 233298}, {"caption": "girl and the boy run during the morning an dog starts to run along with them", "video_id": "video10264", "sen_id": 233299}, {"caption": "a woman uses a high tech display glass in her home to do everyday tasks", "video_id": "video12070", "sen_id": 233300}, {"caption": "a women in white in her bathroom using a futuristic display glass", "video_id": "video12070", "sen_id": 233301}, {"caption": "this is a clip of a girl using a interactive mirror in her bathroom", "video_id": "video12070", "sen_id": 233302}, {"caption": "a young woman with brown hair using a mirror touch screen", "video_id": "video12070", "sen_id": 233303}, {"caption": "a women has he ability to use her mirror as a touchscreen device", "video_id": "video12070", "sen_id": 233304}, {"caption": "a woman facing a bathroom mirror with messages appearing from it and then a keyboard appears and she starts typing a response", "video_id": "video12070", "sen_id": 233305}, {"caption": "a woman using a computer display that is on the mirror in the bathroom", "video_id": "video12070", "sen_id": 233306}, {"caption": "there is a white dressed women in front of mirror", "video_id": "video12070", "sen_id": 233307}, {"caption": "water is turned on and falls from a bathroom faucet and a woman in white pajamas looks into the large mirror", "video_id": "video12070", "sen_id": 233308}, {"caption": "a woman looks at a computer screen that is embedded in her bathroom mirror", "video_id": "video12070", "sen_id": 233309}, {"caption": "a lady is working on a lcd television glass", "video_id": "video12070", "sen_id": 233310}, {"caption": "woman getting ready in front of a smart mirror in the morning", "video_id": "video12070", "sen_id": 233311}, {"caption": "a lady stand in front of the mirrorhe checks the ping and reply back by touching", "video_id": "video12070", "sen_id": 233312}, {"caption": "a beautiful woman in white dress is writing on architectural display glass", "video_id": "video12070", "sen_id": 233313}, {"caption": "a woman is pressing some buttons on a keyboard", "video_id": "video12070", "sen_id": 233314}, {"caption": "a woman drinks water and answers a message on her bathroom mirror using technology", "video_id": "video12070", "sen_id": 233315}, {"caption": "a woman in her bathroom uses a computer that is embedded in her bathroom mirror", "video_id": "video12070", "sen_id": 233316}, {"caption": "a girl in the bathroom typing the pins on the keyboard", "video_id": "video12070", "sen_id": 233317}, {"caption": "a young man and a woman are writing over architectural display glass", "video_id": "video12070", "sen_id": 233318}, {"caption": "someone is using a faucet ti clean their body", "video_id": "video12070", "sen_id": 233319}, {"caption": "a young child climbing up and down a red slide", "video_id": "video12790", "sen_id": 233320}, {"caption": "a small boy playing inside a big tube and later walking out of it", "video_id": "video12790", "sen_id": 233321}, {"caption": "a small boy with grey t shirt play in red tunnel", "video_id": "video12790", "sen_id": 233322}, {"caption": "a boy going in and out of the pipe", "video_id": "video12790", "sen_id": 233323}, {"caption": "a long red tunnel captures a child s distorted reflections as he explores", "video_id": "video12790", "sen_id": 233324}, {"caption": "the little boy was at the playground playing", "video_id": "video12790", "sen_id": 233325}, {"caption": "a small kid is seen here playing in a red tunnel like thing", "video_id": "video12790", "sen_id": 233326}, {"caption": "a little boy following his shadow and playing in a round pipe like structure", "video_id": "video12790", "sen_id": 233327}, {"caption": "a little boy in a grey shirt is playing in a playground", "video_id": "video12790", "sen_id": 233328}, {"caption": "a young boy crawls back and forth through a red playground tunnel", "video_id": "video12790", "sen_id": 233329}, {"caption": "a kid is crawling around in a small red tube", "video_id": "video12790", "sen_id": 233330}, {"caption": "take it crawling through a tunnel on the playground", "video_id": "video12790", "sen_id": 233331}, {"caption": "the boy in the park they are playing in alone they are very happy", "video_id": "video12790", "sen_id": 233332}, {"caption": "a child playing in the slide at children s park", "video_id": "video12790", "sen_id": 233333}, {"caption": "a young boy is climbing through a red play tunnel", "video_id": "video12790", "sen_id": 233334}, {"caption": "kid in grey tshirt having fun in the plastic pipe", "video_id": "video12790", "sen_id": 233335}, {"caption": "a small boy is playing inside a red pipe", "video_id": "video12790", "sen_id": 233336}, {"caption": "a boy in a red tube crawling from one side to another", "video_id": "video12790", "sen_id": 233337}, {"caption": "the cute baby is actively moving from one toy to other", "video_id": "video12790", "sen_id": 233338}, {"caption": "a young boy climbs into a playground tube as he plays", "video_id": "video12790", "sen_id": 233339}, {"caption": "ellen degeneres is opening a new segment during one of her shows", "video_id": "video11633", "sen_id": 233340}, {"caption": "a comedian on stage entertains an audience and jokes about being a kardashian", "video_id": "video11633", "sen_id": 233341}, {"caption": "an oddly dressed woman does a comedy routine for a group of people", "video_id": "video11633", "sen_id": 233342}, {"caption": "ellen degeneres is dressed like kim khardashian and making jokes on stage", "video_id": "video11633", "sen_id": 233343}, {"caption": "karla kardashian (with a k) introduces herself and says she's the younger sister who gets all the hand me downs she is wearing a low cut zebra striped blouse", "video_id": "video11633", "sen_id": 233344}, {"caption": "a woman is talking while in the background there are people laughing and clapping hands", "video_id": "video11633", "sen_id": 233345}, {"caption": "a woman has her long black hair pulled back under a cap while she wears an animal-print shirt with bow belt and black pants", "video_id": "video11633", "sen_id": 233346}, {"caption": "a well known female comedian is doing stand up comedy while making fun of a famous hollywood family", "video_id": "video11633", "sen_id": 233347}, {"caption": "a woman in a low cut animal print long sleeve blouse wearing a necklace and black pants with village imagary in the background", "video_id": "video11633", "sen_id": 233348}, {"caption": "a women performing a comedy show and speak something", "video_id": "video11633", "sen_id": 233349}, {"caption": "ellen de generous acting like a khardasin sister", "video_id": "video11633", "sen_id": 233350}, {"caption": "a female comedian does a satirical skit about a famous woman", "video_id": "video11633", "sen_id": 233351}, {"caption": "a lady wearing an animal print top is talking on her own talk show", "video_id": "video11633", "sen_id": 233352}, {"caption": "a comedian joking about the kardashians and being a sister", "video_id": "video11633", "sen_id": 233353}, {"caption": "a woman explains something in a show with showing her breast partially", "video_id": "video11633", "sen_id": 233354}, {"caption": "the woman is talking about something on the stage", "video_id": "video11633", "sen_id": 233355}, {"caption": "a lady introduces herself giving reference being the younger of the kardashian sisters", "video_id": "video11633", "sen_id": 233356}, {"caption": "a girl wearing hat and glass waving hands speaking and audience sitting and laughing", "video_id": "video11633", "sen_id": 233357}, {"caption": "a women is doing some reality show in the television and she is telling some sexy jokes", "video_id": "video11633", "sen_id": 233358}, {"caption": "a woman on stage is talking about something", "video_id": "video11633", "sen_id": 233359}, {"caption": "a man describes a series of options that are available in a computer program", "video_id": "video12643", "sen_id": 233360}, {"caption": "the steam logo in the center of the screen followed by other logos and russian text", "video_id": "video12643", "sen_id": 233361}, {"caption": "a man speaks possibly russian while various icons are displayed", "video_id": "video12643", "sen_id": 233362}, {"caption": "some one is speaking about the video game player app called steam", "video_id": "video12643", "sen_id": 233363}, {"caption": "a black screen with different icons a logo and a pink screen with a icon", "video_id": "video12643", "sen_id": 233364}, {"caption": "a man discusses apps that are available for a smart phone", "video_id": "video12643", "sen_id": 233365}, {"caption": "round icons appear on the screen with other words in spanish", "video_id": "video12643", "sen_id": 233366}, {"caption": "a man is speaking in a foreign language that sounds like russian talking about technology", "video_id": "video12643", "sen_id": 233367}, {"caption": "a black background and some icons then a pink background with a icon", "video_id": "video12643", "sen_id": 233368}, {"caption": "its a buttons symbols for some systms", "video_id": "video12643", "sen_id": 233369}, {"caption": "a still image about machine product explaing on screen", "video_id": "video12643", "sen_id": 233370}, {"caption": "some icons are on the screen and then text", "video_id": "video12643", "sen_id": 233371}, {"caption": "there are some pictures are shown on the screen", "video_id": "video12643", "sen_id": 233372}, {"caption": "a graphic design logo criss cross the screen with mechanical figures", "video_id": "video12643", "sen_id": 233373}, {"caption": "a person is explaining about something which has colourful background", "video_id": "video12643", "sen_id": 233374}, {"caption": "the steam logo is being displayed on a pc screen", "video_id": "video12643", "sen_id": 233375}, {"caption": "its a symbol of computer social media", "video_id": "video12643", "sen_id": 233376}, {"caption": "a man describes a series of apps that he uses on his cell phone", "video_id": "video12643", "sen_id": 233377}, {"caption": "a man explains a graphic design in a froeign language", "video_id": "video12643", "sen_id": 233378}, {"caption": "the steam logo is shown as a man talks in a foreign language about steamos", "video_id": "video12643", "sen_id": 233379}, {"caption": "a motorcyclist is discussing education as he goes on a ride", "video_id": "video10056", "sen_id": 233380}, {"caption": "a motorcycle speeding down the road while the narrator is speaking about the cost of schools and using profanity", "video_id": "video10056", "sen_id": 233381}, {"caption": "there is a man riding bike on the road", "video_id": "video10056", "sen_id": 233382}, {"caption": "in a long highway road a bicycle is riding by a masn", "video_id": "video10056", "sen_id": 233383}, {"caption": "a man is driving a motorcycle very fast on a two lane country road", "video_id": "video10056", "sen_id": 233384}, {"caption": "man driving his motorbike very vast through the path", "video_id": "video10056", "sen_id": 233385}, {"caption": "a motorcylceist talking about the problems with our education system while driving down the road", "video_id": "video10056", "sen_id": 233386}, {"caption": "a first person view of a motorcyclist as he travels down a two lane highway shows off the beautiful countryside", "video_id": "video10056", "sen_id": 233387}, {"caption": "the person rides the the motor bike really fast", "video_id": "video10056", "sen_id": 233388}, {"caption": "a helmeted man discusses education while riding a motorcycle", "video_id": "video10056", "sen_id": 233389}, {"caption": "a man drives a motorcycle down a two lane road and talks about education", "video_id": "video10056", "sen_id": 233390}, {"caption": "a man is riding bike very fast through the road with other vehicles", "video_id": "video10056", "sen_id": 233391}, {"caption": "a man riding a motorcycle down the road talking", "video_id": "video10056", "sen_id": 233392}, {"caption": "a person driving the bike on a highway road while a red car passes through", "video_id": "video10056", "sen_id": 233393}, {"caption": "a man rides the buke faster on the long road for travel purpose", "video_id": "video10056", "sen_id": 233394}, {"caption": "there is a bike riding on the road", "video_id": "video10056", "sen_id": 233395}, {"caption": "the biker is on a speed motor bikes cruisssing through the road", "video_id": "video10056", "sen_id": 233396}, {"caption": "a motorcycle rider wearing a helmet cam and driving on a curvy road", "video_id": "video10056", "sen_id": 233397}, {"caption": "a man is riding a motorcyle down a road", "video_id": "video10056", "sen_id": 233398}, {"caption": "a person is driving a black bike on the road", "video_id": "video10056", "sen_id": 233399}, {"caption": "a teenager and her cat lounging in bed", "video_id": "video11720", "sen_id": 233400}, {"caption": "a beautiful young woman sits on the bed trying to wake her pet up", "video_id": "video11720", "sen_id": 233401}, {"caption": "a girl is wearing pink and sitting on her bed talking to her dog", "video_id": "video11720", "sen_id": 233402}, {"caption": "a woman sits on her bed talking and then turns to talk to someone or a pet behind her on the bed", "video_id": "video11720", "sen_id": 233403}, {"caption": "a girl wearing a pink shirt sitting on a bed talking to a small animal sleeping on the bed", "video_id": "video11720", "sen_id": 233404}, {"caption": "a young girl on her bed tries to wake up her sleeping dog", "video_id": "video11720", "sen_id": 233405}, {"caption": "a giel with ling hair and pink inner sits on the bed with white bed spread", "video_id": "video11720", "sen_id": 233406}, {"caption": "sexy blonde in pink top on bed talking to camera", "video_id": "video11720", "sen_id": 233407}, {"caption": "there is a women talking from her bed", "video_id": "video11720", "sen_id": 233408}, {"caption": "the woman sits on the bed and talks", "video_id": "video11720", "sen_id": 233409}, {"caption": "a young girl tries to wake her sleeping puppy up", "video_id": "video11720", "sen_id": 233410}, {"caption": "beautiful lady wear pink coat and pink innershe has brown hair", "video_id": "video11720", "sen_id": 233411}, {"caption": "sexy blonde talking to the camera", "video_id": "video11720", "sen_id": 233412}, {"caption": "a woman with brown hair talking while sitting on a bed", "video_id": "video11720", "sen_id": 233413}, {"caption": "an attractive young woman tries to wake up her dog that is asleep on her bed", "video_id": "video11720", "sen_id": 233414}, {"caption": "a girl and baby sleeping upon the bed", "video_id": "video11720", "sen_id": 233415}, {"caption": "a woman in a pink shirt is lying on a bed", "video_id": "video11720", "sen_id": 233416}, {"caption": "one beautiful and lovely girl talk in bed", "video_id": "video11720", "sen_id": 233417}, {"caption": "girl in pink dress on bed talks to her pet", "video_id": "video11720", "sen_id": 233418}, {"caption": "a girl in white dress sleeping on bed with baby speaking displaying on screen", "video_id": "video11720", "sen_id": 233419}, {"caption": "two men are having a conversation about raping women and are then interrupted by another guy", "video_id": "video11042", "sen_id": 233420}, {"caption": "two men sitting talking as another man walks up", "video_id": "video11042", "sen_id": 233421}, {"caption": "a prison inmate brags about raping a woman to another inmate who is not impressed", "video_id": "video11042", "sen_id": 233422}, {"caption": "a man with lots of tattoos and a blonde man talk about raping women", "video_id": "video11042", "sen_id": 233423}, {"caption": "a clean-cut young man wearing a tee shirt with sleeves cut off speaks to a man covered with tattoos wearing sunglasses on a scarf around his head", "video_id": "video11042", "sen_id": 233424}, {"caption": "a man with many tatoos sitting down talking with a man wearing a grey shirt", "video_id": "video11042", "sen_id": 233425}, {"caption": "two men talking about how the younger man raped a woman in the park", "video_id": "video11042", "sen_id": 233426}, {"caption": "a man wearing a black shirt talking to another man", "video_id": "video11042", "sen_id": 233427}, {"caption": "a man talking about the woman he raped", "video_id": "video11042", "sen_id": 233428}, {"caption": "a tattooed man in a green skull head bandanna speaks with two other gentlemen", "video_id": "video11042", "sen_id": 233429}, {"caption": "a man is speaking to the another man", "video_id": "video11042", "sen_id": 233430}, {"caption": "two man sitting and having conversation about something", "video_id": "video11042", "sen_id": 233431}, {"caption": "a clip of two men discussing the raping of women", "video_id": "video11042", "sen_id": 233432}, {"caption": "there is a man with cap talking to his friends", "video_id": "video11042", "sen_id": 233433}, {"caption": "a guy with tattoos is talking to a person", "video_id": "video11042", "sen_id": 233434}, {"caption": "some prisoners discuss their past sexual assaults together in prison", "video_id": "video11042", "sen_id": 233435}, {"caption": "a person with full of tattoo in his body talking to someone near by", "video_id": "video11042", "sen_id": 233436}, {"caption": "a man in a blue bandana with facial hair talking to a male with blonde hair about rape", "video_id": "video11042", "sen_id": 233437}, {"caption": "two persons are talking between them and many of them are watching and one of the person hand is full of tatoos", "video_id": "video11042", "sen_id": 233438}, {"caption": "a man in a blue jacket is wanderingf", "video_id": "video11042", "sen_id": 233439}, {"caption": "a man is telling about hawaii as a vacation resort while showing various points", "video_id": "video10367", "sen_id": 233440}, {"caption": "a travel video shows attractions in hawaii including a beach and a volcano", "video_id": "video10367", "sen_id": 233441}, {"caption": "on a beach with some very pretty scenery", "video_id": "video10367", "sen_id": 233442}, {"caption": "a hawaiian surf shop has colorful boards on display outside the shop", "video_id": "video10367", "sen_id": 233443}, {"caption": "it contains scenery shots of mauna kea; people walking on a beach ponds and mountains", "video_id": "video10367", "sen_id": 233444}, {"caption": "all persons are walking on a beach", "video_id": "video10367", "sen_id": 233445}, {"caption": "a man is speaking about the features about a beach and its area", "video_id": "video10367", "sen_id": 233446}, {"caption": "a beach near the mountain and some of the restaurants is shown", "video_id": "video10367", "sen_id": 233447}, {"caption": "a long beach in hawaii winds around towards a resort hotel", "video_id": "video10367", "sen_id": 233448}, {"caption": "description of a specific area of the hawaiian islands on a sunny day", "video_id": "video10367", "sen_id": 233449}, {"caption": "a forest and shop are displayed", "video_id": "video10367", "sen_id": 233450}, {"caption": "a guy talking about relaxing on the beach of hawaii for a vacation", "video_id": "video10367", "sen_id": 233451}, {"caption": "relax in hawaii on the beach or surf take a vacation", "video_id": "video10367", "sen_id": 233452}, {"caption": "a couple walks on the beach a lake and a beach hut with a blue surfboard", "video_id": "video10367", "sen_id": 233453}, {"caption": "some people are walking around on a beach", "video_id": "video10367", "sen_id": 233454}, {"caption": "beautiful forest and a building showed slowly", "video_id": "video10367", "sen_id": 233455}, {"caption": "a commentator is presenting a nice area for tourist to visit", "video_id": "video10367", "sen_id": 233456}, {"caption": "a man and a woman are walking in the beach", "video_id": "video10367", "sen_id": 233457}, {"caption": "a guy speaking about the mauna kea beach and the kayaking there", "video_id": "video10367", "sen_id": 233458}, {"caption": "the exterior of a building is being filmed by someone", "video_id": "video10367", "sen_id": 233459}, {"caption": "a man is on a pier with a large barking dog that is running", "video_id": "video12450", "sen_id": 233460}, {"caption": "a man is calling after another man on the dock", "video_id": "video12450", "sen_id": 233461}, {"caption": "a military man discusses his dog which runs away from him", "video_id": "video12450", "sen_id": 233462}, {"caption": "funny clips from the movie turner and hooch with tom hanks", "video_id": "video12450", "sen_id": 233463}, {"caption": "a man struggles to control his dog in various situations", "video_id": "video12450", "sen_id": 233464}, {"caption": "tom hanks is confined by a pitbull and is having problem controlling the dog but following it in a movie clip", "video_id": "video12450", "sen_id": 233465}, {"caption": "a man is holding the leash of a huge dog and the dog is running around which cannot be controlled by this man", "video_id": "video12450", "sen_id": 233466}, {"caption": "some guy yelling and what appears to be a boat and then a dog taking him all over", "video_id": "video12450", "sen_id": 233467}, {"caption": "tom hanks is standing in front of hooch the dog yelling to a man then gets dragged in a chance while trying to restrain hooch", "video_id": "video12450", "sen_id": 233468}, {"caption": "a man yells at a group of people while being pulled by a dog", "video_id": "video12450", "sen_id": 233469}, {"caption": "a man with suit running along with a trained police dog", "video_id": "video12450", "sen_id": 233470}, {"caption": "tom hanks and a large brown rocwieler dog chase a large multi colored mutt", "video_id": "video12450", "sen_id": 233471}, {"caption": "a man tries to control a large dog that ignores him and does what he wants", "video_id": "video12450", "sen_id": 233472}, {"caption": "man is walking near the sea with his big dogs", "video_id": "video12450", "sen_id": 233473}, {"caption": "there is a man yelling to a group of people while trying to control a very large brown dog who is out of control", "video_id": "video12450", "sen_id": 233474}, {"caption": "there is a suit man talking from a harbor", "video_id": "video12450", "sen_id": 233475}, {"caption": "a man and his dog are standing in bad neigborhoods together", "video_id": "video12450", "sen_id": 233476}, {"caption": "it is a clip of a tom hanks movie", "video_id": "video12450", "sen_id": 233477}, {"caption": "tom hanks is trying to convince people that his dog is not misbehaved", "video_id": "video12450", "sen_id": 233478}, {"caption": "tom hanks in the movie turner and hooch trying to control the dog", "video_id": "video12450", "sen_id": 233479}, {"caption": "a man on a phone is showing off the photo capabilities", "video_id": "video11561", "sen_id": 233480}, {"caption": "a man describes and demonstrates a way to use his personal smart phone", "video_id": "video11561", "sen_id": 233481}, {"caption": "a man is working on the face of a smart phone", "video_id": "video11561", "sen_id": 233482}, {"caption": "man is looking at his phone and touching through screens as he swipes", "video_id": "video11561", "sen_id": 233483}, {"caption": "a man demonstrates and describes the use of a smart phone", "video_id": "video11561", "sen_id": 233484}, {"caption": "a man zooms in on a picture in his phone", "video_id": "video11561", "sen_id": 233485}, {"caption": "a man speaking a foreign language is demonstrating something on a smart phone", "video_id": "video11561", "sen_id": 233486}, {"caption": "someone is sharing a photo on their phone of a white man to a couple of other people", "video_id": "video11561", "sen_id": 233487}, {"caption": "a person is using his smart phone and explaining an application", "video_id": "video11561", "sen_id": 233488}, {"caption": "male individual speaking russian demonstrating a smartphone with several people around him", "video_id": "video11561", "sen_id": 233489}, {"caption": "a man demonstrates and describes how to use an app on his smart phone", "video_id": "video11561", "sen_id": 233490}, {"caption": "a person is holding a black phone and has it plugged in with a white cord", "video_id": "video11561", "sen_id": 233491}, {"caption": "a man is zooming in and out on a picture on a phone explaining something", "video_id": "video11561", "sen_id": 233492}, {"caption": "demonstration of a mobile phone and its applications", "video_id": "video11561", "sen_id": 233493}, {"caption": "the picture is been zoomed by the person using mobile", "video_id": "video11561", "sen_id": 233494}, {"caption": "a person wearing two rings on their right hand holds a smartphone while a white charging cord is plugged in", "video_id": "video11561", "sen_id": 233495}, {"caption": "a man explaining something on his latest smart phone", "video_id": "video11561", "sen_id": 233496}, {"caption": "a man shows and describes a touchscreen smart phone", "video_id": "video11561", "sen_id": 233497}, {"caption": "a man uses a smart phone while others stand by", "video_id": "video11561", "sen_id": 233498}, {"caption": "a person is playing with their phone", "video_id": "video11561", "sen_id": 233499}, {"caption": "a small animal dances around in falling vegetables", "video_id": "video10165", "sen_id": 233500}, {"caption": "an animation showing a brown squirrel with buck teeth dancing as food fall from the sky", "video_id": "video10165", "sen_id": 233501}, {"caption": "fruits and vegetables fall from the sky as a small rodent dances", "video_id": "video10165", "sen_id": 233502}, {"caption": "vegetables are flying in the air as an animal jumps around them", "video_id": "video10165", "sen_id": 233503}, {"caption": "carrots tomatoes corn and radishes are falling from the sky and a bunny is jumping up to catch some", "video_id": "video10165", "sen_id": 233504}, {"caption": "this gopher is in a paradise of vegetables", "video_id": "video10165", "sen_id": 233505}, {"caption": "an animated scene with a beaver floating in lots of vegtables", "video_id": "video10165", "sen_id": 233506}, {"caption": "there is a animal enjoying with fruits in the sky", "video_id": "video10165", "sen_id": 233507}, {"caption": "a rain of vegetables falls from the sky while a small rodent dances", "video_id": "video10165", "sen_id": 233508}, {"caption": "a ground hog has a dream where vegetables fall from the sky", "video_id": "video10165", "sen_id": 233509}, {"caption": "animated squirrel enjoying in the air with a lot of vegetables", "video_id": "video10165", "sen_id": 233510}, {"caption": "a cartoon beaver like animal is watching different kinds of vegetables fall from the sky", "video_id": "video10165", "sen_id": 233511}, {"caption": "a cartoon beaver celebrates as food falls from the sky", "video_id": "video10165", "sen_id": 233512}, {"caption": "a four-legged animal with a tan body brown extremities and big front teeth jumps into the sky while green and red fruits and vegetables rain down", "video_id": "video10165", "sen_id": 233513}, {"caption": "on a cartoon video the character jumping between the vegetables like carrot and tomato", "video_id": "video10165", "sen_id": 233514}, {"caption": "vegetables fall from the sky while a smiling gopher dances", "video_id": "video10165", "sen_id": 233515}, {"caption": "a squirrel flying in the air between the vegetables and enjoying", "video_id": "video10165", "sen_id": 233516}, {"caption": "there are orange carrots and red tomatoes falling down with an animal that is brown", "video_id": "video10165", "sen_id": 233517}, {"caption": "tomatoes and vegetables fall from the sky as a chipmunk floats up to them", "video_id": "video10165", "sen_id": 233518}, {"caption": "a gopher is being assaulted by some food", "video_id": "video10165", "sen_id": 233519}, {"caption": "an conductor is conducting an orchestra in a concert hall while a choir dressed in blue robes are singing", "video_id": "video11603", "sen_id": 233520}, {"caption": "a conductor stands between two soloist singers holding microphones in front of the formally-dressed orchestra and chorus in blue robes as overhead lights highlight different sections and screens show different pictures", "video_id": "video11603", "sen_id": 233521}, {"caption": "an orchestra performs does a show and makes music", "video_id": "video11603", "sen_id": 233522}, {"caption": "a foreign language is being spoken in song in front of an audience", "video_id": "video11603", "sen_id": 233523}, {"caption": "a band is being lead by a conductor", "video_id": "video11603", "sen_id": 233524}, {"caption": "a man conducting an orchestra band on stage", "video_id": "video11603", "sen_id": 233525}, {"caption": "there is a group song going on with loud music", "video_id": "video11603", "sen_id": 233526}, {"caption": "a men in black suit sings in a pub", "video_id": "video11603", "sen_id": 233527}, {"caption": "an orchestra and choir performing on stage before a crowd of the song baba yetu", "video_id": "video11603", "sen_id": 233528}, {"caption": "a men are singing for a music on a stage", "video_id": "video11603", "sen_id": 233529}, {"caption": "there is a suit musician singing in a stage", "video_id": "video11603", "sen_id": 233530}, {"caption": "man singing along with a choir and orchestra", "video_id": "video11603", "sen_id": 233531}, {"caption": "singer and the orchestra are giving their performance its probably a studio or may be a live concert", "video_id": "video11603", "sen_id": 233532}, {"caption": "two men are singing on stage while backed up by a choir", "video_id": "video11603", "sen_id": 233533}, {"caption": "two singers stand on each side of a vigorous conductor", "video_id": "video11603", "sen_id": 233534}, {"caption": "a musician is giving direction and people are singing", "video_id": "video11603", "sen_id": 233535}, {"caption": "an orchestra plays the back ground music for a film", "video_id": "video11603", "sen_id": 233536}, {"caption": "an orchestra and chorus is playing on a stage with a display in the background showing a cgi play", "video_id": "video11603", "sen_id": 233537}, {"caption": "a man holding mic in hand singing and other in black dress waving hands singing playing music audience watching displaying on screen", "video_id": "video11603", "sen_id": 233538}, {"caption": " two soloists a choir and an orchestra recording a theme song for a movie", "video_id": "video11603", "sen_id": 233539}, {"caption": "lady gaga is performing for one of her music videos", "video_id": "video11675", "sen_id": 233540}, {"caption": "there is a woman with black hair and a rhinestoned face dancing", "video_id": "video11675", "sen_id": 233541}, {"caption": "a female singer uses exotic costumes as she dances and sings", "video_id": "video11675", "sen_id": 233542}, {"caption": "watch lady gaga perform in one of the most anticipated music videos of the year", "video_id": "video11675", "sen_id": 233543}, {"caption": "black and white music video featuring lady gaga", "video_id": "video11675", "sen_id": 233544}, {"caption": "a young woman singing and wearing a black top", "video_id": "video11675", "sen_id": 233545}, {"caption": "a girl making a music video with the wind blowing through her hair", "video_id": "video11675", "sen_id": 233546}, {"caption": "the video is entirely in black in white as a woman wildly swings her hair at the camera and people covered in beads dance across the scene", "video_id": "video11675", "sen_id": 233547}, {"caption": "this music video features a woman with a wild hair do", "video_id": "video11675", "sen_id": 233548}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video11675", "sen_id": 233549}, {"caption": "a singer with a mask beads in her neck is shaking her head for music", "video_id": "video11675", "sen_id": 233550}, {"caption": "a girl is singing and dancing a pop song", "video_id": "video11675", "sen_id": 233551}, {"caption": "a women with long hair is singing and dancing", "video_id": "video11675", "sen_id": 233552}, {"caption": "a lady with back long hair is dancing while the man singing", "video_id": "video11675", "sen_id": 233553}, {"caption": "a girl is dancing for a song and music", "video_id": "video11675", "sen_id": 233554}, {"caption": "sexy brunette singer dancing and singing in her music video", "video_id": "video11675", "sen_id": 233555}, {"caption": "a women sings song in english and she is wearing black bikini", "video_id": "video11675", "sen_id": 233556}, {"caption": "a pop song is sung by a lady and listen by a man", "video_id": "video11675", "sen_id": 233557}, {"caption": "a woman performs wearing masks and has large hairdo", "video_id": "video11675", "sen_id": 233558}, {"caption": "the beautiful girl in black dress is singing and dancing along with others", "video_id": "video11675", "sen_id": 233559}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video12327", "sen_id": 233560}, {"caption": "a video game replay of a soccer play", "video_id": "video12327", "sen_id": 233561}, {"caption": "a view of a soccer game from afar", "video_id": "video12327", "sen_id": 233562}, {"caption": "a man demonstrates and describes a video game he is playing", "video_id": "video12327", "sen_id": 233563}, {"caption": "someone is playing a soccer video game and scoring goals", "video_id": "video12327", "sen_id": 233564}, {"caption": "a replay of a soccer video game with commentary", "video_id": "video12327", "sen_id": 233565}, {"caption": "a video game where there are players in the ground playing football", "video_id": "video12327", "sen_id": 233566}, {"caption": "a red and black colored jersey wearing players playing football in football and black colored jersey wearing group goals a goal in match", "video_id": "video12327", "sen_id": 233567}, {"caption": "animated teams runs on the soccer field trying to score goals", "video_id": "video12327", "sen_id": 233568}, {"caption": "the players are wearing uniforms madly running behind the ball", "video_id": "video12327", "sen_id": 233569}, {"caption": "football game is running on a video game screen", "video_id": "video12327", "sen_id": 233570}, {"caption": "two teams are playing football on ground", "video_id": "video12327", "sen_id": 233571}, {"caption": "its a football matchplayers are trying to put the goal to win the match", "video_id": "video12327", "sen_id": 233572}, {"caption": "a red and blue t shirt wearing dress playing football game inside stadium an audience watching", "video_id": "video12327", "sen_id": 233573}, {"caption": "two football teams contesting one with blue suit and the other with red", "video_id": "video12327", "sen_id": 233574}, {"caption": "players are moving fast for nice shots in football", "video_id": "video12327", "sen_id": 233575}, {"caption": "two teams run back and forth on a soccer field trying to score a goal", "video_id": "video12327", "sen_id": 233576}, {"caption": "red and blue dress playing foot ball running inside stadium audience watching game", "video_id": "video12327", "sen_id": 233577}, {"caption": "player playing video game trying to score a goal", "video_id": "video12327", "sen_id": 233578}, {"caption": "some soccer players are running around a field", "video_id": "video12327", "sen_id": 233579}, {"caption": "two men in suits talk on a news broadcast", "video_id": "video12014", "sen_id": 233580}, {"caption": "we see two men speaking on a split screen on a news channel", "video_id": "video12014", "sen_id": 233581}, {"caption": "two men in ties talk on a television screen", "video_id": "video12014", "sen_id": 233582}, {"caption": "a news announcer in a suit describes the mood ab labor hq to another news anchor in a red tie", "video_id": "video12014", "sen_id": 233583}, {"caption": "two tv anchor from sky new talks about the party who wins the election will form the goverment", "video_id": "video12014", "sen_id": 233584}, {"caption": "a split screen of two newscasters discussing english politics", "video_id": "video12014", "sen_id": 233585}, {"caption": "news reporters speaking the voting for the parties", "video_id": "video12014", "sen_id": 233586}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12014", "sen_id": 233587}, {"caption": "the news journalist asking the reporter questions about his findings", "video_id": "video12014", "sen_id": 233588}, {"caption": "two men are talking on a new show about expectations", "video_id": "video12014", "sen_id": 233589}, {"caption": "the two news readers reading the news in two portion of the screen", "video_id": "video12014", "sen_id": 233590}, {"caption": "two men on television are engaged in a conversation about political parties", "video_id": "video12014", "sen_id": 233591}, {"caption": "the man in the black suit is asking the reporter some questions about the insident", "video_id": "video12014", "sen_id": 233592}, {"caption": "two men in suits are discussing the political situation in england", "video_id": "video12014", "sen_id": 233593}, {"caption": "two persons are reading some news on sky news channel", "video_id": "video12014", "sen_id": 233594}, {"caption": "the news anchor talks to the other man about politics", "video_id": "video12014", "sen_id": 233595}, {"caption": "there are two mens talking on tv screen together", "video_id": "video12014", "sen_id": 233596}, {"caption": "a man talking with another man on the media", "video_id": "video12014", "sen_id": 233597}, {"caption": "2 men from a sky news are talking about politics", "video_id": "video12014", "sen_id": 233598}, {"caption": "two men on tv are talking about something", "video_id": "video12014", "sen_id": 233599}, {"caption": "a person rides on a dirt bike to a landmark", "video_id": "video12145", "sen_id": 233600}, {"caption": "a couple ride a motorcycle to a stone temple", "video_id": "video12145", "sen_id": 233601}, {"caption": "a couple of people are riding a bike on a green lawn in front of an old stone building", "video_id": "video12145", "sen_id": 233602}, {"caption": "men and women going by bike and reaching the temple", "video_id": "video12145", "sen_id": 233603}, {"caption": "two people are riding on a motor bike across the grass and a girl talks", "video_id": "video12145", "sen_id": 233604}, {"caption": "a man drives a motorcycle through a field towards a stoney monument with a dark-clothed passenger on the back", "video_id": "video12145", "sen_id": 233605}, {"caption": "the lovers travels on a motorcycle and stops near a beautiful temple", "video_id": "video12145", "sen_id": 233606}, {"caption": "a woman and a man riding a scooter in front of an ancient temple", "video_id": "video12145", "sen_id": 233607}, {"caption": "a girl and a guy going on bike to somewhere", "video_id": "video12145", "sen_id": 233608}, {"caption": "two people drive up to a historical place on a bike", "video_id": "video12145", "sen_id": 233609}, {"caption": "couple driving on the bike next to the temple", "video_id": "video12145", "sen_id": 233610}, {"caption": "a person is riding bike with one lady and stop in front of temple grassland", "video_id": "video12145", "sen_id": 233611}, {"caption": "holy trip to the ancient temple with wife on motorcycle", "video_id": "video12145", "sen_id": 233612}, {"caption": "a man and friend travel in a rural area through grass and park near a stone temple", "video_id": "video12145", "sen_id": 233613}, {"caption": "two people are riding a small motorcycle across a field", "video_id": "video12145", "sen_id": 233614}, {"caption": "a person is riding their motorcycle on the road", "video_id": "video12145", "sen_id": 233615}, {"caption": "a man lady coming on the bike", "video_id": "video12145", "sen_id": 233616}, {"caption": "a couple riding a motorcycle is on a journey that ends when they arrive at an old structure", "video_id": "video12145", "sen_id": 233617}, {"caption": "two people are riding a motorcycle on the grass", "video_id": "video12145", "sen_id": 233618}, {"caption": "people ride a motorcycle to an ancient temple", "video_id": "video12145", "sen_id": 233619}, {"caption": "a man talks about a movie during a tv interview", "video_id": "video11897", "sen_id": 233620}, {"caption": "a male host wearing a blue shirt explain how make a profit making a movie", "video_id": "video11897", "sen_id": 233621}, {"caption": "a guy in a blue t-shirt is talking in and interview about movies with quality actors", "video_id": "video11897", "sen_id": 233622}, {"caption": "a man explaining how movies make massive profits", "video_id": "video11897", "sen_id": 233623}, {"caption": "a man in a blue shirt is speaking into a microphone", "video_id": "video11897", "sen_id": 233624}, {"caption": "on a television set a movie critic discusses current films and their profits", "video_id": "video11897", "sen_id": 233625}, {"caption": "a person in a blue shirt sitting in front of a microphone talking about actors and movies", "video_id": "video11897", "sen_id": 233626}, {"caption": "a man in a blue shirt is discussing with two other people on a panel about how you can make a big profit for not a lot of money in a certain moving filming situation by using high quality actors", "video_id": "video11897", "sen_id": 233627}, {"caption": "a man in a blue shirt is talking into a microphone to other talk show hosts", "video_id": "video11897", "sen_id": 233628}, {"caption": "three man talking together infront of mike", "video_id": "video11897", "sen_id": 233629}, {"caption": "a man is blue shirt is talking about a movie", "video_id": "video11897", "sen_id": 233630}, {"caption": "a man in blue t-shirt in front of mike is talking about the movie", "video_id": "video11897", "sen_id": 233631}, {"caption": "a person is being interviewed by a tv personal about movie and he is talking about the movie and the way he act etc", "video_id": "video11897", "sen_id": 233632}, {"caption": "a man in blue tshirt talking from a studio", "video_id": "video11897", "sen_id": 233633}, {"caption": "the blue tshirt wearing men on the grassland telling the new movie artcile", "video_id": "video11897", "sen_id": 233634}, {"caption": "a man in a blue tshirt is talking on the radio", "video_id": "video11897", "sen_id": 233635}, {"caption": "the man with a blue shirt is talking on the microphone", "video_id": "video11897", "sen_id": 233636}, {"caption": "a man in blue is talking about making movies with quality actors", "video_id": "video11897", "sen_id": 233637}, {"caption": "a actor speaking about the top movies of the weekend", "video_id": "video11897", "sen_id": 233638}, {"caption": "a man talking about getting quality actors for nothing and spending only 10 million on a film", "video_id": "video11897", "sen_id": 233639}, {"caption": "two women are in the forest having a sword fight", "video_id": "video11099", "sen_id": 233640}, {"caption": "two women in red silk clothing sword fighting in the forest", "video_id": "video11099", "sen_id": 233641}, {"caption": "two asian woman in red are fighting in a woods one woman begins almost flying through the woods while the second woman chargers at her with knives", "video_id": "video11099", "sen_id": 233642}, {"caption": "two asian women dressed in all red are battling through a forest of trees with falling leaves", "video_id": "video11099", "sen_id": 233643}, {"caption": "two women in flowing red outfits sword fight in a forest", "video_id": "video11099", "sen_id": 233644}, {"caption": "a woman is is fight with a knife in the scene", "video_id": "video11099", "sen_id": 233645}, {"caption": "a scene from the movie crouching tiger hidden dragon", "video_id": "video11099", "sen_id": 233646}, {"caption": "two women dressed in red having a sword fight", "video_id": "video11099", "sen_id": 233647}, {"caption": "a girl in red trying to kill another girl by using sword", "video_id": "video11099", "sen_id": 233648}, {"caption": "two japanese looking girls wearing red dresses is performing attack by one through sword and other is escaping herself", "video_id": "video11099", "sen_id": 233649}, {"caption": "two asian women in red dresses fighting in the woods", "video_id": "video11099", "sen_id": 233650}, {"caption": "there is a woman in red dressing fighting against a woman", "video_id": "video11099", "sen_id": 233651}, {"caption": "two woman wearing red are fighting and flying through the air using swords", "video_id": "video11099", "sen_id": 233652}, {"caption": "a two japanese red dressed girls where fighting with their swards", "video_id": "video11099", "sen_id": 233653}, {"caption": "a fight between two japanese ladies in a forest while they fly", "video_id": "video11099", "sen_id": 233654}, {"caption": "some people with some red dresses are doing things", "video_id": "video11099", "sen_id": 233655}, {"caption": "women in red fight with swords and float above the ground", "video_id": "video11099", "sen_id": 233656}, {"caption": " with bright red clothing is sword fighting in the fall leaves", "video_id": "video11099", "sen_id": 233657}, {"caption": "two asian women fight and attack each other wearing red", "video_id": "video11099", "sen_id": 233658}, {"caption": "two women in red run through a forest while one of them tries to attack the other with swords the other continues to run away", "video_id": "video11099", "sen_id": 233659}, {"caption": "a baby wearing a funny face is laying down smiling", "video_id": "video10326", "sen_id": 233660}, {"caption": "a baby with a mustache gotee and fake eyebrows", "video_id": "video10326", "sen_id": 233661}, {"caption": "a decorated baby in a white outfit lying on a bed", "video_id": "video10326", "sen_id": 233662}, {"caption": "an infant sitting in a highchair is wearing exaggerated eyebrows mustache while laughing", "video_id": "video10326", "sen_id": 233663}, {"caption": "a baby dressed in white with a fake mustache and fake eyebrows", "video_id": "video10326", "sen_id": 233664}, {"caption": "there is a baby playing in the room", "video_id": "video10326", "sen_id": 233665}, {"caption": "a baby has a set of fake facial hair on his face", "video_id": "video10326", "sen_id": 233666}, {"caption": "sentence 1: a baby has been sticked with artificial beard and mustache sentence 2: an infant in white dress is laughing at the camera in the bed", "video_id": "video10326", "sen_id": 233667}, {"caption": "baby with mustache and beard laughing", "video_id": "video10326", "sen_id": 233668}, {"caption": "a baby with a mustache is being filmed", "video_id": "video10326", "sen_id": 233669}, {"caption": "here to a small baby a moustache and beards are made and taken its videos", "video_id": "video10326", "sen_id": 233670}, {"caption": "a baby with fake hair on smiles and laughs at the camera", "video_id": "video10326", "sen_id": 233671}, {"caption": "a baby wearing a fake mustache beard and eye brows laughs at her situation", "video_id": "video10326", "sen_id": 233672}, {"caption": "an infant wearing white is smiling and laughing at the camera as he wears a costume on his face of fake eyebrows", "video_id": "video10326", "sen_id": 233673}, {"caption": "a baby with facial hair is opening its mouth", "video_id": "video10326", "sen_id": 233674}, {"caption": "a small boys is with mustach and beard he is cute", "video_id": "video10326", "sen_id": 233675}, {"caption": "a bald baby squeals with happiness while adorned with thick black eyebrows a black moustache and pointed goatee", "video_id": "video10326", "sen_id": 233676}, {"caption": "a baby wearing a mustache and fake eyebrows laughs", "video_id": "video10326", "sen_id": 233677}, {"caption": "a baby with mustaches and beard eyebrow scrawling", "video_id": "video10326", "sen_id": 233678}, {"caption": "a kid with facial hair is on a camera", "video_id": "video10326", "sen_id": 233679}, {"caption": "two teams of men playing a sport that resembles volleyball", "video_id": "video10443", "sen_id": 233680}, {"caption": "a ranking of exciting scorings in volleyball games begins", "video_id": "video10443", "sen_id": 233681}, {"caption": "an announcer describes action in a high level men's volleyball game", "video_id": "video10443", "sen_id": 233682}, {"caption": "a red team and blue team play a volleyball game", "video_id": "video10443", "sen_id": 233683}, {"caption": "two teams of volleyball players competing on a basketball court", "video_id": "video10443", "sen_id": 233684}, {"caption": "people gathered in the stadium to watch some match", "video_id": "video10443", "sen_id": 233685}, {"caption": "a compilation video clips of teams playing volleyball there is a countdown between the teams playing starting with the number 20", "video_id": "video10443", "sen_id": 233686}, {"caption": "two male teams playing volleyball during a on going series", "video_id": "video10443", "sen_id": 233687}, {"caption": "several clips of men s volleyball play with a french rap track as accompaniment", "video_id": "video10443", "sen_id": 233688}, {"caption": "men are playing games of professional volleyball in front of fans", "video_id": "video10443", "sen_id": 233689}, {"caption": "there is a red jersey team playing volleyball with tricks", "video_id": "video10443", "sen_id": 233690}, {"caption": "players are playing volley ball", "video_id": "video10443", "sen_id": 233691}, {"caption": "two teams of men play in a volley ball match in a large stadium", "video_id": "video10443", "sen_id": 233692}, {"caption": "two teams are playing vollyball and a crowd watching them", "video_id": "video10443", "sen_id": 233693}, {"caption": "some girls are playing volleyball against each other", "video_id": "video10443", "sen_id": 233694}, {"caption": "a highlight reel of several volleyball games with music in the background", "video_id": "video10443", "sen_id": 233695}, {"caption": "a group of men are playing volleyball while music plays in the backgorund", "video_id": "video10443", "sen_id": 233696}, {"caption": "footage from various men s volleyball games featuring epic plays", "video_id": "video10443", "sen_id": 233697}, {"caption": "a polish volleyball game in 2014 accompanied by rap music", "video_id": "video10443", "sen_id": 233698}, {"caption": "some text is being shown on a brown background", "video_id": "video10443", "sen_id": 233699}, {"caption": "two women waiting on the friend to arrive", "video_id": "video10968", "sen_id": 233700}, {"caption": "a young woman in black talking about how she is waiting for her friends to arrive at her house", "video_id": "video10968", "sen_id": 233701}, {"caption": "a girl with pretty makeup is standing in her house pointing to her christmas tree", "video_id": "video10968", "sen_id": 233702}, {"caption": "a woman in black is filming herself; waiting for her firend", "video_id": "video10968", "sen_id": 233703}, {"caption": "a woman with dark hair and a dark shirt is talking about waiting for their friend to get there another woman walks behind the first woman and then stands near a small christmas tree", "video_id": "video10968", "sen_id": 233704}, {"caption": "a pretty woman with a lot of make up explains that her and another woman are waiting for a friend to arrive the other woman goes and stands next to a christmas tree in the background", "video_id": "video10968", "sen_id": 233705}, {"caption": "a woman is in the video showing off a christamas tree and waiting for her friend", "video_id": "video10968", "sen_id": 233706}, {"caption": "a happy lady passing some information", "video_id": "video10968", "sen_id": 233707}, {"caption": "a girl and her friend are waiting for their pal to arrive", "video_id": "video10968", "sen_id": 233708}, {"caption": "a fat women in free hair in black dress speaks", "video_id": "video10968", "sen_id": 233709}, {"caption": "a girl in black dress standing speaking laughing beside other girl moving waving hands pricking her eyes displaying on screen", "video_id": "video10968", "sen_id": 233710}, {"caption": "a woman with brown hair and heavy make-up on waiting on friends", "video_id": "video10968", "sen_id": 233711}, {"caption": "one beautiful and lovely women talks about something", "video_id": "video10968", "sen_id": 233712}, {"caption": "brunette woman talking in her living room with a friend", "video_id": "video10968", "sen_id": 233713}, {"caption": "a woman with brown hair is talking about something", "video_id": "video10968", "sen_id": 233714}, {"caption": "two women waiting for their friends to show up and showing off their christmas tree", "video_id": "video10968", "sen_id": 233715}, {"caption": "two girls taking videos of themselves waiting for their friends", "video_id": "video10968", "sen_id": 233716}, {"caption": "a woman waiting for her friends and getting ready to go out during the christmas holiday", "video_id": "video10968", "sen_id": 233717}, {"caption": "a girl in black color wearing dress smiling shaking hand pricking eyes displaying on screen", "video_id": "video10968", "sen_id": 233718}, {"caption": "two ladies vlog in front of their christmas tree while waiting for friends to arrive", "video_id": "video10968", "sen_id": 233719}, {"caption": "a couple of people talking while playing a video game", "video_id": "video10989", "sen_id": 233720}, {"caption": "a person playing vidieo game trolling others by talking like a woman while others listen", "video_id": "video10989", "sen_id": 233721}, {"caption": "a gun used by a cartoon man racks up a score on a computer screen", "video_id": "video10989", "sen_id": 233722}, {"caption": "a video game commentator is playing call of duty there are funny pictures added in the video", "video_id": "video10989", "sen_id": 233723}, {"caption": "a man is being verbally profane while playing a video game", "video_id": "video10989", "sen_id": 233724}, {"caption": "a cartoon white ball with a face is talking while a video game is being played", "video_id": "video10989", "sen_id": 233725}, {"caption": "a man playing call of dusty with a blue gun has stick figure animations pop on screen", "video_id": "video10989", "sen_id": 233726}, {"caption": "a man is playing a video game and a cartoon is making weird sound", "video_id": "video10989", "sen_id": 233727}, {"caption": "someone is playing a video game while a white ball cartoon pops up on screen", "video_id": "video10989", "sen_id": 233728}, {"caption": "this is a clip from a gamer that is recording himself play the game", "video_id": "video10989", "sen_id": 233729}, {"caption": "there is a man taking his gun to shoot", "video_id": "video10989", "sen_id": 233730}, {"caption": "a video game is character is holding a large gun on a game", "video_id": "video10989", "sen_id": 233731}, {"caption": "a person is explaining about the animated game with some voice recorded", "video_id": "video10989", "sen_id": 233732}, {"caption": "person is trying to kill and destroy his enemies", "video_id": "video10989", "sen_id": 233733}, {"caption": "this is a video of a person playing call of duty with some weird animations", "video_id": "video10989", "sen_id": 233734}, {"caption": "sexual taunts are sub-titled on the screen as someone plays a first-person shooting game", "video_id": "video10989", "sen_id": 233735}, {"caption": "playing a video game with edited sexual content via animated stick figures", "video_id": "video10989", "sen_id": 233736}, {"caption": "a person is playing a shooter game with online players", "video_id": "video10989", "sen_id": 233737}, {"caption": "a video game of cartoon camera catching and screen displaying on screen", "video_id": "video10989", "sen_id": 233738}, {"caption": "someone is playing a first person video game", "video_id": "video10989", "sen_id": 233739}, {"caption": "a woman and man are walking through a dry cleaning shop", "video_id": "video11755", "sen_id": 233740}, {"caption": "a man follows a woman down a corridor", "video_id": "video11755", "sen_id": 233741}, {"caption": "a commercial featuring the beautiful actress emma stone", "video_id": "video11755", "sen_id": 233742}, {"caption": "a woman walks through rooms filled with clothing while complaining", "video_id": "video11755", "sen_id": 233743}, {"caption": "a woman walking in a building and standing next to a man with a hat", "video_id": "video11755", "sen_id": 233744}, {"caption": "a man wearing a fedora follows a blond woman to a back room", "video_id": "video11755", "sen_id": 233745}, {"caption": "a beautiful girl in black shorts moves into a room and meets a man", "video_id": "video11755", "sen_id": 233746}, {"caption": "a person wearing cap with black dressing is following and speaking with a white girl", "video_id": "video11755", "sen_id": 233747}, {"caption": "there is a blond woman walking down a hallway and coming into a room filled with clothes where there is a man waiting for her", "video_id": "video11755", "sen_id": 233748}, {"caption": "blonde in black dress walking with male in dark suit down a dark hallway talking theater", "video_id": "video11755", "sen_id": 233749}, {"caption": "a blond woman walks through a hallway to a dressing room area while expressing dissatisfaction to a man in a hat", "video_id": "video11755", "sen_id": 233750}, {"caption": "there is a woman walking inside the building", "video_id": "video11755", "sen_id": 233751}, {"caption": "the man wearing a hat and black jacket talks to the woman", "video_id": "video11755", "sen_id": 233752}, {"caption": "a woman walks through the backstage area of a theater", "video_id": "video11755", "sen_id": 233753}, {"caption": "a woman is walking down a back hallway into a dressing room a man is speaking to the woman", "video_id": "video11755", "sen_id": 233754}, {"caption": "a woman walk backstage and meets with a man to discuss something bothering her", "video_id": "video11755", "sen_id": 233755}, {"caption": "a woman walking through a clothing store and talking to a man", "video_id": "video11755", "sen_id": 233756}, {"caption": "a lady walking around looking for someone or something", "video_id": "video11755", "sen_id": 233757}, {"caption": "a girl walks through the backstage area of a show", "video_id": "video11755", "sen_id": 233758}, {"caption": "a man in a hat and a woman are walking", "video_id": "video11755", "sen_id": 233759}, {"caption": "a cartoony still and wacky music make light of child abuse", "video_id": "video12141", "sen_id": 233760}, {"caption": "a green background is covered in signs about children's pranks", "video_id": "video12141", "sen_id": 233761}, {"caption": "a picture of a man with music playing in the background", "video_id": "video12141", "sen_id": 233762}, {"caption": "two links about mother's abusing children are presented on the screen", "video_id": "video12141", "sen_id": 233763}, {"caption": "the words best in class appear above the description of two videos while music plays", "video_id": "video12141", "sen_id": 233764}, {"caption": "a mom and text saying mom abusing child 3", "video_id": "video12141", "sen_id": 233765}, {"caption": "there a two graphics showing cartoons of pranks against a bright background", "video_id": "video12141", "sen_id": 233766}, {"caption": "out the speakers is playing over still images of apparent child abusing links", "video_id": "video12141", "sen_id": 233767}, {"caption": "a graphic of an angry woman and a photograph of a man holding his chin are next to titles placed before a bright green background of the destruction of a city block", "video_id": "video12141", "sen_id": 233768}, {"caption": "loud neo-pop club-like music plays as the thumbnails for two videos lie on the screen motionless", "video_id": "video12141", "sen_id": 233769}, {"caption": "a intro scene of mom abusing child prank video", "video_id": "video12141", "sen_id": 233770}, {"caption": "two coupons are kept for display on a monitor for childrens", "video_id": "video12141", "sen_id": 233771}, {"caption": "a video is being played for a sims video game", "video_id": "video12141", "sen_id": 233772}, {"caption": "different cards are there of beautiful pictures and messages", "video_id": "video12141", "sen_id": 233773}, {"caption": "the candidates for best in class were animated for effect", "video_id": "video12141", "sen_id": 233774}, {"caption": "a screenshot is shown of two videos that are finalists in a contest", "video_id": "video12141", "sen_id": 233775}, {"caption": "best in class mom abusive child and women and men present", "video_id": "video12141", "sen_id": 233776}, {"caption": "a person is talking about different kind of pranks", "video_id": "video12141", "sen_id": 233777}, {"caption": "an cartoon picture showing displaying on screen", "video_id": "video12141", "sen_id": 233778}, {"caption": "showing a green back grounder poster saying best in class", "video_id": "video12141", "sen_id": 233779}, {"caption": "red and white letters displaying the voice of god in a video", "video_id": "video10510", "sen_id": 233780}, {"caption": "a narrator recites a biblical quote as an american flag falls from the top of the white house", "video_id": "video10510", "sen_id": 233781}, {"caption": "a man reads a verse from obediah talking about nesting", "video_id": "video10510", "sen_id": 233782}, {"caption": "there is a picture of the white house and someone superimposed a biblical verse with smoke on it", "video_id": "video10510", "sen_id": 233783}, {"caption": "a scripture is being displayed", "video_id": "video10510", "sen_id": 233784}, {"caption": "a bible verse is displayed with the background of a building and smoke clouds", "video_id": "video10510", "sen_id": 233785}, {"caption": "a bible verse is displayed with music playing", "video_id": "video10510", "sen_id": 233786}, {"caption": "some words are written on the screen of an old fort which undergoes some transformation", "video_id": "video10510", "sen_id": 233787}, {"caption": "a bomb is going off in the background of a picture of the white house", "video_id": "video10510", "sen_id": 233788}, {"caption": "a bible verse is shown on screen and read aloud by an intimidating echoing voice", "video_id": "video10510", "sen_id": 233789}, {"caption": "a screen with a building on it also with written words", "video_id": "video10510", "sen_id": 233790}, {"caption": "a christian scripture from the bible with a building in the background", "video_id": "video10510", "sen_id": 233791}, {"caption": "text is show an explosion is occuring in the background", "video_id": "video10510", "sen_id": 233792}, {"caption": "a breakdown of some buliding with lot of dust is shown", "video_id": "video10510", "sen_id": 233793}, {"caption": "the bible verse obadiah 1: 3 - 4 is positioned over a slightly obscured clip of the white house", "video_id": "video10510", "sen_id": 233794}, {"caption": "scriptures from the bible are quoted as a large building is shown in the background", "video_id": "video10510", "sen_id": 233795}, {"caption": "a biblical passage with a government building in the background", "video_id": "video10510", "sen_id": 233796}, {"caption": "religious backgrounf with a man s voice reading a quotation", "video_id": "video10510", "sen_id": 233797}, {"caption": "a quotation from the book of obadiah is shown in text in the foreground and read by a narrator as a nuclear bomb detonation is superimposed over the white house in the background", "video_id": "video10510", "sen_id": 233798}, {"caption": "the exterior of a building is being filmed by someone", "video_id": "video10510", "sen_id": 233799}, {"caption": "a video clip of the singer jojo throughout the years", "video_id": "video11117", "sen_id": 233800}, {"caption": "a photo transitioning video of a woman who is a singer", "video_id": "video11117", "sen_id": 233801}, {"caption": "a bunch of images of the pop singer jojo", "video_id": "video11117", "sen_id": 233802}, {"caption": "some sequences of a pretty blond girl smiling and singing", "video_id": "video11117", "sen_id": 233803}, {"caption": "highlights of a singer s career are displayed in a slide show", "video_id": "video11117", "sen_id": 233804}, {"caption": "a woman is singing as pictures of a girl are shown", "video_id": "video11117", "sen_id": 233805}, {"caption": "a picture of a woman is displaying and songs playing", "video_id": "video11117", "sen_id": 233806}, {"caption": "a girl in still image singing mic in her hand displaying on screen", "video_id": "video11117", "sen_id": 233807}, {"caption": "all woman s are showing their fashion pics", "video_id": "video11117", "sen_id": 233808}, {"caption": "still photos of a woman are shown while music is played", "video_id": "video11117", "sen_id": 233809}, {"caption": "the beautiful girl in beautiful dress is singing and dancing in different dresses", "video_id": "video11117", "sen_id": 233810}, {"caption": "women dancing and doing fashion for photo shots", "video_id": "video11117", "sen_id": 233811}, {"caption": "a woman is shown smiling and singing with music playing in the background", "video_id": "video11117", "sen_id": 233812}, {"caption": "one women singing song with a music it", "video_id": "video11117", "sen_id": 233813}, {"caption": "several pictures are displayed of an artist while her song is playing in the background", "video_id": "video11117", "sen_id": 233814}, {"caption": "photo of sexy brunette being shown on screen", "video_id": "video11117", "sen_id": 233815}, {"caption": "portrait of three beautiful blonde with long brown hair", "video_id": "video11117", "sen_id": 233816}, {"caption": "a lady model exposed in different angles to the media", "video_id": "video11117", "sen_id": 233817}, {"caption": "three clips are shown of a pop singer doing her craft", "video_id": "video11117", "sen_id": 233818}, {"caption": "a smiling woman is being filmed on camera", "video_id": "video11117", "sen_id": 233819}, {"caption": "a spoon stirring flour into mushrooms over a stovetop", "video_id": "video10255", "sen_id": 233820}, {"caption": "a chef works on a recipe by stirring ingredients in a large silver bowl", "video_id": "video10255", "sen_id": 233821}, {"caption": "someone is stirring some mushrooms and other stuff in a pot", "video_id": "video10255", "sen_id": 233822}, {"caption": "a person is adding some flour to a pot of mushrooms", "video_id": "video10255", "sen_id": 233823}, {"caption": "a man is making a roux from mushrooms flour and butter", "video_id": "video10255", "sen_id": 233824}, {"caption": "a man is speaking while demonstrating how to make a roue", "video_id": "video10255", "sen_id": 233825}, {"caption": "a man mixes and cooks food in a bowl while giving instructions", "video_id": "video10255", "sen_id": 233826}, {"caption": "a person is cooking some sore of dish with mushrooms and stiring some white powder in it", "video_id": "video10255", "sen_id": 233827}, {"caption": "a man is adding flour to food in a pan and stirring it", "video_id": "video10255", "sen_id": 233828}, {"caption": "a man is mixing in some different ingredients into a bowl that has a green mixture inside of it", "video_id": "video10255", "sen_id": 233829}, {"caption": "someone is preparing food item using spoonwhile adding butter", "video_id": "video10255", "sen_id": 233830}, {"caption": "a man is cooking a meal with butter and mushrooms", "video_id": "video10255", "sen_id": 233831}, {"caption": "a person is explaining about the food item in the kitchen", "video_id": "video10255", "sen_id": 233832}, {"caption": "woman is mixing the mushrooms in the kitchen", "video_id": "video10255", "sen_id": 233833}, {"caption": "butter is being mixed with flour and mushrooms in a pot", "video_id": "video10255", "sen_id": 233834}, {"caption": "there is a silver pot with ingredients inside as a man stirs and discusses a recipe", "video_id": "video10255", "sen_id": 233835}, {"caption": "a man is saute a dish in the cooking pan", "video_id": "video10255", "sen_id": 233836}, {"caption": "a man is cooking a dish using butter and mushrooms", "video_id": "video10255", "sen_id": 233837}, {"caption": "a man is cooking a dish with butter while stirring it in a bowl", "video_id": "video10255", "sen_id": 233838}, {"caption": "someone is stirring food inside of a pot", "video_id": "video10255", "sen_id": 233839}, {"caption": "a man drives down a busy street while a camera records what is going on around him", "video_id": "video11181", "sen_id": 233840}, {"caption": "a man is driving a car and talking about the capabilities of its onboard computer", "video_id": "video11181", "sen_id": 233841}, {"caption": "bloomberg business discusses autonomous driving technology", "video_id": "video11181", "sen_id": 233842}, {"caption": "man driving a car and he is doing this on a highway making a video", "video_id": "video11181", "sen_id": 233843}, {"caption": "a man is driving a car and we see the front of the road through a camera lens then the view changes so that you can see the man for a moment in the rear view mirror then the view goes back to the road ahead from right inside the windshield", "video_id": "video11181", "sen_id": 233844}, {"caption": "a view through the windshield of a car moving through traffic on a highway", "video_id": "video11181", "sen_id": 233845}, {"caption": "a man driving a car in the morning down a freeway", "video_id": "video11181", "sen_id": 233846}, {"caption": "a man talking while driving on the highway", "video_id": "video11181", "sen_id": 233847}, {"caption": "a man talks while he drives a car", "video_id": "video11181", "sen_id": 233848}, {"caption": "from the inside of a car it is seen being driven by a man first on a city street and then on a freeway during daytime", "video_id": "video11181", "sen_id": 233849}, {"caption": "a man is driving a car talking about the car", "video_id": "video11181", "sen_id": 233850}, {"caption": "a vehicle is being looks as if it s being test driven", "video_id": "video11181", "sen_id": 233851}, {"caption": "the driver enjoy the driving and looks the road and the beauty of the city", "video_id": "video11181", "sen_id": 233852}, {"caption": "a man talking something while driving a car on road", "video_id": "video11181", "sen_id": 233853}, {"caption": "a man is riding in a car that seems to be an experiment", "video_id": "video11181", "sen_id": 233854}, {"caption": "a bloomberg business report about a car accessory", "video_id": "video11181", "sen_id": 233855}, {"caption": "a man is demonstrating a self-driving car and talking about how it makes decisions", "video_id": "video11181", "sen_id": 233856}, {"caption": "a brief bloomberg business video showing a windshield-mounted camera and what appears to be a self-driving car", "video_id": "video11181", "sen_id": 233857}, {"caption": "a car moving on road inside person driving many cars besdide moving on road dispalying on screen", "video_id": "video11181", "sen_id": 233858}, {"caption": "some one is driving a car out side", "video_id": "video11181", "sen_id": 233859}, {"caption": "several round head male shapes are sitting together as an audience", "video_id": "video10871", "sen_id": 233860}, {"caption": "a man talks about how to write a good script", "video_id": "video10871", "sen_id": 233861}, {"caption": "an animated infographic illustrates how to write a script", "video_id": "video10871", "sen_id": 233862}, {"caption": "its about information", "video_id": "video10871", "sen_id": 233863}, {"caption": "a person is talking about how to wite script with the help of pictures", "video_id": "video10871", "sen_id": 233864}, {"caption": " with round white balls for heads are seated in red chairs facing a similarly-shaped lecturer who is using a powerpoint presentation", "video_id": "video10871", "sen_id": 233865}, {"caption": "an introduction slide on what will be presented to write a script", "video_id": "video10871", "sen_id": 233866}, {"caption": "a person is talking to the public to share something with us", "video_id": "video10871", "sen_id": 233867}, {"caption": "its about the preparation format for letter writing", "video_id": "video10871", "sen_id": 233868}, {"caption": "some women models pictures are shown as a slide show presentation and a women is talking", "video_id": "video10871", "sen_id": 233869}, {"caption": "share with you how to write your script", "video_id": "video10871", "sen_id": 233870}, {"caption": "a slideshow presents abunch of diagrams", "video_id": "video10871", "sen_id": 233871}, {"caption": "advertisement about the important scripts and details about where they can be purchased", "video_id": "video10871", "sen_id": 233872}, {"caption": "a man talking about a share with you", "video_id": "video10871", "sen_id": 233873}, {"caption": "its a advertisement how to write the script like based on it", "video_id": "video10871", "sen_id": 233874}, {"caption": "an infographic showing various fields of text", "video_id": "video10871", "sen_id": 233875}, {"caption": "a guy is sharing with us the points on how to write script where to get the information and how to put them together and most importantly the headlines and the bullet points", "video_id": "video10871", "sen_id": 233876}, {"caption": "a presentation and what to share and how to do it", "video_id": "video10871", "sen_id": 233877}, {"caption": "giving a planning information with carton pictures", "video_id": "video10871", "sen_id": 233878}, {"caption": "some blue text is on a white back ground", "video_id": "video10871", "sen_id": 233879}, {"caption": "two men are cooking some rice and enjoying eating it", "video_id": "video12180", "sen_id": 233880}, {"caption": "these two gentlemen are trying a quick meal that they put together", "video_id": "video12180", "sen_id": 233881}, {"caption": "two people are talking to each other and tasting prepared food", "video_id": "video12180", "sen_id": 233882}, {"caption": "a man wearing black color dress is talking with a man", "video_id": "video12180", "sen_id": 233883}, {"caption": "two men are cooking and eating a meal they are presenting", "video_id": "video12180", "sen_id": 233884}, {"caption": "two men are eating a dish they have prepared and cooked on a cooking show", "video_id": "video12180", "sen_id": 233885}, {"caption": "a boy in black other in blue dress inside kitchen eating dish preparing food to serve to eat displaying on screen", "video_id": "video12180", "sen_id": 233886}, {"caption": "a man in a black chef s shirt and a man wearing a blue button up are eating a rice dish they ve just cooked and asking what your quickest recipe is", "video_id": "video12180", "sen_id": 233887}, {"caption": "two men tasting a meal they probably just cooked", "video_id": "video12180", "sen_id": 233888}, {"caption": "two men in a kitchen testing a dish that was made", "video_id": "video12180", "sen_id": 233889}, {"caption": "a couple of young men enjoy eating delicious food", "video_id": "video12180", "sen_id": 233890}, {"caption": "a man is enjoying a meal he prepared he also asks his audience to post pictures of their meals they prepare", "video_id": "video12180", "sen_id": 233891}, {"caption": "chef with black dress cooked and then they tasted to feel it it looks yummyy", "video_id": "video12180", "sen_id": 233892}, {"caption": "two men are eating a rice dish that was made on their cooking show", "video_id": "video12180", "sen_id": 233893}, {"caption": "the food tasting two persons one is a chef", "video_id": "video12180", "sen_id": 233894}, {"caption": "two men with short hair are using forks eo eat the food", "video_id": "video12180", "sen_id": 233895}, {"caption": "two men eating a dish they had just prepared", "video_id": "video12180", "sen_id": 233896}, {"caption": "two men have prepared a quick meal are tasting the results and are asking for viewers to send in their quick meal ideas", "video_id": "video12180", "sen_id": 233897}, {"caption": "it shows a cooking show where the chef and the host are tasting some cooked rice", "video_id": "video12180", "sen_id": 233898}, {"caption": "some men in a kitchen are eating food", "video_id": "video12180", "sen_id": 233899}, {"caption": "a group of young men pass a large log around as a form of exercise", "video_id": "video11021", "sen_id": 233900}, {"caption": "a piece of a log is being handed down a line of young boys as a form of exercise", "video_id": "video11021", "sen_id": 233901}, {"caption": "a group of men are passing a large log to each other in an orderly fashion", "video_id": "video11021", "sen_id": 233902}, {"caption": "men in a line passing a heavy log of wood from one person to another", "video_id": "video11021", "sen_id": 233903}, {"caption": "several men are lifting and passing a log for exercise on a football field", "video_id": "video11021", "sen_id": 233904}, {"caption": "a team of young men is going through a training exercise of passing a log from one to another", "video_id": "video11021", "sen_id": 233905}, {"caption": "athletic men on a football field are passing a big piece of wood from one person to another", "video_id": "video11021", "sen_id": 233906}, {"caption": "there are some people carrying a wood piece", "video_id": "video11021", "sen_id": 233907}, {"caption": "a group of people are transferring a big wooden log very fastly", "video_id": "video11021", "sen_id": 233908}, {"caption": "some boys are folding and passing a net on a field", "video_id": "video11021", "sen_id": 233909}, {"caption": "men passing a log down a line to each other", "video_id": "video11021", "sen_id": 233910}, {"caption": "several guys lined up in a single row on a feild are passing a log", "video_id": "video11021", "sen_id": 233911}, {"caption": "a group of people are sifting a woden piece", "video_id": "video11021", "sen_id": 233912}, {"caption": "soccer plaers work out by handing each other a heavy piece ofwood", "video_id": "video11021", "sen_id": 233913}, {"caption": "members of a team passing a log to each other as a way to exercise", "video_id": "video11021", "sen_id": 233914}, {"caption": "all persons are handling a wood stick on their hands", "video_id": "video11021", "sen_id": 233915}, {"caption": "men eperiencing hell on earth hardcore training", "video_id": "video11021", "sen_id": 233916}, {"caption": "a line of young men hand off large piece of wood during sporting practice on the field", "video_id": "video11021", "sen_id": 233917}, {"caption": "a line of men play fireman s carry with a heavy hardwood log", "video_id": "video11021", "sen_id": 233918}, {"caption": "a guy in a hood is talking to a person", "video_id": "video11021", "sen_id": 233919}, {"caption": "a genetics specialist stands in front of a fishtank containing a shark", "video_id": "video12651", "sen_id": 233920}, {"caption": "the man is interviewed as he talks about certain species evolving", "video_id": "video12651", "sen_id": 233921}, {"caption": "a man in a blue shirt is talking about studying fish", "video_id": "video12651", "sen_id": 233922}, {"caption": "a man is talking about how he is using genetic information about fish", "video_id": "video12651", "sen_id": 233923}, {"caption": "a man discusses some genetic studies information in a foreign language", "video_id": "video12651", "sen_id": 233924}, {"caption": "a man standing in an aquarium talking about a local fish", "video_id": "video12651", "sen_id": 233925}, {"caption": "a person standing and talkingsomebody translating what the person said", "video_id": "video12651", "sen_id": 233926}, {"caption": "a guy in a blue shirt talking about fish studies about how they move up stream", "video_id": "video12651", "sen_id": 233927}, {"caption": "a man is narrating the narrations of another man speaking about ocean animals", "video_id": "video12651", "sen_id": 233928}, {"caption": "a man is explaining research being done on marine life", "video_id": "video12651", "sen_id": 233929}, {"caption": "yuri slynko standing talking next to an aquarium with a big fish in it", "video_id": "video12651", "sen_id": 233930}, {"caption": "a narrator describing a man s studies about fish and their migrations", "video_id": "video12651", "sen_id": 233931}, {"caption": "a man standing near the aquarium and explaining something", "video_id": "video12651", "sen_id": 233932}, {"caption": "a person in the aquarium explains about the fish while near him was a big shark in the aquarium", "video_id": "video12651", "sen_id": 233933}, {"caption": "test tubes are being put into a freezer by a lab person", "video_id": "video12651", "sen_id": 233934}, {"caption": "a man talks outside and aquarium about a shark inside", "video_id": "video12651", "sen_id": 233935}, {"caption": "a person keeps a thing by open the refrigerator and a person speaks about fishes in an aquarium", "video_id": "video12651", "sen_id": 233936}, {"caption": "a male fish biologist with a beard and long hair talks next to a big fish in a gray tank", "video_id": "video12651", "sen_id": 233937}, {"caption": "a scientist talks about his studies of fish migration", "video_id": "video12651", "sen_id": 233938}, {"caption": "a man is translating another man who is standing next to a fish tank in a news scene", "video_id": "video12651", "sen_id": 233939}, {"caption": "different men are happily giving explanations using computers", "video_id": "video10040", "sen_id": 233940}, {"caption": "a group of men are talking together in the office", "video_id": "video10040", "sen_id": 233941}, {"caption": "music plays while several different men are seen talking smiling and moving about in many different locatioins labs offices entry areas etc", "video_id": "video10040", "sen_id": 233942}, {"caption": "guys are excited and smiling about different forms of technology", "video_id": "video10040", "sen_id": 233943}, {"caption": "various men are giving presentations in an office while music plays in the background", "video_id": "video10040", "sen_id": 233944}, {"caption": "various scenes of men laughing and interacting into the camera as music plays in the background", "video_id": "video10040", "sen_id": 233945}, {"caption": "a group of men inside of a technology expo smiling and laughing", "video_id": "video10040", "sen_id": 233946}, {"caption": "music playing while a few men smile and talk", "video_id": "video10040", "sen_id": 233947}, {"caption": "workers in an office environment demonstrate their happiness", "video_id": "video10040", "sen_id": 233948}, {"caption": "well-dressed men laugh as they stand around technology", "video_id": "video10040", "sen_id": 233949}, {"caption": "there are many young people sharing their views in front of the camera", "video_id": "video10040", "sen_id": 233950}, {"caption": "young men are engaged in different activities are shown", "video_id": "video10040", "sen_id": 233951}, {"caption": "some men are performing some computer task with laughing mood", "video_id": "video10040", "sen_id": 233952}, {"caption": "various men work together and smile beside computers", "video_id": "video10040", "sen_id": 233953}, {"caption": "bunch of guy talking to each other in the office space", "video_id": "video10040", "sen_id": 233954}, {"caption": "a green tshirt man talking from a room", "video_id": "video10040", "sen_id": 233955}, {"caption": "the men in the button down shirts smile", "video_id": "video10040", "sen_id": 233956}, {"caption": "which advertisement this all people very smiling attracted one", "video_id": "video10040", "sen_id": 233957}, {"caption": "several man in suits smiling in different office situations", "video_id": "video10040", "sen_id": 233958}, {"caption": "a man in a shirt is doing some things", "video_id": "video10040", "sen_id": 233959}, {"caption": "cat attacks a snake and fights it with its claws and bites the snake", "video_id": "video12260", "sen_id": 233960}, {"caption": "a cat and snake are fighting and the snake is trying to eat the cat", "video_id": "video12260", "sen_id": 233961}, {"caption": "a nature tutorial of a snake fighting a tiger", "video_id": "video12260", "sen_id": 233962}, {"caption": "a tiger and a large snake get into a life or death fight in the jungle", "video_id": "video12260", "sen_id": 233963}, {"caption": "a large snake and a tiger fight in a jungle", "video_id": "video12260", "sen_id": 233964}, {"caption": "a tiger is fighting a very big snake in the woods", "video_id": "video12260", "sen_id": 233965}, {"caption": "a violent tiger attacking a snake on the forest", "video_id": "video12260", "sen_id": 233966}, {"caption": "a cat eats a snake in the wilderness while the snake tries to bite the cat", "video_id": "video12260", "sen_id": 233967}, {"caption": "this is a carnivore animal who tried to fight with a snake", "video_id": "video12260", "sen_id": 233968}, {"caption": "a fight between a king cobra and a tiger in a forest bush", "video_id": "video12260", "sen_id": 233969}, {"caption": "a person is showing how tiger cub is fighting with the snake", "video_id": "video12260", "sen_id": 233970}, {"caption": "a cat and snake are involved in a fight outdoors", "video_id": "video12260", "sen_id": 233971}, {"caption": "a cat plays with several rattle snakes and tries to eat them violently", "video_id": "video12260", "sen_id": 233972}, {"caption": "a tiger is biting a big snake in the forest", "video_id": "video12260", "sen_id": 233973}, {"caption": "a tiger is attacking a huge snake on the ground", "video_id": "video12260", "sen_id": 233974}, {"caption": "a person is watching baby tiger fighting with the snake", "video_id": "video12260", "sen_id": 233975}, {"caption": "there is a snake eating tiger in the jungle", "video_id": "video12260", "sen_id": 233976}, {"caption": "in an forest a wild animal tiger fights with the snake cobra", "video_id": "video12260", "sen_id": 233977}, {"caption": "a large snake and a tiger fight in a jungle setting", "video_id": "video12260", "sen_id": 233978}, {"caption": "a cat and a snake fighting each other in jungle", "video_id": "video12260", "sen_id": 233979}, {"caption": "a chinese woman is showing how to make chow mein", "video_id": "video11081", "sen_id": 233980}, {"caption": "woman explaining how to make chow mein with various ingredients", "video_id": "video11081", "sen_id": 233981}, {"caption": "a clip from a vegetarian receipt stir fry", "video_id": "video11081", "sen_id": 233982}, {"caption": "a woman shows the ingredients needed in her noodle dish", "video_id": "video11081", "sen_id": 233983}, {"caption": "a woman is talking about what you will need to make chow mein", "video_id": "video11081", "sen_id": 233984}, {"caption": " egg noddles soy sauce and olive oil are needed to make dinner", "video_id": "video11081", "sen_id": 233985}, {"caption": "woman in kitchen describing ingredients for chow mein", "video_id": "video11081", "sen_id": 233986}, {"caption": "a chef cooks multiple ingredients including vegetables and egg noodles in a kitchen", "video_id": "video11081", "sen_id": 233987}, {"caption": "a lady narrating how to fix a dish while in her kitchen", "video_id": "video11081", "sen_id": 233988}, {"caption": "an asian woman discusses the ingredients she is getting ready to use in a stir fry dish", "video_id": "video11081", "sen_id": 233989}, {"caption": "a woman preparing food with vegetables", "video_id": "video11081", "sen_id": 233990}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11081", "sen_id": 233991}, {"caption": "a woman is introducing the ingredients needed for something she will cook", "video_id": "video11081", "sen_id": 233992}, {"caption": "a woman is giving recipe for a vegetable noodles", "video_id": "video11081", "sen_id": 233993}, {"caption": "lady introducing the ingredients that are needed to make traditional noodles with soy sauce", "video_id": "video11081", "sen_id": 233994}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11081", "sen_id": 233995}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video11081", "sen_id": 233996}, {"caption": "a woman is giving instructions on how to cook a recipe", "video_id": "video11081", "sen_id": 233997}, {"caption": "lady listing ingredients for cooking segment while showing those ingredients", "video_id": "video11081", "sen_id": 233998}, {"caption": "an asian woman instructs cooking methods", "video_id": "video11081", "sen_id": 233999}, {"caption": "a television show features vampires zombies and serial killers", "video_id": "video10220", "sen_id": 234000}, {"caption": "woman speaking about different scary zombie movie clips", "video_id": "video10220", "sen_id": 234001}, {"caption": "a couple of older women having a conversation and a group of zombies eating someone", "video_id": "video10220", "sen_id": 234002}, {"caption": "a woman talks about children enjoying dark falls and zombies are shown surrounding and devouring something", "video_id": "video10220", "sen_id": 234003}, {"caption": "several clips are described about scary movies from the compilation movie site watchmojo", "video_id": "video10220", "sen_id": 234004}, {"caption": "a brown haired woman ominously says that children are going to like their new town then zombies are shown eating someone", "video_id": "video10220", "sen_id": 234005}, {"caption": "an entertainer reporter reporting her story on the horror genre", "video_id": "video10220", "sen_id": 234006}, {"caption": "a woman is complimenting another woman s kids and saying sarcastically how they are going to love dark falls this is followed by a series of zombies eating another person s body", "video_id": "video10220", "sen_id": 234007}, {"caption": "clips of various shows including zombies and vampires are shown", "video_id": "video10220", "sen_id": 234008}, {"caption": "a movie trailer of the popular old movie goosebumps from the past", "video_id": "video10220", "sen_id": 234009}, {"caption": "a reporter is speaking about the crime incident", "video_id": "video10220", "sen_id": 234010}, {"caption": "a old video clip showing vampires and zombies", "video_id": "video10220", "sen_id": 234011}, {"caption": "a group of zombies with blood covered hands are all reaching towards the same thing", "video_id": "video10220", "sen_id": 234012}, {"caption": "an older woman is featured on the watch mojo channel in a clip from the show goosebumps", "video_id": "video10220", "sen_id": 234013}, {"caption": "a news presenter explains how vampires and serial killer have been taking liking to by the tv viewers compared to other programs", "video_id": "video10220", "sen_id": 234014}, {"caption": "a woman reviews a new movie that just came out", "video_id": "video10220", "sen_id": 234015}, {"caption": "two women are looking around this room", "video_id": "video10220", "sen_id": 234016}, {"caption": "a tv spot on the cultural impact of horror flicks and how they form current tv standards", "video_id": "video10220", "sen_id": 234017}, {"caption": "its momjo ladies look at each other then many hands with blood strain trying to take something", "video_id": "video10220", "sen_id": 234018}, {"caption": "two ladies laughing in the movie with many zombies and vampires", "video_id": "video10220", "sen_id": 234019}, {"caption": "a man explaining how to use dried kelp in a recipe from his kitchen", "video_id": "video11148", "sen_id": 234020}, {"caption": "a man is showing dried kelp and telling what he uses it for", "video_id": "video11148", "sen_id": 234021}, {"caption": "a man in a black shirt and hat pulls an ingredient out of a green bag", "video_id": "video11148", "sen_id": 234022}, {"caption": "a man picking up a package of seaweed and taking a sheet out", "video_id": "video11148", "sen_id": 234023}, {"caption": "a man wearing a black hat and shirt pitches a new product that looks like sea kelp", "video_id": "video11148", "sen_id": 234024}, {"caption": "a man taking a sheet of seaweed out of its package and talking", "video_id": "video11148", "sen_id": 234025}, {"caption": "a man talking about the ingredients for cooking and showing a green color pack", "video_id": "video11148", "sen_id": 234026}, {"caption": "a men is wearing black cloths and he is having a green packet in his hand", "video_id": "video11148", "sen_id": 234027}, {"caption": "this guy is unpacking the dashi kombu and showing it the viewers and probably show how to cook it", "video_id": "video11148", "sen_id": 234028}, {"caption": "a man in a black baseball cap holds up a sample of dried kelp", "video_id": "video11148", "sen_id": 234029}, {"caption": "a guy in black t-shirt is showing somethng and explaining", "video_id": "video11148", "sen_id": 234030}, {"caption": "men displayes some product of his on the screen", "video_id": "video11148", "sen_id": 234031}, {"caption": "one man take scrub to clean something in kitchen", "video_id": "video11148", "sen_id": 234032}, {"caption": "a guy in a black hat describes a product called kale", "video_id": "video11148", "sen_id": 234033}, {"caption": "a man is showing how to prepare dried kelp in a meal", "video_id": "video11148", "sen_id": 234034}, {"caption": "a man explaining about some recipe in the kitchen", "video_id": "video11148", "sen_id": 234035}, {"caption": "a man in a kitchen is showing a piece of dried kelp", "video_id": "video11148", "sen_id": 234036}, {"caption": "one man talking about how to clean with", "video_id": "video11148", "sen_id": 234037}, {"caption": "a man stands in the kitchen in a black hat talking", "video_id": "video11148", "sen_id": 234038}, {"caption": "a man talks in a kitchen as he shows off some of his food", "video_id": "video11148", "sen_id": 234039}, {"caption": "a woman is being interviewed while on the street", "video_id": "video11668", "sen_id": 234040}, {"caption": "women in a popular shopping district answer questions on the street", "video_id": "video11668", "sen_id": 234041}, {"caption": "tv show gives exclusive with popular feedback on the patiala design", "video_id": "video11668", "sen_id": 234042}, {"caption": "several women are interviewed for a show about fashion and looking good", "video_id": "video11668", "sen_id": 234043}, {"caption": "many ladies who look to be indian or something is describing what they like about clothing outside some stores", "video_id": "video11668", "sen_id": 234044}, {"caption": "a woman in black dress interviewing people in the busy market place", "video_id": "video11668", "sen_id": 234045}, {"caption": "there is a pink shirt women talking in the street", "video_id": "video11668", "sen_id": 234046}, {"caption": "multiple women out in public are discussing fashion into a microphone", "video_id": "video11668", "sen_id": 234047}, {"caption": "a tv channel interviews a bunch of indian women", "video_id": "video11668", "sen_id": 234048}, {"caption": "there were several woman that were interviewd on the street", "video_id": "video11668", "sen_id": 234049}, {"caption": "on lady is giving her views in this clip", "video_id": "video11668", "sen_id": 234050}, {"caption": "there is a person who is talking to many girls with mic in her hand", "video_id": "video11668", "sen_id": 234051}, {"caption": "patiala designs care world gorgeous you womens talking about it", "video_id": "video11668", "sen_id": 234052}, {"caption": "an interview with the public about the fashion dress and gadgets", "video_id": "video11668", "sen_id": 234053}, {"caption": "a woman in a dress is talking into a microphone", "video_id": "video11668", "sen_id": 234054}, {"caption": "all woman s are telling us about the care world on a tv show", "video_id": "video11668", "sen_id": 234055}, {"caption": "womens talks on the tv news telling someting about fashion", "video_id": "video11668", "sen_id": 234056}, {"caption": "a woman is taking interview to the people in india", "video_id": "video11668", "sen_id": 234057}, {"caption": "many women are talking about the beauty of patiala designs", "video_id": "video11668", "sen_id": 234058}, {"caption": "some women on the street are being interviewed for tv", "video_id": "video11668", "sen_id": 234059}, {"caption": "multiple photos taken from multiple beautiful places all around the world", "video_id": "video12379", "sen_id": 234060}, {"caption": "pictures of mountains all over the world with classic music playing in the background", "video_id": "video12379", "sen_id": 234061}, {"caption": "images of beautiful natural parks and bodies of water are shown in a slide show", "video_id": "video12379", "sen_id": 234062}, {"caption": "a slide show of nice natural wonders and parks", "video_id": "video12379", "sen_id": 234063}, {"caption": "the camera pans over several lanscapes froma round the world", "video_id": "video12379", "sen_id": 234064}, {"caption": "a slideshow of different beautiful travel destinations in the world", "video_id": "video12379", "sen_id": 234065}, {"caption": "a set of mountains is reflected in the top of a crystal clear lake", "video_id": "video12379", "sen_id": 234066}, {"caption": "music plays in the background while several pictures of mountain scenery are shown showing the locations they were taken", "video_id": "video12379", "sen_id": 234067}, {"caption": "a large mountain lake reflects the peaks that are surrounding it", "video_id": "video12379", "sen_id": 234068}, {"caption": "various scence of mountains and waterfalls from different areas in the world", "video_id": "video12379", "sen_id": 234069}, {"caption": "a slide show of still pictures showing the worlds most famous landmarks", "video_id": "video12379", "sen_id": 234070}, {"caption": "few places such as niagara blybe river canyon and few others are shown", "video_id": "video12379", "sen_id": 234071}, {"caption": "images of historical land forms are shown one after another", "video_id": "video12379", "sen_id": 234072}, {"caption": "various still images of yosemite national park the new zealand fjords niagra falls seoraksan and blyth river canyon", "video_id": "video12379", "sen_id": 234073}, {"caption": "yosemite national park new zealand fjords niagara falls and seoraksan are featured in pictures", "video_id": "video12379", "sen_id": 234074}, {"caption": "a slideshow of images contain desert mountains and canyon", "video_id": "video12379", "sen_id": 234075}, {"caption": "yosemite national park and other few natural tourist spots", "video_id": "video12379", "sen_id": 234076}, {"caption": "a man explaining about the hills and niagara falls", "video_id": "video12379", "sen_id": 234077}, {"caption": "beautiful and serene sights of namib desert yosemite national park the new zealand fjords niagara falls seoraksan and blybe river canyon", "video_id": "video12379", "sen_id": 234078}, {"caption": "an outdoor scene of nature is shown", "video_id": "video12379", "sen_id": 234079}, {"caption": "a man is explaining how to do data analysis on a computer", "video_id": "video11330", "sen_id": 234080}, {"caption": "a man is talking about powerpoint slides", "video_id": "video11330", "sen_id": 234081}, {"caption": "a man sitting in a home office talking about data analysis", "video_id": "video11330", "sen_id": 234082}, {"caption": "a man welcomes people to an educational segment about python programming language", "video_id": "video11330", "sen_id": 234083}, {"caption": "a man with a blue shirt is explaining how to do data analysis", "video_id": "video11330", "sen_id": 234084}, {"caption": "man in a blue button down shirt talks about python list number eight", "video_id": "video11330", "sen_id": 234085}, {"caption": "an older man is explaining his lesson as screenshots appear", "video_id": "video11330", "sen_id": 234086}, {"caption": "a guy in violet shirt gives demo about python lists chapter 8", "video_id": "video11330", "sen_id": 234087}, {"caption": "an older gentleman is talking about lists and different data", "video_id": "video11330", "sen_id": 234088}, {"caption": "bearded guy in grey shirt talking to the camera", "video_id": "video11330", "sen_id": 234089}, {"caption": "a man in a blue button down shirt introduces a chapter of a lecture and its contents", "video_id": "video11330", "sen_id": 234090}, {"caption": "a man is introducing his lesson on data analysis", "video_id": "video11330", "sen_id": 234091}, {"caption": "a guy wearing a button up shirt talks about doing data analysis", "video_id": "video11330", "sen_id": 234092}, {"caption": "man describing how to follow his lecture and what he is about to get started with", "video_id": "video11330", "sen_id": 234093}, {"caption": "a man with a blue shirt is talking about some thing", "video_id": "video11330", "sen_id": 234094}, {"caption": "a man describes data analysis in specific python lists", "video_id": "video11330", "sen_id": 234095}, {"caption": "a man does a tutorial on how to use a particular kind of software", "video_id": "video11330", "sen_id": 234096}, {"caption": "a man in a blue shirt is talking at a desk", "video_id": "video11330", "sen_id": 234097}, {"caption": "a person with white skin and beard giving some explanation to the viewers", "video_id": "video11330", "sen_id": 234098}, {"caption": "a person with a blue shirt is sitting down", "video_id": "video11330", "sen_id": 234099}, {"caption": "a man in a black shirt explaining a process he will do", "video_id": "video12148", "sen_id": 234100}, {"caption": "a man talks about the process of sequencing the building blocks of life", "video_id": "video12148", "sen_id": 234101}, {"caption": "a man wearing a black shirt is sitting and talking", "video_id": "video12148", "sen_id": 234102}, {"caption": "a man explains how a dna sequencer can sequence many templates simultaneously", "video_id": "video12148", "sen_id": 234103}, {"caption": "a man is talking about the dna copy process and how a sequencer works", "video_id": "video12148", "sen_id": 234104}, {"caption": "a man in a long-sleeved black shirt talks about dna sequencing", "video_id": "video12148", "sen_id": 234105}, {"caption": "a bald headed man talks about dna copies itself", "video_id": "video12148", "sen_id": 234106}, {"caption": "a man in a long sleeve black shirt is talking about dna copying", "video_id": "video12148", "sen_id": 234107}, {"caption": "a man in a black long sleeve shirt is sitting talking about dna", "video_id": "video12148", "sen_id": 234108}, {"caption": "a lone man sits in front of a white backdrop and discusses the sequencing of dna", "video_id": "video12148", "sen_id": 234109}, {"caption": "a young man is discussing the biology topic regarding dna", "video_id": "video12148", "sen_id": 234110}, {"caption": "the man has a black long sleeved shirt on", "video_id": "video12148", "sen_id": 234111}, {"caption": "a man wearing a black shirt is sitting and talking", "video_id": "video12148", "sen_id": 234112}, {"caption": "a man in a black shirt is talking about dna", "video_id": "video12148", "sen_id": 234113}, {"caption": "bald guy in black tshirt talking to camera", "video_id": "video12148", "sen_id": 234114}, {"caption": "a man is giving a speech on a topic", "video_id": "video12148", "sen_id": 234115}, {"caption": "the balcktshirt wearin men telling the market stratagey features in the tv channel", "video_id": "video12148", "sen_id": 234116}, {"caption": "a man asks a question about dna apparently after having just discussed another aspect of it in a scientific context", "video_id": "video12148", "sen_id": 234117}, {"caption": "the young man in black dress explains about something very elaborately", "video_id": "video12148", "sen_id": 234118}, {"caption": "a man in a black shirt is talking about a screen", "video_id": "video12148", "sen_id": 234119}, {"caption": "a cook is preparing pesto sauce for a meal", "video_id": "video10071", "sen_id": 234120}, {"caption": "a woman is putting ingredients into a food processor to prepare a pesto", "video_id": "video10071", "sen_id": 234121}, {"caption": "a lady spooning out a mixture out of a clear bowl", "video_id": "video10071", "sen_id": 234122}, {"caption": "a woman puts ingredients in a blender to create a pesto sauce", "video_id": "video10071", "sen_id": 234123}, {"caption": "a woman is adding different ingredients into a clear container", "video_id": "video10071", "sen_id": 234124}, {"caption": "there is a woman making a dish with nut", "video_id": "video10071", "sen_id": 234125}, {"caption": "garlic added into a mixer and mixed", "video_id": "video10071", "sen_id": 234126}, {"caption": "someone is adding ingredients to a glass bowl in a kitchen with other food nearby", "video_id": "video10071", "sen_id": 234127}, {"caption": "a woman places pesto and garlic in a bowl", "video_id": "video10071", "sen_id": 234128}, {"caption": "a person demonstrating how to place food in a food processor", "video_id": "video10071", "sen_id": 234129}, {"caption": "a man talking about preparing a pesto sauce", "video_id": "video10071", "sen_id": 234130}, {"caption": "some greens and few garlic was put into a mixie and taken to crush", "video_id": "video10071", "sen_id": 234131}, {"caption": "a female chef puts ingredients into a food processor for a recipe she is preparing", "video_id": "video10071", "sen_id": 234132}, {"caption": "a person adds pesto ingredients to a container", "video_id": "video10071", "sen_id": 234133}, {"caption": "a woman preparing pesto sauce for a cooking show", "video_id": "video10071", "sen_id": 234134}, {"caption": "a lady pouring garlic on the bowl", "video_id": "video10071", "sen_id": 234135}, {"caption": "a women adds ingredients for a pesto sauce into a blender", "video_id": "video10071", "sen_id": 234136}, {"caption": "a person is putting herbs into a food processor", "video_id": "video10071", "sen_id": 234137}, {"caption": "a woman mixes together ingredients for delicious pesto", "video_id": "video10071", "sen_id": 234138}, {"caption": "a woman shows how to make pesto sauce and talks about what you can add", "video_id": "video10071", "sen_id": 234139}, {"caption": "the logo of a company called besttechnology is presented on the screen", "video_id": "video11171", "sen_id": 234140}, {"caption": "a business card for a company and then it cuts to a full screen advertisement", "video_id": "video11171", "sen_id": 234141}, {"caption": "a water symbol with a website address below it", "video_id": "video11171", "sen_id": 234142}, {"caption": "a advertisement for a business called besttechnology it shows the website", "video_id": "video11171", "sen_id": 234143}, {"caption": "relaxing music plays behind an image saying wwwbesttechnologycom", "video_id": "video11171", "sen_id": 234144}, {"caption": "an add for best technology with music playing in the background", "video_id": "video11171", "sen_id": 234145}, {"caption": "the advertisement of best technology logo in front of the camera", "video_id": "video11171", "sen_id": 234146}, {"caption": "this is an add of semiconductor water processing chemical", "video_id": "video11171", "sen_id": 234147}, {"caption": "its the card of best technologycom the logo has the blue and green color", "video_id": "video11171", "sen_id": 234148}, {"caption": "a green and blue logo is shown", "video_id": "video11171", "sen_id": 234149}, {"caption": "there is a logo of best technology site", "video_id": "video11171", "sen_id": 234150}, {"caption": "information and website for best technology is displayed", "video_id": "video11171", "sen_id": 234151}, {"caption": "the blue and green logo of a company is being shown", "video_id": "video11171", "sen_id": 234152}, {"caption": "a technology logo is composed of a circle divided by a curved blue line with a liquid forming a circle on the lower blue half and curving green lines forming the upper half", "video_id": "video11171", "sen_id": 234153}, {"caption": "semoconductor water chemical processing best technology introduce programm", "video_id": "video11171", "sen_id": 234154}, {"caption": "a site is here which is about the best technology in the world", "video_id": "video11171", "sen_id": 234155}, {"caption": "a magnet on a white fridge displays the website www", "video_id": "video11171", "sen_id": 234156}, {"caption": "in a slide show a advertisement matter is displayed about the chemistry", "video_id": "video11171", "sen_id": 234157}, {"caption": "an advertisement of a wwwcom is displaying on", "video_id": "video11171", "sen_id": 234158}, {"caption": "a green and blue logo is being shown", "video_id": "video11171", "sen_id": 234159}, {"caption": "small rodents are eating greens in an outdoor enclosure", "video_id": "video12382", "sen_id": 234160}, {"caption": "adult and young long-haired hamsters in white brown and black are kept in an outdoor enclosure of wood and wire on top of green ground cover where they graze and move around", "video_id": "video12382", "sen_id": 234161}, {"caption": "a bunch of gerbels in a pen with green foilage", "video_id": "video12382", "sen_id": 234162}, {"caption": "a bunch of furry rabbits in an enclosure in a yard hop around looking for food", "video_id": "video12382", "sen_id": 234163}, {"caption": "several small animals not sure what kind possibly guinea pigs are moving around a small enclosed area with green foliage on the ground", "video_id": "video12382", "sen_id": 234164}, {"caption": "some animals are in a fenced in area eating from the grass", "video_id": "video12382", "sen_id": 234165}, {"caption": "small animals inside a fence are eating green plants from the ground", "video_id": "video12382", "sen_id": 234166}, {"caption": "baby guinea pigs and their mothers in a garden bed outdoors", "video_id": "video12382", "sen_id": 234167}, {"caption": "more rat is taking food from grass", "video_id": "video12382", "sen_id": 234168}, {"caption": "we guinea pigs in a pin outside in the grass", "video_id": "video12382", "sen_id": 234169}, {"caption": "small chickens baby walking and eating food displaying on screen", "video_id": "video12382", "sen_id": 234170}, {"caption": "there are some hens searching food in the grass", "video_id": "video12382", "sen_id": 234171}, {"caption": "chickens are eating green vegetation from the ground", "video_id": "video12382", "sen_id": 234172}, {"caption": "a group of small animals of different colors are walking around in the grass", "video_id": "video12382", "sen_id": 234173}, {"caption": "some puppies are playing with dogies in a green ground area", "video_id": "video12382", "sen_id": 234174}, {"caption": "many little furry creatures nibble on the grass", "video_id": "video12382", "sen_id": 234175}, {"caption": "there are some puppies on the grass", "video_id": "video12382", "sen_id": 234176}, {"caption": "fowl are in search of food among plants", "video_id": "video12382", "sen_id": 234177}, {"caption": "a few farm animals walk around in a grassy patch inside a fence area", "video_id": "video12382", "sen_id": 234178}, {"caption": "various farm animals walking around a patch of grass", "video_id": "video12382", "sen_id": 234179}, {"caption": "a man is talking about the intro of a conference", "video_id": "video11451", "sen_id": 234180}, {"caption": "a man is talking about a video being done for a men's conference while the words escape the matrix shows on the video screen", "video_id": "video11451", "sen_id": 234181}, {"caption": "aan talks about an upcoming movie and his desire to see it", "video_id": "video11451", "sen_id": 234182}, {"caption": "the man is discussing a video that is for the mens conference call", "video_id": "video11451", "sen_id": 234183}, {"caption": "the title of a movie is shrunk to fit the screen", "video_id": "video11451", "sen_id": 234184}, {"caption": "the words escape the matrix is being shown", "video_id": "video11451", "sen_id": 234185}, {"caption": "a man is detailing a video he made for a men's conference", "video_id": "video11451", "sen_id": 234186}, {"caption": "escape the matrix the film name came at the beginning", "video_id": "video11451", "sen_id": 234187}, {"caption": "a graphic design puls in a show escape the matrix in green and grey", "video_id": "video11451", "sen_id": 234188}, {"caption": "a title of the video is shown which indicates there is a programe coming behind", "video_id": "video11451", "sen_id": 234189}, {"caption": "its about a trailer of escape the matrix", "video_id": "video11451", "sen_id": 234190}, {"caption": "there is a name coming on the screen", "video_id": "video11451", "sen_id": 234191}, {"caption": "a man talking about videos his company has made for the men s conference", "video_id": "video11451", "sen_id": 234192}, {"caption": "a man explaning about the matrix", "video_id": "video11451", "sen_id": 234193}, {"caption": "it is the movie trailer", "video_id": "video11451", "sen_id": 234194}, {"caption": "there is a letter of real dark fighters", "video_id": "video11451", "sen_id": 234195}, {"caption": "escafe the matrix add will display on screen", "video_id": "video11451", "sen_id": 234196}, {"caption": "a trailer for a movie called escape the matrix", "video_id": "video11451", "sen_id": 234197}, {"caption": "a still images of video displaying on the screen about the advertisement", "video_id": "video11451", "sen_id": 234198}, {"caption": "some silver text is zooming out on the screen", "video_id": "video11451", "sen_id": 234199}, {"caption": "a young woman is showing how she does her makeup in this tutorial", "video_id": "video10664", "sen_id": 234200}, {"caption": "a makeup tutorial with a blonde woman for her eyes", "video_id": "video10664", "sen_id": 234201}, {"caption": "a young woman demonstrates and describes a makeup technique", "video_id": "video10664", "sen_id": 234202}, {"caption": "a woman applies eye shadow to her eyelid while giving information about the eye shadow", "video_id": "video10664", "sen_id": 234203}, {"caption": "a woman explaining the color of an eyeshadow and applying it", "video_id": "video10664", "sen_id": 234204}, {"caption": "a woman with blond hair is dabbing gold eyeshadow on her upper eyelids with her fingers while she describes the product", "video_id": "video10664", "sen_id": 234205}, {"caption": "a women is applying make up to her face", "video_id": "video10664", "sen_id": 234206}, {"caption": "a girl is applying eye shadow and rubbing it with fingers and then applying eye liner with brush", "video_id": "video10664", "sen_id": 234207}, {"caption": "a young blond woman is applying makeup in front of the camera", "video_id": "video10664", "sen_id": 234208}, {"caption": "a woman is talking about a eye shadow", "video_id": "video10664", "sen_id": 234209}, {"caption": "a women explains about the eye make-up in the show", "video_id": "video10664", "sen_id": 234210}, {"caption": "a young woman is describing the type of eye shadow that she likes to use", "video_id": "video10664", "sen_id": 234211}, {"caption": "a women is applying eye lliner for her eyes", "video_id": "video10664", "sen_id": 234212}, {"caption": "a brown haired beautiful women herself doing touch up to her eyes with her fingers", "video_id": "video10664", "sen_id": 234213}, {"caption": "a young woman demonstrates her technique for applying makeup", "video_id": "video10664", "sen_id": 234214}, {"caption": "a girl is applying make up on her eyelids by closing one eyelid", "video_id": "video10664", "sen_id": 234215}, {"caption": "a woman showing a eyebrow fasion show", "video_id": "video10664", "sen_id": 234216}, {"caption": "a lady make up her eye brows by her hand", "video_id": "video10664", "sen_id": 234217}, {"caption": "a blonde teen adds eye makeup to her face", "video_id": "video10664", "sen_id": 234218}, {"caption": "a woman is doing her make up for the camera", "video_id": "video10664", "sen_id": 234219}, {"caption": "a new anchor on fox news talking about an interview with donald trump", "video_id": "video11162", "sen_id": 234220}, {"caption": "chris wallace reporting on politics for fox news", "video_id": "video11162", "sen_id": 234221}, {"caption": "a man in black dress reading top news of the day", "video_id": "video11162", "sen_id": 234222}, {"caption": "a man with a side part wearing a dark suit blue shirt and red dotted tie is sitting in front of a window overlooking a tall domed building", "video_id": "video11162", "sen_id": 234223}, {"caption": "a man on fox news talks about donald trump and how he had asked him some big questions", "video_id": "video11162", "sen_id": 234224}, {"caption": "a man wearing a suit and a tie is speaking on a television news channel", "video_id": "video11162", "sen_id": 234225}, {"caption": "a news anchor is reporting that ms donald trump had agreed to an interview in fox news channel", "video_id": "video11162", "sen_id": 234226}, {"caption": "a news anchor for the fox chanel talking about what happened when he interviewed donald trump regarding the debates", "video_id": "video11162", "sen_id": 234227}, {"caption": "men in blue suit and wore eye glasses reading news on the television and flash news moving in the screen", "video_id": "video11162", "sen_id": 234228}, {"caption": "a person in blue shirt is gives some information to te fos news channel", "video_id": "video11162", "sen_id": 234229}, {"caption": "chris wallace is presenting the latest news for fox television", "video_id": "video11162", "sen_id": 234230}, {"caption": "a man with glasses is speaking on the fox news channel", "video_id": "video11162", "sen_id": 234231}, {"caption": "a man is reading a news in tv channel", "video_id": "video11162", "sen_id": 234232}, {"caption": "a man in a blue suit and a red tie discusses politics on a news station", "video_id": "video11162", "sen_id": 234233}, {"caption": "news informer speaking that donald trump accepted the request for an interview", "video_id": "video11162", "sen_id": 234234}, {"caption": "a man with glasses is speaking about something", "video_id": "video11162", "sen_id": 234235}, {"caption": "a man in a suit on fox news talking about an interview with donald trump", "video_id": "video11162", "sen_id": 234236}, {"caption": "chris wallace on fox news sunday interviews donald trump", "video_id": "video11162", "sen_id": 234237}, {"caption": "chris wallace talks about donald trump agreeing to an interview on fox news", "video_id": "video11162", "sen_id": 234238}, {"caption": "a man in glasses talks about how donald trump doesn t like talking", "video_id": "video11162", "sen_id": 234239}, {"caption": "a man and woman are getting out of a red truck and walking to a house", "video_id": "video12509", "sen_id": 234240}, {"caption": "a man and woman pull up in a red pickup truck carrying a snowmobile at a stone house and see delivered rectangular packages waiting at their front door", "video_id": "video12509", "sen_id": 234241}, {"caption": "a red truck pulls up with jet ski's in the back", "video_id": "video12509", "sen_id": 234242}, {"caption": "two persons exiting a red truck with equipment on top", "video_id": "video12509", "sen_id": 234243}, {"caption": "a large red truck pulls up in front of a log cabin styled house", "video_id": "video12509", "sen_id": 234244}, {"caption": "a man and a woman descend from a large red pickup truck hauling a motorcycle down steps towards a wooden door", "video_id": "video12509", "sen_id": 234245}, {"caption": "a red color car is comomg a girl getting down", "video_id": "video12509", "sen_id": 234246}, {"caption": "a red pick up pulls on in front of a house and a man and woman get out of it", "video_id": "video12509", "sen_id": 234247}, {"caption": "the car is driven carefully and woman exits of it", "video_id": "video12509", "sen_id": 234248}, {"caption": "red pickup truck with snowmobile drives up to a house and lady and man get out of the truck", "video_id": "video12509", "sen_id": 234249}, {"caption": "a blue car crosses by and a red jeep comes from opposite direction and stops", "video_id": "video12509", "sen_id": 234250}, {"caption": "a man and a lady gets down from a red car and rushing to the door of the home", "video_id": "video12509", "sen_id": 234251}, {"caption": "cars are driving up and people get out of them to walk towards a lodge", "video_id": "video12509", "sen_id": 234252}, {"caption": "a red truck drives up with a motorcycle in the truck bed", "video_id": "video12509", "sen_id": 234253}, {"caption": "a couple enters a home after dropping from a suv jeep", "video_id": "video12509", "sen_id": 234254}, {"caption": "there is a woman getting out of a truck", "video_id": "video12509", "sen_id": 234255}, {"caption": "a man and a woman are getting out from car", "video_id": "video12509", "sen_id": 234256}, {"caption": "a red truck pulls up and a beautiful woman and guy get out of it", "video_id": "video12509", "sen_id": 234257}, {"caption": "a male and a female gets down from a red car and walks towards a house", "video_id": "video12509", "sen_id": 234258}, {"caption": "a woman and a man coming in a red car and they luggaged bike in the car", "video_id": "video12509", "sen_id": 234259}, {"caption": "several cars are racing on a race track and one of the drivers is communicating back and forth over his head gear to his pit crew about his tires", "video_id": "video11028", "sen_id": 234260}, {"caption": "a man inside a black race car drives in a white helmet", "video_id": "video11028", "sen_id": 234261}, {"caption": "a driver wears a white helmet blue jumpsuit and thick gloves to maneuver a black car with double white lines down the center through a race course while another man asks for feedback", "video_id": "video11028", "sen_id": 234262}, {"caption": "a man drives a black and white race car in a race on a course as two other men speak to him through a mic and eat a banana", "video_id": "video11028", "sen_id": 234263}, {"caption": "a man drives a race car on a track while his pit crew talks to him on the radio", "video_id": "video11028", "sen_id": 234264}, {"caption": "a racer is racing and his team mate is worried about how his tires are holding out", "video_id": "video11028", "sen_id": 234265}, {"caption": "a man drives a black car with strips around a race track", "video_id": "video11028", "sen_id": 234266}, {"caption": "a car race and the driver speaks to the other person about it", "video_id": "video11028", "sen_id": 234267}, {"caption": "a man driving a race car talks to his pit crew while driving in the race", "video_id": "video11028", "sen_id": 234268}, {"caption": "a driver wearing helmet and driving fast racing cars moving fast and driver beside eating banana displaying on screen", "video_id": "video11028", "sen_id": 234269}, {"caption": "there is a man eating banana inside the car", "video_id": "video11028", "sen_id": 234270}, {"caption": "a british man races around a track in a black and white stripped car", "video_id": "video11028", "sen_id": 234271}, {"caption": "a man giving feedback on the way his car is performing during a race", "video_id": "video11028", "sen_id": 234272}, {"caption": "a man races his bmw against other drivers on a track while another man asks him about the state of his tires from a remote location", "video_id": "video11028", "sen_id": 234273}, {"caption": "a man in a race car talking to a man not in the car on a headset about the performance of the car", "video_id": "video11028", "sen_id": 234274}, {"caption": "a race car driver is racing on a track", "video_id": "video11028", "sen_id": 234275}, {"caption": "a man driving a racing car on a racing track while talking on a headset", "video_id": "video11028", "sen_id": 234276}, {"caption": "several cars race on a raceway a man talks to another man driving a race car via headphones", "video_id": "video11028", "sen_id": 234277}, {"caption": "a black car going around a race track a guy with a black head set a guy in a blue suit eatting a bannana", "video_id": "video11028", "sen_id": 234278}, {"caption": "a man driving a black and white car in a race talks to another man with a headset", "video_id": "video11028", "sen_id": 234279}, {"caption": "a woman describes and demonstrates the accesories related to some small plastic dolls", "video_id": "video12999", "sen_id": 234280}, {"caption": "a woman who is not a child plays with children's toys", "video_id": "video12999", "sen_id": 234281}, {"caption": "woman playing with a small redhaired princess doll in front of a dollhouse", "video_id": "video12999", "sen_id": 234282}, {"caption": "a child playing with four disney princess dolls", "video_id": "video12999", "sen_id": 234283}, {"caption": "a person picks up a barbie doll and takes her out of her dress", "video_id": "video12999", "sen_id": 234284}, {"caption": "a girl displaying an arial doll and changing her clothes with friend dolls in the background", "video_id": "video12999", "sen_id": 234285}, {"caption": "someone holding a barbie doll with three dolls and a doll house in the background", "video_id": "video12999", "sen_id": 234286}, {"caption": "a female playing with and describing polly pocket dolls", "video_id": "video12999", "sen_id": 234287}, {"caption": "a dollhouse and various disney dolls shown including belle and cinderella polly pocket is mentioned", "video_id": "video12999", "sen_id": 234288}, {"caption": "a woman show casing kids toys grabbing an ariel doll and removing her from her dress", "video_id": "video12999", "sen_id": 234289}, {"caption": "a person is keeping all dolls in a table", "video_id": "video12999", "sen_id": 234290}, {"caption": "different color dolls are looking are taken by a girl", "video_id": "video12999", "sen_id": 234291}, {"caption": "a woman with a childlike voice is describing princess ariel in a clip dress", "video_id": "video12999", "sen_id": 234292}, {"caption": "a lady is playing with disney princess dolls", "video_id": "video12999", "sen_id": 234293}, {"caption": "this video having the doll and one lady explain the details about the doll", "video_id": "video12999", "sen_id": 234294}, {"caption": "there are some dolls on the table with variety color", "video_id": "video12999", "sen_id": 234295}, {"caption": "a trio of disney princess toys are shown as a young woman explains about them", "video_id": "video12999", "sen_id": 234296}, {"caption": "a young woman talks about her doll collection and plays with some of them", "video_id": "video12999", "sen_id": 234297}, {"caption": "a woman reviewing a doll of princess ariel and removing her dress to show her bathing suit", "video_id": "video12999", "sen_id": 234298}, {"caption": "a girl is playing with her toy collection baby dolls", "video_id": "video12999", "sen_id": 234299}, {"caption": "two men at a late night show having a conversation", "video_id": "video12076", "sen_id": 234300}, {"caption": "man in half a face mask is comically interviewed by jimmy kimmel", "video_id": "video12076", "sen_id": 234301}, {"caption": "two men in suits having a conversation in front of a studio audience", "video_id": "video12076", "sen_id": 234302}, {"caption": "the jimmy kimmel show has a man with a hand mask talking about a therapy session", "video_id": "video12076", "sen_id": 234303}, {"caption": "a man is sitting in a grey chair", "video_id": "video12076", "sen_id": 234304}, {"caption": "there is a suit man talking from the studio", "video_id": "video12076", "sen_id": 234305}, {"caption": "a man with a wig and fake eyebrows on talks to another man about therapy", "video_id": "video12076", "sen_id": 234306}, {"caption": "a man sitting behind a desk interviews another man sitting on a chair wearing a pretend bald cap", "video_id": "video12076", "sen_id": 234307}, {"caption": "an interview between a make up artist and a news anchor", "video_id": "video12076", "sen_id": 234308}, {"caption": "bearded guy in suit and tie taking interview of actor wearing wig", "video_id": "video12076", "sen_id": 234309}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12076", "sen_id": 234310}, {"caption": "two men in suits on behind a desk interviewing another on stage before an audience", "video_id": "video12076", "sen_id": 234311}, {"caption": "jimmy kimmel interviews an actor on his show but i m not sure who it is", "video_id": "video12076", "sen_id": 234312}, {"caption": "a man in a mask is being interviewedon the jimmy kimmel talk show", "video_id": "video12076", "sen_id": 234313}, {"caption": "bearded guy in suit interviewing actor wearing bald mask", "video_id": "video12076", "sen_id": 234314}, {"caption": "two women talking with each other in news room", "video_id": "video12076", "sen_id": 234315}, {"caption": "one man talk with news reporter in the", "video_id": "video12076", "sen_id": 234316}, {"caption": "its a conversation between 2 man the person wear a wig in his head", "video_id": "video12076", "sen_id": 234317}, {"caption": "a man in a dark suit sitting at a desk interviewing another man in a suit in a grey color chair", "video_id": "video12076", "sen_id": 234318}, {"caption": "in a chat show a main is seating wearing bald head mask", "video_id": "video12076", "sen_id": 234319}, {"caption": "a man is giving a crash course in history and is using a globe", "video_id": "video12691", "sen_id": 234320}, {"caption": "a man is talking by a chalkboard and a globe of the world", "video_id": "video12691", "sen_id": 234321}, {"caption": "a man introduces his show about american history and references a globe", "video_id": "video12691", "sen_id": 234322}, {"caption": "a man with a polo shirt that wants to talk about history", "video_id": "video12691", "sen_id": 234323}, {"caption": "a man wearing glasses is standing next to a globe and talking", "video_id": "video12691", "sen_id": 234324}, {"caption": "a man in a polo shirt is giving a history lesson", "video_id": "video12691", "sen_id": 234325}, {"caption": "a man in glasses talks about history in the 1600's", "video_id": "video12691", "sen_id": 234326}, {"caption": "a tshirt man talking in front of a glob", "video_id": "video12691", "sen_id": 234327}, {"caption": "crash course did you know man in space", "video_id": "video12691", "sen_id": 234328}, {"caption": "a man gives a lecture on his thoughts of us history", "video_id": "video12691", "sen_id": 234329}, {"caption": "person comes fast in the chair he ha globe at the back a drawing in the board", "video_id": "video12691", "sen_id": 234330}, {"caption": "a man is describing about the space craft", "video_id": "video12691", "sen_id": 234331}, {"caption": "a men in dark brown shirt is sitting and talking", "video_id": "video12691", "sen_id": 234332}, {"caption": "a man is talk about a crash course", "video_id": "video12691", "sen_id": 234333}, {"caption": "a strange man talks about american history and his opinions", "video_id": "video12691", "sen_id": 234334}, {"caption": "a man named john green is in a polo shirt and sitting at a desk with a globe to his left", "video_id": "video12691", "sen_id": 234335}, {"caption": "a man scrolling on a chair talking infront of globe", "video_id": "video12691", "sen_id": 234336}, {"caption": "a man is talking about a crash course", "video_id": "video12691", "sen_id": 234337}, {"caption": "a man named john explains the history and he shows the globepicture of moon and american flag is shown", "video_id": "video12691", "sen_id": 234338}, {"caption": "a guy talking about history of the united states", "video_id": "video12691", "sen_id": 234339}, {"caption": "two young people perform physcial challenges at an outdoor location", "video_id": "video10819", "sen_id": 234340}, {"caption": "a young couple participate in a series of odd physical challenges", "video_id": "video10819", "sen_id": 234341}, {"caption": "a man and a woman sitting together taking an online challenge", "video_id": "video10819", "sen_id": 234342}, {"caption": "a couple watches a video that they made of themselves acting out a side kick on their laptop", "video_id": "video10819", "sen_id": 234343}, {"caption": "a man and a woman are watching a video called last challenge", "video_id": "video10819", "sen_id": 234344}, {"caption": "a man and woman watch a video of themselves acting", "video_id": "video10819", "sen_id": 234345}, {"caption": "a man challenging himself in different scenes with a woman", "video_id": "video10819", "sen_id": 234346}, {"caption": "a man in tshirt sitting with his girl friend", "video_id": "video10819", "sen_id": 234347}, {"caption": "a man and woman sitting in front of a laptop and then they are standing in a street play fighting", "video_id": "video10819", "sen_id": 234348}, {"caption": "a popular youtube couple show making of scenes from one of their weekly challenge videos", "video_id": "video10819", "sen_id": 234349}, {"caption": "a man nd a woman are watching a movie or serial on laptop", "video_id": "video10819", "sen_id": 234350}, {"caption": "two people watch a slow-motion action kick in their living room", "video_id": "video10819", "sen_id": 234351}, {"caption": "there is a tshirt man talking with her girl friend", "video_id": "video10819", "sen_id": 234352}, {"caption": "a couple mimes in order to compete for a job", "video_id": "video10819", "sen_id": 234353}, {"caption": "people are acting out a fighting scene in the street", "video_id": "video10819", "sen_id": 234354}, {"caption": "a guy and a woman are doing some things", "video_id": "video10819", "sen_id": 234355}, {"caption": "a man lifts his hand to cover a camera lens a man and woman look at a laptop a man and woman fight in slow motion", "video_id": "video10819", "sen_id": 234356}, {"caption": "a young man and young woman work on a series of challenges", "video_id": "video10819", "sen_id": 234357}, {"caption": "a man and a woman are sitting on a sofa holding a laptop and talking about a challenge", "video_id": "video10819", "sen_id": 234358}, {"caption": "a man and woman are viewing a lap top", "video_id": "video10819", "sen_id": 234359}, {"caption": "people walk on the beach and discuss how to kite surf", "video_id": "video11113", "sen_id": 234360}, {"caption": "a man and a woman going through different actions to do with kite surfing while a male narrates about his kite surfing experiences", "video_id": "video11113", "sen_id": 234361}, {"caption": "a man is being taught how to kite surf by a woman in a blue shirt", "video_id": "video11113", "sen_id": 234362}, {"caption": "a man demonstrates and discusses the ways to perform kite boarding", "video_id": "video11113", "sen_id": 234363}, {"caption": "two people are on the beach holding a kite to kite surf", "video_id": "video11113", "sen_id": 234364}, {"caption": "two people walk on the beach together and look at the horizon", "video_id": "video11113", "sen_id": 234365}, {"caption": "a man learns how to kite surf on the beach", "video_id": "video11113", "sen_id": 234366}, {"caption": "a young woman instructs a man on how to do kite boarding", "video_id": "video11113", "sen_id": 234367}, {"caption": "a woman helps to train a man on the techniques of kite boarding", "video_id": "video11113", "sen_id": 234368}, {"caption": "in this video there is a man in blue shorts taking a class on how to kite surf", "video_id": "video11113", "sen_id": 234369}, {"caption": "a woman teaches a man how to kite surf", "video_id": "video11113", "sen_id": 234370}, {"caption": "there are two people walking while a man is carrying a kite and then the couple are flying the kite", "video_id": "video11113", "sen_id": 234371}, {"caption": "a man holding a kite for surfing and a woman showing him what to do", "video_id": "video11113", "sen_id": 234372}, {"caption": "people are training for kite surfing on a beach", "video_id": "video11113", "sen_id": 234373}, {"caption": "a man and woman are at a beach in brazil", "video_id": "video11113", "sen_id": 234374}, {"caption": "a man learning how to kitesurf on the beach", "video_id": "video11113", "sen_id": 234375}, {"caption": "a man and a woman are preparing to fly a kite", "video_id": "video11113", "sen_id": 234376}, {"caption": "a man and a woman are going to do paragliding and are preparing for the same", "video_id": "video11113", "sen_id": 234377}, {"caption": "a women teaching a man to do kite surfing", "video_id": "video11113", "sen_id": 234378}, {"caption": "some people on a beach are flying a kite", "video_id": "video11113", "sen_id": 234379}, {"caption": "a man discusses the technology of cars and the different leaders in the market", "video_id": "video10364", "sen_id": 234380}, {"caption": "an indian man in a turban and suit announces the news", "video_id": "video10364", "sen_id": 234381}, {"caption": "a man in a black turban and tan suit is reading the news", "video_id": "video10364", "sen_id": 234382}, {"caption": "a man in a brown head piece discusses the future of car driving", "video_id": "video10364", "sen_id": 234383}, {"caption": "a man wearing a turbun sitting down talking with someone", "video_id": "video10364", "sen_id": 234384}, {"caption": "a news reader wearing a turban is reading a news about the connected car plays and it s safety systems", "video_id": "video10364", "sen_id": 234385}, {"caption": "a old man sitting and speaking regarding the technology discusing displaying on screen", "video_id": "video10364", "sen_id": 234386}, {"caption": "a man wearing turban is sharing information on car stock", "video_id": "video10364", "sen_id": 234387}, {"caption": "there is a suit man talking from the studio", "video_id": "video10364", "sen_id": 234388}, {"caption": "a man talking in the cnbc channel about a technologies", "video_id": "video10364", "sen_id": 234389}, {"caption": "a old man wearing white shirt speaking sitting about technology on screen displaying", "video_id": "video10364", "sen_id": 234390}, {"caption": "a guy with a black turban is talking about the news", "video_id": "video10364", "sen_id": 234391}, {"caption": "a man is talking on tv in a news channel", "video_id": "video10364", "sen_id": 234392}, {"caption": "connected car plays connected car stocks harman intl", "video_id": "video10364", "sen_id": 234393}, {"caption": "an indian in a turbin is interviewed about financial matters related to connected cars", "video_id": "video10364", "sen_id": 234394}, {"caption": "the speaker is talking about american technology of connected car plays", "video_id": "video10364", "sen_id": 234395}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10364", "sen_id": 234396}, {"caption": "street cred hardeep walia motif investing co-founder & ceo", "video_id": "video10364", "sen_id": 234397}, {"caption": "a news anchor is talking to a stock expert about a car", "video_id": "video10364", "sen_id": 234398}, {"caption": "an executive is talking about the connected car plays and the car stocks", "video_id": "video10364", "sen_id": 234399}, {"caption": "celebrities joke around with the talk show host on the graham norton show", "video_id": "video10795", "sen_id": 234400}, {"caption": "a man in a suit talks about pictures of him at 11 years old and his eyebrows", "video_id": "video10795", "sen_id": 234401}, {"caption": "a man is interviewing a movie star sitting next to a laughing lady on a tv show", "video_id": "video10795", "sen_id": 234402}, {"caption": "the graham norton show on bbc america is taking place with graham norton speaking to a group of four guests", "video_id": "video10795", "sen_id": 234403}, {"caption": "jake gyllenhaal explains to a few people on a show called the graham norton show how he grew into his eyebrows", "video_id": "video10795", "sen_id": 234404}, {"caption": "a panel of actors and actresses discuss various issues on the graham norton show", "video_id": "video10795", "sen_id": 234405}, {"caption": "a man with a beard and brown hair talks with a women in a yellow dress", "video_id": "video10795", "sen_id": 234406}, {"caption": "many people gathered in some room and discussing some matter", "video_id": "video10795", "sen_id": 234407}, {"caption": "debate between 5 people on the live talking to each other", "video_id": "video10795", "sen_id": 234408}, {"caption": "a few people are sitting on a couch on a tv talk show set", "video_id": "video10795", "sen_id": 234409}, {"caption": "an actor on a talk show telling a story", "video_id": "video10795", "sen_id": 234410}, {"caption": "a man were talking in the room of stage", "video_id": "video10795", "sen_id": 234411}, {"caption": "in a studio some celebrates are discussing about their experience", "video_id": "video10795", "sen_id": 234412}, {"caption": "several white people gather in a room and speak on television about themselves", "video_id": "video10795", "sen_id": 234413}, {"caption": "men in black coat giving interview about something interestingly with around some other people hearing that", "video_id": "video10795", "sen_id": 234414}, {"caption": "a man in black coat with a girl sitting beside speaking and laughing", "video_id": "video10795", "sen_id": 234415}, {"caption": "a bearded man is appearing on a tv talk show with other laughing guests led by a gray-bearded host on a red and purple set", "video_id": "video10795", "sen_id": 234416}, {"caption": "bbc america actor and actress speking with anchor", "video_id": "video10795", "sen_id": 234417}, {"caption": "3 person sits in a sofa and talks to a person the girl looks beautiful and she wear a sleeveless shirt", "video_id": "video10795", "sen_id": 234418}, {"caption": "a man with a beard is talking on tv", "video_id": "video10795", "sen_id": 234419}, {"caption": "two men are fighting fiercely outside as people look on", "video_id": "video10036", "sen_id": 234420}, {"caption": "a man on top of another man bashing his head on to the ground", "video_id": "video10036", "sen_id": 234421}, {"caption": "two men have a vicious street fight as people watch", "video_id": "video10036", "sen_id": 234422}, {"caption": "a couple of guys are fighting while the crowd looks on", "video_id": "video10036", "sen_id": 234423}, {"caption": "this clip shows two men fighting one man is wearing a green shirt and tan pants the other is wearing all white", "video_id": "video10036", "sen_id": 234424}, {"caption": "there are two people fighting in front of some people", "video_id": "video10036", "sen_id": 234425}, {"caption": "the two men fight violently in front of the people in the town", "video_id": "video10036", "sen_id": 234426}, {"caption": "a man banging another man s head against the ground", "video_id": "video10036", "sen_id": 234427}, {"caption": "two men are fighting and crowd of people watching them", "video_id": "video10036", "sen_id": 234428}, {"caption": "couple of guys fighting in the mud with people watching them", "video_id": "video10036", "sen_id": 234429}, {"caption": "there is a man fighting against a man in front of some people", "video_id": "video10036", "sen_id": 234430}, {"caption": "a man rushes another man while he is on the ground and is beating him up in a fight", "video_id": "video10036", "sen_id": 234431}, {"caption": "two men are fighting in the street as a crowd looks on", "video_id": "video10036", "sen_id": 234432}, {"caption": "two men fight in public on a dirt road", "video_id": "video10036", "sen_id": 234433}, {"caption": "a couple of guys are fighting in the dirt", "video_id": "video10036", "sen_id": 234434}, {"caption": "two men fight in the dirt while neighbors look on from the sidelines", "video_id": "video10036", "sen_id": 234435}, {"caption": "two men fight savagely on the dusty ground", "video_id": "video10036", "sen_id": 234436}, {"caption": "a two men are fighting in the film scene", "video_id": "video10036", "sen_id": 234437}, {"caption": "two men fighting in a remote village in the middle of a street as a crowd watches", "video_id": "video10036", "sen_id": 234438}, {"caption": "some people in india are fighting on a street", "video_id": "video10036", "sen_id": 234439}, {"caption": "ingredients being mixed together by a woman stirring them", "video_id": "video12052", "sen_id": 234440}, {"caption": "tofu is shown in the bowl with other ingredients", "video_id": "video12052", "sen_id": 234441}, {"caption": "a chef talks about the ingredients she is using for a recipe she is preparing", "video_id": "video12052", "sen_id": 234442}, {"caption": "there is a brown cake followed by some raw ingredients on a white counter and someone mixing a liquid", "video_id": "video12052", "sen_id": 234443}, {"caption": "a woman is giving a very specific set of baking instructions", "video_id": "video12052", "sen_id": 234444}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video12052", "sen_id": 234445}, {"caption": "shots of food are shown and brownies are explained how to be made", "video_id": "video12052", "sen_id": 234446}, {"caption": "a lady displays and lists out all the ingredients of a recipe laid out on her kitchen table and explains how to add the water to the gelatin", "video_id": "video12052", "sen_id": 234447}, {"caption": "a woman moving her hand over bowls that are filled with food items", "video_id": "video12052", "sen_id": 234448}, {"caption": "a woman showing all the ingredients she is going to use to bake with while mixing gelatin", "video_id": "video12052", "sen_id": 234449}, {"caption": "a woman showing milk cream cheese gelatin and water for a recipe", "video_id": "video12052", "sen_id": 234450}, {"caption": "a woman cooking with a few cups of gelatin", "video_id": "video12052", "sen_id": 234451}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video12052", "sen_id": 234452}, {"caption": "a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12052", "sen_id": 234453}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video12052", "sen_id": 234454}, {"caption": "brownies are being prepared using simple ingredients that are mixed together one by one", "video_id": "video12052", "sen_id": 234455}, {"caption": "a woman is telling a ingredient for making sweet", "video_id": "video12052", "sen_id": 234456}, {"caption": "a woman is making a dish using sugar cream cheese", "video_id": "video12052", "sen_id": 234457}, {"caption": "the recipe made of gelatin cheese and sugar and baked to form the cake", "video_id": "video12052", "sen_id": 234458}, {"caption": "a person is showing a group of ingredients", "video_id": "video12052", "sen_id": 234459}, {"caption": "a newscaster in a black suit and a pink shirt is commenting about a duchess due to give birth sometime soon", "video_id": "video11956", "sen_id": 234460}, {"caption": "reporter on tv is speaking about the royal couple and what they will name their firstborn child", "video_id": "video11956", "sen_id": 234461}, {"caption": "a tv anchorman has graying temples wears eyeglasses wears a black suit with purple tie and purple gingham shirt and is seated in front of a city panorama as evening falls", "video_id": "video11956", "sen_id": 234462}, {"caption": "a man is talking about a royal baby that is supposed to be born", "video_id": "video11956", "sen_id": 234463}, {"caption": "a new anchor is talking about the duchess of cambridge and the due date of her pregnancy", "video_id": "video11956", "sen_id": 234464}, {"caption": "a man in a suit with a pink shirt and tie discusses the due date of the duchess of cambridge", "video_id": "video11956", "sen_id": 234465}, {"caption": "a news reporter gives a report on a famous person who is having a baby", "video_id": "video11956", "sen_id": 234466}, {"caption": "a man in black suit with pink tie is talking about something for a tv show", "video_id": "video11956", "sen_id": 234467}, {"caption": "a man is speaking regarding a topic while wearing a suit", "video_id": "video11956", "sen_id": 234468}, {"caption": "a man in suit and maroon tie sits at desk in front of backdrop of city scape", "video_id": "video11956", "sen_id": 234469}, {"caption": "a man with a purple tie and dark suit is reporting news on the duchess of cambridge", "video_id": "video11956", "sen_id": 234470}, {"caption": "there is a black suit man discussing in a studio", "video_id": "video11956", "sen_id": 234471}, {"caption": "a gentleman is talking on a subject related to gynecology", "video_id": "video11956", "sen_id": 234472}, {"caption": "a man is talking about the duchess of cambridge having a baby", "video_id": "video11956", "sen_id": 234473}, {"caption": "a man in a suit talks about the news of a baby birth", "video_id": "video11956", "sen_id": 234474}, {"caption": "there is a black suit man talking from in show", "video_id": "video11956", "sen_id": 234475}, {"caption": "a man in a suit is earnestly addressing the camera", "video_id": "video11956", "sen_id": 234476}, {"caption": "a male newscaster is speaking about the baby that the duchess of cambridge is pregnant with and due soon", "video_id": "video11956", "sen_id": 234477}, {"caption": "person with pink shirt is talking about the latest news", "video_id": "video11956", "sen_id": 234478}, {"caption": "a reporter talking about how the duchess of cambridge is going to have her baby any day now", "video_id": "video11956", "sen_id": 234479}, {"caption": "a large spider is crawling on a very large web next to a light", "video_id": "video11958", "sen_id": 234480}, {"caption": "a man and a woman talk while a man films a giant spider on a giant spider web near a hanging light", "video_id": "video11958", "sen_id": 234481}, {"caption": "a man in a basement captures footage of a massive spider in the center of a large well-built web the huge spider crawls up the web quickly and onto a lamp cover when it senses a disturbance", "video_id": "video11958", "sen_id": 234482}, {"caption": "a thick tan spider with dark body hangs in the center of a large web attached near a cork board with postings attached with pins and then climbs up the web to the circular lamp shining over the board", "video_id": "video11958", "sen_id": 234483}, {"caption": "a person talks about a large spider that is hanging from a web on an outdoor light", "video_id": "video11958", "sen_id": 234484}, {"caption": "a bulletin board with a spider in a web on it", "video_id": "video11958", "sen_id": 234485}, {"caption": "a woman asks a question and a male voice answers and the camera begins to focus on a large spider in a web crawling around", "video_id": "video11958", "sen_id": 234486}, {"caption": "there is a spider hanging in a room", "video_id": "video11958", "sen_id": 234487}, {"caption": "a spider crawling up a large spider web and onto an object", "video_id": "video11958", "sen_id": 234488}, {"caption": "a room and eight leg mosquito run away from the home", "video_id": "video11958", "sen_id": 234489}, {"caption": "a board has several notes and a huge spider web and spider", "video_id": "video11958", "sen_id": 234490}, {"caption": "the spider making its net and moving on the net", "video_id": "video11958", "sen_id": 234491}, {"caption": "a dimly lit bulletin board covered in spiderwebs with a massive spider crawling around on it", "video_id": "video11958", "sen_id": 234492}, {"caption": "a giant spider is recorded under a bright light", "video_id": "video11958", "sen_id": 234493}, {"caption": "a woman is asking a man where a rope goes while there is a spider on a web being recorded", "video_id": "video11958", "sen_id": 234494}, {"caption": "a spider web is formed over a cardboard hanging on the wall", "video_id": "video11958", "sen_id": 234495}, {"caption": "a spider comes down from a thread", "video_id": "video11958", "sen_id": 234496}, {"caption": "in a room some spiders are there makes so", "video_id": "video11958", "sen_id": 234497}, {"caption": "its the doc under the lights they are pin on the board there is spider climbing up", "video_id": "video11958", "sen_id": 234498}, {"caption": "a spider is building a web on the light and moving around it", "video_id": "video11958", "sen_id": 234499}, {"caption": "talking about a barbie play dress up set and how its a great travel toy", "video_id": "video10269", "sen_id": 234500}, {"caption": "a person hand holding up children arts and crafts", "video_id": "video10269", "sen_id": 234501}, {"caption": "a video that is showing a barbie dress up product", "video_id": "video10269", "sen_id": 234502}, {"caption": "a pink plastic container with barbie magnets is held by a girl", "video_id": "video10269", "sen_id": 234503}, {"caption": "someone is holding and talking about a fashion toy book", "video_id": "video10269", "sen_id": 234504}, {"caption": "a barbie dress set being shown from top to bottom", "video_id": "video10269", "sen_id": 234505}, {"caption": "a woman holds up a book with a picture of three different style barbies on it's cover", "video_id": "video10269", "sen_id": 234506}, {"caption": "a woman is holding and talking about a barbie dress up set toy", "video_id": "video10269", "sen_id": 234507}, {"caption": "a young girl plays with a barbie magnet dress up toy", "video_id": "video10269", "sen_id": 234508}, {"caption": "a woman gives a review on a barbie dress-up set toy", "video_id": "video10269", "sen_id": 234509}, {"caption": "a woman is holding a barbie s book and saying about it", "video_id": "video10269", "sen_id": 234510}, {"caption": "there is a golden hair woman with her friends", "video_id": "video10269", "sen_id": 234511}, {"caption": "a barbie magnetic set is being advertised with over 36 pieces", "video_id": "video10269", "sen_id": 234512}, {"caption": "its a magnetic activity fun barbie kit which has the 3 barbie dolls", "video_id": "video10269", "sen_id": 234513}, {"caption": "a woman is holding barbie doll fun book", "video_id": "video10269", "sen_id": 234514}, {"caption": "the woman is describing a barbie magnetic activity pack", "video_id": "video10269", "sen_id": 234515}, {"caption": "description of a barbie magnetic dress up toy set", "video_id": "video10269", "sen_id": 234516}, {"caption": "its barbie doll with over 30 fashion the cover is in attractive pink color", "video_id": "video10269", "sen_id": 234517}, {"caption": "a cartoon dolls still images of dolls pictures colour papers on the screen displaying", "video_id": "video10269", "sen_id": 234518}, {"caption": "someone is filming the front of a barbie doll box", "video_id": "video10269", "sen_id": 234519}, {"caption": "a person describes the process for doing a battery replacement", "video_id": "video12563", "sen_id": 234520}, {"caption": "a man is speaking about how to change a car battery", "video_id": "video12563", "sen_id": 234521}, {"caption": "a man demonstrates and describes the way to change a battery in a device", "video_id": "video12563", "sen_id": 234522}, {"caption": "the person is inserting a round battery into the compartment", "video_id": "video12563", "sen_id": 234523}, {"caption": "a man is talking about replacing batteries in a device while the instructions show with black text on a white background", "video_id": "video12563", "sen_id": 234524}, {"caption": "a enlish sounding man that is talking about some part", "video_id": "video12563", "sen_id": 234525}, {"caption": "an explanation of how to replace and where to get a particular battery", "video_id": "video12563", "sen_id": 234526}, {"caption": "black words appear on a white background discussing how to insert a new battery", "video_id": "video12563", "sen_id": 234527}, {"caption": "a narrator instructs on batteries while text is shown on screen", "video_id": "video12563", "sen_id": 234528}, {"caption": "an english man describes how to replace a cr2032 3v battery", "video_id": "video12563", "sen_id": 234529}, {"caption": "a piece of a text based how-to video with a voice-over commentary", "video_id": "video12563", "sen_id": 234530}, {"caption": "a man is replacing the battery and the ad of the battery is shown", "video_id": "video12563", "sen_id": 234531}, {"caption": "some pharagraphs are displayed on a screen", "video_id": "video12563", "sen_id": 234532}, {"caption": "now fit the new battery it goes positive side down no writing visible", "video_id": "video12563", "sen_id": 234533}, {"caption": "a man talking about how to replace a battery and where it can be purchased", "video_id": "video12563", "sen_id": 234534}, {"caption": "there is a website details for battery purchase", "video_id": "video12563", "sen_id": 234535}, {"caption": "a male instructor demonstrates the proper usage of a pocket stopwatch", "video_id": "video12563", "sen_id": 234536}, {"caption": "replace with a cr2032 3v battery (available to buy from our website)", "video_id": "video12563", "sen_id": 234537}, {"caption": "a man talks about replacing a specific battery which is available from their website", "video_id": "video12563", "sen_id": 234538}, {"caption": "some black text is on a white screen", "video_id": "video12563", "sen_id": 234539}, {"caption": "a man chopping up a bunch of ingredients for a recipe", "video_id": "video10543", "sen_id": 234540}, {"caption": "a man cutting up ingredients for a recipe from thailand", "video_id": "video10543", "sen_id": 234541}, {"caption": "a woman is cutting up some vegetables on the board", "video_id": "video10543", "sen_id": 234542}, {"caption": "a chef preps for a recipe by chopping up a variety of vegetables", "video_id": "video10543", "sen_id": 234543}, {"caption": "a man is cutting garlic and some other vegetables on a chopping board", "video_id": "video10543", "sen_id": 234544}, {"caption": "an unseen person is slicing and chopping onions", "video_id": "video10543", "sen_id": 234545}, {"caption": "a man is mincing the onions and vegetables on the chopping wood", "video_id": "video10543", "sen_id": 234546}, {"caption": "a person in kitchen cleaning prawns and cutting the vegetables into small pieces with knife on kitchen board", "video_id": "video10543", "sen_id": 234547}, {"caption": "man chopping garlic and onion for making a shrmip dish", "video_id": "video10543", "sen_id": 234548}, {"caption": "cooking demonstration of prawns in progress in the tv show", "video_id": "video10543", "sen_id": 234549}, {"caption": "there is a man slicing onions on the table", "video_id": "video10543", "sen_id": 234550}, {"caption": "a lady slicing onions into pieces", "video_id": "video10543", "sen_id": 234551}, {"caption": "a man cutting the vegetables on the table in kitchen", "video_id": "video10543", "sen_id": 234552}, {"caption": "a man carefully chopping garlic and onions on a wooden cutting board", "video_id": "video10543", "sen_id": 234553}, {"caption": "a man slices up vegetables on a cutting board", "video_id": "video10543", "sen_id": 234554}, {"caption": "a person is chopping ingredients to cook with", "video_id": "video10543", "sen_id": 234555}, {"caption": "the person chops the vegetables on the cutting board", "video_id": "video10543", "sen_id": 234556}, {"caption": "a is slicing a white onion in to pieces", "video_id": "video10543", "sen_id": 234557}, {"caption": "a male cookchef is cutting up onions and preparing other ingredients for some sort of dish he is instructing how to cook", "video_id": "video10543", "sen_id": 234558}, {"caption": "a man chops garlic and green onions in preparation for cooking", "video_id": "video10543", "sen_id": 234559}, {"caption": "a woman with dark hair and wearing a pink shirt is interacting with a talking parrot in a kitchen", "video_id": "video11647", "sen_id": 234560}, {"caption": "a parrot being very bored and wants to quit ", "video_id": "video11647", "sen_id": 234561}, {"caption": "a lady allows her parrots to play with keys and speaks to it before giving it a treat", "video_id": "video11647", "sen_id": 234562}, {"caption": "a woman is talking to a bird as it asks for water", "video_id": "video11647", "sen_id": 234563}, {"caption": "a woman is having a conversation with a gray parrot who can talk", "video_id": "video11647", "sen_id": 234564}, {"caption": "a woman with thick black hair gets her gray-and-white parrot to perform a counting trick with plastic keys denies the parrot's repeated request to go back and responds to the parrot's request for water", "video_id": "video11647", "sen_id": 234565}, {"caption": "a lady speaking to a beautiful grey bird and the bird speaking back", "video_id": "video11647", "sen_id": 234566}, {"caption": "there is a women with a parrot in a room", "video_id": "video11647", "sen_id": 234567}, {"caption": "parrot asking water to one women in home", "video_id": "video11647", "sen_id": 234568}, {"caption": "a woman is attempting to quiz her parrot on shapes", "video_id": "video11647", "sen_id": 234569}, {"caption": "a women in white give some plastic key to parrot in grey color and she show a bowl near the parrot", "video_id": "video11647", "sen_id": 234570}, {"caption": "there is a parrot playing with a women", "video_id": "video11647", "sen_id": 234571}, {"caption": "a woman and her gray parrot talk to each other in a small room", "video_id": "video11647", "sen_id": 234572}, {"caption": "a lady in white dress color cloth wearing and parrot in black feeding displaying on screen", "video_id": "video11647", "sen_id": 234573}, {"caption": "the grey bird with the black beak is answers the woman s questions", "video_id": "video11647", "sen_id": 234574}, {"caption": "there is a woman with black hair talking to a sparrow", "video_id": "video11647", "sen_id": 234575}, {"caption": "one nice parrot is talking with a women", "video_id": "video11647", "sen_id": 234576}, {"caption": "a cute ash parrot with the black beak taking something and turning its head", "video_id": "video11647", "sen_id": 234577}, {"caption": "a woman is talking to a grey bird who is asking for water", "video_id": "video11647", "sen_id": 234578}, {"caption": "a woman is filming herself with her parrot", "video_id": "video11647", "sen_id": 234579}, {"caption": "a girl is eating something out of a bowl on one side and a man is spinning a girl around in a swivel desk chair on the other side", "video_id": "video11819", "sen_id": 234580}, {"caption": "a woman eating a meal at a table and a man walking through a room", "video_id": "video11819", "sen_id": 234581}, {"caption": "an outro clip from a woman's youtube channel", "video_id": "video11819", "sen_id": 234582}, {"caption": "a woman eating from a bowl split screen with a woman spinning a man in a chair", "video_id": "video11819", "sen_id": 234583}, {"caption": "a girl is spinning a boy in a chair", "video_id": "video11819", "sen_id": 234584}, {"caption": "a women in a kitchen having soup and in another room women turning the chair of a men", "video_id": "video11819", "sen_id": 234585}, {"caption": "a woman is spinning a man around in an office chair while another is eating", "video_id": "video11819", "sen_id": 234586}, {"caption": "two videos side by side show a woman eating and a young man spinning a second young man in an office chair", "video_id": "video11819", "sen_id": 234587}, {"caption": "a double split video screen showing a girl eating from a bowl while a man sitting on a chair is being spun by his friend", "video_id": "video11819", "sen_id": 234588}, {"caption": "a woman spins a man around and around in an office chair then he stands up and attempts to walk", "video_id": "video11819", "sen_id": 234589}, {"caption": "a woman is rotating a chair fastly and another person is sitting", "video_id": "video11819", "sen_id": 234590}, {"caption": "a girl is eating ice cream and a man is being revolved in the chair by a lady", "video_id": "video11819", "sen_id": 234591}, {"caption": "a woman eating a bowl of food and someone spinning a person in a chair", "video_id": "video11819", "sen_id": 234592}, {"caption": "girl makes boy sits on rotating chairthen she rotates it fully and continously", "video_id": "video11819", "sen_id": 234593}, {"caption": "a woman eating and a young couple playing with a swivel chair", "video_id": "video11819", "sen_id": 234594}, {"caption": "there is a brown hair woman eating a food", "video_id": "video11819", "sen_id": 234595}, {"caption": "a side by side video of a women eating on the left and a man being spun in a chair on the right", "video_id": "video11819", "sen_id": 234596}, {"caption": "a woman is eating and man is playing in different screen", "video_id": "video11819", "sen_id": 234597}, {"caption": "a split screen show on one side a woman eating and on the other side two people are playing with an office chair", "video_id": "video11819", "sen_id": 234598}, {"caption": "girl twisting her brother on a wheeled chair", "video_id": "video11819", "sen_id": 234599}, {"caption": "a woman talking about clothing", "video_id": "video11540", "sen_id": 234600}, {"caption": "a woman is discussing the different fabrics of clothing", "video_id": "video11540", "sen_id": 234601}, {"caption": "a clip from a german fashion youtube show", "video_id": "video11540", "sen_id": 234602}, {"caption": "an asian girl talks about a skirt in in front of various make up products", "video_id": "video11540", "sen_id": 234603}, {"caption": "a woman with a white shirt talking to the camera", "video_id": "video11540", "sen_id": 234604}, {"caption": "a girl who is seated is explaining about a wardrobe in her hand", "video_id": "video11540", "sen_id": 234605}, {"caption": "a woman is sitting and holding a plaid skirt while talking about it", "video_id": "video11540", "sen_id": 234606}, {"caption": "women showing dress and talking about it", "video_id": "video11540", "sen_id": 234607}, {"caption": "a woman is talking about a plaid skirt", "video_id": "video11540", "sen_id": 234608}, {"caption": "a pretty young girl with brown hair holds up a skirt", "video_id": "video11540", "sen_id": 234609}, {"caption": "a woman with white dressing talking about a cloth", "video_id": "video11540", "sen_id": 234610}, {"caption": "the young girl is all excited with her gingham-checked tunic skirt and is saying something about it", "video_id": "video11540", "sen_id": 234611}, {"caption": "a woman reviews a small dress on camera", "video_id": "video11540", "sen_id": 234612}, {"caption": "a girl is talking about a piece of her clothing", "video_id": "video11540", "sen_id": 234613}, {"caption": "a young woman talks about clothes and laughs", "video_id": "video11540", "sen_id": 234614}, {"caption": "a woman is sitting at a table showing a skirt", "video_id": "video11540", "sen_id": 234615}, {"caption": "a girl in home talking something about the clothes", "video_id": "video11540", "sen_id": 234616}, {"caption": "a young woman is holds up a checkered pencil skirt and explaining about it", "video_id": "video11540", "sen_id": 234617}, {"caption": "a girl in white dress color wearing cloth speaking showing cloth stiched displaying on screen", "video_id": "video11540", "sen_id": 234618}, {"caption": "a women in white selecting dresses for her", "video_id": "video11540", "sen_id": 234619}, {"caption": "real life radio control cars on bbc channel", "video_id": "video12816", "sen_id": 234620}, {"caption": "a car pulls a destroy mobile home frame behind it through a dirt field there are several heaps of wrecked airwater crafts a car drives alone in a dirt field with no driver in the seat a woman's face appears alone with hair blowing in the wind", "video_id": "video12816", "sen_id": 234621}, {"caption": "one van cabin slipped down from the crane on the car then the car moved", "video_id": "video12816", "sen_id": 234622}, {"caption": "an experimantation a radio remote car on speed", "video_id": "video12816", "sen_id": 234623}, {"caption": "clip of a car driving around in what looks to be the desert with a man talking about radio controlled cars", "video_id": "video12816", "sen_id": 234624}, {"caption": "a car is towing the ruined remains of a trailer behind it down a hill", "video_id": "video12816", "sen_id": 234625}, {"caption": "a narrator introduces an experiment about driving a car with radio", "video_id": "video12816", "sen_id": 234626}, {"caption": "a white colour radio controlled car is tested on the field", "video_id": "video12816", "sen_id": 234627}, {"caption": "a radio controlled car is shown dragging crumpled debris in a canyon surrounded by high rock walls", "video_id": "video12816", "sen_id": 234628}, {"caption": "a car is having a test done on it", "video_id": "video12816", "sen_id": 234629}, {"caption": "a white car is coming on a road in bbc news channel", "video_id": "video12816", "sen_id": 234630}, {"caption": "a testing to see if radio controlled cars were efficient in the past", "video_id": "video12816", "sen_id": 234631}, {"caption": "radio controlled cars are being tested for speed", "video_id": "video12816", "sen_id": 234632}, {"caption": "one truck drags around a broken trailer followed by an auto test for an autonomous car", "video_id": "video12816", "sen_id": 234633}, {"caption": "a car is driving away from a trailer", "video_id": "video12816", "sen_id": 234634}, {"caption": "a test on radio controlled cars is being conducted", "video_id": "video12816", "sen_id": 234635}, {"caption": "radio controlled cars are being brought outside for a test drive including it being gauged for its speed", "video_id": "video12816", "sen_id": 234636}, {"caption": "a car pulling a tent behind it with its lights on", "video_id": "video12816", "sen_id": 234637}, {"caption": "a big bus came with a great speed and crashed over the white car", "video_id": "video12816", "sen_id": 234638}, {"caption": "a person s face is zoomed in on the camera", "video_id": "video12816", "sen_id": 234639}, {"caption": "a leg of lamb and ingredients are displayed for the contents of a recipe", "video_id": "video12714", "sen_id": 234640}, {"caption": "a rack of raw lamb is shown near seasonings oil and onions", "video_id": "video12714", "sen_id": 234641}, {"caption": "a person is displaying the meat as well as the herbs", "video_id": "video12714", "sen_id": 234642}, {"caption": "a chef discusses the various ingredients needed for a recipe they are preparing", "video_id": "video12714", "sen_id": 234643}, {"caption": "a man is describing the ingredients needed to cook a leg of lamb", "video_id": "video12714", "sen_id": 234644}, {"caption": "in the kitchen a man going to make a meet dish", "video_id": "video12714", "sen_id": 234645}, {"caption": "a man showing how to season and prepare a leg of lamb", "video_id": "video12714", "sen_id": 234646}, {"caption": "a chef goes through a list of ingredients that he is using for a lamb recipe", "video_id": "video12714", "sen_id": 234647}, {"caption": "a person is showing how to cook a piece of meat", "video_id": "video12714", "sen_id": 234648}, {"caption": "a man prepares to cook a leg of lamb with delicious ingredients", "video_id": "video12714", "sen_id": 234649}, {"caption": "there is a man preparing a dish with meet", "video_id": "video12714", "sen_id": 234650}, {"caption": "a man talks about the ingredients he is going to use to cook his lamb", "video_id": "video12714", "sen_id": 234651}, {"caption": "a cook explains how to cook a leg of lamb with the ingredients on a table", "video_id": "video12714", "sen_id": 234652}, {"caption": "someone is going over the ingredients they are using", "video_id": "video12714", "sen_id": 234653}, {"caption": "a man going over how he intends to cook a leg of lamb", "video_id": "video12714", "sen_id": 234654}, {"caption": "a man with a british accent is presenting the ingredents for a recipe for leg of lamb starting with olive oil and fresh ground pepper", "video_id": "video12714", "sen_id": 234655}, {"caption": "a man is decribing ingredients and how he plans on making a dish", "video_id": "video12714", "sen_id": 234656}, {"caption": "a man is describing the ingredients that he is going to use to cook a leg of lamb", "video_id": "video12714", "sen_id": 234657}, {"caption": "man is presenting all the ingredients to make the lunch", "video_id": "video12714", "sen_id": 234658}, {"caption": "a person is preparing a meal in their kitchen", "video_id": "video12714", "sen_id": 234659}, {"caption": "different rugby plays are compiled together for the viewer", "video_id": "video11889", "sen_id": 234660}, {"caption": "men's teams play soccer while upbeat music plays", "video_id": "video11889", "sen_id": 234661}, {"caption": "four teams of male soccer players play soccer games on grass covered fields", "video_id": "video11889", "sen_id": 234662}, {"caption": "soccer players are committing serious fouls against one another", "video_id": "video11889", "sen_id": 234663}, {"caption": "there is a man in a black shirt tackling a man in a yellow shirt", "video_id": "video11889", "sen_id": 234664}, {"caption": "a man in a blue shirt running with a ball", "video_id": "video11889", "sen_id": 234665}, {"caption": "a team in black plays a team in yellow and a team in blue plays a team in read on a game of soccer", "video_id": "video11889", "sen_id": 234666}, {"caption": "music is playing in the background while images of rugby players are being shown", "video_id": "video11889", "sen_id": 234667}, {"caption": "highlights of some behind the back passes during rugby matches", "video_id": "video11889", "sen_id": 234668}, {"caption": "a bunch of men in red and blue uniforms playing soccer", "video_id": "video11889", "sen_id": 234669}, {"caption": "two teams playing soccer in red and blue uniforms", "video_id": "video11889", "sen_id": 234670}, {"caption": "a soccer team is playing on national television and the player in blue makes a great play", "video_id": "video11889", "sen_id": 234671}, {"caption": "members of a rugby team each trying to pass to score", "video_id": "video11889", "sen_id": 234672}, {"caption": "two teams competing in a sports game on a field", "video_id": "video11889", "sen_id": 234673}, {"caption": "two different rugby teams playing in a game showing how to pass the ball", "video_id": "video11889", "sen_id": 234674}, {"caption": "players are struggling to capture the rugby ball", "video_id": "video11889", "sen_id": 234675}, {"caption": "ball players of rivaling teams competing against one another to score", "video_id": "video11889", "sen_id": 234676}, {"caption": "two big teams are playing base ball and red shirted one chasing well", "video_id": "video11889", "sen_id": 234677}, {"caption": "a yellow and blue color dress players playing game inside stadium running and catching ball dashing audience watching displaying on screen", "video_id": "video11889", "sen_id": 234678}, {"caption": "some people are playing rugby on a field", "video_id": "video11889", "sen_id": 234679}, {"caption": "a cartoon duck is doing silly things with his friends", "video_id": "video12887", "sen_id": 234680}, {"caption": "different disney charaters from various scenes are meshed with a song", "video_id": "video12887", "sen_id": 234681}, {"caption": "a clip from a montage video of different cartoons", "video_id": "video12887", "sen_id": 234682}, {"caption": "a parrot a duck and several other characters dance to cindy lauper's song time after time", "video_id": "video12887", "sen_id": 234683}, {"caption": "different cartoon characters in different clips while music is being played", "video_id": "video12887", "sen_id": 234684}, {"caption": "its a animated video about planet sand", "video_id": "video12887", "sen_id": 234685}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12887", "sen_id": 234686}, {"caption": "the cartoon charcter is playing their friends an skypark and water in very well", "video_id": "video12887", "sen_id": 234687}, {"caption": "cartoons run around and fly on a carpet", "video_id": "video12887", "sen_id": 234688}, {"caption": "a person is showing cartoon character on screen", "video_id": "video12887", "sen_id": 234689}, {"caption": "there is a blue dressing duck walking with friends", "video_id": "video12887", "sen_id": 234690}, {"caption": "people are enjoying the performance of cartoon characters", "video_id": "video12887", "sen_id": 234691}, {"caption": "a parrot and donald duck are marching and playing on a magic carpet", "video_id": "video12887", "sen_id": 234692}, {"caption": "compilation of a few interesting timeless kid cartoons", "video_id": "video12887", "sen_id": 234693}, {"caption": "documentary about cartoon movies with their sucess being displayed on screen", "video_id": "video12887", "sen_id": 234694}, {"caption": "a cartoon clip featuring donald duck is being played", "video_id": "video12887", "sen_id": 234695}, {"caption": "a viewage of different cartoon animation characters in a play", "video_id": "video12887", "sen_id": 234696}, {"caption": "an animation film is playing on a screen", "video_id": "video12887", "sen_id": 234697}, {"caption": "three donald duck are fighting for an musical instrument", "video_id": "video12887", "sen_id": 234698}, {"caption": "a couple of birds are in a cartoon", "video_id": "video12887", "sen_id": 234699}, {"caption": "finger pointing at main objects on a surveillance footage", "video_id": "video12576", "sen_id": 234700}, {"caption": "a video game snapshot of some of the preferences", "video_id": "video12576", "sen_id": 234701}, {"caption": "a finger pointing to various settings on a digital screen", "video_id": "video12576", "sen_id": 234702}, {"caption": "man discusses how to change settings on a laptop computer", "video_id": "video12576", "sen_id": 234703}, {"caption": "someone is playing a video of a snow setting followed by settings on a camera", "video_id": "video12576", "sen_id": 234704}, {"caption": "a man is describing how to operate a surveillance camera", "video_id": "video12576", "sen_id": 234705}, {"caption": "a camera shows a snowy day with a car drivig in the distance", "video_id": "video12576", "sen_id": 234706}, {"caption": "a man is describing how to use an alternate mode on a surveillance camera", "video_id": "video12576", "sen_id": 234707}, {"caption": "there is a man showing how to use the menu on a video recorder", "video_id": "video12576", "sen_id": 234708}, {"caption": "a man discussing how to use the features of a remote camera system", "video_id": "video12576", "sen_id": 234709}, {"caption": "a man describes how to use a digital camera s manual focus setting", "video_id": "video12576", "sen_id": 234710}, {"caption": "a snowy scene of buildings and a tree gets black rectangles over it", "video_id": "video12576", "sen_id": 234711}, {"caption": "a man is giving a tutorial on how to use a camera", "video_id": "video12576", "sen_id": 234712}, {"caption": "someone is explaining about something showing different pictures in the computer monitor", "video_id": "video12576", "sen_id": 234713}, {"caption": "a man explaining the settings on a digital camera", "video_id": "video12576", "sen_id": 234714}, {"caption": "a camera is shown along with the options of the capturing", "video_id": "video12576", "sen_id": 234715}, {"caption": "a man shoots a video of the snow falling outside his house", "video_id": "video12576", "sen_id": 234716}, {"caption": "a man is showing how to use settings on a camera", "video_id": "video12576", "sen_id": 234717}, {"caption": "a man showing the characteristics of a video camera", "video_id": "video12576", "sen_id": 234718}, {"caption": "a person is pressing some icons on their camera", "video_id": "video12576", "sen_id": 234719}, {"caption": "people are taking a break real quick in a marathon", "video_id": "video10203", "sen_id": 234720}, {"caption": "people are running in a long distance marathon competition", "video_id": "video10203", "sen_id": 234721}, {"caption": "several runners are running in a race in a dirt and gravel road", "video_id": "video10203", "sen_id": 234722}, {"caption": "in the marathon running the winner is finish their aim in clearly", "video_id": "video10203", "sen_id": 234723}, {"caption": "a jogger runs down road and others are seen running along dirt trail", "video_id": "video10203", "sen_id": 234724}, {"caption": "people cheer on runners as they run down a dirt road", "video_id": "video10203", "sen_id": 234725}, {"caption": "runners run down a dirt path passing a row of cars and getting snacks", "video_id": "video10203", "sen_id": 234726}, {"caption": "a man is running down a dirt road and stops to catch his breath", "video_id": "video10203", "sen_id": 234727}, {"caption": "a man runs on the road with other people then sits on the ground", "video_id": "video10203", "sen_id": 234728}, {"caption": "group of ultra marathon runners stocking up on food and water", "video_id": "video10203", "sen_id": 234729}, {"caption": "runners are running 285 mile run and stopping and swaping their water out one guy said i am hungry and got a banana to take with him", "video_id": "video10203", "sen_id": 234730}, {"caption": "a man running a race on a road while passing cars", "video_id": "video10203", "sen_id": 234731}, {"caption": "men and woman running on a road for competition", "video_id": "video10203", "sen_id": 234732}, {"caption": "a runner in a marathon stops for a break", "video_id": "video10203", "sen_id": 234733}, {"caption": "runners in the marathon reached the end point successfully", "video_id": "video10203", "sen_id": 234734}, {"caption": "a man wearing black color dress is going", "video_id": "video10203", "sen_id": 234735}, {"caption": "many racers are racing down a dirt road the progress of the race is 28", "video_id": "video10203", "sen_id": 234736}, {"caption": "a race is taking place and a man is approaching people because he is tired and hungry after his rest he gets up and is ready to continue", "video_id": "video10203", "sen_id": 234737}, {"caption": "people are running a professional cross country race", "video_id": "video10203", "sen_id": 234738}, {"caption": "a woman with a banana is standing around", "video_id": "video10203", "sen_id": 234739}, {"caption": "a woman wearing a dark blue outfit sitting behind a desk giving a news report", "video_id": "video11250", "sen_id": 234740}, {"caption": "an update on release of a subscription service by sony", "video_id": "video11250", "sen_id": 234741}, {"caption": "on opening screen is seen then a lady talks to the camera on a tech news show", "video_id": "video11250", "sen_id": 234742}, {"caption": "a blonde woman on the news with letters in the background", "video_id": "video11250", "sen_id": 234743}, {"caption": "a short blond haired woman in a blue dress in a news television programm", "video_id": "video11250", "sen_id": 234744}, {"caption": "a blonde woman in front of a green screen talks about a subscription tv service that is in beta testing", "video_id": "video11250", "sen_id": 234745}, {"caption": "a young women reading business news of the day", "video_id": "video11250", "sen_id": 234746}, {"caption": "morgan brennan is talking about how sony aims their new service at cord cutters on cnbc", "video_id": "video11250", "sen_id": 234747}, {"caption": "a tv host discusses sony s new television service and future business", "video_id": "video11250", "sen_id": 234748}, {"caption": "blonde woman with nice face is presenting the news", "video_id": "video11250", "sen_id": 234749}, {"caption": "the blonde haired female wore a blue shirt", "video_id": "video11250", "sen_id": 234750}, {"caption": "there is a short hair woman talking in a program", "video_id": "video11250", "sen_id": 234751}, {"caption": "an anchor woman wearing a black dress with cap sleeves is in front of a dark backdrop with a few capital letters divided by short and silver horizontal lines", "video_id": "video11250", "sen_id": 234752}, {"caption": "a blonde woman who works for the tech bet talks about playstation view which is a subscription tv service that is invite only", "video_id": "video11250", "sen_id": 234753}, {"caption": "the lady wearing dark blue dress is giving a talk in tv", "video_id": "video11250", "sen_id": 234754}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video11250", "sen_id": 234755}, {"caption": "there is a short hair woman talking in a show", "video_id": "video11250", "sen_id": 234756}, {"caption": "morgan brennan discusses playstation vue and its potential effect on consumers cutting the cord", "video_id": "video11250", "sen_id": 234757}, {"caption": "a reporter sitting talks about cord cutting and media access", "video_id": "video11250", "sen_id": 234758}, {"caption": "a blonde news anchor is talking about technology and technology consumers", "video_id": "video11250", "sen_id": 234759}, {"caption": "woman gathering yellow and green vegetables in a silver pan", "video_id": "video11003", "sen_id": 234760}, {"caption": "a chef demonstrates and describes a recipe they are working on in a kitchen", "video_id": "video11003", "sen_id": 234761}, {"caption": "a person puts pieces of bay leaf and some other spices into an empty pot", "video_id": "video11003", "sen_id": 234762}, {"caption": "a female narrator whose hands can be seen as she prepares a dish gives a cooking lesson in a language that sounds like portuguese", "video_id": "video11003", "sen_id": 234763}, {"caption": "a cook adds pointed green chilies into a silver pot which already contains black peppercorns a golden seasoning powder and dried herbal leaves", "video_id": "video11003", "sen_id": 234764}, {"caption": "a woman speaking a foreign language is cooking and putting spices into a steel pot", "video_id": "video11003", "sen_id": 234765}, {"caption": "a person puts the spices items like turmeric powderpepper and cinnamon in to pan", "video_id": "video11003", "sen_id": 234766}, {"caption": "a woman is cooking a dish using indian spices", "video_id": "video11003", "sen_id": 234767}, {"caption": "a guy adding veggies to a mixture in a bowl", "video_id": "video11003", "sen_id": 234768}, {"caption": "a person is preparing a meal of food for a show", "video_id": "video11003", "sen_id": 234769}, {"caption": "a woman is adding different ingredients into a silver bowkl", "video_id": "video11003", "sen_id": 234770}, {"caption": "person talking and showing how to prepare a plate of food", "video_id": "video11003", "sen_id": 234771}, {"caption": "a cook adds cut up vegetables to a hot pot", "video_id": "video11003", "sen_id": 234772}, {"caption": "an asian cook snaps beans and adds them to the metal plate", "video_id": "video11003", "sen_id": 234773}, {"caption": "women making a dish and putting spices in a pan", "video_id": "video11003", "sen_id": 234774}, {"caption": "indian woman is adding ingredients to a cooking bowl", "video_id": "video11003", "sen_id": 234775}, {"caption": "we see ingredients in a pan while a woman instructs", "video_id": "video11003", "sen_id": 234776}, {"caption": "a woman is putting different things in a pot", "video_id": "video11003", "sen_id": 234777}, {"caption": "an indian cook adds snapped beans to the leaves and black round spices on a metal plate", "video_id": "video11003", "sen_id": 234778}, {"caption": "some leaves and spices are being cooked in a bowl", "video_id": "video11003", "sen_id": 234779}, {"caption": "a man puts his finger on top of a spider", "video_id": "video11643", "sen_id": 234780}, {"caption": "a finger presses down a little too hard and lets go two times on a dark spider with long angled legs which is on top of a person's arm", "video_id": "video11643", "sen_id": 234781}, {"caption": "a person is trying to push down on a brown spider", "video_id": "video11643", "sen_id": 234782}, {"caption": "a large brown spider is being pushed down by a person's finger", "video_id": "video11643", "sen_id": 234783}, {"caption": "a person is pressing down on a spider which is on his arm", "video_id": "video11643", "sen_id": 234784}, {"caption": "a small spider is pressed gently under a man's finger", "video_id": "video11643", "sen_id": 234785}, {"caption": "a spider is sitting on someone s hand he s squeezing it", "video_id": "video11643", "sen_id": 234786}, {"caption": "a man with a spider on the arm", "video_id": "video11643", "sen_id": 234787}, {"caption": "a man touching spider and kept on his hand", "video_id": "video11643", "sen_id": 234788}, {"caption": "a man pressing down on a large spider that is on his wrist", "video_id": "video11643", "sen_id": 234789}, {"caption": "a spider standing on a man s hand with the man pressing down on the spider", "video_id": "video11643", "sen_id": 234790}, {"caption": "a black spider is sitting on someone s hand", "video_id": "video11643", "sen_id": 234791}, {"caption": "men showing a spider on his hand and describing", "video_id": "video11643", "sen_id": 234792}, {"caption": "a man has a spider on his arm", "video_id": "video11643", "sen_id": 234793}, {"caption": "a person is cradling and petting a huntsman spider on their hand", "video_id": "video11643", "sen_id": 234794}, {"caption": "a person pets a tiny spider that sits on his hand", "video_id": "video11643", "sen_id": 234795}, {"caption": "a man looking at a big spider moving in his hand and feels it slowly", "video_id": "video11643", "sen_id": 234796}, {"caption": "a spider is sitting in the hand of man", "video_id": "video11643", "sen_id": 234797}, {"caption": "a spider crawling on a man s face and arm", "video_id": "video11643", "sen_id": 234798}, {"caption": "a person is holding an ugly spider", "video_id": "video11643", "sen_id": 234799}, {"caption": "people move around the streets outside a group of small hotels", "video_id": "video12571", "sen_id": 234800}, {"caption": "several house featuring ornate architecture near the beach", "video_id": "video12571", "sen_id": 234801}, {"caption": "people are walking along a beach and visiting the zoo", "video_id": "video12571", "sen_id": 234802}, {"caption": "tourist areas include a beach for sun tanning a park with family-size bicycles art deco hotels a fountain in a sunken plaza a historic hotel and a city skyline at dusk", "video_id": "video12571", "sen_id": 234803}, {"caption": "people on the beach and different hotels and buildings in a city", "video_id": "video12571", "sen_id": 234804}, {"caption": "people play on a beach then families visit the zoo and then various buildings are shown", "video_id": "video12571", "sen_id": 234805}, {"caption": "there is a sunny day someone walking on the shore", "video_id": "video12571", "sen_id": 234806}, {"caption": "tourists are visiting different places lakes etc", "video_id": "video12571", "sen_id": 234807}, {"caption": "expedia sea shore peoples building and gardens behind river", "video_id": "video12571", "sen_id": 234808}, {"caption": "a man discusses the features of a famous city", "video_id": "video12571", "sen_id": 234809}, {"caption": "in a beautiful street there are some people and buildings are there", "video_id": "video12571", "sen_id": 234810}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video12571", "sen_id": 234811}, {"caption": "a city skyline is in front of a golden setting sun by calm water framed by trees and women in bikinis are sitting up or lying down on the light-gray sand by a beach with baby-blue water", "video_id": "video12571", "sen_id": 234812}, {"caption": "resort near sea peoples near watching in road sides", "video_id": "video12571", "sen_id": 234813}, {"caption": "footage of various street and beach scenes in mexico set to traditional music", "video_id": "video12571", "sen_id": 234814}, {"caption": "there are some people enjoying on the shore", "video_id": "video12571", "sen_id": 234815}, {"caption": "people sitting on beach and walking on beach", "video_id": "video12571", "sen_id": 234816}, {"caption": "a tourist clip showcases popular locations of a particular area in which an individual might want to visit", "video_id": "video12571", "sen_id": 234817}, {"caption": "three women laying on the beach are followed by short glimpses of people walking on the street various downtown building and ending with a riverfront view of a city", "video_id": "video12571", "sen_id": 234818}, {"caption": "people were on the beach and enjoying the sun", "video_id": "video12571", "sen_id": 234819}, {"caption": "a person skiing quickly down a tall snowy mountain", "video_id": "video11837", "sen_id": 234820}, {"caption": "a man skiing down a snowy mountain with music over top", "video_id": "video11837", "sen_id": 234821}, {"caption": "a person on snow skis is skiing down a snow covered trail while holding the camera", "video_id": "video11837", "sen_id": 234822}, {"caption": "a skier flies down the hill passing another skier along the way", "video_id": "video11837", "sen_id": 234823}, {"caption": "a man skiing down a steep canyon while passing other people", "video_id": "video11837", "sen_id": 234824}, {"caption": "on a sunny day a man moving on skateboard", "video_id": "video11837", "sen_id": 234825}, {"caption": "a skater skiing through the narrow way of snow with the camera fixed on his head", "video_id": "video11837", "sen_id": 234826}, {"caption": "man skirting faster on a mist", "video_id": "video11837", "sen_id": 234827}, {"caption": "a skier goes down a steep and narrow passage on a hill", "video_id": "video11837", "sen_id": 234828}, {"caption": "a person is skiing down a steep mountain with a friend", "video_id": "video11837", "sen_id": 234829}, {"caption": "a person skis are skiing down a mountain", "video_id": "video11837", "sen_id": 234830}, {"caption": "someone is skating on the ice with white and black skateboards", "video_id": "video11837", "sen_id": 234831}, {"caption": "a snow skier is going down a hill there is a rap song in the background", "video_id": "video11837", "sen_id": 234832}, {"caption": "as two skiers look on a skier with white and purple skis descends a narrow slope", "video_id": "video11837", "sen_id": 234833}, {"caption": "a person skis down a slope while music plays", "video_id": "video11837", "sen_id": 234834}, {"caption": "someone wearing a helmet camara is skiing on snow through a rocky area", "video_id": "video11837", "sen_id": 234835}, {"caption": "a man riding faster with the stick on mist", "video_id": "video11837", "sen_id": 234836}, {"caption": "a man skiing down the mountain with never ending joy and rush of adrenaline", "video_id": "video11837", "sen_id": 234837}, {"caption": "a skier takes a narrow slope at high speeds", "video_id": "video11837", "sen_id": 234838}, {"caption": "a snow land and many person doing skating on snow moving fast displaying on screen", "video_id": "video11837", "sen_id": 234839}, {"caption": "matt damon is acting in a scene about his mission to mars", "video_id": "video11793", "sen_id": 234840}, {"caption": "a flight man dressed in his flight suit is looking threw some stuff", "video_id": "video11793", "sen_id": 234841}, {"caption": "a man trying to read a paper in another language", "video_id": "video11793", "sen_id": 234842}, {"caption": "a man with brown hair wearing a uniform looks over some white papers while standing in a lab", "video_id": "video11793", "sen_id": 234843}, {"caption": "an astronaut looks over papers in a science lab", "video_id": "video11793", "sen_id": 234844}, {"caption": "a man wearing a green coat reading a piece of paper", "video_id": "video11793", "sen_id": 234845}, {"caption": "a man reading something from a piece of paper", "video_id": "video11793", "sen_id": 234846}, {"caption": "a man in uniform is reading something as no one is around", "video_id": "video11793", "sen_id": 234847}, {"caption": "actor in movie wearing an airforce jacket reading a paper", "video_id": "video11793", "sen_id": 234848}, {"caption": "an american scientist in a well equipped laboratory and searching some important particulars from a paper", "video_id": "video11793", "sen_id": 234849}, {"caption": "a man with a flight suit is surviving alone", "video_id": "video11793", "sen_id": 234850}, {"caption": "a cop checking some product in a room", "video_id": "video11793", "sen_id": 234851}, {"caption": "an astronaut appears confused in a room with a lot of technology", "video_id": "video11793", "sen_id": 234852}, {"caption": "a man inspecting about something in the lab", "video_id": "video11793", "sen_id": 234853}, {"caption": "the scientist is looking through the microscope and verifying the results", "video_id": "video11793", "sen_id": 234854}, {"caption": "matt damon is a man stranded on mars", "video_id": "video11793", "sen_id": 234855}, {"caption": "there is a cop looking for some document in his cabin", "video_id": "video11793", "sen_id": 234856}, {"caption": "the scientific lab the scientis are note down some important matter", "video_id": "video11793", "sen_id": 234857}, {"caption": "a person with the grey coat checks the parcel he has white skin", "video_id": "video11793", "sen_id": 234858}, {"caption": "from a security base camp of us air force an officer engaged in reading a important piece of paper", "video_id": "video11793", "sen_id": 234859}, {"caption": "tim robbins and morgan freeman in a scene from the shawshank redemption", "video_id": "video12551", "sen_id": 234860}, {"caption": "two men in blue shirts stand against a stone wall talking to each other", "video_id": "video12551", "sen_id": 234861}, {"caption": "a man standing by a stone wall talking", "video_id": "video12551", "sen_id": 234862}, {"caption": "a old black man in a blue button down shirt is standing behind a brick wall", "video_id": "video12551", "sen_id": 234863}, {"caption": "two men in blue shirts are speaking against a wall", "video_id": "video12551", "sen_id": 234864}, {"caption": "a man with forehead wrinkles and a lined face takes a deep breath and thoughtfully answers another man's question as they sit against a wall of stone blocks", "video_id": "video12551", "sen_id": 234865}, {"caption": "an african man setting near a stone wall talks to some friends", "video_id": "video12551", "sen_id": 234866}, {"caption": "a guy is sitting next to a gray brick wall with his back to it", "video_id": "video12551", "sen_id": 234867}, {"caption": "a man in blue shirt is saying something to other man", "video_id": "video12551", "sen_id": 234868}, {"caption": "two men talk while sitting against a large rock wall", "video_id": "video12551", "sen_id": 234869}, {"caption": "two men set next to a wall and discuss their plans for the future", "video_id": "video12551", "sen_id": 234870}, {"caption": "one old man is standing on the nearby stone and some argumen is going between persons", "video_id": "video12551", "sen_id": 234871}, {"caption": "a man near a wall is speaking to some one", "video_id": "video12551", "sen_id": 234872}, {"caption": "a black man in blue shirt is speaking to another white man who also wears a blue shirt", "video_id": "video12551", "sen_id": 234873}, {"caption": "a guy sits against a stone wall and talks about the future", "video_id": "video12551", "sen_id": 234874}, {"caption": "two mature man standing near stone wall are talking to each other", "video_id": "video12551", "sen_id": 234875}, {"caption": "denzil washington talks to his inmate in this movie clip", "video_id": "video12551", "sen_id": 234876}, {"caption": "two men set next to a block wall and discuss their future", "video_id": "video12551", "sen_id": 234877}, {"caption": "a old man in blue dress sitting with other man speaking beside stone displaying on screen", "video_id": "video12551", "sen_id": 234878}, {"caption": "the two men standing next to the stone wall talk about getting older", "video_id": "video12551", "sen_id": 234879}, {"caption": "a man wearing athletic clothes is jumping around outside", "video_id": "video12183", "sen_id": 234880}, {"caption": "a young man is demonstrating certain fight moves", "video_id": "video12183", "sen_id": 234881}, {"caption": "a man in a driveway is performing jumps and kicks", "video_id": "video12183", "sen_id": 234882}, {"caption": "young man going over some moves you should be able to do before doing a certain task", "video_id": "video12183", "sen_id": 234883}, {"caption": "a man teaches a new trick but explains two other moves that should be conquered before attempting the new trick", "video_id": "video12183", "sen_id": 234884}, {"caption": "a boy in casuals is showing different types of spins in dance", "video_id": "video12183", "sen_id": 234885}, {"caption": "a young boy practising some stunts on a ground", "video_id": "video12183", "sen_id": 234886}, {"caption": "a youth demonstrates how to do a jumping spin and a butterfly kick", "video_id": "video12183", "sen_id": 234887}, {"caption": "one man tricks recommended skills: jumping spin butterfly kick (optional)", "video_id": "video12183", "sen_id": 234888}, {"caption": "a person in grey t shirt doing jumping spin and butterfly kick on the road", "video_id": "video12183", "sen_id": 234889}, {"caption": "a guy demonstrating how to do a butterfly kick in his backyard", "video_id": "video12183", "sen_id": 234890}, {"caption": "a young boy shoeing his jumping skills on the ground", "video_id": "video12183", "sen_id": 234891}, {"caption": "a young man in a backyard does a jumping spin and a butterfly kick", "video_id": "video12183", "sen_id": 234892}, {"caption": "guy in tshirt and shorts somersaulting", "video_id": "video12183", "sen_id": 234893}, {"caption": "the teenager jumps and spins in the air then does a flying butterfly kick", "video_id": "video12183", "sen_id": 234894}, {"caption": "a boy in t-shirt doing some stunts in front of the camera", "video_id": "video12183", "sen_id": 234895}, {"caption": "there is a man dancing in front of his house", "video_id": "video12183", "sen_id": 234896}, {"caption": "a guy in his black shorts is teaching how to jump up and do a butter fly kick he is probably teaching some gymnastics", "video_id": "video12183", "sen_id": 234897}, {"caption": "a red shirt sleeping and a boy runnning and exercise his body near gate", "video_id": "video12183", "sen_id": 234898}, {"caption": "a kid in a yard is jumping around outside", "video_id": "video12183", "sen_id": 234899}, {"caption": "slides explaining details about a course at a certain place", "video_id": "video11129", "sen_id": 234900}, {"caption": "introduction to an educational biology class taught by a professor", "video_id": "video11129", "sen_id": 234901}, {"caption": "introduction for a video about biotechnology principles and processes", "video_id": "video11129", "sen_id": 234902}, {"caption": "a biology lesson titled biotechnology - principles and processes is hereby taught by rao iit academy", "video_id": "video11129", "sen_id": 234903}, {"caption": "rao iit academy presentation and introduction is going on", "video_id": "video11129", "sen_id": 234904}, {"caption": "the beginning slides of a slideshow for a biotech class are displayed on screen", "video_id": "video11129", "sen_id": 234905}, {"caption": "this portion of the video is the introduction for biology principles and processes", "video_id": "video11129", "sen_id": 234906}, {"caption": "the introduction from a slideshow presentation about biology", "video_id": "video11129", "sen_id": 234907}, {"caption": "rao iit academy subject biology chapter biotechnology - principles and processes", "video_id": "video11129", "sen_id": 234908}, {"caption": "a slide show is seen from the rao iit academy and the subject is biology", "video_id": "video11129", "sen_id": 234909}, {"caption": "there are some notes about biology science from a professor", "video_id": "video11129", "sen_id": 234910}, {"caption": "video shows information displayed on the screen about rao iit academy", "video_id": "video11129", "sen_id": 234911}, {"caption": "a advertisement show introduction for an educational institute", "video_id": "video11129", "sen_id": 234912}, {"caption": "a academy for students who can learn from an online tutor sitting at home", "video_id": "video11129", "sen_id": 234913}, {"caption": "some text is on a white back ground", "video_id": "video11129", "sen_id": 234914}, {"caption": "an introduction screen for a biology class chapter called biotechnology - principles and processes taught by harshad salunkhe at rao iit academy", "video_id": "video11129", "sen_id": 234915}, {"caption": "rao iit academy has put together a symposium in the subject of biology with the chapter of biotechnology - principles and processes taught by professor harshad salunkhe", "video_id": "video11129", "sen_id": 234916}, {"caption": "an introduction to the educational program in television", "video_id": "video11129", "sen_id": 234917}, {"caption": "a slideshow for a college course is being shown", "video_id": "video11129", "sen_id": 234918}, {"caption": "some text is shown on a white back ground", "video_id": "video11129", "sen_id": 234919}, {"caption": "a man narrates the opening of a show about wild animals", "video_id": "video10457", "sen_id": 234920}, {"caption": "a man holding a big yellow snake around his neck", "video_id": "video10457", "sen_id": 234921}, {"caption": "a man with a pony tail is shown getting into some dangerous situations with exotic animals", "video_id": "video10457", "sen_id": 234922}, {"caption": "a man is interacting with several different animals and a snack snaps at him", "video_id": "video10457", "sen_id": 234923}, {"caption": "a screen divided into rectangles shows snakes with open jaws an alligator being petted a man kissing a wild cat an alpaca chasing a man and lunging snakes", "video_id": "video10457", "sen_id": 234924}, {"caption": "there is a man running hard to escape from an animal", "video_id": "video10457", "sen_id": 234925}, {"caption": "a man is talking about how he likes animals and that he has an upcoming thanksgiving show", "video_id": "video10457", "sen_id": 234926}, {"caption": "a man holding a giant yellow colored boa constrictor", "video_id": "video10457", "sen_id": 234927}, {"caption": "a man talking about his show and his passion for animals", "video_id": "video10457", "sen_id": 234928}, {"caption": "there is a man handling and running from several animals", "video_id": "video10457", "sen_id": 234929}, {"caption": "there is a tshirt man running to escape from an animal", "video_id": "video10457", "sen_id": 234930}, {"caption": "a man wearing a black shirt and a pontail in his hair shows us different examples of his interactions with animals", "video_id": "video10457", "sen_id": 234931}, {"caption": "a man who works with animals hold snakes that try to bite him", "video_id": "video10457", "sen_id": 234932}, {"caption": "a man is holding a really long yellow snake", "video_id": "video10457", "sen_id": 234933}, {"caption": "many different snakes are held and striking at their handlers", "video_id": "video10457", "sen_id": 234934}, {"caption": "a man with a black long sleeve shirt is standing in a room with a large yellow boa snake on his shoulder", "video_id": "video10457", "sen_id": 234935}, {"caption": "a wall of rectangular screens has individual videos and composite videos showing a man with a yellow snake furry cub", "video_id": "video10457", "sen_id": 234936}, {"caption": "with big background display where display s subdivided into many squares", "video_id": "video10457", "sen_id": 234937}, {"caption": "many tvs show a man who likes to work with animals", "video_id": "video10457", "sen_id": 234938}, {"caption": "a giant screen is showing a man on it", "video_id": "video10457", "sen_id": 234939}, {"caption": "a man talks about a big response to his post on facebook", "video_id": "video11817", "sen_id": 234940}, {"caption": "a man makes a face on a photo posted on facebook", "video_id": "video11817", "sen_id": 234941}, {"caption": "a man sitting in a chair while wearing a black shirt and making a strange face", "video_id": "video11817", "sen_id": 234942}, {"caption": "man talking about posts he's making on facebook", "video_id": "video11817", "sen_id": 234943}, {"caption": "a man is using a cursor showing his post on facebook", "video_id": "video11817", "sen_id": 234944}, {"caption": "an african american man scrolls through his facebook page showing his comments", "video_id": "video11817", "sen_id": 234945}, {"caption": "an view of the comments on someone's facebook page", "video_id": "video11817", "sen_id": 234946}, {"caption": "an african american man scrolls through his facebook page showing his comments", "video_id": "video11817", "sen_id": 234947}, {"caption": "a man talks about a post he made on facebook and the response it got", "video_id": "video11817", "sen_id": 234948}, {"caption": "an african american man scrolls through his facebook page showing his comments", "video_id": "video11817", "sen_id": 234949}, {"caption": "a man talks about a facebook post that he had made concerning tv", "video_id": "video11817", "sen_id": 234950}, {"caption": "a person is explaining about the concept online", "video_id": "video11817", "sen_id": 234951}, {"caption": "video shows information being displayed on the screen from another computer screen", "video_id": "video11817", "sen_id": 234952}, {"caption": "a man is seeing face book and talking about it", "video_id": "video11817", "sen_id": 234953}, {"caption": "a person is showing website detail of a celebrity", "video_id": "video11817", "sen_id": 234954}, {"caption": "men is talking and discussing something about setting", "video_id": "video11817", "sen_id": 234955}, {"caption": "showing screen shots of a computer screen with lots of conversations between people", "video_id": "video11817", "sen_id": 234956}, {"caption": "a person sees his facebook videos shared by friends and reads the comments mentioned", "video_id": "video11817", "sen_id": 234957}, {"caption": "a man is describing what he is looking at on his computer screen as he scrolls through a feed of people requesting his help and wanting to know why he has not gotten bavck to them", "video_id": "video11817", "sen_id": 234958}, {"caption": "a person is looking at web site comments", "video_id": "video11817", "sen_id": 234959}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11504", "sen_id": 234960}, {"caption": "jambalaya rolls that are being covered with jalepenos", "video_id": "video11504", "sen_id": 234961}, {"caption": "open faced spicy sandwiches are shown for the restaurant", "video_id": "video11504", "sen_id": 234962}, {"caption": "spicy hotdogs with jalapenos are shown then other videos are displayed as options to view next", "video_id": "video11504", "sen_id": 234963}, {"caption": "a person is cooking jambalaya rolls on a stove", "video_id": "video11504", "sen_id": 234964}, {"caption": "a chef demonstrates his method for constructing a certain kind of sandwich", "video_id": "video11504", "sen_id": 234965}, {"caption": "meals from a restaurant being put together on plates", "video_id": "video11504", "sen_id": 234966}, {"caption": "an advertisement showing diffrent barbque foods with country music playing in the backround", "video_id": "video11504", "sen_id": 234967}, {"caption": "there is a verity dish served beautifully for a dinner", "video_id": "video11504", "sen_id": 234968}, {"caption": "an exploration and explanation about some different dishes", "video_id": "video11504", "sen_id": 234969}, {"caption": "two hotdogs with lettuce and other topings on a table", "video_id": "video11504", "sen_id": 234970}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11504", "sen_id": 234971}, {"caption": "colorful food is being advertised for a local restaurant", "video_id": "video11504", "sen_id": 234972}, {"caption": "a display of foods on the menu is seen at smoky ribs with prep work in the background", "video_id": "video11504", "sen_id": 234973}, {"caption": "a sandwich top with lots of toppings on the counter", "video_id": "video11504", "sen_id": 234974}, {"caption": "a dish cooked and served inside kitchen prepared to serve to eat displaying on screen", "video_id": "video11504", "sen_id": 234975}, {"caption": "some food in a restaurant is being filmed", "video_id": "video11504", "sen_id": 234976}, {"caption": "a delicious jalapeno meal sits on the table", "video_id": "video11504", "sen_id": 234977}, {"caption": "fillings of different types for sandwiches are displayed here in smoky ribs", "video_id": "video11504", "sen_id": 234978}, {"caption": "some food on trays are shown on a thing", "video_id": "video11504", "sen_id": 234979}, {"caption": "a person is stuffing a chicken with garlic and herbs", "video_id": "video11170", "sen_id": 234980}, {"caption": "a cook salts and stuffs a whole chicken", "video_id": "video11170", "sen_id": 234981}, {"caption": "a man in an orange chefs coat rubs seasoning in and on a whole chicken", "video_id": "video11170", "sen_id": 234982}, {"caption": "one of the famous chef applying salt and other ingredients to the chicken", "video_id": "video11170", "sen_id": 234983}, {"caption": "a chef is applying salt for chicken and apply garlic ginger and cover", "video_id": "video11170", "sen_id": 234984}, {"caption": "a man is rubbing and preparing a large raw chicken in a bowl", "video_id": "video11170", "sen_id": 234985}, {"caption": "a man is pouring liquid on a raw chicken in a bowl", "video_id": "video11170", "sen_id": 234986}, {"caption": "a man has a chicken in a bowl then he put s salt over the chicken then the chicken is being stuffed with onions", "video_id": "video11170", "sen_id": 234987}, {"caption": "one chef is making recipe with chicken and stuff", "video_id": "video11170", "sen_id": 234988}, {"caption": "a orange color dress wearing boy inside kitchen a chicken pouring water to prepare dish to serve to eat displaying on screen", "video_id": "video11170", "sen_id": 234989}, {"caption": "there is a red dressing man preparing a chicken dish", "video_id": "video11170", "sen_id": 234990}, {"caption": "women is cleanig chicken and marinating it with spoon in a bowl", "video_id": "video11170", "sen_id": 234991}, {"caption": "an indian chef begins a recipe by seasoning a whole chicken", "video_id": "video11170", "sen_id": 234992}, {"caption": "a full chicken is ready after cleaning in a glass bowl and is again washed with water", "video_id": "video11170", "sen_id": 234993}, {"caption": "a chicken is being prepared for cooking in a green pot", "video_id": "video11170", "sen_id": 234994}, {"caption": "there is a suit man talking from the studio", "video_id": "video11170", "sen_id": 234995}, {"caption": "a man cutting chicken piece and cleanong", "video_id": "video11170", "sen_id": 234996}, {"caption": "in a wide bowl the person places some green leaf inside the chicken then he pours the water on it", "video_id": "video11170", "sen_id": 234997}, {"caption": "a man sprinkles salt on his chicken stuffs it with onions and pours water over it", "video_id": "video11170", "sen_id": 234998}, {"caption": "someone is preparing a chicken in a bowl", "video_id": "video11170", "sen_id": 234999}, {"caption": "female singer with pink hair singing in front of her band", "video_id": "video12351", "sen_id": 235000}, {"caption": "a young woman sings a song while two men play instruments next to her", "video_id": "video12351", "sen_id": 235001}, {"caption": "a rock band with a woman and two men plays against a black background", "video_id": "video12351", "sen_id": 235002}, {"caption": "a woman with pink hair sings a song outside at night", "video_id": "video12351", "sen_id": 235003}, {"caption": "music video with the main singer being a female with pink hair alongside a guitar player and a drum player", "video_id": "video12351", "sen_id": 235004}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12351", "sen_id": 235005}, {"caption": "a girl singing and dancing another two boys are playing music", "video_id": "video12351", "sen_id": 235006}, {"caption": "a music performance on the stage by a giel singing and boy playing the guitar", "video_id": "video12351", "sen_id": 235007}, {"caption": "a girl with awesome hair sings and dances on stage", "video_id": "video12351", "sen_id": 235008}, {"caption": "a lavender haired female singer cover s adele s song hello with her band", "video_id": "video12351", "sen_id": 235009}, {"caption": "singer with pink hair sings enthusiastically as the guitarist plays his guitar", "video_id": "video12351", "sen_id": 235010}, {"caption": "the stage performance of the song the singer is a lady", "video_id": "video12351", "sen_id": 235011}, {"caption": "a man in lines shirt is playing drums and a women in black dress is singing", "video_id": "video12351", "sen_id": 235012}, {"caption": "a rock version song from the hello album", "video_id": "video12351", "sen_id": 235013}, {"caption": "a woman is singing and a man composing a music", "video_id": "video12351", "sen_id": 235014}, {"caption": "a kid drums on the drum kit like crazy", "video_id": "video12351", "sen_id": 235015}, {"caption": "a young woman with pink hair is singing with her rock band", "video_id": "video12351", "sen_id": 235016}, {"caption": "pepole playing a song", "video_id": "video12351", "sen_id": 235017}, {"caption": "a woman with pink hair sings and dances as her band plays instruments", "video_id": "video12351", "sen_id": 235018}, {"caption": "beautiful woman with pink hair performing a song with her friend", "video_id": "video12351", "sen_id": 235019}, {"caption": "a quick game of indoor tennis is played on a court", "video_id": "video10136", "sen_id": 235020}, {"caption": "two men are playing tennis on an indoor court", "video_id": "video10136", "sen_id": 235021}, {"caption": "a man in blue and a man in black playing tennis", "video_id": "video10136", "sen_id": 235022}, {"caption": "two men are playing in a professional badminton match", "video_id": "video10136", "sen_id": 235023}, {"caption": "two asian people compete in a tennis tournament", "video_id": "video10136", "sen_id": 235024}, {"caption": "two men playing singles tennis on a bright yellow and green court", "video_id": "video10136", "sen_id": 235025}, {"caption": "a man in black and a man in blue playing tennis", "video_id": "video10136", "sen_id": 235026}, {"caption": "two athletes battle while playing a game of tennis", "video_id": "video10136", "sen_id": 235027}, {"caption": "two males compete at tennis on an indoor court", "video_id": "video10136", "sen_id": 235028}, {"caption": "a match of indoor singles tennis being played", "video_id": "video10136", "sen_id": 235029}, {"caption": "there is some one playing badminton in a indoor court", "video_id": "video10136", "sen_id": 235030}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video10136", "sen_id": 235031}, {"caption": "sport highlight video shows to young girls playing badmitton", "video_id": "video10136", "sen_id": 235032}, {"caption": "a tennis match is being played inside an auditorium", "video_id": "video10136", "sen_id": 235033}, {"caption": "two tennis players battle it out on an indoor tennis court", "video_id": "video10136", "sen_id": 235034}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10136", "sen_id": 235035}, {"caption": "two shuttle player are playing excellent game of shuttle", "video_id": "video10136", "sen_id": 235036}, {"caption": "two people compete in a game of badmitten on an indoor court", "video_id": "video10136", "sen_id": 235037}, {"caption": "long rally of shots in the women s badminton game", "video_id": "video10136", "sen_id": 235038}, {"caption": "two men are playing badminton in a gymnasium while a crowd watches", "video_id": "video10136", "sen_id": 235039}, {"caption": "ted talks is showing an advertisment for it's features", "video_id": "video10086", "sen_id": 235040}, {"caption": "a short ted talk clip intro from youtube", "video_id": "video10086", "sen_id": 235041}, {"caption": "a intro and a ted logo with other information", "video_id": "video10086", "sen_id": 235042}, {"caption": "a powerpoint advertisement for ted talks and website", "video_id": "video10086", "sen_id": 235043}, {"caption": "the words ted ideas worth spreading appear while music plays", "video_id": "video10086", "sen_id": 235044}, {"caption": "a ted talk opening sequence begins with the reminder that there are over 1000 talks", "video_id": "video10086", "sen_id": 235045}, {"caption": "a logo is shown while music plays for the duration", "video_id": "video10086", "sen_id": 235046}, {"caption": "it's an advertisement from my company called ted", "video_id": "video10086", "sen_id": 235047}, {"caption": "a short advertisement for ted talks boasting new ideas every weekday", "video_id": "video10086", "sen_id": 235048}, {"caption": "the intro to the ted talks series is shown", "video_id": "video10086", "sen_id": 235049}, {"caption": "its ted one of 1000 talks new ideas every week day", "video_id": "video10086", "sen_id": 235050}, {"caption": "introduction to a ted video that runs on the web for viewing", "video_id": "video10086", "sen_id": 235051}, {"caption": "some one giving a advertisement of ted in front of the camera", "video_id": "video10086", "sen_id": 235052}, {"caption": "ted is an internationally known think tank who does online talks with new ideas every weekday on ted", "video_id": "video10086", "sen_id": 235053}, {"caption": "a globe of color displaying still picture displaying on screen", "video_id": "video10086", "sen_id": 235054}, {"caption": "the logo for ted talks is being shownt o people", "video_id": "video10086", "sen_id": 235055}, {"caption": "there is a sign of new idea every weekday", "video_id": "video10086", "sen_id": 235056}, {"caption": "the ted talks program is going to start", "video_id": "video10086", "sen_id": 235057}, {"caption": "information about popular weekday internet show is being displayed", "video_id": "video10086", "sen_id": 235058}, {"caption": "an ad displays for ted talks and how great they are", "video_id": "video10086", "sen_id": 235059}, {"caption": "a man is cooking a dish on a stove using a frying pan", "video_id": "video12253", "sen_id": 235060}, {"caption": "a person takes the top of a skillet and stirs a sizzling mixture", "video_id": "video12253", "sen_id": 235061}, {"caption": "a man is preparing a sizzling brown food in a large nonstick frying pan as he stirs it", "video_id": "video12253", "sen_id": 235062}, {"caption": "a hand lifts a pot cover and reveals yellow corn and brown grains sauting in a black skillet with silver rim and the hand stirs the mixture with a black spoon", "video_id": "video12253", "sen_id": 235063}, {"caption": "it may sound easy but dicing and frying onions can be a tricky technique to master", "video_id": "video12253", "sen_id": 235064}, {"caption": "some one in a kitchen frying some onions in the pan", "video_id": "video12253", "sen_id": 235065}, {"caption": "in the kitchen the man prepare the vegetable dish in very well", "video_id": "video12253", "sen_id": 235066}, {"caption": "accented chef narrate himself stirring some simmering items in a skillet", "video_id": "video12253", "sen_id": 235067}, {"caption": "a man inside kitchen bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12253", "sen_id": 235068}, {"caption": "a man demonstrates how to cook in a pan", "video_id": "video12253", "sen_id": 235069}, {"caption": "there is man is making some fried dish", "video_id": "video12253", "sen_id": 235070}, {"caption": "a person putting ingredients in a pan on a hot stove", "video_id": "video12253", "sen_id": 235071}, {"caption": "a person prepares a hot meal on the stove", "video_id": "video12253", "sen_id": 235072}, {"caption": "a man frying rice in a pan", "video_id": "video12253", "sen_id": 235073}, {"caption": "a mean where some kind of seeds are being sauteed in a frying pan", "video_id": "video12253", "sen_id": 235074}, {"caption": "a man removing a lid from a pan and stirring a dish frying in a pan on a stove with a black spoon", "video_id": "video12253", "sen_id": 235075}, {"caption": "oil splatters as ingredients in a pan are mixed together", "video_id": "video12253", "sen_id": 235076}, {"caption": "in a kitchen man is mixing the ingredients in black pan", "video_id": "video12253", "sen_id": 235077}, {"caption": "some one making a recipe in kitchen with a fry-pan he is frying some sliced onion with spices", "video_id": "video12253", "sen_id": 235078}, {"caption": "a person is making some dish in the pan and explain about the preparation of dish", "video_id": "video12253", "sen_id": 235079}, {"caption": "a person describes some new laser technology they have been working on in a lab", "video_id": "video11885", "sen_id": 235080}, {"caption": "a man explaining how a certain technology gadget works", "video_id": "video11885", "sen_id": 235081}, {"caption": "some one showing the fastest marking technology on the screen", "video_id": "video11885", "sen_id": 235082}, {"caption": "the person sets up the technology as the light flashes green", "video_id": "video11885", "sen_id": 235083}, {"caption": "its about fastest working technology the screen has three division", "video_id": "video11885", "sen_id": 235084}, {"caption": "the man operates the electronic equipment to make something", "video_id": "video11885", "sen_id": 235085}, {"caption": "a man with an accent is talking about the latest technology", "video_id": "video11885", "sen_id": 235086}, {"caption": "fastest marking technology it how does it work", "video_id": "video11885", "sen_id": 235087}, {"caption": "a lazer machine signal shown on picture and man holding with hand displaying on the screen", "video_id": "video11885", "sen_id": 235088}, {"caption": "the laser signal is amplified and sent through another part of the device", "video_id": "video11885", "sen_id": 235089}, {"caption": "there is a machine with multiple functions inside", "video_id": "video11885", "sen_id": 235090}, {"caption": "a men explains the working of a machine", "video_id": "video11885", "sen_id": 235091}, {"caption": "how does it work man talks about signals in machine", "video_id": "video11885", "sen_id": 235092}, {"caption": "it seems to be a demo of an electronic quipment a person s hand pressing a button few green light is fickering the equpments position is shown by rotation", "video_id": "video11885", "sen_id": 235093}, {"caption": "someone is showing various pc electronic stuff", "video_id": "video11885", "sen_id": 235094}, {"caption": "there is a man explaining about a machine", "video_id": "video11885", "sen_id": 235095}, {"caption": "a men is looking and doing some work on monitor", "video_id": "video11885", "sen_id": 235096}, {"caption": "a system developer talks about a laser system he is developing", "video_id": "video11885", "sen_id": 235097}, {"caption": "a technology machine is show with green laser light coming out of it", "video_id": "video11885", "sen_id": 235098}, {"caption": "various scenes of computer tech are being shown", "video_id": "video11885", "sen_id": 235099}, {"caption": "a little girl holding a barbie doll that fell apart followed by clips of some young boys as well", "video_id": "video12297", "sen_id": 235100}, {"caption": "a little girl with a pink stripped shirt and pig tails plays with her barbie doll", "video_id": "video12297", "sen_id": 235101}, {"caption": "a girl playing with her doll which seems to have lost its head which is attached to her finger", "video_id": "video12297", "sen_id": 235102}, {"caption": "a little girl talking and playing with a doll", "video_id": "video12297", "sen_id": 235103}, {"caption": "a little girl with black hair is playing with a doll", "video_id": "video12297", "sen_id": 235104}, {"caption": "a little girl playing with a doll and various kids smiling", "video_id": "video12297", "sen_id": 235105}, {"caption": "two kids are playing with their toys as there seems to be no one around", "video_id": "video12297", "sen_id": 235106}, {"caption": "a little girl is talking about a new barbie doll", "video_id": "video12297", "sen_id": 235107}, {"caption": "a young girl talks about a barbie doll that she purchased recently", "video_id": "video12297", "sen_id": 235108}, {"caption": "a little girl doll in her hand shaking speaking with boy beside displaying on the screen", "video_id": "video12297", "sen_id": 235109}, {"caption": "the little girl displayed her barbie doll that fell apart in the car", "video_id": "video12297", "sen_id": 235110}, {"caption": "a little girl with black pig tails is playing with her barbie doll before a brief montage of other kids cuts in", "video_id": "video12297", "sen_id": 235111}, {"caption": "a young girl is showing off her new barbi doll", "video_id": "video12297", "sen_id": 235112}, {"caption": "very cutest child s enjoy there life style with playthings", "video_id": "video12297", "sen_id": 235113}, {"caption": "a girl in pink dress is playing with her doll", "video_id": "video12297", "sen_id": 235114}, {"caption": "a girl with brown hair is playing with a doll", "video_id": "video12297", "sen_id": 235115}, {"caption": "a girl and boys plays with toys and talking and shouting", "video_id": "video12297", "sen_id": 235116}, {"caption": "a cute little girl showing her doll toys", "video_id": "video12297", "sen_id": 235117}, {"caption": "a baby girl along with her friends is playing with a doll", "video_id": "video12297", "sen_id": 235118}, {"caption": "a kid in a blue shirt is sitting down", "video_id": "video12297", "sen_id": 235119}, {"caption": "a man is standing outside a window yelling at a dog who is barking on the other side of the window", "video_id": "video12600", "sen_id": 235120}, {"caption": "tom hanks yelling at a dog in the movie turner & hooch", "video_id": "video12600", "sen_id": 235121}, {"caption": "man with a blue shirt yelling at a dog through a glass window", "video_id": "video12600", "sen_id": 235122}, {"caption": "a man in a blue shirt is yelling at his dog through a car window", "video_id": "video12600", "sen_id": 235123}, {"caption": "video clip of tom hanks from the movie hooch two short clips from the movie hooch", "video_id": "video12600", "sen_id": 235124}, {"caption": "a man talks to a dog that barks at him the whole time", "video_id": "video12600", "sen_id": 235125}, {"caption": "a man talking to a barking dog through a window", "video_id": "video12600", "sen_id": 235126}, {"caption": "a man yells through his window pane at a dog", "video_id": "video12600", "sen_id": 235127}, {"caption": "a man in underwear talks to a barking dog through a window on a dark night and then in a car", "video_id": "video12600", "sen_id": 235128}, {"caption": "a man wearing a blue shirt is yelling at a large dog who is barking", "video_id": "video12600", "sen_id": 235129}, {"caption": "a man with black hair and wearing a blue shirt talks to a st bernard dog outside and then again while the dog is in a car", "video_id": "video12600", "sen_id": 235130}, {"caption": "a man outside of a window yells at a dog who is barking at him", "video_id": "video12600", "sen_id": 235131}, {"caption": "tom hanks talking through the window at a barking dog", "video_id": "video12600", "sen_id": 235132}, {"caption": "guy talking to a barking dog from outside", "video_id": "video12600", "sen_id": 235133}, {"caption": "a man in a blue shirt is yelling at a dog as he is tring to get in his house the dog is yelling back at him not allowing him in", "video_id": "video12600", "sen_id": 235134}, {"caption": "a guy is walking and talking to a dog", "video_id": "video12600", "sen_id": 235135}, {"caption": "a dog is barking with dog", "video_id": "video12600", "sen_id": 235136}, {"caption": "yelling at a dog", "video_id": "video12600", "sen_id": 235137}, {"caption": "tom hanks in the motion picture turner and hooch", "video_id": "video12600", "sen_id": 235138}, {"caption": "a man shouts at a dog through a window and then shouts at the same dog when it chews up the interior of his car", "video_id": "video12600", "sen_id": 235139}, {"caption": "a group of people sitting around a table discussing work", "video_id": "video12439", "sen_id": 235140}, {"caption": "a group of people gathered at a table share their thoughts about an upcoming show", "video_id": "video12439", "sen_id": 235141}, {"caption": "people are meeting and discussing about a fashion show", "video_id": "video12439", "sen_id": 235142}, {"caption": "many people gathered in a table and discussing some topic", "video_id": "video12439", "sen_id": 235143}, {"caption": "in the busines meet the filim maker reveal their new cinema project", "video_id": "video12439", "sen_id": 235144}, {"caption": "people at a discussion table talking about a fashion show", "video_id": "video12439", "sen_id": 235145}, {"caption": "a group meeting of a leading tv show about the success they have achieved", "video_id": "video12439", "sen_id": 235146}, {"caption": "monica mitro and hamish hamilton discuss the 20th episode of the series", "video_id": "video12439", "sen_id": 235147}, {"caption": "people on the meeting hall and a lady explains about the pictures finally a group of people seeing the magazine", "video_id": "video12439", "sen_id": 235148}, {"caption": "a group of people get together and talk about a tv show they have been producing", "video_id": "video12439", "sen_id": 235149}, {"caption": "a woman with floral designed dressing talking in meeting", "video_id": "video12439", "sen_id": 235150}, {"caption": "a group of producers and other people are sitting at a table and talking", "video_id": "video12439", "sen_id": 235151}, {"caption": "a group of people are sitting around a large table making plans", "video_id": "video12439", "sen_id": 235152}, {"caption": "people discussing with each other in a meeting", "video_id": "video12439", "sen_id": 235153}, {"caption": "a brown haired woman is speaking about something", "video_id": "video12439", "sen_id": 235154}, {"caption": "there is a hot women talking from the studio", "video_id": "video12439", "sen_id": 235155}, {"caption": "a man group of people are speaking about an upcoming show", "video_id": "video12439", "sen_id": 235156}, {"caption": "ed razek executive producer monica mitra executive producer", "video_id": "video12439", "sen_id": 235157}, {"caption": "professional men and women are sitting at a conference table and they are being interviewed", "video_id": "video12439", "sen_id": 235158}, {"caption": "producers are gathered around a table discussing their 20th episode of a tv show", "video_id": "video12439", "sen_id": 235159}, {"caption": "an animated video of a man running with his dog and telling it to do tricks", "video_id": "video10092", "sen_id": 235160}, {"caption": "a cartoon man and a dog run down and up a hill in a game", "video_id": "video10092", "sen_id": 235161}, {"caption": "a person demonstrates a video game that they are playing", "video_id": "video10092", "sen_id": 235162}, {"caption": "a video game character runs down a hill then his dog follows him and does tricks", "video_id": "video10092", "sen_id": 235163}, {"caption": "a person demonstrates a video game that features a boy and a dog", "video_id": "video10092", "sen_id": 235164}, {"caption": "a person demonstrates a video game they are playing that is related to a dog", "video_id": "video10092", "sen_id": 235165}, {"caption": "a clip from a video game of a boy interacting with a dog", "video_id": "video10092", "sen_id": 235166}, {"caption": "a video game of a man and dog playing in the grass", "video_id": "video10092", "sen_id": 235167}, {"caption": "a video game demonstration features a small dog and a young boy", "video_id": "video10092", "sen_id": 235168}, {"caption": "a girl is standing in a field giving commands to a dog", "video_id": "video10092", "sen_id": 235169}, {"caption": "an animated video which looks like the old es video games showing a man with a dog who is doing tricks", "video_id": "video10092", "sen_id": 235170}, {"caption": "in this video there is a cartoon show is playing", "video_id": "video10092", "sen_id": 235171}, {"caption": "a game featured on a dog and man relationship", "video_id": "video10092", "sen_id": 235172}, {"caption": "in the cartton car they are ride in the road very well and is explaning the lady", "video_id": "video10092", "sen_id": 235173}, {"caption": "a man is telling his dog to do commands", "video_id": "video10092", "sen_id": 235174}, {"caption": "a anmiated character moving across a flat grassy plain", "video_id": "video10092", "sen_id": 235175}, {"caption": "an image of a dog running after an image of a person", "video_id": "video10092", "sen_id": 235176}, {"caption": "come chummy lay down paw in a cartoon", "video_id": "video10092", "sen_id": 235177}, {"caption": "a boy asks the dog to come and lay down and said good bye", "video_id": "video10092", "sen_id": 235178}, {"caption": "a person is playing a game with a person", "video_id": "video10092", "sen_id": 235179}, {"caption": "a man in a sweatshirt is talking about his phone", "video_id": "video12400", "sen_id": 235180}, {"caption": "a man is holding up a phone and wearing a hoodie", "video_id": "video12400", "sen_id": 235181}, {"caption": "a man with a hoodie is introducing his new video", "video_id": "video12400", "sen_id": 235182}, {"caption": "a guy who vlogging in the morning", "video_id": "video12400", "sen_id": 235183}, {"caption": "a young man in a hoodie showing a cell phone", "video_id": "video12400", "sen_id": 235184}, {"caption": "a young white man wearing a hoodie pitches the veiwing audience about buying a product", "video_id": "video12400", "sen_id": 235185}, {"caption": "a man is talking about an issue with his cell phone", "video_id": "video12400", "sen_id": 235186}, {"caption": "a guy with grey t-shirt is showing his mobile screen", "video_id": "video12400", "sen_id": 235187}, {"caption": "one boy talks about mobile phone in the room", "video_id": "video12400", "sen_id": 235188}, {"caption": "boy shows the phone in front of the camerahe wear the dress with hood", "video_id": "video12400", "sen_id": 235189}, {"caption": "handsome man presenting and describing his new smartphone", "video_id": "video12400", "sen_id": 235190}, {"caption": "a person showing a mobile and explaning", "video_id": "video12400", "sen_id": 235191}, {"caption": "a man with covered head showing a smartphone and talking", "video_id": "video12400", "sen_id": 235192}, {"caption": "a guy explain about something in his new smart phone", "video_id": "video12400", "sen_id": 235193}, {"caption": "a man wearing a grey hooded sweatshirt shows the time on his cell phone as being 7:35", "video_id": "video12400", "sen_id": 235194}, {"caption": "a man is showing his mobile and telling time to wake up his friends", "video_id": "video12400", "sen_id": 235195}, {"caption": "there is a man with white t-shirt talking", "video_id": "video12400", "sen_id": 235196}, {"caption": "a man in a sweatsuit looks very sleepy and looks at his phone", "video_id": "video12400", "sen_id": 235197}, {"caption": "a man is showing a mobile and telling about its functions", "video_id": "video12400", "sen_id": 235198}, {"caption": "a boy wearing white dress holding mobile phone displaying screen", "video_id": "video12400", "sen_id": 235199}, {"caption": "driving down a paved highway with mountains and trees in the background", "video_id": "video11078", "sen_id": 235200}, {"caption": "a vehicle driving through a scenic pass in new zealand", "video_id": "video11078", "sen_id": 235201}, {"caption": "a person is riding on an highway on a bright sunny day", "video_id": "video11078", "sen_id": 235202}, {"caption": "there is a car riding on the road towards mountain", "video_id": "video11078", "sen_id": 235203}, {"caption": "its a long high way roadsome vehicle drived", "video_id": "video11078", "sen_id": 235204}, {"caption": "a car drives slowly through a very beautiful mountain region", "video_id": "video11078", "sen_id": 235205}, {"caption": "driving north highway toward lindis pass", "video_id": "video11078", "sen_id": 235206}, {"caption": "driving along a straight road at full speed", "video_id": "video11078", "sen_id": 235207}, {"caption": "there is someone riding the car on the road", "video_id": "video11078", "sen_id": 235208}, {"caption": "someone driving in the north highway and capture the roadway and hills", "video_id": "video11078", "sen_id": 235209}, {"caption": "beautiful highway with mountains and flat landscaping", "video_id": "video11078", "sen_id": 235210}, {"caption": "camera is being moved along the road way", "video_id": "video11078", "sen_id": 235211}, {"caption": "a person is riding a car on the road in a high way", "video_id": "video11078", "sen_id": 235212}, {"caption": "a car drives down a rural road with not much traffic or any buildings", "video_id": "video11078", "sen_id": 235213}, {"caption": "a car driving on a straight road all you hear is the sound of the car and country side with mountains", "video_id": "video11078", "sen_id": 235214}, {"caption": "on a sunny daysomeone driving the car through the highway", "video_id": "video11078", "sen_id": 235215}, {"caption": "scenic drive through the road in a car", "video_id": "video11078", "sen_id": 235216}, {"caption": "a person driving the vehicle on the highway", "video_id": "video11078", "sen_id": 235217}, {"caption": "a road drive in a car just viewing the road side", "video_id": "video11078", "sen_id": 235218}, {"caption": "scenic drive on a highway surrounded by mountains and clear sky", "video_id": "video11078", "sen_id": 235219}, {"caption": "a man is describing how that the word month is derived from the word moon and the length of time it takes to go through of all its phases", "video_id": "video10216", "sen_id": 235220}, {"caption": "a bald man wearing eyeglasses and a black denim shirt over a gray tee shirt speaks and gestures in a blue room with narrow white shelves of objects as days are marked with an x on a calendar page", "video_id": "video10216", "sen_id": 235221}, {"caption": "a man talks about how the words month and moon are related", "video_id": "video10216", "sen_id": 235222}, {"caption": "a man in gray jacket and shirt is sitting in a blue room explaining the cycle of the moon", "video_id": "video10216", "sen_id": 235223}, {"caption": "a professor with spectacles talking about the phases of moon and months", "video_id": "video10216", "sen_id": 235224}, {"caption": "a man is wearing a black jacket an talking something", "video_id": "video10216", "sen_id": 235225}, {"caption": "the man wearing spectacles in explaining something to the audience", "video_id": "video10216", "sen_id": 235226}, {"caption": "there is a specs man talking some impressive matters", "video_id": "video10216", "sen_id": 235227}, {"caption": "tbis video is of a man that speaks about the meaning of a month", "video_id": "video10216", "sen_id": 235228}, {"caption": "a man with bald head is explain some thing", "video_id": "video10216", "sen_id": 235229}, {"caption": "a man talking to the camera about various topics", "video_id": "video10216", "sen_id": 235230}, {"caption": "the man discusses the term month and how it came to mean what it means", "video_id": "video10216", "sen_id": 235231}, {"caption": "there is black shirt man talking inside a room", "video_id": "video10216", "sen_id": 235232}, {"caption": "a man in a black shirt is explaining the connection between the words moon and month", "video_id": "video10216", "sen_id": 235233}, {"caption": "a man is talking into the video camera about the moon", "video_id": "video10216", "sen_id": 235234}, {"caption": "a man in black discusses the origins of the word month in relation to the moon and other celestial bodies", "video_id": "video10216", "sen_id": 235235}, {"caption": "a bald man is talking about some astronomy stuff", "video_id": "video10216", "sen_id": 235236}, {"caption": "a man explains the etymological origins of the word moon", "video_id": "video10216", "sen_id": 235237}, {"caption": "a man in a black jacket explains where the word month comes from", "video_id": "video10216", "sen_id": 235238}, {"caption": "bald guy in glasses talking in front of camera", "video_id": "video10216", "sen_id": 235239}, {"caption": "woman in a purple dress cutting tilapia on top of a counter", "video_id": "video12270", "sen_id": 235240}, {"caption": "a woman in a kitchen is cutting tilapia into small pieces", "video_id": "video12270", "sen_id": 235241}, {"caption": "a woman cuts tilapia and picks up tortillas", "video_id": "video12270", "sen_id": 235242}, {"caption": "the cook is cutting something into small pieces in preparation for making something with a tortilla", "video_id": "video12270", "sen_id": 235243}, {"caption": "lady with purple shirt cuts meat with a knife then picks up bag of tortes", "video_id": "video12270", "sen_id": 235244}, {"caption": "a women in a purple dress is cooking in the kitchen", "video_id": "video12270", "sen_id": 235245}, {"caption": "a woman in a purple dress is cutting meat to make a fajita", "video_id": "video12270", "sen_id": 235246}, {"caption": "an in home chef works on a recipe by cutting up some cooked fish", "video_id": "video12270", "sen_id": 235247}, {"caption": "a woman stands in her kitchen and prepares a meal", "video_id": "video12270", "sen_id": 235248}, {"caption": "a girl in blue dress cloth inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video12270", "sen_id": 235249}, {"caption": "a women in purple dress slicing some food item in a kitchen", "video_id": "video12270", "sen_id": 235250}, {"caption": "a woman in a blue dress cutting tilapia on a plate in a kitchen before grabbing tortillas", "video_id": "video12270", "sen_id": 235251}, {"caption": "a lady in a blue dress is cutting tilapia in the kitchen preparing for fish tacos", "video_id": "video12270", "sen_id": 235252}, {"caption": "a woman is in the kitchen cutting up the meat", "video_id": "video12270", "sen_id": 235253}, {"caption": "the girl in blue dress is cooking a delicious dish and it is placed nicely in a steel vessels", "video_id": "video12270", "sen_id": 235254}, {"caption": "the lady with a blue short dress prepares some dishes in the kitchen", "video_id": "video12270", "sen_id": 235255}, {"caption": "a woman is demonstrating how to prepare a dish", "video_id": "video12270", "sen_id": 235256}, {"caption": "lady in blue dress cuts the meat which is cooked in pan", "video_id": "video12270", "sen_id": 235257}, {"caption": "a woman in a blue dress cutting tilapia and picking up tortillas", "video_id": "video12270", "sen_id": 235258}, {"caption": "woman in purple shirt showing how to cook fish on a skillet", "video_id": "video12270", "sen_id": 235259}, {"caption": "someone is tying off a rubber car tire with a ziptie", "video_id": "video10911", "sen_id": 235260}, {"caption": "a tutorial on how to put zipties on a tire", "video_id": "video10911", "sen_id": 235261}, {"caption": "man explains how to zip tie a rubber tire in order to get it on the wheel", "video_id": "video10911", "sen_id": 235262}, {"caption": "a man in shorts and a tshirt is wrapping several zip-ties around a black wheel", "video_id": "video10911", "sen_id": 235263}, {"caption": "a man tightens a couple zip-ties around a tire", "video_id": "video10911", "sen_id": 235264}, {"caption": "a guy wearing a blue shirt is putting zip ties on a tire and inner tube while explalng how it is going to be easier to put on the wheel", "video_id": "video10911", "sen_id": 235265}, {"caption": "a man in blue t-shirt and glove is working on a tyre", "video_id": "video10911", "sen_id": 235266}, {"caption": "man threads tyres and talks something about the", "video_id": "video10911", "sen_id": 235267}, {"caption": "a person wearing gloves and putting zip ties on a black car wheel", "video_id": "video10911", "sen_id": 235268}, {"caption": "a man is tiding a wheel tightly using white riding ribbon", "video_id": "video10911", "sen_id": 235269}, {"caption": "a man in blue tshirt working with tire", "video_id": "video10911", "sen_id": 235270}, {"caption": "there are three boys packing rubber tire in a box", "video_id": "video10911", "sen_id": 235271}, {"caption": "one man threading the tyre and speaking something", "video_id": "video10911", "sen_id": 235272}, {"caption": "a man is wrapping a peice of material around a tire", "video_id": "video10911", "sen_id": 235273}, {"caption": "a man is working on a tire outside", "video_id": "video10911", "sen_id": 235274}, {"caption": "there is a blue t-shirt working with their tyre", "video_id": "video10911", "sen_id": 235275}, {"caption": "a person ties the tubeless tire with white code into to fix it to the rim", "video_id": "video10911", "sen_id": 235276}, {"caption": "person wear the gloves and holds the tyre between his legs", "video_id": "video10911", "sen_id": 235277}, {"caption": "a seated white man wearing shorts and a tee shirt putting zip ties on a tire he has the wheel propped between his legs", "video_id": "video10911", "sen_id": 235278}, {"caption": "a person is sitting down and tying a tire", "video_id": "video10911", "sen_id": 235279}, {"caption": "a red car driving down a country road with a inside the cab shot of the male driver", "video_id": "video11628", "sen_id": 235280}, {"caption": "a man with white shirt is driving a red color car", "video_id": "video11628", "sen_id": 235281}, {"caption": "a man driving a new car and explaining some of its features", "video_id": "video11628", "sen_id": 235282}, {"caption": "a man in the driver seat of a red car going down a road", "video_id": "video11628", "sen_id": 235283}, {"caption": "a man in a white button down is driving in a red volkswagon", "video_id": "video11628", "sen_id": 235284}, {"caption": "a man is test driving a 2015 vw gti with se trim", "video_id": "video11628", "sen_id": 235285}, {"caption": "car is running very very fast on road", "video_id": "video11628", "sen_id": 235286}, {"caption": "the man wearnig the button down shirt rides in the red car", "video_id": "video11628", "sen_id": 235287}, {"caption": "a man is test driving a 2015 vw gti with a manual transmission", "video_id": "video11628", "sen_id": 235288}, {"caption": "a man is test driving a red car 2015 vw gti", "video_id": "video11628", "sen_id": 235289}, {"caption": "a man sitting inside a red car explaining something", "video_id": "video11628", "sen_id": 235290}, {"caption": "a car red color running faster", "video_id": "video11628", "sen_id": 235291}, {"caption": "a man driving a red 2015 volkswagon gti hatchback down the road", "video_id": "video11628", "sen_id": 235292}, {"caption": "a man wearing glasses is giving a test run of a 2015 vw gti se trim with a manual transmission", "video_id": "video11628", "sen_id": 235293}, {"caption": "a car expert is reviewing the ride and engine performance of a car", "video_id": "video11628", "sen_id": 235294}, {"caption": "a man in white shirt driving a red car", "video_id": "video11628", "sen_id": 235295}, {"caption": "a man is driving in a red vw car and talking about its aspects", "video_id": "video11628", "sen_id": 235296}, {"caption": "a man in a white shirt is driving a red car down the road", "video_id": "video11628", "sen_id": 235297}, {"caption": "a man driving red golf 7 car and enjoying the driving of it", "video_id": "video11628", "sen_id": 235298}, {"caption": "a man in a white shirt is driving a car", "video_id": "video11628", "sen_id": 235299}, {"caption": "a group of women in leather costumes sing and dance in a music video", "video_id": "video12964", "sen_id": 235300}, {"caption": "women in revealing clothing sing and begin dancing", "video_id": "video12964", "sen_id": 235301}, {"caption": "a clip from a fifth harmony music video", "video_id": "video12964", "sen_id": 235302}, {"caption": "five scantily clad women sing about having a hot body", "video_id": "video12964", "sen_id": 235303}, {"caption": "a group of young women wear lingerie in a variety of settings", "video_id": "video12964", "sen_id": 235304}, {"caption": "a group of scantily clad women dance on a white stage while singing to a song that plays in the background", "video_id": "video12964", "sen_id": 235305}, {"caption": "five woman from the group fifth harmony are singing", "video_id": "video12964", "sen_id": 235306}, {"caption": "there is a woman dancing with some hot women", "video_id": "video12964", "sen_id": 235307}, {"caption": "a music video with seductively dancing women in leather", "video_id": "video12964", "sen_id": 235308}, {"caption": "five girls singing and choreographed in a music video", "video_id": "video12964", "sen_id": 235309}, {"caption": "many models are in two-piece set giving sexy-phose to the camera and one newly branded car has been shown", "video_id": "video12964", "sen_id": 235310}, {"caption": "five woman are standing in different positions in front of a pool then a woman is seated in front of a mirror", "video_id": "video12964", "sen_id": 235311}, {"caption": "britney spears and several other women prepare to dance for a music video", "video_id": "video12964", "sen_id": 235312}, {"caption": "a group of women posing by a pool then a woman sitting at a vanity in the desert applying making", "video_id": "video12964", "sen_id": 235313}, {"caption": "britney spears singing in her catchy song while a white fast car is driving in the desert", "video_id": "video12964", "sen_id": 235314}, {"caption": "britney spears is dancing in a music video for one of her songs", "video_id": "video12964", "sen_id": 235315}, {"caption": "in a music video britney spears is dancing and singing", "video_id": "video12964", "sen_id": 235316}, {"caption": "brittney spears and four women dancing provocatively", "video_id": "video12964", "sen_id": 235317}, {"caption": "five glamorous lades in black are standing in various poses", "video_id": "video12964", "sen_id": 235318}, {"caption": "men and women are posing in different styles and singing", "video_id": "video12964", "sen_id": 235319}, {"caption": "a camera crew sets up the best angles and shows what it takes behind the scenes to get the best shots", "video_id": "video11640", "sen_id": 235320}, {"caption": "the daily happenings behind the scenes of a cooking show", "video_id": "video11640", "sen_id": 235321}, {"caption": "a camera crew and other people talking to each other", "video_id": "video11640", "sen_id": 235322}, {"caption": "a camera crew films a cooking show a stagehand on a ladder drops a pancake on a woman's head and people in a control room look at the rectangular screens showing the cooking set", "video_id": "video11640", "sen_id": 235323}, {"caption": "video presentation of some kind of team work featuring modern background music", "video_id": "video11640", "sen_id": 235324}, {"caption": "inside a studio people are going to shoot new programe", "video_id": "video11640", "sen_id": 235325}, {"caption": "people are on working and prepping a set", "video_id": "video11640", "sen_id": 235326}, {"caption": "cookery shoting in the spot people watching in studio", "video_id": "video11640", "sen_id": 235327}, {"caption": "its a shooting spot the boy drops something on the head of the lady", "video_id": "video11640", "sen_id": 235328}, {"caption": "a person is looking at their security screen", "video_id": "video11640", "sen_id": 235329}, {"caption": "there is a man setting camera for shoot", "video_id": "video11640", "sen_id": 235330}, {"caption": "a group of people making a tv show it shows the people on the show and camera people", "video_id": "video11640", "sen_id": 235331}, {"caption": "making of recipes in stage shooting and view", "video_id": "video11640", "sen_id": 235332}, {"caption": "a camera catching and rotating and seeing camera and throwing chapaty on head", "video_id": "video11640", "sen_id": 235333}, {"caption": "music is playing and some people are interacting", "video_id": "video11640", "sen_id": 235334}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11640", "sen_id": 235335}, {"caption": "this is a filim shooting secssion all the camera men aredy to take the video", "video_id": "video11640", "sen_id": 235336}, {"caption": "they are working on an art project which involves video and photography", "video_id": "video11640", "sen_id": 235337}, {"caption": "in a kitchen people are shooting show in which a woman is cooking food", "video_id": "video11640", "sen_id": 235338}, {"caption": "two people are watching a security camera feed", "video_id": "video11640", "sen_id": 235339}, {"caption": "britney spears performs for her music video with multiple dancers", "video_id": "video11441", "sen_id": 235340}, {"caption": "a blond woman wearing shorts dances with a team while she sings", "video_id": "video11441", "sen_id": 235341}, {"caption": "a young woman sings and dances with a group of male backup dancers", "video_id": "video11441", "sen_id": 235342}, {"caption": "britney spears dancing in jean shorts for a music video", "video_id": "video11441", "sen_id": 235343}, {"caption": "a britney spears video showing spears in a white halter top and short denim shorts dancing with backup dancers interspersed with various other imagery", "video_id": "video11441", "sen_id": 235344}, {"caption": "a women is dancing along with her group in stage", "video_id": "video11441", "sen_id": 235345}, {"caption": "the dance program is very nice & group dance its very nice", "video_id": "video11441", "sen_id": 235346}, {"caption": "a dance program is going on the stage", "video_id": "video11441", "sen_id": 235347}, {"caption": "a girl singing and dancing showing lip ticks on the stage displaying on screen", "video_id": "video11441", "sen_id": 235348}, {"caption": "a lady with black dress a red lipstick is singing along with a group of people", "video_id": "video11441", "sen_id": 235349}, {"caption": "it was tv show where the artist is performing her roll by dancing and singing", "video_id": "video11441", "sen_id": 235350}, {"caption": "the woman sings and dances on the stage", "video_id": "video11441", "sen_id": 235351}, {"caption": "a singer with the red lipstick in the lips do the performance on teh stage", "video_id": "video11441", "sen_id": 235352}, {"caption": "a young lady dancing with group of men she is wearing a bra with an underwear and long boot on her leg her red lips are shown", "video_id": "video11441", "sen_id": 235353}, {"caption": "some people are dancing and singing to music", "video_id": "video11441", "sen_id": 235354}, {"caption": "a women is singing and a group is dancing", "video_id": "video11441", "sen_id": 235355}, {"caption": "we can see in their sexy clothes dancing and singing together probably a music video", "video_id": "video11441", "sen_id": 235356}, {"caption": "britney spears dances in front of a stage with a bunch of guys", "video_id": "video11441", "sen_id": 235357}, {"caption": "a sexy lady is singing and dancing with some guys", "video_id": "video11441", "sen_id": 235358}, {"caption": "some people are dancing around to the music", "video_id": "video11441", "sen_id": 235359}, {"caption": "a woman in her room with action figures in the back while she talks", "video_id": "video12794", "sen_id": 235360}, {"caption": "a smiling lady talks in a room near a table covered with small figurines", "video_id": "video12794", "sen_id": 235361}, {"caption": "a woman sitting in front of a table of toys talks about things worth watching", "video_id": "video12794", "sen_id": 235362}, {"caption": "a girl in a black shirt requests that you do not hate her while rubbing her hands together", "video_id": "video12794", "sen_id": 235363}, {"caption": "a woman in a blue shirt surrounded by toys which are stacked on each other in the background", "video_id": "video12794", "sen_id": 235364}, {"caption": "a woman in a black shirt is talking in front of her toys", "video_id": "video12794", "sen_id": 235365}, {"caption": "a black shirt woman is talking in a room with a lot of toys behind her", "video_id": "video12794", "sen_id": 235366}, {"caption": "a woman acting childish with toys in the background trying to motivate the viewers to see some of the vlogs that she recommends", "video_id": "video12794", "sen_id": 235367}, {"caption": "there is a young pretty womanher room full of with dolls and she might be behave like a doll", "video_id": "video12794", "sen_id": 235368}, {"caption": "a young woman talks about videos to watch", "video_id": "video12794", "sen_id": 235369}, {"caption": "a women in black dress explaining some matter very excitingly", "video_id": "video12794", "sen_id": 235370}, {"caption": "the woman is talking with smiles about something while sitting in chair", "video_id": "video12794", "sen_id": 235371}, {"caption": "a femal tv reporter talks about some off beat shows that she thinkgs are good", "video_id": "video12794", "sen_id": 235372}, {"caption": "a woman is talking about what is worth watching", "video_id": "video12794", "sen_id": 235373}, {"caption": "a transsexual freak is talking about nonsense", "video_id": "video12794", "sen_id": 235374}, {"caption": "a woman trying to perfrom some song", "video_id": "video12794", "sen_id": 235375}, {"caption": "a lady explaining something while many toys was placed behind her", "video_id": "video12794", "sen_id": 235376}, {"caption": "a white female entertainment reviewer talks about shows she likes", "video_id": "video12794", "sen_id": 235377}, {"caption": "woman in black shirt is talking about the toys she own", "video_id": "video12794", "sen_id": 235378}, {"caption": "a woman with curly hair is inside talking", "video_id": "video12794", "sen_id": 235379}, {"caption": "a man talking to a man in a suit sitting at his desk", "video_id": "video10982", "sen_id": 235380}, {"caption": "two men in suits discuss how they look at life", "video_id": "video10982", "sen_id": 235381}, {"caption": "man in grey suit and red tie sitting on a chair discussing something", "video_id": "video10982", "sen_id": 235382}, {"caption": "a scene from an old movie is playing", "video_id": "video10982", "sen_id": 235383}, {"caption": "a man in a light gray suit talks while setting in a plastic chair", "video_id": "video10982", "sen_id": 235384}, {"caption": "two business men wearing suits talking to each other", "video_id": "video10982", "sen_id": 235385}, {"caption": "a man in a suit is standing and questioning another man who is seated also wearing a suit", "video_id": "video10982", "sen_id": 235386}, {"caption": "a man in a grey suite and a red tie talking to others", "video_id": "video10982", "sen_id": 235387}, {"caption": "a man with smooth hair and a moustache is wearing a three-piece gray suit with red tie and matching pocket square while he sits by a white table in a white chair", "video_id": "video10982", "sen_id": 235388}, {"caption": "a man wearing a gray suit is talking to his business partner", "video_id": "video10982", "sen_id": 235389}, {"caption": "guy in suit and tie with mustache talking to the camera", "video_id": "video10982", "sen_id": 235390}, {"caption": "a man is describing the experiences of his life for another person", "video_id": "video10982", "sen_id": 235391}, {"caption": "the man in suit having a conversation", "video_id": "video10982", "sen_id": 235392}, {"caption": "a scene from an 80s moview where a guy is sitting g behind a desk", "video_id": "video10982", "sen_id": 235393}, {"caption": "a pacing man with a suit speaks to a man seated in a chair wearing a grey suit with a red tie", "video_id": "video10982", "sen_id": 235394}, {"caption": "two men in suits are talking to each other", "video_id": "video10982", "sen_id": 235395}, {"caption": "there is a suit man talking to his friend", "video_id": "video10982", "sen_id": 235396}, {"caption": "two men are acting out a scene in a movie talking to each other", "video_id": "video10982", "sen_id": 235397}, {"caption": "a man one is standing and another is sitting on the chair and they were talking", "video_id": "video10982", "sen_id": 235398}, {"caption": "a person is interviewed by a tv personality and he is saying that he says that he often saw terrible things in his life", "video_id": "video10982", "sen_id": 235399}, {"caption": "a woman modeling underwear in a seductive video", "video_id": "video12471", "sen_id": 235400}, {"caption": "a woman with long black hair poses in brassieres and panties at the beach and in a showroom while pulling up black stockings and smoothing her hair", "video_id": "video12471", "sen_id": 235401}, {"caption": "a beautiful woman models several different outfits seductively", "video_id": "video12471", "sen_id": 235402}, {"caption": "a young girl models lingerie pantyhose and swims in a pool while the wind blows her hair", "video_id": "video12471", "sen_id": 235403}, {"caption": "an attractive woman wearing lingerie poses in several seductive poses", "video_id": "video12471", "sen_id": 235404}, {"caption": "a pop song plays while a beautiful model displays lingerie", "video_id": "video12471", "sen_id": 235405}, {"caption": "a woman is striking seductive poses while wearing lingerie", "video_id": "video12471", "sen_id": 235406}, {"caption": "a young woman with long brown hair is modeling sexy underwear", "video_id": "video12471", "sen_id": 235407}, {"caption": "a beautiful woman wears lingerie and dances around the inside of a bedroom", "video_id": "video12471", "sen_id": 235408}, {"caption": "an attractive black haired woman is modeling underwear", "video_id": "video12471", "sen_id": 235409}, {"caption": "a lingerie model poses in different scenarios", "video_id": "video12471", "sen_id": 235410}, {"caption": "a woman in lingerie rolls pantyhose up her smooth legs", "video_id": "video12471", "sen_id": 235411}, {"caption": "women in bikini posting to camera", "video_id": "video12471", "sen_id": 235412}, {"caption": "a woman dressed in lingerie models different outfits", "video_id": "video12471", "sen_id": 235413}, {"caption": "woman in swimsuit poses at a photoshoot video", "video_id": "video12471", "sen_id": 235414}, {"caption": "a woman poses in different sets of lingerie", "video_id": "video12471", "sen_id": 235415}, {"caption": "girl with dark brown hair starts out in a pool then proceeds to put on panty hose", "video_id": "video12471", "sen_id": 235416}, {"caption": "a sexy women is exposing herself in a album", "video_id": "video12471", "sen_id": 235417}, {"caption": "amazing woman with beautiful body posing in lingerie", "video_id": "video12471", "sen_id": 235418}, {"caption": "a woman in a bikini is doing some poses", "video_id": "video12471", "sen_id": 235419}, {"caption": "a group of men chatting at an outdoor market", "video_id": "video10798", "sen_id": 235420}, {"caption": "a man peeks through items in a market to see a lady in a vehicle", "video_id": "video10798", "sen_id": 235421}, {"caption": "two women are watching three men cooking outdoors", "video_id": "video10798", "sen_id": 235422}, {"caption": "a man talks to three other men who are cooking while a woman watches from a bus", "video_id": "video10798", "sen_id": 235423}, {"caption": "the men stand in an outdoor kitchen; the man in the blue plaid shirt spies through brush at a woman sitting in a bus", "video_id": "video10798", "sen_id": 235424}, {"caption": "three men are standing outside while one is eating", "video_id": "video10798", "sen_id": 235425}, {"caption": "a scene from an indian movie showing three men and a woman on a bus", "video_id": "video10798", "sen_id": 235426}, {"caption": "a red shirt man standing nearby his friends", "video_id": "video10798", "sen_id": 235427}, {"caption": "a group of men are cooking outside and talking together", "video_id": "video10798", "sen_id": 235428}, {"caption": "three guys are standing in market and one guy is looking at a women", "video_id": "video10798", "sen_id": 235429}, {"caption": "a young woman is looking over at a man that is cooking with his friends", "video_id": "video10798", "sen_id": 235430}, {"caption": "there is a men looking for the giel who is sitting in the bus", "video_id": "video10798", "sen_id": 235431}, {"caption": "in a movie hero looking heroine in bus", "video_id": "video10798", "sen_id": 235432}, {"caption": "three girls are sitting in a bus and a man with light green chcked color shirts accomined with another three person one in red shirt and nother in lingt shade color shirt looks hiding behind bamboo bundle", "video_id": "video10798", "sen_id": 235433}, {"caption": "three men are staring a women sitting in a bus", "video_id": "video10798", "sen_id": 235434}, {"caption": "an indian man is peering through a bush at a pretty young woman", "video_id": "video10798", "sen_id": 235435}, {"caption": "three indian men looking at and talking about an indian woman on a bus", "video_id": "video10798", "sen_id": 235436}, {"caption": "in a movie one man see one lady in the bus", "video_id": "video10798", "sen_id": 235437}, {"caption": "guy in mustache watching woman in the bus while other are cooking", "video_id": "video10798", "sen_id": 235438}, {"caption": "some men from india are inside a marketr", "video_id": "video10798", "sen_id": 235439}, {"caption": "group of people dancing and singing with a lot of pink in the background", "video_id": "video10325", "sen_id": 235440}, {"caption": "women who are dressed in bright colors dance sing and act in a variety of scenes", "video_id": "video10325", "sen_id": 235441}, {"caption": "a group of young women dance and sing in an assortment of costumes", "video_id": "video10325", "sen_id": 235442}, {"caption": "a group of young women in colorful outfits sing and dance with flowers in their hair", "video_id": "video10325", "sen_id": 235443}, {"caption": "a group of kids doing the robot dance", "video_id": "video10325", "sen_id": 235444}, {"caption": "a meghan trainor music video shows dancing women in pastel outfits", "video_id": "video10325", "sen_id": 235445}, {"caption": "women dancing and singing song in a group", "video_id": "video10325", "sen_id": 235446}, {"caption": "the women dancers are singing and dancing in the group", "video_id": "video10325", "sen_id": 235447}, {"caption": "a music video in which girls dance in unison against a pink backdrop", "video_id": "video10325", "sen_id": 235448}, {"caption": "a girl in blue and white dress wearing color cloth singing song dancing boy and girl sitting on chair displaying on screen", "video_id": "video10325", "sen_id": 235449}, {"caption": "there are many young people dancing in the hall", "video_id": "video10325", "sen_id": 235450}, {"caption": "multiple girls in colorful dresses dance and sing in very colorful rooms", "video_id": "video10325", "sen_id": 235451}, {"caption": "a album song group of girls singing for an album", "video_id": "video10325", "sen_id": 235452}, {"caption": "a music video of a popular new song", "video_id": "video10325", "sen_id": 235453}, {"caption": "a group of singers dressed like kids singing and dancing", "video_id": "video10325", "sen_id": 235454}, {"caption": "all people are singing and dancing on a room", "video_id": "video10325", "sen_id": 235455}, {"caption": "three and more girls are dancing and singing together", "video_id": "video10325", "sen_id": 235456}, {"caption": "women in various costumes dancing and singing", "video_id": "video10325", "sen_id": 235457}, {"caption": "a lady singing a song and dancing with the funny situation", "video_id": "video10325", "sen_id": 235458}, {"caption": "a group of girls are singing and dancing for a song", "video_id": "video10325", "sen_id": 235459}, {"caption": "a group of asian guys impersonating musical artist", "video_id": "video11648", "sen_id": 235460}, {"caption": "young men inside a trendy clothing store wear a cap backwards a printed jacket with letters hoodie knit cap and tee shirts while repeating popular phrases and displaying popular brands", "video_id": "video11648", "sen_id": 235461}, {"caption": "men rap and show off their branded merchandise", "video_id": "video11648", "sen_id": 235462}, {"caption": "a group of guys rapping and advertising their mechandise", "video_id": "video11648", "sen_id": 235463}, {"caption": "a man is in a shoe store rapping in a hoodie", "video_id": "video11648", "sen_id": 235464}, {"caption": "kendric lamar is talking about clothes", "video_id": "video11648", "sen_id": 235465}, {"caption": "an asian young man in a shoe store is rapping with and showing off clothes in the store", "video_id": "video11648", "sen_id": 235466}, {"caption": "a commercial for the asian created brand the hundreds", "video_id": "video11648", "sen_id": 235467}, {"caption": "a group of friends speak about a common streetwear clothing brand", "video_id": "video11648", "sen_id": 235468}, {"caption": "korean young men advertising shirts with a bomb on it", "video_id": "video11648", "sen_id": 235469}, {"caption": "three men are discussing their business and trying to advertise it", "video_id": "video11648", "sen_id": 235470}, {"caption": "an asian boy in a black sweatshirt rapping about cloths", "video_id": "video11648", "sen_id": 235471}, {"caption": "a young asian boy in a black shirt is showing off his cloths", "video_id": "video11648", "sen_id": 235472}, {"caption": "an asian guy raps in the style of a famous well known rapper", "video_id": "video11648", "sen_id": 235473}, {"caption": "a man is rapping along with famous rappers while walking through a store", "video_id": "video11648", "sen_id": 235474}, {"caption": "there is a man talking from a textile", "video_id": "video11648", "sen_id": 235475}, {"caption": "a boy wearing different shirts and singing in the dress shop", "video_id": "video11648", "sen_id": 235476}, {"caption": "a few guys talking about t-shirtsand trying to imitate a famous rapper", "video_id": "video11648", "sen_id": 235477}, {"caption": "three young men talk about the clothes they wear while in a clothing store", "video_id": "video11648", "sen_id": 235478}, {"caption": "some people in a store are showing clothes", "video_id": "video11648", "sen_id": 235479}, {"caption": "a woman explaining how to make a certain dish by showing what ingredients to use and what heat settings to use", "video_id": "video12938", "sen_id": 235480}, {"caption": "a woman dropped bean sprouts into water to boil them", "video_id": "video12938", "sen_id": 235481}, {"caption": "a receipt on how to create a vegetable dish", "video_id": "video12938", "sen_id": 235482}, {"caption": "an asian woman cooking food in a white kitchen", "video_id": "video12938", "sen_id": 235483}, {"caption": "a asian women showing how she makes a certain dish", "video_id": "video12938", "sen_id": 235484}, {"caption": "a woman begins to cook a stirfry dish on her stove", "video_id": "video12938", "sen_id": 235485}, {"caption": "a asian woman explain how to use several vegetables in a dish she's preparing in a pot", "video_id": "video12938", "sen_id": 235486}, {"caption": "an asian woman is filmed showing how to make a particular recipe", "video_id": "video12938", "sen_id": 235487}, {"caption": "a woman describes making a dish with soy", "video_id": "video12938", "sen_id": 235488}, {"caption": "a girl in blue dress plate vegetables mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12938", "sen_id": 235489}, {"caption": "a young woman shows how to mix together various food ingredients", "video_id": "video12938", "sen_id": 235490}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12938", "sen_id": 235491}, {"caption": "the woman is showing a recipe on preparing sprouts", "video_id": "video12938", "sen_id": 235492}, {"caption": "a lady showing how to prepare a dish by putting noodles in hot water on the stove", "video_id": "video12938", "sen_id": 235493}, {"caption": "a girl in blue dress cloth inside kitchen mixing pouring water to prepare dish to eat and serve displaying on screen", "video_id": "video12938", "sen_id": 235494}, {"caption": "a stove is being filmed close up", "video_id": "video12938", "sen_id": 235495}, {"caption": "in the kitchen a woman cooking with a stove", "video_id": "video12938", "sen_id": 235496}, {"caption": "a lady pour noodles and water in a container and cooking it", "video_id": "video12938", "sen_id": 235497}, {"caption": "a lovley asian lady describes how to make vegetable dish she is preparing", "video_id": "video12938", "sen_id": 235498}, {"caption": "a woman decribes making a casserole in a kitchen", "video_id": "video12938", "sen_id": 235499}, {"caption": "monastery has come under fire for campaigning", "video_id": "video11669", "sen_id": 235500}, {"caption": "people are standing on a dirt track wearing shorts and tennis shoes", "video_id": "video11669", "sen_id": 235501}, {"caption": "people are standing in a wooded area some working and some talking to each other", "video_id": "video11669", "sen_id": 235502}, {"caption": "a woman is speaking about monks and tigers at a temple", "video_id": "video11669", "sen_id": 235503}, {"caption": "people in a campsite with lots of trees", "video_id": "video11669", "sen_id": 235504}, {"caption": "monastery has recently come under fire from animal rights campaigners", "video_id": "video11669", "sen_id": 235505}, {"caption": "some people are standing around in the wild", "video_id": "video11669", "sen_id": 235506}, {"caption": "there are some people waiting on the ground", "video_id": "video11669", "sen_id": 235507}, {"caption": "a woman is talking about a monastery that has recently come under fire from animal rights campaigners", "video_id": "video11669", "sen_id": 235508}, {"caption": "more persons sight seeing on the forest and standing and sitting near the trees", "video_id": "video11669", "sen_id": 235509}, {"caption": "men are standing around on dirt looking at something in the ditance", "video_id": "video11669", "sen_id": 235510}, {"caption": "some people in africa are wandeirng the landscape", "video_id": "video11669", "sen_id": 235511}, {"caption": "a woman speaks about a monastery keeping visitors out while zooming in on a picture of people standing around what appears to be a transition between a desert and a forest", "video_id": "video11669", "sen_id": 235512}, {"caption": "a screen is showing animal right campaigners outdoors", "video_id": "video11669", "sen_id": 235513}, {"caption": "a woman describes rule changes that have recently occurred recently", "video_id": "video11669", "sen_id": 235514}, {"caption": "a group of people talking about animal rights in the desert", "video_id": "video11669", "sen_id": 235515}, {"caption": "more peoples are sitting under trees", "video_id": "video11669", "sen_id": 235516}, {"caption": "this video is distressing when i think about the animals", "video_id": "video11669", "sen_id": 235517}, {"caption": "many people are standing under hot sun they all wear summer dress", "video_id": "video11669", "sen_id": 235518}, {"caption": "several people are standing outside while a woman talks about animal rights", "video_id": "video11669", "sen_id": 235519}, {"caption": "a man is playing a video game and narrating for others to understand", "video_id": "video10903", "sen_id": 235520}, {"caption": "a man is playing a video game on his computer", "video_id": "video10903", "sen_id": 235521}, {"caption": "a video game character wearing glasses climbs ladders jumps and avoids obstacles", "video_id": "video10903", "sen_id": 235522}, {"caption": "a man explaining a live walk through of a video game", "video_id": "video10903", "sen_id": 235523}, {"caption": "a man does a live demonstration of a video game walkthrough", "video_id": "video10903", "sen_id": 235524}, {"caption": "a video game with a player jumping and climbing", "video_id": "video10903", "sen_id": 235525}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video10903", "sen_id": 235526}, {"caption": "a man playing a video game review as he plays it", "video_id": "video10903", "sen_id": 235527}, {"caption": "a man playing a video game review as he plays it", "video_id": "video10903", "sen_id": 235528}, {"caption": "a kid with a gun running and trying not to hit lines of fire with a mans face in the corner", "video_id": "video10903", "sen_id": 235529}, {"caption": "a video gamer talks while his character climbs ladders and shoots things", "video_id": "video10903", "sen_id": 235530}, {"caption": "a man is playing a video game and talking", "video_id": "video10903", "sen_id": 235531}, {"caption": "a man describing a video game while playing it", "video_id": "video10903", "sen_id": 235532}, {"caption": "an animated figure jumps from one blue box to another then climb stairs and continues jumping", "video_id": "video10903", "sen_id": 235533}, {"caption": "a person playing old version flash game", "video_id": "video10903", "sen_id": 235534}, {"caption": "there is a person playing video game on tv screen", "video_id": "video10903", "sen_id": 235535}, {"caption": "this video game like fir all children this is new version", "video_id": "video10903", "sen_id": 235536}, {"caption": "a man is playing a video game and talking some thing", "video_id": "video10903", "sen_id": 235537}, {"caption": "a person is playing video game and his face is visible and voice is audible", "video_id": "video10903", "sen_id": 235538}, {"caption": "someone is playing a side scroller video game", "video_id": "video10903", "sen_id": 235539}, {"caption": "grant kurzman standing in tall weeds and talking", "video_id": "video11890", "sen_id": 235540}, {"caption": "a man in a white shirt talks about his upcoming experience with a luxury car", "video_id": "video11890", "sen_id": 235541}, {"caption": "grant kurzman standing by a field talking about a lamborghini", "video_id": "video11890", "sen_id": 235542}, {"caption": "a man talks as an image of two race cars is shown", "video_id": "video11890", "sen_id": 235543}, {"caption": "a man in a blue shirt is speaking in a field of high growing grass", "video_id": "video11890", "sen_id": 235544}, {"caption": "a man in a white shirt talks about the joy of cars and a car he will test the lamborghini gallato", "video_id": "video11890", "sen_id": 235545}, {"caption": "a man standing in the desert is describing how he is about to test drive a lamborghini", "video_id": "video11890", "sen_id": 235546}, {"caption": "a man stands in a field of tall grasses with trees in the background while wearing an open-collar white shirt with zippered pocket a yellow sports car has a tinted windshield curved roof and sleek chassis", "video_id": "video11890", "sen_id": 235547}, {"caption": "a man in a light colored shirt stands in front of grass lands and discusses cars", "video_id": "video11890", "sen_id": 235548}, {"caption": "a man standing in a field talking about cars then showing the car", "video_id": "video11890", "sen_id": 235549}, {"caption": "man in blue shirt talking in a field then an orange car driving down a road", "video_id": "video11890", "sen_id": 235550}, {"caption": "a man standing in a grassy field area talking about test driving a lamborghini gallardo", "video_id": "video11890", "sen_id": 235551}, {"caption": "grant kurzman introduces his show about automobiles by announcing that he will be driving a lamborghini", "video_id": "video11890", "sen_id": 235552}, {"caption": "a guy in a white shirt stands in a plain with high wheat and talks lambos", "video_id": "video11890", "sen_id": 235553}, {"caption": "guy in sky blue shirt talking to the camera about the car", "video_id": "video11890", "sen_id": 235554}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video11890", "sen_id": 235555}, {"caption": "the man wearing the blue button down shirt stands in the forest and talks", "video_id": "video11890", "sen_id": 235556}, {"caption": "a man assesses a super car as images of the car are shown", "video_id": "video11890", "sen_id": 235557}, {"caption": "a car logo is presented and then a man talks about how normal people can t drive expensive lamborghini cars unless its in a video game", "video_id": "video11890", "sen_id": 235558}, {"caption": "a man in a shirt is talking about cars", "video_id": "video11890", "sen_id": 235559}, {"caption": "jim cramer talking about stalks on squawk on the street", "video_id": "video12462", "sen_id": 235560}, {"caption": "jim kramer talking with a cnbc host about europe and concerns about deflation", "video_id": "video12462", "sen_id": 235561}, {"caption": "two reporters speaking on cnbc", "video_id": "video12462", "sen_id": 235562}, {"caption": "a man wearing a yellow tie is talking about business", "video_id": "video12462", "sen_id": 235563}, {"caption": "jim kramer in a suit talking about europe and deflation", "video_id": "video12462", "sen_id": 235564}, {"caption": "two news readers discuss seriously in the live news show", "video_id": "video12462", "sen_id": 235565}, {"caption": "two persons in the news channel discuss about the news updates", "video_id": "video12462", "sen_id": 235566}, {"caption": "a bald man and another man are talking in the cnbc channel", "video_id": "video12462", "sen_id": 235567}, {"caption": "two people are having conversation for the cnbc television", "video_id": "video12462", "sen_id": 235568}, {"caption": "they are discussing in cnbc channel and they have laptops", "video_id": "video12462", "sen_id": 235569}, {"caption": "two men in suit are talking inside tv news studio", "video_id": "video12462", "sen_id": 235570}, {"caption": "an authorized television chiefs make a discussion about an issue is seriously", "video_id": "video12462", "sen_id": 235571}, {"caption": "two news reporters discussing about european combat story", "video_id": "video12462", "sen_id": 235572}, {"caption": "an angry sounding man speaks about someone fleeing europe to another broadcaster on a cnbc news broadcast", "video_id": "video12462", "sen_id": 235573}, {"caption": "the newscaster with the yellow tie talks to the newscaster with the purple tie", "video_id": "video12462", "sen_id": 235574}, {"caption": "two men talk passionately about current economic issues", "video_id": "video12462", "sen_id": 235575}, {"caption": "two news report market analysts discuss the potential for currency deflation", "video_id": "video12462", "sen_id": 235576}, {"caption": "two person in coat talks by sitting in front of laptop", "video_id": "video12462", "sen_id": 235577}, {"caption": "the newsreaders are well dressed and are in black suits only their tie is different", "video_id": "video12462", "sen_id": 235578}, {"caption": "a bald man is talking to someone on tv", "video_id": "video12462", "sen_id": 235579}, {"caption": "a man walks a monkey on a leash while the individual provides commentary", "video_id": "video10640", "sen_id": 235580}, {"caption": "a man is walking down a street with a monkey on a leash", "video_id": "video10640", "sen_id": 235581}, {"caption": "a man leads a large monkey that is walking on all fours on a leash with one hand and holds a stick in the other hand as the man changes direction on a road between parked cars and a white wall", "video_id": "video10640", "sen_id": 235582}, {"caption": "a person is walking his pet monkey while someone is filming him from a vehicle", "video_id": "video10640", "sen_id": 235583}, {"caption": "hidden camera showing a man with a monkey on a leash", "video_id": "video10640", "sen_id": 235584}, {"caption": "a man walks a money on a leash while being videotaped", "video_id": "video10640", "sen_id": 235585}, {"caption": "a man walking with a monkey which is tied with tag", "video_id": "video10640", "sen_id": 235586}, {"caption": "a man with his dog going walking together on road side", "video_id": "video10640", "sen_id": 235587}, {"caption": "a man with his monkey walking on the road", "video_id": "video10640", "sen_id": 235588}, {"caption": "a person is taking a brown colour monkey for a walk", "video_id": "video10640", "sen_id": 235589}, {"caption": "a man is walking on street with a leashed monkey", "video_id": "video10640", "sen_id": 235590}, {"caption": "a large monkey with short fur and long curled tail walks on all fours while attached to a leash held by his guardian along a street with parked cars", "video_id": "video10640", "sen_id": 235591}, {"caption": "a man and monkey go to out and cross the road", "video_id": "video10640", "sen_id": 235592}, {"caption": "a man walks a tied monkey on to the road", "video_id": "video10640", "sen_id": 235593}, {"caption": "a person with taking a brown colour monkey for a walking", "video_id": "video10640", "sen_id": 235594}, {"caption": "there is a monkey walking with a man", "video_id": "video10640", "sen_id": 235595}, {"caption": "a man walks down the street with his pet monkey on a leash", "video_id": "video10640", "sen_id": 235596}, {"caption": "a man holds a monkey which is so bighe hold is by using the rope", "video_id": "video10640", "sen_id": 235597}, {"caption": "a monkey and a man walking beside tied with rope displaying on screen", "video_id": "video10640", "sen_id": 235598}, {"caption": "a man has tied up a monkey with a belt is walking on street", "video_id": "video10640", "sen_id": 235599}, {"caption": "a caucasian man wearing blue clothing describing how to drive a vehicle with a stick shift transmission", "video_id": "video11842", "sen_id": 235600}, {"caption": "a man describes and demonstrates a gear shift in an automobile", "video_id": "video11842", "sen_id": 235601}, {"caption": "a person is shifting the gear shifter of a car with a manual transmission", "video_id": "video11842", "sen_id": 235602}, {"caption": "a man in a blue shirt and black pants shifts a gear shift in a car", "video_id": "video11842", "sen_id": 235603}, {"caption": "a voiceover and a man's hand demonstrate how to shift gears in an automobile", "video_id": "video11842", "sen_id": 235604}, {"caption": "someone sitting in a car moving the gear stick around", "video_id": "video11842", "sen_id": 235605}, {"caption": "a man in dark blue overall uniform showing how to drive", "video_id": "video11842", "sen_id": 235606}, {"caption": "a man giving the driving instructions in the vehicle", "video_id": "video11842", "sen_id": 235607}, {"caption": "a man inside of a car explains how he changes gears after his speeds increases", "video_id": "video11842", "sen_id": 235608}, {"caption": "the man in blue dress is showing here the working of car and its mechanism to others", "video_id": "video11842", "sen_id": 235609}, {"caption": "a person driving a car by changing the gear", "video_id": "video11842", "sen_id": 235610}, {"caption": "a guy wearing a black dress is giving instructions as to how to shift the gears", "video_id": "video11842", "sen_id": 235611}, {"caption": "the dashboard of a car with coffee cup in holder as a person shifts the car into gear", "video_id": "video11842", "sen_id": 235612}, {"caption": "a man is instructing how to use manual while driving", "video_id": "video11842", "sen_id": 235613}, {"caption": "a man explains how to drive a manual transmission car", "video_id": "video11842", "sen_id": 235614}, {"caption": "there is a man explains about car driving", "video_id": "video11842", "sen_id": 235615}, {"caption": "a man showing how to opperate a car gear", "video_id": "video11842", "sen_id": 235616}, {"caption": "a man is sitting in the car and explain about driving", "video_id": "video11842", "sen_id": 235617}, {"caption": "a person changes gears inside a car being reviewed", "video_id": "video11842", "sen_id": 235618}, {"caption": "a man in a car is showing how it works", "video_id": "video11842", "sen_id": 235619}, {"caption": "arab women in head coverings describing computer science", "video_id": "video10995", "sen_id": 235620}, {"caption": "many people are telling us about what computer science is", "video_id": "video10995", "sen_id": 235621}, {"caption": "arab women in head wraps describing the function of computer sciences", "video_id": "video10995", "sen_id": 235622}, {"caption": "a man and a woman in a berka talk about computer science", "video_id": "video10995", "sen_id": 235623}, {"caption": "women in headscarfs talk about computer science while classrooms are shown", "video_id": "video10995", "sen_id": 235624}, {"caption": "woman in hijab talking about technology and computer science", "video_id": "video10995", "sen_id": 235625}, {"caption": "a woman in a head scarf and a man in a robe talking about computer science", "video_id": "video10995", "sen_id": 235626}, {"caption": "women wearing scarves and a man wearing a robe talk about education", "video_id": "video10995", "sen_id": 235627}, {"caption": "students in traditional muslim clothing discuss computer science", "video_id": "video10995", "sen_id": 235628}, {"caption": "i women in a printed scarf head wrap talks to a man", "video_id": "video10995", "sen_id": 235629}, {"caption": "technology school presentation made by muslim students wearing religious apparels", "video_id": "video10995", "sen_id": 235630}, {"caption": "there is a woman with covered hair talking about education", "video_id": "video10995", "sen_id": 235631}, {"caption": "a man writing letters on the board and explain it", "video_id": "video10995", "sen_id": 235632}, {"caption": "one beautiful and lovely women talks about computer", "video_id": "video10995", "sen_id": 235633}, {"caption": "two woman and a man talk about what computer science is and is not", "video_id": "video10995", "sen_id": 235634}, {"caption": "a man with a beard is talking", "video_id": "video10995", "sen_id": 235635}, {"caption": "a group of people learning in a classroom at a school", "video_id": "video10995", "sen_id": 235636}, {"caption": "a lady coverd full of dree is talking", "video_id": "video10995", "sen_id": 235637}, {"caption": "some people are asking questions in a computor class", "video_id": "video10995", "sen_id": 235638}, {"caption": "muslim people covering their heads talk about education in between clips of classrooms", "video_id": "video10995", "sen_id": 235639}, {"caption": "a runway model is showing off the latest fashion trends", "video_id": "video12958", "sen_id": 235640}, {"caption": "a person with a white gown is walking down a long runway", "video_id": "video12958", "sen_id": 235641}, {"caption": "a woman in a fashionable dress walks on a long indoor runway", "video_id": "video12958", "sen_id": 235642}, {"caption": "a young woman in a fashionable gown walks down a long runway", "video_id": "video12958", "sen_id": 235643}, {"caption": "music is playing while an elegant model is walking down the runway", "video_id": "video12958", "sen_id": 235644}, {"caption": "a lady is walking down the lane for as a model", "video_id": "video12958", "sen_id": 235645}, {"caption": "a model in a long flowing white dress walks down a runway in front of an audience", "video_id": "video12958", "sen_id": 235646}, {"caption": "the lady with a long brown dress is modelling", "video_id": "video12958", "sen_id": 235647}, {"caption": "a lady model walking on the stage in fashion shoe", "video_id": "video12958", "sen_id": 235648}, {"caption": "models walk the runway at a large fashion show", "video_id": "video12958", "sen_id": 235649}, {"caption": "a model in a long pink dress is walking down the runway of a fashion show", "video_id": "video12958", "sen_id": 235650}, {"caption": "a model in a long dress is walking down a cat walk", "video_id": "video12958", "sen_id": 235651}, {"caption": "a lady walking forward in a huge stage", "video_id": "video12958", "sen_id": 235652}, {"caption": "a girl is walking in the fashion show", "video_id": "video12958", "sen_id": 235653}, {"caption": "model alberta ferretti in the spring and summer of 2015 walking the runway at a fashion show", "video_id": "video12958", "sen_id": 235654}, {"caption": "fashion models are walking gently in a fashion show", "video_id": "video12958", "sen_id": 235655}, {"caption": "girl with excellent fashion walking on the ramp between the spectators", "video_id": "video12958", "sen_id": 235656}, {"caption": "a springsummer fashion show in 2015 wear a woman is walking down a long white run way in a dress", "video_id": "video12958", "sen_id": 235657}, {"caption": "a girls are cat walk in the fashion show", "video_id": "video12958", "sen_id": 235658}, {"caption": "a model walks down a long run way", "video_id": "video12958", "sen_id": 235659}, {"caption": "a man is discussing the problems with trying to draw the prophet", "video_id": "video10317", "sen_id": 235660}, {"caption": "a man in a suit with a blue shirt and pocket square talks about racist drawings", "video_id": "video10317", "sen_id": 235661}, {"caption": "a man wearing glasses talking about freedom of speech", "video_id": "video10317", "sen_id": 235662}, {"caption": "a man with a beard and a pocket square talks about religion", "video_id": "video10317", "sen_id": 235663}, {"caption": "a man with glasses is discussing racist drawings of the prophet muhamed", "video_id": "video10317", "sen_id": 235664}, {"caption": "an expert on speech and race participates in a news show", "video_id": "video10317", "sen_id": 235665}, {"caption": "there is a black suit man talking seriously from a studio", "video_id": "video10317", "sen_id": 235666}, {"caption": "a man with glasses and a professional outfit speaks on news about freedom of speech", "video_id": "video10317", "sen_id": 235667}, {"caption": "sky news the sky debate muslim public affairs committee", "video_id": "video10317", "sen_id": 235668}, {"caption": "a man with a black suit and wearing glasses sits and talks", "video_id": "video10317", "sen_id": 235669}, {"caption": "a young man in black suit is debating on the issue whether freedom of speech is more important than religion", "video_id": "video10317", "sen_id": 235670}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10317", "sen_id": 235671}, {"caption": "this type of interview is avoided to news channels", "video_id": "video10317", "sen_id": 235672}, {"caption": "a wishy washy man stumbles through a description of racism", "video_id": "video10317", "sen_id": 235673}, {"caption": "a man with a beard and glasses talks about depictions of islam across europe", "video_id": "video10317", "sen_id": 235674}, {"caption": "a news clip over freedom of speech and religion", "video_id": "video10317", "sen_id": 235675}, {"caption": "a bearded person wearing spectacles talking on a present political matter", "video_id": "video10317", "sen_id": 235676}, {"caption": "is freedom of speech more important than religion", "video_id": "video10317", "sen_id": 235677}, {"caption": "its the sky debate in which the person with the matured face talks he has the specs in his eyes", "video_id": "video10317", "sen_id": 235678}, {"caption": "a man in suit with spects and moustache is talking something", "video_id": "video10317", "sen_id": 235679}, {"caption": "clips of waterfalls and water flowing very hard with people observing it", "video_id": "video12135", "sen_id": 235680}, {"caption": "the waves of a large body of water are flowing as onlookers look on", "video_id": "video12135", "sen_id": 235681}, {"caption": "rapid moving water moves while people board a small yellow boat", "video_id": "video12135", "sen_id": 235682}, {"caption": "water is pouring down the side of a river and people are near it on a bridge", "video_id": "video12135", "sen_id": 235683}, {"caption": "a woman describes travelling on a rushing river", "video_id": "video12135", "sen_id": 235684}, {"caption": "man in blue shirt looking at a yellow boat on rushing water", "video_id": "video12135", "sen_id": 235685}, {"caption": "woman explains how she climed the stairs and was higher and higher while image on the screen shows what appears to be a waterfall and several people watching it", "video_id": "video12135", "sen_id": 235686}, {"caption": "a large body of water rushing up against the shore line", "video_id": "video12135", "sen_id": 235687}, {"caption": "a boat with people on it is in a bay with rough water", "video_id": "video12135", "sen_id": 235688}, {"caption": "the wind blowing ruff water waves as people enter a water vessel", "video_id": "video12135", "sen_id": 235689}, {"caption": "water flowing very forcibly and watched by many people", "video_id": "video12135", "sen_id": 235690}, {"caption": "a video about the water and its beauty", "video_id": "video12135", "sen_id": 235691}, {"caption": "a man travelling on the sea and talking about it", "video_id": "video12135", "sen_id": 235692}, {"caption": "a view of a beautiful river and people looking from a boat", "video_id": "video12135", "sen_id": 235693}, {"caption": "the rushing water moved swiftly past the boat and dock towards the shore", "video_id": "video12135", "sen_id": 235694}, {"caption": "on a river tourists are loading onto a yellow boat", "video_id": "video12135", "sen_id": 235695}, {"caption": "the people get on the yellow boat near the wavy water", "video_id": "video12135", "sen_id": 235696}, {"caption": "water runs downpeople get into yellow shiptress are around the shore", "video_id": "video12135", "sen_id": 235697}, {"caption": "powerful blue waters churn the lake on a sunny afternoon", "video_id": "video12135", "sen_id": 235698}, {"caption": "someone is floating around on a river", "video_id": "video12135", "sen_id": 235699}, {"caption": "two men putting a computer together in their kitchen", "video_id": "video10054", "sen_id": 235700}, {"caption": "a man is taking apart parts of a computer in the kitchen", "video_id": "video10054", "sen_id": 235701}, {"caption": "there are two young men putting a computer together", "video_id": "video10054", "sen_id": 235702}, {"caption": "two men trying to figure out how to use a piece of equipment", "video_id": "video10054", "sen_id": 235703}, {"caption": "a guy that is building his own pc using a small case", "video_id": "video10054", "sen_id": 235704}, {"caption": "a man in a purple shirt builds a black box", "video_id": "video10054", "sen_id": 235705}, {"caption": "a man in a purple shirt and a man in a white shirt are working on electronics", "video_id": "video10054", "sen_id": 235706}, {"caption": "two young men are working together trying to find the best way to assemble an object", "video_id": "video10054", "sen_id": 235707}, {"caption": "a man blue dressed trying to assemble a system", "video_id": "video10054", "sen_id": 235708}, {"caption": "two men struggle to fit high end computer hardware into a black steel chassis during the assembly process of a computer build", "video_id": "video10054", "sen_id": 235709}, {"caption": "two men are attempting to put together an electronic device", "video_id": "video10054", "sen_id": 235710}, {"caption": "the two persons doing mechanic with a product", "video_id": "video10054", "sen_id": 235711}, {"caption": "a violet tshirt man repairing a product with a friend", "video_id": "video10054", "sen_id": 235712}, {"caption": "a man wearing purple color dress is talking another man", "video_id": "video10054", "sen_id": 235713}, {"caption": "two guys work together to assemble an item", "video_id": "video10054", "sen_id": 235714}, {"caption": "a tech tips man is giving tech tips", "video_id": "video10054", "sen_id": 235715}, {"caption": "there is a blue tshirt man fixing a product", "video_id": "video10054", "sen_id": 235716}, {"caption": "two men s arranging some components and placing that on the table", "video_id": "video10054", "sen_id": 235717}, {"caption": "two men work together to install some electronic components", "video_id": "video10054", "sen_id": 235718}, {"caption": "two men in a kitchen are trying to put together some sort of electronic device", "video_id": "video10054", "sen_id": 235719}, {"caption": "two little girls with blonde hair are wearing makeup and talking", "video_id": "video11785", "sen_id": 235720}, {"caption": "two young girls describe and demonstrate face painting techniques", "video_id": "video11785", "sen_id": 235721}, {"caption": "two blonde girls with make up all over their faces say goodbye", "video_id": "video11785", "sen_id": 235722}, {"caption": "two pre teen girls in face paint discussing a catch phrase", "video_id": "video11785", "sen_id": 235723}, {"caption": "two girls finish up their video and encourage their viewers to watch a friend's video", "video_id": "video11785", "sen_id": 235724}, {"caption": "two blond face painted teenagers are talking happily and one of them leaves the scene", "video_id": "video11785", "sen_id": 235725}, {"caption": "two young girls being silly with crazy makeup", "video_id": "video11785", "sen_id": 235726}, {"caption": "young girls with marks ontheir faces are talking", "video_id": "video11785", "sen_id": 235727}, {"caption": "a girl removes her headband in front of her friend and they reveal their faces covered with black and deep-pink marks", "video_id": "video11785", "sen_id": 235728}, {"caption": "a girl plays with her hair and dances around her room", "video_id": "video11785", "sen_id": 235729}, {"caption": "two girls having weird make up on their faces", "video_id": "video11785", "sen_id": 235730}, {"caption": "two small girls in fancy make up are talking about their roles", "video_id": "video11785", "sen_id": 235731}, {"caption": "two young girls talking to each other while their faces have silly makeup on them", "video_id": "video11785", "sen_id": 235732}, {"caption": "two long hair blonde toddlers with face paint making faces and hand signals", "video_id": "video11785", "sen_id": 235733}, {"caption": "two blonde girls with drawings on their face talking to the camera", "video_id": "video11785", "sen_id": 235734}, {"caption": "two girls are talking together with makeup on their faces", "video_id": "video11785", "sen_id": 235735}, {"caption": "the two girls in pink and white t-shirt are talking", "video_id": "video11785", "sen_id": 235736}, {"caption": "two girls are talking about catch phrases and are wearing makeup", "video_id": "video11785", "sen_id": 235737}, {"caption": "two blonde ladies are having great time together", "video_id": "video11785", "sen_id": 235738}, {"caption": "a girl is gesticulating on camera for amusement", "video_id": "video11785", "sen_id": 235739}, {"caption": "a movie title and its credits follows scenes of cars traveling on a dirt road a knife blade being exposed and men fighting", "video_id": "video11623", "sen_id": 235740}, {"caption": "several men fight as a fleet of cars drives through the desert", "video_id": "video11623", "sen_id": 235741}, {"caption": "some trucks going down the road and men staring at each other", "video_id": "video11623", "sen_id": 235742}, {"caption": "a scene from an upcoming movie with tom hanks called captain phillips", "video_id": "video11623", "sen_id": 235743}, {"caption": "in a trailer for the film captain phillips there's a car chase and scene of violence then the credits", "video_id": "video11623", "sen_id": 235744}, {"caption": "a few cars are driving on a dirt road", "video_id": "video11623", "sen_id": 235745}, {"caption": "a man has a flashlight attached to his head then the light goes out", "video_id": "video11623", "sen_id": 235746}, {"caption": "some pirates hijacked the ship in knife point and the officials trying to contact the captain", "video_id": "video11623", "sen_id": 235747}, {"caption": "a movie trailer shows several all-terrain vehicles navigating a hill several menacing men someone preparing a knife for combat", "video_id": "video11623", "sen_id": 235748}, {"caption": "a video movie scene cars moving fighting knife poking displaying on screen", "video_id": "video11623", "sen_id": 235749}, {"caption": "breaded guy with shirt attacking other guy with knife in the movie", "video_id": "video11623", "sen_id": 235750}, {"caption": "there are many people fighting in the dark room", "video_id": "video11623", "sen_id": 235751}, {"caption": "an advertisement of a few scenes from the captain phillips movie", "video_id": "video11623", "sen_id": 235752}, {"caption": "a group of white suv s drive over sand dunes near a coastline", "video_id": "video11623", "sen_id": 235753}, {"caption": "vehicles are traveling down a dirt road and navy persons in yellows shirts are tussling with each other", "video_id": "video11623", "sen_id": 235754}, {"caption": "dome cars are driving around in the desert", "video_id": "video11623", "sen_id": 235755}, {"caption": "a convoy of vehicles containing tense well armed men are traveling through desert terrain", "video_id": "video11623", "sen_id": 235756}, {"caption": "movie trailer for captain phillips with scenes of pirates taking over his ship", "video_id": "video11623", "sen_id": 235757}, {"caption": "goes from car chase to hostage negotiation to black screen with words being narrated", "video_id": "video11623", "sen_id": 235758}, {"caption": "some men are fighting each other in a film", "video_id": "video11623", "sen_id": 235759}, {"caption": "a man is holding a camera explaining a scene where the police will investigate", "video_id": "video10542", "sen_id": 235760}, {"caption": "a man in a blue shirt and white hat walks through a home", "video_id": "video10542", "sen_id": 235761}, {"caption": "a man in a blue short-sleeved shirt and white backwards cap walking through a house then outside", "video_id": "video10542", "sen_id": 235762}, {"caption": "the man in the blue shirt is walking through the house talking about the police being called", "video_id": "video10542", "sen_id": 235763}, {"caption": "a man walks and talks to the camera in his hand as he leaves a home", "video_id": "video10542", "sen_id": 235764}, {"caption": "a young man in a white hat films himself walking through a house", "video_id": "video10542", "sen_id": 235765}, {"caption": "the man is talking about the room renovation as he films himself", "video_id": "video10542", "sen_id": 235766}, {"caption": "a man in a blue shirt and a backwards hat is walking though a house and talking", "video_id": "video10542", "sen_id": 235767}, {"caption": "a man in a blue shirt wearing a white backwards cap is talking about how the police are on their way", "video_id": "video10542", "sen_id": 235768}, {"caption": "a person with blue t-shirt is recording a video", "video_id": "video10542", "sen_id": 235769}, {"caption": "a man in blue t-shirt talking out the room", "video_id": "video10542", "sen_id": 235770}, {"caption": "a man blue color dressed talking", "video_id": "video10542", "sen_id": 235771}, {"caption": "a man in blue shirt is speaking in the scene", "video_id": "video10542", "sen_id": 235772}, {"caption": "a man in a blue shirt and white hat walking outside", "video_id": "video10542", "sen_id": 235773}, {"caption": "a person walk in side the home and close the door", "video_id": "video10542", "sen_id": 235774}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10542", "sen_id": 235775}, {"caption": "a man is wearing a white cap backwards over a blue polo shirt as he walks through a white house and out the front door into sunlight", "video_id": "video10542", "sen_id": 235776}, {"caption": "a man walking through his house is talking about the police being on the way to his house", "video_id": "video10542", "sen_id": 235777}, {"caption": "a man in a white hat is walking through a house", "video_id": "video10542", "sen_id": 235778}, {"caption": "a guy in a hat is walking around", "video_id": "video10542", "sen_id": 235779}, {"caption": "a women in a red shirt describing how vaping is changing", "video_id": "video12867", "sen_id": 235780}, {"caption": "a woman newscaster talking about vaping and it's effects", "video_id": "video12867", "sen_id": 235781}, {"caption": "a news reporter discusses the increase in vaping", "video_id": "video12867", "sen_id": 235782}, {"caption": "a woman in a red top inside a newsroom is telling a news story about vaping while the story title is shown on the screen", "video_id": "video12867", "sen_id": 235783}, {"caption": "a woman in a red shirt broadcasting news about vaping", "video_id": "video12867", "sen_id": 235784}, {"caption": "a news anchor in front of a blue background talking about the vaping industry", "video_id": "video12867", "sen_id": 235785}, {"caption": "a woman is describing the increase in the vaping industry", "video_id": "video12867", "sen_id": 235786}, {"caption": "a woman in a red shirt with read hair is reporting the news", "video_id": "video12867", "sen_id": 235787}, {"caption": "a woman in red is giving the news about vaping industry boom", "video_id": "video12867", "sen_id": 235788}, {"caption": "a newscaster talks about vaping in the year 2014 and how it affects smokers trying to quit", "video_id": "video12867", "sen_id": 235789}, {"caption": "a woman is reading a news in the television", "video_id": "video12867", "sen_id": 235790}, {"caption": "a girl in red color dress wearing cloth sitting and speaking explaning about topic displaying on screen", "video_id": "video12867", "sen_id": 235791}, {"caption": "a news reporter is discussing a recent smoking trend", "video_id": "video12867", "sen_id": 235792}, {"caption": "a woman on a news show is sitting and talking about the vaping indusrty", "video_id": "video12867", "sen_id": 235793}, {"caption": "lady in red dress provides us news or information about country", "video_id": "video12867", "sen_id": 235794}, {"caption": "there is a red dress women talking from a studio", "video_id": "video12867", "sen_id": 235795}, {"caption": "women in red boatneck shirt discusses vaping and its increase in popularity", "video_id": "video12867", "sen_id": 235796}, {"caption": "the woman wearing the red dress sits at a desk and talks", "video_id": "video12867", "sen_id": 235797}, {"caption": "a lady sits in the news room reporting the news", "video_id": "video12867", "sen_id": 235798}, {"caption": "a women is talking about some vaping industry boom and the women is reading news about the vaping industry", "video_id": "video12867", "sen_id": 235799}, {"caption": "a man explaining the functions of an odometer and tachometer", "video_id": "video11054", "sen_id": 235800}, {"caption": "a guy that is telling people about the gauges in a car", "video_id": "video11054", "sen_id": 235801}, {"caption": "a man in a white hat explains different guages on a car dashboard", "video_id": "video11054", "sen_id": 235802}, {"caption": "a man in white is speaking about a speedometer and tachometer while pictures of each are shown individually", "video_id": "video11054", "sen_id": 235803}, {"caption": "a man in a white shirt and white hat is explaining functions of a dashboard cluster", "video_id": "video11054", "sen_id": 235804}, {"caption": "there is a man talking about a tachometer", "video_id": "video11054", "sen_id": 235805}, {"caption": "there is a man in white clothing and wearing white cap is talking with speedometer and tachometer", "video_id": "video11054", "sen_id": 235806}, {"caption": "a man is explaining the different gauges on a cars dashboard", "video_id": "video11054", "sen_id": 235807}, {"caption": "man is talking about the speedometer and tachometer", "video_id": "video11054", "sen_id": 235808}, {"caption": "a person in white color dress wearing cloth sitting and speaking about speed meter miles per hour displaying on screen", "video_id": "video11054", "sen_id": 235809}, {"caption": "a man in a white shirt talk about the different meters on a car s dashboard", "video_id": "video11054", "sen_id": 235810}, {"caption": "discussion of the difference between the speedometer and the tachometer", "video_id": "video11054", "sen_id": 235811}, {"caption": "a man sitting down and talking about tachometer and speedometer", "video_id": "video11054", "sen_id": 235812}, {"caption": "a man in a white shirt and white cap discusses car gauges", "video_id": "video11054", "sen_id": 235813}, {"caption": "a person is saying about speedometer and tachometer and explaing about the speedometer who acts on the bais of speed", "video_id": "video11054", "sen_id": 235814}, {"caption": "a man is talking about parts of a car", "video_id": "video11054", "sen_id": 235815}, {"caption": "man speaking in an informational video about the workings of automobile dash meters", "video_id": "video11054", "sen_id": 235816}, {"caption": "a man in a white baseball cap and white collared shirt describes the speedometer and the tachometer", "video_id": "video11054", "sen_id": 235817}, {"caption": "a man describes the functions of a speedometer and a tachometer", "video_id": "video11054", "sen_id": 235818}, {"caption": "a person with white shirt and hat explains the difference between the speedometer and tachometer", "video_id": "video11054", "sen_id": 235819}, {"caption": "a news team is showing the different cultured views it has reported on", "video_id": "video11051", "sen_id": 235820}, {"caption": "two women are standing in front of cameras while surrounded by children", "video_id": "video11051", "sen_id": 235821}, {"caption": "cameramen record different people around the world for the news", "video_id": "video11051", "sen_id": 235822}, {"caption": "news reporters work in various locations reporting in other countries", "video_id": "video11051", "sen_id": 235823}, {"caption": "the opening of a news show shows reporters in different situations", "video_id": "video11051", "sen_id": 235824}, {"caption": "a news crew is filming in several different locations", "video_id": "video11051", "sen_id": 235825}, {"caption": "a female news reporter does her report in the middle of a large group of children", "video_id": "video11051", "sen_id": 235826}, {"caption": "a old man wearing a cap and a shawl talking to the people", "video_id": "video11051", "sen_id": 235827}, {"caption": "some shoots are going theregroup of peoples are there", "video_id": "video11051", "sen_id": 235828}, {"caption": "a dish tajmahal is shown the lady talks to the poor people", "video_id": "video11051", "sen_id": 235829}, {"caption": "a woman is interviewing groups of people in villages while a camera is counting down", "video_id": "video11051", "sen_id": 235830}, {"caption": "some one taking a video shoot in a public gathering place", "video_id": "video11051", "sen_id": 235831}, {"caption": "the channel reporters are getting ready to report events from locations", "video_id": "video11051", "sen_id": 235832}, {"caption": "the launching of a new rocket secssion and revealing the diffrent countries culture", "video_id": "video11051", "sen_id": 235833}, {"caption": "a dish of antenna tajmahal photo and girl standing watching camera peoples around still image", "video_id": "video11051", "sen_id": 235834}, {"caption": "there is a good looking women talking from the street", "video_id": "video11051", "sen_id": 235835}, {"caption": "a man and woman are infront of camera", "video_id": "video11051", "sen_id": 235836}, {"caption": "count down peoples are watching the shooting", "video_id": "video11051", "sen_id": 235837}, {"caption": "different events from different countries are covered by this newschannel", "video_id": "video11051", "sen_id": 235838}, {"caption": "a red line is flying around out side", "video_id": "video11051", "sen_id": 235839}, {"caption": "a list of winners in a jack russel hurdle race", "video_id": "video12364", "sen_id": 235840}, {"caption": "a screenshot of the rankings of jack russell hurdle racing with 6 names and a purple background", "video_id": "video12364", "sen_id": 235841}, {"caption": "a list of six dogs for jack russel hurdle racing", "video_id": "video12364", "sen_id": 235842}, {"caption": "isabelle is in the lead in the jack russell hurdle racing", "video_id": "video12364", "sen_id": 235843}, {"caption": "a list of six dogs are provided for a jack russell racing contest", "video_id": "video12364", "sen_id": 235844}, {"caption": "a list of dogs in the jack russell hurdle race", "video_id": "video12364", "sen_id": 235845}, {"caption": "a commentator talking about the standings on jack russel hurdle racing", "video_id": "video12364", "sen_id": 235846}, {"caption": "the video shows the order of winners in a hurdle race", "video_id": "video12364", "sen_id": 235847}, {"caption": "an outdoor sport setup and a chart of contestants", "video_id": "video12364", "sen_id": 235848}, {"caption": "a commentator is talking about heartbreaker beasly and drauco while a list of names in on screen about jack russell hurdle racing", "video_id": "video12364", "sen_id": 235849}, {"caption": "a list of names and they are labeled one through 6 in front of a purple screen", "video_id": "video12364", "sen_id": 235850}, {"caption": "a list of names related to hurdle racing with purple background", "video_id": "video12364", "sen_id": 235851}, {"caption": "a list of six names which are labeled one through six", "video_id": "video12364", "sen_id": 235852}, {"caption": "an image listing the racers from jack russell hurdle racing", "video_id": "video12364", "sen_id": 235853}, {"caption": "names are on a list and labeled numbers one through six in front of a purple screen", "video_id": "video12364", "sen_id": 235854}, {"caption": "a person is running around a field with shorts on", "video_id": "video12364", "sen_id": 235855}, {"caption": "a list of how well people did in a hurdle race", "video_id": "video12364", "sen_id": 235856}, {"caption": "its jack hurdle racing isable", "video_id": "video12364", "sen_id": 235857}, {"caption": "a black square with six names in white", "video_id": "video12364", "sen_id": 235858}, {"caption": "a list of names is on a score board inside", "video_id": "video12364", "sen_id": 235859}, {"caption": "a man wearing a suit is talking to a conference room", "video_id": "video10195", "sen_id": 235860}, {"caption": "men and women are at a meeting table discussing important business", "video_id": "video10195", "sen_id": 235861}, {"caption": "a man in black coat is explaining something", "video_id": "video10195", "sen_id": 235862}, {"caption": "a group of military people speak around a large table", "video_id": "video10195", "sen_id": 235863}, {"caption": "there is group meeting conducting in a company", "video_id": "video10195", "sen_id": 235864}, {"caption": "a man with gray hair sits at the head of a table and talks to the other people seated at the table", "video_id": "video10195", "sen_id": 235865}, {"caption": "bearded black guy talking to the board members", "video_id": "video10195", "sen_id": 235866}, {"caption": "there is a suit man talking to co-workers", "video_id": "video10195", "sen_id": 235867}, {"caption": "a gray-haired man wearing a dark suit sits at the head of a conference table with military and civilians", "video_id": "video10195", "sen_id": 235868}, {"caption": "a gray haired man wearing a suit sits at a table speaking to others sitting", "video_id": "video10195", "sen_id": 235869}, {"caption": "old black guy talking to the board of people", "video_id": "video10195", "sen_id": 235870}, {"caption": "a men is discussing with a group of people", "video_id": "video10195", "sen_id": 235871}, {"caption": "a black man is talking and giving orders to people sitting at a conference table", "video_id": "video10195", "sen_id": 235872}, {"caption": "an old african man talks to a table full of people in a dark room", "video_id": "video10195", "sen_id": 235873}, {"caption": "many people are on the table and having conversation", "video_id": "video10195", "sen_id": 235874}, {"caption": "in the conference hall many persons with coat siting on the table and discussing", "video_id": "video10195", "sen_id": 235875}, {"caption": "com in a movie old man telling something", "video_id": "video10195", "sen_id": 235876}, {"caption": "a danny glover is haveing a official meet with their official in the conference room", "video_id": "video10195", "sen_id": 235877}, {"caption": "an old man sitting and speaking beside many peoples sitting around on the table", "video_id": "video10195", "sen_id": 235878}, {"caption": "a scene from a movie shows a table of people", "video_id": "video10195", "sen_id": 235879}, {"caption": "a man wearing reflective ski goggles kneels behind a boy wearing a knit cap on a snowy slope the man waits for a response from the boy but does not get one", "video_id": "video11713", "sen_id": 235880}, {"caption": "a little boy and his dad talk about the boy's first ski run", "video_id": "video11713", "sen_id": 235881}, {"caption": "a man is holding his young son who is too young to talk", "video_id": "video11713", "sen_id": 235882}, {"caption": "a man records himself and a little boy after making the boys first run down a ski hill", "video_id": "video11713", "sen_id": 235883}, {"caption": "guy holding a kid and doing skating on snow", "video_id": "video11713", "sen_id": 235884}, {"caption": "a little boy skis for the first time and his father talks to him about it", "video_id": "video11713", "sen_id": 235885}, {"caption": "a child in a green coat and a hat with a man in a black coat and sunglasses outside during the winter skiing in snow", "video_id": "video11713", "sen_id": 235886}, {"caption": "there is a man playing with his son", "video_id": "video11713", "sen_id": 235887}, {"caption": "a little baby is green color dressed laughing", "video_id": "video11713", "sen_id": 235888}, {"caption": "a man and a child in the snow talk about skiiing", "video_id": "video11713", "sen_id": 235889}, {"caption": "a man wearing large sunglasses and his son talk about the fun they had snowboarding", "video_id": "video11713", "sen_id": 235890}, {"caption": "a baby in a green jacket is being held", "video_id": "video11713", "sen_id": 235891}, {"caption": "there is a man riding with his boy with green jacket", "video_id": "video11713", "sen_id": 235892}, {"caption": "a dad and son ready for a skating on the snow mountain", "video_id": "video11713", "sen_id": 235893}, {"caption": "a man and a child wearing winter coats are on skis together", "video_id": "video11713", "sen_id": 235894}, {"caption": "a father is talking to his son about the little boy s first experience skiing down a hill just as they are about to do it a second time", "video_id": "video11713", "sen_id": 235895}, {"caption": "a father wearing snow goggles holds his son while standing on the slope of a snow covered hill", "video_id": "video11713", "sen_id": 235896}, {"caption": "a man asking a boy on his thoughts about having a good time sking", "video_id": "video11713", "sen_id": 235897}, {"caption": "a dad and his child go out for their first ski trip down the hill", "video_id": "video11713", "sen_id": 235898}, {"caption": "a kindergarten aged boy and his father are standing on a snowboard on the side of a snow covered hill while other skiers are skiing past them", "video_id": "video11713", "sen_id": 235899}, {"caption": "a person lifts a gray brick from a swimming-pool vent and exposes a black reptile inside which causes a young woman to protest and scream", "video_id": "video11590", "sen_id": 235900}, {"caption": "a person taking out a brick out of the manhole and there is a creature inside and a girl shouts on seeing the creature", "video_id": "video11590", "sen_id": 235901}, {"caption": "two people by a pool investigate an alligator in their filter system", "video_id": "video11590", "sen_id": 235902}, {"caption": "a girl putting things into a pool filter to see where they will end up", "video_id": "video11590", "sen_id": 235903}, {"caption": "a girl astonished when a snake found in exit tank near a pool", "video_id": "video11590", "sen_id": 235904}, {"caption": "man is taking something out from ground hole while a girl smiles", "video_id": "video11590", "sen_id": 235905}, {"caption": "the human beings are escapeing some ones in the septict tank", "video_id": "video11590", "sen_id": 235906}, {"caption": "two people discuss an aligator that has gotten into their swimming pool drain", "video_id": "video11590", "sen_id": 235907}, {"caption": "a concrete slab is picked up and removed from an opening in the ground which was blocking off a living animal from escaping", "video_id": "video11590", "sen_id": 235908}, {"caption": "there is a terrifying animal in the pools filter trap", "video_id": "video11590", "sen_id": 235909}, {"caption": "a women had removed a piece of wood from a pipe and a snke is there in the little water", "video_id": "video11590", "sen_id": 235910}, {"caption": "a person lifts a flat brick out of an opening by a swimming pool revealing a squirming black snake which causes a woman to scream and laugh", "video_id": "video11590", "sen_id": 235911}, {"caption": "two young girls try to get a small aligator out of the pool drain at their house", "video_id": "video11590", "sen_id": 235912}, {"caption": "the woman in green tshirt screaming while their drainage is shown", "video_id": "video11590", "sen_id": 235913}, {"caption": "the man stood barefoot as he unveiled what was living in the drain", "video_id": "video11590", "sen_id": 235914}, {"caption": "a lady open the top of container which has animal in it", "video_id": "video11590", "sen_id": 235915}, {"caption": "a woman in blue t-shirt showing a fish in the poo hole", "video_id": "video11590", "sen_id": 235916}, {"caption": "a man removes a stone from a filter outside of a pool", "video_id": "video11590", "sen_id": 235917}, {"caption": "woman in tshirt looking at the drain pipe with object getting suck in it", "video_id": "video11590", "sen_id": 235918}, {"caption": "a man is outside taking something out of a hole", "video_id": "video11590", "sen_id": 235919}, {"caption": "two small children draw pictures at the kitchen counter in their home", "video_id": "video10024", "sen_id": 235920}, {"caption": "a little girl and boy are sitting at a table drawing pictures", "video_id": "video10024", "sen_id": 235921}, {"caption": "two children coloring at the table being told all there candy was gone", "video_id": "video10024", "sen_id": 235922}, {"caption": "a mother tells her children she ate their candy provoking a distraught reaction", "video_id": "video10024", "sen_id": 235923}, {"caption": "two children become upset when they are told someone has eaten their candy", "video_id": "video10024", "sen_id": 235924}, {"caption": "two small children sitting at the table and coloring", "video_id": "video10024", "sen_id": 235925}, {"caption": "a pair of kids react poorly to some news they get from their parents", "video_id": "video10024", "sen_id": 235926}, {"caption": "a cute little girl drawing on the paper and talking with her brother", "video_id": "video10024", "sen_id": 235927}, {"caption": "the children are expressing a sad expression after there candy was taken", "video_id": "video10024", "sen_id": 235928}, {"caption": "two children sitting at thr table listening to thier parent tell them that the candy has all been eaten", "video_id": "video10024", "sen_id": 235929}, {"caption": "this woman children are very upset that their parents ate all of their candy when they were asleep", "video_id": "video10024", "sen_id": 235930}, {"caption": "a mother plays a joke on her children by telling them that after they went to bed she and their father ate all the children s candy", "video_id": "video10024", "sen_id": 235931}, {"caption": "one boy and one girl drawing on a table with a sip cup in the middle of the table mother says something and", "video_id": "video10024", "sen_id": 235932}, {"caption": "the beautiful childs are colouring the books and suddenly crying", "video_id": "video10024", "sen_id": 235933}, {"caption": "a person with black coat is explaining something and among two kids one of them is crying", "video_id": "video10024", "sen_id": 235934}, {"caption": "two kids are making paintings on paper at a table and someone make them unhappy", "video_id": "video10024", "sen_id": 235935}, {"caption": "the two children making the drawing in the room and he try to crying", "video_id": "video10024", "sen_id": 235936}, {"caption": "the two mischief children are involving in drawingsuddenly they heard something told by a woman and they started to crying", "video_id": "video10024", "sen_id": 235937}, {"caption": "a woman telling her children that her and her husband ate all their candy and making the children cry", "video_id": "video10024", "sen_id": 235938}, {"caption": "some kids sitting at a table are talking", "video_id": "video10024", "sen_id": 235939}, {"caption": "a young female performs a song and dance with a group of professional dancers", "video_id": "video10319", "sen_id": 235940}, {"caption": "a young woman sings and dances with a group of backup dancers", "video_id": "video10319", "sen_id": 235941}, {"caption": "footage of various music videos from the same singer is shown with choreographed dance moves in each one", "video_id": "video10319", "sen_id": 235942}, {"caption": "a woman dressed in man's clothing sings and dances in an urban setting", "video_id": "video10319", "sen_id": 235943}, {"caption": "a brittany spears video compilation set to music", "video_id": "video10319", "sen_id": 235944}, {"caption": "a woman sings and dances with many other performers", "video_id": "video10319", "sen_id": 235945}, {"caption": "britney spears is performing in a music video that is well choreographed", "video_id": "video10319", "sen_id": 235946}, {"caption": "a young lady in black suit dancing with full energy with other people", "video_id": "video10319", "sen_id": 235947}, {"caption": "a one artist dancer crew song from a woman", "video_id": "video10319", "sen_id": 235948}, {"caption": "one sexy girl singing and dancing in the crowd", "video_id": "video10319", "sen_id": 235949}, {"caption": "a woman in a hat is walking around and singing", "video_id": "video10319", "sen_id": 235950}, {"caption": "all persons are dancing and singing on a show", "video_id": "video10319", "sen_id": 235951}, {"caption": "there is a woman with black hat walking on the floor", "video_id": "video10319", "sen_id": 235952}, {"caption": "a girl dancing group and dressed a black and white dress", "video_id": "video10319", "sen_id": 235953}, {"caption": "group of girls and boys were singing a song", "video_id": "video10319", "sen_id": 235954}, {"caption": "some people are dancing around and singing", "video_id": "video10319", "sen_id": 235955}, {"caption": "a man in suit dancing with a group of people", "video_id": "video10319", "sen_id": 235956}, {"caption": "the woman singer is singing and dacing on the stage", "video_id": "video10319", "sen_id": 235957}, {"caption": "in the song the girl wear the coat then red dress and then with the white and black dress wear the specs", "video_id": "video10319", "sen_id": 235958}, {"caption": "some people are walking around and singing", "video_id": "video10319", "sen_id": 235959}, {"caption": "a man is facetiming his girlfriend and her dog and calling it cute", "video_id": "video12195", "sen_id": 235960}, {"caption": "several pictures of a girl and her dog are being shown on a phone", "video_id": "video12195", "sen_id": 235961}, {"caption": "a girl is trying to take a selfie with her puppy but it is not letting her to click the picture", "video_id": "video12195", "sen_id": 235962}, {"caption": "one girl with her dog she make video call to some one", "video_id": "video12195", "sen_id": 235963}, {"caption": "a girl and a dog in a cell phone face timing", "video_id": "video12195", "sen_id": 235964}, {"caption": "woman is taking selfie with her dog in the living room", "video_id": "video12195", "sen_id": 235965}, {"caption": "a person is watching a video pf girl holding dog in his mobile", "video_id": "video12195", "sen_id": 235966}, {"caption": "a man video chats with a woman and a puppy on his phone", "video_id": "video12195", "sen_id": 235967}, {"caption": "a man holding a phone and having a video conversation with a woman playing with a puppy", "video_id": "video12195", "sen_id": 235968}, {"caption": "a man talks to his family on an online video service", "video_id": "video12195", "sen_id": 235969}, {"caption": "a person shows the video about a girl is playing with pet in mobile", "video_id": "video12195", "sen_id": 235970}, {"caption": "a man holds a cell phone while a woman and a dog face time", "video_id": "video12195", "sen_id": 235971}, {"caption": "the person shows a slide show on his cell phone of a woman with a dog", "video_id": "video12195", "sen_id": 235972}, {"caption": "a woman takes a selfie video with her cat", "video_id": "video12195", "sen_id": 235973}, {"caption": "a man is looking at pictures of a girl and a dog on his iphone", "video_id": "video12195", "sen_id": 235974}, {"caption": "a girl is showing her self on her phone", "video_id": "video12195", "sen_id": 235975}, {"caption": "pictures and videos in an iphone with a girl playing with her dog", "video_id": "video12195", "sen_id": 235976}, {"caption": "a person watching a mobile screen expresses his liking and love at his friend and the puppy in the conversation they are having", "video_id": "video12195", "sen_id": 235977}, {"caption": "a guy face times with a girl and her dog", "video_id": "video12195", "sen_id": 235978}, {"caption": "a phone is showing a girl with her dog", "video_id": "video12195", "sen_id": 235979}, {"caption": "bret bair telling of chinese navy ships in the bering sea", "video_id": "video11352", "sen_id": 235980}, {"caption": "a news reporter is reporting that 5 chinese navy ships have been spotted off the coast of alaska in the bearing sea and that a large military parade is also about to take place in china", "video_id": "video11352", "sen_id": 235981}, {"caption": "a fox news announcer presents news about chinese ships in the bering sea", "video_id": "video11352", "sen_id": 235982}, {"caption": "the chinese are showing signs of military formation and weapons preparation", "video_id": "video11352", "sen_id": 235983}, {"caption": "a news reporter talking then a make of alaska with a alert on the screen", "video_id": "video11352", "sen_id": 235984}, {"caption": "news report talking about 5 chinese navy ships bering sea", "video_id": "video11352", "sen_id": 235985}, {"caption": "there is a black suit man talking about a state", "video_id": "video11352", "sen_id": 235986}, {"caption": "fox news report of five chinese naval ships spotted in the bearing sea off the alaskan coast china also conducting a military parade showcasing new weapons", "video_id": "video11352", "sen_id": 235987}, {"caption": "a man on fox news is talking about chinese navy ships in the bering sea", "video_id": "video11352", "sen_id": 235988}, {"caption": "a man in a blue suit then a map of a state", "video_id": "video11352", "sen_id": 235989}, {"caption": "a new reporter is sitting in a studio describing events that were happening in alaska as is shown on a map", "video_id": "video11352", "sen_id": 235990}, {"caption": "there is a suit man talking about a state", "video_id": "video11352", "sen_id": 235991}, {"caption": "fox news anchor talks about where chinese ships are", "video_id": "video11352", "sen_id": 235992}, {"caption": "a male news anchor states that chinese navy ships have been sighted off the coast of alaska and shows a map of the region", "video_id": "video11352", "sen_id": 235993}, {"caption": "man is talking about the latest news on fox program", "video_id": "video11352", "sen_id": 235994}, {"caption": "an image is showing alaska on a map", "video_id": "video11352", "sen_id": 235995}, {"caption": "a map of a state being displayed on a screen", "video_id": "video11352", "sen_id": 235996}, {"caption": "tell on fox news of 5 chinese navy ships in bering sea news reporter telling about right after president made a visit", "video_id": "video11352", "sen_id": 235997}, {"caption": "a news broadcaster for fox news is briefly shown while speaking about chinese naval boats that have been spotted near alaska which is shown highlighted on a map", "video_id": "video11352", "sen_id": 235998}, {"caption": "a old man in blue coat sitting speaking on topic discussing news channels displaying on screen", "video_id": "video11352", "sen_id": 235999}, {"caption": "a man is being interviewed about his experience working on the movie avatar", "video_id": "video10651", "sen_id": 236000}, {"caption": "james cameron talks about his film avatar during an interview", "video_id": "video10651", "sen_id": 236001}, {"caption": "a movie editor is participating in an interview and he is answering questions", "video_id": "video10651", "sen_id": 236002}, {"caption": "two men are interviewing with a picture of the movie avatar in the background", "video_id": "video10651", "sen_id": 236003}, {"caption": "the director of the movie avatar is being interviewed", "video_id": "video10651", "sen_id": 236004}, {"caption": "there is a man with blue shirt talking in a studio", "video_id": "video10651", "sen_id": 236005}, {"caption": "older white man talking about emotions when he was editing the movie avator", "video_id": "video10651", "sen_id": 236006}, {"caption": "an entertainment reporter asks a famous director how he edits his movies", "video_id": "video10651", "sen_id": 236007}, {"caption": "executive producer of the movie avatar talked about how they selected scenes to edit in post production", "video_id": "video10651", "sen_id": 236008}, {"caption": "a man is being interviewed regarding the film avatar", "video_id": "video10651", "sen_id": 236009}, {"caption": "a man sitting in front of an avatar screen discussing the movie", "video_id": "video10651", "sen_id": 236010}, {"caption": "two men wearing black dress talking about the movie", "video_id": "video10651", "sen_id": 236011}, {"caption": "a man in a blue shirt describing the editing process for avatar", "video_id": "video10651", "sen_id": 236012}, {"caption": "a man in a jacket talks about the movie avatar", "video_id": "video10651", "sen_id": 236013}, {"caption": "james cameron is talking about avatar", "video_id": "video10651", "sen_id": 236014}, {"caption": "an old man with white hair talks about avatar in front of a blue screen", "video_id": "video10651", "sen_id": 236015}, {"caption": "the creator of avatar says he had a three person editing team", "video_id": "video10651", "sen_id": 236016}, {"caption": "the producer wearing blue shirt talking about the avatar movie", "video_id": "video10651", "sen_id": 236017}, {"caption": "the director of avatar talking about how if something affected them emotionally they would leave it in the movie", "video_id": "video10651", "sen_id": 236018}, {"caption": "a man interviews james cameron about his movie avatar", "video_id": "video10651", "sen_id": 236019}, {"caption": "men sitting in a tank talking to each other", "video_id": "video11574", "sen_id": 236020}, {"caption": "a man wearing goggles and a drives a tank", "video_id": "video11574", "sen_id": 236021}, {"caption": "a man inside of a tank on a radio", "video_id": "video11574", "sen_id": 236022}, {"caption": "three men are inside a vehicle getting ready to leave", "video_id": "video11574", "sen_id": 236023}, {"caption": "military man in danger radioing the others to inform them", "video_id": "video11574", "sen_id": 236024}, {"caption": "men are in a war operating a tank", "video_id": "video11574", "sen_id": 236025}, {"caption": "young men ride in a tank and prepare to fight", "video_id": "video11574", "sen_id": 236026}, {"caption": "a man starts a tank in a movie clip while another man talks on a cb radio", "video_id": "video11574", "sen_id": 236027}, {"caption": "soldiers wearing helmets are riding inside a military vehicle", "video_id": "video11574", "sen_id": 236028}, {"caption": "men inside of a military vehicle and one is talking about condensation", "video_id": "video11574", "sen_id": 236029}, {"caption": "some movie scene is going on of action in the video", "video_id": "video11574", "sen_id": 236030}, {"caption": "a group of men in a tank react to the tanks mechanical issues", "video_id": "video11574", "sen_id": 236031}, {"caption": "two men are trying to start a vehicle with head gears on", "video_id": "video11574", "sen_id": 236032}, {"caption": "men in arms are attacking somebody and big noises are heard", "video_id": "video11574", "sen_id": 236033}, {"caption": "bunch of guys trying to drive a vehicle in the movie", "video_id": "video11574", "sen_id": 236034}, {"caption": "dark room a man talking with another man", "video_id": "video11574", "sen_id": 236035}, {"caption": "a dark inside a vehicle scene showing the people side talking to one another", "video_id": "video11574", "sen_id": 236036}, {"caption": "soldiers are starting up a tank and preparing to move out", "video_id": "video11574", "sen_id": 236037}, {"caption": "men ride in a tank and one looks at a photo", "video_id": "video11574", "sen_id": 236038}, {"caption": "a person in a tank is talking to people", "video_id": "video11574", "sen_id": 236039}, {"caption": "a scientist is discussing the nervous system of a lancelet", "video_id": "video12578", "sen_id": 236040}, {"caption": "a man is talking about nerves and where they are", "video_id": "video12578", "sen_id": 236041}, {"caption": "a lone man speaks about the differences in the structure of a chordates nervous systems verses those found in other animal groups", "video_id": "video12578", "sen_id": 236042}, {"caption": "a man in a blue button-up shirt and glasses explains how a chordate's nervous system differs from other animal phylum", "video_id": "video12578", "sen_id": 236043}, {"caption": "a man talking about a certain animal's body parts", "video_id": "video12578", "sen_id": 236044}, {"caption": "a man in a blue shirt and glasses describes an animated illustration of a lancelet", "video_id": "video12578", "sen_id": 236045}, {"caption": "a man explaining body functions", "video_id": "video12578", "sen_id": 236046}, {"caption": "a person with black spectacle explaining about something", "video_id": "video12578", "sen_id": 236047}, {"caption": "a diagram shows different parts of a lancelet", "video_id": "video12578", "sen_id": 236048}, {"caption": "a scholarly looking man in glasses and blue shirt describes the inner organ system of an organism", "video_id": "video12578", "sen_id": 236049}, {"caption": "there is a man in blue shirt talking about lancelet", "video_id": "video12578", "sen_id": 236050}, {"caption": "a man wearing grey dress is talking", "video_id": "video12578", "sen_id": 236051}, {"caption": "a man wearing eyeglasses explains with skeleton about the dorsal hollow nerve cord", "video_id": "video12578", "sen_id": 236052}, {"caption": "a person explains a diagram about a fish s interior parts", "video_id": "video12578", "sen_id": 236053}, {"caption": "the man wore nerd glasses and looked like a geek", "video_id": "video12578", "sen_id": 236054}, {"caption": "a man is describing the nervous system of a lancelet", "video_id": "video12578", "sen_id": 236055}, {"caption": "on green ground a man talking with grey shirt", "video_id": "video12578", "sen_id": 236056}, {"caption": "a man explaining about the human bone structure", "video_id": "video12578", "sen_id": 236057}, {"caption": "a guy describing in detail the anatomy of an animal", "video_id": "video12578", "sen_id": 236058}, {"caption": "a diagram of the human body is being shown", "video_id": "video12578", "sen_id": 236059}, {"caption": "a fight taking place against two animated characters", "video_id": "video12597", "sen_id": 236060}, {"caption": "a video game is shown where two characters are fighting face to face", "video_id": "video12597", "sen_id": 236061}, {"caption": "a white headed superhero struggles with a red headed super hero", "video_id": "video12597", "sen_id": 236062}, {"caption": "two animated characters one with red hair and one with white hair are fighting", "video_id": "video12597", "sen_id": 236063}, {"caption": "animation of two video characters one with red hair and the other with white hair fighting in a duel", "video_id": "video12597", "sen_id": 236064}, {"caption": "an animated character in red fights with an other character in blue", "video_id": "video12597", "sen_id": 236065}, {"caption": "a cartoon image is shown on the screen", "video_id": "video12597", "sen_id": 236066}, {"caption": "tje marino game in computer how is play", "video_id": "video12597", "sen_id": 236067}, {"caption": "two characters fight together with flaming red hair", "video_id": "video12597", "sen_id": 236068}, {"caption": "animated characters with spiky hair have a fight", "video_id": "video12597", "sen_id": 236069}, {"caption": "there is a man with red color hair fighting against someone", "video_id": "video12597", "sen_id": 236070}, {"caption": "two pixelated anime characters are engaging in a fierce battle", "video_id": "video12597", "sen_id": 236071}, {"caption": "a cartoon character shoots energy from his hands and is charged by opponent with red spiked hair", "video_id": "video12597", "sen_id": 236072}, {"caption": "person with red hair is running and beating other person", "video_id": "video12597", "sen_id": 236073}, {"caption": "a 2d animation game fighting between two cartoon fighters", "video_id": "video12597", "sen_id": 236074}, {"caption": "two characters duke it out through battle of both physical strength and mystic power", "video_id": "video12597", "sen_id": 236075}, {"caption": "two men with spiky hair are fighting each-other", "video_id": "video12597", "sen_id": 236076}, {"caption": "an animation of two men fighting with lasers and hand to hand one with white hair and one with red hair", "video_id": "video12597", "sen_id": 236077}, {"caption": "a cartoon kung fu fighter with red hair does battle with another cartoon character with white hair", "video_id": "video12597", "sen_id": 236078}, {"caption": "player playing video game trying to get more points", "video_id": "video12597", "sen_id": 236079}, {"caption": "a man in a white lab coat is discussing the movements of a human", "video_id": "video11952", "sen_id": 236080}, {"caption": "a doctor with a white lab coat gives his opinion on a medical case", "video_id": "video11952", "sen_id": 236081}, {"caption": "a surgeon talking about a patient's threat while sleeping", "video_id": "video11952", "sen_id": 236082}, {"caption": "a doctor talks about his doubts on a case", "video_id": "video11952", "sen_id": 236083}, {"caption": "a surgeon talks about various body problems and reactions", "video_id": "video11952", "sen_id": 236084}, {"caption": "the surgeon talk about the body and the surgery", "video_id": "video11952", "sen_id": 236085}, {"caption": "a man educating on what happens when one is leaning with his back", "video_id": "video11952", "sen_id": 236086}, {"caption": "a doctor talking about something in the media", "video_id": "video11952", "sen_id": 236087}, {"caption": "a doctor is talking about a specific case while moving his hands a lot", "video_id": "video11952", "sen_id": 236088}, {"caption": "an orthopedic surgeon describes what happened to a patient", "video_id": "video11952", "sen_id": 236089}, {"caption": "an orthopaedic surgeon explaining some topic in front of the camera", "video_id": "video11952", "sen_id": 236090}, {"caption": "a surgeon explains about the back bone and shows what happens if some problem occurs", "video_id": "video11952", "sen_id": 236091}, {"caption": "on discovery channel a man is explaining some thing", "video_id": "video11952", "sen_id": 236092}, {"caption": "a surgeon is being interviewed on the discovery channel", "video_id": "video11952", "sen_id": 236093}, {"caption": "a man in a white lab coat talks about the mechanics of waking up if someone stops breathing", "video_id": "video11952", "sen_id": 236094}, {"caption": "there is a white suit man talking in front of a fossil", "video_id": "video11952", "sen_id": 236095}, {"caption": "a surgeon in a white coat is talking during an interview about a patient", "video_id": "video11952", "sen_id": 236096}, {"caption": "a man in a white coat sits and talks in his office", "video_id": "video11952", "sen_id": 236097}, {"caption": "the doctor alex vaccaro is explaining something for discovery channel", "video_id": "video11952", "sen_id": 236098}, {"caption": "a guy in a white jacket is speaking to people", "video_id": "video11952", "sen_id": 236099}, {"caption": "a man in a black suit is discussing einstein's theory of relativity", "video_id": "video12021", "sen_id": 236100}, {"caption": "a man in a black shirt standing on a stage is talking about einstein", "video_id": "video12021", "sen_id": 236101}, {"caption": "there is a black jacket man talking to someone", "video_id": "video12021", "sen_id": 236102}, {"caption": "a man is speaking on a stage about the flow in poetry", "video_id": "video12021", "sen_id": 236103}, {"caption": "flow in the poetry there are two chairs and a old man stands and talk", "video_id": "video12021", "sen_id": 236104}, {"caption": "this is a seminar about flow in poetry an elderly person in stage memorise sceenarios of people strugled hard to get achivement", "video_id": "video12021", "sen_id": 236105}, {"caption": "a man doing some lecture", "video_id": "video12021", "sen_id": 236106}, {"caption": "a professor discussing giving a lecture using a reference to einstien", "video_id": "video12021", "sen_id": 236107}, {"caption": "a man tells an audience about how albert einstein tried to explain his relativity theory", "video_id": "video12021", "sen_id": 236108}, {"caption": "a gentleman with black court is explaining about something", "video_id": "video12021", "sen_id": 236109}, {"caption": "there is a suit man taking class in a room", "video_id": "video12021", "sen_id": 236110}, {"caption": "a man talking to others on a stadium", "video_id": "video12021", "sen_id": 236111}, {"caption": "a man wearing black dress explaining about something", "video_id": "video12021", "sen_id": 236112}, {"caption": "a priest stands on stage and gives a sermon to the crowd", "video_id": "video12021", "sen_id": 236113}, {"caption": "a gentleman with black dress is taking a class to some people", "video_id": "video12021", "sen_id": 236114}, {"caption": "there is a person in black coat pant and he is giving a spech", "video_id": "video12021", "sen_id": 236115}, {"caption": "a man wearing black clolor dressed teaching", "video_id": "video12021", "sen_id": 236116}, {"caption": "a scientist on a stage full of props gives a lecture on a scientific principle", "video_id": "video12021", "sen_id": 236117}, {"caption": "a middle aged man in black suit comes to the room and speaking to others", "video_id": "video12021", "sen_id": 236118}, {"caption": "a man in a room is talking to someone", "video_id": "video12021", "sen_id": 236119}, {"caption": "a man slapping people on their butts and recording it on his phone", "video_id": "video12360", "sen_id": 236120}, {"caption": "a group of young people check in to a large hotel", "video_id": "video12360", "sen_id": 236121}, {"caption": "a group of young adults goof off as they check into a hotel one of the young men in the group gets a sharp playful slap above the rear-end from one of the other group members the slap leaves a visible red mark", "video_id": "video12360", "sen_id": 236122}, {"caption": "boisterous young people check into a hotel and walk to their room", "video_id": "video12360", "sen_id": 236123}, {"caption": "there is a bunch rowdy guys and girls being loud walking down the hall and out of a hotel", "video_id": "video12360", "sen_id": 236124}, {"caption": "there is a man hitting a friend in a hall", "video_id": "video12360", "sen_id": 236125}, {"caption": "a person slaps the butt of a man in a bar", "video_id": "video12360", "sen_id": 236126}, {"caption": "guys and girls acting silly with one another before they head out", "video_id": "video12360", "sen_id": 236127}, {"caption": "while collecting tour bags some body exposes his white buttocks out of carelesness", "video_id": "video12360", "sen_id": 236128}, {"caption": "man having his ass smacked while waiting for his room keys", "video_id": "video12360", "sen_id": 236129}, {"caption": "an unsuspecting guy is slapped on the butt by the cameraman", "video_id": "video12360", "sen_id": 236130}, {"caption": "a man gets his buttocks slapped while wearing his pants low and exposing the top of his black underpants", "video_id": "video12360", "sen_id": 236131}, {"caption": "a interesting guy with a hat and a t shirt shows his spanked back", "video_id": "video12360", "sen_id": 236132}, {"caption": "young people joke around with each other and laugh", "video_id": "video12360", "sen_id": 236133}, {"caption": "young men with there underwear showing are trying to check into a hotel with friends", "video_id": "video12360", "sen_id": 236134}, {"caption": "a group of young people are hanging out and kidding around with each other", "video_id": "video12360", "sen_id": 236135}, {"caption": "pov footage of various attractive men and women transporting", "video_id": "video12360", "sen_id": 236136}, {"caption": "a boy in white color dress standing wearing cloth hitting at back other man red color patch at back and girl walking displaying on screen", "video_id": "video12360", "sen_id": 236137}, {"caption": "college kids are checking into a hotel a guy gets slapped on the butt by the camera man he asks the others if they are ready", "video_id": "video12360", "sen_id": 236138}, {"caption": "a guy in a hat is being filmed", "video_id": "video12360", "sen_id": 236139}, {"caption": "man sneaks up above dog and manages to sneak a collar on it", "video_id": "video11677", "sen_id": 236140}, {"caption": "a dog is resting at the bottom of a concrete railed platform when a man places a looped strap around the dog's neck and tries to calm the captured dog", "video_id": "video11677", "sen_id": 236141}, {"caption": "an unsuspecting dog has a leash put on it", "video_id": "video11677", "sen_id": 236142}, {"caption": "a man sneaks up on a dog and captures it", "video_id": "video11677", "sen_id": 236143}, {"caption": "someone grabbing a dog with a dog lace in a sunny day", "video_id": "video11677", "sen_id": 236144}, {"caption": "a dog on a leash is barking and going crazy", "video_id": "video11677", "sen_id": 236145}, {"caption": "there is someone playing with a dog in the street", "video_id": "video11677", "sen_id": 236146}, {"caption": "the man is catching his pet dog in very slowly finaly the dog surrondered", "video_id": "video11677", "sen_id": 236147}, {"caption": "one dog is put rope on neck and it was sounds", "video_id": "video11677", "sen_id": 236148}, {"caption": "a man is trying to catch the dog which is sitting on the road and he caught it", "video_id": "video11677", "sen_id": 236149}, {"caption": "a dog is about to be caught by someone", "video_id": "video11677", "sen_id": 236150}, {"caption": "it was suppose to be a dog catcher he use a thread to catch the dog from the back side of it", "video_id": "video11677", "sen_id": 236151}, {"caption": "a dog sitting in the shade is being captured", "video_id": "video11677", "sen_id": 236152}, {"caption": "one man put rope behind the dog and caught it", "video_id": "video11677", "sen_id": 236153}, {"caption": "a person captures a loose dog on the street", "video_id": "video11677", "sen_id": 236154}, {"caption": "a dog is sitting down near a concrete ramp", "video_id": "video11677", "sen_id": 236155}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video11677", "sen_id": 236156}, {"caption": "a dog catcher catches a stray dog with a long armed noose", "video_id": "video11677", "sen_id": 236157}, {"caption": "a dog is standing by the street and moving its neck", "video_id": "video11677", "sen_id": 236158}, {"caption": "a person with a shadow is walking their dog", "video_id": "video11677", "sen_id": 236159}, {"caption": "two teams of men play volleyball in a large indoor court", "video_id": "video10414", "sen_id": 236160}, {"caption": "music underscores a montage of teams playing volleyball", "video_id": "video10414", "sen_id": 236161}, {"caption": "sports video showing mens volleyball clips from competitions", "video_id": "video10414", "sen_id": 236162}, {"caption": "a sports highlight video featuring volleyball is accompanied by pop music", "video_id": "video10414", "sen_id": 236163}, {"caption": "two male volleyball teams are playing a very competitive game", "video_id": "video10414", "sen_id": 236164}, {"caption": "male volleyball players are spiking the ball during a game while music is playing in the background", "video_id": "video10414", "sen_id": 236165}, {"caption": "a men s volleyball highlight clip showing several cool moves", "video_id": "video10414", "sen_id": 236166}, {"caption": "volleyball players spike the ball and the other team tries to dive and save it from touching the ground", "video_id": "video10414", "sen_id": 236167}, {"caption": "music plays as two volleyball teams play an intense match against each other", "video_id": "video10414", "sen_id": 236168}, {"caption": "two team players play the volley ball with good skills", "video_id": "video10414", "sen_id": 236169}, {"caption": "volley ball clips on the highlights on how the ball was faced", "video_id": "video10414", "sen_id": 236170}, {"caption": "two teams play volleyball against each other on the court in front of a crowd", "video_id": "video10414", "sen_id": 236171}, {"caption": "slow motion replays of men s indoor volleyball games are played with dance music overlaid", "video_id": "video10414", "sen_id": 236172}, {"caption": "male volley ball players spike the ball to the other teams", "video_id": "video10414", "sen_id": 236173}, {"caption": "players are playing volleyball on the ground", "video_id": "video10414", "sen_id": 236174}, {"caption": "the players in red are winning the point and celebrating it", "video_id": "video10414", "sen_id": 236175}, {"caption": "some girls are playing volleyball against each other", "video_id": "video10414", "sen_id": 236176}, {"caption": "volleyball players compete in a game while music plays in the background", "video_id": "video10414", "sen_id": 236177}, {"caption": "volleyball highlight film involving men s games and greatest moments", "video_id": "video10414", "sen_id": 236178}, {"caption": "a volleyball team in red jerseys spiking the volleyball over the net at an opposing team", "video_id": "video10414", "sen_id": 236179}, {"caption": "a man with his shirt open is having flashback memories", "video_id": "video10915", "sen_id": 236180}, {"caption": "a man stands outdoors by a field during a cloudy day", "video_id": "video10915", "sen_id": 236181}, {"caption": "a man with a beard standing in a grassy field staring a purple flower", "video_id": "video10915", "sen_id": 236182}, {"caption": "a man is depressed while looking at bad weather", "video_id": "video10915", "sen_id": 236183}, {"caption": "a man looks down at the plants on the ground as a storm rages in the background and a girl narrates", "video_id": "video10915", "sen_id": 236184}, {"caption": "a man in red shirt standing in a empty ground with so much greenery around is looking sad", "video_id": "video10915", "sen_id": 236185}, {"caption": "a man in a red jacket watches a storm approach him as he stands in a field", "video_id": "video10915", "sen_id": 236186}, {"caption": "the man wearing the red jacket stands near the green grass", "video_id": "video10915", "sen_id": 236187}, {"caption": "a storm goes on while a man in red watches somewhat sadly", "video_id": "video10915", "sen_id": 236188}, {"caption": "a man stares into the distance while a storm encroaches upon a forest", "video_id": "video10915", "sen_id": 236189}, {"caption": "a man in a red polo is sitting in a grassy field", "video_id": "video10915", "sen_id": 236190}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10915", "sen_id": 236191}, {"caption": "showcasing of plants along with a violet flower", "video_id": "video10915", "sen_id": 236192}, {"caption": "beautiful and big mountain with sound in nature man sitting", "video_id": "video10915", "sen_id": 236193}, {"caption": "a man sitting on a rock watching the cloudy mountains", "video_id": "video10915", "sen_id": 236194}, {"caption": "a guy is sitting in a field of tall grass and it is foggy he then looks down and there is a small pink flower", "video_id": "video10915", "sen_id": 236195}, {"caption": "man in grassy field with pink flowers girls voice narrating", "video_id": "video10915", "sen_id": 236196}, {"caption": "a purple flower has a slender stem and narrow leaves a bearded and moustached man is at the base of a grassy slope", "video_id": "video10915", "sen_id": 236197}, {"caption": "an indian man sets outside thinking about his girlfriend", "video_id": "video10915", "sen_id": 236198}, {"caption": "a boy in movie clip wearing red dress inside forest standing speaking displaying on screen", "video_id": "video10915", "sen_id": 236199}, {"caption": "a woman discusses the advancemetns of technology and the fudning different organizations receive", "video_id": "video12343", "sen_id": 236200}, {"caption": "a set of orange robots work together to manufacture a car", "video_id": "video12343", "sen_id": 236201}, {"caption": "machines are working followed by various industrial and scientific scenes and people typing on computers", "video_id": "video12343", "sen_id": 236202}, {"caption": "the narrator tells a story about technological advances", "video_id": "video12343", "sen_id": 236203}, {"caption": "a woman talks about various economic sectors and the companies involved in them", "video_id": "video12343", "sen_id": 236204}, {"caption": "a woman describes technology including auto-building robots", "video_id": "video12343", "sen_id": 236205}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video12343", "sen_id": 236206}, {"caption": "here is an authorized manufacturing company of producing vehicle s body parts with many more metals", "video_id": "video12343", "sen_id": 236207}, {"caption": "a woman is talking about a technology", "video_id": "video12343", "sen_id": 236208}, {"caption": "varioius technological innovations for the factory floor are showcased to include industrial robotic arms", "video_id": "video12343", "sen_id": 236209}, {"caption": "a machine is running and people are entering the room", "video_id": "video12343", "sen_id": 236210}, {"caption": "the factories were shown with advanced technologies and innovations", "video_id": "video12343", "sen_id": 236211}, {"caption": "machine is making some designs in steel plated", "video_id": "video12343", "sen_id": 236212}, {"caption": "several images of manufacturing are mashed together while a narrator speaks", "video_id": "video12343", "sen_id": 236213}, {"caption": "animated characters and robots are movingdancing talking and playing", "video_id": "video12343", "sen_id": 236214}, {"caption": "its about the robot manufacturing a car in a plant", "video_id": "video12343", "sen_id": 236215}, {"caption": "pictures are about the modern technology which has been improved", "video_id": "video12343", "sen_id": 236216}, {"caption": "machines and people perform intricate processes in factories producing various things", "video_id": "video12343", "sen_id": 236217}, {"caption": "a series of various manufacturing facilities are being shown and also a person is explaining about how the project and research are being funded", "video_id": "video12343", "sen_id": 236218}, {"caption": "industrial robots greatly help progress in multiple industries", "video_id": "video12343", "sen_id": 236219}, {"caption": "a couple of men shooting hoops at night", "video_id": "video11644", "sen_id": 236220}, {"caption": "boys are making shots with a basketball on an outdoors court at night", "video_id": "video11644", "sen_id": 236221}, {"caption": "a group of friends play basketball outside", "video_id": "video11644", "sen_id": 236222}, {"caption": "teenagers play the game horse using a basketball", "video_id": "video11644", "sen_id": 236223}, {"caption": "a man wearing a red shirt shooting a basketball in a hoop", "video_id": "video11644", "sen_id": 236224}, {"caption": "a guy playing basketball outside at night tries some tricks", "video_id": "video11644", "sen_id": 236225}, {"caption": "a man is shooting a basketball and doing tricks", "video_id": "video11644", "sen_id": 236226}, {"caption": "a man shoots a basketball into a hoop while another man jumps up and down and then another shot is made", "video_id": "video11644", "sen_id": 236227}, {"caption": "a group of boys playing basketball and trying to basket the ball", "video_id": "video11644", "sen_id": 236228}, {"caption": "men shoot basketballs into hoops while rap music plays", "video_id": "video11644", "sen_id": 236229}, {"caption": "guy in red tshirt puts basket ball in the basket", "video_id": "video11644", "sen_id": 236230}, {"caption": "in a basket ball court a players try to put the ball in the basket", "video_id": "video11644", "sen_id": 236231}, {"caption": "a man in green t-shirt and another person wit red t-shirt are practising basketball skills in an open ground", "video_id": "video11644", "sen_id": 236232}, {"caption": "a basketball player takes some shots on the court", "video_id": "video11644", "sen_id": 236233}, {"caption": "two people are practising basketball in an open ground", "video_id": "video11644", "sen_id": 236234}, {"caption": "there are some boys playing basketball on the court", "video_id": "video11644", "sen_id": 236235}, {"caption": "a man in shirt playing basket ball with friends", "video_id": "video11644", "sen_id": 236236}, {"caption": "a man wearing a red shirt is throwing a ball into the basketball hoop", "video_id": "video11644", "sen_id": 236237}, {"caption": "boys are playing a basket ball and music is palying", "video_id": "video11644", "sen_id": 236238}, {"caption": "bunch of guys showing their basketball tricks at the court", "video_id": "video11644", "sen_id": 236239}, {"caption": "a space ship is shown in the desert with pieces scattered on the ground", "video_id": "video12376", "sen_id": 236240}, {"caption": "the secrets behind movie special effects are shown", "video_id": "video12376", "sen_id": 236241}, {"caption": "a crash site for a space ship features burned out areas and a waste land of sand", "video_id": "video12376", "sen_id": 236242}, {"caption": "these are shots from a movie clip annouced in the beginning", "video_id": "video12376", "sen_id": 236243}, {"caption": "showing scenes of a lady next to a monster and other spacecraft crashes for a movie", "video_id": "video12376", "sen_id": 236244}, {"caption": "a creature sits with a woman broken equipment is on the ground", "video_id": "video12376", "sen_id": 236245}, {"caption": "a video clip of shot taking girl sitting displaying on screen", "video_id": "video12376", "sen_id": 236246}, {"caption": "out takes from various star wars movies with futuristic music", "video_id": "video12376", "sen_id": 236247}, {"caption": "a star wars space ship crashed on the ground", "video_id": "video12376", "sen_id": 236248}, {"caption": "a woman lies by a monster and wreckage is strewn about", "video_id": "video12376", "sen_id": 236249}, {"caption": "its a hollywood movie trailer and showing all stuents", "video_id": "video12376", "sen_id": 236250}, {"caption": "more parts are in the sand", "video_id": "video12376", "sen_id": 236251}, {"caption": "scenes from a science fiction movie are shot in various locations", "video_id": "video12376", "sen_id": 236252}, {"caption": "different photos from the movie of stars wars", "video_id": "video12376", "sen_id": 236253}, {"caption": "clips of a star wars type setting show a jabba type creature with a beautiful girl and a disaster accident with fire", "video_id": "video12376", "sen_id": 236254}, {"caption": "there is a gorilla sitting near by a woman", "video_id": "video12376", "sen_id": 236255}, {"caption": "a woman extends her arms and leans against a heavyset monster with a wide wrinkled head and potbelly while they share a brown sofa in a darkened room", "video_id": "video12376", "sen_id": 236256}, {"caption": "small models are used to lay out the scene for a famous movie", "video_id": "video12376", "sen_id": 236257}, {"caption": "scenes from a movie including a woman leaning on an alien and a ship wreck", "video_id": "video12376", "sen_id": 236258}, {"caption": "some people are filming a race car outside", "video_id": "video12376", "sen_id": 236259}, {"caption": "a man sitting on a couch holding a newborn baby", "video_id": "video12007", "sen_id": 236260}, {"caption": "a baby that is crying in his dad's arms", "video_id": "video12007", "sen_id": 236261}, {"caption": "there is a man playing with his baby crying", "video_id": "video12007", "sen_id": 236262}, {"caption": "the man sits on the couch and holds the baby girl", "video_id": "video12007", "sen_id": 236263}, {"caption": "a man holds a baby and mimics it s crying", "video_id": "video12007", "sen_id": 236264}, {"caption": "a man hold a kid in his hand and stand him on tummy", "video_id": "video12007", "sen_id": 236265}, {"caption": "a man holding a crying baby that can t hold it s own head up while mocking it", "video_id": "video12007", "sen_id": 236266}, {"caption": "a man holding a baby mimicks the crying sounds that the baby makes", "video_id": "video12007", "sen_id": 236267}, {"caption": "a man is holding a baby and copying the sounds made by the baby", "video_id": "video12007", "sen_id": 236268}, {"caption": "a man is holding and soothing a crying baby", "video_id": "video12007", "sen_id": 236269}, {"caption": "in a living room a man is sitting on a couch holding a fussing baby in his hands and making noises at it", "video_id": "video12007", "sen_id": 236270}, {"caption": "a man on a couch holds a crying baby and tries to console him", "video_id": "video12007", "sen_id": 236271}, {"caption": "a man holds his very small baby and makes noises with the child", "video_id": "video12007", "sen_id": 236272}, {"caption": "a man sits on the couch while holding a newborn baby in hand", "video_id": "video12007", "sen_id": 236273}, {"caption": "a man laying back on a couch holds up and playfully talks to a little whiny baby", "video_id": "video12007", "sen_id": 236274}, {"caption": "a man holding a crying baby and mocking it", "video_id": "video12007", "sen_id": 236275}, {"caption": "there is a man holding a baby and manipulating the babies noises", "video_id": "video12007", "sen_id": 236276}, {"caption": "cute little baby in hands of father so cute then it started to cry", "video_id": "video12007", "sen_id": 236277}, {"caption": "a man is sitting on the couch holding a baby", "video_id": "video12007", "sen_id": 236278}, {"caption": "a man holds a baby on a couch while trying to mimic the babies cries", "video_id": "video12007", "sen_id": 236279}, {"caption": "a man in a purple shirt is doing tricks on his motorcycle on the highway", "video_id": "video12608", "sen_id": 236280}, {"caption": "all persons are doing stunts on a road", "video_id": "video12608", "sen_id": 236281}, {"caption": "many guys going on the bike while one guy makes a wheeling a biker over takes a car and opens the side mirror", "video_id": "video12608", "sen_id": 236282}, {"caption": "a man is doing tricks on a motorcycle while going down the road including putting his feet on the seat and touching another car", "video_id": "video12608", "sen_id": 236283}, {"caption": "a man is doing stunts on a motorcyle going down the highway", "video_id": "video12608", "sen_id": 236284}, {"caption": "there is man in violet standing and riding bike", "video_id": "video12608", "sen_id": 236285}, {"caption": "man in a purple shirt performs a wheelie on a motorcycle and additional stunts in traffic", "video_id": "video12608", "sen_id": 236286}, {"caption": "a motorcycle rider does tricks on a busy highway and almost causes a wreck", "video_id": "video12608", "sen_id": 236287}, {"caption": "stunt motorcycle riders demonstrate their skills on a state highway with no regards for their safety", "video_id": "video12608", "sen_id": 236288}, {"caption": "a men is making stunts in mootor bikeand making wheely on his sport bike in moto gp race", "video_id": "video12608", "sen_id": 236289}, {"caption": "the men are the best in biking stunt moves", "video_id": "video12608", "sen_id": 236290}, {"caption": "motorcyclists do dangerous tricks and acts on various roads", "video_id": "video12608", "sen_id": 236291}, {"caption": "guy with purple shirt rides bike he does wheeling then he feel down", "video_id": "video12608", "sen_id": 236292}, {"caption": "several individuals are riding down the street on motor bikes with various of tricks and close encounters being done", "video_id": "video12608", "sen_id": 236293}, {"caption": "a man riding a motorcycle on one wheel in traffic a man doing tricks on a motorcycle and someone touching a car mirror on a motorcycle", "video_id": "video12608", "sen_id": 236294}, {"caption": "bikers performing various acts of reckless behaviour as an attempt of expressing the human condition", "video_id": "video12608", "sen_id": 236295}, {"caption": "several people on motorcycles speed down a highway while one driver performs tricks", "video_id": "video12608", "sen_id": 236296}, {"caption": "a man shows off motorcycle stunts in various locations and adjusts the side-view mirror on another motorist s vehicle", "video_id": "video12608", "sen_id": 236297}, {"caption": "two motorcyclists perform stunts with their bikes one motorcyclist adjusts the mirror of a nearby van", "video_id": "video12608", "sen_id": 236298}, {"caption": "three shots of motorcycle riders performing tricks: one group on a freeway in traffic in which a rider nearly crashes a second failing a stunt in an open area", "video_id": "video12608", "sen_id": 236299}, {"caption": "a man gives a lecture using a series of pictures to help with his presentation", "video_id": "video11057", "sen_id": 236300}, {"caption": "a man is giving a presentation for his students", "video_id": "video11057", "sen_id": 236301}, {"caption": "a man in a suit talks as images of fish are shown", "video_id": "video11057", "sen_id": 236302}, {"caption": "a presentation being given at speedtalk science & technology", "video_id": "video11057", "sen_id": 236303}, {"caption": "a guy in a suit is giving a powerpoint presentation on stage", "video_id": "video11057", "sen_id": 236304}, {"caption": "a man in a suit discusses his slide containing a pink measuring scale while speaking in a foreign language", "video_id": "video11057", "sen_id": 236305}, {"caption": "a man is talking with a photograph of a creature", "video_id": "video11057", "sen_id": 236306}, {"caption": "a man is explaining the lesson of the day on the power point projector", "video_id": "video11057", "sen_id": 236307}, {"caption": "an ocean shell is shown on top of a rock with presenter discussing on stage", "video_id": "video11057", "sen_id": 236308}, {"caption": "a person in a bayer conference showing an image of the results of a product", "video_id": "video11057", "sen_id": 236309}, {"caption": "there is a man talking in front of some people", "video_id": "video11057", "sen_id": 236310}, {"caption": "a man talking with seeing the screen", "video_id": "video11057", "sen_id": 236311}, {"caption": "a foreign commentator explaining about the news story of the day", "video_id": "video11057", "sen_id": 236312}, {"caption": "a man in a business suit speaks in a foreign language while a picture of a fish is shown", "video_id": "video11057", "sen_id": 236313}, {"caption": "a foreign lecturer explains a slideshow to an audience", "video_id": "video11057", "sen_id": 236314}, {"caption": "a guy in a coat and tie is speaking in a foreign language and it looks like he is doing a presentation", "video_id": "video11057", "sen_id": 236315}, {"caption": "a man lecturing at a talk for science and technology at a conference for the company bayer", "video_id": "video11057", "sen_id": 236316}, {"caption": "an lecture about the science and technology conducted by science for a better life", "video_id": "video11057", "sen_id": 236317}, {"caption": "here some colors of blackpink and yellow are shown", "video_id": "video11057", "sen_id": 236318}, {"caption": "a dead animal is being shown on tv", "video_id": "video11057", "sen_id": 236319}, {"caption": "a woman in a pink shirt with a necklace talking about filtration", "video_id": "video12909", "sen_id": 236320}, {"caption": "a woman with short hair and a pink shirt is talking", "video_id": "video12909", "sen_id": 236321}, {"caption": "an androgenous model with black hair and wearing a pink sweater explains solutions to customer service problems", "video_id": "video12909", "sen_id": 236322}, {"caption": "the lady is explaining how to keep the bonding application from forming bubbles", "video_id": "video12909", "sen_id": 236323}, {"caption": "a woman is explaining a scientific method fro preventing bubbles", "video_id": "video12909", "sen_id": 236324}, {"caption": "a short-haired woman wearing a pink shirt and a long necklace is standing next to a white sign with black lettering in front of a beige wall and talking to the camera", "video_id": "video12909", "sen_id": 236325}, {"caption": "a women in pink talking from a studio", "video_id": "video12909", "sen_id": 236326}, {"caption": "a woman is speaking about eliminating bubble in a particular area", "video_id": "video12909", "sen_id": 236327}, {"caption": "a woman in a red shirt talks about eliminating bubbles to bond to materials", "video_id": "video12909", "sen_id": 236328}, {"caption": "a lady in a pink shirt is talking about customer service", "video_id": "video12909", "sen_id": 236329}, {"caption": "a woman in a pink shirt is describing a scientific process", "video_id": "video12909", "sen_id": 236330}, {"caption": "a lady wearing a red dress is giving out some instruction", "video_id": "video12909", "sen_id": 236331}, {"caption": "what customer problem are we trying to solve", "video_id": "video12909", "sen_id": 236332}, {"caption": "a woman is telling how to solve customer problems", "video_id": "video12909", "sen_id": 236333}, {"caption": "a woman in a pink shirt is talking to someone", "video_id": "video12909", "sen_id": 236334}, {"caption": "a woman is speaking on a news channel", "video_id": "video12909", "sen_id": 236335}, {"caption": "a lady passing some information about a certain topic", "video_id": "video12909", "sen_id": 236336}, {"caption": "a woman is speaking about solving a problems", "video_id": "video12909", "sen_id": 236337}, {"caption": "a woman in a hall talking about problem solving", "video_id": "video12909", "sen_id": 236338}, {"caption": "a woman is talking to the camera", "video_id": "video12909", "sen_id": 236339}, {"caption": "a road with a cement truck and then an older fashioned car driving down it", "video_id": "video12315", "sen_id": 236340}, {"caption": "a cement truck with an orange cab is driving down the street and is being followed by a maroon vw", "video_id": "video12315", "sen_id": 236341}, {"caption": "a large orange truck drives down the road ahead of an suv", "video_id": "video12315", "sen_id": 236342}, {"caption": "a truck and jeep running on the street in front of some building", "video_id": "video12315", "sen_id": 236343}, {"caption": "orange truck is going on road red jeep coming behind", "video_id": "video12315", "sen_id": 236344}, {"caption": "orange cement truck passing by while followed by a car", "video_id": "video12315", "sen_id": 236345}, {"caption": "a person is driving cement trunk being followed by a classic car", "video_id": "video12315", "sen_id": 236346}, {"caption": "there is a truck moving in front of a car", "video_id": "video12315", "sen_id": 236347}, {"caption": "a camera is watching traffic and slowly zooms in on a red car", "video_id": "video12315", "sen_id": 236348}, {"caption": "a red color loader truck is passing through street and a small car is following truck", "video_id": "video12315", "sen_id": 236349}, {"caption": "there is a truck with limited speed moving on the road", "video_id": "video12315", "sen_id": 236350}, {"caption": "a camera slowly pans to the left zooming in on a dark red car", "video_id": "video12315", "sen_id": 236351}, {"caption": "a vehicle come sin the rad behind a jeep comes which is in purple color", "video_id": "video12315", "sen_id": 236352}, {"caption": "in a road there is a gipsy came slowly", "video_id": "video12315", "sen_id": 236353}, {"caption": "a jeep on the road is traveling to a destination", "video_id": "video12315", "sen_id": 236354}, {"caption": "orange truck is going on road red jeep", "video_id": "video12315", "sen_id": 236355}, {"caption": "in a road one turuck is coming fast follows by a jeep", "video_id": "video12315", "sen_id": 236356}, {"caption": "a truck and car were going on the road", "video_id": "video12315", "sen_id": 236357}, {"caption": "a concrete lorry is going and by following the lorry a truck is also going", "video_id": "video12315", "sen_id": 236358}, {"caption": "a red jeep is driving on a urban street", "video_id": "video12315", "sen_id": 236359}, {"caption": "a girl in a dress on stage with flashing colors doing a performance", "video_id": "video11938", "sen_id": 236360}, {"caption": "a catwalk with light effects featuring hawaiian style fashion", "video_id": "video11938", "sen_id": 236361}, {"caption": "there is a fashion show with women walking on stage the room is dark and red and blue colored lights flash and illuminate the stage", "video_id": "video11938", "sen_id": 236362}, {"caption": "a fashion show features strange lighting and women walking back and forth on a runway", "video_id": "video11938", "sen_id": 236363}, {"caption": "flashing lights strobe as models walk across a stage", "video_id": "video11938", "sen_id": 236364}, {"caption": "there are many young girls wearing fashionable dresses", "video_id": "video11938", "sen_id": 236365}, {"caption": "many woman are walking on stage in costume the room is filled with bright colored lights", "video_id": "video11938", "sen_id": 236366}, {"caption": "women participated on the fashion show and wore flowers on her head", "video_id": "video11938", "sen_id": 236367}, {"caption": "a woman walking on stage with flashing lights", "video_id": "video11938", "sen_id": 236368}, {"caption": "beautiful girls walking down the ramp for a fashion show", "video_id": "video11938", "sen_id": 236369}, {"caption": "a woman with a lighted headband is modeling on a stage with flashing lights in the dark", "video_id": "video11938", "sen_id": 236370}, {"caption": "hula girls dancing at a new age luau with black lights", "video_id": "video11938", "sen_id": 236371}, {"caption": "a group of lady models were walking and giving pose to camera", "video_id": "video11938", "sen_id": 236372}, {"caption": "ladies strut down a runway stage at a night club", "video_id": "video11938", "sen_id": 236373}, {"caption": "glamour girls are modelling and the stage is decorated with beautiful curtains and lights", "video_id": "video11938", "sen_id": 236374}, {"caption": "women are walking on stage to present clothing they are wearing in a fashion show", "video_id": "video11938", "sen_id": 236375}, {"caption": "a live fashion show with heavy music and rave lighting", "video_id": "video11938", "sen_id": 236376}, {"caption": "woman wearing fashion designer clothing are walking on a stage there are colored stobe lights all around there is an audience", "video_id": "video11938", "sen_id": 236377}, {"caption": "models wearing costumes including a fairy walk on stage with blue and red lights flashing", "video_id": "video11938", "sen_id": 236378}, {"caption": "pretty young ladies walk around in the colorful lights", "video_id": "video11938", "sen_id": 236379}, {"caption": "a blonde woman in a blue top with lights in the background talking about acne remover", "video_id": "video12605", "sen_id": 236380}, {"caption": "a woman in a bedroom talks to a camera", "video_id": "video12605", "sen_id": 236381}, {"caption": "a young woman greets us with some music in the background and talks about an acne tutorial she's going to present the next scene shows someone holding a tube of cosmetics", "video_id": "video12605", "sen_id": 236382}, {"caption": "a makeup artist girl telling about her tutorials on makeup", "video_id": "video12605", "sen_id": 236383}, {"caption": "there is a woman with white color hair talking about a product", "video_id": "video12605", "sen_id": 236384}, {"caption": "a lady wearing blue color dressed having a cream on her hand", "video_id": "video12605", "sen_id": 236385}, {"caption": "a woman is going to explain how to make up face", "video_id": "video12605", "sen_id": 236386}, {"caption": "a girl in blue dress sitting and speaking about cream face look beauty displaying on screen", "video_id": "video12605", "sen_id": 236387}, {"caption": "a blonde female states she will be describing how to create an acne covering summer make up look", "video_id": "video12605", "sen_id": 236388}, {"caption": "the woman is blue dress is explaining something in front of camera", "video_id": "video12605", "sen_id": 236389}, {"caption": "a woman introduces a tutorial to using foundation makeup", "video_id": "video12605", "sen_id": 236390}, {"caption": "a young lady in blue dress is talking about flawless beautiful primer", "video_id": "video12605", "sen_id": 236391}, {"caption": "a young blonde woman in a blue top lets us know she will be showing us how to do a summer acne coverage makeup look", "video_id": "video12605", "sen_id": 236392}, {"caption": "a blonde woman ina blue shirt is talking about makeup", "video_id": "video12605", "sen_id": 236393}, {"caption": "a woman is doing a tutorial for acne coverage and treatment", "video_id": "video12605", "sen_id": 236394}, {"caption": "sexy blonde in blue top talking to the camera", "video_id": "video12605", "sen_id": 236395}, {"caption": "there is a woman with beautiful eyes talking about a product", "video_id": "video12605", "sen_id": 236396}, {"caption": "a lady addressing through the media", "video_id": "video12605", "sen_id": 236397}, {"caption": "easy summer makeup tutorial and explain the lady", "video_id": "video12605", "sen_id": 236398}, {"caption": "a very cute blue dressed girl advertising the cream", "video_id": "video12605", "sen_id": 236399}, {"caption": "a man in a cowboy hat describes traits of desert camels", "video_id": "video11018", "sen_id": 236400}, {"caption": "a man with a black hat talking about a spider", "video_id": "video11018", "sen_id": 236401}, {"caption": "an instructor who is informing people about spiders", "video_id": "video11018", "sen_id": 236402}, {"caption": "a man with a mustache wearing a cowboy hat and a vest is talking to someone", "video_id": "video11018", "sen_id": 236403}, {"caption": "a man is sitting and speaking about a type of camel spider", "video_id": "video11018", "sen_id": 236404}, {"caption": "a man in a black cowboy hat is talking to the camera", "video_id": "video11018", "sen_id": 236405}, {"caption": "a man speaking in the wbsite channel", "video_id": "video11018", "sen_id": 236406}, {"caption": "a men is wearing a cap and talking and he is doing actions with his hands", "video_id": "video11018", "sen_id": 236407}, {"caption": "com one man talking about spider with experiment", "video_id": "video11018", "sen_id": 236408}, {"caption": "a man talking about insects that attach themselves to camels", "video_id": "video11018", "sen_id": 236409}, {"caption": "men showing a spider on his hand and describing", "video_id": "video11018", "sen_id": 236410}, {"caption": "a person with black hat says something about his experience of work", "video_id": "video11018", "sen_id": 236411}, {"caption": "one spider is biting a man in his hands", "video_id": "video11018", "sen_id": 236412}, {"caption": "the spider is in pale brown color the old person in black hat talks about the spider", "video_id": "video11018", "sen_id": 236413}, {"caption": "an old man in black dress sitting speaking spider moving discusing explayning displaying on screen", "video_id": "video11018", "sen_id": 236414}, {"caption": "a white person with black dressing with black cap explaining about insects", "video_id": "video11018", "sen_id": 236415}, {"caption": "a man wears a black hat with brim black vest gray shirt and black t-shirt while sitting next to a porous brown rock in front of a glass pane", "video_id": "video11018", "sen_id": 236416}, {"caption": "there is a spider howcastcom one man talks about", "video_id": "video11018", "sen_id": 236417}, {"caption": "a man explains how a dangerous spider are found under camel belly", "video_id": "video11018", "sen_id": 236418}, {"caption": "the man in black and whitedress is telling us about a something", "video_id": "video11018", "sen_id": 236419}, {"caption": "a few people on a balcony looking out over the mountains covered with green tree", "video_id": "video11124", "sen_id": 236420}, {"caption": "a man standing and looking out towards a mountain", "video_id": "video11124", "sen_id": 236421}, {"caption": "a great view of mountains is being videotaped with commentary in the background", "video_id": "video11124", "sen_id": 236422}, {"caption": "a man stands near a fence and looks out at the mountains and valleys", "video_id": "video11124", "sen_id": 236423}, {"caption": "a woman holding a shaky camera captures a video of a breathtaking view featuring a beautiful landscape of green and red trees with mountains in the distance", "video_id": "video11124", "sen_id": 236424}, {"caption": "a man in black color dress wearing walking peeping outside forest scene displaying on screen", "video_id": "video11124", "sen_id": 236425}, {"caption": "two persons are viewing the valley from the top of the mountain and they are enjoying the scenary", "video_id": "video11124", "sen_id": 236426}, {"caption": "people on top of a building watching mountains at a distance", "video_id": "video11124", "sen_id": 236427}, {"caption": "a man in black dress color cloth wearing watching standing forest tress outside displaying on screen", "video_id": "video11124", "sen_id": 236428}, {"caption": "a cameraman is walking around other people to get a view of the beautiful mountains", "video_id": "video11124", "sen_id": 236429}, {"caption": "a group of people looking out the window over a lot of trees", "video_id": "video11124", "sen_id": 236430}, {"caption": "few persons standing in the view point on a hill station", "video_id": "video11124", "sen_id": 236431}, {"caption": "three of the tourists viewing the scenery of dense forest from the top and commenting wowthere is a lot of trees", "video_id": "video11124", "sen_id": 236432}, {"caption": "looking to the vast nature extending to horizon", "video_id": "video11124", "sen_id": 236433}, {"caption": "mountains are visible from the top angle", "video_id": "video11124", "sen_id": 236434}, {"caption": "two men are watching a wild life forest", "video_id": "video11124", "sen_id": 236435}, {"caption": "a man with camera picturises the outer view of mountains", "video_id": "video11124", "sen_id": 236436}, {"caption": "a woman films the view from the top of a mountain high above the forest below", "video_id": "video11124", "sen_id": 236437}, {"caption": "young people look out over an endless expanse of forest", "video_id": "video11124", "sen_id": 236438}, {"caption": "some people are walking in front of bars", "video_id": "video11124", "sen_id": 236439}, {"caption": "i man is has a bird sitting on his shoulder and they are talking", "video_id": "video11543", "sen_id": 236440}, {"caption": "a parrot is apologizing for biting his owner and then kissing his cheek", "video_id": "video11543", "sen_id": 236441}, {"caption": "a parakeet is on a man's shoulder the video is taken through a webcam", "video_id": "video11543", "sen_id": 236442}, {"caption": "a green bird sitting on a person dressed in black shoulder", "video_id": "video11543", "sen_id": 236443}, {"caption": "a guy is on the video cam and seems to be on the phone but is actually playing with his pet parrot that is parroting back with him", "video_id": "video11543", "sen_id": 236444}, {"caption": "a man is talking to his bird that is located on his shoulder", "video_id": "video11543", "sen_id": 236445}, {"caption": "a man speaks with a parrot that is standing on his shoulder", "video_id": "video11543", "sen_id": 236446}, {"caption": "a young man is carrying on a conversation with his pet parrot", "video_id": "video11543", "sen_id": 236447}, {"caption": "a bird sitting on a boy shoulder s and they are talking to each other the bird even says sorry for biting the boy", "video_id": "video11543", "sen_id": 236448}, {"caption": "a bird is sitting on a man s shoulder and is interacting with the man", "video_id": "video11543", "sen_id": 236449}, {"caption": "the pet name parrot and their owner is talking the welfare", "video_id": "video11543", "sen_id": 236450}, {"caption": " with feathers in shades of green is kissing and talking while perched on guardian s shoulder", "video_id": "video11543", "sen_id": 236451}, {"caption": "a man plays with a pet bird sitting on his shoulder", "video_id": "video11543", "sen_id": 236452}, {"caption": "a parrot sitting on a gentlemen s shoulder talking about not biting", "video_id": "video11543", "sen_id": 236453}, {"caption": "a young male individual is listening to his parrot saying short sentences", "video_id": "video11543", "sen_id": 236454}, {"caption": "a green parrot on a man s shoulder apologizes for biting him", "video_id": "video11543", "sen_id": 236455}, {"caption": "you re okay one love bird can bite a man on his neck", "video_id": "video11543", "sen_id": 236456}, {"caption": "a man talks to a green bird perched on his neck", "video_id": "video11543", "sen_id": 236457}, {"caption": "a person is talking with the parrot who is on the shoulder", "video_id": "video11543", "sen_id": 236458}, {"caption": "a man is playing with his pet bird and it is talking", "video_id": "video11543", "sen_id": 236459}, {"caption": "a man talking to a man and woman on a couch about a show on hbo", "video_id": "video12915", "sen_id": 236460}, {"caption": "two men an a woman discuss a movie in cream colored chairs", "video_id": "video12915", "sen_id": 236461}, {"caption": "three people set on couches and discuss a movie that they have recently seen", "video_id": "video12915", "sen_id": 236462}, {"caption": "two men and one woman are sitting on chairs talking about an hbo series", "video_id": "video12915", "sen_id": 236463}, {"caption": "an entertainment reporter interviews an actor and actress in a small studio", "video_id": "video12915", "sen_id": 236464}, {"caption": "a man is interviewing a man and a woman sitting in a living room type setting", "video_id": "video12915", "sen_id": 236465}, {"caption": "three tv critics discuss a new show that they have recently viewed", "video_id": "video12915", "sen_id": 236466}, {"caption": "bearded guy talk to his guest in his tv show sitting on a couch", "video_id": "video12915", "sen_id": 236467}, {"caption": "two guys and a lady talking on a tv show", "video_id": "video12915", "sen_id": 236468}, {"caption": "the man in the red shirt interviews the man and woman sitting on the couch", "video_id": "video12915", "sen_id": 236469}, {"caption": "a man sitting in a chair is interviewing a man and a women othat are sitting on a couch", "video_id": "video12915", "sen_id": 236470}, {"caption": "two men and a woman are speaking together on couches", "video_id": "video12915", "sen_id": 236471}, {"caption": "one man talks about something in a stage", "video_id": "video12915", "sen_id": 236472}, {"caption": "kevin is interviewing two people about the new hbo drama the leftovers", "video_id": "video12915", "sen_id": 236473}, {"caption": "the host kevin was talking with a man and women about the new hbo show", "video_id": "video12915", "sen_id": 236474}, {"caption": "there are two men and a women talking with each others", "video_id": "video12915", "sen_id": 236475}, {"caption": "a person in pink colour shirt interviewing a man and a lady", "video_id": "video12915", "sen_id": 236476}, {"caption": "a small discussion on a show discussing the show the leftovers", "video_id": "video12915", "sen_id": 236477}, {"caption": "interviewer discusses hbo s new drama the the leftovers with cast", "video_id": "video12915", "sen_id": 236478}, {"caption": "a group of people are sitting down and talking", "video_id": "video12915", "sen_id": 236479}, {"caption": "a blonde woman in a red and black top talking about gmail being blocked in china", "video_id": "video12075", "sen_id": 236480}, {"caption": "a blond woman reporter reporting on why google service has been blocked in china", "video_id": "video12075", "sen_id": 236481}, {"caption": "a woman taking about google being blocked in china", "video_id": "video12075", "sen_id": 236482}, {"caption": "a blonde short haired woman talks about how gmail is now banned in china", "video_id": "video12075", "sen_id": 236483}, {"caption": "a news story about gmail being blocked in china", "video_id": "video12075", "sen_id": 236484}, {"caption": "a female news reporter sitting at a desk delivering a broadcast", "video_id": "video12075", "sen_id": 236485}, {"caption": "a news reader reading a news in the famous news channel", "video_id": "video12075", "sen_id": 236486}, {"caption": "lady news reader read the news on tv channel", "video_id": "video12075", "sen_id": 236487}, {"caption": "an american woman with short blond hair reports news about google s gmail being blocked in china", "video_id": "video12075", "sen_id": 236488}, {"caption": "a news anchor reports upon google mail being blocked in china", "video_id": "video12075", "sen_id": 236489}, {"caption": "the news reader is wearing a red sleeveless dress and sitting in a really beautiful background", "video_id": "video12075", "sen_id": 236490}, {"caption": "a women is reading news in a channel", "video_id": "video12075", "sen_id": 236491}, {"caption": "a girl is telling news on news channel", "video_id": "video12075", "sen_id": 236492}, {"caption": "the tech bet google s gmail blocked in china", "video_id": "video12075", "sen_id": 236493}, {"caption": "news reader with golden hair wearing maroon and black color dress talking", "video_id": "video12075", "sen_id": 236494}, {"caption": "cnbc new reporter morgab brennam is talking about google gmail blocked in china", "video_id": "video12075", "sen_id": 236495}, {"caption": "a woman with blonde hair and a burgandy and black dress talks about google email in china", "video_id": "video12075", "sen_id": 236496}, {"caption": "a female news reporter talks about a chinese blockade of an e-mail service", "video_id": "video12075", "sen_id": 236497}, {"caption": "a girl in red and black sitting and speaking", "video_id": "video12075", "sen_id": 236498}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video12075", "sen_id": 236499}, {"caption": "a book by barbara reich called the organized mom", "video_id": "video12742", "sen_id": 236500}, {"caption": "a book cover is shown followed by an image of the publishers website address", "video_id": "video12742", "sen_id": 236501}, {"caption": "advertisement for barbara reich who is a professional home organizer m", "video_id": "video12742", "sen_id": 236502}, {"caption": "a video is advertising an organization book for moms", "video_id": "video12742", "sen_id": 236503}, {"caption": "the cover of a book called secrets of an organized mom", "video_id": "video12742", "sen_id": 236504}, {"caption": "there is a book written by the author barbara reich", "video_id": "video12742", "sen_id": 236505}, {"caption": "a book by barbara reich is shown along with contact information and a url for her website", "video_id": "video12742", "sen_id": 236506}, {"caption": "a kitchen is first shown later deteails of a consultant and a website is displayed", "video_id": "video12742", "sen_id": 236507}, {"caption": "a picture of a kitchen is shown and then a book is featured for secrets of an organized mom", "video_id": "video12742", "sen_id": 236508}, {"caption": "barbara reich book secrets of an organized mom is showcased along with a website for more information", "video_id": "video12742", "sen_id": 236509}, {"caption": "a book about an organized mum and an advertisment", "video_id": "video12742", "sen_id": 236510}, {"caption": "an advertisement for barbara reich s book on organization can be found at the simon and schuster website", "video_id": "video12742", "sen_id": 236511}, {"caption": "a video introducing a book about how moms could to be more organized", "video_id": "video12742", "sen_id": 236512}, {"caption": "a book by barbara reich an organizing consultant appears that offers secrets that help moms organize their homes and lives", "video_id": "video12742", "sen_id": 236513}, {"caption": "a promotional commercial for a resource consultant being aired", "video_id": "video12742", "sen_id": 236514}, {"caption": "a women has written a book about organizing a house", "video_id": "video12742", "sen_id": 236515}, {"caption": "an advertisement for secrets of an organized mom", "video_id": "video12742", "sen_id": 236516}, {"caption": "barbara rieche is displayed then it says watch more at simonandschuster", "video_id": "video12742", "sen_id": 236517}, {"caption": "a book entitled secrets of an organized mom by barbara reich from the simon and shuster company is presented", "video_id": "video12742", "sen_id": 236518}, {"caption": "a book is being reviewed about how to stay organized", "video_id": "video12742", "sen_id": 236519}, {"caption": "a woman with blonde hair and a woman with dark hair are kissing", "video_id": "video11805", "sen_id": 236520}, {"caption": "woman sharing an intimate tongue kiss", "video_id": "video11805", "sen_id": 236521}, {"caption": "there is a blonde girl in blue and a brunette making out", "video_id": "video11805", "sen_id": 236522}, {"caption": "a blond and brunette women are making out", "video_id": "video11805", "sen_id": 236523}, {"caption": "two women are making out one is a brunette and the other blonde", "video_id": "video11805", "sen_id": 236524}, {"caption": "a blonde and a brunette giving each other a passionate kiss", "video_id": "video11805", "sen_id": 236525}, {"caption": "a two young romantic couples kissing each other", "video_id": "video11805", "sen_id": 236526}, {"caption": "two pretty girls one blonde one brunette kissing passionately", "video_id": "video11805", "sen_id": 236527}, {"caption": "2 girls are giving the lipkiss they looks like gay its yak", "video_id": "video11805", "sen_id": 236528}, {"caption": "two sexy girls making out in front of camera", "video_id": "video11805", "sen_id": 236529}, {"caption": "two pretty young women are making out with each other", "video_id": "video11805", "sen_id": 236530}, {"caption": "two girls are enjoy kissing each other with passion", "video_id": "video11805", "sen_id": 236531}, {"caption": "two girls are romancing and lip locking end enjoying", "video_id": "video11805", "sen_id": 236532}, {"caption": "a brown haired woman and a blond haired woman are kissing", "video_id": "video11805", "sen_id": 236533}, {"caption": "a couple of lesbians are making passionate love", "video_id": "video11805", "sen_id": 236534}, {"caption": "there is a women having with a girl", "video_id": "video11805", "sen_id": 236535}, {"caption": "two homo sexual women s kissing each other in a private place", "video_id": "video11805", "sen_id": 236536}, {"caption": "two women kiss passionately and lick each others faces", "video_id": "video11805", "sen_id": 236537}, {"caption": "two young ladies are licking their lips", "video_id": "video11805", "sen_id": 236538}, {"caption": "two lesbian women are kissing each other", "video_id": "video11805", "sen_id": 236539}, {"caption": "two black men hug before they leave a room", "video_id": "video11419", "sen_id": 236540}, {"caption": "a couple of black friends say goodbye to each other", "video_id": "video11419", "sen_id": 236541}, {"caption": "a man wiutrh a toiwel over his shoulder greets and embraces a man entering wearing a jean jacket and a backward facing red baseball cap who travels through the room mumbling greetings to the other men present", "video_id": "video11419", "sen_id": 236542}, {"caption": "a man in blue shirt and red cap is greeting another person", "video_id": "video11419", "sen_id": 236543}, {"caption": "two large africans hug each other and then exit the room they are in spouting cuss words all the way", "video_id": "video11419", "sen_id": 236544}, {"caption": "two blacks embrace each other lovingly when two other people are looking", "video_id": "video11419", "sen_id": 236545}, {"caption": "a man in red cap is talking to another person", "video_id": "video11419", "sen_id": 236546}, {"caption": "a man blue color dressed and another man walking", "video_id": "video11419", "sen_id": 236547}, {"caption": "a man in red cap talks to another person and both have a hug", "video_id": "video11419", "sen_id": 236548}, {"caption": "guy in red cap hugging the other black guy and saying good bye", "video_id": "video11419", "sen_id": 236549}, {"caption": "a man with red cap hugging a blue jacket man", "video_id": "video11419", "sen_id": 236550}, {"caption": "a black man with a red cap walks through a house while talking to people", "video_id": "video11419", "sen_id": 236551}, {"caption": "two men are hugging and going out of room", "video_id": "video11419", "sen_id": 236552}, {"caption": "a scene from a movie where a man with red cap walks into some room", "video_id": "video11419", "sen_id": 236553}, {"caption": "a guy in a red hat is walking around", "video_id": "video11419", "sen_id": 236554}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video11419", "sen_id": 236555}, {"caption": "the two people are met and they are glad and clpaed him on the back", "video_id": "video11419", "sen_id": 236556}, {"caption": "two men are hugging in the room", "video_id": "video11419", "sen_id": 236557}, {"caption": "a man wears a red cap and walks away", "video_id": "video11419", "sen_id": 236558}, {"caption": "a man is talking to his friend inside a room", "video_id": "video11419", "sen_id": 236559}, {"caption": "young fashion models are discussing what they want to do after the show is over", "video_id": "video12181", "sen_id": 236560}, {"caption": "models are getting made up ready for the runway show", "video_id": "video12181", "sen_id": 236561}, {"caption": "a woman responds frankly to a request she felt was belittling her", "video_id": "video12181", "sen_id": 236562}, {"caption": "a model getting some makeup put on before a show", "video_id": "video12181", "sen_id": 236563}, {"caption": "a model is interviewed while her makeup is being applied before a fashion show", "video_id": "video12181", "sen_id": 236564}, {"caption": "a girl in a light pink robe is getting her make up done in a pink media room by a man in a black tee shirt with white facial hair", "video_id": "video12181", "sen_id": 236565}, {"caption": "a model in a pink robe having her makeup done backstage is asked questions by a reporter", "video_id": "video12181", "sen_id": 236566}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video12181", "sen_id": 236567}, {"caption": "a beauty girl is giving a interview and make up is going on", "video_id": "video12181", "sen_id": 236568}, {"caption": "make up done to the lady in pink dress he applies the face pack to her", "video_id": "video12181", "sen_id": 236569}, {"caption": "a person showing a fashion show", "video_id": "video12181", "sen_id": 236570}, {"caption": "a lady make up her another girl by brush", "video_id": "video12181", "sen_id": 236571}, {"caption": "tmz is interviewing a model who is offended by the interviewer s question that implies that she starves herself to stay thin", "video_id": "video12181", "sen_id": 236572}, {"caption": "a touch up man is making her heroine ready while she is giving an interview", "video_id": "video12181", "sen_id": 236573}, {"caption": "blonde woman with nice body is doing her make up in studio", "video_id": "video12181", "sen_id": 236574}, {"caption": "a woman is cleaning with a cloth for a woman in a fashion show", "video_id": "video12181", "sen_id": 236575}, {"caption": "a makeup artist applies makeup to a model during an interview", "video_id": "video12181", "sen_id": 236576}, {"caption": "models getting makeup put on their faces talk to reporters", "video_id": "video12181", "sen_id": 236577}, {"caption": "a blonde woman in a pink gown is being interviewed by a man", "video_id": "video12181", "sen_id": 236578}, {"caption": "a person with black dress is putting make-up to another pretty lady", "video_id": "video12181", "sen_id": 236579}, {"caption": "a car is being blown up with fire and it flys in the air", "video_id": "video12959", "sen_id": 236580}, {"caption": "two men are recalling how a stunt scene that involved speeding cars and shooting a gun was created", "video_id": "video12959", "sen_id": 236581}, {"caption": "an actor is speaking about stunt teams and car drivers doing dangerous stunts in cars", "video_id": "video12959", "sen_id": 236582}, {"caption": "a man driving a car and doing dangerous stunts then being interviewed about it", "video_id": "video12959", "sen_id": 236583}, {"caption": "a man driving a car racing others on a dirt road", "video_id": "video12959", "sen_id": 236584}, {"caption": "a movie producer seems to narrate the story behind the shooting of a movie", "video_id": "video12959", "sen_id": 236585}, {"caption": "a man talks about action scenes involving cars and various stunts", "video_id": "video12959", "sen_id": 236586}, {"caption": "a behind the scenes look at a an action movie", "video_id": "video12959", "sen_id": 236587}, {"caption": "a man driving a car very fast and a big explosion in the front of him", "video_id": "video12959", "sen_id": 236588}, {"caption": "several stunts are being performed in cars", "video_id": "video12959", "sen_id": 236589}, {"caption": "there is a man riding the car for shooting", "video_id": "video12959", "sen_id": 236590}, {"caption": "a car tumbling end over end and a yellow suv with a man firing a gun", "video_id": "video12959", "sen_id": 236591}, {"caption": "a car is fire and blast in the road", "video_id": "video12959", "sen_id": 236592}, {"caption": "the man in this video most likely a director of some sort is talking about some of the stunt driversteam he had for whatever it was he was filming", "video_id": "video12959", "sen_id": 236593}, {"caption": "stunt actors perform driving and shooting tasks on set", "video_id": "video12959", "sen_id": 236594}, {"caption": "a car explodes a man talks about it while another man starts talking about guns while shooting one in a field", "video_id": "video12959", "sen_id": 236595}, {"caption": "several stunt tricks being performed with different kinds of cars", "video_id": "video12959", "sen_id": 236596}, {"caption": "men are talking about the stunts done in movies", "video_id": "video12959", "sen_id": 236597}, {"caption": "some men talk about car wrecks and firing guns", "video_id": "video12959", "sen_id": 236598}, {"caption": "the person explain the scene of the shahrukhan film the riding car affected the bamb blasting and some person escape the fired car at their riding way", "video_id": "video12959", "sen_id": 236599}, {"caption": "a car is stopped for lunch in a beautiful outdoors scenery with blue skies", "video_id": "video11372", "sen_id": 236600}, {"caption": "a song is paired with the video of someone's outdoor excursion", "video_id": "video11372", "sen_id": 236601}, {"caption": "a panoramic view of the countryside and blue sky with white clouds is shown", "video_id": "video11372", "sen_id": 236602}, {"caption": "nature scenes from stanhope where three cars stopped for lunch", "video_id": "video11372", "sen_id": 236603}, {"caption": "video of random green hills as a fun tune plays over the video", "video_id": "video11372", "sen_id": 236604}, {"caption": "a small group of cars park near the edge of a large canyon", "video_id": "video11372", "sen_id": 236605}, {"caption": "some one showing the beautiful scene of the nature", "video_id": "video11372", "sen_id": 236606}, {"caption": "a camera pans around the scenery of a location just outside of stanhope", "video_id": "video11372", "sen_id": 236607}, {"caption": "views of rural roads and hills and valleys are seen during road trip", "video_id": "video11372", "sen_id": 236608}, {"caption": "a person is showing bunch of cars parked outside the field", "video_id": "video11372", "sen_id": 236609}, {"caption": "pictures of nature especially grass are flashed", "video_id": "video11372", "sen_id": 236610}, {"caption": "tourist showing a canyon in a road trip with music going", "video_id": "video11372", "sen_id": 236611}, {"caption": "a person rides along a road to the edge of a long deep canyon", "video_id": "video11372", "sen_id": 236612}, {"caption": "a man is singing and a beautiful scenario is shown", "video_id": "video11372", "sen_id": 236613}, {"caption": "a person is showing mountains and clear sky", "video_id": "video11372", "sen_id": 236614}, {"caption": "several cars are parked in a wide rolling green landscape under a blue sky", "video_id": "video11372", "sen_id": 236615}, {"caption": "lots of different clips of the the prairie", "video_id": "video11372", "sen_id": 236616}, {"caption": "a classical country song being played while we see some wonderful countryside in a travelogue", "video_id": "video11372", "sen_id": 236617}, {"caption": "there is a meadow with a little grass and some flowers", "video_id": "video11372", "sen_id": 236618}, {"caption": "a man is singing and playing an acoustic guitar over a slideshow of nature photos", "video_id": "video11372", "sen_id": 236619}, {"caption": "several people are on side of a mountain while music plays", "video_id": "video12876", "sen_id": 236620}, {"caption": "on a mountain top some friends enjoying extreme sports some friends enjoying the view from high atop a mountain", "video_id": "video12876", "sen_id": 236621}, {"caption": "a group of young people do various antics as they climb a high mountain", "video_id": "video12876", "sen_id": 236622}, {"caption": "a man is dancing on the mountain on the highest peak", "video_id": "video12876", "sen_id": 236623}, {"caption": "music video featuring several men in the mountains", "video_id": "video12876", "sen_id": 236624}, {"caption": "a group of young people camp on a mountain that they are in the process of climbing", "video_id": "video12876", "sen_id": 236625}, {"caption": "a man dances on the top of a very high mountain", "video_id": "video12876", "sen_id": 236626}, {"caption": "there is a man enjoying himself on a hilltop", "video_id": "video12876", "sen_id": 236627}, {"caption": "the mounatin advantutres are riding and enjoying their trips", "video_id": "video12876", "sen_id": 236628}, {"caption": "its a mountain place 3 people lives in the tent the scene was awesome", "video_id": "video12876", "sen_id": 236629}, {"caption": "hikers are celebrating their success in reaching the summit of a high mountain", "video_id": "video12876", "sen_id": 236630}, {"caption": "the videos is advertisement for the tourist to attain the such places to have their vacation", "video_id": "video12876", "sen_id": 236631}, {"caption": "one man dancing in the beautiful mountain of nature", "video_id": "video12876", "sen_id": 236632}, {"caption": "a group of young mountain climbers camp on the way up the mountain", "video_id": "video12876", "sen_id": 236633}, {"caption": "a man in a red tee standswith his arm wide in the desert", "video_id": "video12876", "sen_id": 236634}, {"caption": "a man along with his friends are camping dancing in hilly open areas", "video_id": "video12876", "sen_id": 236635}, {"caption": "there are some people wearing different outfil and walking on streets", "video_id": "video12876", "sen_id": 236636}, {"caption": "a men are dancing in the top of a mountain", "video_id": "video12876", "sen_id": 236637}, {"caption": "campers and hikers wake up on the top of a mountain to a beautiful day", "video_id": "video12876", "sen_id": 236638}, {"caption": " four people are looking a hilly area all are carrying bag on their back a red color weraing person looking the sky andother person looking the sun and dandcing", "video_id": "video12876", "sen_id": 236639}, {"caption": "a man runs up a street and then gets into a dark colored car", "video_id": "video12960", "sen_id": 236640}, {"caption": "a man runs across the road and towards a car in a make believe world", "video_id": "video12960", "sen_id": 236641}, {"caption": "two men commentate while stealing a motor vehicle in a video game", "video_id": "video12960", "sen_id": 236642}, {"caption": "a video game character runs down a street and takes a car", "video_id": "video12960", "sen_id": 236643}, {"caption": "a video game character is running around the streets and gets into a car", "video_id": "video12960", "sen_id": 236644}, {"caption": "a character is running into a car driving away", "video_id": "video12960", "sen_id": 236645}, {"caption": "two men demonstrate and describe a video game that they are playing", "video_id": "video12960", "sen_id": 236646}, {"caption": "a man is running through the freeway chasing a crashed car he drives it for a yard and gets out", "video_id": "video12960", "sen_id": 236647}, {"caption": "a man in gray pants is running very quickly and then parks a car", "video_id": "video12960", "sen_id": 236648}, {"caption": "a large man in a white shirt is running in the street chasing after a car", "video_id": "video12960", "sen_id": 236649}, {"caption": "a character in a video game is running and then jumps in a car", "video_id": "video12960", "sen_id": 236650}, {"caption": "there is a women running towards her car", "video_id": "video12960", "sen_id": 236651}, {"caption": "a men is w is running very fast on the running track and sits in the car", "video_id": "video12960", "sen_id": 236652}, {"caption": "guy in white shirt and gray pant runs and gets into a car", "video_id": "video12960", "sen_id": 236653}, {"caption": "the video game featured very realistic looking gameplay", "video_id": "video12960", "sen_id": 236654}, {"caption": "a man in gray pants and white top is running down the street and gets into a car", "video_id": "video12960", "sen_id": 236655}, {"caption": "many people are running behind two men with suit", "video_id": "video12960", "sen_id": 236656}, {"caption": "a male character in a game wearing a white t-shirt and gray pants runs on a city street", "video_id": "video12960", "sen_id": 236657}, {"caption": "one animated car and boy is playing in this video the animated boy is following the car", "video_id": "video12960", "sen_id": 236658}, {"caption": "someone is playing grand theft auto five", "video_id": "video12960", "sen_id": 236659}, {"caption": "there is a woman singing and dancing in a music video", "video_id": "video10117", "sen_id": 236660}, {"caption": "a woman is singing the lyrics to the left to the left while a man is walking around in the house", "video_id": "video10117", "sen_id": 236661}, {"caption": "a pretty lady is singing a song", "video_id": "video10117", "sen_id": 236662}, {"caption": "a black girl sings as she tries to kick out a guy she recently broke up with", "video_id": "video10117", "sen_id": 236663}, {"caption": "a beautiful lady is singing while a man picks up his box", "video_id": "video10117", "sen_id": 236664}, {"caption": "a black female walks and sings through a nicely decorated hallway while a black male actor wearing a white sweater gathers his things to leave", "video_id": "video10117", "sen_id": 236665}, {"caption": "a beautiful women is singing as a guy passes by", "video_id": "video10117", "sen_id": 236666}, {"caption": "a women is dancing and singing song in english", "video_id": "video10117", "sen_id": 236667}, {"caption": "a brown haired women singing a song and a man passes on the way", "video_id": "video10117", "sen_id": 236668}, {"caption": "a heavy set african woman in tight clothes sings and dances", "video_id": "video10117", "sen_id": 236669}, {"caption": "a girl in whit and black skirt singing and dancing a man beside walking a car parking a book carrying man", "video_id": "video10117", "sen_id": 236670}, {"caption": "a women dancing and singing in front of a young man", "video_id": "video10117", "sen_id": 236671}, {"caption": "men and women dancing and singing song in a group", "video_id": "video10117", "sen_id": 236672}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video10117", "sen_id": 236673}, {"caption": "a sexy girl sings the song she has brown color hair the dress is so cute", "video_id": "video10117", "sen_id": 236674}, {"caption": "sexy brunette singer dancing and singing in her music video", "video_id": "video10117", "sen_id": 236675}, {"caption": "a women is singing and dancing in front of a young man", "video_id": "video10117", "sen_id": 236676}, {"caption": "a lady sings and dances and a man passes by", "video_id": "video10117", "sen_id": 236677}, {"caption": "sexy girl dancing and singing very very hot", "video_id": "video10117", "sen_id": 236678}, {"caption": "a person with long hair talking to a person wearing a jacket that s walking away", "video_id": "video10117", "sen_id": 236679}, {"caption": "a man kneels down in front of a pregnant woman takes her head in his hands and talks to her gently reassuring her then kisses her belly", "video_id": "video10893", "sen_id": 236680}, {"caption": "man in black shirt consoling a preganant woman in a yellow dress", "video_id": "video10893", "sen_id": 236681}, {"caption": "a man is kissing his wife's stomach who is pregnant", "video_id": "video10893", "sen_id": 236682}, {"caption": "a man puts his hands on his wife's face", "video_id": "video10893", "sen_id": 236683}, {"caption": "a man caresses and talks to a very pregnant woman", "video_id": "video10893", "sen_id": 236684}, {"caption": "a person is grabbing another person on the sides of their face and then kisses her pregnant belly", "video_id": "video10893", "sen_id": 236685}, {"caption": "a man kneeling down holding the face of a pregnant woman and kissing her", "video_id": "video10893", "sen_id": 236686}, {"caption": "a man is making love to a women in yellow saree", "video_id": "video10893", "sen_id": 236687}, {"caption": "there is a pregnant women holding hand of her hand", "video_id": "video10893", "sen_id": 236688}, {"caption": "the south indian cinema part the hero and heroine are enjoying thier life", "video_id": "video10893", "sen_id": 236689}, {"caption": "the man kisses the belly of the preganant woman", "video_id": "video10893", "sen_id": 236690}, {"caption": "the men sit beside a pregnant lady and kiss her", "video_id": "video10893", "sen_id": 236691}, {"caption": "there is a man in black dress dating with his woman", "video_id": "video10893", "sen_id": 236692}, {"caption": "man black color dressed kissong a lady", "video_id": "video10893", "sen_id": 236693}, {"caption": "in a movie one hero roamance with a pregnant lady", "video_id": "video10893", "sen_id": 236694}, {"caption": "a hero in black dress and a woman in yellow dress a scene of flim clip", "video_id": "video10893", "sen_id": 236695}, {"caption": "there is a pregnent women with her husband", "video_id": "video10893", "sen_id": 236696}, {"caption": " holding a womans face is speaking to her while music plays", "video_id": "video10893", "sen_id": 236697}, {"caption": "a sequence from a indian movie where a man kisses a pregnant woman", "video_id": "video10893", "sen_id": 236698}, {"caption": "a man with a black moustache comforts his pregnant wife", "video_id": "video10893", "sen_id": 236699}, {"caption": "a man is describing how his invention was designed with energy efficiency in mind", "video_id": "video12365", "sen_id": 236700}, {"caption": "a man discusses the characteristics of a lighting system he is using", "video_id": "video12365", "sen_id": 236701}, {"caption": "a man is explaining his use and preference to led lights", "video_id": "video12365", "sen_id": 236702}, {"caption": "there are light up lights going around a bicycle making it appear to glow", "video_id": "video12365", "sen_id": 236703}, {"caption": "an led system is described as running on lithium batteries", "video_id": "video12365", "sen_id": 236704}, {"caption": "an led light that goes on a bicycle wheel", "video_id": "video12365", "sen_id": 236705}, {"caption": "a man is speaking about an led light that is made to be placed on a bike", "video_id": "video12365", "sen_id": 236706}, {"caption": "the man is narrating as he talks about the bike", "video_id": "video12365", "sen_id": 236707}, {"caption": "there is green and purple lds lights on a wheel", "video_id": "video12365", "sen_id": 236708}, {"caption": "a wheel is spinning with a light illuminating it's spokes", "video_id": "video12365", "sen_id": 236709}, {"caption": "a glow in the dark bicycle wheel is spinning followed by four purple led lights", "video_id": "video12365", "sen_id": 236710}, {"caption": "a man discusses a new light that attaches to a bike tire", "video_id": "video12365", "sen_id": 236711}, {"caption": "a man is talking about using led lights on a bicycle tire", "video_id": "video12365", "sen_id": 236712}, {"caption": "a green flashing light is puling through a tube to four led lights", "video_id": "video12365", "sen_id": 236713}, {"caption": "a bike tire is spinning with a small light shining on it", "video_id": "video12365", "sen_id": 236714}, {"caption": "a group of lights placed on the wheel of a bike", "video_id": "video12365", "sen_id": 236715}, {"caption": "there is cycle wheel is spins fast and a bulb also fitted in its middle part", "video_id": "video12365", "sen_id": 236716}, {"caption": "man talking about the energy efficiency of leds", "video_id": "video12365", "sen_id": 236717}, {"caption": "lights are added to cycle its in blue color there are four lights", "video_id": "video12365", "sen_id": 236718}, {"caption": "some neon text is on a futuristic back ground", "video_id": "video12365", "sen_id": 236719}, {"caption": "a building with a red roof by a body of water", "video_id": "video10600", "sen_id": 236720}, {"caption": "a man in the background talking while being shoe a house", "video_id": "video10600", "sen_id": 236721}, {"caption": "a cartoon man walking and a church next to the water", "video_id": "video10600", "sen_id": 236722}, {"caption": "a grass lawn and bushes are shown in the foreground while a body of water is in the background the camera pans to the right to show a large white building with a red roof", "video_id": "video10600", "sen_id": 236723}, {"caption": "a white house with red roof over looking the sea", "video_id": "video10600", "sen_id": 236724}, {"caption": "{}", "video_id": "video10600", "sen_id": 236725}, {"caption": "the guest house located near the sea shore looks very nice", "video_id": "video10600", "sen_id": 236726}, {"caption": "a red-roofed house on the water side", "video_id": "video10600", "sen_id": 236727}, {"caption": "a beautiful house with brown roof near sea and with large meadow", "video_id": "video10600", "sen_id": 236728}, {"caption": "an opening sequence is shown and then the shot pans from water to a house while a voice-over in another language is heard", "video_id": "video10600", "sen_id": 236729}, {"caption": "a panning view of a beautiful ocean front with a large red roofed building", "video_id": "video10600", "sen_id": 236730}, {"caption": "there is a beautiful blue sky shining down on a pink roofed house surrounded by a morning breeze from the water", "video_id": "video10600", "sen_id": 236731}, {"caption": "a house with a red roof is sitting by the beach", "video_id": "video10600", "sen_id": 236732}, {"caption": "scenes are shown from a lovely sleepy village on the seaside", "video_id": "video10600", "sen_id": 236733}, {"caption": "its about africa nice place to visit the house model is so nice", "video_id": "video10600", "sen_id": 236734}, {"caption": "a man is talking as a building is filmed", "video_id": "video10600", "sen_id": 236735}, {"caption": "some one showing the beautiful scene of the african nature", "video_id": "video10600", "sen_id": 236736}, {"caption": "a nice beach area that has a building with a red roof", "video_id": "video10600", "sen_id": 236737}, {"caption": "this video shows a beautiful house which is in near beach", "video_id": "video10600", "sen_id": 236738}, {"caption": "a white house with red roof is surrounded by trees and grass near the ocean", "video_id": "video10600", "sen_id": 236739}, {"caption": "a woman on a commentary show talks about a female singer's performance", "video_id": "video10324", "sen_id": 236740}, {"caption": "a woman with brown hair dressed in a black pencil skirt and a gold colored blouse talks about the newsfeed program at her place of work", "video_id": "video10324", "sen_id": 236741}, {"caption": "there is a lean and tall lady talking about something", "video_id": "video10324", "sen_id": 236742}, {"caption": "a woman in a black skirt is standing next to a tv and talking to the camera", "video_id": "video10324", "sen_id": 236743}, {"caption": "a woman gushes about a performance at a victoria s secret fashion show", "video_id": "video10324", "sen_id": 236744}, {"caption": "a woman from the televison show called news feed is talking", "video_id": "video10324", "sen_id": 236745}, {"caption": "a woman stands by a tv and talks about someones dress", "video_id": "video10324", "sen_id": 236746}, {"caption": "a well dressed newswoman is describing a successful victoria s secret performance", "video_id": "video10324", "sen_id": 236747}, {"caption": "a woman is talking in front of a television about news feed", "video_id": "video10324", "sen_id": 236748}, {"caption": "a journalist talking about a victoria s secret model and her dress", "video_id": "video10324", "sen_id": 236749}, {"caption": "a woman in a gold shirt on a show talking about news", "video_id": "video10324", "sen_id": 236750}, {"caption": "a newswoman discusses a woman setting the fashion bar high wearing the dress of all dresses", "video_id": "video10324", "sen_id": 236751}, {"caption": "a woman dressed in a black skirt and gold and black top stands on a set next to a screen", "video_id": "video10324", "sen_id": 236752}, {"caption": "a lady in a gold shirt is talking about the entertainment industry", "video_id": "video10324", "sen_id": 236753}, {"caption": "there is a woman wearing a black skirt speaking in front of a television", "video_id": "video10324", "sen_id": 236754}, {"caption": "a woman on a talk show talking about fashion with a sarcastic tone", "video_id": "video10324", "sen_id": 236755}, {"caption": "a woman in gold and black is describing a singer s dress", "video_id": "video10324", "sen_id": 236756}, {"caption": "a woman in leopard print top and black skirt is describing a musical performance at a fashion show", "video_id": "video10324", "sen_id": 236757}, {"caption": "a woman in a news feed video is talking about a dress", "video_id": "video10324", "sen_id": 236758}, {"caption": "sexy blonde in printed top and black skirt talking to the camera", "video_id": "video10324", "sen_id": 236759}, {"caption": "a cartoon girl talks about what her chores are like", "video_id": "video12589", "sen_id": 236760}, {"caption": "a doll is reading a book on the couch", "video_id": "video12589", "sen_id": 236761}, {"caption": "two women set on white couches and hold clip boards and talk excitedly", "video_id": "video12589", "sen_id": 236762}, {"caption": "a blonde animated girl gets angry and a brunette animated girl explains a choice that she made", "video_id": "video12589", "sen_id": 236763}, {"caption": "two barbie cartoon characters talk poorly about other girls", "video_id": "video12589", "sen_id": 236764}, {"caption": "a variety of animated girls sitting on a sofa while talking", "video_id": "video12589", "sen_id": 236765}, {"caption": "a cartoon barbie doll dressed in pink and purple is reading a book", "video_id": "video12589", "sen_id": 236766}, {"caption": "a cartoon of barbie in a pink room complaining about girls they know", "video_id": "video12589", "sen_id": 236767}, {"caption": "an animated girl is talking to viewers with her friend", "video_id": "video12589", "sen_id": 236768}, {"caption": "a lady animated doll is sleeping", "video_id": "video12589", "sen_id": 236769}, {"caption": "an animation film is playing in the screen", "video_id": "video12589", "sen_id": 236770}, {"caption": "two sisters are arguing over household chores", "video_id": "video12589", "sen_id": 236771}, {"caption": "animated women sit on a white couch and complain", "video_id": "video12589", "sen_id": 236772}, {"caption": "a girl in pink is sitting on a sofa and another one in purple sitting on a sofa", "video_id": "video12589", "sen_id": 236773}, {"caption": "a cartoon girl like barbie holding pad in her hands sitting on sofa talks about an issue", "video_id": "video12589", "sen_id": 236774}, {"caption": "a woman on a couch is talking to some one", "video_id": "video12589", "sen_id": 236775}, {"caption": "two teenage girls are having an argument", "video_id": "video12589", "sen_id": 236776}, {"caption": "the two cute barbie dolls comfortably sitting on the sofaone is speaking with hot and the another one is very casual", "video_id": "video12589", "sen_id": 236777}, {"caption": "animated girls speaking about free time and how they spend it", "video_id": "video12589", "sen_id": 236778}, {"caption": "two lady cartoon characters talking", "video_id": "video12589", "sen_id": 236779}, {"caption": "a couple of people showing how to play a video game", "video_id": "video11138", "sen_id": 236780}, {"caption": "a white circle moves across a simulated field filled with blue flashing dots", "video_id": "video11138", "sen_id": 236781}, {"caption": "a man shows off the different areas on a map with different trails on it", "video_id": "video11138", "sen_id": 236782}, {"caption": "man talking about fast traveling in a video game", "video_id": "video11138", "sen_id": 236783}, {"caption": "people are discussing areas on a land map", "video_id": "video11138", "sen_id": 236784}, {"caption": "a map of the mountains a lake and a city", "video_id": "video11138", "sen_id": 236785}, {"caption": "its about the earth map showing the geographical points", "video_id": "video11138", "sen_id": 236786}, {"caption": "the map showing position of each and every place", "video_id": "video11138", "sen_id": 236787}, {"caption": "a gamer checks out the global map in his game", "video_id": "video11138", "sen_id": 236788}, {"caption": "a man narrates as he manipulates a video game map", "video_id": "video11138", "sen_id": 236789}, {"caption": "there are some explanation with a graph", "video_id": "video11138", "sen_id": 236790}, {"caption": "two people discussing on how to get direction through the fastest mans", "video_id": "video11138", "sen_id": 236791}, {"caption": "two men who are playing a video game talk about their strategy", "video_id": "video11138", "sen_id": 236792}, {"caption": "a man giving instructions to other gamers while drawing on a virtual map", "video_id": "video11138", "sen_id": 236793}, {"caption": "these people are playing a game and deciding where ti fast travel to", "video_id": "video11138", "sen_id": 236794}, {"caption": "there is something impressing matters going on", "video_id": "video11138", "sen_id": 236795}, {"caption": "a map part is on the screen a small arrow moving", "video_id": "video11138", "sen_id": 236796}, {"caption": "multiple people are having a discussion about a map route and highlighting the routes", "video_id": "video11138", "sen_id": 236797}, {"caption": "person presenting the path from one to another place", "video_id": "video11138", "sen_id": 236798}, {"caption": "a map of an area is being shown overhead", "video_id": "video11138", "sen_id": 236799}, {"caption": "two men in suits pose for pictures in front of a large group of cameramen", "video_id": "video12275", "sen_id": 236800}, {"caption": "two men in formals are talking and then reporters take pictures of them", "video_id": "video12275", "sen_id": 236801}, {"caption": "famous actors robert downey jr ammd robert duvall chat", "video_id": "video12275", "sen_id": 236802}, {"caption": "a people are standing and a two men are posing for a photo", "video_id": "video12275", "sen_id": 236803}, {"caption": "two men in tuxedos talk together in large crowd during event while photographs flash", "video_id": "video12275", "sen_id": 236804}, {"caption": "two movie stars in black tuxedos are standing outside a hotel talking and posing for pictures surrounded by crowds", "video_id": "video12275", "sen_id": 236805}, {"caption": "there are two reputed men in the middle of people", "video_id": "video12275", "sen_id": 236806}, {"caption": "robert downey jr is talking to an older man and then poses for a photo with him", "video_id": "video12275", "sen_id": 236807}, {"caption": "two men in formal dress are speaking to each other in a large crowd of people outside", "video_id": "video12275", "sen_id": 236808}, {"caption": "robert downey jr and another guy being photo shot by the paparazzi", "video_id": "video12275", "sen_id": 236809}, {"caption": "robert downey jr and robert duvall taking pictures for the media", "video_id": "video12275", "sen_id": 236810}, {"caption": "a famous actor passes through a crowd and takes photos with a man", "video_id": "video12275", "sen_id": 236811}, {"caption": "robert duvall and robert downey jr pose for a photo", "video_id": "video12275", "sen_id": 236812}, {"caption": "two celebrities pose for pictures", "video_id": "video12275", "sen_id": 236813}, {"caption": "robert downey jr and robert deniro are found together in an unusual photo opportunity", "video_id": "video12275", "sen_id": 236814}, {"caption": "two men in black suits standing in a croud talking then getting there picture taken", "video_id": "video12275", "sen_id": 236815}, {"caption": "two men talking with a huge crowd behind them", "video_id": "video12275", "sen_id": 236816}, {"caption": "old guy talking to a young man in suit", "video_id": "video12275", "sen_id": 236817}, {"caption": "a old man in white color dress standing with other person shouting speaking taking photograph in outside audience displaying on screen", "video_id": "video12275", "sen_id": 236818}, {"caption": "a crowd cheers as robert downey jr talks to another man in a suit", "video_id": "video12275", "sen_id": 236819}, {"caption": "two people are discussing the publication of scientific journals", "video_id": "video12451", "sen_id": 236820}, {"caption": "man in a white dress shirt holding a book and talking to a woman", "video_id": "video12451", "sen_id": 236821}, {"caption": "a professor talking and teaching things in a library", "video_id": "video12451", "sen_id": 236822}, {"caption": "a man and a woman discuss a book in a library", "video_id": "video12451", "sen_id": 236823}, {"caption": "a woman is asking a man questions about a book", "video_id": "video12451", "sen_id": 236824}, {"caption": "a black dress wearing girl asking doubt with the professor and clarify her doubts", "video_id": "video12451", "sen_id": 236825}, {"caption": "an older man is discussing a book in a library", "video_id": "video12451", "sen_id": 236826}, {"caption": "a girl is talking with a man he have a book", "video_id": "video12451", "sen_id": 236827}, {"caption": "a woman in a black suit is talking to a man in a blue shirt which is reading a magazine", "video_id": "video12451", "sen_id": 236828}, {"caption": "a woman talking to a professor about chemistry while in a library", "video_id": "video12451", "sen_id": 236829}, {"caption": "a blue tshirt man talking with a book", "video_id": "video12451", "sen_id": 236830}, {"caption": "a man is standing beside shelves with books on them explaining something to a woman", "video_id": "video12451", "sen_id": 236831}, {"caption": "a woman interviews a professor about journals in a library", "video_id": "video12451", "sen_id": 236832}, {"caption": "lady asking bert meijer about the chassis in germany", "video_id": "video12451", "sen_id": 236833}, {"caption": "a woman is interviewing a male about scientific journals in front of a bookshelf", "video_id": "video12451", "sen_id": 236834}, {"caption": "inside a library a lady is asking questions to the man", "video_id": "video12451", "sen_id": 236835}, {"caption": "a young man is asking an older professor about scientist while both are in a room full of books all the while funky jazz beats play behind them", "video_id": "video12451", "sen_id": 236836}, {"caption": " bert meijer talks in an interview while standing by some bookshelves", "video_id": "video12451", "sen_id": 236837}, {"caption": "a lady asking doctor bert mejier about the germans", "video_id": "video12451", "sen_id": 236838}, {"caption": "a man and woman talking about scientist with journal publications", "video_id": "video12451", "sen_id": 236839}, {"caption": "someone is demonstrating how to apply makeup to their face", "video_id": "video10537", "sen_id": 236840}, {"caption": "a model is doing a tutorial on proper way to paint on fake eyebrows", "video_id": "video10537", "sen_id": 236841}, {"caption": "a makeup tutorial for the woman's eyebrows", "video_id": "video10537", "sen_id": 236842}, {"caption": "a woman with dark hair brushing her eyebrows", "video_id": "video10537", "sen_id": 236843}, {"caption": "a woman filling in and grooming her eyebrows", "video_id": "video10537", "sen_id": 236844}, {"caption": "a woman showcases doing eyebrow make", "video_id": "video10537", "sen_id": 236845}, {"caption": "a woman is darkening her eyebrows with make up and a yellow brush", "video_id": "video10537", "sen_id": 236846}, {"caption": "a lady with dark hair is doing her make up and describing what kind of brush she is using to do her eyebrows", "video_id": "video10537", "sen_id": 236847}, {"caption": "a woman giving an eyebrow painting with a brush tutorial", "video_id": "video10537", "sen_id": 236848}, {"caption": "a woman is applying make up and recording herself", "video_id": "video10537", "sen_id": 236849}, {"caption": "a woman shows how to apply makeup to your eyebrows", "video_id": "video10537", "sen_id": 236850}, {"caption": "a women is drawing her eyebrows in using a brush", "video_id": "video10537", "sen_id": 236851}, {"caption": "a woman applies makeup to eyebrows with fine brush then blends upwards", "video_id": "video10537", "sen_id": 236852}, {"caption": "a woman is putting makeup on her face", "video_id": "video10537", "sen_id": 236853}, {"caption": "a women is putting eye makle-up on their own and the eye-brows shown here is very brigh t", "video_id": "video10537", "sen_id": 236854}, {"caption": "a woman with brown hair is filling in her eyebrows", "video_id": "video10537", "sen_id": 236855}, {"caption": "a woman with dark hair is painting her eyebrows so they are darker and thicker", "video_id": "video10537", "sen_id": 236856}, {"caption": "a young woman is using a make-up brush to enhance her eyebrows", "video_id": "video10537", "sen_id": 236857}, {"caption": "a make up artist is showing her skills by extending her eyebrows with cosmetics", "video_id": "video10537", "sen_id": 236858}, {"caption": "a women is applying make up to her eyes using brush", "video_id": "video10537", "sen_id": 236859}, {"caption": "words cross the screen before a man is being interviewed in a study", "video_id": "video10746", "sen_id": 236860}, {"caption": "white text moves upward against a red vertical panel placed in front of a scene of soldiers and vehicles a man speaks in an elegant room with a chandelier bookcases french doors and dark draperies", "video_id": "video10746", "sen_id": 236861}, {"caption": "a man talks about an issue that has arisen related to leaked information", "video_id": "video10746", "sen_id": 236862}, {"caption": "a news reporter discusses the issues surrounding the leaking of classified material", "video_id": "video10746", "sen_id": 236863}, {"caption": "opening credits and a man in a suit talking in a room", "video_id": "video10746", "sen_id": 236864}, {"caption": "a man in a suit and tie is speaking into a a couple microphones", "video_id": "video10746", "sen_id": 236865}, {"caption": "a man with a black suit is discussing his insight on wikileaks", "video_id": "video10746", "sen_id": 236866}, {"caption": "a older gentleman in a suit taking about wiki leaks", "video_id": "video10746", "sen_id": 236867}, {"caption": "a man in a suit stands and talks to two mics", "video_id": "video10746", "sen_id": 236868}, {"caption": "a british politician presents their reaction to a leak of information", "video_id": "video10746", "sen_id": 236869}, {"caption": "a wikileaks graphic whose host talks about iran and its trust issues with the us", "video_id": "video10746", "sen_id": 236870}, {"caption": "two people are talking about the possibilities of bombing iran", "video_id": "video10746", "sen_id": 236871}, {"caption": "a man in a suit talking to the media", "video_id": "video10746", "sen_id": 236872}, {"caption": "man in black suit is talking about the news", "video_id": "video10746", "sen_id": 236873}, {"caption": "a video story of a wikileaks scandal is being introduced showing interviews as well", "video_id": "video10746", "sen_id": 236874}, {"caption": "a news story about wikileaks being showed on television", "video_id": "video10746", "sen_id": 236875}, {"caption": "the whole notion on diplomacy is built on interactions and trust", "video_id": "video10746", "sen_id": 236876}, {"caption": "a person is telling that whole conversation is to interact", "video_id": "video10746", "sen_id": 236877}, {"caption": "a news clip of a man talking about some kind of information", "video_id": "video10746", "sen_id": 236878}, {"caption": "a guy with a blue tie is sitting and talking", "video_id": "video10746", "sen_id": 236879}, {"caption": "description of a new car by ferrari called the california t described by a narrator", "video_id": "video10615", "sen_id": 236880}, {"caption": "a fancy red car spins on a platform after unveiling at an auto show", "video_id": "video10615", "sen_id": 236881}, {"caption": "in a showroom men show off a new red car", "video_id": "video10615", "sen_id": 236882}, {"caption": "a show room with many vehicles new parked in a enclosed building", "video_id": "video10615", "sen_id": 236883}, {"caption": "a red convertible automobile is being unveiled at a car show and several features are showcased as it revolves", "video_id": "video10615", "sen_id": 236884}, {"caption": "fancy new red ferraris are on display at an unveiling for a car show", "video_id": "video10615", "sen_id": 236885}, {"caption": "a video graphic about a red showroom car with a hard top and a v8 turbo engine", "video_id": "video10615", "sen_id": 236886}, {"caption": "a new fantastic red color car introduced in model way", "video_id": "video10615", "sen_id": 236887}, {"caption": "the specifications of a new ferrari convertible are described", "video_id": "video10615", "sen_id": 236888}, {"caption": "a red sports car in in a showroom on a spinning platform", "video_id": "video10615", "sen_id": 236889}, {"caption": "a new model of ferrari vehicle is displayed at a car show", "video_id": "video10615", "sen_id": 236890}, {"caption": "a man talks about a show of fancy sports cars", "video_id": "video10615", "sen_id": 236891}, {"caption": "there is a stylish red car on the floor", "video_id": "video10615", "sen_id": 236892}, {"caption": "sports cars are shown under bright lights at a large indoor car show", "video_id": "video10615", "sen_id": 236893}, {"caption": "it is a car show and someone is sitting in a red car", "video_id": "video10615", "sen_id": 236894}, {"caption": "there is someone introducing a red car", "video_id": "video10615", "sen_id": 236895}, {"caption": "a car in red colour was introduced in the exhibition", "video_id": "video10615", "sen_id": 236896}, {"caption": "the new sport model red car is displayed on the diace", "video_id": "video10615", "sen_id": 236897}, {"caption": "a commercial promo of a car from ferrari on newcarnettv about california 3", "video_id": "video10615", "sen_id": 236898}, {"caption": "an expensive car is being filmed out side", "video_id": "video10615", "sen_id": 236899}, {"caption": "a man is talking about the options another man has while negotiating a deal", "video_id": "video10010", "sen_id": 236900}, {"caption": "a young man in a leather jacket walks in a subway tunnel", "video_id": "video10010", "sen_id": 236901}, {"caption": "a clip showing a person's eye dilating a lot", "video_id": "video10010", "sen_id": 236902}, {"caption": "the pupil of a person's eye is constricting", "video_id": "video10010", "sen_id": 236903}, {"caption": "a guy walking alone on a railroad at night", "video_id": "video10010", "sen_id": 236904}, {"caption": "a man is acting dramatically even while sitting at the dinner table with his family", "video_id": "video10010", "sen_id": 236905}, {"caption": "a young man walking down railroad tracks wearing a black jacket", "video_id": "video10010", "sen_id": 236906}, {"caption": "pupils dilating and a person by a wall people eating dinner and a woman reading a file", "video_id": "video10010", "sen_id": 236907}, {"caption": "a man narrates while scenes of a crime show are shown", "video_id": "video10010", "sen_id": 236908}, {"caption": "a guy is walking around underground and eats with family as part of a montage", "video_id": "video10010", "sen_id": 236909}, {"caption": "a man is talking as a pupil contracts he walks down some train tracks stands against a building and eats dinner with his unassuming family", "video_id": "video10010", "sen_id": 236910}, {"caption": "a man walks alone while narrating what he is saying to someone else about secrecy", "video_id": "video10010", "sen_id": 236911}, {"caption": "a man walking down a dark street and then sitting down at the table with a couple of people", "video_id": "video10010", "sen_id": 236912}, {"caption": "the black pupil of a gray eye gets smaller a man walks between littered train tracks at night and a briefcase lid is opened revealing a numbered folder with a centered symbol", "video_id": "video10010", "sen_id": 236913}, {"caption": "a guy with an eyeball is looking at a thing", "video_id": "video10010", "sen_id": 236914}, {"caption": "a movie trailer is showing multiple clips in an arranged order", "video_id": "video10010", "sen_id": 236915}, {"caption": "a man with a purpose that is holding a very important secret", "video_id": "video10010", "sen_id": 236916}, {"caption": "a man walks down a dark lit hallway with tracks on the side", "video_id": "video10010", "sen_id": 236917}, {"caption": "a sole man is walking through a darkened alley then sitting down to a meal with his family this is a very intriguing looking dinner", "video_id": "video10010", "sen_id": 236918}, {"caption": "a man with a eye ball is looking inside", "video_id": "video10010", "sen_id": 236919}, {"caption": "a person is giving a tour of the hotel room", "video_id": "video11326", "sen_id": 236920}, {"caption": "young man in grey shirt and yellow hat laying on a bed in a hotel", "video_id": "video11326", "sen_id": 236921}, {"caption": "a tour around a hotel room's amenities with a man laying across the bed", "video_id": "video11326", "sen_id": 236922}, {"caption": "a woman gives an impromptu tour of a hotel suite she is staying in", "video_id": "video11326", "sen_id": 236923}, {"caption": "a woman speaks to a man laying in a hotel bed then looks at the bathroom", "video_id": "video11326", "sen_id": 236924}, {"caption": "a man is laying on a bed and a woman is taking a video of their hotel room and talking about how pretty it is", "video_id": "video11326", "sen_id": 236925}, {"caption": "a woman is behind the camera describing a hotel room and there is a man on a bed in front of the camera", "video_id": "video11326", "sen_id": 236926}, {"caption": "on the hotel room the boy is laying the bed and enjoying the smart phone", "video_id": "video11326", "sen_id": 236927}, {"caption": "a woman films the inside of a hotel suite and pays a lot of attention to the throw pillows on the bed", "video_id": "video11326", "sen_id": 236928}, {"caption": "a bed room a boy with grey shirt and yellow cap lying on the bed", "video_id": "video11326", "sen_id": 236929}, {"caption": "a woman handling a personal camera while excitedly describing the view from her hotel room then pans inside to show all the pillows on the bed and parts of the bathroom", "video_id": "video11326", "sen_id": 236930}, {"caption": "a person video taping the inside of the hotel they are staying at", "video_id": "video11326", "sen_id": 236931}, {"caption": "a man lying on a bed while a woman talks and moves a camera around a hotel room", "video_id": "video11326", "sen_id": 236932}, {"caption": "a guy in a yellowhat lays on the bed using his cellphone", "video_id": "video11326", "sen_id": 236933}, {"caption": "a young boy is playing video game lying on bed", "video_id": "video11326", "sen_id": 236934}, {"caption": "a video walkthrough of a hotel room a young man is laying on the bed", "video_id": "video11326", "sen_id": 236935}, {"caption": "a woman describes a luxury hotel room that she is staying in with her husband", "video_id": "video11326", "sen_id": 236936}, {"caption": "a woman gives a quick tour of her hotel room", "video_id": "video11326", "sen_id": 236937}, {"caption": "someone is showing the interior of a house and is explaining", "video_id": "video11326", "sen_id": 236938}, {"caption": "the boy is laying on the bed of the hotel room as the woman films him", "video_id": "video11326", "sen_id": 236939}, {"caption": "a bird is flying in a room while a woman is walking around", "video_id": "video10263", "sen_id": 236940}, {"caption": "a woman walks up a staircase in a fancy home and then looks at a painting", "video_id": "video10263", "sen_id": 236941}, {"caption": "a woman is walking up a staircase in a large house music is playing in the background and the last scene is of a picture hanging on the wall", "video_id": "video10263", "sen_id": 236942}, {"caption": "two woman singing and walking around a building", "video_id": "video10263", "sen_id": 236943}, {"caption": "a woman wearing a formal gown is walking in a room while music is playing", "video_id": "video10263", "sen_id": 236944}, {"caption": "two women wearing gold dresses sit on a sofa by glass doors a brown-and-white bird perches in an elegant room sliding doors close a women ascends a staircase and an oil painting hangs on a wall", "video_id": "video10263", "sen_id": 236945}, {"caption": "a eagle sitting on the compound and girl is walking inside the room", "video_id": "video10263", "sen_id": 236946}, {"caption": "there is a women singing inside a house", "video_id": "video10263", "sen_id": 236947}, {"caption": "an eagle sits on a stand while a lady walks on the staircase with a photo frame in front of her", "video_id": "video10263", "sen_id": 236948}, {"caption": "there is a woman in a dress walking up the stairs in a big house", "video_id": "video10263", "sen_id": 236949}, {"caption": "two girls are sitting on a sofa while a bird comes in flying", "video_id": "video10263", "sen_id": 236950}, {"caption": "a female with long hair and wearing a brown spotted dress is walking toward a colorful painting on the wall", "video_id": "video10263", "sen_id": 236951}, {"caption": "two women sit on a couch a bird flies a short distance then lands on a perch then a woman walks away from the camera", "video_id": "video10263", "sen_id": 236952}, {"caption": "two womens in the room certainly door closed and sees the photo frame", "video_id": "video10263", "sen_id": 236953}, {"caption": "couple of sexy girls walking upstairs to the picture frame where the eagle sat", "video_id": "video10263", "sen_id": 236954}, {"caption": "two girls are sitting on sofa and talking while a bird comes inside the room", "video_id": "video10263", "sen_id": 236955}, {"caption": "a lady is singing and calling out for a bird", "video_id": "video10263", "sen_id": 236956}, {"caption": "on the fashion show ramb the eagle is came in the room and beauty queens are sitting in the room", "video_id": "video10263", "sen_id": 236957}, {"caption": "a bird flies around a room while women walk about", "video_id": "video10263", "sen_id": 236958}, {"caption": "a woman is walking up some red stairs inside", "video_id": "video10263", "sen_id": 236959}, {"caption": "a man in blue shirt is sitting behind a desk", "video_id": "video10734", "sen_id": 236960}, {"caption": "a scientist is discussing his discovery with transitors and their uses", "video_id": "video10734", "sen_id": 236961}, {"caption": "a man in a blue shirt with books behind him describes how the transistor got smaller and smaller over time", "video_id": "video10734", "sen_id": 236962}, {"caption": "a moving graphic and a balding man wearing glasses who sits in front of a shelving unit of books explains a straight forward application", "video_id": "video10734", "sen_id": 236963}, {"caption": "there is a picture of a band gap and quantum dot followed by a man speaking in a room in a blue shirt", "video_id": "video10734", "sen_id": 236964}, {"caption": "a man discusses the size of the transistor and the reason for it", "video_id": "video10734", "sen_id": 236965}, {"caption": "a man in a blue shirt is talking about transistors", "video_id": "video10734", "sen_id": 236966}, {"caption": "a man sitting behind a desk giving an interview", "video_id": "video10734", "sen_id": 236967}, {"caption": "a man in a blue shirt talking about transistors", "video_id": "video10734", "sen_id": 236968}, {"caption": "a man sitting at a desk talking about transistors", "video_id": "video10734", "sen_id": 236969}, {"caption": "a man in a blue button-up shirt sits in an office and begins to discuss transistor's form and functionality", "video_id": "video10734", "sen_id": 236970}, {"caption": "a balding man wearing eyeglasses sits at a desk in an office with shelving filled with books a printer a black box a thermos cabinets and a spare chair", "video_id": "video10734", "sen_id": 236971}, {"caption": "a", "video_id": "video10734", "sen_id": 236972}, {"caption": "a man in blue dress and spectacles is talking", "video_id": "video10734", "sen_id": 236973}, {"caption": "a man in blue shirt talking in a room", "video_id": "video10734", "sen_id": 236974}, {"caption": "an old man in his office is talking about scientific", "video_id": "video10734", "sen_id": 236975}, {"caption": "old guy in glasses in blue shirt talking about the application", "video_id": "video10734", "sen_id": 236976}, {"caption": "a old man sitting in front of the book stand and explaining some matter", "video_id": "video10734", "sen_id": 236977}, {"caption": "a man in the blue shirt is telling a story", "video_id": "video10734", "sen_id": 236978}, {"caption": "a man in a light blue shirt is heard saying about the straight forward application which will affect the design of the transistor", "video_id": "video10734", "sen_id": 236979}, {"caption": "making top ramen noodle with veggies and spices", "video_id": "video12524", "sen_id": 236980}, {"caption": "a person is cooking some ramen noodles in a wok with vegetables", "video_id": "video12524", "sen_id": 236981}, {"caption": "a woman showing how to make and season ramen noodles", "video_id": "video12524", "sen_id": 236982}, {"caption": "a chef works on a recipe by adding seasoning to a wok", "video_id": "video12524", "sen_id": 236983}, {"caption": "in a kitchen someone is cooking noodles in a frying pan and adding spices", "video_id": "video12524", "sen_id": 236984}, {"caption": "a woman is making a cooking tutorial on how to make a certain food", "video_id": "video12524", "sen_id": 236985}, {"caption": "ramen noodles and scallions are sizzling in a non-stick pan while a woman cuts open the flavor packet that comes with ramen", "video_id": "video12524", "sen_id": 236986}, {"caption": "someone is adding various ingredients to a pan", "video_id": "video12524", "sen_id": 236987}, {"caption": "a woman is adding spices to noodles that is in the pan cooking", "video_id": "video12524", "sen_id": 236988}, {"caption": "a woman cooking ramen noodles in a kitchen", "video_id": "video12524", "sen_id": 236989}, {"caption": "a person is preparing a tasty dish in a bowl", "video_id": "video12524", "sen_id": 236990}, {"caption": "a woman is cooking noodles and other items in a large black pot", "video_id": "video12524", "sen_id": 236991}, {"caption": "one beautiful and lovely women make recipe with noodles", "video_id": "video12524", "sen_id": 236992}, {"caption": "a woman making ramen in a wok adding a spice packet to noodles that are already in the pan", "video_id": "video12524", "sen_id": 236993}, {"caption": "a woman explaining how to cook maggie in pan in the kitchen room", "video_id": "video12524", "sen_id": 236994}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12524", "sen_id": 236995}, {"caption": "a woman is cooking food she is describing what she is doing as she is doing it", "video_id": "video12524", "sen_id": 236996}, {"caption": "a woman is demonstrating howto cook a recipe in a frying pan", "video_id": "video12524", "sen_id": 236997}, {"caption": "a cooking video with a woman adding a spice back to a wok filled with greens and noodles", "video_id": "video12524", "sen_id": 236998}, {"caption": "a person is cooking some noodles in a pan", "video_id": "video12524", "sen_id": 236999}, {"caption": "a man explains the extraction of a liquid that is stored in a mason jar", "video_id": "video11314", "sen_id": 237000}, {"caption": "a man in a blue shirt fills a brown bottle at a sink", "video_id": "video11314", "sen_id": 237001}, {"caption": "a person is dropping the wine bottole in the basin", "video_id": "video11314", "sen_id": 237002}, {"caption": "a man is holding a glass jar above metal sink", "video_id": "video11314", "sen_id": 237003}, {"caption": "a man discusses his process for extracting flavor from a substance", "video_id": "video11314", "sen_id": 237004}, {"caption": "a guy is having a bottle inside a kitchen and shaking it", "video_id": "video11314", "sen_id": 237005}, {"caption": "a man in a kitchen turning some bottle near a wash basin", "video_id": "video11314", "sen_id": 237006}, {"caption": "a man in a blue shirt shaking a mason jar", "video_id": "video11314", "sen_id": 237007}, {"caption": "one man shake bottle five times and left it", "video_id": "video11314", "sen_id": 237008}, {"caption": "a man fills the glass bottle with dark color substancewe need to shake it", "video_id": "video11314", "sen_id": 237009}, {"caption": "a person is mixing the ingredients in the bottle", "video_id": "video11314", "sen_id": 237010}, {"caption": "a person is cleaning the bottle under the tap", "video_id": "video11314", "sen_id": 237011}, {"caption": "the man shakes the bottle near the sink", "video_id": "video11314", "sen_id": 237012}, {"caption": "a man is explain about food items", "video_id": "video11314", "sen_id": 237013}, {"caption": "a man in a blue shirt is shaking liquid in a bottle", "video_id": "video11314", "sen_id": 237014}, {"caption": "a man is shaking a glass bottle near kitchen sink filled with something", "video_id": "video11314", "sen_id": 237015}, {"caption": "a person explaining a concept in a show", "video_id": "video11314", "sen_id": 237016}, {"caption": "the men is cleaning his bottle in the sink in thier kitchen", "video_id": "video11314", "sen_id": 237017}, {"caption": "a man describes his methods for extracting the flavor from a substance", "video_id": "video11314", "sen_id": 237018}, {"caption": "bottle cleaning with detergent is being explained how to shake well and clean the contents", "video_id": "video11314", "sen_id": 237019}, {"caption": "a bowl being filled with the ingredients needed to make some pizza dough", "video_id": "video12191", "sen_id": 237020}, {"caption": "a cup of flour is dumped into a red bowl and mixed with other liquid", "video_id": "video12191", "sen_id": 237021}, {"caption": "there are some ingredients being mixed in a red bowl", "video_id": "video12191", "sen_id": 237022}, {"caption": "pizza is shown then video shows flour salt sugar yeast and warm water all being poured into a red bown", "video_id": "video12191", "sen_id": 237023}, {"caption": "ingredients are being mixed for a pizza crust recipe", "video_id": "video12191", "sen_id": 237024}, {"caption": "a slice of pizza is shown then all ingredients on how to make the pizza is being added to the bottom of the page", "video_id": "video12191", "sen_id": 237025}, {"caption": "a person is mixing flour sugar salt yeast and warm water in a bowl", "video_id": "video12191", "sen_id": 237026}, {"caption": "a woman is adding sugar salt yeast and oil to a bowl of flour", "video_id": "video12191", "sen_id": 237027}, {"caption": "some one in a kitchen preparing a snacks using all purpose flour", "video_id": "video12191", "sen_id": 237028}, {"caption": "a person prepares pizza dough from scratch in a red bowl adding each ingredient one at a time", "video_id": "video12191", "sen_id": 237029}, {"caption": "a person is pouring some food material in a bowl and preparing its", "video_id": "video12191", "sen_id": 237030}, {"caption": "in the kitchen someone cooking with an all purpose prouder", "video_id": "video12191", "sen_id": 237031}, {"caption": "a person is making pizza dough to house music", "video_id": "video12191", "sen_id": 237032}, {"caption": "a person making bread dough in a red bowl while music plays", "video_id": "video12191", "sen_id": 237033}, {"caption": "a person is putting flour warm water into a mixing bowl", "video_id": "video12191", "sen_id": 237034}, {"caption": "someone is adding ingredients for pizza dough into a red bowl", "video_id": "video12191", "sen_id": 237035}, {"caption": "in a bowl add sugar and yeast in warm water", "video_id": "video12191", "sen_id": 237036}, {"caption": "in a red bowl they add the flour using the green cup then add the water to it", "video_id": "video12191", "sen_id": 237037}, {"caption": "a person is adding flour salt yeast and warm water to the flour", "video_id": "video12191", "sen_id": 237038}, {"caption": "a person is pouring flour in a red bowl", "video_id": "video12191", "sen_id": 237039}, {"caption": "a man turns off a tv", "video_id": "video10498", "sen_id": 237040}, {"caption": "a british man in a room shutting off a television", "video_id": "video10498", "sen_id": 237041}, {"caption": "a man standing in front of a television", "video_id": "video10498", "sen_id": 237042}, {"caption": "a man that has returned to a room with the tv on in which he then turns off", "video_id": "video10498", "sen_id": 237043}, {"caption": "a man is surveying a room finds the tv on and turns it off", "video_id": "video10498", "sen_id": 237044}, {"caption": "the camera closes in on the video equipment in the house while they talk about it", "video_id": "video10498", "sen_id": 237045}, {"caption": "man walking over to and talking about his tv", "video_id": "video10498", "sen_id": 237046}, {"caption": "a hand touching the under side of a flat screen tv", "video_id": "video10498", "sen_id": 237047}, {"caption": "a man approaching a tv and turning it off", "video_id": "video10498", "sen_id": 237048}, {"caption": "a man shuts the television off after explaining to a person off camera that they had left the television on when they left the room", "video_id": "video10498", "sen_id": 237049}, {"caption": "a man has reached over to his television to power it off", "video_id": "video10498", "sen_id": 237050}, {"caption": "man showing that someone left the tv on and turning it off", "video_id": "video10498", "sen_id": 237051}, {"caption": "a man explaining that a television needs to be turned off", "video_id": "video10498", "sen_id": 237052}, {"caption": "a tv is kept on the table and the person switches it off", "video_id": "video10498", "sen_id": 237053}, {"caption": "left the room and left the tv on turning it off", "video_id": "video10498", "sen_id": 237054}, {"caption": "a man does a video about the annoyance of leaving your tv on", "video_id": "video10498", "sen_id": 237055}, {"caption": "a man is showing a television that was left on", "video_id": "video10498", "sen_id": 237056}, {"caption": "a man points out that you can turn the tv off after leaving the room as he turns the tv off", "video_id": "video10498", "sen_id": 237057}, {"caption": "a man talks about leaving the tv on and he shuts it off", "video_id": "video10498", "sen_id": 237058}, {"caption": "a man turns off his tv as he commentates the action", "video_id": "video10498", "sen_id": 237059}, {"caption": "a man talks about a foreign game in a box", "video_id": "video11634", "sen_id": 237060}, {"caption": "someone is promoting the food package using which we can make four kind of snacks", "video_id": "video11634", "sen_id": 237061}, {"caption": "a cartoon box square in shape and with lots of colour display on it", "video_id": "video11634", "sen_id": 237062}, {"caption": "a man instructs while we see a childrens sushi set", "video_id": "video11634", "sen_id": 237063}, {"caption": "a person is explaining about a sushi making box with sushi ingredients in it", "video_id": "video11634", "sen_id": 237064}, {"caption": "a japanese candy sushi review", "video_id": "video11634", "sen_id": 237065}, {"caption": "a man is describing a foreign table top game", "video_id": "video11634", "sen_id": 237066}, {"caption": "a man is describing the box for kids sushi", "video_id": "video11634", "sen_id": 237067}, {"caption": "it looks like s toy box placed on the black bed and a person explains about it", "video_id": "video11634", "sen_id": 237068}, {"caption": "a man is explaining information about a japanese sushi set", "video_id": "video11634", "sen_id": 237069}, {"caption": "a man is begining to describe a sushi set shown on the box", "video_id": "video11634", "sen_id": 237070}, {"caption": "there is a box of toys on the table", "video_id": "video11634", "sen_id": 237071}, {"caption": "a person is explaining about something as the video show some cartoon box", "video_id": "video11634", "sen_id": 237072}, {"caption": "a man is describing a toy set which is shown in a yellow box with japanese writing", "video_id": "video11634", "sen_id": 237073}, {"caption": "someone is giving demo about the kids product", "video_id": "video11634", "sen_id": 237074}, {"caption": "a person showing cartoon comic character on product", "video_id": "video11634", "sen_id": 237075}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11634", "sen_id": 237076}, {"caption": "a person reviews a dessert they bought in a package", "video_id": "video11634", "sen_id": 237077}, {"caption": "someone is explaining about something showing a box with pictures", "video_id": "video11634", "sen_id": 237078}, {"caption": "someone is filming an asian box", "video_id": "video11634", "sen_id": 237079}, {"caption": "a man dancing and performing next to a bunch of other performers in the middle of a large hall", "video_id": "video11923", "sen_id": 237080}, {"caption": "a music video of a man surrounded by women in dresses and masks", "video_id": "video11923", "sen_id": 237081}, {"caption": "music video showing a mascaraed ball and dancing", "video_id": "video11923", "sen_id": 237082}, {"caption": "a man surrounded with women in ballroom gowns", "video_id": "video11923", "sen_id": 237083}, {"caption": "group of people are singing and dancing entertaining the crowd", "video_id": "video11923", "sen_id": 237084}, {"caption": "men and women dancing and singing song in a group", "video_id": "video11923", "sen_id": 237085}, {"caption": "the night party the jockies are played in very well", "video_id": "video11923", "sen_id": 237086}, {"caption": "a men and women were dancing for a music", "video_id": "video11923", "sen_id": 237087}, {"caption": "people singing and dancing emotionally and one man with long dress is diving in a hall", "video_id": "video11923", "sen_id": 237088}, {"caption": "boy band members singing an upbeat pop song in a variety of costumes surrounded by women in costumes", "video_id": "video11923", "sen_id": 237089}, {"caption": "a male singer performs tumbling and dancing as he sings at times surrounded by other singers and dancers", "video_id": "video11923", "sen_id": 237090}, {"caption": "a group of young men and women dance and sing in odd halloween costumes", "video_id": "video11923", "sen_id": 237091}, {"caption": "a backstreet boys video where they are apparently vampires", "video_id": "video11923", "sen_id": 237092}, {"caption": "one man singing about a beautiful and sexy girl", "video_id": "video11923", "sen_id": 237093}, {"caption": "a man in the middle is surrounded by the girlseverybody looks horrer", "video_id": "video11923", "sen_id": 237094}, {"caption": "a bunch of people are dancing around and singing", "video_id": "video11923", "sen_id": 237095}, {"caption": "there is a wounded man singing with a group", "video_id": "video11923", "sen_id": 237096}, {"caption": "a music band in a videoclip which present some dancers and singer dressed in eccentric costumes", "video_id": "video11923", "sen_id": 237097}, {"caption": "one vampire man singing about a beautiful and sexy girl", "video_id": "video11923", "sen_id": 237098}, {"caption": "a music video in which several men depict different creepy roles as vampires and mummies", "video_id": "video11923", "sen_id": 237099}, {"caption": "a man on a bmx bike performs tricks on a group of buildings", "video_id": "video12478", "sen_id": 237100}, {"caption": "a preview of a bmx ridi", "video_id": "video12478", "sen_id": 237101}, {"caption": "a montage of a guy biking in a foreign location", "video_id": "video12478", "sen_id": 237102}, {"caption": "a boy on a bike does extreme tricks riding from rooftop to rooftop", "video_id": "video12478", "sen_id": 237103}, {"caption": "a person have a one bicycle he is ride on the ups and downs and crows are flying there are different houses clothes", "video_id": "video12478", "sen_id": 237104}, {"caption": "there is a man doing some tricks with a cycle", "video_id": "video12478", "sen_id": 237105}, {"caption": "a man is trying to do some dangerous bicycle tricks", "video_id": "video12478", "sen_id": 237106}, {"caption": "a man does bicycle tricks over a series of uneven rooftops", "video_id": "video12478", "sen_id": 237107}, {"caption": "a boy does tricks on his bike while riding along urban rooftops", "video_id": "video12478", "sen_id": 237108}, {"caption": "a biker is riding and doing tricks on residential rooftops", "video_id": "video12478", "sen_id": 237109}, {"caption": "a man is doing several stunts on a bmx bike on top of buildings", "video_id": "video12478", "sen_id": 237110}, {"caption": "a man wearing a hat riding a bicycle through the tops of houses", "video_id": "video12478", "sen_id": 237111}, {"caption": "a person is riding their bike in an urban place over the tops of buildings", "video_id": "video12478", "sen_id": 237112}, {"caption": "a person is riding his bike over several buildings", "video_id": "video12478", "sen_id": 237113}, {"caption": "a man jumping from roof to roof on a black bike", "video_id": "video12478", "sen_id": 237114}, {"caption": "bmx expert showcasing his skills at climbing buildings while parking a bicycle under himself", "video_id": "video12478", "sen_id": 237115}, {"caption": "a man jumping across rooftops on a bicycle", "video_id": "video12478", "sen_id": 237116}, {"caption": "a cyclist is jumping from building to building with his cycle", "video_id": "video12478", "sen_id": 237117}, {"caption": "a man riding a bicycle across rooftops with a camera attached to his bike", "video_id": "video12478", "sen_id": 237118}, {"caption": "a man is cycling over buildings and through alleys", "video_id": "video12478", "sen_id": 237119}, {"caption": "a woman is in a kitchen explaining how to cook pork", "video_id": "video11288", "sen_id": 237120}, {"caption": "a female chef demonstrates and describes a recipe she is working on", "video_id": "video11288", "sen_id": 237121}, {"caption": "a woman talks about pork neck bones and how to prepare them", "video_id": "video11288", "sen_id": 237122}, {"caption": "a cook describes how to cook pork neck bones for broth", "video_id": "video11288", "sen_id": 237123}, {"caption": "jenny wang discusses preparing and cooking pork for a recipe", "video_id": "video11288", "sen_id": 237124}, {"caption": "a woman is showing how to prepare and cook pork neck bones", "video_id": "video11288", "sen_id": 237125}, {"caption": "a women in black dressing prepiring a dish", "video_id": "video11288", "sen_id": 237126}, {"caption": "a woman in a black jacket standing behind a table talks about cooking chunks of meat", "video_id": "video11288", "sen_id": 237127}, {"caption": "the woman talks about the pork neckbones on the table", "video_id": "video11288", "sen_id": 237128}, {"caption": "a cook wearing a black blazer talks about a recipe with beef", "video_id": "video11288", "sen_id": 237129}, {"caption": "an asian women is telling a recipe she is going to cook", "video_id": "video11288", "sen_id": 237130}, {"caption": "in the kitchenthere is woman in black dressing preparing dish with meet", "video_id": "video11288", "sen_id": 237131}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11288", "sen_id": 237132}, {"caption": "in a kitchen a woman gives advice about cooking meat", "video_id": "video11288", "sen_id": 237133}, {"caption": "a woman jenny wang is telling a recipe", "video_id": "video11288", "sen_id": 237134}, {"caption": "a girl in black dress inside kitchen many botles on table preparing something to eat", "video_id": "video11288", "sen_id": 237135}, {"caption": " in a black jacket in a kitchen behind a counter salting a plateful of pork neck bones", "video_id": "video11288", "sen_id": 237136}, {"caption": "jenny wang making a recipe with meat in plate", "video_id": "video11288", "sen_id": 237137}, {"caption": "jenny wank explains preparation of pork before cooking then begins salting", "video_id": "video11288", "sen_id": 237138}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11288", "sen_id": 237139}, {"caption": "a small monkey is wiping a wall with a small white and red towel in a room", "video_id": "video12433", "sen_id": 237140}, {"caption": "a monkey plays with a dish towel as he puts it in a cupboard", "video_id": "video12433", "sen_id": 237141}, {"caption": "a monkey in a corner is wiping a wall with a towel", "video_id": "video12433", "sen_id": 237142}, {"caption": "a monkey uses a rag wipe down a wall", "video_id": "video12433", "sen_id": 237143}, {"caption": "monkey is shown cleaning a green wall while man in the background says good boy boo", "video_id": "video12433", "sen_id": 237144}, {"caption": "a chimpanzee rubs a dish towel against a green wall", "video_id": "video12433", "sen_id": 237145}, {"caption": "a man and a woman film their pet monkey playing at cleaning the wall with a pink towel", "video_id": "video12433", "sen_id": 237146}, {"caption": "a monkey is using a towel to wipe a wall", "video_id": "video12433", "sen_id": 237147}, {"caption": "a small monkey is cleaning the wall using a towel", "video_id": "video12433", "sen_id": 237148}, {"caption": "monkey attempting to put a shirt in a cabinet", "video_id": "video12433", "sen_id": 237149}, {"caption": "a monkey trying to put some clothes into the drawer", "video_id": "video12433", "sen_id": 237150}, {"caption": "a monkey trying to clean a wall beside a cabinet with a towel", "video_id": "video12433", "sen_id": 237151}, {"caption": "a monkey is cleaning the walls with a red and white dish towel", "video_id": "video12433", "sen_id": 237152}, {"caption": "a monkey is showing how he learned to clean the walls with a towel", "video_id": "video12433", "sen_id": 237153}, {"caption": "a monkey is using a hand towel to wipe the walls", "video_id": "video12433", "sen_id": 237154}, {"caption": "there is a monkey playing on the bed", "video_id": "video12433", "sen_id": 237155}, {"caption": "a small monkey places his clothing away for his owner", "video_id": "video12433", "sen_id": 237156}, {"caption": "a monkey is using a cloth to clean the walls", "video_id": "video12433", "sen_id": 237157}, {"caption": "the chimpanzee is trying to put the cloth on some hangings which he fails", "video_id": "video12433", "sen_id": 237158}, {"caption": "the small money is placed the towel on the wall but it will not placed so the money try continuously", "video_id": "video12433", "sen_id": 237159}, {"caption": "morgan freeman is giving an interview in front of a dolphin tale backdrop", "video_id": "video10330", "sen_id": 237160}, {"caption": "actor morgan freeman talks about his interest in physics", "video_id": "video10330", "sen_id": 237161}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10330", "sen_id": 237162}, {"caption": "a person in white with white hair is being interviewed by the news channel", "video_id": "video10330", "sen_id": 237163}, {"caption": "old guy in white dress talking about his interest in physics", "video_id": "video10330", "sen_id": 237164}, {"caption": "a man is explaining the tale of dolphin", "video_id": "video10330", "sen_id": 237165}, {"caption": "a old man in blue shirt is explaining something in detail", "video_id": "video10330", "sen_id": 237166}, {"caption": "men is talking with purple shirt dolphin tale", "video_id": "video10330", "sen_id": 237167}, {"caption": "aged men in white dress giving an interview and explaining his experience", "video_id": "video10330", "sen_id": 237168}, {"caption": "dolphin tale about it a man in white dress speaks", "video_id": "video10330", "sen_id": 237169}, {"caption": "morgan freeman talks about how much he has like physics since high school", "video_id": "video10330", "sen_id": 237170}, {"caption": "a man in white shirt talking from the studio", "video_id": "video10330", "sen_id": 237171}, {"caption": "the famous hollywood actor is talking in a show", "video_id": "video10330", "sen_id": 237172}, {"caption": "dolphin tale one old man talking about it", "video_id": "video10330", "sen_id": 237173}, {"caption": "an old man with brown color wearing white dress talking with mic on his shirt", "video_id": "video10330", "sen_id": 237174}, {"caption": "morgan freeman is being interviewed about a movie", "video_id": "video10330", "sen_id": 237175}, {"caption": "a man in white t-shirt talking in a studio", "video_id": "video10330", "sen_id": 237176}, {"caption": "a man shakes his head points his finger and spreads his hand open while talking in front of a promotion about a child and a porpoise", "video_id": "video10330", "sen_id": 237177}, {"caption": "an old african man discusses his interest in the study of physics", "video_id": "video10330", "sen_id": 237178}, {"caption": "a man talking about is childhood school time in a interview", "video_id": "video10330", "sen_id": 237179}, {"caption": "different views of water as a man talks over the footage", "video_id": "video10253", "sen_id": 237180}, {"caption": "national geographic covers the mystery of the burmuda triangle", "video_id": "video10253", "sen_id": 237181}, {"caption": "a man is talking about ships and planes disappearing over the ocean while you see rock formations and open ocean", "video_id": "video10253", "sen_id": 237182}, {"caption": "an ocean is shown as clouds in the sky move", "video_id": "video10253", "sen_id": 237183}, {"caption": "ships and planes have disappeared in a 450000 square mile area of ocean", "video_id": "video10253", "sen_id": 237184}, {"caption": "a windswept ocean carved pedestal rock with helicopter stands out on the churning coastal waters", "video_id": "video10253", "sen_id": 237185}, {"caption": "scenes of an ocean and large rock cliffs for national geographic", "video_id": "video10253", "sen_id": 237186}, {"caption": "a beach shore a rocky cliff and waves crashing in the ocean", "video_id": "video10253", "sen_id": 237187}, {"caption": "it is a source of intrigue and legend that over a 450 thousand square mile zone of open ocean more and more planes disappear without a trace", "video_id": "video10253", "sen_id": 237188}, {"caption": "a man is talking about how many ships and planes have disappeared without a trace in the open ocean", "video_id": "video10253", "sen_id": 237189}, {"caption": "a heavy wind and sound of waves are really unbeatable in the nature", "video_id": "video10253", "sen_id": 237190}, {"caption": "its a clouds and water appearing near to mountain", "video_id": "video10253", "sen_id": 237191}, {"caption": "a coastline and surf viewed from many angles", "video_id": "video10253", "sen_id": 237192}, {"caption": "it is the natural amazing moments", "video_id": "video10253", "sen_id": 237193}, {"caption": "cc mountains and seas broadcast by national geographic channel", "video_id": "video10253", "sen_id": 237194}, {"caption": "cloudy weather making the ocean waves get high on rocky beaches", "video_id": "video10253", "sen_id": 237195}, {"caption": "the clouds are moving fast and getting dark showing the symbols of rain", "video_id": "video10253", "sen_id": 237196}, {"caption": "a man narrates a show about the bermuda triangle", "video_id": "video10253", "sen_id": 237197}, {"caption": "it was nice place really good to see the sea waves and fast moving clouds", "video_id": "video10253", "sen_id": 237198}, {"caption": "a clouds are moving in the national geographic channel program", "video_id": "video10253", "sen_id": 237199}, {"caption": "a man is walking in to a prison", "video_id": "video11719", "sen_id": 237200}, {"caption": "a man walks into prison on his first day dressed in a suit", "video_id": "video11719", "sen_id": 237201}, {"caption": "a large brick building that looks similar to a castle and a man in a tuxedo walking towards it", "video_id": "video11719", "sen_id": 237202}, {"caption": "men are shown entering a large building which appears to be a prison", "video_id": "video11719", "sen_id": 237203}, {"caption": "a group of people walking up the steps near a brick building", "video_id": "video11719", "sen_id": 237204}, {"caption": "a large white house is shown on camera then the scene cuts to a man with handcuffs", "video_id": "video11719", "sen_id": 237205}, {"caption": "actor tim robbins looks concerned as he walks near a large stone building", "video_id": "video11719", "sen_id": 237206}, {"caption": "a man in a suit and tie is brought to an old cobblestone prison", "video_id": "video11719", "sen_id": 237207}, {"caption": "there is a person in a suit walking towards a very old and tall building", "video_id": "video11719", "sen_id": 237208}, {"caption": "a man walking through a prison yard", "video_id": "video11719", "sen_id": 237209}, {"caption": "some one showing the video of historic palace", "video_id": "video11719", "sen_id": 237210}, {"caption": "a few men walking with chains on while in the distance you hear a man talking over there intercom", "video_id": "video11719", "sen_id": 237211}, {"caption": "its visiting place where many people come and visitman walks with sad face", "video_id": "video11719", "sen_id": 237212}, {"caption": "a group of man in chains walk towards an enormous building", "video_id": "video11719", "sen_id": 237213}, {"caption": "a person is coming in to jail following the police", "video_id": "video11719", "sen_id": 237214}, {"caption": "a man in a blazer walking next to old historic buildings", "video_id": "video11719", "sen_id": 237215}, {"caption": "an old castle buillt of solid rocks used in the film shawshank redemption", "video_id": "video11719", "sen_id": 237216}, {"caption": "a courtyard of an old tall stone block castle is seen", "video_id": "video11719", "sen_id": 237217}, {"caption": "a man walking along a wall looking up at a building", "video_id": "video11719", "sen_id": 237218}, {"caption": "an old building exterior is being filmed by a camera", "video_id": "video11719", "sen_id": 237219}, {"caption": "a man is finishing up playing on his guitar", "video_id": "video12771", "sen_id": 237220}, {"caption": "a title sequence asking a question to fans", "video_id": "video12771", "sen_id": 237221}, {"caption": "a requests for votes appear with instructions on where to leave them", "video_id": "video12771", "sen_id": 237222}, {"caption": "a man in a green shirt briefly playing guitar and then text", "video_id": "video12771", "sen_id": 237223}, {"caption": "a boy in green tshirt playing a electronic guitar", "video_id": "video12771", "sen_id": 237224}, {"caption": "a man playing bass ends by asking for viewer input", "video_id": "video12771", "sen_id": 237225}, {"caption": "a man is playing various tunes on a guiotar", "video_id": "video12771", "sen_id": 237226}, {"caption": "a guy with guitar and asking for the favorite song from the audience", "video_id": "video12771", "sen_id": 237227}, {"caption": "a person is playing guitar and a question is displayed", "video_id": "video12771", "sen_id": 237228}, {"caption": "a man in a green shirt is playing a guitar", "video_id": "video12771", "sen_id": 237229}, {"caption": "a man wearing a green and black frock plays a guitar", "video_id": "video12771", "sen_id": 237230}, {"caption": "the man plays the guitar as the white words appear on the screen", "video_id": "video12771", "sen_id": 237231}, {"caption": "a man playing one note on a bass guitar before the video just goes black with a bunch of text saying to comment", "video_id": "video12771", "sen_id": 237232}, {"caption": "young man playing a guitar followed by text asking which one was your favorite", "video_id": "video12771", "sen_id": 237233}, {"caption": "a young man playing a song on a guitar", "video_id": "video12771", "sen_id": 237234}, {"caption": "a man with a guitar is playing a song", "video_id": "video12771", "sen_id": 237235}, {"caption": "a person standing up playing guitar", "video_id": "video12771", "sen_id": 237236}, {"caption": "after a man in green plays one note on a guitar an onscreen text asks the viewer which one is your favorite", "video_id": "video12771", "sen_id": 237237}, {"caption": "an asking page where it asks to know the favorite comments", "video_id": "video12771", "sen_id": 237238}, {"caption": "a man plays guitar and asks his viewers to comment", "video_id": "video12771", "sen_id": 237239}, {"caption": "a spider and an insect are crawling on a large green leaf", "video_id": "video11175", "sen_id": 237240}, {"caption": "an red insect is crawling on a green leaf as a spider is crawling on a different leaf", "video_id": "video11175", "sen_id": 237241}, {"caption": "a red and black bug crawling on a leaf", "video_id": "video11175", "sen_id": 237242}, {"caption": "there are spider and ant about to encounter with each other for survival but no one can tell who wins", "video_id": "video11175", "sen_id": 237243}, {"caption": "a spider crawls on a leaf to approach its prey", "video_id": "video11175", "sen_id": 237244}, {"caption": "a spider is cralling on a green leaf and appears to be sneaking up on another insect", "video_id": "video11175", "sen_id": 237245}, {"caption": "an insect is crawling on a leaf while in the background a person is explaining about it", "video_id": "video11175", "sen_id": 237246}, {"caption": "there is a spider climbing on gree leaves", "video_id": "video11175", "sen_id": 237247}, {"caption": "there is a spider in leaves of plant comes so quick", "video_id": "video11175", "sen_id": 237248}, {"caption": "a spider of colour walking on the leave slowly swiftly on the screen", "video_id": "video11175", "sen_id": 237249}, {"caption": "a person is showing how spider gets its prey trapped and eats them", "video_id": "video11175", "sen_id": 237250}, {"caption": "a spider walking through the leaf with legs", "video_id": "video11175", "sen_id": 237251}, {"caption": "a spider and a mantis walk around on leaves", "video_id": "video11175", "sen_id": 237252}, {"caption": "a spider like creature climbs on a green leaf in the rainforest", "video_id": "video11175", "sen_id": 237253}, {"caption": "here a beautiful spider is moving over a dark green leaf slowly", "video_id": "video11175", "sen_id": 237254}, {"caption": "a spider is crawling around on a green leaf", "video_id": "video11175", "sen_id": 237255}, {"caption": "here the brain mantis is having its position to kill the spider which is back of the leaf", "video_id": "video11175", "sen_id": 237256}, {"caption": "bbc one dangerous spider is in plant and runs", "video_id": "video11175", "sen_id": 237257}, {"caption": "a red spider with black legs walks in the green leafit looks awesome", "video_id": "video11175", "sen_id": 237258}, {"caption": "a praying mantis is being hunted by a spider", "video_id": "video11175", "sen_id": 237259}, {"caption": "a green light glows in a tube before the xbox logo shows up", "video_id": "video10346", "sen_id": 237260}, {"caption": "a group of basketball players verse each other on the court", "video_id": "video10346", "sen_id": 237261}, {"caption": "the introduction from the original xbox to gaming", "video_id": "video10346", "sen_id": 237262}, {"caption": "a basketball game and a green light for a game console", "video_id": "video10346", "sen_id": 237263}, {"caption": "a green light pulses and throbs before it becomes the xbox logo", "video_id": "video10346", "sen_id": 237264}, {"caption": "a green blob turns into the xbox logo", "video_id": "video10346", "sen_id": 237265}, {"caption": "all persons are paying basketball game in a stadium", "video_id": "video10346", "sen_id": 237266}, {"caption": "a basket ball game is followed by ad of xbox", "video_id": "video10346", "sen_id": 237267}, {"caption": "a basketball game that transition to an xbox logo", "video_id": "video10346", "sen_id": 237268}, {"caption": "an advertisement of a xbox is playing on", "video_id": "video10346", "sen_id": 237269}, {"caption": "an xbox introduction sequence is started after a very short basketball intro", "video_id": "video10346", "sen_id": 237270}, {"caption": "there are someone playing basket ball in a court", "video_id": "video10346", "sen_id": 237271}, {"caption": "a scene of basketball players quickly cuts out to an animated glowing green nucleus which expands into the xbox logo", "video_id": "video10346", "sen_id": 237272}, {"caption": "screen changes from a basket ball play ground packed with audience to xbox video game control", "video_id": "video10346", "sen_id": 237273}, {"caption": "the video would not load it said invalid source", "video_id": "video10346", "sen_id": 237274}, {"caption": "there are some boys playing basketball on the court", "video_id": "video10346", "sen_id": 237275}, {"caption": "an animated ball of green light turns into an xbox logo", "video_id": "video10346", "sen_id": 237276}, {"caption": "a basketball video game is being played followed by the x box logo", "video_id": "video10346", "sen_id": 237277}, {"caption": "video game people play basketball followed by a logo", "video_id": "video10346", "sen_id": 237278}, {"caption": "someone is playing an nba game on the xbox", "video_id": "video10346", "sen_id": 237279}, {"caption": "a man in a suit sitting next to two globes talking to himself sitting at another chair", "video_id": "video11607", "sen_id": 237280}, {"caption": "a man with brown hair and glasses talks about years of the past", "video_id": "video11607", "sen_id": 237281}, {"caption": "john green intelligently and enthusiastically talking about world history", "video_id": "video11607", "sen_id": 237282}, {"caption": "a male teacher with short hair and glasses asks his class what the best and worst years of their lives were", "video_id": "video11607", "sen_id": 237283}, {"caption": "a man is asking the audience a question about their best and worst years", "video_id": "video11607", "sen_id": 237284}, {"caption": "a well dressed man is giving a lecture involving a globe", "video_id": "video11607", "sen_id": 237285}, {"caption": "a gentleman is soliciting internet responses about the best and worst years of peoples lives", "video_id": "video11607", "sen_id": 237286}, {"caption": "a man talking about a topic while setting at a desk", "video_id": "video11607", "sen_id": 237287}, {"caption": "a man is imitating a teacher speaking to a student", "video_id": "video11607", "sen_id": 237288}, {"caption": "a ma in a green suit talking about history", "video_id": "video11607", "sen_id": 237289}, {"caption": "a man wearing eyeglasses portrays both a teacher in a suit sitting in a spare classroom setting and a student wearing a tee shirt sitting in a chair attached to a desktop", "video_id": "video11607", "sen_id": 237290}, {"caption": "a man with glasses is in a classroom setting talking next to two globes", "video_id": "video11607", "sen_id": 237291}, {"caption": "a man asks what his audience s best and worst years of life were to them", "video_id": "video11607", "sen_id": 237292}, {"caption": "a man in glasses and sports coat speaks about the past and future years", "video_id": "video11607", "sen_id": 237293}, {"caption": "a man is talking about what is a best and worst", "video_id": "video11607", "sen_id": 237294}, {"caption": "a man with glasses is speaking about something", "video_id": "video11607", "sen_id": 237295}, {"caption": "a pop quiz from about the best and worse years of your life", "video_id": "video11607", "sen_id": 237296}, {"caption": "men tell us which years were their best and worst", "video_id": "video11607", "sen_id": 237297}, {"caption": "a program presenter discusses specific annual statistics of a program he is presenting", "video_id": "video11607", "sen_id": 237298}, {"caption": "the current economic analysis on market issues discusses in the tv", "video_id": "video11607", "sen_id": 237299}, {"caption": "a vw bug driving down a sunny highway", "video_id": "video10554", "sen_id": 237300}, {"caption": "quick info on the new vw beetle some features in the new vw beetle", "video_id": "video10554", "sen_id": 237301}, {"caption": "a person driving a black car on an open road", "video_id": "video10554", "sen_id": 237302}, {"caption": "a small convertible volkswagen driving down the road", "video_id": "video10554", "sen_id": 237303}, {"caption": "two humans riding in a new beetle car", "video_id": "video10554", "sen_id": 237304}, {"caption": "there is a car with powerful engine and style", "video_id": "video10554", "sen_id": 237305}, {"caption": "a new awesome looking open car with black color moving on the road", "video_id": "video10554", "sen_id": 237306}, {"caption": "a man discusses the features and performance of a car that is up for sale", "video_id": "video10554", "sen_id": 237307}, {"caption": "a person is driving a black volks wagon on the street", "video_id": "video10554", "sen_id": 237308}, {"caption": "a car still picture and black car inside girl sitting and driving displaying on screen", "video_id": "video10554", "sen_id": 237309}, {"caption": "there is a stylish car on the street", "video_id": "video10554", "sen_id": 237310}, {"caption": "a car advertisement", "video_id": "video10554", "sen_id": 237311}, {"caption": "a man discusses the features and size of a car that is available for sale", "video_id": "video10554", "sen_id": 237312}, {"caption": "people are driving a black convertable volks wagon", "video_id": "video10554", "sen_id": 237313}, {"caption": "the beautiful girl in white design dress is driving the car which has many engine options", "video_id": "video10554", "sen_id": 237314}, {"caption": "a man comments on a convertible car while people are driving it", "video_id": "video10554", "sen_id": 237315}, {"caption": "a beetle convertible is being described and driven down a road on display", "video_id": "video10554", "sen_id": 237316}, {"caption": "the person is talking about the speed of a beetle car", "video_id": "video10554", "sen_id": 237317}, {"caption": "a autotrader car in black was going on the road", "video_id": "video10554", "sen_id": 237318}, {"caption": "a women wearing hat is driving a luxury black color car", "video_id": "video10554", "sen_id": 237319}, {"caption": "a actress is walking across the stage while saying her lines", "video_id": "video12764", "sen_id": 237320}, {"caption": "a woman with a black dress reciting lines from a play or movie", "video_id": "video12764", "sen_id": 237321}, {"caption": "a young woman standing and walking around the stage of a set", "video_id": "video12764", "sen_id": 237322}, {"caption": "it's a behind the scenes of some movie", "video_id": "video12764", "sen_id": 237323}, {"caption": "a women with smiling face posing for a photo", "video_id": "video12764", "sen_id": 237324}, {"caption": "its shooting in which the girl wearing the black dress talks by moving", "video_id": "video12764", "sen_id": 237325}, {"caption": "there is a hot women walking in a studio", "video_id": "video12764", "sen_id": 237326}, {"caption": "a woman with a dress and a black shirt walks across the stage on a movie set", "video_id": "video12764", "sen_id": 237327}, {"caption": "in a shooting one sexy women in the stage", "video_id": "video12764", "sen_id": 237328}, {"caption": "a shooting scene from a hollywood movie where heroine sees the sky and speaks", "video_id": "video12764", "sen_id": 237329}, {"caption": "a lady with a black dress stands inside a blue dress", "video_id": "video12764", "sen_id": 237330}, {"caption": "there is a woman in black dressing acting in front of a camera", "video_id": "video12764", "sen_id": 237331}, {"caption": "a film is being shot we can see cameras blue screen and flash lights and the heroine is delivering her dialog", "video_id": "video12764", "sen_id": 237332}, {"caption": "a holly wood movie shooting an actress acting on it", "video_id": "video12764", "sen_id": 237333}, {"caption": "a woman is filming by a green screen and speaking her lines to some unseen person", "video_id": "video12764", "sen_id": 237334}, {"caption": "a girl in black dress were in the drama an speaking something", "video_id": "video12764", "sen_id": 237335}, {"caption": "there is a girl wearing black dress and giving her shout", "video_id": "video12764", "sen_id": 237336}, {"caption": "a women in black colored dress walking on the set floor for the video shoot", "video_id": "video12764", "sen_id": 237337}, {"caption": "a woman is acting in the movie making studio", "video_id": "video12764", "sen_id": 237338}, {"caption": "a woman in black acting in front of camera", "video_id": "video12764", "sen_id": 237339}, {"caption": "a blonde haired boy is riding a skate board and being followed by a dog", "video_id": "video12372", "sen_id": 237340}, {"caption": "a clip from a tv cartoon about a boy and his dog", "video_id": "video12372", "sen_id": 237341}, {"caption": "dennis the menace is skating through the video playing on his board", "video_id": "video12372", "sen_id": 237342}, {"caption": "a blonde kid in orange overall skateboards around with his white dogs and friend following behind", "video_id": "video12372", "sen_id": 237343}, {"caption": "a cartoon where a boy is skateboarding while kids are following him and an old man hopes he doesn't run over his garden", "video_id": "video12372", "sen_id": 237344}, {"caption": "a young boy and his dog head up a sidewalk together", "video_id": "video12372", "sen_id": 237345}, {"caption": "a blonde haired boy is skateboarding while being chased by a white haired dog", "video_id": "video12372", "sen_id": 237346}, {"caption": "a man is playing and running with a dog and other friends", "video_id": "video12372", "sen_id": 237347}, {"caption": "a blonde-haired cartoon boy rides a skateboard and jumps around with his white dog", "video_id": "video12372", "sen_id": 237348}, {"caption": "a cartoon boy and his cartoon dog jump around and ride a skateboard", "video_id": "video12372", "sen_id": 237349}, {"caption": "a small boy with red pants runs around and a dog follows", "video_id": "video12372", "sen_id": 237350}, {"caption": "a yellow haired boy with red suspenders is riding a skateboard and being chased by people", "video_id": "video12372", "sen_id": 237351}, {"caption": "a cartoon figure is running across a street and some others are chasing it", "video_id": "video12372", "sen_id": 237352}, {"caption": "it is a cartoon animation of an old show", "video_id": "video12372", "sen_id": 237353}, {"caption": "cartoon characters animation picture the naughty boy and his dog making funs", "video_id": "video12372", "sen_id": 237354}, {"caption": "a boy with golden hair running with a group of people", "video_id": "video12372", "sen_id": 237355}, {"caption": "an animated man is picking flowers while a young boy runs around", "video_id": "video12372", "sen_id": 237356}, {"caption": "there is an old clip of dennis the mennis animation tv show", "video_id": "video12372", "sen_id": 237357}, {"caption": "a boy is riding a skateboard and being chased by a dog", "video_id": "video12372", "sen_id": 237358}, {"caption": "there is a boy wearing red over alls skating boarding with his dog", "video_id": "video12372", "sen_id": 237359}, {"caption": "a man on a small boat is fishing using a net", "video_id": "video11219", "sen_id": 237360}, {"caption": "a fisherman standing on a boat in the water throws a fishing net", "video_id": "video11219", "sen_id": 237361}, {"caption": "a man wearing a black cap and sunglasses stands on a narrow fishing boat carries white netting with black cords casts the net into the green-and-gray water and lifts the net filled with small silver fish", "video_id": "video11219", "sen_id": 237362}, {"caption": "a man in a hat and a blue shirt standing on a very narrow boat using a net to catch fish", "video_id": "video11219", "sen_id": 237363}, {"caption": "the man rides in the water and then throws his net out to catch the fish", "video_id": "video11219", "sen_id": 237364}, {"caption": "there is a man in a black hat holding a white net for catching fish", "video_id": "video11219", "sen_id": 237365}, {"caption": "a guy in white tshirt and cap standing on boat trowing net for fishing", "video_id": "video11219", "sen_id": 237366}, {"caption": "a man in a light blue shirt and dark color pants in a tiny boat putting a net in the ocean", "video_id": "video11219", "sen_id": 237367}, {"caption": "a man stands in a kayak and throws his net which retrieves a load of fish", "video_id": "video11219", "sen_id": 237368}, {"caption": "a person is standing on a boat and fishing with net", "video_id": "video11219", "sen_id": 237369}, {"caption": "a guy standing on a boat is caught lots of fishes in his net", "video_id": "video11219", "sen_id": 237370}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11219", "sen_id": 237371}, {"caption": "a man catching the fishes from boat in the river", "video_id": "video11219", "sen_id": 237372}, {"caption": "a fishermen casts his line into the water looking for food", "video_id": "video11219", "sen_id": 237373}, {"caption": "someone is cutting tomatoesboiling pastas and in the end prepares an excellent dish", "video_id": "video11219", "sen_id": 237374}, {"caption": "a man in a boat on the yellow colored water with a white cast net catching lots of small fish", "video_id": "video11219", "sen_id": 237375}, {"caption": "a man is standing on a boat showing how to quickly catch fish with a huge netted bag", "video_id": "video11219", "sen_id": 237376}, {"caption": "a person on a boat is throwing a net out in the water", "video_id": "video11219", "sen_id": 237377}, {"caption": "a person is moving in a boat with fishing net and after sometime travel he place the net for fishing", "video_id": "video11219", "sen_id": 237378}, {"caption": "a person in some water is catching a fish", "video_id": "video11219", "sen_id": 237379}, {"caption": "a promo for the thom hartmann program on youtube", "video_id": "video10855", "sen_id": 237380}, {"caption": "a man in a blue shirt is talking into a microphone", "video_id": "video10855", "sen_id": 237381}, {"caption": "an old-fashioned television set shows a man on the screen speaking into a microphone in a room with a bookcase monitor desk and windows that look out onto other buildings", "video_id": "video10855", "sen_id": 237382}, {"caption": "a brief advertisement of the thom hartmann program", "video_id": "video10855", "sen_id": 237383}, {"caption": "a man wearing a dress shirt with an open collar talks into a microphone set on the side of a slanted monitor while sitting by a full bookcase and window looking out onto other sets of windows", "video_id": "video10855", "sen_id": 237384}, {"caption": "a man is speaking into a microphone and recording a video", "video_id": "video10855", "sen_id": 237385}, {"caption": "a man is speaking at a lecture podium in a docorated screen", "video_id": "video10855", "sen_id": 237386}, {"caption": "a man in an old fashioned television talking", "video_id": "video10855", "sen_id": 237387}, {"caption": "man talking on a microphone from a broadcaster television station", "video_id": "video10855", "sen_id": 237388}, {"caption": "a man is talking into a dj microphone sitting in a study superimposed with an old fashioned channel tv graphic", "video_id": "video10855", "sen_id": 237389}, {"caption": "a graphic for the thom hartmann program alerting viewing to subscribe to his video channel", "video_id": "video10855", "sen_id": 237390}, {"caption": "viewers are encouraged to watch more and subscribe to a channel", "video_id": "video10855", "sen_id": 237391}, {"caption": "an old fashioned tv as the frame for thom hartmann talking", "video_id": "video10855", "sen_id": 237392}, {"caption": "a man talks into a microphone on a tv screen encouraging people to subscribe to his show", "video_id": "video10855", "sen_id": 237393}, {"caption": "an older-style television features a guy on a microphone with a bookshelf behind him", "video_id": "video10855", "sen_id": 237394}, {"caption": "an old man giving instructions to subscribe to his youtube channel", "video_id": "video10855", "sen_id": 237395}, {"caption": "a man is talking in the hartmann program", "video_id": "video10855", "sen_id": 237396}, {"caption": "a man offers links to future shows and subscription option", "video_id": "video10855", "sen_id": 237397}, {"caption": "a blonde man wearing a white shirt and glasses is seen speaking or singing then the same man is shown in a youtube subscribe now box telling the audience to see more of his videos", "video_id": "video10855", "sen_id": 237398}, {"caption": "a man s video ends with links to watch more of them", "video_id": "video10855", "sen_id": 237399}, {"caption": "two men in blue shirts talk about a red lamborghini suv they brought on the set", "video_id": "video12733", "sen_id": 237400}, {"caption": "two narrators discuss a military vehicle that was popular in saudi arabia", "video_id": "video12733", "sen_id": 237401}, {"caption": "rugged red turck with brand new paint job being taken out on the road", "video_id": "video12733", "sen_id": 237402}, {"caption": "jay leno showcases his military style vehicle to a show host", "video_id": "video12733", "sen_id": 237403}, {"caption": "a red suv has been restored and sets in a large garage for display", "video_id": "video12733", "sen_id": 237404}, {"caption": "a red humvee is in a garage and shown from many angles before it is on the street", "video_id": "video12733", "sen_id": 237405}, {"caption": "people are watching over the attractive red colour jeep", "video_id": "video12733", "sen_id": 237406}, {"caption": "a man in blue denin shirt is telling about a four wheeler", "video_id": "video12733", "sen_id": 237407}, {"caption": "the two men wearing a blue shirts are watching the red car", "video_id": "video12733", "sen_id": 237408}, {"caption": "two people are observing a maroon car which is shown in different angles", "video_id": "video12733", "sen_id": 237409}, {"caption": "jay leno shows off his red humvee jeep before taking it for a spin", "video_id": "video12733", "sen_id": 237410}, {"caption": "some executive of a car showroom explaining the features of a new car to the customer", "video_id": "video12733", "sen_id": 237411}, {"caption": "a red car is displayed with its features", "video_id": "video12733", "sen_id": 237412}, {"caption": "an person explaining about the new model car advantages", "video_id": "video12733", "sen_id": 237413}, {"caption": "a person is talking about the new red jeep model car and its features", "video_id": "video12733", "sen_id": 237414}, {"caption": "a red color car is showing on a car", "video_id": "video12733", "sen_id": 237415}, {"caption": "someone is giving feed back of a red pick up truck", "video_id": "video12733", "sen_id": 237416}, {"caption": "two man looking the new car which rides so fast", "video_id": "video12733", "sen_id": 237417}, {"caption": "there are two men talking about a red truck", "video_id": "video12733", "sen_id": 237418}, {"caption": "a red jeep is being filmed in various places", "video_id": "video12733", "sen_id": 237419}, {"caption": "georgia tech football team scores a goal", "video_id": "video11727", "sen_id": 237420}, {"caption": "teams of american football playersparticipate in a game in a very large stadium", "video_id": "video11727", "sen_id": 237421}, {"caption": "a georgia tech football game where a player runs the ball for a touchdown", "video_id": "video11727", "sen_id": 237422}, {"caption": "an american football game and one of the player is making a touchdown", "video_id": "video11727", "sen_id": 237423}, {"caption": "here we have a turnover and touchdown from a college football game", "video_id": "video11727", "sen_id": 237424}, {"caption": "a football game in which a field goal is intercepted by the opposing team who is able to catch the ball and make a touchdown", "video_id": "video11727", "sen_id": 237425}, {"caption": "college footballs teams run a football play on the field where spectators watch the game", "video_id": "video11727", "sen_id": 237426}, {"caption": "a football player blocks a kick and runs back to score for his team", "video_id": "video11727", "sen_id": 237427}, {"caption": "all persons are playing ruby game on a stadium", "video_id": "video11727", "sen_id": 237428}, {"caption": "an exciting football game is being played in front of a noisy crowd", "video_id": "video11727", "sen_id": 237429}, {"caption": "american football players peerform amazing feats in large stadiums filled with people", "video_id": "video11727", "sen_id": 237430}, {"caption": "a players were playing game and running commentary was going on", "video_id": "video11727", "sen_id": 237431}, {"caption": "the players are running very fast in the ground", "video_id": "video11727", "sen_id": 237432}, {"caption": "there is a crowd enjoying to watch rugby", "video_id": "video11727", "sen_id": 237433}, {"caption": "two football teams playing a game of american college football in a stadium", "video_id": "video11727", "sen_id": 237434}, {"caption": "some football players are competing on the grid iron", "video_id": "video11727", "sen_id": 237435}, {"caption": "a football team playing a game on a football field", "video_id": "video11727", "sen_id": 237436}, {"caption": "two teams were playing a match on the ground", "video_id": "video11727", "sen_id": 237437}, {"caption": "a football player kicks the winning field goal", "video_id": "video11727", "sen_id": 237438}, {"caption": "someone is frying something after pouring butter in the black nonstick pan", "video_id": "video11727", "sen_id": 237439}, {"caption": "a male news caster in a dark blue suit talking about a fed-induced rally", "video_id": "video11961", "sen_id": 237440}, {"caption": "jim kramer talking about janet yellen and other federal reserve employees", "video_id": "video11961", "sen_id": 237441}, {"caption": "a bald man is talking about people working in the national reserve", "video_id": "video11961", "sen_id": 237442}, {"caption": "a man in a blue suit and a red tie is discussing financial matters and an image of a man pops up in the picture in picture", "video_id": "video11961", "sen_id": 237443}, {"caption": "a man is on television talking about economic issues to another man", "video_id": "video11961", "sen_id": 237444}, {"caption": "a news reporter in the studio talking about a rally", "video_id": "video11961", "sen_id": 237445}, {"caption": "a suit man talking about a person", "video_id": "video11961", "sen_id": 237446}, {"caption": "a news reporter talking about a remarkable work done by someone", "video_id": "video11961", "sen_id": 237447}, {"caption": "man talking about recovering from dollar s plunge on television station", "video_id": "video11961", "sen_id": 237448}, {"caption": "a man in a set of news talking about the recovery from dollar s plunge", "video_id": "video11961", "sen_id": 237449}, {"caption": "a suit man talking to someone in a show", "video_id": "video11961", "sen_id": 237450}, {"caption": "a man talking to another about the fed- induced rally and saying it was remarkable work and it should be honored", "video_id": "video11961", "sen_id": 237451}, {"caption": "the person looking honestly is involved in a discussion with someone", "video_id": "video11961", "sen_id": 237452}, {"caption": "a tv anchor is discussing about stock markets and the financial situation of the market", "video_id": "video11961", "sen_id": 237453}, {"caption": "a man bald at the centre wearing suit aprreciating some personnels s work in nyse", "video_id": "video11961", "sen_id": 237454}, {"caption": "there is a smart gentle man talking in a program", "video_id": "video11961", "sen_id": 237455}, {"caption": "an older man dressed in business attire speaks about honoring remarkable work during an interview", "video_id": "video11961", "sen_id": 237456}, {"caption": "jim cramer on cnbc talking about the day after fed-induced rally in the market", "video_id": "video11961", "sen_id": 237457}, {"caption": "a man talking about people recovering from dollar plunge", "video_id": "video11961", "sen_id": 237458}, {"caption": "a person speaking about a person in cnbc news program", "video_id": "video11961", "sen_id": 237459}, {"caption": "men are gambling over horse racing and placing their bets", "video_id": "video12102", "sen_id": 237460}, {"caption": "a man counting money betting and with a lady that has a helmet and glasses on", "video_id": "video12102", "sen_id": 237461}, {"caption": "a man counts money at a card table with people", "video_id": "video12102", "sen_id": 237462}, {"caption": "a group of men talk while they are playing poker together", "video_id": "video12102", "sen_id": 237463}, {"caption": "men play high stakes poker against one another and riders prepare for a horse race", "video_id": "video12102", "sen_id": 237464}, {"caption": "a woman in green is talking on a horse", "video_id": "video12102", "sen_id": 237465}, {"caption": "a movie trailer shows a group of people around a table while money is being counted out", "video_id": "video12102", "sen_id": 237466}, {"caption": "many people gambling at a poker table and others talking about it", "video_id": "video12102", "sen_id": 237467}, {"caption": "despots are are gambling for high stakes at the race track while jockeys mount their horses", "video_id": "video12102", "sen_id": 237468}, {"caption": "money is counted onto a table by an asian man who is gambling", "video_id": "video12102", "sen_id": 237469}, {"caption": "group of men were playing some betting game in club", "video_id": "video12102", "sen_id": 237470}, {"caption": "there is a man in black dressing watching the money", "video_id": "video12102", "sen_id": 237471}, {"caption": "a man is counting a money in the casino table", "video_id": "video12102", "sen_id": 237472}, {"caption": "a person counts their money on the bed one by one", "video_id": "video12102", "sen_id": 237473}, {"caption": "men around a poker table with poker chips and money", "video_id": "video12102", "sen_id": 237474}, {"caption": "there is a man talking to his co-workers", "video_id": "video12102", "sen_id": 237475}, {"caption": "in hollywood movie three man talk about something", "video_id": "video12102", "sen_id": 237476}, {"caption": "a man is counting a cash and arranging it", "video_id": "video12102", "sen_id": 237477}, {"caption": "a movie trailer where we can see casino scenes", "video_id": "video12102", "sen_id": 237478}, {"caption": "guy in suit and tie showing ways to eanr more money", "video_id": "video12102", "sen_id": 237479}, {"caption": "in hanoi vietnamese people ride bicycles to get around", "video_id": "video11639", "sen_id": 237480}, {"caption": "two men are working on bicycles while others are riding them", "video_id": "video11639", "sen_id": 237481}, {"caption": "black and white film showing asians using bicycles in an inner city", "video_id": "video11639", "sen_id": 237482}, {"caption": "a propoganda video of a clip from vietnam", "video_id": "video11639", "sen_id": 237483}, {"caption": "children clean bikes and wear straw hats on their heads", "video_id": "video11639", "sen_id": 237484}, {"caption": "a lady riding a bike through the busy streets of the town", "video_id": "video11639", "sen_id": 237485}, {"caption": "north vietnamese civilians dressed in traditional clothing riding bicycles through the streets of hanoi city during the vietnam war", "video_id": "video11639", "sen_id": 237486}, {"caption": "there is a man repairing a cycle on the road", "video_id": "video11639", "sen_id": 237487}, {"caption": "a story about foreigners wearing straw hats and fixing bicycles", "video_id": "video11639", "sen_id": 237488}, {"caption": "a man is bent over a metal frame while another man squats and uses a tool in a back-and-forth motion on a bicycle wheel", "video_id": "video11639", "sen_id": 237489}, {"caption": "workers are trying to repair cycle tyre then a lady rides cycle wit great effort", "video_id": "video11639", "sen_id": 237490}, {"caption": "a group of people with hats are riding bikes", "video_id": "video11639", "sen_id": 237491}, {"caption": "a black and white film showing many asian people riding bikes", "video_id": "video11639", "sen_id": 237492}, {"caption": "a movie scene is playing in the screen", "video_id": "video11639", "sen_id": 237493}, {"caption": "a couple of kids washing bike tires in black and white then some people ride around on bikes", "video_id": "video11639", "sen_id": 237494}, {"caption": "two people is working on bikes and other people are riding them", "video_id": "video11639", "sen_id": 237495}, {"caption": "bicycle works done by some people olden days having only bicycle was shown", "video_id": "video11639", "sen_id": 237496}, {"caption": "it is a film that was made during the wartime by the western team in the north of vietnam it displays people riding on cycles", "video_id": "video11639", "sen_id": 237497}, {"caption": "asian people riding bikes in the street of the city", "video_id": "video11639", "sen_id": 237498}, {"caption": "the first film made in wartime by a western team in the north of vietnam brought back from hanoi untouched and unseen", "video_id": "video11639", "sen_id": 237499}, {"caption": "a game of tennis between two male players that gets very heated", "video_id": "video10851", "sen_id": 237500}, {"caption": "two men are playing what looks to be badminton one is wearing yellow the other is wearing black and white", "video_id": "video10851", "sen_id": 237501}, {"caption": "two men playing high speed tennis in front of a crowd", "video_id": "video10851", "sen_id": 237502}, {"caption": "a couple of men face off tirelessly in a badminton match", "video_id": "video10851", "sen_id": 237503}, {"caption": "two people play a game of indoor tennis in front of a crowd of people", "video_id": "video10851", "sen_id": 237504}, {"caption": "a man in yellow is playing tennis against a man in black shirt in an indoor court and the crowd began cheering", "video_id": "video10851", "sen_id": 237505}, {"caption": "two players are playing an intense game of badminton against each other", "video_id": "video10851", "sen_id": 237506}, {"caption": "there is a yellow jersey man playing badminton", "video_id": "video10851", "sen_id": 237507}, {"caption": "bad mittin game is taking place with very suspenseful music", "video_id": "video10851", "sen_id": 237508}, {"caption": "two players playing badminton match at evening", "video_id": "video10851", "sen_id": 237509}, {"caption": "the two players playing a shuttle cock game in the indoor stadium", "video_id": "video10851", "sen_id": 237510}, {"caption": "two tennis players play an extremely tense game of tennis", "video_id": "video10851", "sen_id": 237511}, {"caption": "two men playing badminton on a green court in front of a crowd", "video_id": "video10851", "sen_id": 237512}, {"caption": "a man in a yellow uniform is playing badmitten against a man in a black uniform", "video_id": "video10851", "sen_id": 237513}, {"caption": "two men engaged in a match with spectators watching them play", "video_id": "video10851", "sen_id": 237514}, {"caption": "two persons are playing badmention game on a stadium", "video_id": "video10851", "sen_id": 237515}, {"caption": "a nice serve in shuttle badminton initiates a long and terrific rally", "video_id": "video10851", "sen_id": 237516}, {"caption": "there are two tennis players playing a game in front of a audience", "video_id": "video10851", "sen_id": 237517}, {"caption": "two men playing a game with rackets and a ball on a green court", "video_id": "video10851", "sen_id": 237518}, {"caption": "some people are playing badminton on a court", "video_id": "video10851", "sen_id": 237519}, {"caption": "little girl in a blue princess outfit in front of her house", "video_id": "video12647", "sen_id": 237520}, {"caption": "a little girl in a blue dress excited explains that it's from the movie frozen", "video_id": "video12647", "sen_id": 237521}, {"caption": "a clip of a girl talking about a frozen dress", "video_id": "video12647", "sen_id": 237522}, {"caption": "girl wearing an elsa costume explains how she is wearing this costume by disney woman then interrupts and says you can buy it at the disney store and gives out more detail", "video_id": "video12647", "sen_id": 237523}, {"caption": "a little girl in a blue dress spinning around", "video_id": "video12647", "sen_id": 237524}, {"caption": "a young girl outside showcasing her princess outfit", "video_id": "video12647", "sen_id": 237525}, {"caption": "a young girl in a blue dress stands in the middle of a garden", "video_id": "video12647", "sen_id": 237526}, {"caption": "a kid showing her dress in front of her home", "video_id": "video12647", "sen_id": 237527}, {"caption": "the small girl is very excited of wearing this beautiful dress which her mom brought for her", "video_id": "video12647", "sen_id": 237528}, {"caption": "a little girl in a blue princess dres is talking about her dress", "video_id": "video12647", "sen_id": 237529}, {"caption": "there is a blue dress girl talking in front of the house", "video_id": "video12647", "sen_id": 237530}, {"caption": "one little girl wearing a new dress and talking", "video_id": "video12647", "sen_id": 237531}, {"caption": "a young girl describes a princess dress she is wearing and poses for pictures", "video_id": "video12647", "sen_id": 237532}, {"caption": "a little girl is talking about her plue princess dress from a movie", "video_id": "video12647", "sen_id": 237533}, {"caption": "a young girl is wearing an elsa costume from the disney store", "video_id": "video12647", "sen_id": 237534}, {"caption": "a small girl is waering blue long dress and expressing her feelings towards others", "video_id": "video12647", "sen_id": 237535}, {"caption": "a cute girl is talking about her new dress", "video_id": "video12647", "sen_id": 237536}, {"caption": "a little girl shows her blue dress and tells how beautiful it is", "video_id": "video12647", "sen_id": 237537}, {"caption": "a girl child in blue dress is talking about her dress", "video_id": "video12647", "sen_id": 237538}, {"caption": "a girl in a blue dress it outside talking about something", "video_id": "video12647", "sen_id": 237539}, {"caption": "a woman with red hair is wearing lace over her face and neck", "video_id": "video11228", "sen_id": 237540}, {"caption": "a woman describes and demonstrates a futuristic make-up technique", "video_id": "video11228", "sen_id": 237541}, {"caption": "a person with a bloody background wearing face and neck costume makeup", "video_id": "video11228", "sen_id": 237542}, {"caption": "red haired woman with a white veil over her face standing in a living room", "video_id": "video11228", "sen_id": 237543}, {"caption": "an interesting woman with a deep voice is showing the audience her white mask which she describes as her halloween costume", "video_id": "video11228", "sen_id": 237544}, {"caption": "a woman talks very rapidly d shows off a halloween costume that resembles a mummy", "video_id": "video11228", "sen_id": 237545}, {"caption": "a woman wearing a weird costume and talking about it", "video_id": "video11228", "sen_id": 237546}, {"caption": "a women in weird make up is saying something", "video_id": "video11228", "sen_id": 237547}, {"caption": "a woman is explaining about something with decorative art in her body", "video_id": "video11228", "sen_id": 237548}, {"caption": "a woman describes a very unique makeup application she has done to herself for a halloween party", "video_id": "video11228", "sen_id": 237549}, {"caption": "a lady with some type of costume on talking very fast about the costume and makeup she has put on herself", "video_id": "video11228", "sen_id": 237550}, {"caption": "there is a women talking from her room", "video_id": "video11228", "sen_id": 237551}, {"caption": "a woman advertising a halloween constume of walking when your eyes are closed", "video_id": "video11228", "sen_id": 237552}, {"caption": "woman in white lace and makeup costume describing what it takes and asking for subscribers to her youtube channel", "video_id": "video11228", "sen_id": 237553}, {"caption": "a lady wearing a white mask and suit sits and explains her costume", "video_id": "video11228", "sen_id": 237554}, {"caption": "a woman with a mask is talking about something", "video_id": "video11228", "sen_id": 237555}, {"caption": "there is a women with verity make up on face", "video_id": "video11228", "sen_id": 237556}, {"caption": "the woman talks with loud lipstip on her lips and mask", "video_id": "video11228", "sen_id": 237557}, {"caption": "a woman with brown lipstick and mask on her face is waving her hands and speaking", "video_id": "video11228", "sen_id": 237558}, {"caption": "a women who is puttig some face painting and talkig about the fac make-up", "video_id": "video11228", "sen_id": 237559}, {"caption": "a person in purple top is demonstrating how to curl hair with a curling iron", "video_id": "video10563", "sen_id": 237560}, {"caption": "a lady is fixing and doing her hair in front of the camera doing tutorials", "video_id": "video10563", "sen_id": 237561}, {"caption": "a woman in a purple shirt is curling her hair in front of a black background", "video_id": "video10563", "sen_id": 237562}, {"caption": "a woman with long reddish-brown hair in a purple dress lifts a section of hair with one hand and uses a curling iron with the other hand", "video_id": "video10563", "sen_id": 237563}, {"caption": "a woman is curling her hair with a curling iron", "video_id": "video10563", "sen_id": 237564}, {"caption": "a lady curls her hair using a machine", "video_id": "video10563", "sen_id": 237565}, {"caption": "the women uses a curling iron to curl her long brown hair", "video_id": "video10563", "sen_id": 237566}, {"caption": "there is a women in violet dressing talking something", "video_id": "video10563", "sen_id": 237567}, {"caption": "a girl gives tips for giving the curling effect on her hair", "video_id": "video10563", "sen_id": 237568}, {"caption": "a woman is straitening her with an instrument", "video_id": "video10563", "sen_id": 237569}, {"caption": "a woman is showing how to do her hair", "video_id": "video10563", "sen_id": 237570}, {"caption": "a women in purple trys to show off her hairstyle", "video_id": "video10563", "sen_id": 237571}, {"caption": "one beautiful and lovely women makeup in hair", "video_id": "video10563", "sen_id": 237572}, {"caption": "a young woman demonstrates her technique for styling her hair", "video_id": "video10563", "sen_id": 237573}, {"caption": "an attractive young brunette with long hair doing a hair tutorial she is using a curling iron and is describing how to curl your hair", "video_id": "video10563", "sen_id": 237574}, {"caption": "a woman is showing how to use a curling iron", "video_id": "video10563", "sen_id": 237575}, {"caption": "a woman teaching people how to use a curling iron to get a curly hair style", "video_id": "video10563", "sen_id": 237576}, {"caption": "one beautiful and lovely women makeup in her hair", "video_id": "video10563", "sen_id": 237577}, {"caption": "the girl in purple dress teaches us how to make curly hair using the straightner", "video_id": "video10563", "sen_id": 237578}, {"caption": "sexy brunette making her hair as she talks ways to try one", "video_id": "video10563", "sen_id": 237579}, {"caption": "a man is talking on stage about work and why people work", "video_id": "video10268", "sen_id": 237580}, {"caption": "a man wearing a white shirt and gray pants lectures from a podium that's located on a stage", "video_id": "video10268", "sen_id": 237581}, {"caption": "a middle aged man standing next to a podium speaking to people", "video_id": "video10268", "sen_id": 237582}, {"caption": "a man standing behind a podium is talking to an audience in front of him", "video_id": "video10268", "sen_id": 237583}, {"caption": "barry schwartz stands at a lecturn on a stage giving a lecture about why we work", "video_id": "video10268", "sen_id": 237584}, {"caption": "a man in white shirt talking on a stage", "video_id": "video10268", "sen_id": 237585}, {"caption": "a men wearing white shirt giving speech", "video_id": "video10268", "sen_id": 237586}, {"caption": "an old man standing in a private room and giving speech", "video_id": "video10268", "sen_id": 237587}, {"caption": "a person with white shirt talks in the mike in front of the crowd he stand by keeping his left leg back", "video_id": "video10268", "sen_id": 237588}, {"caption": "the men standing beside the the mike and talking about something", "video_id": "video10268", "sen_id": 237589}, {"caption": "a white shirt man talking from the stage", "video_id": "video10268", "sen_id": 237590}, {"caption": "barry schwartz speaking at ted in march 2014 about living and pursuing life to the fullest and not just going through the motions everyday", "video_id": "video10268", "sen_id": 237591}, {"caption": "a man lectures to a large crowd about the subject of work", "video_id": "video10268", "sen_id": 237592}, {"caption": "speaker announce a march 2014 very opportunity and like best product", "video_id": "video10268", "sen_id": 237593}, {"caption": "old guy white shirt talking to the audience", "video_id": "video10268", "sen_id": 237594}, {"caption": "barry schwartz at a podium discussing why we work at ted conference", "video_id": "video10268", "sen_id": 237595}, {"caption": "the man in white shirt is talking on the stage", "video_id": "video10268", "sen_id": 237596}, {"caption": "a man lectures to a large crowd about the theories around working for a living", "video_id": "video10268", "sen_id": 237597}, {"caption": "a man on the stage talking to the people", "video_id": "video10268", "sen_id": 237598}, {"caption": "a man behind a podium is speaking to some people", "video_id": "video10268", "sen_id": 237599}, {"caption": "a woman describes her process for preparing a turkey for baking", "video_id": "video10820", "sen_id": 237600}, {"caption": "a woman adds chopped vegetables and lemon juice to a crockpot with a raw chicken in it", "video_id": "video10820", "sen_id": 237601}, {"caption": "an uncooked chicken in a slow cooker pot woman hands pouring lemon juice on it", "video_id": "video10820", "sen_id": 237602}, {"caption": "someone is pouring lemon juice on top of a turkey", "video_id": "video10820", "sen_id": 237603}, {"caption": "a graphic that uses a female voiceover and one hand to explain how to prepare and cook a turkey in a black pot", "video_id": "video10820", "sen_id": 237604}, {"caption": "in a kitchen a woman is slicing vegetables for cooking", "video_id": "video10820", "sen_id": 237605}, {"caption": "the person cooks the food in the big pot and then adds herbs", "video_id": "video10820", "sen_id": 237606}, {"caption": "a lady puts cut vegetables into her chicken dish that she is cooking", "video_id": "video10820", "sen_id": 237607}, {"caption": "a girl and chicken lemon juice on chicken dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10820", "sen_id": 237608}, {"caption": "chicken in kept inside the pan and lime juice is been added on the top of it", "video_id": "video10820", "sen_id": 237609}, {"caption": "there is a woman making a simple chicken dish", "video_id": "video10820", "sen_id": 237610}, {"caption": "a turkey is being setup to be cooked in a crock-pot with various things", "video_id": "video10820", "sen_id": 237611}, {"caption": "in a kitchen woman is putting the ingredients to make lunch", "video_id": "video10820", "sen_id": 237612}, {"caption": "a women is doing some non-vegetarian dish and she is adding some lemon juice on it to the receipee", "video_id": "video10820", "sen_id": 237613}, {"caption": "a person is showing a machine inside", "video_id": "video10820", "sen_id": 237614}, {"caption": "a woman narrates as she covers a raw naked chicken in vegetables and seasoning in a roaster oven on a kitchen counter", "video_id": "video10820", "sen_id": 237615}, {"caption": "a lady is marinating chicken in the oven and is explaining how to cook it", "video_id": "video10820", "sen_id": 237616}, {"caption": "preparing a turkey for cooking with a covering of lemon juice", "video_id": "video10820", "sen_id": 237617}, {"caption": "a woman with red fingernails is preparing a turkey to be cooked", "video_id": "video10820", "sen_id": 237618}, {"caption": "a uncooked turkey is sitting in a tray", "video_id": "video10820", "sen_id": 237619}, {"caption": "a young woman talks about a volleyball team in a large indoor facility", "video_id": "video11357", "sen_id": 237620}, {"caption": "a woman holding a ball and talking about playing volleyball", "video_id": "video11357", "sen_id": 237621}, {"caption": "a woman in a pink tank top holds a volleyball", "video_id": "video11357", "sen_id": 237622}, {"caption": "a woman holding a large white ball and talking", "video_id": "video11357", "sen_id": 237623}, {"caption": "a young woman talks about the volleyball team that she plays on", "video_id": "video11357", "sen_id": 237624}, {"caption": "a woman in a pink top explains facts about volley ball", "video_id": "video11357", "sen_id": 237625}, {"caption": "a female volley ball player talks about a women s team", "video_id": "video11357", "sen_id": 237626}, {"caption": "woman in pink shirt talking while holding a white ball", "video_id": "video11357", "sen_id": 237627}, {"caption": "a brown haired woman describes various aspects of volleyball", "video_id": "video11357", "sen_id": 237628}, {"caption": "a woman in a pink dress holds an oversized white volleyball as she speaks", "video_id": "video11357", "sen_id": 237629}, {"caption": "a young woman in pink presents a ladies volleyball team while holding an oversize volleyball", "video_id": "video11357", "sen_id": 237630}, {"caption": "a young woman in a pink dress talks about a volleyball team", "video_id": "video11357", "sen_id": 237631}, {"caption": "a woman is holding a white ball on news tv", "video_id": "video11357", "sen_id": 237632}, {"caption": "a spanish lady speaking about ladies playing volleyball", "video_id": "video11357", "sen_id": 237633}, {"caption": "sexy brunette in pink dress talking to the camera", "video_id": "video11357", "sen_id": 237634}, {"caption": "a woman talking about volleyball but says something about the twin towers", "video_id": "video11357", "sen_id": 237635}, {"caption": "a woman in a pink shirt with a volleyball talking", "video_id": "video11357", "sen_id": 237636}, {"caption": "a woman on news tv is holding a ball", "video_id": "video11357", "sen_id": 237637}, {"caption": "isabel oli speaking about the ladies playing volleyball", "video_id": "video11357", "sen_id": 237638}, {"caption": "a woman with brown hair is looking at some thing", "video_id": "video11357", "sen_id": 237639}, {"caption": "a woman in a black and white top dances in a crowded dance club", "video_id": "video12073", "sen_id": 237640}, {"caption": "various attractive young women are dancing in a club to a latin tune", "video_id": "video12073", "sen_id": 237641}, {"caption": "legs wearing sparkly high-heeled shoes stick up in the air during a women's dance party in a disco with colorful search lights", "video_id": "video12073", "sen_id": 237642}, {"caption": "scantily-clad women dance to music in a nightclub", "video_id": "video12073", "sen_id": 237643}, {"caption": "people are dancing and having fun in a club", "video_id": "video12073", "sen_id": 237644}, {"caption": "girls wearing party dress are dancing in a night club", "video_id": "video12073", "sen_id": 237645}, {"caption": "a woman dances to foreign music in a crowded club", "video_id": "video12073", "sen_id": 237646}, {"caption": "girls are enjoying in the pub with dance and drinks", "video_id": "video12073", "sen_id": 237647}, {"caption": "a woman is singing and dancing with other women", "video_id": "video12073", "sen_id": 237648}, {"caption": "a music video for a song called selfie by artist roksana", "video_id": "video12073", "sen_id": 237649}, {"caption": "multiple woman are dancing to music at a club", "video_id": "video12073", "sen_id": 237650}, {"caption": "women dancing and singing in a foreign language in a club atmosphere", "video_id": "video12073", "sen_id": 237651}, {"caption": "a womans legs with high heels and women dancing in a night club", "video_id": "video12073", "sen_id": 237652}, {"caption": "young stylish dancers show their stuff in a trendy night club", "video_id": "video12073", "sen_id": 237653}, {"caption": "a group of women are singing and dancing in a music video", "video_id": "video12073", "sen_id": 237654}, {"caption": "cute girls are dancing and singing in a mood of extreme pleasure", "video_id": "video12073", "sen_id": 237655}, {"caption": "women dancing in a club atmosphere and to a song in a foreign language", "video_id": "video12073", "sen_id": 237656}, {"caption": "many women wearing dresses and dress clothes dance in a club setting", "video_id": "video12073", "sen_id": 237657}, {"caption": "a girl in white dress black jacket wearing color singing song music dancing many girls beside dancing displaying on screen", "video_id": "video12073", "sen_id": 237658}, {"caption": "a video of women dancing to some type of spanish or latin american music", "video_id": "video12073", "sen_id": 237659}, {"caption": "some indian people fighting and some guy gets up with really suspicious music", "video_id": "video12870", "sen_id": 237660}, {"caption": "this video depicts several woman laughing and carrying on much to the annoyment of the man", "video_id": "video12870", "sen_id": 237661}, {"caption": "a man leaving the area of shouting women", "video_id": "video12870", "sen_id": 237662}, {"caption": "a man sitting by himself on a restaurant gets upset and leaves the place after a group of noisy women bother him", "video_id": "video12870", "sen_id": 237663}, {"caption": "a group of indian girls chatter and move about in a large open area", "video_id": "video12870", "sen_id": 237664}, {"caption": "two woman are fighting and talking in a foreign language", "video_id": "video12870", "sen_id": 237665}, {"caption": "a man with so many womans on an area", "video_id": "video12870", "sen_id": 237666}, {"caption": "a girl struggles to escape and the hero gets up and moves forward", "video_id": "video12870", "sen_id": 237667}, {"caption": "in a movie hero madhavan is in restaurant and come near", "video_id": "video12870", "sen_id": 237668}, {"caption": "a group of women cry and scream for help", "video_id": "video12870", "sen_id": 237669}, {"caption": "in the restaurant a person in grey shirt standing from the table and walking near the girls", "video_id": "video12870", "sen_id": 237670}, {"caption": "a man in shirt walking near by his lover", "video_id": "video12870", "sen_id": 237671}, {"caption": "a group of middle eastern woman seem to be fighting in a public place while a man watching stands up and walks toward them", "video_id": "video12870", "sen_id": 237672}, {"caption": "its a south indian movie scene were hero is mahadvan", "video_id": "video12870", "sen_id": 237673}, {"caption": "a man outside is walking towards a woman", "video_id": "video12870", "sen_id": 237674}, {"caption": "there is a young man walking around the girl", "video_id": "video12870", "sen_id": 237675}, {"caption": "the two girls are sitting while the one man approaches towrads them", "video_id": "video12870", "sen_id": 237676}, {"caption": "an asian movie scene actor staring on the actress", "video_id": "video12870", "sen_id": 237677}, {"caption": "two women are shown in the foreground in some kind of emotional situation while a man stands up and walks their way", "video_id": "video12870", "sen_id": 237678}, {"caption": "a man with black hair is walking around outside", "video_id": "video12870", "sen_id": 237679}, {"caption": "a large green man known as the incredible hulk breaks out of a glass chamber he is in and begins destroying everything in the lab", "video_id": "video12129", "sen_id": 237680}, {"caption": "the superhero tearing up a lab and bursting through the floor", "video_id": "video12129", "sen_id": 237681}, {"caption": "the incredible hulk a large green-skinned superhero who looks like a monster escapes a glass and metal container and goes on a rampage", "video_id": "video12129", "sen_id": 237682}, {"caption": "large hulk breaks out of metal chamber with water rushing out and begins to destroy room", "video_id": "video12129", "sen_id": 237683}, {"caption": "the incredible hulk breaks out of a tube and wreaks havoc on a facility", "video_id": "video12129", "sen_id": 237684}, {"caption": "a huge green man is throwing things around and having a fit", "video_id": "video12129", "sen_id": 237685}, {"caption": "a huge man is angry and destroying things around", "video_id": "video12129", "sen_id": 237686}, {"caption": "a hulk comes out of the machine and broke the glass and comes out", "video_id": "video12129", "sen_id": 237687}, {"caption": "hulk breaking factory machines and screaming in anger", "video_id": "video12129", "sen_id": 237688}, {"caption": "a person watched a green man jump out of a chamber then the man runs and destroys a building", "video_id": "video12129", "sen_id": 237689}, {"caption": "it is a film sean a big man like monster came from a tube", "video_id": "video12129", "sen_id": 237690}, {"caption": "the hulk movie character is showing his anger on things", "video_id": "video12129", "sen_id": 237691}, {"caption": "lady in car then the man in green skin breaks the glass and then save many people", "video_id": "video12129", "sen_id": 237692}, {"caption": "the hulk has a flashback and smashes out of a glass container where he was being held", "video_id": "video12129", "sen_id": 237693}, {"caption": "a big green monster is breaking free", "video_id": "video12129", "sen_id": 237694}, {"caption": "the incredible hulk has just been unleashed he is rampaging through the lab", "video_id": "video12129", "sen_id": 237695}, {"caption": "a big body man breaking all the things", "video_id": "video12129", "sen_id": 237696}, {"caption": "trailor of an animation film or serial is running on screen", "video_id": "video12129", "sen_id": 237697}, {"caption": "a heavily muscled creature the hulk is rampaging his way through a large factory setting throwing concrete and equipment into walls", "video_id": "video12129", "sen_id": 237698}, {"caption": "a woman is watching a green monster", "video_id": "video12129", "sen_id": 237699}, {"caption": "a group of women in lingerie are walking down a runway for a fashion show", "video_id": "video10654", "sen_id": 237700}, {"caption": "a blonde woman in a red shawl and white bathing suit smiling and walking down a runway", "video_id": "video10654", "sen_id": 237701}, {"caption": "heidi klum models for the victoria secret fashion show", "video_id": "video10654", "sen_id": 237702}, {"caption": "a blonde woman is walking on a catwalk and showing off lingerie", "video_id": "video10654", "sen_id": 237703}, {"caption": "a brown hair woman walking on the ramp", "video_id": "video10654", "sen_id": 237704}, {"caption": "a lady red color dressed comimg for a walk", "video_id": "video10654", "sen_id": 237705}, {"caption": "a slightly dressed woman walks down a models runway", "video_id": "video10654", "sen_id": 237706}, {"caption": "a blonde lady walks on the stage full of lights in a bikini", "video_id": "video10654", "sen_id": 237707}, {"caption": "supermodels are walking around in a fashion show", "video_id": "video10654", "sen_id": 237708}, {"caption": "there is a brown hair women walking on the ramp", "video_id": "video10654", "sen_id": 237709}, {"caption": "a fashion show lady models were walking on the stage", "video_id": "video10654", "sen_id": 237710}, {"caption": "a beautiful tall blonde women wearing a red faux fur scarf and red bikini is walking the runaway showing spectators the beauty of her and her fashion", "video_id": "video10654", "sen_id": 237711}, {"caption": "a model on a flashy runway modeling an expensive sequin bikini", "video_id": "video10654", "sen_id": 237712}, {"caption": " blonde model walks the runway in a red sequined bikini with a red fur stole around her shoulders", "video_id": "video10654", "sen_id": 237713}, {"caption": "a woman is entering the fashion show and walking there", "video_id": "video10654", "sen_id": 237714}, {"caption": "a girl in red dress wearing model fashion showing walking on stage displaying on screen", "video_id": "video10654", "sen_id": 237715}, {"caption": "some models are walking on a cat walk", "video_id": "video10654", "sen_id": 237716}, {"caption": "a fashion model walks down the runway as spotlights go off all around her", "video_id": "video10654", "sen_id": 237717}, {"caption": "a model with blonde hair wearing a bikini walks down a runway in a show", "video_id": "video10654", "sen_id": 237718}, {"caption": "in a fashion show a model in the make up room enters the ramp doing cat walk", "video_id": "video10654", "sen_id": 237719}, {"caption": "a little boy tries to protect his stuffed animal from his dog", "video_id": "video12174", "sen_id": 237720}, {"caption": "a young boy is holding a baby chimp and protecting it from harrasing by a big dog", "video_id": "video12174", "sen_id": 237721}, {"caption": "a boy tries to protect his pet monkey from a large dog", "video_id": "video12174", "sen_id": 237722}, {"caption": "a boy is holding a money in a diaper a dog of somesort attacks the pair and the boy fends the dog off by kicking him and keeping the monkey out of reach", "video_id": "video12174", "sen_id": 237723}, {"caption": "a boy holds a monkey and defends it from a hyena", "video_id": "video12174", "sen_id": 237724}, {"caption": "a little kid holding a monkey protecting it from a different animal", "video_id": "video12174", "sen_id": 237725}, {"caption": "a boy holding a baby monkey while fighting off a dog", "video_id": "video12174", "sen_id": 237726}, {"caption": "a young boy is standing outside holding a baby monkey in his arms in front of him he turns and is scolding a hyena from grabbing the monkey", "video_id": "video12174", "sen_id": 237727}, {"caption": "the chid is fighting off the dog from his monkey pet", "video_id": "video12174", "sen_id": 237728}, {"caption": "a kid holding a baby monkey kicks a hyena away", "video_id": "video12174", "sen_id": 237729}, {"caption": "a small boy is fighting with dog to save the monkey holding in his hand", "video_id": "video12174", "sen_id": 237730}, {"caption": "a young boy is holding a monkey and trying to fend off a dog", "video_id": "video12174", "sen_id": 237731}, {"caption": "a little boy holding a backpack lightlighly kicking away a curious dog", "video_id": "video12174", "sen_id": 237732}, {"caption": "a boy is fighting a hyena while holding a small monkey", "video_id": "video12174", "sen_id": 237733}, {"caption": "a small boy playing with his dog on outside", "video_id": "video12174", "sen_id": 237734}, {"caption": "a little boy wearing checks shirt color monkey in hand kicking a dog displaying on screen", "video_id": "video12174", "sen_id": 237735}, {"caption": "a boy is playing with a dog and holding black teddy", "video_id": "video12174", "sen_id": 237736}, {"caption": "a very small male child is holding a monkey while kicking at a grey hyena looking dog that is calmly and almost playfully trying to reach the monkey", "video_id": "video12174", "sen_id": 237737}, {"caption": "a young boy holds his pet monkey and tries to protect it from another animal", "video_id": "video12174", "sen_id": 237738}, {"caption": "a little boys with his shirt open is keeping his monkey in a diaper safe from the agressive hyena", "video_id": "video12174", "sen_id": 237739}, {"caption": "a brown liquid going into a sauce pan then being poured into a plastic bag", "video_id": "video11795", "sen_id": 237740}, {"caption": "chocolate sauce is mixed inside a glass mixing bowl with a spoon chocolate sauce is poured into a metal measuring cup and chocolate sauce is poured into a resealable plastic bag", "video_id": "video11795", "sen_id": 237741}, {"caption": "a woman is showing step by step instructions and tips to make milkshake", "video_id": "video11795", "sen_id": 237742}, {"caption": "a dark liquid is being measure and poured into a bag", "video_id": "video11795", "sen_id": 237743}, {"caption": "woman pours chocolate melted into measuring cup and also a bag for storage", "video_id": "video11795", "sen_id": 237744}, {"caption": "a lady pours chocolate into a measuring cup and the rest into a plastic ziploc bag", "video_id": "video11795", "sen_id": 237745}, {"caption": "a woman with an australian accent is describing how to make chocolate ganache while chocolate is poured into a measuring cup and plastic bag", "video_id": "video11795", "sen_id": 237746}, {"caption": "a woman showing how to make a milkshake", "video_id": "video11795", "sen_id": 237747}, {"caption": "a picture of chocolate being poured into a plastic bag", "video_id": "video11795", "sen_id": 237748}, {"caption": "chocolate ganache is poured into a measuring cup and into a plastic bag", "video_id": "video11795", "sen_id": 237749}, {"caption": "its a syrepe poring in a steel vessel and a cover", "video_id": "video11795", "sen_id": 237750}, {"caption": "sauce poured on a container packed", "video_id": "video11795", "sen_id": 237751}, {"caption": "a woman talks about a chocolate sauce that she has prepared in her kitchen", "video_id": "video11795", "sen_id": 237752}, {"caption": "a woman is describing part of the process of how to make h2 milkshakes", "video_id": "video11795", "sen_id": 237753}, {"caption": "there is a lady pouring stuff into a pot to make milkshakes", "video_id": "video11795", "sen_id": 237754}, {"caption": "a woman narrates as she pours a chocolate colored mousse into a saucepan", "video_id": "video11795", "sen_id": 237755}, {"caption": "a person is pouring chocolate syrup in a bag and a measuring cup", "video_id": "video11795", "sen_id": 237756}, {"caption": "a lady is demonstrating how to make milkshakes", "video_id": "video11795", "sen_id": 237757}, {"caption": "a recipe to make milkshake is being explained in which a creamy mixer made earlier is being measured using a steel cup and rest of the cream is poured into a plastic wrapper", "video_id": "video11795", "sen_id": 237758}, {"caption": "a person is pouring a stream of chocolate", "video_id": "video11795", "sen_id": 237759}, {"caption": "a man is talking live about a space mission on a news show", "video_id": "video12822", "sen_id": 237760}, {"caption": "a man with black hair speaks to a woman wearing a sleeveless black dress with white collar who is seated across from him on a television-news set", "video_id": "video12822", "sen_id": 237761}, {"caption": "an asian man talks to an asian woman in a news program", "video_id": "video12822", "sen_id": 237762}, {"caption": "a news anchor wears a dark jacket and purple tie while looking down at his notes and speaking to his colleague on a tiled set", "video_id": "video12822", "sen_id": 237763}, {"caption": "a man and a woman talk about market conditions in a business news report", "video_id": "video12822", "sen_id": 237764}, {"caption": "a news anchor is discussing the weather and space travel", "video_id": "video12822", "sen_id": 237765}, {"caption": "a person is speaking on a news channel", "video_id": "video12822", "sen_id": 237766}, {"caption": "two persons on a tv channel talks about the latest leap into space by nasa", "video_id": "video12822", "sen_id": 237767}, {"caption": "a man is reading a news in the channe", "video_id": "video12822", "sen_id": 237768}, {"caption": "a man in blue coat wearing dress cloth sitting with girl in black dress speaking papers on table displaying on screen", "video_id": "video12822", "sen_id": 237769}, {"caption": "this is a live news the reader reading the news", "video_id": "video12822", "sen_id": 237770}, {"caption": "in a studio two people are discussing about their experience", "video_id": "video12822", "sen_id": 237771}, {"caption": "a male news anchor is speaking a trip pending trip to space with a person", "video_id": "video12822", "sen_id": 237772}, {"caption": "a reporter speaks about india s mars mission cost", "video_id": "video12822", "sen_id": 237773}, {"caption": "a man in white shirt color wearing dress cloth and girl in black sitting beside speaking displaying on screen", "video_id": "video12822", "sen_id": 237774}, {"caption": "there is a suit man talking in a tv show", "video_id": "video12822", "sen_id": 237775}, {"caption": "a news channel person asks few questions to the guest", "video_id": "video12822", "sen_id": 237776}, {"caption": "a man having a conversation with a woman who is wearing a black top", "video_id": "video12822", "sen_id": 237777}, {"caption": "a man in a grey suit and tie speaks animatedly sitting in front of a background of translucent cubes", "video_id": "video12822", "sen_id": 237778}, {"caption": "david ingles talking about going ahead with the launch because the weather in hong kong is good", "video_id": "video12822", "sen_id": 237779}, {"caption": "super stars are posing in front of cameras", "video_id": "video11254", "sen_id": 237780}, {"caption": "a woman with brown hair is posing for a fashion show", "video_id": "video11254", "sen_id": 237781}, {"caption": "various well-dressed people pose for a fashion show", "video_id": "video11254", "sen_id": 237782}, {"caption": "a woman in a leather coat poses for pictures in front of a large billboard", "video_id": "video11254", "sen_id": 237783}, {"caption": "assorted people stand in front of a wall while photographers take pictures of them", "video_id": "video11254", "sen_id": 237784}, {"caption": "several people are participating in a glamour event with people in stands", "video_id": "video11254", "sen_id": 237785}, {"caption": "female models standing on the red carpet getting their pictures taken", "video_id": "video11254", "sen_id": 237786}, {"caption": "several celebrities at a photo opp for glamour", "video_id": "video11254", "sen_id": 237787}, {"caption": "a red carpet pre show at a fashion event", "video_id": "video11254", "sen_id": 237788}, {"caption": "various celebrities are posing for pictures at a fashion show sponsored by glamour magazine", "video_id": "video11254", "sen_id": 237789}, {"caption": "an advert shows people with fashion cloths", "video_id": "video11254", "sen_id": 237790}, {"caption": "a series of women are shown on a red carpet for a fashion show", "video_id": "video11254", "sen_id": 237791}, {"caption": "young models pose for picutres at a large fashion show", "video_id": "video11254", "sen_id": 237792}, {"caption": "on a fashion show different ladies pausing with different costumes", "video_id": "video11254", "sen_id": 237793}, {"caption": "a girls in white dresses fashion show boys kissing each other audience watching displaying on screen", "video_id": "video11254", "sen_id": 237794}, {"caption": "a lady is standing on the stage by different color dress", "video_id": "video11254", "sen_id": 237795}, {"caption": "a people are coming to the stage and posing", "video_id": "video11254", "sen_id": 237796}, {"caption": "guys are transferred into girls then their dress are nice", "video_id": "video11254", "sen_id": 237797}, {"caption": "beautiful ladies and gentlemen having photo session", "video_id": "video11254", "sen_id": 237798}, {"caption": "the beautiful girls and boys are participate the fashion show stage the last girl came and unwearied the cooling glass with the smile", "video_id": "video11254", "sen_id": 237799}, {"caption": "women wearing head scarves are all talking and smiling", "video_id": "video12848", "sen_id": 237800}, {"caption": "a clip that is interviewing various veiled women", "video_id": "video12848", "sen_id": 237801}, {"caption": "video of muslim women talking quick images of a subway arriving at the station; jazz background music several muslim women talking background music (jazz) and a subway arriving at a station", "video_id": "video12848", "sen_id": 237802}, {"caption": "a couple islamic women talk to each other on a busy city street", "video_id": "video12848", "sen_id": 237803}, {"caption": "women who are wearing head scarves are talking", "video_id": "video12848", "sen_id": 237804}, {"caption": "multiple ladies with objects around there heads then a train paas", "video_id": "video12848", "sen_id": 237805}, {"caption": "women with their heads covered talking outside and a train pulling in a station", "video_id": "video12848", "sen_id": 237806}, {"caption": "there is a woman in coral and white standing in a city setting followed by two separate women in black speaking and a subway", "video_id": "video12848", "sen_id": 237807}, {"caption": "different woman with scarves covering their heads are talking to a camera while music is palying", "video_id": "video12848", "sen_id": 237808}, {"caption": "many different women are speaking to the cameras", "video_id": "video12848", "sen_id": 237809}, {"caption": "two woman are speaking on the railway station", "video_id": "video12848", "sen_id": 237810}, {"caption": "muslim women are saying something while a local train arrives at the station", "video_id": "video12848", "sen_id": 237811}, {"caption": "some girls are singing and they wore head caps and train is coming to station", "video_id": "video12848", "sen_id": 237812}, {"caption": "one beautiful and lovely women talks in road", "video_id": "video12848", "sen_id": 237813}, {"caption": "two woman were standing in the road side", "video_id": "video12848", "sen_id": 237814}, {"caption": "a woman with a head dress is talking to the person making the video but music is playing and the woman can not be heard", "video_id": "video12848", "sen_id": 237815}, {"caption": "two different women in a head scarves are shown talking while music plays", "video_id": "video12848", "sen_id": 237816}, {"caption": "there are womens talking on the street and the train goes", "video_id": "video12848", "sen_id": 237817}, {"caption": "two womens in roadways and talks each other", "video_id": "video12848", "sen_id": 237818}, {"caption": "two muslim women in full head scarfs talk about the fashion of their head pieces", "video_id": "video12848", "sen_id": 237819}, {"caption": "a chef prepares a dish using steak and peppers", "video_id": "video11790", "sen_id": 237820}, {"caption": "quick and simple steps to create an appealing meal how to make a meal using some simple veggies and canned goods", "video_id": "video11790", "sen_id": 237821}, {"caption": "a tutorial on how to prepare meat with jalepenos", "video_id": "video11790", "sen_id": 237822}, {"caption": "a person pouts peppers over meat sitting in a glass dish", "video_id": "video11790", "sen_id": 237823}, {"caption": "a person making fish and green beans", "video_id": "video11790", "sen_id": 237824}, {"caption": "a chef works on a recipe by adding a can of peppers to some pieces of meat", "video_id": "video11790", "sen_id": 237825}, {"caption": "someone is pouring pickled jalapenos over rib eye steaks", "video_id": "video11790", "sen_id": 237826}, {"caption": "a glass baking dish holds three pieces of red meat with white fat around three edges a cook adds a red-labeled can of sliced green peppers with its liquid and a hand smoothes the peppers over the entire dish", "video_id": "video11790", "sen_id": 237827}, {"caption": "a guy pours in some liquid to the meat to marinate it", "video_id": "video11790", "sen_id": 237828}, {"caption": "marinate rib eye steaks with 1 large can of sliced pickled", "video_id": "video11790", "sen_id": 237829}, {"caption": "a person is marinating rib eye steaks with large can of sliced chillies", "video_id": "video11790", "sen_id": 237830}, {"caption": "a person is making some food inside of a dish", "video_id": "video11790", "sen_id": 237831}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11790", "sen_id": 237832}, {"caption": "someone is pouring green vegetables on top of meat in a glass dish", "video_id": "video11790", "sen_id": 237833}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11790", "sen_id": 237834}, {"caption": "a person is putting some veggeies in the glass bowl and preparing for some thing", "video_id": "video11790", "sen_id": 237835}, {"caption": "there are some meet for a delicious dish", "video_id": "video11790", "sen_id": 237836}, {"caption": "in a white glass bowl large slice picked jalapenos are poured into the bowl", "video_id": "video11790", "sen_id": 237837}, {"caption": "a woman is pouring stake in to the bowl", "video_id": "video11790", "sen_id": 237838}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11790", "sen_id": 237839}, {"caption": "a woman on the bbc talking about the upcoming elections in israel", "video_id": "video11320", "sen_id": 237840}, {"caption": "a woman in a green shirt is hosting a news program", "video_id": "video11320", "sen_id": 237841}, {"caption": "a news woman in a green shirt is talking about israel elections", "video_id": "video11320", "sen_id": 237842}, {"caption": "a female news anchor talks about different tax related issues affecting israel", "video_id": "video11320", "sen_id": 237843}, {"caption": "a news reporter from uk is speaking about the news in israel", "video_id": "video11320", "sen_id": 237844}, {"caption": "lady news reader told about israel elections and now bottom of the script going on to tell the current position that the israelis are voting in a general election", "video_id": "video11320", "sen_id": 237845}, {"caption": "there is a women talking from the studio", "video_id": "video11320", "sen_id": 237846}, {"caption": "a lady news anchor on bbc world news channel read the news about israel elections", "video_id": "video11320", "sen_id": 237847}, {"caption": "a woman wearing a green shirt and black pants reads the news from a paper she is holding", "video_id": "video11320", "sen_id": 237848}, {"caption": "it s about tax increased discusion and how it s going to impact the elections", "video_id": "video11320", "sen_id": 237849}, {"caption": "a women in green top reading the news of israel elections", "video_id": "video11320", "sen_id": 237850}, {"caption": "a women in green dress is telling news report", "video_id": "video11320", "sen_id": 237851}, {"caption": "a lady is speaking to t he camera about israel elections", "video_id": "video11320", "sen_id": 237852}, {"caption": "a woman is reading a news about a israel elections", "video_id": "video11320", "sen_id": 237853}, {"caption": "a women is speaking about the elections", "video_id": "video11320", "sen_id": 237854}, {"caption": "a woman in green dressing talking from a studio", "video_id": "video11320", "sen_id": 237855}, {"caption": "earth is moving round and round all rivers are shown", "video_id": "video11320", "sen_id": 237856}, {"caption": "bbc world news woman man talks about israel elections", "video_id": "video11320", "sen_id": 237857}, {"caption": "women standing in a news room and broadcasting news", "video_id": "video11320", "sen_id": 237858}, {"caption": "a girl is reading the news in channel", "video_id": "video11320", "sen_id": 237859}, {"caption": "morgan freeman wearing a black cap and a blue shirt talking to somebody about a project", "video_id": "video11571", "sen_id": 237860}, {"caption": "a man in a blue shirt and black hat talks in front of a painting", "video_id": "video11571", "sen_id": 237861}, {"caption": "a man in a blue shirt is talking about monkeys", "video_id": "video11571", "sen_id": 237862}, {"caption": "an older man talking about pandas and a movie", "video_id": "video11571", "sen_id": 237863}, {"caption": "a man wit a black hat is talking with in front of a mural with lemurs", "video_id": "video11571", "sen_id": 237864}, {"caption": "a blue shirt man talking in front of a picture", "video_id": "video11571", "sen_id": 237865}, {"caption": "the african men telling the nature resource important", "video_id": "video11571", "sen_id": 237866}, {"caption": "old man in cap and beard talking about a movie", "video_id": "video11571", "sen_id": 237867}, {"caption": "a man is communicating some thing on a screen", "video_id": "video11571", "sen_id": 237868}, {"caption": "it is all about nature and help to creature of nature", "video_id": "video11571", "sen_id": 237869}, {"caption": "a man in black cap having a conversation", "video_id": "video11571", "sen_id": 237870}, {"caption": "one old man talking about some movies in stage", "video_id": "video11571", "sen_id": 237871}, {"caption": "old man with the cap talks back of him is picture of squirrel", "video_id": "video11571", "sen_id": 237872}, {"caption": "morgan freeman talking about a program that he is working on focusing on animals", "video_id": "video11571", "sen_id": 237873}, {"caption": "bearded black guy in shirt talking to the camera about movie", "video_id": "video11571", "sen_id": 237874}, {"caption": "a man wearin a hat standing infront of some animals", "video_id": "video11571", "sen_id": 237875}, {"caption": "a famous african actor talks about a movie that he did voice work in", "video_id": "video11571", "sen_id": 237876}, {"caption": "morgan freeman is interviewed about a movie or video that has animals in it and he explains that he hopes it will have a positive impact on those creatures", "video_id": "video11571", "sen_id": 237877}, {"caption": "a old man in blue shirt standing speaking birds on trees still image displaying on screen", "video_id": "video11571", "sen_id": 237878}, {"caption": "morgan freeman is being interviewed about a movie", "video_id": "video11571", "sen_id": 237879}, {"caption": "olive oil garlic 1 hot red chili and a knob of butter are being displayed on a cutting board", "video_id": "video12553", "sen_id": 237880}, {"caption": "recipe ingredients including olive oil a pepper garlic and butter are shown", "video_id": "video12553", "sen_id": 237881}, {"caption": "a chef discusses the ingredients they will be using in a recipe they are going to prepare", "video_id": "video12553", "sen_id": 237882}, {"caption": "ingredients for a recipe is being shown in small glass bowls", "video_id": "video12553", "sen_id": 237883}, {"caption": "the ingredients for a recipe are prepared in advance of cooking", "video_id": "video12553", "sen_id": 237884}, {"caption": "a bottle of olive oil a garlic bulb a pepper and a bit of butter on different plates", "video_id": "video12553", "sen_id": 237885}, {"caption": "a chef gathers the materials they need to put together a recipe", "video_id": "video12553", "sen_id": 237886}, {"caption": "a bottle of olive oil chilli and a knob of buuter", "video_id": "video12553", "sen_id": 237887}, {"caption": " one hot chili pepper and a knob of butter are being displayed", "video_id": "video12553", "sen_id": 237888}, {"caption": "a bottle butter are displayed on a bowl", "video_id": "video12553", "sen_id": 237889}, {"caption": "garlic and hot red chilli and butter is needed for cooking", "video_id": "video12553", "sen_id": 237890}, {"caption": "the ingrediants like garlicolive oil is shown for makiing a receipe", "video_id": "video12553", "sen_id": 237891}, {"caption": "olive oil in bottle and garlic chilli and butter place din table", "video_id": "video12553", "sen_id": 237892}, {"caption": "showing the ingredients like olive oilginger etc for the cooking", "video_id": "video12553", "sen_id": 237893}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12553", "sen_id": 237894}, {"caption": "there is a bottle of olive oil on the table", "video_id": "video12553", "sen_id": 237895}, {"caption": "bottle of olive oil white garlica red hot chilli and a knob of butter displayed on the table", "video_id": "video12553", "sen_id": 237896}, {"caption": "some of ingredients are displaying in the screen", "video_id": "video12553", "sen_id": 237897}, {"caption": "a bottle of oil and garlic chille vegetables still images to prepare dish to serve to eat displaying on screen", "video_id": "video12553", "sen_id": 237898}, {"caption": "someone is filming some ingredients on a table", "video_id": "video12553", "sen_id": 237899}, {"caption": "a football time is changing a player and one of the players takes off his shirt", "video_id": "video11692", "sen_id": 237900}, {"caption": "an animated team is on a field playing soccer", "video_id": "video11692", "sen_id": 237901}, {"caption": "animated soccer players react to unfortunate situations", "video_id": "video11692", "sen_id": 237902}, {"caption": "two teams of computer generated soccar teams are on a field", "video_id": "video11692", "sen_id": 237903}, {"caption": "a number of animated male soccer players are shown standing and slowly walking on the field", "video_id": "video11692", "sen_id": 237904}, {"caption": "characters both men and women are in the field getting ready to play a game", "video_id": "video11692", "sen_id": 237905}, {"caption": "there are a team of two soccer teams on a field", "video_id": "video11692", "sen_id": 237906}, {"caption": "a video clip of a soccer video game", "video_id": "video11692", "sen_id": 237907}, {"caption": "animated soccer plays walk out onto the field from the sidelines; the plays morph from multicolored uniforms to the same greyblack outfit", "video_id": "video11692", "sen_id": 237908}, {"caption": "soccer players are on a field walking around talking about change", "video_id": "video11692", "sen_id": 237909}, {"caption": "a video game of soccer players getting in formation on a field", "video_id": "video11692", "sen_id": 237910}, {"caption": "players get ready to play in a stadium filled with too much crowdl", "video_id": "video11692", "sen_id": 237911}, {"caption": "videogame soccer players walking around on a soccer field", "video_id": "video11692", "sen_id": 237912}, {"caption": "3d animation of a soccer game in the background we see what looks like the star of david on the bottom center white screen", "video_id": "video11692", "sen_id": 237913}, {"caption": "animated characters stand at attention and then mill about a soccer field", "video_id": "video11692", "sen_id": 237914}, {"caption": "an animation of various soccer players on a soccer field", "video_id": "video11692", "sen_id": 237915}, {"caption": "players are getting ready for an amazing football play", "video_id": "video11692", "sen_id": 237916}, {"caption": "a group of men are taking their places for a soccer match", "video_id": "video11692", "sen_id": 237917}, {"caption": "a man plays a video game that is related to soccer", "video_id": "video11692", "sen_id": 237918}, {"caption": "crowd cheering an international soccer video game players are arranging themselves to begin the game some players have removed their shirts", "video_id": "video11692", "sen_id": 237919}, {"caption": "a man is asking a woman a question during a satellite interview", "video_id": "video10379", "sen_id": 237920}, {"caption": "an on-air market analyst talks briefly about healthcare retail chains such as walgreens", "video_id": "video10379", "sen_id": 237921}, {"caption": "a man talks about various aspects of the business performance of a major firm", "video_id": "video10379", "sen_id": 237922}, {"caption": "a financial news pundit talks on a tv show", "video_id": "video10379", "sen_id": 237923}, {"caption": "a balding man in a purple shirt and tie describes some business situations", "video_id": "video10379", "sen_id": 237924}, {"caption": "a man holding two papers talking in front of the camera", "video_id": "video10379", "sen_id": 237925}, {"caption": "a man with bald head and dressed in style holding some papers and explaining to someone", "video_id": "video10379", "sen_id": 237926}, {"caption": "a bald man in a purple tie talks about financial matters", "video_id": "video10379", "sen_id": 237927}, {"caption": "a man telling about the best main wall", "video_id": "video10379", "sen_id": 237928}, {"caption": "jim cramer talks to a woman through video conference", "video_id": "video10379", "sen_id": 237929}, {"caption": "a man in pink shirt is looking at some papers and saying something", "video_id": "video10379", "sen_id": 237930}, {"caption": "a man with bald head and wearing white shirt and tie holding some paper and asking something to his audience", "video_id": "video10379", "sen_id": 237931}, {"caption": "a man speaks to the camera for a news segment", "video_id": "video10379", "sen_id": 237932}, {"caption": "the middle aged man in white dress is telling us about a something", "video_id": "video10379", "sen_id": 237933}, {"caption": "bald guy in pink shirt and tie talking to the other guy in studio", "video_id": "video10379", "sen_id": 237934}, {"caption": "man in light pink shirt is checking some bookds", "video_id": "video10379", "sen_id": 237935}, {"caption": "a man wearing pink color dress ahaving paper", "video_id": "video10379", "sen_id": 237936}, {"caption": "a person is explaining the files which were present in his hand", "video_id": "video10379", "sen_id": 237937}, {"caption": "a man talks about your healthcare and investment", "video_id": "video10379", "sen_id": 237938}, {"caption": "a man is on the news talking about politics", "video_id": "video10379", "sen_id": 237939}, {"caption": "a man going to vote in a room filled with many people", "video_id": "video11157", "sen_id": 237940}, {"caption": "a large group of people vote in a country's election", "video_id": "video11157", "sen_id": 237941}, {"caption": "a politician is casting his vote on voting day", "video_id": "video11157", "sen_id": 237942}, {"caption": "a man in a black suit walking and smiling", "video_id": "video11157", "sen_id": 237943}, {"caption": "a man in a navy blue suit is walking and people are taking pictures of him", "video_id": "video11157", "sen_id": 237944}, {"caption": "man with an english accent covering news for an election", "video_id": "video11157", "sen_id": 237945}, {"caption": "a well dressed middled aged man castting hid vote for democracy", "video_id": "video11157", "sen_id": 237946}, {"caption": "a person with dark blue coat is giving vote in front of the general public", "video_id": "video11157", "sen_id": 237947}, {"caption": "a large group of people in suits walk into a building to get ready to vote", "video_id": "video11157", "sen_id": 237948}, {"caption": "a guy speaking about alexis tsiprus and the elections", "video_id": "video11157", "sen_id": 237949}, {"caption": "many people gathered in the hall and a man putting some paper piece to the box", "video_id": "video11157", "sen_id": 237950}, {"caption": "in the black blazer suit wearing men teling the demography system in their country", "video_id": "video11157", "sen_id": 237951}, {"caption": "a political leader is seen voting and this is being reported by a man with a british accent", "video_id": "video11157", "sen_id": 237952}, {"caption": "a leader of a country votes in an election in his country", "video_id": "video11157", "sen_id": 237953}, {"caption": "a news report which is shown of a politician from a foreign country putting in a vote in at a polling station", "video_id": "video11157", "sen_id": 237954}, {"caption": "there is a man coming to vote in a poling booth", "video_id": "video11157", "sen_id": 237955}, {"caption": "on the business hall all are waiting the hero men and all are wear the black blazer suit", "video_id": "video11157", "sen_id": 237956}, {"caption": "there is a man wearing a suit while many people are taking pictures of him", "video_id": "video11157", "sen_id": 237957}, {"caption": "a man emerges from a voting booth to a crowded room and press", "video_id": "video11157", "sen_id": 237958}, {"caption": "a politician goes to vote and smiles for the camera", "video_id": "video11157", "sen_id": 237959}, {"caption": "dental ray some type of tool to make dental work not as bad", "video_id": "video12324", "sen_id": 237960}, {"caption": "a narrator explains why the dentaray is a better tool for dental work", "video_id": "video12324", "sen_id": 237961}, {"caption": "a tooth is shown being drilled into with a laser", "video_id": "video12324", "sen_id": 237962}, {"caption": "an animated laser drills a hole into a fake tooth before a metal drill drills into a fake tooth", "video_id": "video12324", "sen_id": 237963}, {"caption": "this is an advertisement that shows a new laser technique for dental drilling", "video_id": "video12324", "sen_id": 237964}, {"caption": "a man is narrating about a dental procedure while a computer generated animation is shown", "video_id": "video12324", "sen_id": 237965}, {"caption": "a vaporizer drills through the hard tissue of a tooth", "video_id": "video12324", "sen_id": 237966}, {"caption": "three different methods of drilling teeth are demonstrated", "video_id": "video12324", "sen_id": 237967}, {"caption": "some one showing the video of dental tratment", "video_id": "video12324", "sen_id": 237968}, {"caption": "a man describes different kinds of tooth drilling procedures", "video_id": "video12324", "sen_id": 237969}, {"caption": "a demonstration of how dentaray opens holes in teeth slowly", "video_id": "video12324", "sen_id": 237970}, {"caption": "a close up animation of a dentist doing tooth repair", "video_id": "video12324", "sen_id": 237971}, {"caption": "a male voice describes new technology in filling dental cavities", "video_id": "video12324", "sen_id": 237972}, {"caption": "there is drilling a white machine deeply rooted", "video_id": "video12324", "sen_id": 237973}, {"caption": "a man explaining about the difference between the ordinary treatment and laser treatment for tooth", "video_id": "video12324", "sen_id": 237974}, {"caption": "a man is speaking about dental lasers available", "video_id": "video12324", "sen_id": 237975}, {"caption": "a laser is drilling into a tooth in a computer generated graphic image", "video_id": "video12324", "sen_id": 237976}, {"caption": "a person uses a new kind of lasers to perform dental work", "video_id": "video12324", "sen_id": 237977}, {"caption": "a laser is carving a hole in a tooth and is compared to a drill making a hole in a tooth", "video_id": "video12324", "sen_id": 237978}, {"caption": "a informative clip about new dental procedures to come out", "video_id": "video12324", "sen_id": 237979}, {"caption": "a female chef describes and demonstrates a recipe she is preparing in her kitchen", "video_id": "video11013", "sen_id": 237980}, {"caption": "woman explains in another language how to cook while a fry pan is being shown with what appears to be some kind of tortilla", "video_id": "video11013", "sen_id": 237981}, {"caption": "two hands of a girl demonstrating the process making an dish using floor", "video_id": "video11013", "sen_id": 237982}, {"caption": "a woman is shaping dough into the bottom of a pan on the stove", "video_id": "video11013", "sen_id": 237983}, {"caption": "there is a lading backing some type of dough in a skillet", "video_id": "video11013", "sen_id": 237984}, {"caption": "a lady is describing how to prepare base of a pizza with the help of a fry pan and gas stove", "video_id": "video11013", "sen_id": 237985}, {"caption": "a person pushes dough into a hot pan over a gas stove flame", "video_id": "video11013", "sen_id": 237986}, {"caption": "a indian woman is frying and explaining bubbles that form on naan", "video_id": "video11013", "sen_id": 237987}, {"caption": "a woman is frying a pastry while she instructs", "video_id": "video11013", "sen_id": 237988}, {"caption": "a woman pushing dough flat and removing the bubbles into a pan on the stove", "video_id": "video11013", "sen_id": 237989}, {"caption": "a women explaining in detail how to bake a pie over a pan", "video_id": "video11013", "sen_id": 237990}, {"caption": "a woman pats a light colored dough into a hot pan over a stove top", "video_id": "video11013", "sen_id": 237991}, {"caption": "a lady is speaking about the dough which is placed inside the skillet and how to prepare it", "video_id": "video11013", "sen_id": 237992}, {"caption": "an inhome chef uses a small black pan to prepare a dough based recipe", "video_id": "video11013", "sen_id": 237993}, {"caption": "a girl and a pan dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11013", "sen_id": 237994}, {"caption": "a person is cooking a tortilla in a pan", "video_id": "video11013", "sen_id": 237995}, {"caption": "a lady is cooking something on a pan and she is flipping it", "video_id": "video11013", "sen_id": 237996}, {"caption": "a indian lady showing you how to cook tortilla on a pan on the stove", "video_id": "video11013", "sen_id": 237997}, {"caption": "a woman is explaining how to make pizza on a non stick pan", "video_id": "video11013", "sen_id": 237998}, {"caption": "a woman is putting dough in to a pan on a stove and cooking it", "video_id": "video11013", "sen_id": 237999}, {"caption": "a person is making leaves for a flower from a zuccini", "video_id": "video10082", "sen_id": 238000}, {"caption": "a chef uses cut vegetables to make decorations", "video_id": "video10082", "sen_id": 238001}, {"caption": "a person makes a flower garnish from a cucumber and a carrot", "video_id": "video10082", "sen_id": 238002}, {"caption": "a person is using vegetables to make a decorative flower", "video_id": "video10082", "sen_id": 238003}, {"caption": "two hands illustrate how to made food garnishes out of carrots and cucumbers and a toothpick", "video_id": "video10082", "sen_id": 238004}, {"caption": "a person is preparing a design with vegetables", "video_id": "video10082", "sen_id": 238005}, {"caption": "a man taking slices of cucumber and creating flowers from the vegetable", "video_id": "video10082", "sen_id": 238006}, {"caption": "a person creating decorations with flowers and cucumbers", "video_id": "video10082", "sen_id": 238007}, {"caption": "a pair of hands is shown making an edible arrangement with cucumber", "video_id": "video10082", "sen_id": 238008}, {"caption": "a person is using vegitable to make flowers out of them", "video_id": "video10082", "sen_id": 238009}, {"caption": "a person is creating a lotus flower with a cucumber", "video_id": "video10082", "sen_id": 238010}, {"caption": "the skillfull hands of a chef can do a variety of things including delicate garnishes for the vegetable tray", "video_id": "video10082", "sen_id": 238011}, {"caption": "a person is making a flower with vagetables", "video_id": "video10082", "sen_id": 238012}, {"caption": "a person takes cut up vegetables and makes a flower", "video_id": "video10082", "sen_id": 238013}, {"caption": "cucumbers are cut up and used as the petals of a flower", "video_id": "video10082", "sen_id": 238014}, {"caption": "a man slicing a cucumber and make aflower", "video_id": "video10082", "sen_id": 238015}, {"caption": "someone is artfully putting vegetables onto a tooth pick", "video_id": "video10082", "sen_id": 238016}, {"caption": "someone s hands carefully arrange some slices of cucumber onto a flower on a toothpick", "video_id": "video10082", "sen_id": 238017}, {"caption": "thinly sliced cucumber being put on a toothpick", "video_id": "video10082", "sen_id": 238018}, {"caption": "the man makes an edible flower with the cucumber and the other food", "video_id": "video10082", "sen_id": 238019}, {"caption": "a row of men wearing orange jumpsuits kneels in front of a row of standing men who are wearing black hooded and masked garments and touching their captives' necks in an open space", "video_id": "video10004", "sen_id": 238020}, {"caption": "a fox show which is talking about isis executions", "video_id": "video10004", "sen_id": 238021}, {"caption": "a fox news anchor reports on the massacre of 21 egyptian christians in libya", "video_id": "video10004", "sen_id": 238022}, {"caption": "a news reporter discusses an apparent terrorist attack", "video_id": "video10004", "sen_id": 238023}, {"caption": "as egyptian christians are executed in libya a president ignores their religion", "video_id": "video10004", "sen_id": 238024}, {"caption": "newscaster comments on egyptian people who were killed by terrorists", "video_id": "video10004", "sen_id": 238025}, {"caption": "a newcaster describes a horrifying mass murder", "video_id": "video10004", "sen_id": 238026}, {"caption": "people in black standing over people in orange ready to execute them", "video_id": "video10004", "sen_id": 238027}, {"caption": "men wearing blue shirts and black pants crouch and lie near a paved path by a white building a woman looks at another woman holding a handkerchief to her face and terrorists covered in black threaten their kneeling prisoners wearing orange jumpsuits", "video_id": "video10004", "sen_id": 238028}, {"caption": "group of people kneel-down behind them some people holding their head", "video_id": "video10004", "sen_id": 238029}, {"caption": "blue dressed cops and photograph of militants who kidnapped persons in orange person sitting on the knees", "video_id": "video10004", "sen_id": 238030}, {"caption": "a news about the controversy in christian comment and some persons are at the gun point by the militants", "video_id": "video10004", "sen_id": 238031}, {"caption": "all persons are killing orange color dress persons", "video_id": "video10004", "sen_id": 238032}, {"caption": "fox news press sparks controversy w christian comment", "video_id": "video10004", "sen_id": 238033}, {"caption": "many warriors in black are holding men in red suits", "video_id": "video10004", "sen_id": 238034}, {"caption": "the men are forced to kneel down before they are executed by the men in black", "video_id": "video10004", "sen_id": 238035}, {"caption": "there are some men in red dress caught by someother people", "video_id": "video10004", "sen_id": 238036}, {"caption": "womens talks on the tv news telling someting about news", "video_id": "video10004", "sen_id": 238037}, {"caption": "a news reader reading a news in news program", "video_id": "video10004", "sen_id": 238038}, {"caption": "a blue dress man and many peoples neeling down bending head and black dress person standing hands up on shoulder", "video_id": "video10004", "sen_id": 238039}, {"caption": "two young asian people kiss outside a building on a snowy day", "video_id": "video11733", "sen_id": 238040}, {"caption": "a man fixed the hat of the woman and then leaned in for a kiss", "video_id": "video11733", "sen_id": 238041}, {"caption": "the lover removes the cap and kisser his heart", "video_id": "video11733", "sen_id": 238042}, {"caption": "a guy kissing someone on the road side", "video_id": "video11733", "sen_id": 238043}, {"caption": "an asian man kisses a woman who has a hat pulled down over her face", "video_id": "video11733", "sen_id": 238044}, {"caption": "a boy kissing a baby in white dress wearing showing on screen", "video_id": "video11733", "sen_id": 238045}, {"caption": "a nicely dressed young man pulls back a girl s white hat and then gently kisses her", "video_id": "video11733", "sen_id": 238046}, {"caption": "a shoot of a couple kissing with passion", "video_id": "video11733", "sen_id": 238047}, {"caption": "a man is kissing an another person in the shooting", "video_id": "video11733", "sen_id": 238048}, {"caption": "a asian guy kisses a girl wearing a white scarf in her head", "video_id": "video11733", "sen_id": 238049}, {"caption": "a boy in ash color dress wearing cloth kissing a baby in white dress removing wool hat displaying on screen", "video_id": "video11733", "sen_id": 238050}, {"caption": "a man in black cap is kissing his women in white cap", "video_id": "video11733", "sen_id": 238051}, {"caption": "a man and a woman kiss each other while standing in the snow", "video_id": "video11733", "sen_id": 238052}, {"caption": "a man is kissing to a woman who covered her head", "video_id": "video11733", "sen_id": 238053}, {"caption": "its snow time the guy kiss his girl friend then he adjust the cap", "video_id": "video11733", "sen_id": 238054}, {"caption": "a man with puffy hair is kissing someone", "video_id": "video11733", "sen_id": 238055}, {"caption": "one man kissing a women in snow fall and close in face", "video_id": "video11733", "sen_id": 238056}, {"caption": "a man touches and kisses a woman s face while it rains outside", "video_id": "video11733", "sen_id": 238057}, {"caption": "a guy kisses his girl wearing a white skully", "video_id": "video11733", "sen_id": 238058}, {"caption": "an asian man is touching a person s hat", "video_id": "video11733", "sen_id": 238059}, {"caption": "soccer players aggressively score goals", "video_id": "video11980", "sen_id": 238060}, {"caption": "a soccer game is being played and the blue team goes for a goal but misses and then we see the opposite team score a goal", "video_id": "video11980", "sen_id": 238061}, {"caption": "men run after and attempt to stop a player from the other team from scoring soccer goals", "video_id": "video11980", "sen_id": 238062}, {"caption": "a soccer player kicking a ball for a score and a player for the other team kicking a ball for a score", "video_id": "video11980", "sen_id": 238063}, {"caption": "a group of men playing soccer in front of a large crowd", "video_id": "video11980", "sen_id": 238064}, {"caption": "it is volleyball cort with green colour and there is a people with different colour dresses like greenyellow and white", "video_id": "video11980", "sen_id": 238065}, {"caption": "people gathered in the stadium to watch foot ball game", "video_id": "video11980", "sen_id": 238066}, {"caption": "a group of men are playing soccer on a large field", "video_id": "video11980", "sen_id": 238067}, {"caption": "kessi channel two teams playing football very interestingly", "video_id": "video11980", "sen_id": 238068}, {"caption": "a football player defends the ball and scores a goal", "video_id": "video11980", "sen_id": 238069}, {"caption": "soccer player scoring a goal during a live match", "video_id": "video11980", "sen_id": 238070}, {"caption": "two teams are playing football on ground", "video_id": "video11980", "sen_id": 238071}, {"caption": "soccer players move the ball in zigzag motions to score and a player kicks the ball along a white border where the ball is then kicked toward the net to score", "video_id": "video11980", "sen_id": 238072}, {"caption": "a two food team were playing in the ground", "video_id": "video11980", "sen_id": 238073}, {"caption": "a player scrolls the foot ball and makes a goal", "video_id": "video11980", "sen_id": 238074}, {"caption": "some soccer players are running around a field", "video_id": "video11980", "sen_id": 238075}, {"caption": "the two teams are playing football against each other", "video_id": "video11980", "sen_id": 238076}, {"caption": "men are playing professional soccer on a grass field", "video_id": "video11980", "sen_id": 238077}, {"caption": "its a foot ball game the white and black color dress players are playing in the field", "video_id": "video11980", "sen_id": 238078}, {"caption": "the players are wearing uniforms madly running behind the ball to throw it in the net", "video_id": "video11980", "sen_id": 238079}, {"caption": "a man is rapping on stage while scenes of boxing flash by", "video_id": "video11174", "sen_id": 238080}, {"caption": "a guy on a mike and various boxing images in the backdrop", "video_id": "video11174", "sen_id": 238081}, {"caption": "a man sings as scenes of a boxing match are shown", "video_id": "video11174", "sen_id": 238082}, {"caption": "men box and practice boxing as a band sings in a music video", "video_id": "video11174", "sen_id": 238083}, {"caption": "a music video containing footage of several random sports", "video_id": "video11174", "sen_id": 238084}, {"caption": "a singer raps onstage as scenes of boxing play in between shots of him", "video_id": "video11174", "sen_id": 238085}, {"caption": "a man is singing a rap song into a microphone and a man is boxing", "video_id": "video11174", "sen_id": 238086}, {"caption": "a rapper raps on stage in a microphone to pictures of fighters and boxers", "video_id": "video11174", "sen_id": 238087}, {"caption": "a young black man is rapping while showing scenes of men boxing", "video_id": "video11174", "sen_id": 238088}, {"caption": "a man sings songs and dances on a large dimly lit stage", "video_id": "video11174", "sen_id": 238089}, {"caption": "boxers box while a man sings near a piano in the background", "video_id": "video11174", "sen_id": 238090}, {"caption": "a rock music song plays as boxers fight and a rock band plays", "video_id": "video11174", "sen_id": 238091}, {"caption": "a band is performing a song while boxing clips are shown", "video_id": "video11174", "sen_id": 238092}, {"caption": "a boxer practices a series of kicks on the punching bag", "video_id": "video11174", "sen_id": 238093}, {"caption": "a boy singing song holding mic in hand and two boys playing boxing game audience watching displaying on screen", "video_id": "video11174", "sen_id": 238094}, {"caption": "a boxer fighting in boxing ring and a singer is singing", "video_id": "video11174", "sen_id": 238095}, {"caption": "a music video showing a singer and a clips of kick boxers", "video_id": "video11174", "sen_id": 238096}, {"caption": "the young boy wearing ash color t-shirt and he is giving rocking pop performance", "video_id": "video11174", "sen_id": 238097}, {"caption": "a boxing match is seroiusly played a singer sings the song", "video_id": "video11174", "sen_id": 238098}, {"caption": "a guy with black dress is singing a pop song on a stage", "video_id": "video11174", "sen_id": 238099}, {"caption": "runway models are showing off the latest fashion trends", "video_id": "video10167", "sen_id": 238100}, {"caption": "two models walk up and down a runway in fashion outfits", "video_id": "video10167", "sen_id": 238101}, {"caption": "a model in a sheer green dress briefly poses before sauntering back up the runway", "video_id": "video10167", "sen_id": 238102}, {"caption": "a woman in a green dress walks down a cat walk another woman in a skirt and shirt follows her", "video_id": "video10167", "sen_id": 238103}, {"caption": "two runway models grace the catwalk one in a green dress and the other wearing a black pencil skirt and a gold blouse with no bra", "video_id": "video10167", "sen_id": 238104}, {"caption": "there are many female candidates participating in fashion show", "video_id": "video10167", "sen_id": 238105}, {"caption": "various models walk the cat walk for a fashion show both are in knee length skirts with muted colors", "video_id": "video10167", "sen_id": 238106}, {"caption": "a woman are walking in the fashion show program", "video_id": "video10167", "sen_id": 238107}, {"caption": "different women are modeling clothes and walking on the catwalk", "video_id": "video10167", "sen_id": 238108}, {"caption": "a fashion show where a girl in a green dress walks down the walkway", "video_id": "video10167", "sen_id": 238109}, {"caption": "there is a woman with green dressing walking on the ramp", "video_id": "video10167", "sen_id": 238110}, {"caption": "a female fashion show women are wearing makeup and are walking down the hallways", "video_id": "video10167", "sen_id": 238111}, {"caption": "in a fashion show a model is wearing an avocado color dress while the other model wears the same color but in a skirt", "video_id": "video10167", "sen_id": 238112}, {"caption": "professional models are doing a fashion show in front of a crowd", "video_id": "video10167", "sen_id": 238113}, {"caption": "two lady models strutting confidently on a cat walk", "video_id": "video10167", "sen_id": 238114}, {"caption": "a fashion show with really tall models and really loud music", "video_id": "video10167", "sen_id": 238115}, {"caption": " girls walking with the latest designed dress", "video_id": "video10167", "sen_id": 238116}, {"caption": "women walks down a runway showing off new clothes", "video_id": "video10167", "sen_id": 238117}, {"caption": "two models in turn walk out on the runway", "video_id": "video10167", "sen_id": 238118}, {"caption": "some models are walking on a cat walk", "video_id": "video10167", "sen_id": 238119}, {"caption": "introduction to a show about getting bit by a snake", "video_id": "video11304", "sen_id": 238120}, {"caption": "the introduction to a show about smaller snakes", "video_id": "video11304", "sen_id": 238121}, {"caption": "a man demonstrates his lack of fear of snakes by holding them", "video_id": "video11304", "sen_id": 238122}, {"caption": "a snake launches itself towards the camera followed by snake eggs a whit snake a yellow and red snake and a red snake", "video_id": "video11304", "sen_id": 238123}, {"caption": "a mn with a black shirt is holding different snakes and snake eggs", "video_id": "video11304", "sen_id": 238124}, {"caption": "some one holding a different kinds of snakes in their hands", "video_id": "video11304", "sen_id": 238125}, {"caption": "a man in a dark tee shirt is holding a large snake", "video_id": "video11304", "sen_id": 238126}, {"caption": "several scenes of snakes are shown while music plays", "video_id": "video11304", "sen_id": 238127}, {"caption": "a person handles some snakes of various colors", "video_id": "video11304", "sen_id": 238128}, {"caption": "several people holding snakes and snake eggs", "video_id": "video11304", "sen_id": 238129}, {"caption": "there are different types of snakes and their eggs", "video_id": "video11304", "sen_id": 238130}, {"caption": "a series of different snakes are being shown off on a program about snakes", "video_id": "video11304", "sen_id": 238131}, {"caption": "snake which is yellow and red color is so small but so fear to see then snake in red color", "video_id": "video11304", "sen_id": 238132}, {"caption": "the introduction to snake bytes tv where credits are running over pictures of snakes", "video_id": "video11304", "sen_id": 238133}, {"caption": "a man holding a snake is hosting a web show", "video_id": "video11304", "sen_id": 238134}, {"caption": "there is a man showing a snake to someone", "video_id": "video11304", "sen_id": 238135}, {"caption": "a man in a black shirt and tan pants holding a lot of different snakes", "video_id": "video11304", "sen_id": 238136}, {"caption": "various types of snakes nice colors so wonderful", "video_id": "video11304", "sen_id": 238137}, {"caption": "this is an introduction to a video about snakes by snakebytes", "video_id": "video11304", "sen_id": 238138}, {"caption": "a person with a shirt is holding a red snake", "video_id": "video11304", "sen_id": 238139}, {"caption": "a man an a woman discuss a tragedy on a news program", "video_id": "video10837", "sen_id": 238140}, {"caption": "a news report of a man and a woman on the san bernardino massacre", "video_id": "video10837", "sen_id": 238141}, {"caption": "a reporter interviewing a guy about the san bernardino massacre", "video_id": "video10837", "sen_id": 238142}, {"caption": "a man and woman sitting having a conversation", "video_id": "video10837", "sen_id": 238143}, {"caption": "a man and a woman are sitting across from each other having a conversation", "video_id": "video10837", "sen_id": 238144}, {"caption": "a woman discusses about guns used in the ca shooting which were bought legally with the host of the news program", "video_id": "video10837", "sen_id": 238145}, {"caption": "a man is talking on tv in a news channel", "video_id": "video10837", "sen_id": 238146}, {"caption": "fox news live san bernardino massacre one man and women", "video_id": "video10837", "sen_id": 238147}, {"caption": "a male news anchor interviews a woman face to face in his fox news studio about the san bernando massacre", "video_id": "video10837", "sen_id": 238148}, {"caption": "a interview with the lady and san bernrdino massacare", "video_id": "video10837", "sen_id": 238149}, {"caption": "a woman in black dressing talking to a suit man", "video_id": "video10837", "sen_id": 238150}, {"caption": "a man and a woman having a converstion in a tv show", "video_id": "video10837", "sen_id": 238151}, {"caption": "talking long gun laws in california on fox news", "video_id": "video10837", "sen_id": 238152}, {"caption": "a man and a woman are discussing details involved in a massacre in san bernadino on fox news", "video_id": "video10837", "sen_id": 238153}, {"caption": "a television personal is interviewing about the movie to the director of the movie", "video_id": "video10837", "sen_id": 238154}, {"caption": "there is a suit man talking from the studio", "video_id": "video10837", "sen_id": 238155}, {"caption": "a man and woman are seated across from each other and the newswoman is asking the man questions about gun laws and the san bernadino killings", "video_id": "video10837", "sen_id": 238156}, {"caption": "conversation between the lady and the guy they are siting on the chair which is white", "video_id": "video10837", "sen_id": 238157}, {"caption": "two news reporters sit on chairs and talk about california", "video_id": "video10837", "sen_id": 238158}, {"caption": "sexy brunette in black dress talking to the guy in suit in the studio", "video_id": "video10837", "sen_id": 238159}, {"caption": "archer without his pants and kevin spacey from house of cards", "video_id": "video12921", "sen_id": 238160}, {"caption": "three men in suits set together in an office on couches and discuss politics", "video_id": "video12921", "sen_id": 238161}, {"caption": "a man carrying a briefcase gets up and leaves the room where two men in suits are having a meeting a man speaks to a crowd a man gives a knowing look at the camera a woman explains something by pointing and a man carries balloons in an office with others", "video_id": "video12921", "sen_id": 238162}, {"caption": "a man is standing up in front of a committee", "video_id": "video12921", "sen_id": 238163}, {"caption": "a woman discusses different television shows and how they were important in the 2010's", "video_id": "video12921", "sen_id": 238164}, {"caption": "a narrator talks about important television series of the 2010s", "video_id": "video12921", "sen_id": 238165}, {"caption": "house of cards show is shown among others in 2010 viewing time on how important they were", "video_id": "video12921", "sen_id": 238166}, {"caption": "three men sitting on couches in a large office are talking", "video_id": "video12921", "sen_id": 238167}, {"caption": "a narrator is talking about shows that were very important in the 2010's while clips from these shows including archer house of cards and community play", "video_id": "video12921", "sen_id": 238168}, {"caption": "a man in a dark colored suit gives a speech to a large group of people", "video_id": "video12921", "sen_id": 238169}, {"caption": "a woman talks about shows that were important in the decade 2010-2020", "video_id": "video12921", "sen_id": 238170}, {"caption": "a man stands in front of a set of microphones and gives a speach", "video_id": "video12921", "sen_id": 238171}, {"caption": "a animated cartoon of men and women is shown", "video_id": "video12921", "sen_id": 238172}, {"caption": "watch mojo movies house of cards (2013-) netflix", "video_id": "video12921", "sen_id": 238173}, {"caption": "a man in a suit drops his pants infront of a girl in an office", "video_id": "video12921", "sen_id": 238174}, {"caption": "bunch of guys in suit sitting on sofa and talking with each other", "video_id": "video12921", "sen_id": 238175}, {"caption": "a newsclip features house of cards and other tv shows selected for awards", "video_id": "video12921", "sen_id": 238176}, {"caption": "a cartoon drops his pants while a cartoon woman watches", "video_id": "video12921", "sen_id": 238177}, {"caption": "people are acting out scenes in popular tv series shows", "video_id": "video12921", "sen_id": 238178}, {"caption": "people stand and wander at a party", "video_id": "video12921", "sen_id": 238179}, {"caption": "a man discusses e-coli as a blue graph is shown on the screen", "video_id": "video10171", "sen_id": 238180}, {"caption": "a man reviews a graph showing read length", "video_id": "video10171", "sen_id": 238181}, {"caption": "a man talks about the information compiled by him in chart form", "video_id": "video10171", "sen_id": 238182}, {"caption": "a man explains a graph in his presentation", "video_id": "video10171", "sen_id": 238183}, {"caption": "a man is talking about e coli and explaining a graph made about it", "video_id": "video10171", "sen_id": 238184}, {"caption": "a man is describing the data on a chart", "video_id": "video10171", "sen_id": 238185}, {"caption": "a rectangular graph has a tall peak a short peak and a narrow upright bar in blue measured against horizontal lines on a white background", "video_id": "video10171", "sen_id": 238186}, {"caption": "a scientist talks about a program he is running that tests disease strains", "video_id": "video10171", "sen_id": 238187}, {"caption": "a person is giving presentation on the screen", "video_id": "video10171", "sen_id": 238188}, {"caption": "a graph is shown in blue color piling up towards the end", "video_id": "video10171", "sen_id": 238189}, {"caption": "a man narrates and interprets the results of a graph", "video_id": "video10171", "sen_id": 238190}, {"caption": "a graph is being shown about something to people", "video_id": "video10171", "sen_id": 238191}, {"caption": "the distribution pattern of something is shown as graph and a person describes it", "video_id": "video10171", "sen_id": 238192}, {"caption": "the graph is showing the productivity of the nation in agriculture", "video_id": "video10171", "sen_id": 238193}, {"caption": "a bar graph showing read length is displayed", "video_id": "video10171", "sen_id": 238194}, {"caption": "a graph on the screen displaying and image shown", "video_id": "video10171", "sen_id": 238195}, {"caption": "a graph of information is being displayed", "video_id": "video10171", "sen_id": 238196}, {"caption": "a flow chart show the sudden increase in express fragment library", "video_id": "video10171", "sen_id": 238197}, {"caption": "a man is explain some thing with the graph", "video_id": "video10171", "sen_id": 238198}, {"caption": "here is a graph depicting the e-coli x press plus fragment library", "video_id": "video10171", "sen_id": 238199}, {"caption": "a scientist is describing how most of what we eat ends up as glucose", "video_id": "video12055", "sen_id": 238200}, {"caption": "a man in glasses talks against a black background", "video_id": "video12055", "sen_id": 238201}, {"caption": "a man in a brown tee shirt talks about science", "video_id": "video12055", "sen_id": 238202}, {"caption": "a man explains the chemistry subject of cellular respiration", "video_id": "video12055", "sen_id": 238203}, {"caption": "a scientist gives a lecture about cellular respiration", "video_id": "video12055", "sen_id": 238204}, {"caption": "a guy in a grey shirt is talking about cellular respiration", "video_id": "video12055", "sen_id": 238205}, {"caption": "a man in grey t-shirt and spectacles is talking", "video_id": "video12055", "sen_id": 238206}, {"caption": "guy in glasses talking about glucose and being healthy", "video_id": "video12055", "sen_id": 238207}, {"caption": "a guy with spectacles speaks about the cellular respiration and energy utilized from the food", "video_id": "video12055", "sen_id": 238208}, {"caption": "a boy wearing glass standing speaking cellular respiration energy displaying on screen", "video_id": "video12055", "sen_id": 238209}, {"caption": "there is a man with specs talking from a studio", "video_id": "video12055", "sen_id": 238210}, {"caption": "today s talk will be about cellular respiration and how we derive energy from glucose", "video_id": "video12055", "sen_id": 238211}, {"caption": "atp respiration chemistry & energy glucose cellular respiration", "video_id": "video12055", "sen_id": 238212}, {"caption": "a man explains about energy process of cells between man and animals", "video_id": "video12055", "sen_id": 238213}, {"caption": "a men talking something in a black background", "video_id": "video12055", "sen_id": 238214}, {"caption": "there is a tshirt man talking from the studio", "video_id": "video12055", "sen_id": 238215}, {"caption": "a blonde man with black glasses speaks about cellular respiration", "video_id": "video12055", "sen_id": 238216}, {"caption": "one boy talks about cellular respiration glucose", "video_id": "video12055", "sen_id": 238217}, {"caption": "a guy talks about energy and animals cels through cell respiration and glucose", "video_id": "video12055", "sen_id": 238218}, {"caption": "a man with glasses is speaking about something", "video_id": "video12055", "sen_id": 238219}, {"caption": "television reporter gives tips on how to get your contractions started faster", "video_id": "video12654", "sen_id": 238220}, {"caption": "a woman talking about ways to speed up birthing contractions", "video_id": "video12654", "sen_id": 238221}, {"caption": "a woman talks about how the duchess of cambridge can deliver her baby sooner", "video_id": "video12654", "sen_id": 238222}, {"caption": "a woman sits in front of a green screen and discusses what can make the duchess of cambridge deliver her baby sooner", "video_id": "video12654", "sen_id": 238223}, {"caption": "a news reporter describes how curry or blowing up balloons might induce labor", "video_id": "video12654", "sen_id": 238224}, {"caption": "a woman is explaining three ways to help induce labor when pregnant", "video_id": "video12654", "sen_id": 238225}, {"caption": "a royal family is seen and a curry dish is shown as a popular dish for child bearing", "video_id": "video12654", "sen_id": 238226}, {"caption": "a girl in pink color dress siting speaking discusing on exercise topic and still photoes girl and boy pictures displaying on screen", "video_id": "video12654", "sen_id": 238227}, {"caption": "a woman is seated and talking a couple is shown a g food is displayed followed by blowing balloon and legs of a person walking", "video_id": "video12654", "sen_id": 238228}, {"caption": "a lady speaking about curry and how it can encourage contractions", "video_id": "video12654", "sen_id": 238229}, {"caption": "a female newsanchor is talking about ways to induce contractions", "video_id": "video12654", "sen_id": 238230}, {"caption": "there is a brown hair woman talking from the studio", "video_id": "video12654", "sen_id": 238231}, {"caption": "a lady explains about the curry and the balloons work", "video_id": "video12654", "sen_id": 238232}, {"caption": "the great kate wait curry is nice to seeits blow of balloons", "video_id": "video12654", "sen_id": 238233}, {"caption": "woman in pink clothes is talking about the great curry", "video_id": "video12654", "sen_id": 238234}, {"caption": "a news clip describes methods kate middleton could use to induce labor", "video_id": "video12654", "sen_id": 238235}, {"caption": "a woman discusses how to speed up the chldbirth process in multiple ways on a british show", "video_id": "video12654", "sen_id": 238236}, {"caption": "a woman is talking in the television channel", "video_id": "video12654", "sen_id": 238237}, {"caption": "to help kate induce her labor it was suggested to her that she could eat curry blow up balloons or take a brisk walk", "video_id": "video12654", "sen_id": 238238}, {"caption": "a couple photo is displaying behind the promotional ad about curry", "video_id": "video12654", "sen_id": 238239}, {"caption": "a woman showing how to put on eye makeup and how to shape brows", "video_id": "video12678", "sen_id": 238240}, {"caption": "a woman wearing a white t-shirt is telling other women how to put make-up on", "video_id": "video12678", "sen_id": 238241}, {"caption": "a young woman applies eye makeup while talking about it", "video_id": "video12678", "sen_id": 238242}, {"caption": "the woman is showing how to do makeup as a tutorial", "video_id": "video12678", "sen_id": 238243}, {"caption": "a woman with a towel on her head is putting makeup on", "video_id": "video12678", "sen_id": 238244}, {"caption": "a women in white t-shirt is applying make up", "video_id": "video12678", "sen_id": 238245}, {"caption": "a beautiful girl doing eye brow with eye brow stick and giving tips for that", "video_id": "video12678", "sen_id": 238246}, {"caption": "women takes and applies foundation on the eyelashes", "video_id": "video12678", "sen_id": 238247}, {"caption": "a beautician explains about how to apply eye make-up", "video_id": "video12678", "sen_id": 238248}, {"caption": "a women is brushing her eyebrows and applying makeup", "video_id": "video12678", "sen_id": 238249}, {"caption": "there is a women applying make by herself", "video_id": "video12678", "sen_id": 238250}, {"caption": "a lady is making his eye bro with eye bro stick", "video_id": "video12678", "sen_id": 238251}, {"caption": "a woman in a white shirt applies makeup to her eyebrow", "video_id": "video12678", "sen_id": 238252}, {"caption": "a lady is explaining about an eye make-up", "video_id": "video12678", "sen_id": 238253}, {"caption": "the woman uses a small brush to fill in her eyebrows", "video_id": "video12678", "sen_id": 238254}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video12678", "sen_id": 238255}, {"caption": "the white dressed beautician is explaining that how to make-up the eye brow which suitable to the face", "video_id": "video12678", "sen_id": 238256}, {"caption": "a woman is giving useful instructions on how to apply makeup for your eyebrows", "video_id": "video12678", "sen_id": 238257}, {"caption": "a women is doing make up for the eyes and she also explains how to put eye -make up", "video_id": "video12678", "sen_id": 238258}, {"caption": "a woman is showing how to do her makeup", "video_id": "video12678", "sen_id": 238259}, {"caption": "a chef describes and demonstrates a recipe she is working on in her home kitchen", "video_id": "video12099", "sen_id": 238260}, {"caption": "a chef describes and demonstrates a recipe they are preparing in their home kitchen", "video_id": "video12099", "sen_id": 238261}, {"caption": "a women prepares food in the kitchen to enjoy", "video_id": "video12099", "sen_id": 238262}, {"caption": "a woman pours ingredients for a dish into a black non stick pan", "video_id": "video12099", "sen_id": 238263}, {"caption": "a person prepares a recipe that they explain and go over", "video_id": "video12099", "sen_id": 238264}, {"caption": "a man adds various ingredients to a pot while giving verbal instructions", "video_id": "video12099", "sen_id": 238265}, {"caption": "a man is adding ingredients to a pot and stirring them", "video_id": "video12099", "sen_id": 238266}, {"caption": "a famous chef preparing some dish in his show", "video_id": "video12099", "sen_id": 238267}, {"caption": "in the kitchen a person is using a wooden spoon to stir and add ingredients to a pot of food", "video_id": "video12099", "sen_id": 238268}, {"caption": "a man speaking near a large boiling pot that he places food into and mixes", "video_id": "video12099", "sen_id": 238269}, {"caption": "a man is adding ingredients in a large pan and then mixing it", "video_id": "video12099", "sen_id": 238270}, {"caption": "there is someone making a tasty dish in the kitchen", "video_id": "video12099", "sen_id": 238271}, {"caption": "a man talks while pouring ingredients into a hot stock pan and stirs", "video_id": "video12099", "sen_id": 238272}, {"caption": "a chef in red dress puts the solid stuff in the frying pan and adds some items mixing it together", "video_id": "video12099", "sen_id": 238273}, {"caption": "a man adds pasted onions and tumeric with other spices to a large pot on stovetop and mixes together", "video_id": "video12099", "sen_id": 238274}, {"caption": "person in red shirt is in the kitchen and making lunch", "video_id": "video12099", "sen_id": 238275}, {"caption": "a person is pouring ingredients into a hot pot that is boiling on the stove", "video_id": "video12099", "sen_id": 238276}, {"caption": "a man is mixing rice mixtures into a large cooking pot", "video_id": "video12099", "sen_id": 238277}, {"caption": "some mixed stuff is put on the oil and few more additions added and all mixed together", "video_id": "video12099", "sen_id": 238278}, {"caption": "a man adds various ingredients into a pot", "video_id": "video12099", "sen_id": 238279}, {"caption": "a person is getting their hair cut very short", "video_id": "video11614", "sen_id": 238280}, {"caption": "a female barber trims the hair of another woman", "video_id": "video11614", "sen_id": 238281}, {"caption": "a haircutting tutorial with a woman who has black hair", "video_id": "video11614", "sen_id": 238282}, {"caption": "a woman cuts another woman's dark hair in a salon", "video_id": "video11614", "sen_id": 238283}, {"caption": "a woman combing and cutting the hair off of another womans head", "video_id": "video11614", "sen_id": 238284}, {"caption": "a woman with black hair having it cut in the back", "video_id": "video11614", "sen_id": 238285}, {"caption": "a hair stylist cuts the back of a woman s hair while discussing her method", "video_id": "video11614", "sen_id": 238286}, {"caption": "a woman narrates as she cuts the hair of another person who has black hair", "video_id": "video11614", "sen_id": 238287}, {"caption": "a person is cutting the hair of the child", "video_id": "video11614", "sen_id": 238288}, {"caption": "a young woman gets her hair cut by a person with scissors", "video_id": "video11614", "sen_id": 238289}, {"caption": "a person is getting their hair cut inside a room", "video_id": "video11614", "sen_id": 238290}, {"caption": "a womans hair being cut with sizzers and a comb", "video_id": "video11614", "sen_id": 238291}, {"caption": "a person is carefully cuting another person s hair with scissors", "video_id": "video11614", "sen_id": 238292}, {"caption": "a girl cuts another girls hair with scissors while talking", "video_id": "video11614", "sen_id": 238293}, {"caption": "a man is cutting someone back side hair by scissor", "video_id": "video11614", "sen_id": 238294}, {"caption": "some people in a room are getting their hair done", "video_id": "video11614", "sen_id": 238295}, {"caption": "someone cuts the hair of a lady with scissors and comb", "video_id": "video11614", "sen_id": 238296}, {"caption": "women cutting hair in proper shape", "video_id": "video11614", "sen_id": 238297}, {"caption": "hair dressing is demonstrated to make it short and shaped above neck", "video_id": "video11614", "sen_id": 238298}, {"caption": "a person cuts the hair of a girl using scissor and aligned proper", "video_id": "video11614", "sen_id": 238299}, {"caption": "a red racing car is speeding quickly towards another vehicle", "video_id": "video10846", "sen_id": 238300}, {"caption": "point of view shots from people driving race cars", "video_id": "video10846", "sen_id": 238301}, {"caption": "race cars speed around a race track and try to pass one another", "video_id": "video10846", "sen_id": 238302}, {"caption": "a man is sitting in the cockpit of a race car driving it very fast down a track", "video_id": "video10846", "sen_id": 238303}, {"caption": "a car racer riding his car very fast on race", "video_id": "video10846", "sen_id": 238304}, {"caption": "formula cars racing down the stage with top speed", "video_id": "video10846", "sen_id": 238305}, {"caption": "the car racers drive the race car with high speed in the road", "video_id": "video10846", "sen_id": 238306}, {"caption": "a person drives a red race car very fast around a track", "video_id": "video10846", "sen_id": 238307}, {"caption": "the view from the drivers seat of formula 1 cars racing", "video_id": "video10846", "sen_id": 238308}, {"caption": "the drivers are driving their formula very fast on the path", "video_id": "video10846", "sen_id": 238309}, {"caption": "a view from inside a formula one race car as it speeds down the race track", "video_id": "video10846", "sen_id": 238310}, {"caption": "a bunch of race cars are driving on a race track", "video_id": "video10846", "sen_id": 238311}, {"caption": "a race car driving along a professional track during a race", "video_id": "video10846", "sen_id": 238312}, {"caption": "race cars speed around the track really fast", "video_id": "video10846", "sen_id": 238313}, {"caption": "different views from several formula one style race cars driving around a track", "video_id": "video10846", "sen_id": 238314}, {"caption": "some one driving a sports car with full speed", "video_id": "video10846", "sen_id": 238315}, {"caption": "a racing car is moving fast on the road", "video_id": "video10846", "sen_id": 238316}, {"caption": "a red colored race car on a track in first person view", "video_id": "video10846", "sen_id": 238317}, {"caption": "the maximum number of peoples were participating in the car racing", "video_id": "video10846", "sen_id": 238318}, {"caption": "a race car is driving around on a track", "video_id": "video10846", "sen_id": 238319}, {"caption": "several people are pulling a horse out of a pool using a harness", "video_id": "video12054", "sen_id": 238320}, {"caption": "a group of firefighter use straps to haul a horse out of a swimming pool", "video_id": "video12054", "sen_id": 238321}, {"caption": "a large dog is being pulled right out of the water", "video_id": "video12054", "sen_id": 238322}, {"caption": "a group of firemen getting a horse out of a pool", "video_id": "video12054", "sen_id": 238323}, {"caption": "a group of rescue professionals taking a horse out of a pool", "video_id": "video12054", "sen_id": 238324}, {"caption": "all persons are lifting a horse from a water pool", "video_id": "video12054", "sen_id": 238325}, {"caption": "people tries to save the horse fell in the swimming pool", "video_id": "video12054", "sen_id": 238326}, {"caption": "people at pool pulling a horse out of the pool", "video_id": "video12054", "sen_id": 238327}, {"caption": "group of people lifting a horse from a swimming pool", "video_id": "video12054", "sen_id": 238328}, {"caption": "the team members are trying to draging up a black horse from swimmingpool", "video_id": "video12054", "sen_id": 238329}, {"caption": "some people try to get back the horse from the river", "video_id": "video12054", "sen_id": 238330}, {"caption": "people are pulling the horse to shore that fell into the swimming pool", "video_id": "video12054", "sen_id": 238331}, {"caption": "several men are using a harness to pull a horse out of a pool", "video_id": "video12054", "sen_id": 238332}, {"caption": "a group of people are trying to pull a horse out of a swimming pool with a harness", "video_id": "video12054", "sen_id": 238333}, {"caption": "men pull horse with straps out of pool after it falls in", "video_id": "video12054", "sen_id": 238334}, {"caption": "there is a horse falling down in the water", "video_id": "video12054", "sen_id": 238335}, {"caption": "a horse ia pulled from the water", "video_id": "video12054", "sen_id": 238336}, {"caption": "two men are pulling a horse out of a pool by using rope", "video_id": "video12054", "sen_id": 238337}, {"caption": "a rescue team pulls a horse out of a swimming pool", "video_id": "video12054", "sen_id": 238338}, {"caption": "people work together to pull a horse out of water", "video_id": "video12054", "sen_id": 238339}, {"caption": "a person is kayaking in calm water while some people are gathered on the shore", "video_id": "video11735", "sen_id": 238340}, {"caption": "some is paddling a kiake around a bend on a river", "video_id": "video11735", "sen_id": 238341}, {"caption": "there is someone paddling in a yellow boat on a river", "video_id": "video11735", "sen_id": 238342}, {"caption": "a kayaker gets ready to launch his kayak into a fast moving stream", "video_id": "video11735", "sen_id": 238343}, {"caption": "a person on a yellow boat rowing near a rock", "video_id": "video11735", "sen_id": 238344}, {"caption": "a yellow kayak is being propelled down a river by two oars", "video_id": "video11735", "sen_id": 238345}, {"caption": "several people with kayaks on the banks of a river countdown from 10 before one person enters the water in his kayak", "video_id": "video11735", "sen_id": 238346}, {"caption": "a person is on a yellow canoe filming himself paddling", "video_id": "video11735", "sen_id": 238347}, {"caption": "a yellow kayak is floating in the water a man in a yellow shirt is sitting on a rock", "video_id": "video11735", "sen_id": 238348}, {"caption": "a water scene and man roaing inside water moving in water boat displaying on screen", "video_id": "video11735", "sen_id": 238349}, {"caption": "white man on a yellow kayak and is not moving anywhere", "video_id": "video11735", "sen_id": 238350}, {"caption": "a person is kayaking down a river with other people", "video_id": "video11735", "sen_id": 238351}, {"caption": "a kayaker paddles his kayak down a small river", "video_id": "video11735", "sen_id": 238352}, {"caption": "a man is kayaking and counting down from five as he does so", "video_id": "video11735", "sen_id": 238353}, {"caption": "a person moving the boat in the river around the rock", "video_id": "video11735", "sen_id": 238354}, {"caption": "someone is putting paddle in a yellow boatwhile some boats and persons is standing in ashore", "video_id": "video11735", "sen_id": 238355}, {"caption": "a person in the yellow boat tries to move and makes the boat move", "video_id": "video11735", "sen_id": 238356}, {"caption": "its yellow yacht where a man is driving it with help of side stick", "video_id": "video11735", "sen_id": 238357}, {"caption": "different events from different countries are covered by this newschannel", "video_id": "video11735", "sen_id": 238358}, {"caption": "a person in a canoe is paddling in water", "video_id": "video11735", "sen_id": 238359}, {"caption": "vanessa williams is in a clip featuring a few different cartoons", "video_id": "video10907", "sen_id": 238360}, {"caption": "a cartoon man spins a torch then a woman talks and various disney characters react", "video_id": "video10907", "sen_id": 238361}, {"caption": "several clips of disney villains appear while a woman with a under water backdrop makes a voice over", "video_id": "video10907", "sen_id": 238362}, {"caption": "an african american animated movie and then a woman talking about disney movies", "video_id": "video10907", "sen_id": 238363}, {"caption": "a woman standing and narrating an animated cartoon movie", "video_id": "video10907", "sen_id": 238364}, {"caption": "there is a man in white dressing walking with fire", "video_id": "video10907", "sen_id": 238365}, {"caption": "a cartoon montage is introduced by a woman in a white dress", "video_id": "video10907", "sen_id": 238366}, {"caption": "an old woman has pet snake and blows out torch and other disney films are shown", "video_id": "video10907", "sen_id": 238367}, {"caption": "a collection of cartoons are played with villians featured and talked about", "video_id": "video10907", "sen_id": 238368}, {"caption": "a woman in a white dress talks about disney villains", "video_id": "video10907", "sen_id": 238369}, {"caption": "a lady fully silver colored dress is talking", "video_id": "video10907", "sen_id": 238370}, {"caption": "someone is talking about animated movies while previews of them play", "video_id": "video10907", "sen_id": 238371}, {"caption": "a little person holds a torch inside a cave", "video_id": "video10907", "sen_id": 238372}, {"caption": "blonde woman in white clothes is talking about the cartoon", "video_id": "video10907", "sen_id": 238373}, {"caption": "a woman in a white dress is talking about disney characters", "video_id": "video10907", "sen_id": 238374}, {"caption": "a male doll is dancing", "video_id": "video10907", "sen_id": 238375}, {"caption": "a history of disney villians with vanessa williams from the movies of 101 dalmatians and the princess and the frog", "video_id": "video10907", "sen_id": 238376}, {"caption": "a lot of different disney movies are shown and vanessa williams talks", "video_id": "video10907", "sen_id": 238377}, {"caption": "a woman explaining the different disney villains and how they work", "video_id": "video10907", "sen_id": 238378}, {"caption": "a short women with dark complexion and white gown steps on a snake who throws up an egg and she blows out a torch", "video_id": "video10907", "sen_id": 238379}, {"caption": "a group of women wearing sunglasses and red lipstick dancing", "video_id": "video12695", "sen_id": 238380}, {"caption": "group of women in casual clothing dancing on a white stage", "video_id": "video12695", "sen_id": 238381}, {"caption": "an excerpt from justin bieber's video sorry features female dancers in multicolored clothing", "video_id": "video12695", "sen_id": 238382}, {"caption": "a group of women are dancing for a music video", "video_id": "video12695", "sen_id": 238383}, {"caption": "a group of girls dancing together in bright outfits and sun glasses", "video_id": "video12695", "sen_id": 238384}, {"caption": "a group of girls are dancing in music video", "video_id": "video12695", "sen_id": 238385}, {"caption": "there are many young people practising the dance", "video_id": "video12695", "sen_id": 238386}, {"caption": "a group dance and music performance is under way", "video_id": "video12695", "sen_id": 238387}, {"caption": "the beautiful girls are dancing in very well all are appear in very nice looking", "video_id": "video12695", "sen_id": 238388}, {"caption": "an upbeat music video in 80 s clothes and strong choreography", "video_id": "video12695", "sen_id": 238389}, {"caption": "a modern party dance where the unic is all beautiful lady partcipants have weared a sunglass", "video_id": "video12695", "sen_id": 238390}, {"caption": "there are many youngsters practising dance in a hall", "video_id": "video12695", "sen_id": 238391}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12695", "sen_id": 238392}, {"caption": "the group of women is dancing on a song", "video_id": "video12695", "sen_id": 238393}, {"caption": "girls are dancing to justin bieber in different kinds of casual dress", "video_id": "video12695", "sen_id": 238394}, {"caption": "a group of girls are dancing for a nice songs with pretty dress", "video_id": "video12695", "sen_id": 238395}, {"caption": "there is a green tshirt woman dancing with her friends", "video_id": "video12695", "sen_id": 238396}, {"caption": "sexy girls dancing and singing very very hot", "video_id": "video12695", "sen_id": 238397}, {"caption": "pop music video with pretty girls and dancing", "video_id": "video12695", "sen_id": 238398}, {"caption": "sexy singer dancing and singing in her music video", "video_id": "video12695", "sen_id": 238399}, {"caption": "mussels are shown being grown and processed by men", "video_id": "video11120", "sen_id": 238400}, {"caption": "we see underwater then fishermen above water collecting mussels", "video_id": "video11120", "sen_id": 238401}, {"caption": "men are pulling up mussels on a conveyor belt from a aqua farm", "video_id": "video11120", "sen_id": 238402}, {"caption": "a bunch of muscles being farmed through machines", "video_id": "video11120", "sen_id": 238403}, {"caption": "seaside mussels being caught and loaded on boats and put in containers", "video_id": "video11120", "sen_id": 238404}, {"caption": "a machine with a brush is washing off freshly caught mussels", "video_id": "video11120", "sen_id": 238405}, {"caption": "various procedures related to farming mussels are shown including pulling the mussels up from underwater on wooden racks", "video_id": "video11120", "sen_id": 238406}, {"caption": "a worker filters seafood through a machinery on a beautiful sunny day", "video_id": "video11120", "sen_id": 238407}, {"caption": "in the sea side of the foods are take from the", "video_id": "video11120", "sen_id": 238408}, {"caption": "a man explains farmed mussels cultivation and their process", "video_id": "video11120", "sen_id": 238409}, {"caption": "a machine on the ship producing some kind of object and there are many people on the ship", "video_id": "video11120", "sen_id": 238410}, {"caption": "a men is running on road and blowing air in shell", "video_id": "video11120", "sen_id": 238411}, {"caption": "here we can see a seashell processing unit where they are collected and cleaned and the sent to store they breed them there", "video_id": "video11120", "sen_id": 238412}, {"caption": "a sea product is extract from the macine", "video_id": "video11120", "sen_id": 238413}, {"caption": "fishes swim by a coral reef close to boaters", "video_id": "video11120", "sen_id": 238414}, {"caption": "there are some one working hard in fishing", "video_id": "video11120", "sen_id": 238415}, {"caption": "there are two men removing grass from the lake", "video_id": "video11120", "sen_id": 238416}, {"caption": "two men in uniform working on boat doing a work with machine", "video_id": "video11120", "sen_id": 238417}, {"caption": "two men are working in the sea side", "video_id": "video11120", "sen_id": 238418}, {"caption": "men are working machines and boats to bring in seafood", "video_id": "video11120", "sen_id": 238419}, {"caption": "a man and woman discuss the way people make a living", "video_id": "video10064", "sen_id": 238420}, {"caption": "a man discusses his opinions on who should earn money for a family", "video_id": "video10064", "sen_id": 238421}, {"caption": "{}", "video_id": "video10064", "sen_id": 238422}, {"caption": "a discipline is described as the study of people and their wealth", "video_id": "video10064", "sen_id": 238423}, {"caption": "a strangely-colored man talks while words appear next to him", "video_id": "video10064", "sen_id": 238424}, {"caption": "a guy with a green face mustache and black robe with purple shirt & tie is talking about the study of man", "video_id": "video10064", "sen_id": 238425}, {"caption": "a man talks about the money made in america by both men and women", "video_id": "video10064", "sen_id": 238426}, {"caption": "a man narrates a short passage of text scrolling on the screen", "video_id": "video10064", "sen_id": 238427}, {"caption": "there is a suit man explaining something interesting", "video_id": "video10064", "sen_id": 238428}, {"caption": "a study of man and women in the ordinary business of life", "video_id": "video10064", "sen_id": 238429}, {"caption": "an old man is talking and doing some actions", "video_id": "video10064", "sen_id": 238430}, {"caption": "the study of man and woman in the ordinary business of life", "video_id": "video10064", "sen_id": 238431}, {"caption": "a man is talking about a income for man and a woman about business idea", "video_id": "video10064", "sen_id": 238432}, {"caption": "a man is discussing the study of business on how men and women receive their income and how they use it", "video_id": "video10064", "sen_id": 238433}, {"caption": "a man with a green face is talking about something", "video_id": "video10064", "sen_id": 238434}, {"caption": "men are discussing with screen by actions", "video_id": "video10064", "sen_id": 238435}, {"caption": "an animated man is reciting a quote that is scrolling next to him", "video_id": "video10064", "sen_id": 238436}, {"caption": "a person talking about study of man in ordinary business life", "video_id": "video10064", "sen_id": 238437}, {"caption": "a study of woman and man quotes was telling like a cartoon", "video_id": "video10064", "sen_id": 238438}, {"caption": "a old man whit green face explaining the study of a man", "video_id": "video10064", "sen_id": 238439}, {"caption": "cars are being inserted into slots by mechanical arms in a tall parking structure", "video_id": "video10057", "sen_id": 238440}, {"caption": "many cars are parked in a car plant and it is a parking deck", "video_id": "video10057", "sen_id": 238441}, {"caption": "many cars are shown in the circular garage", "video_id": "video10057", "sen_id": 238442}, {"caption": "cars in a circular parking structure in cubbies", "video_id": "video10057", "sen_id": 238443}, {"caption": "red and white cars being lifted into automatic parking garage spaces", "video_id": "video10057", "sen_id": 238444}, {"caption": "an auto plant uses robots to store cars that have been completed", "video_id": "video10057", "sen_id": 238445}, {"caption": "cars being moved on a huge industrial elevator after they are manufactured", "video_id": "video10057", "sen_id": 238446}, {"caption": "tower which appears to be a car parking place is shown with countless cars parked inside", "video_id": "video10057", "sen_id": 238447}, {"caption": "red and a white care are surrounded by photos of other cars", "video_id": "video10057", "sen_id": 238448}, {"caption": "vehicles are being parked in an elaborate underground garage by machines", "video_id": "video10057", "sen_id": 238449}, {"caption": "many cars are stored in a plant and are automatically moved from there to the customer center", "video_id": "video10057", "sen_id": 238450}, {"caption": "this is simply a video of cars being parked into an automatic car parking warehouse the scene changes as the video plays on and different cars are shown being parked into their designated lots", "video_id": "video10057", "sen_id": 238451}, {"caption": "cars are lowered and raised inside of a parking structure by mechanical arms", "video_id": "video10057", "sen_id": 238452}, {"caption": "a video that is explaining the importation of motor vehicles", "video_id": "video10057", "sen_id": 238453}, {"caption": "there is a very large parking garage and cars in various shades on the inside of the parking tower", "video_id": "video10057", "sen_id": 238454}, {"caption": "the colourful cars are arranged in some good order", "video_id": "video10057", "sen_id": 238455}, {"caption": "there is a large hole with different slots for cars and a machine to move the cars around", "video_id": "video10057", "sen_id": 238456}, {"caption": "slides of an automated automobile lift system are displayed", "video_id": "video10057", "sen_id": 238457}, {"caption": "cars are moved from a manufacturing plant to a sales location", "video_id": "video10057", "sen_id": 238458}, {"caption": "a person is showing bunch of cars parked using modern technology", "video_id": "video10057", "sen_id": 238459}, {"caption": "a man playing gta v with his friends he is driving a blue sports car throughout the game", "video_id": "video11509", "sen_id": 238460}, {"caption": "adolescents play a modern racing game with one of their webcam feeds displayed at the top", "video_id": "video11509", "sen_id": 238461}, {"caption": "a remote controlled car is moving over a bridge", "video_id": "video11509", "sen_id": 238462}, {"caption": "a guy driving a blue car in a game making some awesome turns", "video_id": "video11509", "sen_id": 238463}, {"caption": "some boys watch a car racing video game and talk about it", "video_id": "video11509", "sen_id": 238464}, {"caption": "there is a man with headphones playing a game driving a teal sports car and crashing int o different obstacles", "video_id": "video11509", "sen_id": 238465}, {"caption": "some one driving a sports car with full speed", "video_id": "video11509", "sen_id": 238466}, {"caption": "two friends are enjoying a multiplayer car racing game and racing one another in joy", "video_id": "video11509", "sen_id": 238467}, {"caption": "a video animation of movie video game car racing game boy wearing earphones controlling jumping dashing displaying on screen", "video_id": "video11509", "sen_id": 238468}, {"caption": "player playing video game trying to get more points", "video_id": "video11509", "sen_id": 238469}, {"caption": "there is a blue car moving on the road", "video_id": "video11509", "sen_id": 238470}, {"caption": "a man is screaming while playing a game which has a blue car", "video_id": "video11509", "sen_id": 238471}, {"caption": "someone is driving a blue sports car down a highway at top speed in a video game simulation", "video_id": "video11509", "sen_id": 238472}, {"caption": "gamers racing each other with the hopes on winning", "video_id": "video11509", "sen_id": 238473}, {"caption": "a kid is driving a car in computer game and racing around", "video_id": "video11509", "sen_id": 238474}, {"caption": "this person is playing gta v and is racing other people and is having a lot of fun", "video_id": "video11509", "sen_id": 238475}, {"caption": "a male in a white shirt is playing a video game with a blue car while screaming and laughing at the game", "video_id": "video11509", "sen_id": 238476}, {"caption": "some friends are plying a car racing video game and giving their reactions", "video_id": "video11509", "sen_id": 238477}, {"caption": "it seems to be a vedio game of car race in which a manless blue car is runnig on a hill side road after crossing some disatance there comes both side of the road check post after crossing this point the car then hit by another red car then it take a turn then comes to normal run further and finally it goes up in the air for dome distance", "video_id": "video11509", "sen_id": 238478}, {"caption": "someone is playing grand theft auto five", "video_id": "video11509", "sen_id": 238479}, {"caption": "man in outfit showing how to cut into a squid at a restaurant", "video_id": "video11422", "sen_id": 238480}, {"caption": "a man slicing up a piece of seafood with a sharp knife on a cutting board", "video_id": "video11422", "sen_id": 238481}, {"caption": "video presentation of prepping and serving octopus legs the preparation and serving of octopus legs", "video_id": "video11422", "sen_id": 238482}, {"caption": "a chef chops the limbs off of a sea creature", "video_id": "video11422", "sen_id": 238483}, {"caption": "a man is cutting up a live octopus", "video_id": "video11422", "sen_id": 238484}, {"caption": "a food service worker is preparing a live squid in a restaurant", "video_id": "video11422", "sen_id": 238485}, {"caption": "a man uses a knife to cut off the moving legs of a small brown octopus using a white cutting board", "video_id": "video11422", "sen_id": 238486}, {"caption": "a chef slices the tentacles from a live squid before placing them directly on the customer s plate", "video_id": "video11422", "sen_id": 238487}, {"caption": "a person wearing rubber gloves is cutting the legs off of a small octopus and places them on a metal plate", "video_id": "video11422", "sen_id": 238488}, {"caption": "a chef prepares a squid for a meal by cutting off its tentacles", "video_id": "video11422", "sen_id": 238489}, {"caption": "in the kitchen someone making a dish with fish", "video_id": "video11422", "sen_id": 238490}, {"caption": "a chef prepares a squid for a dish", "video_id": "video11422", "sen_id": 238491}, {"caption": "guy cutting starfish and placing it on a plate", "video_id": "video11422", "sen_id": 238492}, {"caption": "a chef cuts up a small octopus that is still moving", "video_id": "video11422", "sen_id": 238493}, {"caption": "a person is cutting the legs of starfishoctopus creature for making receipe", "video_id": "video11422", "sen_id": 238494}, {"caption": "a man in latext gloves is using a knife to slice some kind of seafood", "video_id": "video11422", "sen_id": 238495}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11422", "sen_id": 238496}, {"caption": "a chef is cutting a live octupus for his delicious dish", "video_id": "video11422", "sen_id": 238497}, {"caption": "a man in blue color dress wearing inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video11422", "sen_id": 238498}, {"caption": "a man is preparing a squid to eat", "video_id": "video11422", "sen_id": 238499}, {"caption": "a whale surfaces and blows air out as a boat full of sightseers watch and cheer", "video_id": "video11929", "sen_id": 238500}, {"caption": "two whales have just broke the surface and blew water out there blow holes", "video_id": "video11929", "sen_id": 238501}, {"caption": "two whales swimming surfaces the blue ocean top", "video_id": "video11929", "sen_id": 238502}, {"caption": "a panoramic view of choppy water before two dolphins break the surface shooting water from their blowholes", "video_id": "video11929", "sen_id": 238503}, {"caption": "there is a whale with water spouting from his hole in the sea", "video_id": "video11929", "sen_id": 238504}, {"caption": "people are screaming in excitement after seeing dolphins coming our of water during an ocean ride", "video_id": "video11929", "sen_id": 238505}, {"caption": "a man speaks over an intercom while various tourists chher and view the breaching of a family of whales", "video_id": "video11929", "sen_id": 238506}, {"caption": "com one big sea dolphins are there", "video_id": "video11929", "sen_id": 238507}, {"caption": "a gray whale jumping out of the water blowing water out their holes", "video_id": "video11929", "sen_id": 238508}, {"caption": "two dolphins are coming and going in the sea and the people are enjoying by seeing dolphins", "video_id": "video11929", "sen_id": 238509}, {"caption": "a boat is moving in the deep sea", "video_id": "video11929", "sen_id": 238510}, {"caption": "two dolphins is somersaulting in the blue sea", "video_id": "video11929", "sen_id": 238511}, {"caption": "a crowd of people on a boat cheer as two whales surface to breathe", "video_id": "video11929", "sen_id": 238512}, {"caption": "two sea animals come up above the water and people start cheering", "video_id": "video11929", "sen_id": 238513}, {"caption": "a whale in the ocean is blowing air out", "video_id": "video11929", "sen_id": 238514}, {"caption": "there is a whale swimming in the deep sea", "video_id": "video11929", "sen_id": 238515}, {"caption": "two large whales surface in the ocean to the delight of the boat passengers", "video_id": "video11929", "sen_id": 238516}, {"caption": "a whale watching tour sees two whales breach the water and blow air out of their blow-holes", "video_id": "video11929", "sen_id": 238517}, {"caption": "a river water and large fish swimming in water moving slowly displaying on screen", "video_id": "video11929", "sen_id": 238518}, {"caption": "some one is filming the blue ocean waves outside", "video_id": "video11929", "sen_id": 238519}, {"caption": "a fish is eating food from the floor of a tank and moving a clear ball", "video_id": "video11531", "sen_id": 238520}, {"caption": "goldfish are pushing a toy bubble around in the fish bowl", "video_id": "video11531", "sen_id": 238521}, {"caption": "a goldfish pushing a clear ball around an aquairium", "video_id": "video11531", "sen_id": 238522}, {"caption": "a few different colored fish swimming in a tank", "video_id": "video11531", "sen_id": 238523}, {"caption": "goldfish are swimming along the bottom of a tank and are eating something", "video_id": "video11531", "sen_id": 238524}, {"caption": "the gold fishes are swimming in the aquarium water", "video_id": "video11531", "sen_id": 238525}, {"caption": "in a fish tank brightly colored goldfish are pushing a ball around", "video_id": "video11531", "sen_id": 238526}, {"caption": "various goldfish are pushing a small ball along the bottom of an aquarium", "video_id": "video11531", "sen_id": 238527}, {"caption": "a cute color fish rolling the small ball which is in the fish tank", "video_id": "video11531", "sen_id": 238528}, {"caption": "a colourful yellow and red gold fishes are eating their foods", "video_id": "video11531", "sen_id": 238529}, {"caption": "a orange and gold color fishes are playing with a ball on water", "video_id": "video11531", "sen_id": 238530}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video11531", "sen_id": 238531}, {"caption": "the fish swim around and pushes the ball around the bowl", "video_id": "video11531", "sen_id": 238532}, {"caption": "a color fishes are playing in the aquarium", "video_id": "video11531", "sen_id": 238533}, {"caption": "fish swimming in the tank and eating together", "video_id": "video11531", "sen_id": 238534}, {"caption": "there are some fish floating in the aquarium", "video_id": "video11531", "sen_id": 238535}, {"caption": "there is a golden fish in aquarim swimming into water", "video_id": "video11531", "sen_id": 238536}, {"caption": "one beautiful fish is moving some like bubble in water", "video_id": "video11531", "sen_id": 238537}, {"caption": "fish are eating some kind of food while a clear plastic ball feeds them", "video_id": "video11531", "sen_id": 238538}, {"caption": "a nice orange fish in the fish tank chasing the plastic sphere containing food", "video_id": "video11531", "sen_id": 238539}, {"caption": "a chef is criticizing the freshness of herbs in another chef's kitchen", "video_id": "video12712", "sen_id": 238540}, {"caption": "gordon ramsay looking at a piece of paper with grass on it", "video_id": "video12712", "sen_id": 238541}, {"caption": "gordon ramsey expresses his displeasure at a five month old pack of chives found in the refrigerator of a restaurant", "video_id": "video12712", "sen_id": 238542}, {"caption": "there is a man testing food in the kitchen", "video_id": "video12712", "sen_id": 238543}, {"caption": "gordon rampsey finds something undesirable in the kitchen to suffer a nervous breakdown for and it wasn t at all set up", "video_id": "video12712", "sen_id": 238544}, {"caption": "a food inspector is shocked at finding months old stale food in the fridge and points it out to the owner", "video_id": "video12712", "sen_id": 238545}, {"caption": "the scientist inspecting the laboratory finds very old deteriorated articles in the referigerator", "video_id": "video12712", "sen_id": 238546}, {"caption": "a chef gives another man a piece of fish to smell and then places it on the table", "video_id": "video12712", "sen_id": 238547}, {"caption": "there is a white dressing man talking to someone in the kitchen", "video_id": "video12712", "sen_id": 238548}, {"caption": "a chef looking at the packet in which dirt and spoiled food kept", "video_id": "video12712", "sen_id": 238549}, {"caption": "an food checking and quality team had a time to check the hotel s kitchen and found an expired food supplements", "video_id": "video12712", "sen_id": 238550}, {"caption": "a man with white dressing talking to a man", "video_id": "video12712", "sen_id": 238551}, {"caption": "a chef looks upset when he discovers food that has gone bad", "video_id": "video12712", "sen_id": 238552}, {"caption": "chef gordon ramsay lectures a man for keeping expired chives in his kitchen", "video_id": "video12712", "sen_id": 238553}, {"caption": "a man is checking some material in a laboratary", "video_id": "video12712", "sen_id": 238554}, {"caption": "gordon ramsay is talking to a fat man", "video_id": "video12712", "sen_id": 238555}, {"caption": "there is a man in white dressing checking some foods", "video_id": "video12712", "sen_id": 238556}, {"caption": "a chef discovers old herbs are past their date of use", "video_id": "video12712", "sen_id": 238557}, {"caption": "a vulgar mouthed chef does an inspection of a restaurant kitchen", "video_id": "video12712", "sen_id": 238558}, {"caption": "gordon ramsey speaking to another guy about some green leaves", "video_id": "video12712", "sen_id": 238559}, {"caption": "a woman is teaching cooking on live and showing how to process pork", "video_id": "video11179", "sen_id": 238560}, {"caption": "in a kitchen a woman in blue shirt pours water into a pot and slices meat", "video_id": "video11179", "sen_id": 238561}, {"caption": "an in-home chef starts a recipe by pouring a sauce into a small pan", "video_id": "video11179", "sen_id": 238562}, {"caption": "a lady pours water in a skillet and turns it on before chopping something in a kitchen", "video_id": "video11179", "sen_id": 238563}, {"caption": "a woman with blue tops pours water on a frying pan", "video_id": "video11179", "sen_id": 238564}, {"caption": "a woman pouring water in a pan that is on the stove", "video_id": "video11179", "sen_id": 238565}, {"caption": "a woman is poring a water in to the pan and boiling", "video_id": "video11179", "sen_id": 238566}, {"caption": "black haired woman is putting some water in a black pan", "video_id": "video11179", "sen_id": 238567}, {"caption": "a woman is cooking while showing how to make a dish", "video_id": "video11179", "sen_id": 238568}, {"caption": "a woman with blue t-shit is cooking something and cutting something in the cutting board", "video_id": "video11179", "sen_id": 238569}, {"caption": "in kitchen water is added to pan then the stove is lighted using the lighter", "video_id": "video11179", "sen_id": 238570}, {"caption": "a young woman in a kitchen pours water into a pan", "video_id": "video11179", "sen_id": 238571}, {"caption": "a young woman talks about a recipe while slicing the meat", "video_id": "video11179", "sen_id": 238572}, {"caption": "a lady on a video showing how to cook a meal", "video_id": "video11179", "sen_id": 238573}, {"caption": "asian cook in a blue top prepares food", "video_id": "video11179", "sen_id": 238574}, {"caption": "in a kitchen a lady pour the oil in to heating beaker and cut the meat", "video_id": "video11179", "sen_id": 238575}, {"caption": "an asian chef begins a recipe by adding water to a saucepan and covering it", "video_id": "video11179", "sen_id": 238576}, {"caption": "a lady pours some water in the frying pan and on the gas", "video_id": "video11179", "sen_id": 238577}, {"caption": "a wearing blue dress and cutting the meat to prepare a dish", "video_id": "video11179", "sen_id": 238578}, {"caption": "a person stands a ta counter and prepares a pot to put food in it", "video_id": "video11179", "sen_id": 238579}, {"caption": "a man and woman talking about eating stuff and the guy is talking about being attracted to a donkey", "video_id": "video10983", "sen_id": 238580}, {"caption": "a man and a woman are sitting at a dinner table talking", "video_id": "video10983", "sen_id": 238581}, {"caption": "a man and a woman are sitting at a table talking and laughing", "video_id": "video10983", "sen_id": 238582}, {"caption": "a man and a woman speak over a meal at a glass table set with white china", "video_id": "video10983", "sen_id": 238583}, {"caption": "a lady says to a man that there is a belief that if you eat certain animal s part it is good for the human", "video_id": "video10983", "sen_id": 238584}, {"caption": "the man was talking about donkey and not attracted to them", "video_id": "video10983", "sen_id": 238585}, {"caption": "there is a mature woman talking to a man", "video_id": "video10983", "sen_id": 238586}, {"caption": "people are enjoying food at the busy restaurant", "video_id": "video10983", "sen_id": 238587}, {"caption": "a woman and man sitting in the table discussing about foods", "video_id": "video10983", "sen_id": 238588}, {"caption": "an asian woman and a white man in a pink button-down shirt discuss ideas in a restaurant", "video_id": "video10983", "sen_id": 238589}, {"caption": "a lady speaking about something to a man in a restaurant", "video_id": "video10983", "sen_id": 238590}, {"caption": "a man is talking with a lady", "video_id": "video10983", "sen_id": 238591}, {"caption": "a woman and a man are having a conversation at a diner while sitting at a table a man is cutting a snake", "video_id": "video10983", "sen_id": 238592}, {"caption": "a man and a woman are taking about their disgusting food choices", "video_id": "video10983", "sen_id": 238593}, {"caption": "a man in a chef hat is in a room", "video_id": "video10983", "sen_id": 238594}, {"caption": "a man and a woman have a discussion in a restaurant", "video_id": "video10983", "sen_id": 238595}, {"caption": "a man cooking for people", "video_id": "video10983", "sen_id": 238596}, {"caption": "in restaurant lady talks to man in pink dress they both wear specs then a chef is shown", "video_id": "video10983", "sen_id": 238597}, {"caption": "2 people in a restaurant talking about sexual issues while waiting for their food", "video_id": "video10983", "sen_id": 238598}, {"caption": "some people at a table are sitting and talking", "video_id": "video10983", "sen_id": 238599}, {"caption": "young boys run in a track and field event", "video_id": "video12986", "sen_id": 238600}, {"caption": "many young men in a running competition crossing the finish line", "video_id": "video12986", "sen_id": 238601}, {"caption": "a young teen boy wearing blue is the first to cross the finish line in a race while a man stands at the line keeping track of the runnerspeople are in the bleachers watchingclapping and cheering", "video_id": "video12986", "sen_id": 238602}, {"caption": "teenaged boys participating in a track meet are crossing the finish line", "video_id": "video12986", "sen_id": 238603}, {"caption": "marathon style run featuring teenagers and children on a track and field", "video_id": "video12986", "sen_id": 238604}, {"caption": "there is a blue jersey boy running on the track", "video_id": "video12986", "sen_id": 238605}, {"caption": "a group of runners are running a race on a track", "video_id": "video12986", "sen_id": 238606}, {"caption": "running race for kids and a person standing with some energy drink", "video_id": "video12986", "sen_id": 238607}, {"caption": "the childrens are participating in the running competition", "video_id": "video12986", "sen_id": 238608}, {"caption": "man in white shirt is waiting for the players to run the race", "video_id": "video12986", "sen_id": 238609}, {"caption": "a group of runners are crossing the finish line", "video_id": "video12986", "sen_id": 238610}, {"caption": "children are running on a track giving their coach high five when they pass the finish line", "video_id": "video12986", "sen_id": 238611}, {"caption": "athletes are running in a track and a man in white shirt waves to them", "video_id": "video12986", "sen_id": 238612}, {"caption": "a group of children are running and the audience is cheering them", "video_id": "video12986", "sen_id": 238613}, {"caption": "boys running on a track in some sort of long distance race for their running clubs", "video_id": "video12986", "sen_id": 238614}, {"caption": "this is a home video involving a track meet focused on one runner", "video_id": "video12986", "sen_id": 238615}, {"caption": "many young boys are running in a competition on the track field", "video_id": "video12986", "sen_id": 238616}, {"caption": "young children run on a track during an athletic event", "video_id": "video12986", "sen_id": 238617}, {"caption": "a crowd of people are cheering for kids that are running on a track", "video_id": "video12986", "sen_id": 238618}, {"caption": "in running competition the players are running fastly on the ground the two member guide the players and the public will watch the competition enjoy fully", "video_id": "video12986", "sen_id": 238619}, {"caption": "two men cooking with lemongrass onions oyster sauce and crabs", "video_id": "video10730", "sen_id": 238620}, {"caption": "two people are in the kitchen cooking crabs", "video_id": "video10730", "sen_id": 238621}, {"caption": "two men prepare a recipe using a variety of aromatic ingredients", "video_id": "video10730", "sen_id": 238622}, {"caption": "two men are cooking an asian dish in a wok together", "video_id": "video10730", "sen_id": 238623}, {"caption": "men add aromatics to a pan of onions on the stove", "video_id": "video10730", "sen_id": 238624}, {"caption": "two men in the kitchen cooking food in a wok together", "video_id": "video10730", "sen_id": 238625}, {"caption": "two asian men smelling and stirring items in a wok", "video_id": "video10730", "sen_id": 238626}, {"caption": "make a night at home special by making a tasty asian meal with your significant other", "video_id": "video10730", "sen_id": 238627}, {"caption": "a man cooking at a wok while his friend hands him sauce", "video_id": "video10730", "sen_id": 238628}, {"caption": "two dark haired men add aromatics to a pan of sizzling onions", "video_id": "video10730", "sen_id": 238629}, {"caption": "two dark haired men add aromatics to sizzling onions in a pan on an induction burner", "video_id": "video10730", "sen_id": 238630}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video10730", "sen_id": 238631}, {"caption": "two men at a kitchen counter one stirs and adds to the food and the other hands requested ingredients", "video_id": "video10730", "sen_id": 238632}, {"caption": "two asian inhome chefs work on a recipe in their wok", "video_id": "video10730", "sen_id": 238633}, {"caption": "two men cook crab in a pan in their kitchen", "video_id": "video10730", "sen_id": 238634}, {"caption": "two men in a kitchen are making some food", "video_id": "video10730", "sen_id": 238635}, {"caption": "two youngsters are busy with preparing dish in the kitchen", "video_id": "video10730", "sen_id": 238636}, {"caption": "two men are in a displaying how to properly cook the meal they want to make", "video_id": "video10730", "sen_id": 238637}, {"caption": "two men work on a recipe in their inhome kitchen", "video_id": "video10730", "sen_id": 238638}, {"caption": "two cooks prepare a delicious asian meal at home", "video_id": "video10730", "sen_id": 238639}, {"caption": "a woman telling how to cook gravy with mushrooms", "video_id": "video10237", "sen_id": 238640}, {"caption": "a woman stirs a stew with a wooden spoon in a cast iron pot", "video_id": "video10237", "sen_id": 238641}, {"caption": "a woman is talking while ingredients in a pan are being stirred with a wooden spoon", "video_id": "video10237", "sen_id": 238642}, {"caption": "a woman is mixing food and talking about it", "video_id": "video10237", "sen_id": 238643}, {"caption": "there is a pot with different ingredients in it being cooked and stirred around with a wooden spoon", "video_id": "video10237", "sen_id": 238644}, {"caption": "a woman is talking in a foreign language about what she is cooking", "video_id": "video10237", "sen_id": 238645}, {"caption": "a woman stirs ingredients while cooking in a frying pan", "video_id": "video10237", "sen_id": 238646}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10237", "sen_id": 238647}, {"caption": "a woman stirind some meal she is preparing", "video_id": "video10237", "sen_id": 238648}, {"caption": "someone is preparing a delicious dish with vegetables and meat in a black vessel", "video_id": "video10237", "sen_id": 238649}, {"caption": "the women doing the cooking in the clip is taking about adding garlic to her chicken", "video_id": "video10237", "sen_id": 238650}, {"caption": "in the kitchen a woman making a gravy", "video_id": "video10237", "sen_id": 238651}, {"caption": "the person cooks the food in the big black pot", "video_id": "video10237", "sen_id": 238652}, {"caption": "a women cooking stew that looks like chicken and chili sauce", "video_id": "video10237", "sen_id": 238653}, {"caption": "food of some sort (appears to be a sauce) is being stirred in a pot the voice over is a female voice and that person is speaking in a language other than english", "video_id": "video10237", "sen_id": 238654}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10237", "sen_id": 238655}, {"caption": "wooden spatula stirring brown liquid in a black pot", "video_id": "video10237", "sen_id": 238656}, {"caption": "a woman is cooking in a large black pot", "video_id": "video10237", "sen_id": 238657}, {"caption": "a woman s voice is talking in a language that i do not understand while stirring a red sauce in a pan with a wooden spoon", "video_id": "video10237", "sen_id": 238658}, {"caption": "someone is stirring food with a wood spoon", "video_id": "video10237", "sen_id": 238659}, {"caption": "a male newscaster introduces the series entitled cnn student news", "video_id": "video10213", "sen_id": 238660}, {"caption": "the video starts by showing a satellite clip and then shows famous landmarks before launching into a student news report", "video_id": "video10213", "sen_id": 238661}, {"caption": "a large group of people stand together on a narrow city street", "video_id": "video10213", "sen_id": 238662}, {"caption": "a new anchor talks about people in turkey gathering on cnn student news", "video_id": "video10213", "sen_id": 238663}, {"caption": "a sattelite and the intro of a news show then a newscaster starts delivering the story", "video_id": "video10213", "sen_id": 238664}, {"caption": "the cnn student news intro and talks about turkey", "video_id": "video10213", "sen_id": 238665}, {"caption": "there is a man in suit talking about a strike", "video_id": "video10213", "sen_id": 238666}, {"caption": "this is showing things all around the world for cnn student news", "video_id": "video10213", "sen_id": 238667}, {"caption": "cnn s student news covers a story about a terrorist attack in turkey", "video_id": "video10213", "sen_id": 238668}, {"caption": "the intro for cnn student news shows various images of different locations including famous landmarks like the great sphinx before a newscaster begins to speak about news in turkey regarding terrorism", "video_id": "video10213", "sen_id": 238669}, {"caption": "group of people are on the streets and man presenting the student news", "video_id": "video10213", "sen_id": 238670}, {"caption": "a man is speaking to a camera talking about international events coverage", "video_id": "video10213", "sen_id": 238671}, {"caption": "presenting the international news is telecast the international news in clearly", "video_id": "video10213", "sen_id": 238672}, {"caption": "international news about students gathering to show support for victims of terror attacks", "video_id": "video10213", "sen_id": 238673}, {"caption": "a news reporter with black hair and a black shirt is telling a story", "video_id": "video10213", "sen_id": 238674}, {"caption": "a introduction video to a cnn program", "video_id": "video10213", "sen_id": 238675}, {"caption": "screens flash from one asian and middle eastern scene to another including northern africa", "video_id": "video10213", "sen_id": 238676}, {"caption": "various scenes from around the world followed by a man in a black suit telling the news about a protest", "video_id": "video10213", "sen_id": 238677}, {"caption": "news anchor carl azuz talking and a protest in turkey", "video_id": "video10213", "sen_id": 238678}, {"caption": "there is a quick scenes of different land marks from around the world and a man in a suit talking about a protest of people in turkey", "video_id": "video10213", "sen_id": 238679}, {"caption": "a man discusses the requirements for a job that he is performing", "video_id": "video12557", "sen_id": 238680}, {"caption": "a quick self-description by a man about his work an interview segment about a man and the fact that he makes everything", "video_id": "video12557", "sen_id": 238681}, {"caption": "a man in a suit is being interviewed about the importance of biotechnology", "video_id": "video12557", "sen_id": 238682}, {"caption": "a man in a suit and colorful tie is speaking into the microphone", "video_id": "video12557", "sen_id": 238683}, {"caption": "a man in a suit is being interviewed at what appears to be a conference", "video_id": "video12557", "sen_id": 238684}, {"caption": "a indian man in a suit and blue shirt is talking into a microphone", "video_id": "video12557", "sen_id": 238685}, {"caption": "a man in a suit discusses medicine with an interviewer", "video_id": "video12557", "sen_id": 238686}, {"caption": "a mustached man in a suit stands in front of a microphone and speaks about biotechnology", "video_id": "video12557", "sen_id": 238687}, {"caption": "a man talking with a mike and wearing black color coat", "video_id": "video12557", "sen_id": 238688}, {"caption": "a tanned complexioned man with short hair mustache and wearing a suit is talking into a microphone", "video_id": "video12557", "sen_id": 238689}, {"caption": "man with multicolor tie coat and inner blue dress talks over mike", "video_id": "video12557", "sen_id": 238690}, {"caption": "a man in black suit is interviewed by other people", "video_id": "video12557", "sen_id": 238691}, {"caption": "an indian man is speaking to the camera and answering questions", "video_id": "video12557", "sen_id": 238692}, {"caption": "a man is talking about a bio technology subject", "video_id": "video12557", "sen_id": 238693}, {"caption": "a man in suit is speaking about science techniques", "video_id": "video12557", "sen_id": 238694}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12557", "sen_id": 238695}, {"caption": "aman in a dark colored suite is talking to someone with a mic", "video_id": "video12557", "sen_id": 238696}, {"caption": " with a curved tuft of hair over his head and a moustache is speaking into a microphone in front of a bright window between two walls", "video_id": "video12557", "sen_id": 238697}, {"caption": "guy talking over the mic to a guy", "video_id": "video12557", "sen_id": 238698}, {"caption": "a man is interviewed by the press for a government position", "video_id": "video12557", "sen_id": 238699}, {"caption": "a woman is rowing a large boat with a group of other people", "video_id": "video10432", "sen_id": 238700}, {"caption": "a woman wearing a blue shirt and black cap explains the process of canal locks after which a large group of people paddling a water craft begins the process", "video_id": "video10432", "sen_id": 238701}, {"caption": "a lady speaks as a group of people row a boat through a narrow channel", "video_id": "video10432", "sen_id": 238702}, {"caption": "a woman in a canoe prepares to move through a river lock system", "video_id": "video10432", "sen_id": 238703}, {"caption": "a woman rowing on a canoe with a life jacket talks about boat science", "video_id": "video10432", "sen_id": 238704}, {"caption": "a paddlers in a long canoe tells us that a lock will get them through a weir", "video_id": "video10432", "sen_id": 238705}, {"caption": "a woman talks about how rivers work and allow boats to got through", "video_id": "video10432", "sen_id": 238706}, {"caption": "a woman wearing a cap and life vest is describing how boats go through locks", "video_id": "video10432", "sen_id": 238707}, {"caption": "a woman talking about going through a canal by going through locks", "video_id": "video10432", "sen_id": 238708}, {"caption": "there is red headed girl talking about boats travelling through locks", "video_id": "video10432", "sen_id": 238709}, {"caption": "group of women are preparing for boat ride in sea", "video_id": "video10432", "sen_id": 238710}, {"caption": "more ladies on in one boat going by use of oar", "video_id": "video10432", "sen_id": 238711}, {"caption": "a lady in a river boat explaining how boats work to get to different levels", "video_id": "video10432", "sen_id": 238712}, {"caption": "women along with other people rowing a boat", "video_id": "video10432", "sen_id": 238713}, {"caption": "a girl explains how gates and locks work in the water", "video_id": "video10432", "sen_id": 238714}, {"caption": "a woman on a boat in a river talking about locks", "video_id": "video10432", "sen_id": 238715}, {"caption": "a woman is paddling in a canoe and pointing to locks", "video_id": "video10432", "sen_id": 238716}, {"caption": "a woman describing how boats travel through the water", "video_id": "video10432", "sen_id": 238717}, {"caption": "a woman in a jean shirt and a group paddle a large canoe on river", "video_id": "video10432", "sen_id": 238718}, {"caption": "a woman on a boat talks about how boats move down locks", "video_id": "video10432", "sen_id": 238719}, {"caption": "a woman talks in front of a waterfall while others observe the scenery in the background", "video_id": "video11488", "sen_id": 238720}, {"caption": "a woman in black cap is speaking to her friend as they climb and hike in the mountains", "video_id": "video11488", "sen_id": 238721}, {"caption": "a woman standing near a water fall wearing a black hat and sunglasses", "video_id": "video11488", "sen_id": 238722}, {"caption": "a woman wearing a black cap and dark sunglasses is sprayed with mist on a mountain side near a waterfall where her daughter is standing", "video_id": "video11488", "sen_id": 238723}, {"caption": "a woman in front of a waterfall wearing sunglasses and watching someone off camera", "video_id": "video11488", "sen_id": 238724}, {"caption": "a woman with glasses is on camera with some sort of waterfalls in the background", "video_id": "video11488", "sen_id": 238725}, {"caption": "a woman wearing sunglasses and a hat stands on a rocky trail near a waterfall", "video_id": "video11488", "sen_id": 238726}, {"caption": "a woman standing next to a water fall and having a conversation", "video_id": "video11488", "sen_id": 238727}, {"caption": "a woman in a black hat and sunglasses is taking a video and standing outside by a waterfall", "video_id": "video11488", "sen_id": 238728}, {"caption": "a woman is making a video of herself at a waterfall with other behind her", "video_id": "video11488", "sen_id": 238729}, {"caption": "there is a woman with cooling glass talking in front of a waterfall", "video_id": "video11488", "sen_id": 238730}, {"caption": "a woman is standing in front of a waterfall and is talking on a bright sunny day", "video_id": "video11488", "sen_id": 238731}, {"caption": "a woman in the wilderness talking by a tall mountain", "video_id": "video11488", "sen_id": 238732}, {"caption": "outdoor adventurist are standing in front of a waterfall while a young lady with a baseball cap and sunglasses films them as water splashes on the camera", "video_id": "video11488", "sen_id": 238733}, {"caption": "a lady comments on her obstruction of the camera view while taking pictures", "video_id": "video11488", "sen_id": 238734}, {"caption": "a person with glasses is speaking outside", "video_id": "video11488", "sen_id": 238735}, {"caption": "a women in black cap and glass is moving around", "video_id": "video11488", "sen_id": 238736}, {"caption": "a woman taking video is talking while another woman wets bandana in the waterfall", "video_id": "video11488", "sen_id": 238737}, {"caption": "self video of a lady hiking at a waterfall", "video_id": "video11488", "sen_id": 238738}, {"caption": "a woman films her and her family in front of a waterfall", "video_id": "video11488", "sen_id": 238739}, {"caption": "a series of trees are shown in their natural settings", "video_id": "video10528", "sen_id": 238740}, {"caption": "music is playing in the background as a slide show plays showing various different trees", "video_id": "video10528", "sen_id": 238741}, {"caption": "there are trees being shown one in the sunset and one in the forest", "video_id": "video10528", "sen_id": 238742}, {"caption": "soft music is playing while a tree is shown in front of a sunrise", "video_id": "video10528", "sen_id": 238743}, {"caption": "a tree is shown on a hill with a beautiful sunset background", "video_id": "video10528", "sen_id": 238744}, {"caption": "a large tree sets alone on an oceanside bluff as the sun sets behind it", "video_id": "video10528", "sen_id": 238745}, {"caption": "music is being played in the background while two different pictures of trees are being shown", "video_id": "video10528", "sen_id": 238746}, {"caption": "a picture of trees with an elaborate background", "video_id": "video10528", "sen_id": 238747}, {"caption": "there is a picture of a tree with the sun peeking out and another picture of a large tree trunk", "video_id": "video10528", "sen_id": 238748}, {"caption": "bomb creating an explosion and then a mushroom cloud", "video_id": "video10528", "sen_id": 238749}, {"caption": "a shot of a beautiful tree over an amazing sunset", "video_id": "video10528", "sen_id": 238750}, {"caption": "a series of photographs of nature flash as music plays", "video_id": "video10528", "sen_id": 238751}, {"caption": "the setting sun radiates red and pink hues from beehind a lone tree on top of a hill with water in the background", "video_id": "video10528", "sen_id": 238752}, {"caption": "a tree in black stands against a red orange and blue sunset and then an tall older tree in the woods comes into view as music plays in the background", "video_id": "video10528", "sen_id": 238753}, {"caption": "two very different images of trees are shown", "video_id": "video10528", "sen_id": 238754}, {"caption": "a big tree is on the forest with more branches", "video_id": "video10528", "sen_id": 238755}, {"caption": " elegant looking tree in the sunset followed by an old aged tree in the forest all by itself with moss growing on it", "video_id": "video10528", "sen_id": 238756}, {"caption": "a purple sunset through a lone tree and a gnarled tree trunk", "video_id": "video10528", "sen_id": 238757}, {"caption": "a adventures scene historical place trees inside forest still image displaying on screen", "video_id": "video10528", "sen_id": 238758}, {"caption": "some scenes from nature are being shown outside", "video_id": "video10528", "sen_id": 238759}, {"caption": "a girl in a black bathing suit with black high heels pole dancing", "video_id": "video10622", "sen_id": 238760}, {"caption": "a young pony tail female wearing bikini and high heels is pole dancing with upside down tricks", "video_id": "video10622", "sen_id": 238761}, {"caption": "a girl in a black sparkly bikini dancing on a pole to music", "video_id": "video10622", "sen_id": 238762}, {"caption": "a woman listening to much spins and dances on an exercising pole", "video_id": "video10622", "sen_id": 238763}, {"caption": "a woman in a bikini working upside down on a pole", "video_id": "video10622", "sen_id": 238764}, {"caption": "a pole-dancer in black attire spins around a pole and spends considerable time upside-down", "video_id": "video10622", "sen_id": 238765}, {"caption": "a lady with little dress is moving around a pole and does some acrobatic", "video_id": "video10622", "sen_id": 238766}, {"caption": "a two piece dressed cute and young sexy girl williams is playing in the vertical rod this video is shooted in may 2013", "video_id": "video10622", "sen_id": 238767}, {"caption": "a lady dancing on a pole to a rihanna song", "video_id": "video10622", "sen_id": 238768}, {"caption": "a women is dancing on a pole to music", "video_id": "video10622", "sen_id": 238769}, {"caption": "a young women doing some stunts in a pole", "video_id": "video10622", "sen_id": 238770}, {"caption": "a woman in black lingerie is dancing on a pole", "video_id": "video10622", "sen_id": 238771}, {"caption": "women in bra and short dancing poll dance", "video_id": "video10622", "sen_id": 238772}, {"caption": "woman with black heels is showing her skills", "video_id": "video10622", "sen_id": 238773}, {"caption": "a girl with black coloured two piece holding the rod and moving around it", "video_id": "video10622", "sen_id": 238774}, {"caption": "a woman wearing a black bikini is swinging upside down from a pole", "video_id": "video10622", "sen_id": 238775}, {"caption": "a very attractive woman in skimpy clothing is dancing around on a pole", "video_id": "video10622", "sen_id": 238776}, {"caption": "a girl dancing very very beautiful she is so hot", "video_id": "video10622", "sen_id": 238777}, {"caption": "daring art of gymnastic beautifully in the rythm of music", "video_id": "video10622", "sen_id": 238778}, {"caption": "a woman is doing some exercises on a pole", "video_id": "video10622", "sen_id": 238779}, {"caption": "a man describes a car that he is test driving on a country road", "video_id": "video12390", "sen_id": 238780}, {"caption": "man is driving car and speaking about this car and how it drives", "video_id": "video12390", "sen_id": 238781}, {"caption": "a man wearing a blue shirt is driving a car and talking into the camera about the noise the vehicle is making", "video_id": "video12390", "sen_id": 238782}, {"caption": "a man drives his car down a lonely street while he speaks seemingly to no one", "video_id": "video12390", "sen_id": 238783}, {"caption": "a man test driving and discussing a vehicle", "video_id": "video12390", "sen_id": 238784}, {"caption": "man is talking while he is driving his car fast", "video_id": "video12390", "sen_id": 238785}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video12390", "sen_id": 238786}, {"caption": "a man is driving his car very fast and speaking simultaneously he is giving a test drive i think", "video_id": "video12390", "sen_id": 238787}, {"caption": "a man is driving down a roas in a old white car and enjoying the scenery", "video_id": "video12390", "sen_id": 238788}, {"caption": "a man is driving the car very fast", "video_id": "video12390", "sen_id": 238789}, {"caption": "there is a man riding a stylish car", "video_id": "video12390", "sen_id": 238790}, {"caption": "a person describe about his car", "video_id": "video12390", "sen_id": 238791}, {"caption": "one man driving car very fast and furiously", "video_id": "video12390", "sen_id": 238792}, {"caption": "a man is driving by telling car features and his experience about driving car", "video_id": "video12390", "sen_id": 238793}, {"caption": "a person is driving car and showing its features", "video_id": "video12390", "sen_id": 238794}, {"caption": "there is some one riding a car on the street", "video_id": "video12390", "sen_id": 238795}, {"caption": "a naturalist is driving in very fast and he tell in the natural beauty", "video_id": "video12390", "sen_id": 238796}, {"caption": "a man driving a new car and explain about a car", "video_id": "video12390", "sen_id": 238797}, {"caption": "a person wearing blue shirt drive a car in speed on a lonely road", "video_id": "video12390", "sen_id": 238798}, {"caption": "a man is driving a car and talking about whatever", "video_id": "video12390", "sen_id": 238799}, {"caption": "some woman speaking a language i don't know putting cocoa powder ans sugar into a bowl", "video_id": "video10286", "sen_id": 238800}, {"caption": "a cook uses her hands to prepare a dish using sugar chocolate salt in a clear mixing bowl", "video_id": "video10286", "sen_id": 238801}, {"caption": "a female chef describes and demonstrates a recipe that she is working on", "video_id": "video10286", "sen_id": 238802}, {"caption": "a woman with a heavy accent mixes some dry ingredients together", "video_id": "video10286", "sen_id": 238803}, {"caption": "a woman is putting some sugar and spices in to a sifter", "video_id": "video10286", "sen_id": 238804}, {"caption": "a person is pouring ingredients into a glass bowl", "video_id": "video10286", "sen_id": 238805}, {"caption": "a lady adds coco powder and some sugar into a bowl in order to make chocolate", "video_id": "video10286", "sen_id": 238806}, {"caption": "a woman adds dry ingredients into a bowl through a sieve", "video_id": "video10286", "sen_id": 238807}, {"caption": "a woman putting cocoa powder and sugar into a seive", "video_id": "video10286", "sen_id": 238808}, {"caption": "a woman is mixing ingredients into a glass bowl and preparing to bake", "video_id": "video10286", "sen_id": 238809}, {"caption": "a woman is adding ingredients one of them sugar to the recipe", "video_id": "video10286", "sen_id": 238810}, {"caption": "a lady poring salt in the filter", "video_id": "video10286", "sen_id": 238811}, {"caption": "a chef gets ready to preapare a cake by sifting the dry ingredients", "video_id": "video10286", "sen_id": 238812}, {"caption": "a lady adding cocoa powder and sugar in a bowl", "video_id": "video10286", "sen_id": 238813}, {"caption": "a woman gives cooking instructions in a foreign language", "video_id": "video10286", "sen_id": 238814}, {"caption": "someone in the kitchen taking sugar and other ingredients in bowls", "video_id": "video10286", "sen_id": 238815}, {"caption": "someone is pouring different ingredients through a sieve into a bowl", "video_id": "video10286", "sen_id": 238816}, {"caption": "women putting coco-powder and sugar to prepare cake", "video_id": "video10286", "sen_id": 238817}, {"caption": "a woman pours dry ingredients through a sifter and into a large bowl", "video_id": "video10286", "sen_id": 238818}, {"caption": "in a kitchen someone is preparing a delicious dish in a bowl", "video_id": "video10286", "sen_id": 238819}, {"caption": "a guy talking about students getting experience quickly", "video_id": "video11796", "sen_id": 238820}, {"caption": "a man is explaining the kind of experience students have in computer technology", "video_id": "video11796", "sen_id": 238821}, {"caption": "a man wearing a white t-shirt and tie talking about computer training", "video_id": "video11796", "sen_id": 238822}, {"caption": "a it person explains something to the camera", "video_id": "video11796", "sen_id": 238823}, {"caption": "a man sitting at a computer desk and talking", "video_id": "video11796", "sen_id": 238824}, {"caption": "a man in a shortsleeved button down shirt and tie is speaking", "video_id": "video11796", "sen_id": 238825}, {"caption": "in an office a guy in a white shirt and tie is doing an interview", "video_id": "video11796", "sen_id": 238826}, {"caption": "a man talks about student and prospective employees using a specific hardware and operating computer system", "video_id": "video11796", "sen_id": 238827}, {"caption": "a teacher in an office is talking about the experience of his students", "video_id": "video11796", "sen_id": 238828}, {"caption": "a man in a white shirt talking to a camera", "video_id": "video11796", "sen_id": 238829}, {"caption": "a man in tie is seated and talking", "video_id": "video11796", "sen_id": 238830}, {"caption": "a man is talking by chair", "video_id": "video11796", "sen_id": 238831}, {"caption": "a man sitting at a desk is explaining a topic to the camera", "video_id": "video11796", "sen_id": 238832}, {"caption": "a man sitting at a desk and talking about hardware", "video_id": "video11796", "sen_id": 238833}, {"caption": "there is a man wearing a tan shirt and pants and a tie on in an office talking to the camera", "video_id": "video11796", "sen_id": 238834}, {"caption": "a man with white dress explainig some issues in his cabin", "video_id": "video11796", "sen_id": 238835}, {"caption": "a man is sitting at his desk in an office talking about different computer related issues", "video_id": "video11796", "sen_id": 238836}, {"caption": "a man in brown tie sitting in a chair in front of a table speaking about something", "video_id": "video11796", "sen_id": 238837}, {"caption": "man is talking about computer programs in his office", "video_id": "video11796", "sen_id": 238838}, {"caption": "a guy with a tie is sitting down at a desk", "video_id": "video11796", "sen_id": 238839}, {"caption": "{}", "video_id": "video11989", "sen_id": 238840}, {"caption": "a women standing in front of waterfalls and rocks", "video_id": "video11989", "sen_id": 238841}, {"caption": "rushing water gushes over mountain in the middle of nature", "video_id": "video11989", "sen_id": 238842}, {"caption": "fast music is playing while you are able to see a very large waterfall and a woman standing on rocks at the bottom of it in the middle of the river", "video_id": "video11989", "sen_id": 238843}, {"caption": "a waterfall cascades over large rocks while a woman stands in the forefront with an umbrella", "video_id": "video11989", "sen_id": 238844}, {"caption": "a girl standing amidst nature is enjoying the beauty of the water falls and rushing water", "video_id": "video11989", "sen_id": 238845}, {"caption": "a lady is standing upon a rock near a turbulent waterfall", "video_id": "video11989", "sen_id": 238846}, {"caption": "a woman is standing by a small but fast moving waterfall", "video_id": "video11989", "sen_id": 238847}, {"caption": "a female tourists watches water rolling over a jungle water fall", "video_id": "video11989", "sen_id": 238848}, {"caption": "a girl with dressed in black and umbrella in her hands is watching the beauty of the waterfalls", "video_id": "video11989", "sen_id": 238849}, {"caption": "there is a water fall with hard rocks around", "video_id": "video11989", "sen_id": 238850}, {"caption": "a flood comes heavier one lady standing there", "video_id": "video11989", "sen_id": 238851}, {"caption": "beautiful and big falls with sound in nature", "video_id": "video11989", "sen_id": 238852}, {"caption": "water cascades over a series of rock formations and water falls on a rainy day", "video_id": "video11989", "sen_id": 238853}, {"caption": "a waterfall is crashing down into a river", "video_id": "video11989", "sen_id": 238854}, {"caption": "there is a water falling from the high mountain", "video_id": "video11989", "sen_id": 238855}, {"caption": "a woman is standing on rocks looking at a large waterfall", "video_id": "video11989", "sen_id": 238856}, {"caption": "beautiful and big river with sound in nature", "video_id": "video11989", "sen_id": 238857}, {"caption": "a forceful and wonderful water falls is shown", "video_id": "video11989", "sen_id": 238858}, {"caption": "some dirty water is rolling down a mountain", "video_id": "video11989", "sen_id": 238859}, {"caption": "justin beiber is photographed with ladies and then interviewed", "video_id": "video10399", "sen_id": 238860}, {"caption": "justin bieber gives an interview about his experience with the victoria secret show", "video_id": "video10399", "sen_id": 238861}, {"caption": "a popular male singer giving an interview while his fans look on", "video_id": "video10399", "sen_id": 238862}, {"caption": "justin bieber is being interviewed at a victoria secret show", "video_id": "video10399", "sen_id": 238863}, {"caption": "a young man talks about the way his singing career has developed", "video_id": "video10399", "sen_id": 238864}, {"caption": "justin bieber is talking on access hollywood interview about being in victoria's secret show", "video_id": "video10399", "sen_id": 238865}, {"caption": "women in pick dress is posing for photograph", "video_id": "video10399", "sen_id": 238866}, {"caption": "a boy is talking to a reporter in a crowded area", "video_id": "video10399", "sen_id": 238867}, {"caption": "access hollywood one boy talking about it in party", "video_id": "video10399", "sen_id": 238868}, {"caption": "a young male singer is interviewed while he is standing in between two women", "video_id": "video10399", "sen_id": 238869}, {"caption": "a big party celebration of movie celebrities giving pose for photoscommiting bites and overall enjoying the party", "video_id": "video10399", "sen_id": 238870}, {"caption": "there is a black tshirt man talking from a night party", "video_id": "video10399", "sen_id": 238871}, {"caption": "film actor along with two girls on either side poses to the photographs", "video_id": "video10399", "sen_id": 238872}, {"caption": "a guy wearing a black shirt talking about something", "video_id": "video10399", "sen_id": 238873}, {"caption": "justin bieber is doing an interview for access hollywood and the red carpet", "video_id": "video10399", "sen_id": 238874}, {"caption": "justin bieber is talking to someone with a video camera", "video_id": "video10399", "sen_id": 238875}, {"caption": "there is a young boy talking from astudio", "video_id": "video10399", "sen_id": 238876}, {"caption": "a young man looks at one of two models he is standing between who are wearing the same pink satin robes while lights flash", "video_id": "video10399", "sen_id": 238877}, {"caption": "a peoples are enjoying in the function and a boy is talking", "video_id": "video10399", "sen_id": 238878}, {"caption": "two models pose for pictures with justin beaver", "video_id": "video10399", "sen_id": 238879}, {"caption": "a woman is preparing food in her kitchen", "video_id": "video10464", "sen_id": 238880}, {"caption": "a woman wearing a pink aeropostale shirt adds ingredients into a frying pan", "video_id": "video10464", "sen_id": 238881}, {"caption": "cooking video with an indian woman cooking vegetables", "video_id": "video10464", "sen_id": 238882}, {"caption": "a woman frying vegetables on a stove top", "video_id": "video10464", "sen_id": 238883}, {"caption": "a chef works on a recipe in the kitchen at her home", "video_id": "video10464", "sen_id": 238884}, {"caption": "there is a woman in pink dressing making a dish", "video_id": "video10464", "sen_id": 238885}, {"caption": "an asian woman is cooking native cuisine in her pink top", "video_id": "video10464", "sen_id": 238886}, {"caption": "women mixing tomato sauce in pan and stirring it", "video_id": "video10464", "sen_id": 238887}, {"caption": "woman in pink shirt is mixing the vegetables in kitchen", "video_id": "video10464", "sen_id": 238888}, {"caption": "a woman in a pink shirt making a vegetable stir fry in a brightly lit spacious kitchen", "video_id": "video10464", "sen_id": 238889}, {"caption": "a woman in a pink shirt mixes some stir fry in a skillet", "video_id": "video10464", "sen_id": 238890}, {"caption": "preparation of vegetarian salad in kitchen by a young lady", "video_id": "video10464", "sen_id": 238891}, {"caption": "a woman in a pink shirt frying ingredients on the stove", "video_id": "video10464", "sen_id": 238892}, {"caption": "a home cook mixes tomato paste into a skillet of grilling vegetables", "video_id": "video10464", "sen_id": 238893}, {"caption": "in a kitchen a lady is frying the chillies in the oil and take a food item to be cooked", "video_id": "video10464", "sen_id": 238894}, {"caption": "a lady added salt into the container and mixed", "video_id": "video10464", "sen_id": 238895}, {"caption": "women in pink dress adding sauce to noodles which is kept on the stove", "video_id": "video10464", "sen_id": 238896}, {"caption": "a lady is pouring some food material in a bowl and prepairing its", "video_id": "video10464", "sen_id": 238897}, {"caption": "a girl in pink color dress bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10464", "sen_id": 238898}, {"caption": "a woman is making some food in a pot", "video_id": "video10464", "sen_id": 238899}, {"caption": "slow motion and special effects movie scene of a man dodging knives", "video_id": "video10808", "sen_id": 238900}, {"caption": "a fighting clip from an indian movie from bollywood", "video_id": "video10808", "sen_id": 238901}, {"caption": "a man performs acrobatic stunts near a group of cars", "video_id": "video10808", "sen_id": 238902}, {"caption": "a man shoots a gun to upright himself and dodges flying knives in a scene from an indian film", "video_id": "video10808", "sen_id": 238903}, {"caption": "man shooting gun and throwing knives in slow motion", "video_id": "video10808", "sen_id": 238904}, {"caption": "a man wearing red is jumping in the ar", "video_id": "video10808", "sen_id": 238905}, {"caption": "a man in a red button down shirt fights a man on the street", "video_id": "video10808", "sen_id": 238906}, {"caption": "an indian man has a supernatural ability to slow down time", "video_id": "video10808", "sen_id": 238907}, {"caption": "a stunt man performs a series of feats in the middle of a group of cars", "video_id": "video10808", "sen_id": 238908}, {"caption": "slow and stop motion action in a video clip of two men throwing and evading thrown knives", "video_id": "video10808", "sen_id": 238909}, {"caption": "a man in red shirt fighting on the scene", "video_id": "video10808", "sen_id": 238910}, {"caption": "a man in a red shirt jumps and dodges three knives that were thrown at him from different directions", "video_id": "video10808", "sen_id": 238911}, {"caption": "a slow motion clip of a guy shooting a gun and then dodging knives being thrown through the air", "video_id": "video10808", "sen_id": 238912}, {"caption": "a special effects action scene from an action movie", "video_id": "video10808", "sen_id": 238913}, {"caption": "men use self defense tricks to fight each other", "video_id": "video10808", "sen_id": 238914}, {"caption": "there is a man jumping on the ground", "video_id": "video10808", "sen_id": 238915}, {"caption": "a man makes a huge a manuever and dodge away from three knives", "video_id": "video10808", "sen_id": 238916}, {"caption": "a hero fighting with the villains and guns in his hand", "video_id": "video10808", "sen_id": 238917}, {"caption": "men do awesome tricks with guns and flying knives", "video_id": "video10808", "sen_id": 238918}, {"caption": "a person is filming some buildings outside", "video_id": "video10808", "sen_id": 238919}, {"caption": "a comedian tells a joke about college students", "video_id": "video10656", "sen_id": 238920}, {"caption": "a man (philip zombardo) is speaking to a large audience of people on a red carpet", "video_id": "video10656", "sen_id": 238921}, {"caption": "a man standing on a red carpeted stage addresses a crowd of people", "video_id": "video10656", "sen_id": 238922}, {"caption": "there is a suit man talking on the stage", "video_id": "video10656", "sen_id": 238923}, {"caption": "a man wearing black speaks from a red stage where people are seated and standing behind him by a screen of slanted yellow panels", "video_id": "video10656", "sen_id": 238924}, {"caption": "a man talks to an audience about shyness in males in college", "video_id": "video10656", "sen_id": 238925}, {"caption": "a old man in black dress wearing cloth standing on stage and speaking and audience watching laughing displaying on screen", "video_id": "video10656", "sen_id": 238926}, {"caption": "a person explaining a concept in a show infront of all people", "video_id": "video10656", "sen_id": 238927}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10656", "sen_id": 238928}, {"caption": "a man is speaking in the stage and a people are watching it", "video_id": "video10656", "sen_id": 238929}, {"caption": "a male is speaking on the stage and was telling that research done among college students of the male persons studies is increasing", "video_id": "video10656", "sen_id": 238930}, {"caption": "the spotlight illuminates a man on a red carpet as he speaks to his audience", "video_id": "video10656", "sen_id": 238931}, {"caption": "a person is explaining with other people aon a stage", "video_id": "video10656", "sen_id": 238932}, {"caption": "a man giving a speech to the large crowd of people in the building", "video_id": "video10656", "sen_id": 238933}, {"caption": "a man on stage discusses shyness in college students", "video_id": "video10656", "sen_id": 238934}, {"caption": "a man is talking to a crowd of people", "video_id": "video10656", "sen_id": 238935}, {"caption": "there is a black suit man talking funny on the stage", "video_id": "video10656", "sen_id": 238936}, {"caption": "a man is speaking to an huge audience", "video_id": "video10656", "sen_id": 238937}, {"caption": "a person standing in-front of a huge crowd and giving speech", "video_id": "video10656", "sen_id": 238938}, {"caption": "a man on stage speaking about shyness in college students", "video_id": "video10656", "sen_id": 238939}, {"caption": "a woman on stairs complains of her miserable day", "video_id": "video10070", "sen_id": 238940}, {"caption": "a woman who is vlogging with her family", "video_id": "video10070", "sen_id": 238941}, {"caption": "a woman with two braids sitting on a carpeted stairwell talks with a man in a white shirt", "video_id": "video10070", "sen_id": 238942}, {"caption": "this is a clip from a youtube video of a couple", "video_id": "video10070", "sen_id": 238943}, {"caption": "a woman with two dark braids talks about what a mess she is while sitting on carpeted stairs", "video_id": "video10070", "sen_id": 238944}, {"caption": "a woman with two dark braids talks about what a mess she is while sitting on carpeted stairs", "video_id": "video10070", "sen_id": 238945}, {"caption": "a young dark-haired woman sits on a carpeted staircase in a house while she lifts one of her two braids as a young man opens an inside door with a mini-blind covering the window", "video_id": "video10070", "sen_id": 238946}, {"caption": "a girl is talking about herself and one other having a bad day", "video_id": "video10070", "sen_id": 238947}, {"caption": "a women is having a messy day with her partner she is complaining about having to go to the store twice and poor quality of her video", "video_id": "video10070", "sen_id": 238948}, {"caption": "a lady is walking with a baby and she is sitting in the staircase in a house speaking something meanwhilea guy is entering into a room nearby staicase", "video_id": "video10070", "sen_id": 238949}, {"caption": "a woman with brown hair is sitting on some stairs", "video_id": "video10070", "sen_id": 238950}, {"caption": "a woman with braids talks about her mess of a day", "video_id": "video10070", "sen_id": 238951}, {"caption": "a woman sitting in a staircase lifting her hair on her left hand", "video_id": "video10070", "sen_id": 238952}, {"caption": "a woman sits on staircase in home and discusses daily activities with husband in kitchen", "video_id": "video10070", "sen_id": 238953}, {"caption": "a woman with braided hair sitting on a set of steps talks about her stressful day", "video_id": "video10070", "sen_id": 238954}, {"caption": "a woman with pig tails is sitting on stairs", "video_id": "video10070", "sen_id": 238955}, {"caption": "a woman in a white tank top is filming a vlog about her day", "video_id": "video10070", "sen_id": 238956}, {"caption": "a double plaited woman is sitting on the stairs and speaking", "video_id": "video10070", "sen_id": 238957}, {"caption": "a young woman shows braided hair and discusses days problems while sitting on staircase inside", "video_id": "video10070", "sen_id": 238958}, {"caption": "a young girl sits on the carpeted stairs and talks about her day", "video_id": "video10070", "sen_id": 238959}, {"caption": "an ad for game of thrones showing various scenes including one with ned from that program", "video_id": "video10670", "sen_id": 238960}, {"caption": "some people in various scenes of a show", "video_id": "video10670", "sen_id": 238961}, {"caption": "a trailer from the hit show game of thrones", "video_id": "video10670", "sen_id": 238962}, {"caption": "an epside of game of thrones is being previewed", "video_id": "video10670", "sen_id": 238963}, {"caption": "a couple of men talking to a lady", "video_id": "video10670", "sen_id": 238964}, {"caption": "in a television screen a group of men practising with sword and trailer of game of thrones", "video_id": "video10670", "sen_id": 238965}, {"caption": "the best trailer for the promotion of the upcoming movie game of thrones", "video_id": "video10670", "sen_id": 238966}, {"caption": "different players are playing games and viewers are sitting in gallery", "video_id": "video10670", "sen_id": 238967}, {"caption": "a collage of footage from game of thrones with popular quotes imposed over them", "video_id": "video10670", "sen_id": 238968}, {"caption": "a television is showing scense from the show game of thrones", "video_id": "video10670", "sen_id": 238969}, {"caption": "there are many soldiers fighting in the battle", "video_id": "video10670", "sen_id": 238970}, {"caption": "game of thrones movie trailer showing few good scenes", "video_id": "video10670", "sen_id": 238971}, {"caption": "a group of people move around a castle in costumes from an ancient period", "video_id": "video10670", "sen_id": 238972}, {"caption": "scenes from a tv show game of thrones is being shown", "video_id": "video10670", "sen_id": 238973}, {"caption": "bunch of tv series characters being shown on screen", "video_id": "video10670", "sen_id": 238974}, {"caption": "there is a woman talking to her man", "video_id": "video10670", "sen_id": 238975}, {"caption": "a small screen showing a preview of the show game of thrones", "video_id": "video10670", "sen_id": 238976}, {"caption": "soldiers surrounding a guy and talking our swords", "video_id": "video10670", "sen_id": 238977}, {"caption": "trailer about the game of thrones with action scenes and a lady talking", "video_id": "video10670", "sen_id": 238978}, {"caption": "a trailer for game of thrones is being shown", "video_id": "video10670", "sen_id": 238979}, {"caption": "a woman is promoting her cooking youtube channel", "video_id": "video12866", "sen_id": 238980}, {"caption": "a woman wearing a black-and-white gingham shirt speaks quickly from her kitchen website which shows her social-media contact information and photographs of past and future prepared meals", "video_id": "video12866", "sen_id": 238981}, {"caption": "a woman explains how to find links to other recipes on her blog", "video_id": "video12866", "sen_id": 238982}, {"caption": "a girl advertising about her cooking channels and providing all her social media address to join the channel", "video_id": "video12866", "sen_id": 238983}, {"caption": "women tells about all the ingredients needed to prepare food", "video_id": "video12866", "sen_id": 238984}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video12866", "sen_id": 238985}, {"caption": "one women speaking about recipe last video next video", "video_id": "video12866", "sen_id": 238986}, {"caption": "a latina woman explains where to get more information about her cooking as she thanks her viewers", "video_id": "video12866", "sen_id": 238987}, {"caption": "a girl telling about her recipe and giving her social media contacts for the user", "video_id": "video12866", "sen_id": 238988}, {"caption": "a woman showing how to make vegatablr fry", "video_id": "video12866", "sen_id": 238989}, {"caption": "a women is talking about recepies and telling to give feedback on facebook", "video_id": "video12866", "sen_id": 238990}, {"caption": "a lady in black and white checked dress is waving her hands and speaking", "video_id": "video12866", "sen_id": 238991}, {"caption": "the lady talking about a dish it is a short video small portion is the theam", "video_id": "video12866", "sen_id": 238992}, {"caption": "a lady in checks shirt is saying about food preparation", "video_id": "video12866", "sen_id": 238993}, {"caption": "a woman is shown in one window of the screen talking about where to find her social media accounts while two other windows on the screen show food", "video_id": "video12866", "sen_id": 238994}, {"caption": "a woman stands in th kitchen and invites people to follow her on social media", "video_id": "video12866", "sen_id": 238995}, {"caption": "a women is telling how to follow her and her recipes on youtube", "video_id": "video12866", "sen_id": 238996}, {"caption": "women is happily explaining about her recopies", "video_id": "video12866", "sen_id": 238997}, {"caption": "from a table where a loof sliced vegitables with other recipe are ready", "video_id": "video12866", "sen_id": 238998}, {"caption": "a women is talking with us to look her facebook page for recepie", "video_id": "video12866", "sen_id": 238999}, {"caption": "black and white cartoon of a woman near the ocean", "video_id": "video11016", "sen_id": 239000}, {"caption": "an old fashioned black and white movie with a princess in a white dress dumping something on the ground", "video_id": "video11016", "sen_id": 239001}, {"caption": "black and white movie credits give way to an old cartoon", "video_id": "video11016", "sen_id": 239002}, {"caption": "a short video featuring a black and white show is featured", "video_id": "video11016", "sen_id": 239003}, {"caption": "black and white movie credits give way to an old cartoon", "video_id": "video11016", "sen_id": 239004}, {"caption": "a woman at the beach dumps sand onto the ground", "video_id": "video11016", "sen_id": 239005}, {"caption": "a black and white french video with a princess by the beach", "video_id": "video11016", "sen_id": 239006}, {"caption": "a character is standing next to a large body of water", "video_id": "video11016", "sen_id": 239007}, {"caption": "some kind of character is standing next to the water", "video_id": "video11016", "sen_id": 239008}, {"caption": "a girl is dropping something from the hand to floor", "video_id": "video11016", "sen_id": 239009}, {"caption": "its a old movie the lady is wearing the long dress with the hair", "video_id": "video11016", "sen_id": 239010}, {"caption": "a black and white cartoon shows a woman on the beach", "video_id": "video11016", "sen_id": 239011}, {"caption": "there is a women standing in front of a cave", "video_id": "video11016", "sen_id": 239012}, {"caption": "autour dune cabine in a nice cartoon movie", "video_id": "video11016", "sen_id": 239013}, {"caption": "a certificate paper is shown and a lady is dropping some mud before the gate", "video_id": "video11016", "sen_id": 239014}, {"caption": "old time video showing a woman spreading grain on the ground", "video_id": "video11016", "sen_id": 239015}, {"caption": "a black and white scene from a movie is shown", "video_id": "video11016", "sen_id": 239016}, {"caption": "a cartoon television show cartoon characters doing something funny", "video_id": "video11016", "sen_id": 239017}, {"caption": "a vintage cartoon of a woman on the beach set to piano music", "video_id": "video11016", "sen_id": 239018}, {"caption": "a person is talking about old version of cartoon series", "video_id": "video11016", "sen_id": 239019}, {"caption": "short scenes of football players scoring goals and doing celebratory dances", "video_id": "video12572", "sen_id": 239020}, {"caption": "two different football players (numbers 29 and 32) dance on the field", "video_id": "video12572", "sen_id": 239021}, {"caption": "a football player in a red jersey dancing", "video_id": "video12572", "sen_id": 239022}, {"caption": "a football player in an orange jersey dancing", "video_id": "video12572", "sen_id": 239023}, {"caption": "a compilation of different football celebrations after making plays", "video_id": "video12572", "sen_id": 239024}, {"caption": "a compilation of football players celebrating on field", "video_id": "video12572", "sen_id": 239025}, {"caption": "this video is a vine of a football player celebrating a touchdown", "video_id": "video12572", "sen_id": 239026}, {"caption": "a vine compilation containing dancing football players", "video_id": "video12572", "sen_id": 239027}, {"caption": "music is being played and men in red are dancing", "video_id": "video12572", "sen_id": 239028}, {"caption": "different football players dancing during their games and music being played to it", "video_id": "video12572", "sen_id": 239029}, {"caption": "a video of football vines with a bunch of football players in red uniforms running and jumping around", "video_id": "video12572", "sen_id": 239030}, {"caption": "players those who wins are celebrating and failure team disappointing", "video_id": "video12572", "sen_id": 239031}, {"caption": "the best celebration game show vedio clip in this picture", "video_id": "video12572", "sen_id": 239032}, {"caption": "group of players in red shirts are celebrating the point", "video_id": "video12572", "sen_id": 239033}, {"caption": "football player celebration highlights with music playing in the background", "video_id": "video12572", "sen_id": 239034}, {"caption": "a vine video of football players with music in the background", "video_id": "video12572", "sen_id": 239035}, {"caption": "there is a man playing a game with helmet", "video_id": "video12572", "sen_id": 239036}, {"caption": "a football team is celebrating while music plans", "video_id": "video12572", "sen_id": 239037}, {"caption": "this video is about the football best video", "video_id": "video12572", "sen_id": 239038}, {"caption": "replays of great sport moments from football games a football player celebrating", "video_id": "video12572", "sen_id": 239039}, {"caption": "persons reaction to a new type of notepad", "video_id": "video12796", "sen_id": 239040}, {"caption": "random people are looking at a tablet wondering about it", "video_id": "video12796", "sen_id": 239041}, {"caption": "several people find themselves bemused while playing with an unfamiliar piece of technology", "video_id": "video12796", "sen_id": 239042}, {"caption": "men and women playing with a black tablet", "video_id": "video12796", "sen_id": 239043}, {"caption": "a group of people are amazed by the features of a new computer tablet", "video_id": "video12796", "sen_id": 239044}, {"caption": "all people were excited about a tab in their hand", "video_id": "video12796", "sen_id": 239045}, {"caption": "a mobile is displayed with various features", "video_id": "video12796", "sen_id": 239046}, {"caption": "the women look at the tablet and laugh", "video_id": "video12796", "sen_id": 239047}, {"caption": "two womens watching tablet and smiles in", "video_id": "video12796", "sen_id": 239048}, {"caption": "a person laughs a a ipad a couple looks and speaks to an ipad another person waves at the ipad", "video_id": "video12796", "sen_id": 239049}, {"caption": "a woman wearing a black dress talking to some close ones through a tab", "video_id": "video12796", "sen_id": 239050}, {"caption": "a lady cheered with a tablet having on the hand", "video_id": "video12796", "sen_id": 239051}, {"caption": " wearing a black-and-white looped scarf looks down at a tablet and waves her hand over it while sitting in an exposed-brick room", "video_id": "video12796", "sen_id": 239052}, {"caption": "group of people are playing music with song and explaining some thing", "video_id": "video12796", "sen_id": 239053}, {"caption": "bunch of people looking at tab are smiling and talking", "video_id": "video12796", "sen_id": 239054}, {"caption": "there is someone using a tab with new futures", "video_id": "video12796", "sen_id": 239055}, {"caption": "a woman reads something and reacts to it then other people do the same", "video_id": "video12796", "sen_id": 239056}, {"caption": "people are holding and trying out a new tablet computer", "video_id": "video12796", "sen_id": 239057}, {"caption": "reactions are filmed when people see the new tablet that is being presented", "video_id": "video12796", "sen_id": 239058}, {"caption": "a woman is smiling and looking at a tablet", "video_id": "video12796", "sen_id": 239059}, {"caption": "an illustration of a man is space is shown before a man talks next to a black board", "video_id": "video11615", "sen_id": 239060}, {"caption": "an egyptian holds a staff and angled symbol in front of a pyramid a king raises his sword by his castle and army an astronaut holds a pole supporting an american flag on the moon and a history teacher jumps out of an astronaut suit to fly in the night sky", "video_id": "video11615", "sen_id": 239061}, {"caption": "a man in blue is trying to give an entertaining crash course on history", "video_id": "video11615", "sen_id": 239062}, {"caption": "a cartoon ointroduction of a king horses and castle starts a program about world history", "video_id": "video11615", "sen_id": 239063}, {"caption": "a montage of different historical events plays and is followed by a man introducing a historical topic", "video_id": "video11615", "sen_id": 239064}, {"caption": "a man explaining some topic in front of the camera", "video_id": "video11615", "sen_id": 239065}, {"caption": "a man sitting in front of a computer screen", "video_id": "video11615", "sen_id": 239066}, {"caption": "a intro starts than a man in front of a chalkboard begins talking", "video_id": "video11615", "sen_id": 239067}, {"caption": "a man wearing blue dress and spectacle is explaining soemthing", "video_id": "video11615", "sen_id": 239068}, {"caption": "there is a men demostrating how to play video game", "video_id": "video11615", "sen_id": 239069}, {"caption": "a cartoon man floats around space prior to a man explaining what it s about", "video_id": "video11615", "sen_id": 239070}, {"caption": "the host discusses a french colony in the 17th century", "video_id": "video11615", "sen_id": 239071}, {"caption": "there is a men in blue tshirt talking", "video_id": "video11615", "sen_id": 239072}, {"caption": "some important matter is revealing in the comic as on 17th centuery", "video_id": "video11615", "sen_id": 239073}, {"caption": "a man is talking about a 17th century", "video_id": "video11615", "sen_id": 239074}, {"caption": "demonstraion about an animated video about a crash course", "video_id": "video11615", "sen_id": 239075}, {"caption": "there is blue tshirt man talking from a studio", "video_id": "video11615", "sen_id": 239076}, {"caption": "a man in blue and wearing glasses gives a crash course in world history", "video_id": "video11615", "sen_id": 239077}, {"caption": "a person with blue t-shirt is explaining about crash course", "video_id": "video11615", "sen_id": 239078}, {"caption": "a man lectures about his thoughts on a french colony", "video_id": "video11615", "sen_id": 239079}, {"caption": "dishes spiced with red chilly powder garlic cloves hearty red onions slices ginger slices or shreds and 7 to 8 pieces of sliced dried coconut", "video_id": "video11349", "sen_id": 239080}, {"caption": "a chef discusses the ingredients she is using in a recipe", "video_id": "video11349", "sen_id": 239081}, {"caption": "mixing a recipe together for some good eating", "video_id": "video11349", "sen_id": 239082}, {"caption": "an upclose view of garlic sitting on a tagble", "video_id": "video11349", "sen_id": 239083}, {"caption": "a woman talking about ingredient for a dish", "video_id": "video11349", "sen_id": 239084}, {"caption": "a woman discusses the different ingredients she is going to use to make a meal", "video_id": "video11349", "sen_id": 239085}, {"caption": "there is a woman making a dish with onion and garlic", "video_id": "video11349", "sen_id": 239086}, {"caption": "the ingreedients are onions dry coconuts and chilly powder", "video_id": "video11349", "sen_id": 239087}, {"caption": " garlic are kept on the table and the things required is explained", "video_id": "video11349", "sen_id": 239088}, {"caption": "ingredients for a recipe are shown with their required measurements", "video_id": "video11349", "sen_id": 239089}, {"caption": "someone showing ingredients like garlic and coconut with examples", "video_id": "video11349", "sen_id": 239090}, {"caption": "various ingredients are being displayed including coconut and chili powder", "video_id": "video11349", "sen_id": 239091}, {"caption": "a lady explaining about the products which is used to prepare dish", "video_id": "video11349", "sen_id": 239092}, {"caption": "someone is telling about cooking items one by one in hindi", "video_id": "video11349", "sen_id": 239093}, {"caption": "a recipe starting with a large piece of ginger dry coconut and chili powder", "video_id": "video11349", "sen_id": 239094}, {"caption": "an assortment of foods and measurements are shown", "video_id": "video11349", "sen_id": 239095}, {"caption": "a slideshow of ingredients that are required to recreate a recipe", "video_id": "video11349", "sen_id": 239096}, {"caption": "an indian chef uses onions garlic and ginger for a recipe", "video_id": "video11349", "sen_id": 239097}, {"caption": "delicious looking food ingredients are displayed in order", "video_id": "video11349", "sen_id": 239098}, {"caption": "a woman talking about a big piece of ginger a whole bunch of garlic piece of dry coconut and red chili powder in a foreign language", "video_id": "video11349", "sen_id": 239099}, {"caption": "dolphins swim through a reserved coastal area of ocean", "video_id": "video10759", "sen_id": 239100}, {"caption": "marine life in a coastal reserve is studied", "video_id": "video10759", "sen_id": 239101}, {"caption": "fish swim quickly through the ocean and the earth is zoomed in on leading to a ship moving through the water", "video_id": "video10759", "sen_id": 239102}, {"caption": "a group of dolphins swim quickly near the front of a fast moving boat", "video_id": "video10759", "sen_id": 239103}, {"caption": "a view of the world's watermarine life for new discoveries", "video_id": "video10759", "sen_id": 239104}, {"caption": "ocean plunges down 1000 feet from the shore full of marine life lots of new discoveries", "video_id": "video10759", "sen_id": 239105}, {"caption": "two dolphins swimming in the ocean near a yacht", "video_id": "video10759", "sen_id": 239106}, {"caption": "an orca whale swims and jumps quickly through the ocean", "video_id": "video10759", "sen_id": 239107}, {"caption": "gray dolphins jump out of the water curve in the air and dive back in swim below the surface and crisscross each other while swimming", "video_id": "video10759", "sen_id": 239108}, {"caption": "dolphins swimming in the ocean while a mans voice narrates their journey", "video_id": "video10759", "sen_id": 239109}, {"caption": "a beautiful ship sailing in the water in the night time", "video_id": "video10759", "sen_id": 239110}, {"caption": "a pod of dolphins swimming together in the ocean", "video_id": "video10759", "sen_id": 239111}, {"caption": "beautiful and big sea with sound in nature dolphins", "video_id": "video10759", "sen_id": 239112}, {"caption": "a fish swimming inside water and a ship moving in water displaying on screen", "video_id": "video10759", "sen_id": 239113}, {"caption": "dolphins playfully swim through the waters of the ocean", "video_id": "video10759", "sen_id": 239114}, {"caption": "a shark fish is moving fastly n a sea", "video_id": "video10759", "sen_id": 239115}, {"caption": "a boat is floated on the ship", "video_id": "video10759", "sen_id": 239116}, {"caption": "a tv channel is programming about a sea", "video_id": "video10759", "sen_id": 239117}, {"caption": "a man describes and discusses marine life as it is featured during the video", "video_id": "video10759", "sen_id": 239118}, {"caption": "whale and shark fishes are jumping in water as person view them from ship", "video_id": "video10759", "sen_id": 239119}, {"caption": "a person with a black top and jeans stared in several shoes and movies got fat there was also mention of drake and josh", "video_id": "video10777", "sen_id": 239120}, {"caption": "a large woman in a gold dress stares off into the distance", "video_id": "video10777", "sen_id": 239121}, {"caption": "we are told of an actress her movie posters are shown and we see her briefly", "video_id": "video10777", "sen_id": 239122}, {"caption": "writing on the screen discusses films of an actress and shows the movie posters", "video_id": "video10777", "sen_id": 239123}, {"caption": "there is some text about an actress and then a couple pics of movies she has stared in and some more text about her weight gain and a pic of it followed up with another slide of words about her", "video_id": "video10777", "sen_id": 239124}, {"caption": "multiple different posters for amanda bynes are shown", "video_id": "video10777", "sen_id": 239125}, {"caption": "video shows amanda bynes' accomplishments and career while explaining about several stages of her life", "video_id": "video10777", "sen_id": 239126}, {"caption": "a series of pictures showing an actress in several movies that she played in", "video_id": "video10777", "sen_id": 239127}, {"caption": "a text ad for the drake and josh show", "video_id": "video10777", "sen_id": 239128}, {"caption": "an advertisement about hair packeasy a and big fat liar with movie posters", "video_id": "video10777", "sen_id": 239129}, {"caption": "the female celebrity had gotten fat at one point", "video_id": "video10777", "sen_id": 239130}, {"caption": "amanda a pop singer stared in hairspray easy a big fat liar and drake bell josh peck", "video_id": "video10777", "sen_id": 239131}, {"caption": "slideshow of amanda byne s filmography including a photoshopped image of her being fat", "video_id": "video10777", "sen_id": 239132}, {"caption": "a fat woman is staring at a camera person", "video_id": "video10777", "sen_id": 239133}, {"caption": "there is a woman with black dressing standing on the floor", "video_id": "video10777", "sen_id": 239134}, {"caption": "men and women are on a imagewords are displayed", "video_id": "video10777", "sen_id": 239135}, {"caption": "some scenes from a movie are shown", "video_id": "video10777", "sen_id": 239136}, {"caption": "there is something impressing matters going on", "video_id": "video10777", "sen_id": 239137}, {"caption": "a slide show advertisement for an actress and her movies", "video_id": "video10777", "sen_id": 239138}, {"caption": "music plays over a montage of movies of an actress", "video_id": "video10777", "sen_id": 239139}, {"caption": "two men on the track are exercising using hurdle boards", "video_id": "video10285", "sen_id": 239140}, {"caption": "no sound is being played while a pair of men show how they put their right leg on a hurdle", "video_id": "video10285", "sen_id": 239141}, {"caption": "a bald man in a red shirt is stretching his leg next to another man in a black shirt", "video_id": "video10285", "sen_id": 239142}, {"caption": "a man in a gray tee shirt and a man in a black tank place their bent legs over separate hurdles and slide their feet across the top as they stand on an outdoor running track marked with lanes", "video_id": "video10285", "sen_id": 239143}, {"caption": "two men are doing hurdle training exercises on a track", "video_id": "video10285", "sen_id": 239144}, {"caption": "two young men show different exercises one can do on a track hurdle", "video_id": "video10285", "sen_id": 239145}, {"caption": "in a sports stadium two guys are practising on the jumps", "video_id": "video10285", "sen_id": 239146}, {"caption": "two men are practicing how to get over the hurdles", "video_id": "video10285", "sen_id": 239147}, {"caption": "two men standing on an outdoor track demonstrate the proper way to lift a foot over a hurdle board", "video_id": "video10285", "sen_id": 239148}, {"caption": "two people are exercising for running hurdle race in a stadium", "video_id": "video10285", "sen_id": 239149}, {"caption": "a video explaining how to use hurdles for excercise", "video_id": "video10285", "sen_id": 239150}, {"caption": "two men practice their technique for getting over hurdles", "video_id": "video10285", "sen_id": 239151}, {"caption": "two men are using hurdles on a track to stretch out their legs", "video_id": "video10285", "sen_id": 239152}, {"caption": "two person doing practice on a hurdle with one wearing black t-shirt and blue trouser other wearing grey t-shirt and red trouser on a track", "video_id": "video10285", "sen_id": 239153}, {"caption": "two men on a track field instruct how to hurdle properly", "video_id": "video10285", "sen_id": 239154}, {"caption": "a person is stepping over a bunch of hurdles", "video_id": "video10285", "sen_id": 239155}, {"caption": "two people are exercising on the track waiting to run", "video_id": "video10285", "sen_id": 239156}, {"caption": "two men demonstrating how to perform a hurdle", "video_id": "video10285", "sen_id": 239157}, {"caption": "two men are exercising using track hurdles on a track field", "video_id": "video10285", "sen_id": 239158}, {"caption": "two men pratice on hurdles on a track", "video_id": "video10285", "sen_id": 239159}, {"caption": "two men and a police officer discuss their preparations to teach manual transmission (stick) driving skills", "video_id": "video11879", "sen_id": 239160}, {"caption": "a man in a red shirt introduces a professional driver and then explains to a police officer that they are teaching people to drive a stick shift", "video_id": "video11879", "sen_id": 239161}, {"caption": "a man in a red shirt and glasses is talking about a car", "video_id": "video11879", "sen_id": 239162}, {"caption": "there is a man in red with his arms crossed speaking when a man in a red car drives up and gets out and then a police officer in a car approaches both of them", "video_id": "video11879", "sen_id": 239163}, {"caption": "a man pulls next to another man in a red car and they get interrupted by the police", "video_id": "video11879", "sen_id": 239164}, {"caption": "a man in pink t-shirt and spectacles is saying something", "video_id": "video11879", "sen_id": 239165}, {"caption": "there is a red car breaking nearby a man", "video_id": "video11879", "sen_id": 239166}, {"caption": "a man introduces another man who is driving a red car they are trying to teach a user how to drive stick", "video_id": "video11879", "sen_id": 239167}, {"caption": "man in a empty street talking and a car driving fast next to him", "video_id": "video11879", "sen_id": 239168}, {"caption": "a man in red dress wearing color cloth standing speaking with other guy a car beside parking displaying on screen", "video_id": "video11879", "sen_id": 239169}, {"caption": "a man standing in road side and explaining something here", "video_id": "video11879", "sen_id": 239170}, {"caption": "parker kligerman skids into scene as mike ballaban announces that he will be teaching a driving technique", "video_id": "video11879", "sen_id": 239171}, {"caption": "guy stands in place while he is talking person comes so fast in red car behind him", "video_id": "video11879", "sen_id": 239172}, {"caption": "a man with a beard glasses and a red shirt is talking about been a professional driver a red car quickly approaches from behind him and parks", "video_id": "video11879", "sen_id": 239173}, {"caption": "as a race car driver zooms up behind him a man in a pink shirt informs the audience that a race car driver will be teaching how to drive a car with a stick", "video_id": "video11879", "sen_id": 239174}, {"caption": "a man standing on the ground and watching a new white car", "video_id": "video11879", "sen_id": 239175}, {"caption": "a man talking about learning how to drive a stick shift", "video_id": "video11879", "sen_id": 239176}, {"caption": "a man standing on a race way eplaining his plan to teach people how to drive a stick shift car", "video_id": "video11879", "sen_id": 239177}, {"caption": "a man in red is talking about driving then a red car pulls up a man gets out of the car and speaks about teaching the audience how to drive stick", "video_id": "video11879", "sen_id": 239178}, {"caption": "a man standing on a track and a man driving a car fast in an intro to teaching people how to drive a stick shift car", "video_id": "video11879", "sen_id": 239179}, {"caption": "a man at night skiing down a hill of steps", "video_id": "video10424", "sen_id": 239180}, {"caption": "a man is flying through the air while riding his snowboard and repeatedly crashes into the snow on the ground", "video_id": "video10424", "sen_id": 239181}, {"caption": "a young man on a pair of skis in the dark", "video_id": "video10424", "sen_id": 239182}, {"caption": "after many failed attempts sking down a stair rail a man finally performs the trick perfectly in front of his friends", "video_id": "video10424", "sen_id": 239183}, {"caption": "a skier keeps trying to do a grinding trick but falls off until he lands it", "video_id": "video10424", "sen_id": 239184}, {"caption": "there is a man falling down from skateboard", "video_id": "video10424", "sen_id": 239185}, {"caption": "a skier takes it to the street", "video_id": "video10424", "sen_id": 239186}, {"caption": "a man skiing off of an cement outdoor staircase and landing safely", "video_id": "video10424", "sen_id": 239187}, {"caption": "man is falling while skiing on the mountain", "video_id": "video10424", "sen_id": 239188}, {"caption": "a forest scene is being shown to people", "video_id": "video10424", "sen_id": 239189}, {"caption": "a person doing a trick on skies and falling in the snow", "video_id": "video10424", "sen_id": 239190}, {"caption": "a snow skater jumps down a stare case and fails at first then practiced and finished the move perfectly", "video_id": "video10424", "sen_id": 239191}, {"caption": "a skater fell down after he lost his balance", "video_id": "video10424", "sen_id": 239192}, {"caption": "people ski at night and do dangerous tricks down the hill", "video_id": "video10424", "sen_id": 239193}, {"caption": "a person is doing some stunts in the night", "video_id": "video10424", "sen_id": 239194}, {"caption": "a skier has fallen and hurt himself severly after falling he succeeds the manuever he previously failed in", "video_id": "video10424", "sen_id": 239195}, {"caption": "a man practices skiing down a flight of snow filled stairs", "video_id": "video10424", "sen_id": 239196}, {"caption": "a skier falls multiple times trying to go down stairs then finally grinds the railing next to the stairs with out falling", "video_id": "video10424", "sen_id": 239197}, {"caption": "guy skying down the icy mountain and falling hard on his back", "video_id": "video10424", "sen_id": 239198}, {"caption": "a person is walking down a ramp outside", "video_id": "video10424", "sen_id": 239199}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video12185", "sen_id": 239200}, {"caption": "a woman makes a roux on the stove", "video_id": "video12185", "sen_id": 239201}, {"caption": "a woman is describing a cooking technique that involves flour and milk while stirring the mixture", "video_id": "video12185", "sen_id": 239202}, {"caption": "a woman is using a whisk to stir flour and milk together in a pot on a stove", "video_id": "video12185", "sen_id": 239203}, {"caption": "flour and milk are being combined on the stove in a small saucepan", "video_id": "video12185", "sen_id": 239204}, {"caption": "a woman stirs flour and other ingredients into a pot", "video_id": "video12185", "sen_id": 239205}, {"caption": "a man is whisking and stirring milk that she is applying heat to", "video_id": "video12185", "sen_id": 239206}, {"caption": "an inhome chef demonstrates and describes a recipe she is working on at home", "video_id": "video12185", "sen_id": 239207}, {"caption": "a lady adding flour and milk to a mixture in frying pan and stirring it", "video_id": "video12185", "sen_id": 239208}, {"caption": "a woman is teaching to cook and is telling about stirring continuously", "video_id": "video12185", "sen_id": 239209}, {"caption": "in a tawa a lady cooking sonething", "video_id": "video12185", "sen_id": 239210}, {"caption": "a woman giving instruction on making some kind of batter", "video_id": "video12185", "sen_id": 239211}, {"caption": "women stirring paste with spoon", "video_id": "video12185", "sen_id": 239212}, {"caption": "a home cook keeps her liquid over the heat to get the starch granules to burst and make a smooth paste", "video_id": "video12185", "sen_id": 239213}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video12185", "sen_id": 239214}, {"caption": "a woman demonstrates how to prepare a certain dish using flour and milk", "video_id": "video12185", "sen_id": 239215}, {"caption": "a hand uses a whisk to mix a white sauce in a small pot then uses a metal spoon to stir as the sauce thickens", "video_id": "video12185", "sen_id": 239216}, {"caption": "a woman stirs a cream mixture in a pot over a stovetop", "video_id": "video12185", "sen_id": 239217}, {"caption": "woman describing instructions of a recipe involving flour and milk in a saucepan", "video_id": "video12185", "sen_id": 239218}, {"caption": "someone is stirring food inside of a pot", "video_id": "video12185", "sen_id": 239219}, {"caption": "a person is removing the flesh of pumpkin from the skin", "video_id": "video12537", "sen_id": 239220}, {"caption": "a person cooking onions and garlic while removing the flesh from a pumpkin with a spoon", "video_id": "video12537", "sen_id": 239221}, {"caption": "a woman is scooping pumpkin into a bowl", "video_id": "video12537", "sen_id": 239222}, {"caption": "a woman removes cooked pumpkin flesh from the skin", "video_id": "video12537", "sen_id": 239223}, {"caption": "a woman uses a spoon to scoop out the meat of a pumpkin that has been cooked to make easier removal", "video_id": "video12537", "sen_id": 239224}, {"caption": "a person scoops out the inside of a butternut squash that has already been cooked", "video_id": "video12537", "sen_id": 239225}, {"caption": "a cook has roasted a pumpkin and is scooping out pieces then dropping them into a bowl", "video_id": "video12537", "sen_id": 239226}, {"caption": "a girl is scooping pumpkin from the flesh into a bowl", "video_id": "video12537", "sen_id": 239227}, {"caption": "a person sautes some onions and garlic in a pan a woman scoops cooked pumkin out of the rinds and puts it in a bowl", "video_id": "video12537", "sen_id": 239228}, {"caption": "women in kitchen preparing potatoes in a bowl using a spoon", "video_id": "video12537", "sen_id": 239229}, {"caption": "a woman scoops out a piece of pumpkin", "video_id": "video12537", "sen_id": 239230}, {"caption": "a person is making some food in their kitchen", "video_id": "video12537", "sen_id": 239231}, {"caption": "vegetable is slicing by a lady", "video_id": "video12537", "sen_id": 239232}, {"caption": "this is a cooking video of a pumpkin dish", "video_id": "video12537", "sen_id": 239233}, {"caption": "a lady removing the skin of a pumpkin with using a spoon in a kitchen", "video_id": "video12537", "sen_id": 239234}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video12537", "sen_id": 239235}, {"caption": "someone is scooping the core out of an orange squash", "video_id": "video12537", "sen_id": 239236}, {"caption": "a lady peeling some vegetable in kitchen to prepare the dish", "video_id": "video12537", "sen_id": 239237}, {"caption": "onion and garlic cooking in a hot pan on the stove woman scooping cooked pumpkin from the pumpkin skin using a spoon and placing into a bowl", "video_id": "video12537", "sen_id": 239238}, {"caption": "woman scooping pieces of pumpkin into a bowl for a recipe", "video_id": "video12537", "sen_id": 239239}, {"caption": "two young men with dark hair are having a conversation", "video_id": "video12086", "sen_id": 239240}, {"caption": "two boys having a conversation that appears to be turning into an argument", "video_id": "video12086", "sen_id": 239241}, {"caption": "a couple of boys arguing in a gymnasium at a school", "video_id": "video12086", "sen_id": 239242}, {"caption": "two young men are talking in a school gym", "video_id": "video12086", "sen_id": 239243}, {"caption": "a man wearing a blue shirt talking to another man", "video_id": "video12086", "sen_id": 239244}, {"caption": "a group of young people set on bleachers in a gymnasium", "video_id": "video12086", "sen_id": 239245}, {"caption": "all persons are talking each other in a auditoriam", "video_id": "video12086", "sen_id": 239246}, {"caption": "a man with short hair and a black shirt speaks to a bully", "video_id": "video12086", "sen_id": 239247}, {"caption": "two young men talk to each other in a gymnasium in a school", "video_id": "video12086", "sen_id": 239248}, {"caption": "a man is talking to another man in a gym", "video_id": "video12086", "sen_id": 239249}, {"caption": "a boy with black dress speaking something to other boy", "video_id": "video12086", "sen_id": 239250}, {"caption": "a man in black t-shirt talking with his friend", "video_id": "video12086", "sen_id": 239251}, {"caption": "one boy speaking with another boy in a movie", "video_id": "video12086", "sen_id": 239252}, {"caption": "the boy talks to another boy in the school which is listen by many stidents", "video_id": "video12086", "sen_id": 239253}, {"caption": "two boys are talking about something in school", "video_id": "video12086", "sen_id": 239254}, {"caption": "a couple guys are speaking together in a room", "video_id": "video12086", "sen_id": 239255}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video12086", "sen_id": 239256}, {"caption": "a young man is bothered by fellow student and tells him to leave", "video_id": "video12086", "sen_id": 239257}, {"caption": "a boy in blue dress sitting and other boy standing getting up speaking and many boys and girls beside sitting on screen", "video_id": "video12086", "sen_id": 239258}, {"caption": "a couple of boys are talking to each other", "video_id": "video12086", "sen_id": 239259}, {"caption": "moving pixel-like rectangles in hues of blue and purple flash across a cloud and light to form a title within intersecting zigzags above the outline of three identical heads", "video_id": "video12318", "sen_id": 239260}, {"caption": "there are sparkling colors that form the image of three heads and the phrase brain joint", "video_id": "video12318", "sen_id": 239261}, {"caption": "a screen with colored waves turning into three heads with the words brain joint above them", "video_id": "video12318", "sen_id": 239262}, {"caption": "lights are flickering leading to a bright light forming the icon for brain joint", "video_id": "video12318", "sen_id": 239263}, {"caption": "a draw out transition into the the words brain joint layered in front of sine waves and heads", "video_id": "video12318", "sen_id": 239264}, {"caption": "red and blue pixels shake and then resolve into an image of three blue faces the words brain joint and a blue and red double helix", "video_id": "video12318", "sen_id": 239265}, {"caption": "a lights and a letters for words are displaying", "video_id": "video12318", "sen_id": 239266}, {"caption": "an intro sequence showing light and what appears to be particle effects that latter organize into brainwaves later brain joint is displaye din this waves with three heads", "video_id": "video12318", "sen_id": 239267}, {"caption": "a colorful black and white adverisement graphic for something called brain joint that uses three human heads in its logo", "video_id": "video12318", "sen_id": 239268}, {"caption": "a graphics goes on with some laser lights then the wording is displayed", "video_id": "video12318", "sen_id": 239269}, {"caption": "there are fuzzy shapes moving around on the screen that turn into the words brain joint", "video_id": "video12318", "sen_id": 239270}, {"caption": "a spark based play of an introduction title", "video_id": "video12318", "sen_id": 239271}, {"caption": "a screen is slowly revealing the words brain joint", "video_id": "video12318", "sen_id": 239272}, {"caption": "an introductory sequence to a show or presentation", "video_id": "video12318", "sen_id": 239273}, {"caption": "some letters gets smashed then finally display word brain joint", "video_id": "video12318", "sen_id": 239274}, {"caption": "a pixelated static coalesces into a text logo with faces", "video_id": "video12318", "sen_id": 239275}, {"caption": "the opening of a program named brain joint", "video_id": "video12318", "sen_id": 239276}, {"caption": "the screen is very slowly unveiling the words on the screen", "video_id": "video12318", "sen_id": 239277}, {"caption": "brain joint pops up at the end of this video along with 3 outlined faces", "video_id": "video12318", "sen_id": 239278}, {"caption": "a visual display which is so grandly animated and gorgeous looking so good", "video_id": "video12318", "sen_id": 239279}, {"caption": "a woman is eating an asian dish that is hot", "video_id": "video10587", "sen_id": 239280}, {"caption": "an asian woman in a kitchen chewing on fish that she is cooking", "video_id": "video10587", "sen_id": 239281}, {"caption": "a woman with black hair takes a bite of food and describes it as being chewy and hot", "video_id": "video10587", "sen_id": 239282}, {"caption": "a woman eats fish cake ball with chopsticks and says it is very good", "video_id": "video10587", "sen_id": 239283}, {"caption": "in a kitchen an asian woman uses chopsticks to taste a hot and spicy dish and suggests that it should be eaten with rice", "video_id": "video10587", "sen_id": 239284}, {"caption": "a woman cook demonstrates how delicious her fish cake balls are by eating one and talking about them", "video_id": "video10587", "sen_id": 239285}, {"caption": "a women tasting the dish of fish cake ball and saying it is very tasty", "video_id": "video10587", "sen_id": 239286}, {"caption": "a lady eating small piece hot fish cake and enjoy the taste of it", "video_id": "video10587", "sen_id": 239287}, {"caption": "a lady is eating food in a kitchen with chop sticks", "video_id": "video10587", "sen_id": 239288}, {"caption": "chinese chilly fish eaten from a plate hot and spicy", "video_id": "video10587", "sen_id": 239289}, {"caption": "there is a woman tasting a food in the kitchen", "video_id": "video10587", "sen_id": 239290}, {"caption": "an asian woman wearing a colorful shirt eating a fish ball with chopstick and then talking about it", "video_id": "video10587", "sen_id": 239291}, {"caption": "an asian woman taste tests a recipe she has prepared", "video_id": "video10587", "sen_id": 239292}, {"caption": "a lady with a collerfull outfit on eating something with chocp sticks", "video_id": "video10587", "sen_id": 239293}, {"caption": "the fish recipe - spicy and hot is eaten by the chop stick", "video_id": "video10587", "sen_id": 239294}, {"caption": "a woman is eating a meal with chop sticks", "video_id": "video10587", "sen_id": 239295}, {"caption": "a woman uses chopsticks to put a fish cake ball in her mouth", "video_id": "video10587", "sen_id": 239296}, {"caption": "a woman at home in her kitchen critics food she has eaten", "video_id": "video10587", "sen_id": 239297}, {"caption": "black haired woman is tasting the food and talking about it", "video_id": "video10587", "sen_id": 239298}, {"caption": "some food on a plate is being filmed for tv", "video_id": "video10587", "sen_id": 239299}, {"caption": "a man is introducing a compact sporty of vw's gti model that comes rear wiper and uniqu bumper", "video_id": "video11363", "sen_id": 239300}, {"caption": "a red volkswagen car is presented by a man in glasses with a beard", "video_id": "video11363", "sen_id": 239301}, {"caption": "a man describes the features of a car he is preparing to test drive", "video_id": "video11363", "sen_id": 239302}, {"caption": "a man is talking about a red volkswagon", "video_id": "video11363", "sen_id": 239303}, {"caption": "a man talking about a volkswagon r model", "video_id": "video11363", "sen_id": 239304}, {"caption": "a man is talking about a red volkswagen car", "video_id": "video11363", "sen_id": 239305}, {"caption": "a guy in black jacket explains advantages of volkswagen car", "video_id": "video11363", "sen_id": 239306}, {"caption": "a men explainging car is displayed with its features volkwagen", "video_id": "video11363", "sen_id": 239307}, {"caption": "guy with the red car its a wolkswagen car he wear the black dress", "video_id": "video11363", "sen_id": 239308}, {"caption": "bearded guy in glass talking about the car and its features", "video_id": "video11363", "sen_id": 239309}, {"caption": "a guy in a beard is talking about a red car", "video_id": "video11363", "sen_id": 239310}, {"caption": "some one explaining the features of a new car", "video_id": "video11363", "sen_id": 239311}, {"caption": "its a wheel of the red color the man with the black coat and inner dress wear the specs", "video_id": "video11363", "sen_id": 239312}, {"caption": "bearded guy is talking about the car and its features", "video_id": "video11363", "sen_id": 239313}, {"caption": "a man with glasses is speaking about something", "video_id": "video11363", "sen_id": 239314}, {"caption": "a person is explaining about a red color car", "video_id": "video11363", "sen_id": 239315}, {"caption": "one man talk about new car inner features drives fast", "video_id": "video11363", "sen_id": 239316}, {"caption": "a bearded man wearing glasses is standing next to a red car while describing it", "video_id": "video11363", "sen_id": 239317}, {"caption": "a person with black coat explaining about the car", "video_id": "video11363", "sen_id": 239318}, {"caption": "a man with glasses is talking about something", "video_id": "video11363", "sen_id": 239319}, {"caption": "gameplay footage of a pc game is shown and a man's voice is heard", "video_id": "video11828", "sen_id": 239320}, {"caption": "we see a player being hit with explosion on a game screen", "video_id": "video11828", "sen_id": 239321}, {"caption": "an action packed video game is being played on the screen", "video_id": "video11828", "sen_id": 239322}, {"caption": "a video that is showing off the world of warcraft", "video_id": "video11828", "sen_id": 239323}, {"caption": "a character in a video game runs around the screen being attacked and attacking enemies", "video_id": "video11828", "sen_id": 239324}, {"caption": "a cartoon character running onto and over other characters", "video_id": "video11828", "sen_id": 239325}, {"caption": "a cartoon character running after another character and running over them", "video_id": "video11828", "sen_id": 239326}, {"caption": "a person plays an interactive action video game featuring cartoon characters with health points", "video_id": "video11828", "sen_id": 239327}, {"caption": "a video game being played with a fighting scene going on", "video_id": "video11828", "sen_id": 239328}, {"caption": "some one is playing a video game on a screen", "video_id": "video11828", "sen_id": 239329}, {"caption": "video game recording of players running into a room together", "video_id": "video11828", "sen_id": 239330}, {"caption": "there are many toy machines dashing with each other", "video_id": "video11828", "sen_id": 239331}, {"caption": "a person playing a video game where there is a lot of shooting being done", "video_id": "video11828", "sen_id": 239332}, {"caption": "a person is playing a video game in the screen", "video_id": "video11828", "sen_id": 239333}, {"caption": "a person is playing a computer game with lasers", "video_id": "video11828", "sen_id": 239334}, {"caption": "a online game where the player is being attacked", "video_id": "video11828", "sen_id": 239335}, {"caption": "a man is playing a massively multiplayer online game on the computer", "video_id": "video11828", "sen_id": 239336}, {"caption": "several video game characters are in battle shooting and destroying each other", "video_id": "video11828", "sen_id": 239337}, {"caption": "games film and discuss playing video game", "video_id": "video11828", "sen_id": 239338}, {"caption": "player playing video game trying to get more points", "video_id": "video11828", "sen_id": 239339}, {"caption": "two brown toys horses with white patches on their foreheads", "video_id": "video12808", "sen_id": 239340}, {"caption": "a young girl hold a toy horse and uses them to act out a scene", "video_id": "video12808", "sen_id": 239341}, {"caption": "a girl is pretending her plastic brown horse is performing", "video_id": "video12808", "sen_id": 239342}, {"caption": "a girl is playing with a couple toy horses", "video_id": "video12808", "sen_id": 239343}, {"caption": "a young woman plays with plastic gorses and acts like the horses are talking", "video_id": "video12808", "sen_id": 239344}, {"caption": "two brown horses with black manes and white head markings share a corner of a white room with their shadows cast onto the textured white walls", "video_id": "video12808", "sen_id": 239345}, {"caption": "two brown horses moving up and down as they look at the camera", "video_id": "video12808", "sen_id": 239346}, {"caption": "two brown horse figures with a kid making the voices", "video_id": "video12808", "sen_id": 239347}, {"caption": "there is a woman playing with a horse toy", "video_id": "video12808", "sen_id": 239348}, {"caption": "the girl showing two brown colour horse toys and talk about that", "video_id": "video12808", "sen_id": 239349}, {"caption": "a lady is doing a voice over for two plastic horses", "video_id": "video12808", "sen_id": 239350}, {"caption": "a beautiful brown horse is placed in a room", "video_id": "video12808", "sen_id": 239351}, {"caption": "a female horse and her companion talk about her top ten pet peeves", "video_id": "video12808", "sen_id": 239352}, {"caption": "nice brown horse here are two so beautifulnice placed on table", "video_id": "video12808", "sen_id": 239353}, {"caption": "a person uses horse figures to give the impression of horses speaking hosting a show about pet peeves", "video_id": "video12808", "sen_id": 239354}, {"caption": "a toy horse is being played with in a room", "video_id": "video12808", "sen_id": 239355}, {"caption": "some one holding artificial horse in their hand", "video_id": "video12808", "sen_id": 239356}, {"caption": "a person is playing with a brown horse", "video_id": "video12808", "sen_id": 239357}, {"caption": "a girl is using two horses to talk about pet peeves", "video_id": "video12808", "sen_id": 239358}, {"caption": "the wooden horse are moving under the control of the somebody hand", "video_id": "video12808", "sen_id": 239359}, {"caption": "a newscaster sums up an issue related to the presidential debate and black lives matters group", "video_id": "video11784", "sen_id": 239360}, {"caption": "a man on the news talking about race in america", "video_id": "video11784", "sen_id": 239361}, {"caption": "a news anchor says the black lives matter movement wants to hold their own debate", "video_id": "video11784", "sen_id": 239362}, {"caption": "a man named hannity is talking on his show about the democrat canidates supporting the black lives matter movement", "video_id": "video11784", "sen_id": 239363}, {"caption": "tv personality sean hannity discusses race in america", "video_id": "video11784", "sen_id": 239364}, {"caption": "a television graphic depicting a white male tv host who's wearing a tie and talking politics", "video_id": "video11784", "sen_id": 239365}, {"caption": "a tv news reporter telling about the presidential election", "video_id": "video11784", "sen_id": 239366}, {"caption": "a news channel showing us the race in america", "video_id": "video11784", "sen_id": 239367}, {"caption": "news about race in america in fox news channel", "video_id": "video11784", "sen_id": 239368}, {"caption": "guy in a news room talking about concerns in america", "video_id": "video11784", "sen_id": 239369}, {"caption": "a man in black coat and yellow tie is reading out news", "video_id": "video11784", "sen_id": 239370}, {"caption": "there is a suit man talking from the studio", "video_id": "video11784", "sen_id": 239371}, {"caption": "a news caster discussing race issues in america along with the campaign of black lives matter", "video_id": "video11784", "sen_id": 239372}, {"caption": "a man in a black suit and yellow tie is giving a news report on the black lives matter movement for cnn", "video_id": "video11784", "sen_id": 239373}, {"caption": "a news reporter is talking about democratic candidates discussing black lives matter", "video_id": "video11784", "sen_id": 239374}, {"caption": "news readers reading news in the tv channel", "video_id": "video11784", "sen_id": 239375}, {"caption": "an old man in executive dress is talking on the race in america", "video_id": "video11784", "sen_id": 239376}, {"caption": "a news is playing in the television about race in america", "video_id": "video11784", "sen_id": 239377}, {"caption": "a newscaster is talking about a black lives matter group wanting to hold a debate", "video_id": "video11784", "sen_id": 239378}, {"caption": "sean hannity discusses the black lives matter movement in a negative way", "video_id": "video11784", "sen_id": 239379}, {"caption": "a baseball player is running to second base after making a hit", "video_id": "video12627", "sen_id": 239380}, {"caption": "the baseball player hits the ball and then runs around the bases", "video_id": "video12627", "sen_id": 239381}, {"caption": "a man watches a local baseball game on his computer and offers commentary", "video_id": "video12627", "sen_id": 239382}, {"caption": "a man comments on a playback of his baseball game", "video_id": "video12627", "sen_id": 239383}, {"caption": "a young man discusses aspects of a baseball game he played in", "video_id": "video12627", "sen_id": 239384}, {"caption": "a man commentating on his baseball hit and his run to second base", "video_id": "video12627", "sen_id": 239385}, {"caption": "a man making commentary about a baseball game that he was in the main is shown in a split screen at the top right corner of the baseball video", "video_id": "video12627", "sen_id": 239386}, {"caption": "a man in a minimized screen commenting on a baseball game", "video_id": "video12627", "sen_id": 239387}, {"caption": "two team players are playing rugby on ground", "video_id": "video12627", "sen_id": 239388}, {"caption": "a man narrates a video about a local baseball game", "video_id": "video12627", "sen_id": 239389}, {"caption": "a man in a red tank top hair in a pony tail shows online viewers a clip of himself batting at his baseball game making it to at least second base", "video_id": "video12627", "sen_id": 239390}, {"caption": "a baseball game is viewed later by the batsman", "video_id": "video12627", "sen_id": 239391}, {"caption": "a person watches a baseball game and explains in which a black tshirt player hits the ball and running to take run", "video_id": "video12627", "sen_id": 239392}, {"caption": "base ball game the player in red dress hit the ball its been described by another person wearing head phone", "video_id": "video12627", "sen_id": 239393}, {"caption": "a red and blue t shirt dresses wearing boys inside ground with bat in hand hitting ball running displaying on screen", "video_id": "video12627", "sen_id": 239394}, {"caption": "some baseball players are doing their best to win", "video_id": "video12627", "sen_id": 239395}, {"caption": "the two rokey teams are playing against each aother", "video_id": "video12627", "sen_id": 239396}, {"caption": "a man in a red tank top puts on black headphones watches baseball-game replays and critiques his batting toward the outfield", "video_id": "video12627", "sen_id": 239397}, {"caption": "a group of baseball players are playing a game of baseball", "video_id": "video12627", "sen_id": 239398}, {"caption": "a baseball player scores a hit and runs to first base", "video_id": "video12627", "sen_id": 239399}, {"caption": "a group of men and women embrace around a red vehicle", "video_id": "video11896", "sen_id": 239400}, {"caption": "a commercial for a nissan car for christmas", "video_id": "video11896", "sen_id": 239401}, {"caption": "a couple who was on the show the voice gets to pick out a car", "video_id": "video11896", "sen_id": 239402}, {"caption": "a couple celebrates after deciding to buy a car", "video_id": "video11896", "sen_id": 239403}, {"caption": "nissan and the cast of the voice giving away free cars for christmas", "video_id": "video11896", "sen_id": 239404}, {"caption": " maxima and rogue vehicles by nissan on display for thankful voice finalists who are told to go pick a car", "video_id": "video11896", "sen_id": 239405}, {"caption": "the people hug one another near the cars as the snow falls to the ground", "video_id": "video11896", "sen_id": 239406}, {"caption": "a lot of colourful cars and some guys are round the car", "video_id": "video11896", "sen_id": 239407}, {"caption": "brand new cars with luxurious design and very attractive with many people around", "video_id": "video11896", "sen_id": 239408}, {"caption": "group of members meeting each other and near three types of car parking", "video_id": "video11896", "sen_id": 239409}, {"caption": "some people are standing by some cars", "video_id": "video11896", "sen_id": 239410}, {"caption": "people getting down from their cars and wishing each other", "video_id": "video11896", "sen_id": 239411}, {"caption": "there are some friends met after long time and enjoying", "video_id": "video11896", "sen_id": 239412}, {"caption": "some car show is going and the name of the car is murano", "video_id": "video11896", "sen_id": 239413}, {"caption": "some people are standing outside near cars", "video_id": "video11896", "sen_id": 239414}, {"caption": "there is a stylish car presenting to someone", "video_id": "video11896", "sen_id": 239415}, {"caption": "several people in an open area looking at different models of nissan automobiles", "video_id": "video11896", "sen_id": 239416}, {"caption": "close ups of three cars in a christmas scene and then parked near christmas trees with several people standing around excited", "video_id": "video11896", "sen_id": 239417}, {"caption": "the nissan companycarsthree cars the muranic the rogue theautima cars are gifted bya fiance to a lover", "video_id": "video11896", "sen_id": 239418}, {"caption": "the exterior of some cars is being filmed", "video_id": "video11896", "sen_id": 239419}, {"caption": "a man in glasses talks and points to a drawing on a green chalk board and shows a map", "video_id": "video12844", "sen_id": 239420}, {"caption": "a man in a blue collared shirt discusses the ideas of alexander hamilton", "video_id": "video12844", "sen_id": 239421}, {"caption": "a man in a blue shirt talking about hamilton", "video_id": "video12844", "sen_id": 239422}, {"caption": "a man wearing a blue shirt and glasses is giving a lesson", "video_id": "video12844", "sen_id": 239423}, {"caption": "three small boats on a map sail towards each other then a man talks to the camera", "video_id": "video12844", "sen_id": 239424}, {"caption": "a man in a blue shirt is sitting next to a chalk board with a man's face drawn on it", "video_id": "video12844", "sen_id": 239425}, {"caption": "speaker explaining historical facts about american public figure hamilton", "video_id": "video12844", "sen_id": 239426}, {"caption": "the man describes the influence of the historical figure on the united states", "video_id": "video12844", "sen_id": 239427}, {"caption": "a man in a blue shirt is talking about hamilton in front of a chalk board with hamilton s picture and a map", "video_id": "video12844", "sen_id": 239428}, {"caption": "a man discusses alexander hamilton s vision for the future america", "video_id": "video12844", "sen_id": 239429}, {"caption": "a man wearing a blue shirt is talking about hamilton and u", "video_id": "video12844", "sen_id": 239430}, {"caption": "the man sits in the black chair and talks as the board is behind him", "video_id": "video12844", "sen_id": 239431}, {"caption": "a man in a blue shirt by a chalk board discussing hamilton and his vision of the future of america there is an old-time shipping map of the atlantic ocean", "video_id": "video12844", "sen_id": 239432}, {"caption": "a man in a blue shirt sitting behind a desk talks about hamiltons strong personality", "video_id": "video12844", "sen_id": 239433}, {"caption": "a man in a blue shirt is describing alexander hamilton and his ideas", "video_id": "video12844", "sen_id": 239434}, {"caption": "a male speaker talks about the personality of alexander hamilton", "video_id": "video12844", "sen_id": 239435}, {"caption": "a man is teaching about the founding father alexander hamilton", "video_id": "video12844", "sen_id": 239436}, {"caption": "a person in blue shirt sits at a desk with a green board behind him", "video_id": "video12844", "sen_id": 239437}, {"caption": "man in blue shirt is talking about the photo behind him", "video_id": "video12844", "sen_id": 239438}, {"caption": "a map of alaska is shown above thwe world", "video_id": "video12844", "sen_id": 239439}, {"caption": "music plays while a still image of a black man with dreadlocks and sunglasses on is shown followed by a still image of a brown rabbit", "video_id": "video11630", "sen_id": 239440}, {"caption": "a man in sunglasses smiles at the camera and then a brown bunny looks into the camera", "video_id": "video11630", "sen_id": 239441}, {"caption": "a song is set to two random pictures one of them is a bunny", "video_id": "video11630", "sen_id": 239442}, {"caption": "people are happily wearing hats and smiling together", "video_id": "video11630", "sen_id": 239443}, {"caption": "music is played in the background while first a picture of african american man is shown then a rabbit", "video_id": "video11630", "sen_id": 239444}, {"caption": "an african american man is wearing a rasta colored hat and sunglasses and a bunny is looking crazily", "video_id": "video11630", "sen_id": 239445}, {"caption": "a lady with dreadlocks taking a picture in a store", "video_id": "video11630", "sen_id": 239446}, {"caption": "a black man with dreads wearing sunglasses somewhere else there is a bunny music plays", "video_id": "video11630", "sen_id": 239447}, {"caption": "a man with specs and cartoon rabbit giving pose to the camera", "video_id": "video11630", "sen_id": 239448}, {"caption": "a person in black glasses is smiling and a rabbit is looking at camera", "video_id": "video11630", "sen_id": 239449}, {"caption": "a man with cooling glass in side his office", "video_id": "video11630", "sen_id": 239450}, {"caption": "video shows a photo of people in the room", "video_id": "video11630", "sen_id": 239451}, {"caption": "a short slide show is playing to music", "video_id": "video11630", "sen_id": 239452}, {"caption": "girl laughing she shows all her teeththen a cute rabbit with eye", "video_id": "video11630", "sen_id": 239453}, {"caption": "the man in the green hat has a large smile and wears sun glasses", "video_id": "video11630", "sen_id": 239454}, {"caption": "pictures of a man in a life jacket a man with dreadlocks in a store and a brown rabbit are shown while music plays in the background", "video_id": "video11630", "sen_id": 239455}, {"caption": "a man with sunglasses and has a big smile then the screen switches to a bunny rabbit", "video_id": "video11630", "sen_id": 239456}, {"caption": "a guy and cartoon rabbit giving a pose to the camera", "video_id": "video11630", "sen_id": 239457}, {"caption": "a man is glasses and a hat is smiling to a camera in a store", "video_id": "video11630", "sen_id": 239458}, {"caption": "a brown rabbit is being filmed by its owner", "video_id": "video11630", "sen_id": 239459}, {"caption": "a recipe is shown in a series of images as classical music plays", "video_id": "video12115", "sen_id": 239460}, {"caption": "a woman with chin-length black hair smiles a rectangular bowl has cubed meat a dish holds mushrooms a square bowl holds half an onion an asymmetric saucer hold oil a glass hold stock a fluted saucer hold mustard a fluted saucer holds tomato sauce a cylinder holds salt and pepper a stemmed glass holds wine and a square dish holds flour", "video_id": "video12115", "sen_id": 239461}, {"caption": "a person is preparing a food on a pan", "video_id": "video12115", "sen_id": 239462}, {"caption": "meals and nasrooms egg are displayed one by one on a table", "video_id": "video12115", "sen_id": 239463}, {"caption": "a number of recipe ingredients are shown such as a bowl of cut up meat an onion and some oil", "video_id": "video12115", "sen_id": 239464}, {"caption": "display of ingredients required for a recipe", "video_id": "video12115", "sen_id": 239465}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12115", "sen_id": 239466}, {"caption": "in the kitchenthere are some tips to make a meet dish", "video_id": "video12115", "sen_id": 239467}, {"caption": "a recipe is shown with the needed amount of each ingredient", "video_id": "video12115", "sen_id": 239468}, {"caption": "showing the ingredients of dish with stewing beef 500 grams of mushroom one onion 14 cup of oil", "video_id": "video12115", "sen_id": 239469}, {"caption": "a meat and plate of mushroom oil and masala item on tables to prepare dish to serve to eat displaying on screen", "video_id": "video12115", "sen_id": 239470}, {"caption": "some stuff on a table is being shown", "video_id": "video12115", "sen_id": 239471}, {"caption": "a cook has different ingredients in different bowls for a recipe", "video_id": "video12115", "sen_id": 239472}, {"caption": "a mushroom meat and paste inside bowl dishes to prepare to serve displaying on the screen", "video_id": "video12115", "sen_id": 239473}, {"caption": "some various ingredients are being shown", "video_id": "video12115", "sen_id": 239474}, {"caption": "food items being displayed on the screen", "video_id": "video12115", "sen_id": 239475}, {"caption": "a chef works on a beef stew recipe by reading the ingredients", "video_id": "video12115", "sen_id": 239476}, {"caption": "a woman is showing a list of ingredients to be used for a recipe", "video_id": "video12115", "sen_id": 239477}, {"caption": "someone is cooking delicious beef dish adding salttomato puree onion", "video_id": "video12115", "sen_id": 239478}, {"caption": "someone is showing a white bowl on a table", "video_id": "video12115", "sen_id": 239479}, {"caption": "it is a sunny day at the beach and people are doing many activities", "video_id": "video11627", "sen_id": 239480}, {"caption": "a man in a striped shirt is describing the beach waves", "video_id": "video11627", "sen_id": 239481}, {"caption": "a man in a striped shirt is standing on a beach talking while people in bathing suits relax o the beach", "video_id": "video11627", "sen_id": 239482}, {"caption": "a man talking in different beach locations and people on the beach", "video_id": "video11627", "sen_id": 239483}, {"caption": "a man in a striped shirt stands on the beach", "video_id": "video11627", "sen_id": 239484}, {"caption": "a man is walking around the beach and observing what goes on there", "video_id": "video11627", "sen_id": 239485}, {"caption": "a man is walking on the beach with others", "video_id": "video11627", "sen_id": 239486}, {"caption": "several people are enjoying the brease in a beautiful beach and sunny day", "video_id": "video11627", "sen_id": 239487}, {"caption": "indian man talking about the life in the beach", "video_id": "video11627", "sen_id": 239488}, {"caption": "a person speaking to media about a sea shore and the tr", "video_id": "video11627", "sen_id": 239489}, {"caption": "all persons are talking each other on the beach", "video_id": "video11627", "sen_id": 239490}, {"caption": "a seaside beach face is being explained for its features", "video_id": "video11627", "sen_id": 239491}, {"caption": "a man standing on a beach is giving an interview", "video_id": "video11627", "sen_id": 239492}, {"caption": "a old man near beach taking sun bath many peoples around sitting naked displaying on screen", "video_id": "video11627", "sen_id": 239493}, {"caption": "some people are outside relaxing on a beach", "video_id": "video11627", "sen_id": 239494}, {"caption": "there is a check shirt man walking on the beach", "video_id": "video11627", "sen_id": 239495}, {"caption": "a man in a collared shirt is standing on a beach many people walk by and are sitting on the beach", "video_id": "video11627", "sen_id": 239496}, {"caption": "people eatting and drinking at a caffe a man in a stripped shirt standing on a beach a man in a stripped shhirt talking about events", "video_id": "video11627", "sen_id": 239497}, {"caption": "sun bath in a tropical sea shore", "video_id": "video11627", "sen_id": 239498}, {"caption": "some people are sitting on a bench outside", "video_id": "video11627", "sen_id": 239499}, {"caption": "a man is sitting in a room explaining about a character in a film", "video_id": "video11026", "sen_id": 239500}, {"caption": "a man in a black jacket talking about a lawyer named donovan", "video_id": "video11026", "sen_id": 239501}, {"caption": "a man in a suit is talking in a room", "video_id": "video11026", "sen_id": 239502}, {"caption": "the actor tom hanks appears on a program and discusses one of the characters he has played", "video_id": "video11026", "sen_id": 239503}, {"caption": "a man wearing a black suit and talking", "video_id": "video11026", "sen_id": 239504}, {"caption": "a man is talking about a man named donovan and what he fought for", "video_id": "video11026", "sen_id": 239505}, {"caption": "tom hanks explaining the personality traits of a lawyer", "video_id": "video11026", "sen_id": 239506}, {"caption": "a man in a black suit is talking sitting down while using a lot of hand gestures", "video_id": "video11026", "sen_id": 239507}, {"caption": "a man in black suit talking something seriously", "video_id": "video11026", "sen_id": 239508}, {"caption": "the man in black suit passing information", "video_id": "video11026", "sen_id": 239509}, {"caption": "the man in coat is talking while the lamp is on", "video_id": "video11026", "sen_id": 239510}, {"caption": "tom hanks discusses the background of a character he has played", "video_id": "video11026", "sen_id": 239511}, {"caption": "tom hanks describing a character in a film who is a lawyer", "video_id": "video11026", "sen_id": 239512}, {"caption": "a man wearing black color dress is talking", "video_id": "video11026", "sen_id": 239513}, {"caption": "tom hanks stands and talks inside a room", "video_id": "video11026", "sen_id": 239514}, {"caption": "tom hanks is reading a message on tv", "video_id": "video11026", "sen_id": 239515}, {"caption": "a person explaing on the human expectavet making him unique", "video_id": "video11026", "sen_id": 239516}, {"caption": "tom hanks is discussing a lawyer by the name of donovan in a positive manner", "video_id": "video11026", "sen_id": 239517}, {"caption": "a famous actor talks about a character he had played in a movie", "video_id": "video11026", "sen_id": 239518}, {"caption": "tom hanks is talking about an issue on tv", "video_id": "video11026", "sen_id": 239519}, {"caption": "a family poses in white outfits a man corrects a woman as they sit on a sofa and a mother opens a bedroom door to find a teenage couple sitting on the bed by cluttered walls", "video_id": "video11108", "sen_id": 239520}, {"caption": "a middle-aged man and woman sit in their house on the couch while a pair of teenagers hang out on a bed in a bedroom", "video_id": "video11108", "sen_id": 239521}, {"caption": "a woman in black and a man in blue sit on the couch and discuss their parenting", "video_id": "video11108", "sen_id": 239522}, {"caption": "a man and a woman discribing what successful parenting would look like", "video_id": "video11108", "sen_id": 239523}, {"caption": "there is man in blue and a woman in black talking on a couch and then the woman bursts in on her daughter and a boy on her bed", "video_id": "video11108", "sen_id": 239524}, {"caption": "a video on entertainment shows for the whole family", "video_id": "video11108", "sen_id": 239525}, {"caption": "a man and a woman sitting on a couch talking about their family", "video_id": "video11108", "sen_id": 239526}, {"caption": "a man in a dress shirt and a women holding a pillow discussion parenting", "video_id": "video11108", "sen_id": 239527}, {"caption": "a man and a woman talking about their children", "video_id": "video11108", "sen_id": 239528}, {"caption": "a man and a woman sitting on a couch talking", "video_id": "video11108", "sen_id": 239529}, {"caption": "a man and a woman sitting on a couch while the woman goes into the two kids bedroom", "video_id": "video11108", "sen_id": 239530}, {"caption": "a women in black dress is explaining about something", "video_id": "video11108", "sen_id": 239531}, {"caption": "a couple sits on the cough and talks to each other", "video_id": "video11108", "sen_id": 239532}, {"caption": "a man and a woman are talking on a couch then the woman walks into a room where two teens are looking at a computer", "video_id": "video11108", "sen_id": 239533}, {"caption": "couples sitting on the sofa they enter the room where the guy and girl looking intot the laptop", "video_id": "video11108", "sen_id": 239534}, {"caption": "sexy blonde in purple top with guy next to her talking to the camera", "video_id": "video11108", "sen_id": 239535}, {"caption": "a clip of modern family on some sort of show reviewing it", "video_id": "video11108", "sen_id": 239536}, {"caption": "a man and woman talking about something in media", "video_id": "video11108", "sen_id": 239537}, {"caption": "a couple sit and talk on the sofa in the living room", "video_id": "video11108", "sen_id": 239538}, {"caption": "a woman in a dress is walking around her house", "video_id": "video11108", "sen_id": 239539}, {"caption": "a video of some guy falling in a football match making faces", "video_id": "video11062", "sen_id": 239540}, {"caption": "there is a football player roaring on the ground", "video_id": "video11062", "sen_id": 239541}, {"caption": "a soccer player gets cut on his leg during a soccer game", "video_id": "video11062", "sen_id": 239542}, {"caption": "two teams players playing football very interestingly", "video_id": "video11062", "sen_id": 239543}, {"caption": "its the football game the person hits another person and a red card is shown to him", "video_id": "video11062", "sen_id": 239544}, {"caption": "soccer player tackles his opponent and gets injured on leg", "video_id": "video11062", "sen_id": 239545}, {"caption": "there is a man in blue jersey wounded while playing football", "video_id": "video11062", "sen_id": 239546}, {"caption": "soccer players play soccer during a game and hurt themselves", "video_id": "video11062", "sen_id": 239547}, {"caption": "one player in green shorts is kicking the ball a player in blue dress falls on the ground raises his hands to his head and then gets up", "video_id": "video11062", "sen_id": 239548}, {"caption": "a soccer player in a blue uniform is hurt by another soccer player from the the other team", "video_id": "video11062", "sen_id": 239549}, {"caption": "a football player got hurt badly by another player in football field", "video_id": "video11062", "sen_id": 239550}, {"caption": "two teams are playing football and one player is badly injured", "video_id": "video11062", "sen_id": 239551}, {"caption": "a soccer player gets a penalty for a violent foul against another player", "video_id": "video11062", "sen_id": 239552}, {"caption": "a man is fell down in the ground of foot ball game", "video_id": "video11062", "sen_id": 239553}, {"caption": "a footballer was hurt in his thigh while the other player scores a goal", "video_id": "video11062", "sen_id": 239554}, {"caption": "some people are playing rugby on a field", "video_id": "video11062", "sen_id": 239555}, {"caption": "the player from the other teamwas roughed up badly", "video_id": "video11062", "sen_id": 239556}, {"caption": "two players playing football very interesting to watch", "video_id": "video11062", "sen_id": 239557}, {"caption": "a man is injured by another player in a soccer match they are playing", "video_id": "video11062", "sen_id": 239558}, {"caption": "a soccer player falls to the ground in pain", "video_id": "video11062", "sen_id": 239559}, {"caption": "multilple women dance along to a song that is playing", "video_id": "video10343", "sen_id": 239560}, {"caption": "three girls are lip synching to a popular song", "video_id": "video10343", "sen_id": 239561}, {"caption": "three teenagers wearing multiple colored bikini tops laugh it up while taking pictures until they see the shark", "video_id": "video10343", "sen_id": 239562}, {"caption": "multiple women are posing in glittery bras", "video_id": "video10343", "sen_id": 239563}, {"caption": "three women with large breast dance around in bikini tops", "video_id": "video10343", "sen_id": 239564}, {"caption": "there are girls in different clothing modeling and dancing", "video_id": "video10343", "sen_id": 239565}, {"caption": "some girls are changing into dresses together as friends", "video_id": "video10343", "sen_id": 239566}, {"caption": "girls in bathing suits are dancing and posing for pictures as music plays", "video_id": "video10343", "sen_id": 239567}, {"caption": "three blonde woman are posing wearing differend outfits", "video_id": "video10343", "sen_id": 239568}, {"caption": "various different beautiful girls pose and dance while music plays", "video_id": "video10343", "sen_id": 239569}, {"caption": "three modern girls are dancing funny in an advertisement", "video_id": "video10343", "sen_id": 239570}, {"caption": "three woman in bikini are dancing and singing", "video_id": "video10343", "sen_id": 239571}, {"caption": "many different women playing around in a beach scene with different summer time outfits", "video_id": "video10343", "sen_id": 239572}, {"caption": "three girls in bikini singing and dancing", "video_id": "video10343", "sen_id": 239573}, {"caption": "group of ladies are dancing and having fun together", "video_id": "video10343", "sen_id": 239574}, {"caption": "bunch of sexy models dancing in front of camera", "video_id": "video10343", "sen_id": 239575}, {"caption": "three girls in colorful shirts then changes to colorful bikini s are singing and acting silly", "video_id": "video10343", "sen_id": 239576}, {"caption": "two young girls in bathing suits play around and scream playfully", "video_id": "video10343", "sen_id": 239577}, {"caption": "girls in sweat suits and bikinis pose for camera and dance", "video_id": "video10343", "sen_id": 239578}, {"caption": "young women in bikinis frolic in front of varying background scenes", "video_id": "video10343", "sen_id": 239579}, {"caption": "a person is chopping and slicing carrot with a chef knife on a board", "video_id": "video10153", "sen_id": 239580}, {"caption": "a person slicing up carrots on a table", "video_id": "video10153", "sen_id": 239581}, {"caption": "someone is chopping carrots into slices as instructions for meal preparation are over-layed on the image", "video_id": "video10153", "sen_id": 239582}, {"caption": "a hand cuts a carrot with a large knife skillfully", "video_id": "video10153", "sen_id": 239583}, {"caption": "this video shows how to efficiently chop a carrot", "video_id": "video10153", "sen_id": 239584}, {"caption": "a person is cutting vegetables in a table", "video_id": "video10153", "sen_id": 239585}, {"caption": "a man slicing the carrot into several pieces", "video_id": "video10153", "sen_id": 239586}, {"caption": "a woman with a knife is cutting a food item", "video_id": "video10153", "sen_id": 239587}, {"caption": "here someone is cutting the carrot then making it to slices with the knife", "video_id": "video10153", "sen_id": 239588}, {"caption": "a man holding a big knife cutting the carrot into small slices on the wooden table", "video_id": "video10153", "sen_id": 239589}, {"caption": "a person slicing carrot for cooking ingredient", "video_id": "video10153", "sen_id": 239590}, {"caption": "a chef chops up a carrot as part of preparing a meal", "video_id": "video10153", "sen_id": 239591}, {"caption": "a person is cutting a carrot on a chopping board", "video_id": "video10153", "sen_id": 239592}, {"caption": "a person cuts some vegetables with a knife on a counter", "video_id": "video10153", "sen_id": 239593}, {"caption": "the chef slices the large orange carrot very thinly", "video_id": "video10153", "sen_id": 239594}, {"caption": "someone is using a knife to cut up a carrot", "video_id": "video10153", "sen_id": 239595}, {"caption": "a person is slicing a carrot on a wooden table using a large knife", "video_id": "video10153", "sen_id": 239596}, {"caption": "a chef cuts an orange carrot with a large knife on a wooden cutting board", "video_id": "video10153", "sen_id": 239597}, {"caption": "someone is cutting fresh carrot to thin slices with a steel knife", "video_id": "video10153", "sen_id": 239598}, {"caption": "a person with a knife is slicing up food", "video_id": "video10153", "sen_id": 239599}, {"caption": "a woman in a red top is walking down a set of stairs", "video_id": "video10163", "sen_id": 239600}, {"caption": "an african women models clothes that have been picked for her specific body type", "video_id": "video10163", "sen_id": 239601}, {"caption": "a woman is walking on the stage with fasion and style change in her comparing with her ordinary look in a tv show where the crowds are surprised and cheering for the woman", "video_id": "video10163", "sen_id": 239602}, {"caption": "a woman is showcased with a before and after photo to display her transformation", "video_id": "video10163", "sen_id": 239603}, {"caption": "a photo graphic of a middle aged black woman wearing various styles of clothes showing her before picture and her after picture after receiving a cosmetic makeover", "video_id": "video10163", "sen_id": 239604}, {"caption": "there is a red dressing woman coming in to the stage", "video_id": "video10163", "sen_id": 239605}, {"caption": "a lady wearing red walks down the stairs as the audience cheers", "video_id": "video10163", "sen_id": 239606}, {"caption": "a lady had a makeover a before and after shot", "video_id": "video10163", "sen_id": 239607}, {"caption": "a woman in red is posing for a crowd", "video_id": "video10163", "sen_id": 239608}, {"caption": "picture showing lady in brown sweater before lose weight and she comes out in red sweater showing what she looks like now to an audience", "video_id": "video10163", "sen_id": 239609}, {"caption": "there is a woman with red dressing walking on the floor", "video_id": "video10163", "sen_id": 239610}, {"caption": "a woman is posing and showing her improvements in front of an audience", "video_id": "video10163", "sen_id": 239611}, {"caption": "we see a woman s before and after images after getting a make over", "video_id": "video10163", "sen_id": 239612}, {"caption": "the amazing transformations of this women who couldn t see her own beauty but after a wardrobe change her life changed", "video_id": "video10163", "sen_id": 239613}, {"caption": "woman in red top walking the talk show studio", "video_id": "video10163", "sen_id": 239614}, {"caption": "group of ladies are clapping and one lady appear on the stage", "video_id": "video10163", "sen_id": 239615}, {"caption": "a woman is presenting her before and after self on a television show", "video_id": "video10163", "sen_id": 239616}, {"caption": "audiences are clapping and cheering when a lady steps in for a television show and gives poses", "video_id": "video10163", "sen_id": 239617}, {"caption": "the lady in red dress is entering in the tv show", "video_id": "video10163", "sen_id": 239618}, {"caption": "women on a fashion show display different outfits", "video_id": "video10163", "sen_id": 239619}, {"caption": "a man is skiing on the snow between trees", "video_id": "video12818", "sen_id": 239620}, {"caption": "a guy in black jumpsuit demonstrates the basic of skiing", "video_id": "video12818", "sen_id": 239621}, {"caption": "a man is standing in the snow with skis and explaining how to kick push glide to move through the snow", "video_id": "video12818", "sen_id": 239622}, {"caption": "a ski instructor demonstrates cross country skiing in a flat snow filled area lined with trees", "video_id": "video12818", "sen_id": 239623}, {"caption": "a man in ski equipment demonstrates kick push glide in the snow", "video_id": "video12818", "sen_id": 239624}, {"caption": "there is a black jacket man skating lonely", "video_id": "video12818", "sen_id": 239625}, {"caption": "the person wearing fully black dress explains the methods of snowboarding", "video_id": "video12818", "sen_id": 239626}, {"caption": "a man in black is showing how to skii on ice", "video_id": "video12818", "sen_id": 239627}, {"caption": "a guy giving tutorial about kick push technique while skiing", "video_id": "video12818", "sen_id": 239628}, {"caption": "a man is sketching in the snow land", "video_id": "video12818", "sen_id": 239629}, {"caption": "a skater with poles moves slowly over the snow in woods", "video_id": "video12818", "sen_id": 239630}, {"caption": "someone wearing black clothes on skis in the snow", "video_id": "video12818", "sen_id": 239631}, {"caption": "a person wearing black dress on a ice mountain with skating", "video_id": "video12818", "sen_id": 239632}, {"caption": "a man in warm ski clothes surrounded by many trees in the snow is demonstrating cross country skiing", "video_id": "video12818", "sen_id": 239633}, {"caption": "a skier stands in a snowy forest and begins to move forward", "video_id": "video12818", "sen_id": 239634}, {"caption": "a man in a black snowsuit wearing snow skis and holding two poles explaining the technique for cross country skiing", "video_id": "video12818", "sen_id": 239635}, {"caption": "a skiier takes some lunges forward in a snowy wooded area", "video_id": "video12818", "sen_id": 239636}, {"caption": "a man is teaching on how to snow ski", "video_id": "video12818", "sen_id": 239637}, {"caption": "a man is skiing and talking about it", "video_id": "video12818", "sen_id": 239638}, {"caption": "guy showing his skying ability on the icy mountain", "video_id": "video12818", "sen_id": 239639}, {"caption": "a monkey is sitting outside with turtles eating food", "video_id": "video12616", "sen_id": 239640}, {"caption": "a monkey in a zoo eating dead animals", "video_id": "video12616", "sen_id": 239641}, {"caption": "a young monkey is eating sweet potatos that belong to the tortoise", "video_id": "video12616", "sen_id": 239642}, {"caption": "monkey and turtles are shown resting in a zoo setting the monkey was chewing on a stick", "video_id": "video12616", "sen_id": 239643}, {"caption": "a monkey in a zoo eats near large tortoises", "video_id": "video12616", "sen_id": 239644}, {"caption": "a monkey and some tortoises are enjoying food in a zoo enclosure", "video_id": "video12616", "sen_id": 239645}, {"caption": "a tan-and-white monkey with a dark face shares a large pile of cut vegetables spread in a clearing by woods with three large tortoises", "video_id": "video12616", "sen_id": 239646}, {"caption": "{}", "video_id": "video12616", "sen_id": 239647}, {"caption": "a monkey in the forest eating some eat potatoes", "video_id": "video12616", "sen_id": 239648}, {"caption": "the monkey is eating some things and the tortoise is near the monkey", "video_id": "video12616", "sen_id": 239649}, {"caption": "a monkey is eating a peice of fruit while looking at turtles", "video_id": "video12616", "sen_id": 239650}, {"caption": "the monkey eats the various vegetables put out for the tortoises", "video_id": "video12616", "sen_id": 239651}, {"caption": "a small monkey eating some sweet potatoes in the forest", "video_id": "video12616", "sen_id": 239652}, {"caption": "a monkey is eating vegetables and some tortise are also there", "video_id": "video12616", "sen_id": 239653}, {"caption": "monkey eating something and watching near some turtle", "video_id": "video12616", "sen_id": 239654}, {"caption": "a monkey feeds on food of tortoises and is very satisfied posing for the snap", "video_id": "video12616", "sen_id": 239655}, {"caption": "a monkey with a black face is looking around", "video_id": "video12616", "sen_id": 239656}, {"caption": "monkey is seen in different actions in this clip", "video_id": "video12616", "sen_id": 239657}, {"caption": "monkey is watching the tortoise and eating some thing", "video_id": "video12616", "sen_id": 239658}, {"caption": "one monkey can eating near some turtle there", "video_id": "video12616", "sen_id": 239659}, {"caption": "a man michael lewis at the digital film makers panel is talking about the transformation from analog to digital", "video_id": "video10172", "sen_id": 239660}, {"caption": "a man in a black suit sits on a white chair while holding a microphone", "video_id": "video10172", "sen_id": 239661}, {"caption": "a man in a dark suit setting a white chair uses a microphone to talk to a room full of people", "video_id": "video10172", "sen_id": 239662}, {"caption": "a man wearing a black suit sitting in a white chair and has black hair speak into a microphone in front of brown curtains", "video_id": "video10172", "sen_id": 239663}, {"caption": "a man is sitting on a white chair speaking into a microphone", "video_id": "video10172", "sen_id": 239664}, {"caption": "a man is sitting in a chair with a microphone in his hand", "video_id": "video10172", "sen_id": 239665}, {"caption": "a man in black suit sits in a white chair and talks into a microphone", "video_id": "video10172", "sen_id": 239666}, {"caption": "a man lecturing about digital filming and the transformation from analog to digital", "video_id": "video10172", "sen_id": 239667}, {"caption": "a man wearing black color dress talking", "video_id": "video10172", "sen_id": 239668}, {"caption": "a moderator of a panel opens up an hour long conversation about developments in video recording", "video_id": "video10172", "sen_id": 239669}, {"caption": "a guy wearing all black sits on a white couch", "video_id": "video10172", "sen_id": 239670}, {"caption": "a man talking with black color dressed in a chair", "video_id": "video10172", "sen_id": 239671}, {"caption": "a person holding the mic and addressing to the crowd of people", "video_id": "video10172", "sen_id": 239672}, {"caption": "michael lewis is speaking to a crowd introducing the digital film making panel", "video_id": "video10172", "sen_id": 239673}, {"caption": "a man speaking about something by sitting to viewers in the stage using mike", "video_id": "video10172", "sen_id": 239674}, {"caption": "a man wearing black color dress is talking by mike", "video_id": "video10172", "sen_id": 239675}, {"caption": "a person in black dress sitting on the sofa and speaking in the mic seeing some notes", "video_id": "video10172", "sen_id": 239676}, {"caption": "a man wearing a black outfit while holding a microphone in his hand", "video_id": "video10172", "sen_id": 239677}, {"caption": "man in black suit is having a conversation for the television", "video_id": "video10172", "sen_id": 239678}, {"caption": "a guy with a microphone is talking", "video_id": "video10172", "sen_id": 239679}, {"caption": "a woman with a black hat is cutting some vegetable on a cutting board", "video_id": "video12216", "sen_id": 239680}, {"caption": "a woman with long curly hair chops vegetables and adds them to a bowl", "video_id": "video12216", "sen_id": 239681}, {"caption": "woman slices a tomato and adds it to a bowl of lettuce", "video_id": "video12216", "sen_id": 239682}, {"caption": "a young woman in black slices up a red bell pepper at a kitchen counter", "video_id": "video12216", "sen_id": 239683}, {"caption": "a lady with a black hat and black shirt chopping up a tomato to put into a white bowl that has possibly lettuce in it", "video_id": "video12216", "sen_id": 239684}, {"caption": "a woman chops tomatoes on a wooden cutting board and adds them to a bowl of spinach", "video_id": "video12216", "sen_id": 239685}, {"caption": "a young woman in a black outfit and hat is cutting up tomatoes and putting them in a bowl", "video_id": "video12216", "sen_id": 239686}, {"caption": "a woman with long blond hair and a black shirt is chopping tomatoes on a wooden cutting board", "video_id": "video12216", "sen_id": 239687}, {"caption": "a woman in a kitchen slicing fruits and vegetables to put in a bowl", "video_id": "video12216", "sen_id": 239688}, {"caption": "a women is cutting up a tomato to cook a meal", "video_id": "video12216", "sen_id": 239689}, {"caption": "in a kitchen a woman in a black shirt is slicing tomato", "video_id": "video12216", "sen_id": 239690}, {"caption": "a woman is cutting tomatoes into slices on a wood board and then combine them with a bowl of greens in the kitchen", "video_id": "video12216", "sen_id": 239691}, {"caption": "a women is cutting vegetables to prepare food in kitchen", "video_id": "video12216", "sen_id": 239692}, {"caption": "a blonde woman wearing a black beanie is chopping ingredients for a dish she is making", "video_id": "video12216", "sen_id": 239693}, {"caption": "a lady cut the tomatoes in her kitchen to make a dish", "video_id": "video12216", "sen_id": 239694}, {"caption": "a woman in a kitchen slices tomatoes and adds them to a bowl of greens", "video_id": "video12216", "sen_id": 239695}, {"caption": "a woman chops a tomato on a cutting board", "video_id": "video12216", "sen_id": 239696}, {"caption": "a woman is slicing up a paprika to be added to a salad", "video_id": "video12216", "sen_id": 239697}, {"caption": "a woman chops up a tomato on her kitchen counter", "video_id": "video12216", "sen_id": 239698}, {"caption": "a woman in a black shirt is slicing vegetables and puts them in a bowl", "video_id": "video12216", "sen_id": 239699}, {"caption": "a worker commentator talks about a technological project his organization worked on", "video_id": "video10368", "sen_id": 239700}, {"caption": "men sit around tables with refreshments at hand and a man discusses materials", "video_id": "video10368", "sen_id": 239701}, {"caption": "an into to a show featuring many men dressed in business suits", "video_id": "video10368", "sen_id": 239702}, {"caption": "a man wearing black eyeglass frames wears a blue shirt he joins others in an informal and relaxed meeting in a high-rise building and a man carves details into clay car models in a workroom", "video_id": "video10368", "sen_id": 239703}, {"caption": "men are sitting around a table and a model car is being constructed", "video_id": "video10368", "sen_id": 239704}, {"caption": "man talking about the design of a product as it shows people designing prototypes", "video_id": "video10368", "sen_id": 239705}, {"caption": "business men sitting and discussing about designing a new car", "video_id": "video10368", "sen_id": 239706}, {"caption": "a group of business leaders set at a conference table in a well lit office", "video_id": "video10368", "sen_id": 239707}, {"caption": "a man in blue color dress wearing cloth many people sitting and drinking and a boy in black dress preparing model displaying on screen", "video_id": "video10368", "sen_id": 239708}, {"caption": "the group of men sitting together discuss ideas for new cars", "video_id": "video10368", "sen_id": 239709}, {"caption": "a man is explaining an idea on car design", "video_id": "video10368", "sen_id": 239710}, {"caption": "a three man sitting and a group of man sitting", "video_id": "video10368", "sen_id": 239711}, {"caption": "a shop holds several medels of carvings made", "video_id": "video10368", "sen_id": 239712}, {"caption": "a person in blue many person sitting drinking tea and model of machine displaying on screen", "video_id": "video10368", "sen_id": 239713}, {"caption": "a guy with glasses is speaking in front", "video_id": "video10368", "sen_id": 239714}, {"caption": "there are some car models in a company", "video_id": "video10368", "sen_id": 239715}, {"caption": "a group of men are sitting and one of them doing some thing", "video_id": "video10368", "sen_id": 239716}, {"caption": "an it guy sits and talks about modern tech", "video_id": "video10368", "sen_id": 239717}, {"caption": "a man is talking about a car that is being worked on as a smaller model", "video_id": "video10368", "sen_id": 239718}, {"caption": "a man with glasses is speaking about something", "video_id": "video10368", "sen_id": 239719}, {"caption": "a clip of a group of people who are working on a game jam", "video_id": "video10933", "sen_id": 239720}, {"caption": "a man in a black shirt talks to the camera while others in the background work on computers", "video_id": "video10933", "sen_id": 239721}, {"caption": "a man wearing a black shirt is drawing using a tablet device", "video_id": "video10933", "sen_id": 239722}, {"caption": "a gaming competition is taking place between many people", "video_id": "video10933", "sen_id": 239723}, {"caption": "a male game developer in a black tee shirt talks about his job in a room full of other game developers", "video_id": "video10933", "sen_id": 239724}, {"caption": "there is a machine followed by a man in black speaking and then a child drawing a man on a tablet", "video_id": "video10933", "sen_id": 239725}, {"caption": "a guy talks about creative design at a bright office area", "video_id": "video10933", "sen_id": 239726}, {"caption": "a man black tshirt talking from an office", "video_id": "video10933", "sen_id": 239727}, {"caption": "a young boy drawing a man into a computer", "video_id": "video10933", "sen_id": 239728}, {"caption": "a man introducing a gaming and application convention or meeting place", "video_id": "video10933", "sen_id": 239729}, {"caption": "the man with black shirt saying something about painting in computer", "video_id": "video10933", "sen_id": 239730}, {"caption": "there is a tshirt man talking about his job", "video_id": "video10933", "sen_id": 239731}, {"caption": "a man seated infront of people inside a room", "video_id": "video10933", "sen_id": 239732}, {"caption": "a man is talking about producing video games", "video_id": "video10933", "sen_id": 239733}, {"caption": "a guy talks about working with a team of different colleagues that are producing a game", "video_id": "video10933", "sen_id": 239734}, {"caption": "the man with red hair teaches the students how to draw on the computers", "video_id": "video10933", "sen_id": 239735}, {"caption": "people seated in a classrome where one boy is drawing", "video_id": "video10933", "sen_id": 239736}, {"caption": "a man tells of the game-jam competition going on in the background and we get to see a close-up of one of the game designer s work", "video_id": "video10933", "sen_id": 239737}, {"caption": "a man in black sweatshirt is standing in front of a room of desks with computer monitors explaining the activities going on", "video_id": "video10933", "sen_id": 239738}, {"caption": "a man in a black shirt is talking to some people", "video_id": "video10933", "sen_id": 239739}, {"caption": "a man is talking surrounded by ingredients", "video_id": "video11461", "sen_id": 239740}, {"caption": "a man in a red apron is talking in the kitchen", "video_id": "video11461", "sen_id": 239741}, {"caption": "a man in a kitchen preparing some dish and explaining the same", "video_id": "video11461", "sen_id": 239742}, {"caption": "in a kitchena person making and describing a recipe", "video_id": "video11461", "sen_id": 239743}, {"caption": "a chef is telling about healthy food items", "video_id": "video11461", "sen_id": 239744}, {"caption": "a cook with a red apron stands in the kitcen", "video_id": "video11461", "sen_id": 239745}, {"caption": "a man in a kitchen wearing a red apron and black shirt is explaining why he likes cooking stir fry", "video_id": "video11461", "sen_id": 239746}, {"caption": "a man in black shirt is preparing special food in kitchen", "video_id": "video11461", "sen_id": 239747}, {"caption": "its the cooking show in the tv the man wears the red apron", "video_id": "video11461", "sen_id": 239748}, {"caption": "a boy wearing black dress preparing dish inside kitchen vegetables on table cooking to eat", "video_id": "video11461", "sen_id": 239749}, {"caption": "a guy in a red apron is talking to the camera", "video_id": "video11461", "sen_id": 239750}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11461", "sen_id": 239751}, {"caption": "one boy talks about the recipe in kitchen", "video_id": "video11461", "sen_id": 239752}, {"caption": "a man with a red apron is explaining why he loves the dish he is preparing in the kitchen", "video_id": "video11461", "sen_id": 239753}, {"caption": "a man is standing in kitchen frying veges and teaching how to cook", "video_id": "video11461", "sen_id": 239754}, {"caption": "a man in a red apron is speaking about something", "video_id": "video11461", "sen_id": 239755}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11461", "sen_id": 239756}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11461", "sen_id": 239757}, {"caption": "a person wearing an red apron in the kitchen surrounded by bowls of food", "video_id": "video11461", "sen_id": 239758}, {"caption": "a man wearing red apron is talking about a recipe he made", "video_id": "video11461", "sen_id": 239759}, {"caption": "a cartoon horse talks to a woman with dark hair and checks out a woman in a red dress", "video_id": "video11528", "sen_id": 239760}, {"caption": "a person with a horse head is shown talking to some women", "video_id": "video11528", "sen_id": 239761}, {"caption": "a horse talks in a cartoon to a girl in a green jacket", "video_id": "video11528", "sen_id": 239762}, {"caption": "a cartoon character with a horses head is talking to a woman only to get distracted when another woman walks by", "video_id": "video11528", "sen_id": 239763}, {"caption": "cartoon of middle aged man with a horses head checking out a woman", "video_id": "video11528", "sen_id": 239764}, {"caption": "a cartoon character with a horses head is talking to a woman only to get distracted when another woman walks by", "video_id": "video11528", "sen_id": 239765}, {"caption": "a cartoon is shown while a voiceover discusses netflix", "video_id": "video11528", "sen_id": 239766}, {"caption": "a female character and an animal character (horse) are having a conversation on the sidewalk", "video_id": "video11528", "sen_id": 239767}, {"caption": "an animated half horse half man speaks with a blue haired animated asian woman in a loft in the hollywood hills", "video_id": "video11528", "sen_id": 239768}, {"caption": "watch more clips and highlights from tonight's upcoming episode on late night cartoon network", "video_id": "video11528", "sen_id": 239769}, {"caption": "horseman gets distracted from his conversation with friend by a pretty woman", "video_id": "video11528", "sen_id": 239770}, {"caption": "a young female talks to a man who is wearing a horse head", "video_id": "video11528", "sen_id": 239771}, {"caption": "a horseman talking to a woman and then checking out a woman as she passes by", "video_id": "video11528", "sen_id": 239772}, {"caption": "a female voice talking about clips of a cartoon on youtube", "video_id": "video11528", "sen_id": 239773}, {"caption": "an entertainment television reporter reviews horseman jack with out-takes from the show", "video_id": "video11528", "sen_id": 239774}, {"caption": "there is a monkey playing with a friend", "video_id": "video11528", "sen_id": 239775}, {"caption": "an animated cartoon is shown for the childrens on the screen", "video_id": "video11528", "sen_id": 239776}, {"caption": "the woman wearing a red dress walks by the men", "video_id": "video11528", "sen_id": 239777}, {"caption": "animated cartoon characters are movingdancing talking and playing in a beautiful place", "video_id": "video11528", "sen_id": 239778}, {"caption": "a narrator talks about clever moments in bojack horseman", "video_id": "video11528", "sen_id": 239779}, {"caption": "a commercial for a university or a company", "video_id": "video12834", "sen_id": 239780}, {"caption": "a number of people discuss where computer science is seen in use throughout society", "video_id": "video12834", "sen_id": 239781}, {"caption": "a number of people people talking about applications of computer science", "video_id": "video12834", "sen_id": 239782}, {"caption": "four different people in four different locations are speaking to the camera", "video_id": "video12834", "sen_id": 239783}, {"caption": "various individuals sitting and talking in an office setting", "video_id": "video12834", "sen_id": 239784}, {"caption": "a man is sitting in a classroom speaking to the camera then the scene cuts to another man speaking then a woman speaking and third man speaking lastly it cuts back to the first mans speaking all are separate scenes", "video_id": "video12834", "sen_id": 239785}, {"caption": "random assortment of individuals describing the uses of computer science", "video_id": "video12834", "sen_id": 239786}, {"caption": "there are three people talking about how computer science can monitor your body and save lives and one person who mentioned national security", "video_id": "video12834", "sen_id": 239787}, {"caption": "several people are speaking in a classroom setting and there are monitors and chairs in their vicinity", "video_id": "video12834", "sen_id": 239788}, {"caption": "listen to today's interviews captured by interns on local small business owners", "video_id": "video12834", "sen_id": 239789}, {"caption": "a man talking in a classroom a kid talking by computers and various adults talking", "video_id": "video12834", "sen_id": 239790}, {"caption": "different people sitting down giving their opinions on a certain topic", "video_id": "video12834", "sen_id": 239791}, {"caption": "people of different ages are seated and talking one after another at different locations", "video_id": "video12834", "sen_id": 239792}, {"caption": "people of different heritages talking about technology and how to save lives", "video_id": "video12834", "sen_id": 239793}, {"caption": "a person is speaking his experience about his carrier", "video_id": "video12834", "sen_id": 239794}, {"caption": "a teacher tells us that he see computer technology everywhere and three tech users agree in testimonial", "video_id": "video12834", "sen_id": 239795}, {"caption": "several people talk about the importance of computer science", "video_id": "video12834", "sen_id": 239796}, {"caption": "people talking to the camera with different backgrounds behind them", "video_id": "video12834", "sen_id": 239797}, {"caption": "different people sit in office and classroom with computer stations in background", "video_id": "video12834", "sen_id": 239798}, {"caption": "some technical discussion about from computer science to medical science which helps to save lives", "video_id": "video12834", "sen_id": 239799}, {"caption": "a cat falls off a desk while grabbing a waffle ice cream sandwich; a cat has a bowel-movement accident while using the toilet; and a cat jumps on a toddler swinging a cat toy", "video_id": "video12619", "sen_id": 239800}, {"caption": "cats falling and attacking", "video_id": "video12619", "sen_id": 239801}, {"caption": "cats in different homes jumping and acting crazy", "video_id": "video12619", "sen_id": 239802}, {"caption": "people are amused by cats falling jumping and doing tricks", "video_id": "video12619", "sen_id": 239803}, {"caption": "a compilation of cat videos of humorous situations", "video_id": "video12619", "sen_id": 239804}, {"caption": "a montage of 3 different cats falling down is shown", "video_id": "video12619", "sen_id": 239805}, {"caption": "numerous clips which involve cats getting into accidents", "video_id": "video12619", "sen_id": 239806}, {"caption": "a deer and cat make friends in a backyard", "video_id": "video12619", "sen_id": 239807}, {"caption": "various clips of cats and kitten doing silly things", "video_id": "video12619", "sen_id": 239808}, {"caption": "pet animals doing the funny things in a video clips", "video_id": "video12619", "sen_id": 239809}, {"caption": "cats fall after trying to attempt silly stunts", "video_id": "video12619", "sen_id": 239810}, {"caption": "a dong is trying to take a biscuit and fall down then a cat jumps on a boy", "video_id": "video12619", "sen_id": 239811}, {"caption": "a cat plays with a waffle on a table when he slips off along with other funny cat moments", "video_id": "video12619", "sen_id": 239812}, {"caption": "a white color cat taking mouth and sitting in bath room and jumping on kid falling down displaying on screen", "video_id": "video12619", "sen_id": 239813}, {"caption": "a kid with blonde hair is inside of a room", "video_id": "video12619", "sen_id": 239814}, {"caption": "cats failing at trying to be sneaky or attack", "video_id": "video12619", "sen_id": 239815}, {"caption": "food is placed on bowl for kid its been taken by dog then a little boy play with his pets", "video_id": "video12619", "sen_id": 239816}, {"caption": "cats doing funny things in front of the camera", "video_id": "video12619", "sen_id": 239817}, {"caption": "several videos of cats playing and getting into mischief", "video_id": "video12619", "sen_id": 239818}, {"caption": "a cat steals a waffle ice cream sandwich and falls off a desk", "video_id": "video12619", "sen_id": 239819}, {"caption": "a male is describing why he likes his athletic gloves", "video_id": "video12803", "sen_id": 239820}, {"caption": "a man is advertising his used baseball gloves", "video_id": "video12803", "sen_id": 239821}, {"caption": "a pile of sports equipment sits inside of a room", "video_id": "video12803", "sen_id": 239822}, {"caption": "an off-screen young man who sounds like a teenager displays and describes his pro baseball glove that is for sale", "video_id": "video12803", "sen_id": 239823}, {"caption": "a brown baseball glove and yellow baseball is seen", "video_id": "video12803", "sen_id": 239824}, {"caption": "a voiceover colorful graphic that shows several different baseball gloves and baseballs", "video_id": "video12803", "sen_id": 239825}, {"caption": "a table with baseball gloves and balls is shown while a man talks about them", "video_id": "video12803", "sen_id": 239826}, {"caption": "there are some baseball glows on the table", "video_id": "video12803", "sen_id": 239827}, {"caption": "the man talks about the gloves which he has for sales", "video_id": "video12803", "sen_id": 239828}, {"caption": "a man shows a lot of his sporting equipment focusing on a baseball catcher s mitt that he has for sale", "video_id": "video12803", "sen_id": 239829}, {"caption": "a boy is giving us a tour inside his room of his various shoe collections and some balls", "video_id": "video12803", "sen_id": 239830}, {"caption": "the ball and bags and other items are there", "video_id": "video12803", "sen_id": 239831}, {"caption": "there are some glows with balls on the table", "video_id": "video12803", "sen_id": 239832}, {"caption": "quite a few items out here including tennis balls a kind of cushioned bag and the thing in black looks like a cut-off picture of a child s scooter", "video_id": "video12803", "sen_id": 239833}, {"caption": "a man is documenting different softball gloves that range in colors", "video_id": "video12803", "sen_id": 239834}, {"caption": "the accessories and balls of some players are displayed here", "video_id": "video12803", "sen_id": 239835}, {"caption": "a women is applying eye lliner for her eyes", "video_id": "video12803", "sen_id": 239836}, {"caption": "different baseball gloves that are for sale", "video_id": "video12803", "sen_id": 239837}, {"caption": "its all the things required for playing a very old ball and few other things are placed down", "video_id": "video12803", "sen_id": 239838}, {"caption": "a tan and maroon baseball glove is flanked by various balls used in sports to the right and a black baseball glove to its left", "video_id": "video12803", "sen_id": 239839}, {"caption": "a woman cleans a fishtank inside the house and then goes outdoors", "video_id": "video11878", "sen_id": 239840}, {"caption": "a montage of a guy setting up an aquarium", "video_id": "video11878", "sen_id": 239841}, {"caption": "a man is placing rocks in the bottom of a water filled aqaurium", "video_id": "video11878", "sen_id": 239842}, {"caption": "a male wearing a gray shirt and has brown hair puts together an aquarium before the scene changes to a lagoon with trees around it", "video_id": "video11878", "sen_id": 239843}, {"caption": "a man in his home cleaning the aquarium", "video_id": "video11878", "sen_id": 239844}, {"caption": "one man cleaning fish tank near a cat and river outside", "video_id": "video11878", "sen_id": 239845}, {"caption": "a boy putting something inside glass arranging things and water scene tress beside", "video_id": "video11878", "sen_id": 239846}, {"caption": "a guys is preparing and decorating an aquarium", "video_id": "video11878", "sen_id": 239847}, {"caption": "a man in t-shirt cleaning the aquarium which kept on the desk", "video_id": "video11878", "sen_id": 239848}, {"caption": "a man cleaning the fish tank in his home", "video_id": "video11878", "sen_id": 239849}, {"caption": "a man cleans out his fish tank and rearranges its parts", "video_id": "video11878", "sen_id": 239850}, {"caption": "a man in a shirt is doing something in a room", "video_id": "video11878", "sen_id": 239851}, {"caption": "a man in t-shirt cleaning his aquarium in the hall", "video_id": "video11878", "sen_id": 239852}, {"caption": "fishes are present in an aquarium and various types", "video_id": "video11878", "sen_id": 239853}, {"caption": "a man places several items into a tank filled with water", "video_id": "video11878", "sen_id": 239854}, {"caption": "the men try to make a fish tank with stones", "video_id": "video11878", "sen_id": 239855}, {"caption": "a tshirt man working with his aquarium in the room", "video_id": "video11878", "sen_id": 239856}, {"caption": "a man is busy with making aquarium ready inside a room near a small pond", "video_id": "video11878", "sen_id": 239857}, {"caption": "a man works on his aquarium aas he puts in rocks and plants", "video_id": "video11878", "sen_id": 239858}, {"caption": "guy in grey tshirt cleaning his fish tank", "video_id": "video11878", "sen_id": 239859}, {"caption": "toy models of a stove and food being displayed", "video_id": "video10794", "sen_id": 239860}, {"caption": "a woman who's wearing red nail polish is playing with play food as she stirs it in a small pot over an unheated stove", "video_id": "video10794", "sen_id": 239861}, {"caption": "two manicured hands move an orange pot with lid which contains an eggplant and white mushrooms from a cutting board to a cheerful stove top where the ingredients are stirred", "video_id": "video10794", "sen_id": 239862}, {"caption": "a woman is pretending to cook fake food on a pretend kitchen stove", "video_id": "video10794", "sen_id": 239863}, {"caption": "a person showing a container filled with play food", "video_id": "video10794", "sen_id": 239864}, {"caption": "a person is showing the contents of a toy plastic bowl", "video_id": "video10794", "sen_id": 239865}, {"caption": "a toy video about how to play with pretend food", "video_id": "video10794", "sen_id": 239866}, {"caption": "a toy kitchen is being demonstrated along with a toy peppa pig", "video_id": "video10794", "sen_id": 239867}, {"caption": "a person is demonstrating imaginary cooking on a child's toy kitchen set", "video_id": "video10794", "sen_id": 239868}, {"caption": "a person is useing a toy cooking set and toy kitchen with toy food to fake cook a meal in an orange pot", "video_id": "video10794", "sen_id": 239869}, {"caption": "there is someone playing with some toys", "video_id": "video10794", "sen_id": 239870}, {"caption": "a person is playing around with a tiny toy pan that has fake vegetables in it", "video_id": "video10794", "sen_id": 239871}, {"caption": "a childs toy stove with pot and food is played with", "video_id": "video10794", "sen_id": 239872}, {"caption": "person is having fun with orange and red toys", "video_id": "video10794", "sen_id": 239873}, {"caption": "a woman mixes toy vegetables in a toy pot on a colorful toy kitchen stove to very upbeat spanish music", "video_id": "video10794", "sen_id": 239874}, {"caption": "a woman demonstrates playing with a plastic children s cooking toy while latin american music plays in the background", "video_id": "video10794", "sen_id": 239875}, {"caption": "a small orange pot is being held the pot is opened to display fake children s food the plastic food is stirred", "video_id": "video10794", "sen_id": 239876}, {"caption": "salsa music plays while a woman shows off a toy cooking set", "video_id": "video10794", "sen_id": 239877}, {"caption": "small toys are used here for playing with kid", "video_id": "video10794", "sen_id": 239878}, {"caption": "a person is holding an orange basket", "video_id": "video10794", "sen_id": 239879}, {"caption": "two people are sitting together talking about china", "video_id": "video12083", "sen_id": 239880}, {"caption": "a long bbc interview with regards to china", "video_id": "video12083", "sen_id": 239881}, {"caption": "a woman talks about china's optimistic economic outlook on a news program", "video_id": "video12083", "sen_id": 239882}, {"caption": "a blonde woman in a blue striped shirt discusses china inflation dropping in september", "video_id": "video12083", "sen_id": 239883}, {"caption": " with blonde chin-length hair and full bangs is wearing a black jacket over an open collar of a blue shirt", "video_id": "video12083", "sen_id": 239884}, {"caption": "a woman in a suit is being interviewed on bbc news about the chinese economy", "video_id": "video12083", "sen_id": 239885}, {"caption": "a women in black suit talking about china s inflation", "video_id": "video12083", "sen_id": 239886}, {"caption": "a lady talking with another person", "video_id": "video12083", "sen_id": 239887}, {"caption": "a woman discusses inflation in the chinese economy", "video_id": "video12083", "sen_id": 239888}, {"caption": "the two news reporters of bbc channel discussing about the china inflation", "video_id": "video12083", "sen_id": 239889}, {"caption": "a british woman wearing a black jacket discusses financial matters involving china", "video_id": "video12083", "sen_id": 239890}, {"caption": "a news reporter is discussing about the inflation of china", "video_id": "video12083", "sen_id": 239891}, {"caption": "a woman is talking about inflation in china the woman is explaining how china is lower prices in their country", "video_id": "video12083", "sen_id": 239892}, {"caption": "women in formal wear talking in a news channel", "video_id": "video12083", "sen_id": 239893}, {"caption": "in a newsroom a woman in black jacket discusses with host economy of china", "video_id": "video12083", "sen_id": 239894}, {"caption": "a couple of people on the news are talking", "video_id": "video12083", "sen_id": 239895}, {"caption": "a lady is talking and wearing black color dress", "video_id": "video12083", "sen_id": 239896}, {"caption": "a woman in a black shirt and blue and white top answering a question asked by a lady news reporter in a red shirt", "video_id": "video12083", "sen_id": 239897}, {"caption": "judith tyson off bbc world news talks in the tv show", "video_id": "video12083", "sen_id": 239898}, {"caption": "a woman is speaking about china inflation on news channel", "video_id": "video12083", "sen_id": 239899}, {"caption": "a woman is modeling a bag", "video_id": "video11781", "sen_id": 239900}, {"caption": "a girl is showing off her recent clothing purchases", "video_id": "video11781", "sen_id": 239901}, {"caption": "this is a clip from a youtube video about a girl showing her recent clothes purchases", "video_id": "video11781", "sen_id": 239902}, {"caption": "a woman wearing an orange bandana and smiling", "video_id": "video11781", "sen_id": 239903}, {"caption": "a lady is describing her outfit of a purse from a thrift store turban from a friend and a army jacket from a vintage store", "video_id": "video11781", "sen_id": 239904}, {"caption": "a young woman describes her fashionable accessories which she obained from various locations such as thirft shop in pennsylvania a friend", "video_id": "video11781", "sen_id": 239905}, {"caption": "a woman dressed in urban clothing shows off her brown bag", "video_id": "video11781", "sen_id": 239906}, {"caption": "women wearing army jacket and posing to camera", "video_id": "video11781", "sen_id": 239907}, {"caption": "a girl shows off her eclectic clothing purchases from a thrift shop in pennsylvania and a vintage shop in london", "video_id": "video11781", "sen_id": 239908}, {"caption": "there is a girl with a purse in front of a mural modeling for the camera", "video_id": "video11781", "sen_id": 239909}, {"caption": "a person is holding up a bag and posing for the camera", "video_id": "video11781", "sen_id": 239910}, {"caption": "a lady in military dress and showing her hand bag and head band of orange colour", "video_id": "video11781", "sen_id": 239911}, {"caption": "a very cute and trendy gal displaying her accessories and modeling them", "video_id": "video11781", "sen_id": 239912}, {"caption": "a woman in black curl hair and wearing cooling glass and hand bag and giving pose", "video_id": "video11781", "sen_id": 239913}, {"caption": "a young woman tells us wear she got various articles of clothing and accessories that she is wearing", "video_id": "video11781", "sen_id": 239914}, {"caption": "here the girl is showing here things like jacket hand bag and hair band that she got from some where else", "video_id": "video11781", "sen_id": 239915}, {"caption": "a woman in a camo jacket in a blue shirt models the clothes she picked up at a thrift store in front of a mural pained on a brick wall", "video_id": "video11781", "sen_id": 239916}, {"caption": "girl in army coat sporting a tan purse for the camera", "video_id": "video11781", "sen_id": 239917}, {"caption": "a young girl in army jacket giving description about her purse", "video_id": "video11781", "sen_id": 239918}, {"caption": "a woman in some camo clothes is standing outside", "video_id": "video11781", "sen_id": 239919}, {"caption": "a man is singing while showing a beautiful outdoors scene", "video_id": "video12989", "sen_id": 239920}, {"caption": "man singing while a camera records trees from the bottom view", "video_id": "video12989", "sen_id": 239921}, {"caption": "trees and blue sky are passing by while music is heard", "video_id": "video12989", "sen_id": 239922}, {"caption": "a person is singing on a stage show with a guiterr", "video_id": "video12989", "sen_id": 239923}, {"caption": "a man playing a guitar and singing a song", "video_id": "video12989", "sen_id": 239924}, {"caption": "a guy plays the guitar and sings a song while trees go by in the background", "video_id": "video12989", "sen_id": 239925}, {"caption": "man singing with his guitar", "video_id": "video12989", "sen_id": 239926}, {"caption": "a male guitarist wearing a red plaid shirts sings a lullaby while the camera shows trees from an underneath perspective while driving down the road", "video_id": "video12989", "sen_id": 239927}, {"caption": "a man plays guitar and sings as images of a forest canopy and the sky are shown", "video_id": "video12989", "sen_id": 239928}, {"caption": "there is a man singing folk music and trees for scenery", "video_id": "video12989", "sen_id": 239929}, {"caption": "views from the bottom of trees looking up while a man sings and plays guitar", "video_id": "video12989", "sen_id": 239930}, {"caption": "street musician playbacking to street music in studio environment while scenes of nature are displayed", "video_id": "video12989", "sen_id": 239931}, {"caption": "a man wearing a red plaid shirt is playing a guitar and is surrounded by many trees", "video_id": "video12989", "sen_id": 239932}, {"caption": "a man wearing red and black check shirt and having violin is singing a song", "video_id": "video12989", "sen_id": 239933}, {"caption": "a person is filming the sky out side", "video_id": "video12989", "sen_id": 239934}, {"caption": "a male guitar player sings in a forest background", "video_id": "video12989", "sen_id": 239935}, {"caption": "a man is singing and playing guitar while images of trees are shown", "video_id": "video12989", "sen_id": 239936}, {"caption": "a man is singing a song and scenary is shown", "video_id": "video12989", "sen_id": 239937}, {"caption": "man in red shirt is playing a guitar in the mountain", "video_id": "video12989", "sen_id": 239938}, {"caption": "a person with a guitar is looking at something", "video_id": "video12989", "sen_id": 239939}, {"caption": "a man wearing sunglasses is driving his car to an animal sanctuary", "video_id": "video12679", "sen_id": 239940}, {"caption": "a man wearing sunglasses drives his car", "video_id": "video12679", "sen_id": 239941}, {"caption": "a man drives a rescued animal to a shelter", "video_id": "video12679", "sen_id": 239942}, {"caption": "a man in sunglasses is driving a car in a remote area", "video_id": "video12679", "sen_id": 239943}, {"caption": "a man is talking while driving to a destination", "video_id": "video12679", "sen_id": 239944}, {"caption": "a man driving down a dirt road in a remote area toward an animal sanctuary", "video_id": "video12679", "sen_id": 239945}, {"caption": "a man inside the car explaining something in front of the camera", "video_id": "video12679", "sen_id": 239946}, {"caption": "a man is driving in a car to a large sanctuary", "video_id": "video12679", "sen_id": 239947}, {"caption": " wearing sunglasses drives on a tan road bordered with fencing and stones through a deserted and flat area toward a low building between trees", "video_id": "video12679", "sen_id": 239948}, {"caption": "a man in a black shirt is driving a car talking about his work with an animal sanctuary", "video_id": "video12679", "sen_id": 239949}, {"caption": "there is a cooling glass man riding a car", "video_id": "video12679", "sen_id": 239950}, {"caption": "a man drives a car on a very rural road to an animal sanctuary", "video_id": "video12679", "sen_id": 239951}, {"caption": "a man driving a car down a remote road to an animal sanctuary", "video_id": "video12679", "sen_id": 239952}, {"caption": "a person wearing cooling glass riding a car on the road and speaking while driving", "video_id": "video12679", "sen_id": 239953}, {"caption": "a dash cam is recording someone as they drive", "video_id": "video12679", "sen_id": 239954}, {"caption": "a man wearing sunglasses is driving down street explaining about a remote sanctuary", "video_id": "video12679", "sen_id": 239955}, {"caption": "a man wearing sunglasses and a black shirt driving a car to a remote sanctuary", "video_id": "video12679", "sen_id": 239956}, {"caption": "a man is driving a car in the rural road", "video_id": "video12679", "sen_id": 239957}, {"caption": "a man in sunglasses and a black shirt is driving down a long road", "video_id": "video12679", "sen_id": 239958}, {"caption": "a man in a car is driving around on a street", "video_id": "video12679", "sen_id": 239959}, {"caption": "two plastic pumpkins filled with candy set on a tiled floor", "video_id": "video12243", "sen_id": 239960}, {"caption": "a picture of two pumpkins and music playing in the background", "video_id": "video12243", "sen_id": 239961}, {"caption": "orange pails filled with candy sitting on top of a tile floor", "video_id": "video12243", "sen_id": 239962}, {"caption": "a picture of halloween candy is shown and the word candy is spelled out", "video_id": "video12243", "sen_id": 239963}, {"caption": "there are two plastic orange pumpkin baskets sitting on a brown tile floor with candy in them", "video_id": "video12243", "sen_id": 239964}, {"caption": "candy is prepared in the space of pumkin", "video_id": "video12243", "sen_id": 239965}, {"caption": "a orange colored candy halloween are placed on the ground one is bigger and other one is smaller", "video_id": "video12243", "sen_id": 239966}, {"caption": "a man discusses halloween candy and teaches how to spell the word candy", "video_id": "video12243", "sen_id": 239967}, {"caption": "a man is spelling out candy letter by letter", "video_id": "video12243", "sen_id": 239968}, {"caption": "candy is shown and spelling is being read by someone", "video_id": "video12243", "sen_id": 239969}, {"caption": "a man spells out words related to halloween", "video_id": "video12243", "sen_id": 239970}, {"caption": "a lot of candy inside the carved pumpkin", "video_id": "video12243", "sen_id": 239971}, {"caption": "there is two orange balls with verity designs", "video_id": "video12243", "sen_id": 239972}, {"caption": "a orange color ball are kept on a ground", "video_id": "video12243", "sen_id": 239973}, {"caption": "a hollowin pumpkin is ready for the celebration", "video_id": "video12243", "sen_id": 239974}, {"caption": "some pumpkins are on the floor", "video_id": "video12243", "sen_id": 239975}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video12243", "sen_id": 239976}, {"caption": "a halloween montage demonstrates how to spell the word candy", "video_id": "video12243", "sen_id": 239977}, {"caption": "a man telling a spelling for a candy", "video_id": "video12243", "sen_id": 239978}, {"caption": "a still images of candy chocalate on screen displaying on screen", "video_id": "video12243", "sen_id": 239979}, {"caption": "a man talks about cars in the video game called gta5", "video_id": "video11792", "sen_id": 239980}, {"caption": "a man is showing how to play a car racing video game", "video_id": "video11792", "sen_id": 239981}, {"caption": "a yellow sportscar is shown driving down the tunnel", "video_id": "video11792", "sen_id": 239982}, {"caption": "a person driving in a tunnel in a car in a video game setting", "video_id": "video11792", "sen_id": 239983}, {"caption": "a white car is driving through a tunnel and briefly stops", "video_id": "video11792", "sen_id": 239984}, {"caption": "a video gamer demonstrates the driving mechanics of the game grand theft auto 5", "video_id": "video11792", "sen_id": 239985}, {"caption": "a car is driving through a tunnel and is being shown from different angles", "video_id": "video11792", "sen_id": 239986}, {"caption": "a white car is moving very fast with no other vehicle around", "video_id": "video11792", "sen_id": 239987}, {"caption": "a person is telling all the features of interior of car", "video_id": "video11792", "sen_id": 239988}, {"caption": "a young man describes and demonstrates a video game he is playing", "video_id": "video11792", "sen_id": 239989}, {"caption": "there is a car riding in to a subway", "video_id": "video11792", "sen_id": 239990}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video11792", "sen_id": 239991}, {"caption": "an animated car going on the road in 3d gane", "video_id": "video11792", "sen_id": 239992}, {"caption": "car game video i which the yellow color car is running in the tunnel", "video_id": "video11792", "sen_id": 239993}, {"caption": "a man explaining how to engage the air brake mode in a racing game", "video_id": "video11792", "sen_id": 239994}, {"caption": "there is a yellow car riding on the street", "video_id": "video11792", "sen_id": 239995}, {"caption": "a man drives a car in a video game through a tunnel", "video_id": "video11792", "sen_id": 239996}, {"caption": "a car is running into the tunnel and break it", "video_id": "video11792", "sen_id": 239997}, {"caption": "a race car driver stops inside a tunnel and speeds up", "video_id": "video11792", "sen_id": 239998}, {"caption": "a car is driving around through a city tunnel", "video_id": "video11792", "sen_id": 239999}, {"caption": "a person assembles a metal object with tiny screwdriver ans screws", "video_id": "video12331", "sen_id": 240000}, {"caption": "a time lapse construction of a mount of some kind", "video_id": "video12331", "sen_id": 240001}, {"caption": "somebody assembing a scale model with nice music", "video_id": "video12331", "sen_id": 240002}, {"caption": "a man demonstrates how to assemble a frame for a small drone", "video_id": "video12331", "sen_id": 240003}, {"caption": "a time lapse of an object being built is shown", "video_id": "video12331", "sen_id": 240004}, {"caption": "a person using glue to assemble what looks like a drone", "video_id": "video12331", "sen_id": 240005}, {"caption": "someone is putting tools together to create something", "video_id": "video12331", "sen_id": 240006}, {"caption": "there is someone fixing a product on the table", "video_id": "video12331", "sen_id": 240007}, {"caption": "the person put the craft together with the tools", "video_id": "video12331", "sen_id": 240008}, {"caption": "a man at rapid pace assembles a platform at a table", "video_id": "video12331", "sen_id": 240009}, {"caption": "someone is putting together some sort of model with glue", "video_id": "video12331", "sen_id": 240010}, {"caption": "a sped up video of a man s hands building a drone part by part", "video_id": "video12331", "sen_id": 240011}, {"caption": "a person is assembling a device using a number of tools", "video_id": "video12331", "sen_id": 240012}, {"caption": "a person builds a model with screws and screw driver", "video_id": "video12331", "sen_id": 240013}, {"caption": "a person puts together a tv stand in very fast motion", "video_id": "video12331", "sen_id": 240014}, {"caption": "a man is fixing a black object with screws nuts etc", "video_id": "video12331", "sen_id": 240015}, {"caption": "someone is assembling a metal craft project with many small pieces", "video_id": "video12331", "sen_id": 240016}, {"caption": "something is being assemblied by a person in fast forward", "video_id": "video12331", "sen_id": 240017}, {"caption": "a person is making the parts of fan in to one product", "video_id": "video12331", "sen_id": 240018}, {"caption": "a person assembles a black piece of equipment", "video_id": "video12331", "sen_id": 240019}, {"caption": "a female skier charges down the side of a massive snowy mountain", "video_id": "video12127", "sen_id": 240020}, {"caption": "a downhill skier races down a sheer cliff that is covered in snow", "video_id": "video12127", "sen_id": 240021}, {"caption": "a far capture of a person skiing down a snowy hill", "video_id": "video12127", "sen_id": 240022}, {"caption": "a skiing down a huge mountain and snowing falling down", "video_id": "video12127", "sen_id": 240023}, {"caption": "a woman snow skiing down a very steep mountain", "video_id": "video12127", "sen_id": 240024}, {"caption": "a woman is snowboarding down a steep mountain which is very dangerous", "video_id": "video12127", "sen_id": 240025}, {"caption": "there is a woman snowboarding down a giant snow mountain", "video_id": "video12127", "sen_id": 240026}, {"caption": "a person is skiing down the side of a mountain", "video_id": "video12127", "sen_id": 240027}, {"caption": "someone skiing down a mountain with snow rolling down the side of the mountain behind them", "video_id": "video12127", "sen_id": 240028}, {"caption": "a girl in red dress snow land doing skating on snow land from up side smiling face displaying on screen", "video_id": "video12127", "sen_id": 240029}, {"caption": "a woman is skiing down a mountain with an avalanche behind her", "video_id": "video12127", "sen_id": 240030}, {"caption": "a female skier going down the side of a snowy mountain while the snow is falling all around her", "video_id": "video12127", "sen_id": 240031}, {"caption": "a woman is skating down from ice hill", "video_id": "video12127", "sen_id": 240032}, {"caption": "a man skis down a very large and steep mountain with snow avalanching behind him and raucus garage rock music plays", "video_id": "video12127", "sen_id": 240033}, {"caption": "a woman is skiing down a huge mountain", "video_id": "video12127", "sen_id": 240034}, {"caption": "someone is skiing quickly down a mountain narrowly missing being swept away by a rolling snow", "video_id": "video12127", "sen_id": 240035}, {"caption": "skier heli dropped and skiing mountain while starting small avalanche", "video_id": "video12127", "sen_id": 240036}, {"caption": "a woman is snowboarding down a very treacherous mountainside with skill and ease", "video_id": "video12127", "sen_id": 240037}, {"caption": "some one is playing skkies on a snow covered hills", "video_id": "video12127", "sen_id": 240038}, {"caption": "a woman is skiing down a mountain to energetic rock music", "video_id": "video12127", "sen_id": 240039}, {"caption": "a man giving an review about an android phone", "video_id": "video11853", "sen_id": 240040}, {"caption": "a man with strange hair stands in front of a car clip art piece speaking in a foreign language", "video_id": "video11853", "sen_id": 240041}, {"caption": "a man takes selfies on a pink phone while standing in front of a background with a vehicle drawn on it", "video_id": "video11853", "sen_id": 240042}, {"caption": "a man holds up his phone as he talks and explains things about it", "video_id": "video11853", "sen_id": 240043}, {"caption": "a man is waving a pink phone around while speaking", "video_id": "video11853", "sen_id": 240044}, {"caption": "a man in a blue polo is showing a smart phone and talking about it in a house", "video_id": "video11853", "sen_id": 240045}, {"caption": "a young boy in t-shirt explaining the features of a pink coloured mobie", "video_id": "video11853", "sen_id": 240046}, {"caption": "a men with pink mobile explains features of mobile", "video_id": "video11853", "sen_id": 240047}, {"caption": "one man talks about the mobile in pink color", "video_id": "video11853", "sen_id": 240048}, {"caption": "a old man in blue dress wearing holding a mobile a car still image behind speaking displaying on screen", "video_id": "video11853", "sen_id": 240049}, {"caption": "bearded guy in blue shirt talking to the camera", "video_id": "video11853", "sen_id": 240050}, {"caption": "there is a man talking about his mobile phone", "video_id": "video11853", "sen_id": 240051}, {"caption": " with hair standing up holds a pink cell phone in front of a black car with bright headlights grill and windshield", "video_id": "video11853", "sen_id": 240052}, {"caption": "a person with a mobile in his hand is explaining about the mobile", "video_id": "video11853", "sen_id": 240053}, {"caption": "a person is telling about the newly brand cell phone features", "video_id": "video11853", "sen_id": 240054}, {"caption": "a guy with a blue shirt is talking on tv", "video_id": "video11853", "sen_id": 240055}, {"caption": "a men in white tshirt is telling about mobile phones", "video_id": "video11853", "sen_id": 240056}, {"caption": "a man is holding a pink phone sitting in front of a wall hanging of a car", "video_id": "video11853", "sen_id": 240057}, {"caption": "a man in a blue shirt is talking about a pink cell phone", "video_id": "video11853", "sen_id": 240058}, {"caption": "a guy with pink phone is talking to the camera", "video_id": "video11853", "sen_id": 240059}, {"caption": "a man shows features of a trailer", "video_id": "video10877", "sen_id": 240060}, {"caption": "a man points out the large drawers built underneath a bed", "video_id": "video10877", "sen_id": 240061}, {"caption": "a person showing a door on a fifth wheeler trailer", "video_id": "video10877", "sen_id": 240062}, {"caption": "a man in a garage shows off storage drawers under a wooden platform", "video_id": "video10877", "sen_id": 240063}, {"caption": "a man shows a drawer that is hidden under a bed", "video_id": "video10877", "sen_id": 240064}, {"caption": "a guy is showing the interior of rv where he pulls out a big board that composes two beds", "video_id": "video10877", "sen_id": 240065}, {"caption": "this is a video of drawers that are located in the upper portion of a garage", "video_id": "video10877", "sen_id": 240066}, {"caption": "a man shows off the garage area of an inhabitable vehicle of some sort", "video_id": "video10877", "sen_id": 240067}, {"caption": "a man describing bed features in a camper", "video_id": "video10877", "sen_id": 240068}, {"caption": "a man is describing a drawer in his garage", "video_id": "video10877", "sen_id": 240069}, {"caption": "a man is showing us the inside of what looks like a truck", "video_id": "video10877", "sen_id": 240070}, {"caption": "a man shows all the neat things in a mobile home", "video_id": "video10877", "sen_id": 240071}, {"caption": "a man showing a large drawers in a garage area", "video_id": "video10877", "sen_id": 240072}, {"caption": "a man pulls out a large drawer that is attached to the underside of a bunk bed", "video_id": "video10877", "sen_id": 240073}, {"caption": "a person is showing furniture in the garage", "video_id": "video10877", "sen_id": 240074}, {"caption": "a man shows an upper bed and the drawers it contains", "video_id": "video10877", "sen_id": 240075}, {"caption": "a man shows the ample storage space available in a new travel trailer", "video_id": "video10877", "sen_id": 240076}, {"caption": "showing a bedroom pulls out the drawer in the garage area", "video_id": "video10877", "sen_id": 240077}, {"caption": "a man in a garage discusses quality of furniture", "video_id": "video10877", "sen_id": 240078}, {"caption": "a person is filming the ceiling of their house", "video_id": "video10877", "sen_id": 240079}, {"caption": "a amn in a suit stands next to a silver suv in a cemetery", "video_id": "video11360", "sen_id": 240080}, {"caption": "a man leans against a gray car and cameras film him and people enter the car behind him", "video_id": "video11360", "sen_id": 240081}, {"caption": "people are walking on a street to the cars that are parked there", "video_id": "video11360", "sen_id": 240082}, {"caption": "a man in a suit walks to his silver car while other men in suits walk to a black car right behind it", "video_id": "video11360", "sen_id": 240083}, {"caption": "several men in suits walking to a black vehicle while a camera crew surrounds them", "video_id": "video11360", "sen_id": 240084}, {"caption": "a man approaches a gray car leans against it while cameras film him and people enter the car behind him", "video_id": "video11360", "sen_id": 240085}, {"caption": "a film crew is filming a white male in a black suit that has walked up and is standing next to a white vehicle", "video_id": "video11360", "sen_id": 240086}, {"caption": "some person are walking toward the standing car while others are watching them", "video_id": "video11360", "sen_id": 240087}, {"caption": "on a movie one man can near the car looking other in shooting spot", "video_id": "video11360", "sen_id": 240088}, {"caption": "a group of people look at a line of cars and suv s as people mill about", "video_id": "video11360", "sen_id": 240089}, {"caption": "an higher official is entering into the car and the video is take by two media persons", "video_id": "video11360", "sen_id": 240090}, {"caption": "a movie shooting is going in that a person is looking at camera", "video_id": "video11360", "sen_id": 240091}, {"caption": "a scene of a film is playing on", "video_id": "video11360", "sen_id": 240092}, {"caption": "a man with a suit stands outside a car", "video_id": "video11360", "sen_id": 240093}, {"caption": "some people are gathered around a man in a suit", "video_id": "video11360", "sen_id": 240094}, {"caption": "a man comes and stands by a car and another group of people and come near the car behind the first car and enter into it and then a group of men standing opposite to cars move towards the car", "video_id": "video11360", "sen_id": 240095}, {"caption": "in shooting spot one man outside the car", "video_id": "video11360", "sen_id": 240096}, {"caption": "a film shooting are going on and actors are performing", "video_id": "video11360", "sen_id": 240097}, {"caption": "there are people walking to their car while being filmed", "video_id": "video11360", "sen_id": 240098}, {"caption": "some people on a street are walking around", "video_id": "video11360", "sen_id": 240099}, {"caption": "a beautiful woman showcases her body in a black bra and underwear", "video_id": "video11761", "sen_id": 240100}, {"caption": "a woman in lingerie a black top and multi-color polka dot bottom lightly rubs herself and stares at the camera a title card comes up saying 7: cassandra dawn", "video_id": "video11761", "sen_id": 240101}, {"caption": "a woman moves eductively around an apartment as music plays", "video_id": "video11761", "sen_id": 240102}, {"caption": "a woman in her bra and panties walking around and posing for the camera", "video_id": "video11761", "sen_id": 240103}, {"caption": "a model modeling a bra and panty set", "video_id": "video11761", "sen_id": 240104}, {"caption": "a model struts and poses as she rubs her body", "video_id": "video11761", "sen_id": 240105}, {"caption": "a woman showing is off her body in revealing clothing", "video_id": "video11761", "sen_id": 240106}, {"caption": "the woman model the bra and under wear", "video_id": "video11761", "sen_id": 240107}, {"caption": "epic girls channel shows a lady model posinga model with long hair posing in brassiere and panty and then with white top and jean drawer", "video_id": "video11761", "sen_id": 240108}, {"caption": "a lady walks around her house in lingerie", "video_id": "video11761", "sen_id": 240109}, {"caption": "a girl in black and blue dress exposing still photoes displaying on screen", "video_id": "video11761", "sen_id": 240110}, {"caption": "all persons are showing fashion dresses pics", "video_id": "video11761", "sen_id": 240111}, {"caption": "a woman is moving around and touching herself sensually while wearing a bikini", "video_id": "video11761", "sen_id": 240112}, {"caption": "its a fashion show the models gives the sexy poses in the bikini dress", "video_id": "video11761", "sen_id": 240113}, {"caption": "a woman model is posing for a bikini ad shoot and she looks very beautiful", "video_id": "video11761", "sen_id": 240114}, {"caption": "young women are showcased wearing bathing suits and summertime wear", "video_id": "video11761", "sen_id": 240115}, {"caption": "a girl with innerwear posing to take pictures of her", "video_id": "video11761", "sen_id": 240116}, {"caption": "a women in bikini exposing her sexy figure in epic girls channel", "video_id": "video11761", "sen_id": 240117}, {"caption": "beautiful woman in black bikini posing near the wall", "video_id": "video11761", "sen_id": 240118}, {"caption": "sexy model in bikini posing for photo shoot", "video_id": "video11761", "sen_id": 240119}, {"caption": "a woman in a red and yellow sari describes where to find her cooking recipes an older woman with a cooking show asks for likes and comments", "video_id": "video11738", "sen_id": 240120}, {"caption": "the indian woman is showing and discussing her recipes while asking for comments", "video_id": "video11738", "sen_id": 240121}, {"caption": "a woman in indian dress is showing some good baking recipes", "video_id": "video11738", "sen_id": 240122}, {"caption": "a lady in yellow and red saree and blouse is talking with photographs of dishes", "video_id": "video11738", "sen_id": 240123}, {"caption": "old lady in yellow saree says benefit of different food itemsshe wear white chain", "video_id": "video11738", "sen_id": 240124}, {"caption": "in a site blog the woman is requesting to comment on her recipes", "video_id": "video11738", "sen_id": 240125}, {"caption": "on screen the lady explain the cooking menus and explain how to finshed the dish as it is", "video_id": "video11738", "sen_id": 240126}, {"caption": "a woman describes her recipes and locates them on her site", "video_id": "video11738", "sen_id": 240127}, {"caption": "a woman has created the websites and the video recorded are recipes are there in the website", "video_id": "video11738", "sen_id": 240128}, {"caption": "a woman shows pictures of food and asks for viewers to comment", "video_id": "video11738", "sen_id": 240129}, {"caption": "a woman in a kitchen is making some food", "video_id": "video11738", "sen_id": 240130}, {"caption": "there is a woman in saree talking about a recipe", "video_id": "video11738", "sen_id": 240131}, {"caption": "a old woman is speaking about a dishes", "video_id": "video11738", "sen_id": 240132}, {"caption": "a brunette woman with glasses and red and yellow dress teaches us how to cook as different dishes are shown next to her", "video_id": "video11738", "sen_id": 240133}, {"caption": "an indian cook different recipes showing how to access them by pressing them in the video", "video_id": "video11738", "sen_id": 240134}, {"caption": "a woman in a robe is talking about food", "video_id": "video11738", "sen_id": 240135}, {"caption": "a speaker invites viewers to comment on the recipes that she had prepared", "video_id": "video11738", "sen_id": 240136}, {"caption": "women asking viewers to hit like and share comments", "video_id": "video11738", "sen_id": 240137}, {"caption": "woman in red clothes is talking about the food she made", "video_id": "video11738", "sen_id": 240138}, {"caption": "an older woman talking about food with images of the food next to her", "video_id": "video11738", "sen_id": 240139}, {"caption": "a singer singing a song and playing a piano", "video_id": "video12285", "sen_id": 240140}, {"caption": "a famous pop singer wears a green leisure suit while performing a song on the piano", "video_id": "video12285", "sen_id": 240141}, {"caption": "bruno mars music video singing when i was your man", "video_id": "video12285", "sen_id": 240142}, {"caption": "bruno mars is playing the piano wearing sunglasses and singing his song when i was your man", "video_id": "video12285", "sen_id": 240143}, {"caption": "a man wearing dark glasses is seated playing a piano and singing into a microphone", "video_id": "video12285", "sen_id": 240144}, {"caption": "a man wearing dark glasses is seated playing a piano and singing into a microphone", "video_id": "video12285", "sen_id": 240145}, {"caption": "a with an afro playing the piano and singing", "video_id": "video12285", "sen_id": 240146}, {"caption": "bruno mars is singing when i was your man while accompanying himself on piano", "video_id": "video12285", "sen_id": 240147}, {"caption": "a man in a suite and glasses singing with a piano", "video_id": "video12285", "sen_id": 240148}, {"caption": "there is a suit man playing piano lonely", "video_id": "video12285", "sen_id": 240149}, {"caption": "bruno mars is sitting and playing the piano on a large stage", "video_id": "video12285", "sen_id": 240150}, {"caption": "a man with an afro and sunglasses plays a song on the piano", "video_id": "video12285", "sen_id": 240151}, {"caption": "a person singing and paying guiter on a show", "video_id": "video12285", "sen_id": 240152}, {"caption": "a man sitting at the piano playing a song", "video_id": "video12285", "sen_id": 240153}, {"caption": "a person in suite singing a song playing the musical instrument wearing blackspects", "video_id": "video12285", "sen_id": 240154}, {"caption": "a man with green coat and curly hair is speaking before a mike", "video_id": "video12285", "sen_id": 240155}, {"caption": "a man is sitting alone on a stage playing the piano and starts to sing", "video_id": "video12285", "sen_id": 240156}, {"caption": "a person singing and playing paiano", "video_id": "video12285", "sen_id": 240157}, {"caption": "bruno mars wearing coolers is playing piano and started singing when i was your man song in the studio", "video_id": "video12285", "sen_id": 240158}, {"caption": "a man with an afro is singing a song", "video_id": "video12285", "sen_id": 240159}, {"caption": "a time lapse video of a lake is shown from various angles", "video_id": "video10217", "sen_id": 240160}, {"caption": "a man bikes and views beautiful scenery of a lake and snow covered mountains", "video_id": "video10217", "sen_id": 240161}, {"caption": "a lake shimmers in the light as snow peaked mountains rise in the background", "video_id": "video10217", "sen_id": 240162}, {"caption": "a time lapse of a lake near a mountain", "video_id": "video10217", "sen_id": 240163}, {"caption": "a man riding a video and a view of waters", "video_id": "video10217", "sen_id": 240164}, {"caption": "very calm water in a gloomy looking lake", "video_id": "video10217", "sen_id": 240165}, {"caption": "a blue dressing man riding a cycle on the road", "video_id": "video10217", "sen_id": 240166}, {"caption": "a man wearing blue color dress is on the water", "video_id": "video10217", "sen_id": 240167}, {"caption": "a large mountain lake goes up to the base of of a chain of snow covered mountain peaks", "video_id": "video10217", "sen_id": 240168}, {"caption": "a person was riding his bike down the dirt path by water", "video_id": "video10217", "sen_id": 240169}, {"caption": "fog rolls over a lake that is surrounded by snowy mountains", "video_id": "video10217", "sen_id": 240170}, {"caption": "a person riding a bike by a body of water", "video_id": "video10217", "sen_id": 240171}, {"caption": "a person rides a bike near a lake with a mountain in the background", "video_id": "video10217", "sen_id": 240172}, {"caption": "a person riding a bike through a beautiful mountain setting with a lake", "video_id": "video10217", "sen_id": 240173}, {"caption": "a person is riding their motorcycle on the road", "video_id": "video10217", "sen_id": 240174}, {"caption": "the water view surface is as stagnant as it can get", "video_id": "video10217", "sen_id": 240175}, {"caption": "two different time lapses of a lake overlooked by mountains", "video_id": "video10217", "sen_id": 240176}, {"caption": "beautiful scenes of lakes located within mountain ranges", "video_id": "video10217", "sen_id": 240177}, {"caption": "a bicycle climbs a mountain road and clouds pass over a mountain and lake", "video_id": "video10217", "sen_id": 240178}, {"caption": "someone films wonderful mountain and lake scenery on an overcast day", "video_id": "video10217", "sen_id": 240179}, {"caption": "a silver bowl filled with meat and spices", "video_id": "video11315", "sen_id": 240180}, {"caption": "a man looking out his window at a cloud shaped like a boot was inspired to cook", "video_id": "video11315", "sen_id": 240181}, {"caption": "a silver bowl of raw hamburger is seasoned with green parsley", "video_id": "video11315", "sen_id": 240182}, {"caption": "a bowl of raw meat with green seasoning being added to it", "video_id": "video11315", "sen_id": 240183}, {"caption": "a man mixes ingredients in a medium sized stainless steel bowl while he describes his thought process", "video_id": "video11315", "sen_id": 240184}, {"caption": "someone is preparing a meal made of ground meat and they sprinkle some green ingredient on top", "video_id": "video11315", "sen_id": 240185}, {"caption": "there is a man making a meet dish", "video_id": "video11315", "sen_id": 240186}, {"caption": "the chef adds chopped herb to a bowl of what appears to be minced meat", "video_id": "video11315", "sen_id": 240187}, {"caption": "meat in a bowl getting green spices added to it while a man mentions that he might not have thought to add the spice", "video_id": "video11315", "sen_id": 240188}, {"caption": "a man talking and putting herbs into a bowl with meat", "video_id": "video11315", "sen_id": 240189}, {"caption": "a meat recipe is being made in a metal bowl", "video_id": "video11315", "sen_id": 240190}, {"caption": "a cook adds seasoning to a bowl full of meat", "video_id": "video11315", "sen_id": 240191}, {"caption": "in bowl meat is added to that many ingredients are added its in green color", "video_id": "video11315", "sen_id": 240192}, {"caption": "a man is discussing how he thought of adding an herb to his ingredients that are sitting in a metal bowl on a countertop", "video_id": "video11315", "sen_id": 240193}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11315", "sen_id": 240194}, {"caption": "meat is taken in sparkling vessel and chopped leaves are being put", "video_id": "video11315", "sen_id": 240195}, {"caption": "a man explaining something about the preparation of the dish", "video_id": "video11315", "sen_id": 240196}, {"caption": "in the kitchen a stainless bowl is show to have some ground beef and parsley in it", "video_id": "video11315", "sen_id": 240197}, {"caption": "green herbs are spinkled over raw ground beef in a silver bowl", "video_id": "video11315", "sen_id": 240198}, {"caption": "some meat is lying in a person s bowl", "video_id": "video11315", "sen_id": 240199}, {"caption": "a chef is preparing cake decorations shaped like roses", "video_id": "video10582", "sen_id": 240200}, {"caption": "a chef works on decorating a cake as people watch him work", "video_id": "video10582", "sen_id": 240201}, {"caption": "a person is making flowers out of icing and placing them beside a cake", "video_id": "video10582", "sen_id": 240202}, {"caption": "someone making edible flowers and placing them by a cake", "video_id": "video10582", "sen_id": 240203}, {"caption": "a man is preparing a complicated dish while others walk by", "video_id": "video10582", "sen_id": 240204}, {"caption": "a baker is creating pink flowers from frosting for a cake", "video_id": "video10582", "sen_id": 240205}, {"caption": "there is a man decorating cake in a function", "video_id": "video10582", "sen_id": 240206}, {"caption": "a chef in a kitchen making roses for a cake", "video_id": "video10582", "sen_id": 240207}, {"caption": "a chef decorates a cake with roses made of icing", "video_id": "video10582", "sen_id": 240208}, {"caption": "a man is preparing the decorations for a cake", "video_id": "video10582", "sen_id": 240209}, {"caption": "there is a sheaf decorating a cake on the table", "video_id": "video10582", "sen_id": 240210}, {"caption": "a man is decorating cake on the table with sugary flowers", "video_id": "video10582", "sen_id": 240211}, {"caption": "a person is making roses out of frosting for the top of a white cake", "video_id": "video10582", "sen_id": 240212}, {"caption": "a chelf is decorating a cake in a plate", "video_id": "video10582", "sen_id": 240213}, {"caption": "a person in white makes frosting flowers for a cake", "video_id": "video10582", "sen_id": 240214}, {"caption": "there is a sheaf making a cake on a table", "video_id": "video10582", "sen_id": 240215}, {"caption": "a person is making pastry flowers in a loud busy area", "video_id": "video10582", "sen_id": 240216}, {"caption": "one chef is cooking a special recipe with", "video_id": "video10582", "sen_id": 240217}, {"caption": "a man is making flower decorations for a cake out of icing", "video_id": "video10582", "sen_id": 240218}, {"caption": "a person is displaying a cake he made", "video_id": "video10582", "sen_id": 240219}, {"caption": "a female puppy moves around and whines a little while being held by a man in camouflage", "video_id": "video11088", "sen_id": 240220}, {"caption": "a man in camoflauge holding a black and tan puppy", "video_id": "video11088", "sen_id": 240221}, {"caption": "a guy in a military outfit is playing with a little puppy", "video_id": "video11088", "sen_id": 240222}, {"caption": "a man in a military uniform is playing and holding a dog", "video_id": "video11088", "sen_id": 240223}, {"caption": "a young man playing with a cute little black dog", "video_id": "video11088", "sen_id": 240224}, {"caption": "one army person is playing with cute dog and talking with it", "video_id": "video11088", "sen_id": 240225}, {"caption": "a military dressed man is playing with a black dog on outside of house", "video_id": "video11088", "sen_id": 240226}, {"caption": "a man in camaflogued is holding and petting a female puppy", "video_id": "video11088", "sen_id": 240227}, {"caption": "a soldier plays with a puppy that he will soon be training", "video_id": "video11088", "sen_id": 240228}, {"caption": "a man plays with his small german shepherd puppy at night", "video_id": "video11088", "sen_id": 240229}, {"caption": "guy with a winter cap petting a black dog", "video_id": "video11088", "sen_id": 240230}, {"caption": "men plays with the dog and dog is very happy", "video_id": "video11088", "sen_id": 240231}, {"caption": "a man in a military outfit holds his dog during nighttime", "video_id": "video11088", "sen_id": 240232}, {"caption": "a soldier works with a puppy that will someday be his guard dog", "video_id": "video11088", "sen_id": 240233}, {"caption": "a man wearing camouflage is bending down holding a puppy", "video_id": "video11088", "sen_id": 240234}, {"caption": "a person who picks up a puppy and tells us what kind of dog it is", "video_id": "video11088", "sen_id": 240235}, {"caption": "a man holds a german shepherd puppy while a woman voice over describes the origins of the puppy s name", "video_id": "video11088", "sen_id": 240236}, {"caption": "the soldier is holding a brown dog on the street at night", "video_id": "video11088", "sen_id": 240237}, {"caption": "a man in military dress holding a dog in his hand the dog is in black color", "video_id": "video11088", "sen_id": 240238}, {"caption": "a person kneels and pets a dog then picks it up", "video_id": "video11088", "sen_id": 240239}, {"caption": "a cartoon beast and a lady in a yellow dress walk into and dance in a ballroom", "video_id": "video12121", "sen_id": 240240}, {"caption": "a woman in a golden gown makes her way to a large indoor dance floor", "video_id": "video12121", "sen_id": 240241}, {"caption": "a cartoon of a beast dressed in blue dancing dancing in a ballroom with a lady in a peach dress", "video_id": "video12121", "sen_id": 240242}, {"caption": "a woman voices over the movie 'beauty and the beast' as bell and the beast dance in a ballroom", "video_id": "video12121", "sen_id": 240243}, {"caption": "a narrator describes a song sung and scene from the movie beauty and the beast", "video_id": "video12121", "sen_id": 240244}, {"caption": "a cartoon women and beast dance on a large hall", "video_id": "video12121", "sen_id": 240245}, {"caption": "a woman and a beast dancing together with music in the background", "video_id": "video12121", "sen_id": 240246}, {"caption": "a man and a beast are dancing in a large hall", "video_id": "video12121", "sen_id": 240247}, {"caption": "the theme song for beauty and the beast plays while the beast and belle dance and a female narrates about the song and movie", "video_id": "video12121", "sen_id": 240248}, {"caption": "a cartoon teapot sings a song while a wildebeast and beautiful woman dance", "video_id": "video12121", "sen_id": 240249}, {"caption": "a girl dancing with a man in the auditorium", "video_id": "video12121", "sen_id": 240250}, {"caption": "belle and beast dance as a woman explains about the movie", "video_id": "video12121", "sen_id": 240251}, {"caption": "a narrator lists the awards won by the title song from beauty and the beast as sung by angela lansbury while belle and beast dance in a ballroom", "video_id": "video12121", "sen_id": 240252}, {"caption": "a video animation of movie video cartoon dancing displaying on screen", "video_id": "video12121", "sen_id": 240253}, {"caption": "cartoon character of a girl is dancing with a beast in a hall", "video_id": "video12121", "sen_id": 240254}, {"caption": "a cartoon man dancing with a gilr", "video_id": "video12121", "sen_id": 240255}, {"caption": " a queen takes the bear and dancing on the hall", "video_id": "video12121", "sen_id": 240256}, {"caption": "a large beast in a blue coat dances with a young woman in a gold dress", "video_id": "video12121", "sen_id": 240257}, {"caption": "there is a beast dancing with a girl in a yellow dress", "video_id": "video12121", "sen_id": 240258}, {"caption": "some beauty and the beast scenes are shown", "video_id": "video12121", "sen_id": 240259}, {"caption": "to preview microsoft products one must be invited to be a preview member", "video_id": "video11548", "sen_id": 240260}, {"caption": "no video or video not loading", "video_id": "video11548", "sen_id": 240261}, {"caption": "a man show how to use the xbox store online", "video_id": "video11548", "sen_id": 240262}, {"caption": "a video capturing xbox on the tv showing how to preview something", "video_id": "video11548", "sen_id": 240263}, {"caption": "a computer screen showing different apps", "video_id": "video11548", "sen_id": 240264}, {"caption": "a computer generated animation screen with various options", "video_id": "video11548", "sen_id": 240265}, {"caption": "a man begins to describe how to become a part of a group to preview microsoft products", "video_id": "video11548", "sen_id": 240266}, {"caption": "some guy is trying to show you how to work windows 8", "video_id": "video11548", "sen_id": 240267}, {"caption": "an xbox live screen displays a variety of social platforms", "video_id": "video11548", "sen_id": 240268}, {"caption": "there is a screen for xbox showing with a man s voice talking about how to navigate to a certain spot", "video_id": "video11548", "sen_id": 240269}, {"caption": "a guide about the forum app how to use by end user", "video_id": "video11548", "sen_id": 240270}, {"caption": "man speaks of xbox one s backward compatibility announcement at e3 and begins to show how to use the feature", "video_id": "video11548", "sen_id": 240271}, {"caption": "an english man is demonstrating how to use a windows platform", "video_id": "video11548", "sen_id": 240272}, {"caption": "a menu screen on a windows computer system", "video_id": "video11548", "sen_id": 240273}, {"caption": "a graphical interface displays games tv and other things", "video_id": "video11548", "sen_id": 240274}, {"caption": "a desktop pc is being shown to a person", "video_id": "video11548", "sen_id": 240275}, {"caption": "a man explaining about something on his computer in home", "video_id": "video11548", "sen_id": 240276}, {"caption": "a man is showing the dashboard screen of a gaming console", "video_id": "video11548", "sen_id": 240277}, {"caption": "a guy is recording the home screen on his computer", "video_id": "video11548", "sen_id": 240278}, {"caption": "some windows on a person s desktop are shown", "video_id": "video11548", "sen_id": 240279}, {"caption": "a man in a black shirt is pressing his arm against a door frame", "video_id": "video12805", "sen_id": 240280}, {"caption": "a man stands in a doorway arm pushed against the door frame", "video_id": "video12805", "sen_id": 240281}, {"caption": "a man in a black shirt and blue jeans stands in a doorway", "video_id": "video12805", "sen_id": 240282}, {"caption": "a man demonstrates and describes a magic trick he can do", "video_id": "video12805", "sen_id": 240283}, {"caption": "a man wearing a black shirt and blue jeans stands in a doorway talking and raising his arm by a burgundy colored door", "video_id": "video12805", "sen_id": 240284}, {"caption": "a guy in black t-shirt describing the simple physics which is percieved as magic", "video_id": "video12805", "sen_id": 240285}, {"caption": "a man stands in a doorway and pushes his arm against the frame and then steps out and raises his arm", "video_id": "video12805", "sen_id": 240286}, {"caption": "a british man is talking about how to make your arm rise against pressure", "video_id": "video12805", "sen_id": 240287}, {"caption": "a man demonstrates a trick involving arm movements", "video_id": "video12805", "sen_id": 240288}, {"caption": "man is shown placing his arm against a door frame and then taking a step forward while his arm raises", "video_id": "video12805", "sen_id": 240289}, {"caption": "a man wears a black tee shirt belt and jeans he pushes his left arm against the white door frame he steps forward and his arm rises to his side to shoulder level", "video_id": "video12805", "sen_id": 240290}, {"caption": "someone stacks coins on a table and a man shown from chin down is wearing a black t-shirt a black belt and jeans as he is talking and using hand gestures", "video_id": "video12805", "sen_id": 240291}, {"caption": "a man in a black shirt is wearing blue jeans and raising his arm", "video_id": "video12805", "sen_id": 240292}, {"caption": "a man performs a physical magic trick in a home doorway", "video_id": "video12805", "sen_id": 240293}, {"caption": "a man in black tee shirt and jeans is standing in a doorway pressing his arm against the door frame he steps out of the frame and his arm rises up", "video_id": "video12805", "sen_id": 240294}, {"caption": "a man stands in a doorway and then raises his arm", "video_id": "video12805", "sen_id": 240295}, {"caption": "a man in a black shirt is saying to press your arm against a doorway to get it to rise into the air", "video_id": "video12805", "sen_id": 240296}, {"caption": "a man discusses the red paint on the wall and the color palettes he used", "video_id": "video12805", "sen_id": 240297}, {"caption": "a old man in black color dress wearing cloth standing speaking waving hand and coins on table displaying on screen", "video_id": "video12805", "sen_id": 240298}, {"caption": "a man wear a black shit is talking about having his arm rise in the air", "video_id": "video12805", "sen_id": 240299}, {"caption": "a girl imitates a photo and holds her hand over her face", "video_id": "video10383", "sen_id": 240300}, {"caption": "a young woman holds her hand over her mouth and talks about a young boy", "video_id": "video10383", "sen_id": 240301}, {"caption": "a woman with blonde hair is talking in another language while modeling a watch", "video_id": "video10383", "sen_id": 240302}, {"caption": "a woman holding her hand over her mouth and talking", "video_id": "video10383", "sen_id": 240303}, {"caption": "a woman is speaking in russian while covering her mouth with her hand", "video_id": "video10383", "sen_id": 240304}, {"caption": "a girl in a grey tank is speaking an then begins to hold her mouth as a man with a wrist watch in a smaller picture holds his mouth", "video_id": "video10383", "sen_id": 240305}, {"caption": "a woman explaining about a man and his watches", "video_id": "video10383", "sen_id": 240306}, {"caption": "there is a women with white hair closing their nose", "video_id": "video10383", "sen_id": 240307}, {"caption": "a beautiful blonde with a watch in her hand cover her mouth with her hand", "video_id": "video10383", "sen_id": 240308}, {"caption": "a girl talking something and closing her mouth", "video_id": "video10383", "sen_id": 240309}, {"caption": "a girl and guy put their hands totheir faces", "video_id": "video10383", "sen_id": 240310}, {"caption": "a woman is speaking about a watch wearing ny a man", "video_id": "video10383", "sen_id": 240311}, {"caption": "a man and woman wearing watches cover their mouths", "video_id": "video10383", "sen_id": 240312}, {"caption": "a lady talking while holding her mouth with her left hand", "video_id": "video10383", "sen_id": 240313}, {"caption": "a girl telling something about her mouth in her home", "video_id": "video10383", "sen_id": 240314}, {"caption": "there is a brown hair women talking in a room", "video_id": "video10383", "sen_id": 240315}, {"caption": "there is a girl talking and keeping her hand on her mouth", "video_id": "video10383", "sen_id": 240316}, {"caption": "the women close the mouth and try to speak in some think", "video_id": "video10383", "sen_id": 240317}, {"caption": "a blond headed young girl wearing a big watch places her hand under her nose", "video_id": "video10383", "sen_id": 240318}, {"caption": "a blonds woman is talking about a male in a picture in a foreign language", "video_id": "video10383", "sen_id": 240319}, {"caption": "a group of missles fly along a building and explode when they hit it", "video_id": "video12256", "sen_id": 240320}, {"caption": "missiles chase after airplanes destroying at least one of them", "video_id": "video12256", "sen_id": 240321}, {"caption": "red cartoon space ship flying around building chased by missiles", "video_id": "video12256", "sen_id": 240322}, {"caption": "an awesome video from a japanese cartoon", "video_id": "video12256", "sen_id": 240323}, {"caption": "a clip from a japanese cartoon show", "video_id": "video12256", "sen_id": 240324}, {"caption": "a red aircraft speeds through the air and fires at an unseen target and is chased by two homing missiles", "video_id": "video12256", "sen_id": 240325}, {"caption": "a red futuristic plane or small spaceship is dodging missiles that are being shot at it in an animation video", "video_id": "video12256", "sen_id": 240326}, {"caption": "red helicopter is being pursued by the bad helicopters but the bad helicopters failed after they got hit in the roof of skyscraper", "video_id": "video12256", "sen_id": 240327}, {"caption": "there is a vehicle firing on the air", "video_id": "video12256", "sen_id": 240328}, {"caption": "an animated vehicle is shooting missiles at another vehicle", "video_id": "video12256", "sen_id": 240329}, {"caption": "anime planes are seen chasing and shooting at another plane but this plane out maneuvers them", "video_id": "video12256", "sen_id": 240330}, {"caption": "person fighting his opponents with big red aeroplanes", "video_id": "video12256", "sen_id": 240331}, {"caption": "a jet being targeted in an animation movie", "video_id": "video12256", "sen_id": 240332}, {"caption": "a cartoon television show cartoon characters doing something funny", "video_id": "video12256", "sen_id": 240333}, {"caption": "a carton character shoots its power up to the sky", "video_id": "video12256", "sen_id": 240334}, {"caption": "an animated pink aircraft flies through the air while dodging several incoming missles", "video_id": "video12256", "sen_id": 240335}, {"caption": "an animated fighter jet is zooming through the sky strafing to avoid missiles that are seeking it", "video_id": "video12256", "sen_id": 240336}, {"caption": "the red plane is being followed by the 60666hits plane at amazing speed", "video_id": "video12256", "sen_id": 240337}, {"caption": "an animation of planes flying around and firing at each other many of the planes explode is clouds of dark grey smoke", "video_id": "video12256", "sen_id": 240338}, {"caption": "in a cartoon movie a fighter plane is launching missiles and causing damage", "video_id": "video12256", "sen_id": 240339}, {"caption": "cook talking and showing a couple how to make food in a kitchen", "video_id": "video11859", "sen_id": 240340}, {"caption": "a couple watches as another man sautes onions", "video_id": "video11859", "sen_id": 240341}, {"caption": "a man cooks on the stove for a man and woman who add chili to his dish", "video_id": "video11859", "sen_id": 240342}, {"caption": "there is a man with mustache cooking over a stove while two people watch him", "video_id": "video11859", "sen_id": 240343}, {"caption": "a man making food and to other people are watching", "video_id": "video11859", "sen_id": 240344}, {"caption": "a spanish video where they are sauteing onions to slightly brown and adding chili", "video_id": "video11859", "sen_id": 240345}, {"caption": "two men and a lady inside the kitchen", "video_id": "video11859", "sen_id": 240346}, {"caption": "one chef doing recipes in the restaurant kitchen", "video_id": "video11859", "sen_id": 240347}, {"caption": "a cook stirs a hot pot of food with a couple", "video_id": "video11859", "sen_id": 240348}, {"caption": "people watch a man cooking in a large pan", "video_id": "video11859", "sen_id": 240349}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11859", "sen_id": 240350}, {"caption": "a man is cooking in a kitchen with a man and a woman", "video_id": "video11859", "sen_id": 240351}, {"caption": "a chef demonstrates a recipe for two tv personalities", "video_id": "video11859", "sen_id": 240352}, {"caption": "a man who is cooking and a guy and woman are watching it", "video_id": "video11859", "sen_id": 240353}, {"caption": "a man in white color shirt is cooking something talking to another man and a girl", "video_id": "video11859", "sen_id": 240354}, {"caption": "a cheif is telling and showing how to cook food", "video_id": "video11859", "sen_id": 240355}, {"caption": "a chef in the kitchen showing a man and a woman his cooking technique", "video_id": "video11859", "sen_id": 240356}, {"caption": "an indian chef prepares a wok dish for a couple", "video_id": "video11859", "sen_id": 240357}, {"caption": "the chef is wearing a white dress and cooking is started while a man and a woman are watching", "video_id": "video11859", "sen_id": 240358}, {"caption": "some guys in a kitchen are making some food", "video_id": "video11859", "sen_id": 240359}, {"caption": "men and women in red singing a pop song", "video_id": "video11458", "sen_id": 240360}, {"caption": "a singer singing about his girlfriend and how fine she is", "video_id": "video11458", "sen_id": 240361}, {"caption": "a funky themed music video with people wearing red jackets", "video_id": "video11458", "sen_id": 240362}, {"caption": "a man and a woman are posing and dancing in a bruno mars music video", "video_id": "video11458", "sen_id": 240363}, {"caption": "the man in the red suit sings and dances", "video_id": "video11458", "sen_id": 240364}, {"caption": "a guy and lady in red dress singing and dancing in a background of space atmosphire", "video_id": "video11458", "sen_id": 240365}, {"caption": "a music video features performers in red suits and dresses", "video_id": "video11458", "sen_id": 240366}, {"caption": "there are some people with red dressing dancing on the floor", "video_id": "video11458", "sen_id": 240367}, {"caption": "bruno mars is singing and dancing with a girl in his music video", "video_id": "video11458", "sen_id": 240368}, {"caption": "a man in red suit dances with woman in red in psychedelic space background", "video_id": "video11458", "sen_id": 240369}, {"caption": "a man in red sings to a woman who also wears red", "video_id": "video11458", "sen_id": 240370}, {"caption": "there are some red dressing people singing a song", "video_id": "video11458", "sen_id": 240371}, {"caption": "more peoples are wearing red color dress is singing and dancing", "video_id": "video11458", "sen_id": 240372}, {"caption": "80s funk music video with people in suits dancing in space", "video_id": "video11458", "sen_id": 240373}, {"caption": "bruno mars performs one of his songs in this music video", "video_id": "video11458", "sen_id": 240374}, {"caption": "2 people moving on the screen from right to left", "video_id": "video11458", "sen_id": 240375}, {"caption": "a man in red sings to a woman as musicians play in the background", "video_id": "video11458", "sen_id": 240376}, {"caption": "a group of people wearing red are dancing and singing and playing instruments", "video_id": "video11458", "sen_id": 240377}, {"caption": "a man and woman both dressed in red are singing and dancing", "video_id": "video11458", "sen_id": 240378}, {"caption": "a man sings to a woman in a r&b music video", "video_id": "video11458", "sen_id": 240379}, {"caption": "a man giving a review of a bathroom in a hotel", "video_id": "video11337", "sen_id": 240380}, {"caption": "a man describes the various features of a high end hotel bathroom", "video_id": "video11337", "sen_id": 240381}, {"caption": "a white toilet has a phone sitting next to it", "video_id": "video11337", "sen_id": 240382}, {"caption": "a bathroom with many features is toured by a guest", "video_id": "video11337", "sen_id": 240383}, {"caption": "showing a bidet toilet and shower with hanging bathrobes", "video_id": "video11337", "sen_id": 240384}, {"caption": "a man is talking about a western toilet area and bath robes", "video_id": "video11337", "sen_id": 240385}, {"caption": "a bathroom toilet is sene along with shower and other features", "video_id": "video11337", "sen_id": 240386}, {"caption": "a man narrates a bathroom and shower area", "video_id": "video11337", "sen_id": 240387}, {"caption": "the interior of the bathroom is very beautiful with it s shower", "video_id": "video11337", "sen_id": 240388}, {"caption": "a very nice bath room toilet and shower with nice lighting", "video_id": "video11337", "sen_id": 240389}, {"caption": "a luxurious and warm looking toilet area is seen with a bidet comfortable bathrobes and even a telephone", "video_id": "video11337", "sen_id": 240390}, {"caption": "a toilet is seen in bathroom along with square shower head in shower area", "video_id": "video11337", "sen_id": 240391}, {"caption": "person is presenting the toilet and the new kind of shower", "video_id": "video11337", "sen_id": 240392}, {"caption": "a bathroom is displayed while a voice explains the dimensions and all its components", "video_id": "video11337", "sen_id": 240393}, {"caption": "a person is filming some yellow bathr obes", "video_id": "video11337", "sen_id": 240394}, {"caption": "a new style of toilet is being displayed along with a fancy shower head", "video_id": "video11337", "sen_id": 240395}, {"caption": "footage of a bathroom with a man describing what is in the video: a toilet with a bidet a shower with 8 inch square rain shower head", "video_id": "video11337", "sen_id": 240396}, {"caption": "a toilet room bath room shower dresses to hang man speaking displaying on screen", "video_id": "video11337", "sen_id": 240397}, {"caption": "a person explaiing the bathroom amenities like rain shower bath robes", "video_id": "video11337", "sen_id": 240398}, {"caption": "a person is filming the inside of a bath room", "video_id": "video11337", "sen_id": 240399}, {"caption": "a young woman puts on a red and black shirt in a pink room", "video_id": "video11599", "sen_id": 240400}, {"caption": "a woman gets dressed in a red black and white sports uniform", "video_id": "video11599", "sen_id": 240401}, {"caption": "a cheerleader is showing how to put on her red cheerleading outfit", "video_id": "video11599", "sen_id": 240402}, {"caption": "a young black woman puts on a sports jersey", "video_id": "video11599", "sen_id": 240403}, {"caption": "a woman puts on a red sports jersey", "video_id": "video11599", "sen_id": 240404}, {"caption": "a young kid that wants to be a cheerleader tries on a jersey", "video_id": "video11599", "sen_id": 240405}, {"caption": "a young lady is putting on a red and white uniform", "video_id": "video11599", "sen_id": 240406}, {"caption": "a girl is in her bedroom getting dressed into a cheerleaders outfit", "video_id": "video11599", "sen_id": 240407}, {"caption": "a woman gets dressed into a cheerleading outfit", "video_id": "video11599", "sen_id": 240408}, {"caption": "a girl getting dressed into her red cheerleading uniform", "video_id": "video11599", "sen_id": 240409}, {"caption": "a girl in her room wears the shirt of a football team", "video_id": "video11599", "sen_id": 240410}, {"caption": "there is a woman dressing inside her room", "video_id": "video11599", "sen_id": 240411}, {"caption": "a woman is wearing her cheerleader dress the letters on the dress are lu", "video_id": "video11599", "sen_id": 240412}, {"caption": "a girl puts on a red shirt while music plays", "video_id": "video11599", "sen_id": 240413}, {"caption": "a woman is putting on a red shirt", "video_id": "video11599", "sen_id": 240414}, {"caption": "a girl puts on an athletic uniform for her school", "video_id": "video11599", "sen_id": 240415}, {"caption": "a lady is wearing t shirt which is red color", "video_id": "video11599", "sen_id": 240416}, {"caption": "a girl is wearing a sport top dress", "video_id": "video11599", "sen_id": 240417}, {"caption": "a red dress wearing color cloth boy wearing cloth putting from upside inside dressing room displaying on screen", "video_id": "video11599", "sen_id": 240418}, {"caption": "a woman is putting on a shirt in her room", "video_id": "video11599", "sen_id": 240419}, {"caption": "adele is singing a song at one of her concerts don't you remember", "video_id": "video12595", "sen_id": 240420}, {"caption": "a female singer and her band performing together", "video_id": "video12595", "sen_id": 240421}, {"caption": "a woman is performing on stage with several musicians accompanying on instruments", "video_id": "video12595", "sen_id": 240422}, {"caption": "a woman dressed in black sings with a band in front of a large audience", "video_id": "video12595", "sen_id": 240423}, {"caption": "live performance of adel live with band on stage in front of thousands of people", "video_id": "video12595", "sen_id": 240424}, {"caption": "adele singing don t you remember amazingly with her band", "video_id": "video12595", "sen_id": 240425}, {"caption": "a lady singing on stage with a full band ensemble in a low lit room filled with people", "video_id": "video12595", "sen_id": 240426}, {"caption": "a woman singer is singing a song", "video_id": "video12595", "sen_id": 240427}, {"caption": "a lady is singing a song on orchestra at the stage show event", "video_id": "video12595", "sen_id": 240428}, {"caption": "the beautiful girl in black dress is singing and great audience watching it", "video_id": "video12595", "sen_id": 240429}, {"caption": "there is a woman in black dressing singing a song", "video_id": "video12595", "sen_id": 240430}, {"caption": "a song is being sung by a woman who is standing on a stage", "video_id": "video12595", "sen_id": 240431}, {"caption": "lady in black singing while on stage with a band", "video_id": "video12595", "sen_id": 240432}, {"caption": "a person sings on stage with a band playing in background", "video_id": "video12595", "sen_id": 240433}, {"caption": "a band with a woman lead singing playing a mellow show for a sitting crowd", "video_id": "video12595", "sen_id": 240434}, {"caption": "there is a women singing on the stage", "video_id": "video12595", "sen_id": 240435}, {"caption": "a lady is singing and her band is performing behind her in front of an audience", "video_id": "video12595", "sen_id": 240436}, {"caption": "a famous heavy set singer performs one of her songs", "video_id": "video12595", "sen_id": 240437}, {"caption": "adelle singing live on a stage singing dont you remember", "video_id": "video12595", "sen_id": 240438}, {"caption": "some people are listening to a performance", "video_id": "video12595", "sen_id": 240439}, {"caption": "a woman showing how to use a special pen", "video_id": "video10425", "sen_id": 240440}, {"caption": "the woman explains how to use the pen to draw on the doll", "video_id": "video10425", "sen_id": 240441}, {"caption": "a women drawing some art on the body of a doll", "video_id": "video10425", "sen_id": 240442}, {"caption": "a woman takes out and replaces an ink cartridge in a pen before drawing on a doll", "video_id": "video10425", "sen_id": 240443}, {"caption": "a lady has removed a pen from a plastic container and is drawing on a doll", "video_id": "video10425", "sen_id": 240444}, {"caption": "a lady is telling about the color pen and other things to decorate a doll", "video_id": "video10425", "sen_id": 240445}, {"caption": "there is a woman explaining bout a new product", "video_id": "video10425", "sen_id": 240446}, {"caption": "a person is doing artwork on a doll", "video_id": "video10425", "sen_id": 240447}, {"caption": "three ladies are standing and one is opening a pen and drawing", "video_id": "video10425", "sen_id": 240448}, {"caption": "women designing marks on a doll with a special pen", "video_id": "video10425", "sen_id": 240449}, {"caption": "a woman is using an ink pen and small brushes to decorate a small barbie sized doll", "video_id": "video10425", "sen_id": 240450}, {"caption": "three girls stand together and one is opening a tube and makes a drawing on the doll", "video_id": "video10425", "sen_id": 240451}, {"caption": "instructions on using a styling tool for monster dolls", "video_id": "video10425", "sen_id": 240452}, {"caption": "two women in lab coats show a plastic cartridge of pen and begin decorating doll", "video_id": "video10425", "sen_id": 240453}, {"caption": "there is a woman holding a blue pen and drawing on a girls doll", "video_id": "video10425", "sen_id": 240454}, {"caption": "a woman take the ink cartridge out of a pen replaces it and then draws on a doll", "video_id": "video10425", "sen_id": 240455}, {"caption": "a lady opening apen and closing and make design a doll", "video_id": "video10425", "sen_id": 240456}, {"caption": "an instructional video about decorating a monster doll", "video_id": "video10425", "sen_id": 240457}, {"caption": "a lady is explaining some thing about a writing product", "video_id": "video10425", "sen_id": 240458}, {"caption": "a person is holding a dildo or a bong", "video_id": "video10425", "sen_id": 240459}, {"caption": "a man is sitting inside a volkswagen car and giving a review on it", "video_id": "video11508", "sen_id": 240460}, {"caption": "a man leaning against his car then he moves into the car and shows the interior of the vehicle", "video_id": "video11508", "sen_id": 240461}, {"caption": "volkswagon changed the interior design of its cars to make the cars feel more expensive", "video_id": "video11508", "sen_id": 240462}, {"caption": "the video pans across the inside of a car while a man describes the features of the car", "video_id": "video11508", "sen_id": 240463}, {"caption": "a man for car buyer is explaining the features of a new volkswagen while seated inside the car on the british driver's side", "video_id": "video11508", "sen_id": 240464}, {"caption": "a person is showing a black car and explaining the options", "video_id": "video11508", "sen_id": 240465}, {"caption": "a man is going over the features of a brand new british car", "video_id": "video11508", "sen_id": 240466}, {"caption": "a new volkswagen interior is described by a man", "video_id": "video11508", "sen_id": 240467}, {"caption": "a vw is showcased with a guy sitting on the seat testing it", "video_id": "video11508", "sen_id": 240468}, {"caption": "volkswagen car is shown and described by the person about the car", "video_id": "video11508", "sen_id": 240469}, {"caption": "a man is talking about and displaying the features of a new car available for purchase", "video_id": "video11508", "sen_id": 240470}, {"caption": "a man talking about the various features of a volkswagen vehicle", "video_id": "video11508", "sen_id": 240471}, {"caption": "volkswagen car interiors is being explained by a man", "video_id": "video11508", "sen_id": 240472}, {"caption": "a man i telling about new car features by personally handling the car", "video_id": "video11508", "sen_id": 240473}, {"caption": "a guy in a car is riding around", "video_id": "video11508", "sen_id": 240474}, {"caption": "tv show host displays the specifications of a fresh volkswagen model", "video_id": "video11508", "sen_id": 240475}, {"caption": "showing off the interior of a new volkswagen car and describing the new features it comes with", "video_id": "video11508", "sen_id": 240476}, {"caption": "a handsome man promoting a volkswagen car and describing features of car by sitting inside it", "video_id": "video11508", "sen_id": 240477}, {"caption": "a man shows how comfortable and awesome a vw is", "video_id": "video11508", "sen_id": 240478}, {"caption": "the interior of a car is being filmed", "video_id": "video11508", "sen_id": 240479}, {"caption": "a man with gray hair wearing a suit and a billboard showing the top ten 2015 city real estate markets", "video_id": "video12685", "sen_id": 240480}, {"caption": "an advertising annoucer explains information on a blue and white advertising billboard regarding top ten real estate markets", "video_id": "video12685", "sen_id": 240481}, {"caption": "a tv announcer discusses real estate", "video_id": "video12685", "sen_id": 240482}, {"caption": "a news reporter details the top real estate markets around the united states", "video_id": "video12685", "sen_id": 240483}, {"caption": "a video showing all the different levels of real estate marketing", "video_id": "video12685", "sen_id": 240484}, {"caption": "a white sign with blue background with city names on it", "video_id": "video12685", "sen_id": 240485}, {"caption": "a post made from two slats of painted white wood connected at a right angle has wires holding a blue panel divided by horizontal white lines listing five american cities in a numerical order", "video_id": "video12685", "sen_id": 240486}, {"caption": "a news reporter discusses a listing of the top real estate markets in the country", "video_id": "video12685", "sen_id": 240487}, {"caption": "a conversation about the top 10 real estate markets for investment in 2015", "video_id": "video12685", "sen_id": 240488}, {"caption": "there is sign board mentioning different places", "video_id": "video12685", "sen_id": 240489}, {"caption": "a man talking watching a boardits blue colored", "video_id": "video12685", "sen_id": 240490}, {"caption": "two men talk about the top 10 real estate markets for investment in 2015", "video_id": "video12685", "sen_id": 240491}, {"caption": "the chart on the video is showing the top ten list of real estate markets which real estate investors can look at to get a better idea when contemplating relocating their businesses", "video_id": "video12685", "sen_id": 240492}, {"caption": "a investor showing what are all the top 10 real estate markets in 2015", "video_id": "video12685", "sen_id": 240493}, {"caption": "a blue and white sign is outside a building", "video_id": "video12685", "sen_id": 240494}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12685", "sen_id": 240495}, {"caption": "the man talks about the top ten real estate markets", "video_id": "video12685", "sen_id": 240496}, {"caption": "the real estate market for investment with houston being rated the highest", "video_id": "video12685", "sen_id": 240497}, {"caption": "a man in a suit talks about the real estate markets in american cities", "video_id": "video12685", "sen_id": 240498}, {"caption": "some white text is on a blue background", "video_id": "video12685", "sen_id": 240499}, {"caption": "a blue and yellow goldfish swimming in water", "video_id": "video10292", "sen_id": 240500}, {"caption": "stocking guidelines for goldfish and different types of fish", "video_id": "video10292", "sen_id": 240501}, {"caption": "a women in the background describing the living conditions for goldfish", "video_id": "video10292", "sen_id": 240502}, {"caption": "a woman discusses a couple of fish in a small containers", "video_id": "video10292", "sen_id": 240503}, {"caption": "a black fish and a goldfish with large eyes swim in a tank", "video_id": "video10292", "sen_id": 240504}, {"caption": "two fishes are moving in a water aquarium", "video_id": "video10292", "sen_id": 240505}, {"caption": "two fishes having big eye one with yellow colour and another one with black colour both are swimming in fish tank", "video_id": "video10292", "sen_id": 240506}, {"caption": "two fish play in a fish tank with bugged out eyes", "video_id": "video10292", "sen_id": 240507}, {"caption": "two fish are in the aquarium and swimming near the glass", "video_id": "video10292", "sen_id": 240508}, {"caption": "in a fish tank the two fishes are roaming the black fish and the orange fishes are floating beautifully", "video_id": "video10292", "sen_id": 240509}, {"caption": "there is a orange color fish floating in the water", "video_id": "video10292", "sen_id": 240510}, {"caption": "goldfish are swimming in a tank while a woman talks about them", "video_id": "video10292", "sen_id": 240511}, {"caption": "a black and orange goldfish swims in a tank side by side", "video_id": "video10292", "sen_id": 240512}, {"caption": "two gold fish in aquarium one is orange and another is black and someone is talking about it", "video_id": "video10292", "sen_id": 240513}, {"caption": "some fish are swimming around in a tank", "video_id": "video10292", "sen_id": 240514}, {"caption": "there is a orange fish floating in to the water", "video_id": "video10292", "sen_id": 240515}, {"caption": "women talking about gold fish", "video_id": "video10292", "sen_id": 240516}, {"caption": "two fish are swimming back and forth within a fish tank", "video_id": "video10292", "sen_id": 240517}, {"caption": "a fish swimming inside water and aquarium of color fishes inside moving displaying on screen", "video_id": "video10292", "sen_id": 240518}, {"caption": "some gold fish are swimming around in the water", "video_id": "video10292", "sen_id": 240519}, {"caption": "groups of soldiers line up in a large square and prepare for a parade", "video_id": "video11710", "sen_id": 240520}, {"caption": "showing a military parade and people putting their hands in the air", "video_id": "video11710", "sen_id": 240521}, {"caption": "north korean soldiers stage a military parade and shakes its fists in unison", "video_id": "video11710", "sen_id": 240522}, {"caption": "a large crowd of military men raise their right hands together at a rally", "video_id": "video11710", "sen_id": 240523}, {"caption": "a large group of people wearing military uniforms gathered at a big ground and started to make woo sounds", "video_id": "video11710", "sen_id": 240524}, {"caption": "man describing his experience watching a north korean military parade", "video_id": "video11710", "sen_id": 240525}, {"caption": "people in uniform are standing in order they are raising their hands at 45 degrees", "video_id": "video11710", "sen_id": 240526}, {"caption": "north korean soldiers standing together in a very large group while they shake their fists", "video_id": "video11710", "sen_id": 240527}, {"caption": "group of army people standing in group and lifting hand", "video_id": "video11710", "sen_id": 240528}, {"caption": "a man is talking about day seven with the military", "video_id": "video11710", "sen_id": 240529}, {"caption": "north korean military soldiers are formed in a parade and chanting", "video_id": "video11710", "sen_id": 240530}, {"caption": "a group of military men taking some oath", "video_id": "video11710", "sen_id": 240531}, {"caption": "the men in the military wearing green uniforms stand in ranks outdoors", "video_id": "video11710", "sen_id": 240532}, {"caption": "there is a military parade where the regime is shaking their fists", "video_id": "video11710", "sen_id": 240533}, {"caption": "a heavy number of military force is ready to take action on roads", "video_id": "video11710", "sen_id": 240534}, {"caption": "there is a man talking a bout a force", "video_id": "video11710", "sen_id": 240535}, {"caption": "army people on the assembly and takes oath to destroy the enemy", "video_id": "video11710", "sen_id": 240536}, {"caption": "a large group of soldiers stand in formation and chant raising arms", "video_id": "video11710", "sen_id": 240537}, {"caption": "a guy speaking about phong phang soldiers and how they are prepared to destroy", "video_id": "video11710", "sen_id": 240538}, {"caption": "a narrator talks about a military parade in north korea", "video_id": "video11710", "sen_id": 240539}, {"caption": "a mixture of ingredients including vegetables are stirred within a pan and set out on a table", "video_id": "video10126", "sen_id": 240540}, {"caption": "a person is mixing vegetables together in the bowl", "video_id": "video10126", "sen_id": 240541}, {"caption": "a woman is cooking vegetables in a black pan while mixing them", "video_id": "video10126", "sen_id": 240542}, {"caption": "a hispanic woman cooking with meat and vegetables", "video_id": "video10126", "sen_id": 240543}, {"caption": "woman cooks a special meal with minced meat in it", "video_id": "video10126", "sen_id": 240544}, {"caption": "a lady in her kitchen adds brown pork into already cooking vegetables in the saucepan and later shows how to serve it", "video_id": "video10126", "sen_id": 240545}, {"caption": "a woman is putting ground pork in a pan that is cooking on the stove", "video_id": "video10126", "sen_id": 240546}, {"caption": "the woman adds ground pork to the other ingredients cooking in the pan", "video_id": "video10126", "sen_id": 240547}, {"caption": "a cook making a dish by mixing the ingredients in a pan", "video_id": "video10126", "sen_id": 240548}, {"caption": "a woman gives directions to cook a delicious healthy meal", "video_id": "video10126", "sen_id": 240549}, {"caption": "a who is at the kitchen is preparing food and then sh e sets the table", "video_id": "video10126", "sen_id": 240550}, {"caption": "a man explain how is prepare the food", "video_id": "video10126", "sen_id": 240551}, {"caption": "a person adds items to a pan cooking on the stove", "video_id": "video10126", "sen_id": 240552}, {"caption": "a woman is sauteing bright orange chopped vegetables and minced meat in a black cast iron frying pan on a stove", "video_id": "video10126", "sen_id": 240553}, {"caption": "some meatballs and potatos are lying on a plate", "video_id": "video10126", "sen_id": 240554}, {"caption": "ground pork and vegetables are in a frying pan on the kitchen stove", "video_id": "video10126", "sen_id": 240555}, {"caption": "a woman is adding ground pork to a delicious looking pan", "video_id": "video10126", "sen_id": 240556}, {"caption": "a person scooping in a bowl filled with meat onto food in a black pan", "video_id": "video10126", "sen_id": 240557}, {"caption": "a woman describes what she is cooking in a small pan which includes ground pork and vegetables", "video_id": "video10126", "sen_id": 240558}, {"caption": "someone is frying up some food in a pan", "video_id": "video10126", "sen_id": 240559}, {"caption": "children play in helmets while a red and yellow tent sits on the pavement", "video_id": "video12661", "sen_id": 240560}, {"caption": "wreckage of a black supercar that went through a vending stand", "video_id": "video12661", "sen_id": 240561}, {"caption": "people gather at the scene of an automobile crash moments after it happened", "video_id": "video12661", "sen_id": 240562}, {"caption": "an expensive car is shown crashed into a tree on the sidewalk", "video_id": "video12661", "sen_id": 240563}, {"caption": "several people are moving around a crash site while a man tries to get out of a car", "video_id": "video12661", "sen_id": 240564}, {"caption": "a group of people are dazed and confused in the wake of an auto wreck", "video_id": "video12661", "sen_id": 240565}, {"caption": "there is a helmet man talking someone in a accident spot", "video_id": "video12661", "sen_id": 240566}, {"caption": "several people speaking a foreign language pulling themselves together after a traffic accident", "video_id": "video12661", "sen_id": 240567}, {"caption": "looks like a sports car had an accident with a huge piniata", "video_id": "video12661", "sen_id": 240568}, {"caption": "its blast where car get shit on tree horrible accident", "video_id": "video12661", "sen_id": 240569}, {"caption": "some blasting is taken place and the wpmen is crying that the things were lost during the blast", "video_id": "video12661", "sen_id": 240570}, {"caption": "people gather around as a man climbs out of a car that has just hit a tree", "video_id": "video12661", "sen_id": 240571}, {"caption": "aftermath of a terrorist attack with people being shocked", "video_id": "video12661", "sen_id": 240572}, {"caption": "a group of people in an area that was affected by a car accident", "video_id": "video12661", "sen_id": 240573}, {"caption": "several people are on phones reporting the scene of a crashed sports car", "video_id": "video12661", "sen_id": 240574}, {"caption": "people living in a rather poor neighborhood seem to be talking to each other", "video_id": "video12661", "sen_id": 240575}, {"caption": "there was a car accident involving a gray sports car", "video_id": "video12661", "sen_id": 240576}, {"caption": "men are looking at a severe vehicle accident in the streets", "video_id": "video12661", "sen_id": 240577}, {"caption": "a car is got accident and it had big damage", "video_id": "video12661", "sen_id": 240578}, {"caption": "people examine a car that has major damage to it", "video_id": "video12661", "sen_id": 240579}, {"caption": "a man is sking down a steep mountain while it is snowing", "video_id": "video12339", "sen_id": 240580}, {"caption": "a person dressed in lack skis down the side of a snow covered slope", "video_id": "video12339", "sen_id": 240581}, {"caption": "a skier talks about the conditions he will be facing on a run down the mountain", "video_id": "video12339", "sen_id": 240582}, {"caption": "a skiier is going down the mountain skiing", "video_id": "video12339", "sen_id": 240583}, {"caption": "a skier discusses the conditions that he will be encountering on an upcoming run", "video_id": "video12339", "sen_id": 240584}, {"caption": "people skiing and snowboarding on a snow covered mountain", "video_id": "video12339", "sen_id": 240585}, {"caption": "a snowy day in the mountains and a skier jumping down cliffs", "video_id": "video12339", "sen_id": 240586}, {"caption": "a man describing himself extreme ski on the backs of snowy mountains", "video_id": "video12339", "sen_id": 240587}, {"caption": "a man is trekking through the snow followed by a picture of a walking stick snowy trees and someone skiing down a mountainside", "video_id": "video12339", "sen_id": 240588}, {"caption": "a male voice is narrating a snow scene which includes a person skiing", "video_id": "video12339", "sen_id": 240589}, {"caption": "evergreen trees with snow falling on the mountain", "video_id": "video12339", "sen_id": 240590}, {"caption": "there is a man walking through the snow without fear", "video_id": "video12339", "sen_id": 240591}, {"caption": "snow pouring down and a man skiing on the snow from high altitude", "video_id": "video12339", "sen_id": 240592}, {"caption": "a man describes a particularly daunting skiing feat", "video_id": "video12339", "sen_id": 240593}, {"caption": "a snow covered mountain is being shown and one person is skating from the top of the moutain", "video_id": "video12339", "sen_id": 240594}, {"caption": "it is snowing white snow in the forest", "video_id": "video12339", "sen_id": 240595}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video12339", "sen_id": 240596}, {"caption": "a snow skiier is travelling quickly downhill performing dangerous stunts", "video_id": "video12339", "sen_id": 240597}, {"caption": "the mountains are full of snow and the trees are white with snow", "video_id": "video12339", "sen_id": 240598}, {"caption": "a man in heavy snowfall is jumping from top of mountain", "video_id": "video12339", "sen_id": 240599}, {"caption": "a person is straining some pasta in a strainer", "video_id": "video10114", "sen_id": 240600}, {"caption": "a man adds noodles to a meat and vegetable dish in a pan on the stove", "video_id": "video10114", "sen_id": 240601}, {"caption": "some one in a kitchen preparing noodles in the pan", "video_id": "video10114", "sen_id": 240602}, {"caption": "making the best vegetable dish preperation theling the cook", "video_id": "video10114", "sen_id": 240603}, {"caption": "its a cooking show in which the noodles are cut using the scissor an dropped into the pan", "video_id": "video10114", "sen_id": 240604}, {"caption": "somebody making the newdrils in a pan cutting it", "video_id": "video10114", "sen_id": 240605}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10114", "sen_id": 240606}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10114", "sen_id": 240607}, {"caption": "a chef is cooking noodles heshe has boiled the noodles without breaking them and before putting it in the pan and tossing it heshe uses a scissor to break apart the noodles to eatable sizes", "video_id": "video10114", "sen_id": 240608}, {"caption": "a cooked noodles are cut into pieces and ready to put in the pan containing onion tomato gracy", "video_id": "video10114", "sen_id": 240609}, {"caption": "some noodles are being cooked in a pan", "video_id": "video10114", "sen_id": 240610}, {"caption": "in the kitchen someone preparing a recipe", "video_id": "video10114", "sen_id": 240611}, {"caption": "someone is adding sliced noodles to vegetables in the frying pan", "video_id": "video10114", "sen_id": 240612}, {"caption": "in black color dish bowl all food items and a man having in his hands with noodles he cutting the noodles with scissors", "video_id": "video10114", "sen_id": 240613}, {"caption": "a cook picks up delicious pasta off a pan with a strainer", "video_id": "video10114", "sen_id": 240614}, {"caption": "a person cooking at the stove and cutting up noodles", "video_id": "video10114", "sen_id": 240615}, {"caption": "person cutting food into small pieces", "video_id": "video10114", "sen_id": 240616}, {"caption": "how to cook great food com making of recipe putting noodles", "video_id": "video10114", "sen_id": 240617}, {"caption": "a cook demonstrates cutting up noodles with scissors", "video_id": "video10114", "sen_id": 240618}, {"caption": "someone is using scissors to cut up some noodles", "video_id": "video10114", "sen_id": 240619}, {"caption": "beautiful scenes of the grand canyon and its many cliffs during the day", "video_id": "video12753", "sen_id": 240620}, {"caption": "darkness followed by light that shows the grand canyon", "video_id": "video12753", "sen_id": 240621}, {"caption": "a man is talking about the landscape of an area", "video_id": "video12753", "sen_id": 240622}, {"caption": "the rising sun changes the way the grand canyon looks to tourists", "video_id": "video12753", "sen_id": 240623}, {"caption": "a man talks about the view of the grand canyon while rock music plays", "video_id": "video12753", "sen_id": 240624}, {"caption": "a narrator describes the changing appearance of the grand canyon as light moves", "video_id": "video12753", "sen_id": 240625}, {"caption": "footage of the grand canyon as the sun rises and sets", "video_id": "video12753", "sen_id": 240626}, {"caption": "the shifting shadows of a very beautiful natural landscape", "video_id": "video12753", "sen_id": 240627}, {"caption": "scenes of the sun rising over the grand canyon with a man talking about how spectacular the sight is", "video_id": "video12753", "sen_id": 240628}, {"caption": "a man is telling about a famous place of the world", "video_id": "video12753", "sen_id": 240629}, {"caption": "shadows move from the top of the famous grand canyon", "video_id": "video12753", "sen_id": 240630}, {"caption": "a man is demonstrating the effects of shadows and lighting on beautiful majestic desert canyons", "video_id": "video12753", "sen_id": 240631}, {"caption": "sunrise on canyons along with some people viewing", "video_id": "video12753", "sen_id": 240632}, {"caption": "a sunrises over a canyon and slowly illuminates the rock formations", "video_id": "video12753", "sen_id": 240633}, {"caption": "shifting shadows in the grand canyon at sunrise reveals the spectacular view", "video_id": "video12753", "sen_id": 240634}, {"caption": "its a sun rise in all mountains showing", "video_id": "video12753", "sen_id": 240635}, {"caption": "a sunrise in a large canyon is visible from many angles while a river can be seen down in the valley", "video_id": "video12753", "sen_id": 240636}, {"caption": "an aerial of beautiful large mountains are shown in the image", "video_id": "video12753", "sen_id": 240637}, {"caption": "a rare video footage for a beautiful mountains with morning view", "video_id": "video12753", "sen_id": 240638}, {"caption": "a narrator is presenting the grand canyon for a nature show", "video_id": "video12753", "sen_id": 240639}, {"caption": "traffic going both ways on a busy subtropical street", "video_id": "video10557", "sen_id": 240640}, {"caption": "cars are travelling both directions on a road and people are walking on the sidewalk", "video_id": "video10557", "sen_id": 240641}, {"caption": "a few cars drive up and down the street while music plays in the background", "video_id": "video10557", "sen_id": 240642}, {"caption": "traffic and pedestrians move down a subtropical street", "video_id": "video10557", "sen_id": 240643}, {"caption": "traffic on a busy street moves slowly in both directions", "video_id": "video10557", "sen_id": 240644}, {"caption": "in the street there are several cars driving across", "video_id": "video10557", "sen_id": 240645}, {"caption": "there are mnay mens walking on the street", "video_id": "video10557", "sen_id": 240646}, {"caption": "many cars are halts in the traffic of city", "video_id": "video10557", "sen_id": 240647}, {"caption": "cars are moving in the road of a town", "video_id": "video10557", "sen_id": 240648}, {"caption": "cars are driving down a road and some people are walking on the sidewalk", "video_id": "video10557", "sen_id": 240649}, {"caption": "many cars are moving on a busy street with people walking by", "video_id": "video10557", "sen_id": 240650}, {"caption": "a busy day on a busy street filled with the movement of different vehicles", "video_id": "video10557", "sen_id": 240651}, {"caption": "a motorcycle is heard idling by a street filled with traffic near palm trees buildings and the ocean", "video_id": "video10557", "sen_id": 240652}, {"caption": "cars go by on a busy street in front of a hotel in a city", "video_id": "video10557", "sen_id": 240653}, {"caption": "in a road different type of cars moving and people walking in foot path", "video_id": "video10557", "sen_id": 240654}, {"caption": "there is a orange color car moving on the street", "video_id": "video10557", "sen_id": 240655}, {"caption": "a car drives on a road across from a park by the beach", "video_id": "video10557", "sen_id": 240656}, {"caption": "a view of a urban street reveals several cabs and cars moving around near palm trees to the sound of a idling motorcycle", "video_id": "video10557", "sen_id": 240657}, {"caption": "a few car riding by a park and a few building followed by a taxi", "video_id": "video10557", "sen_id": 240658}, {"caption": "many peoples are driving in their car", "video_id": "video10557", "sen_id": 240659}, {"caption": "a woman is showing how to add volume to her hair", "video_id": "video10501", "sen_id": 240660}, {"caption": "a young girl in a purple dress demonstrates how to detangle and beautify one's hair by flipping one's head over and teasing out the tangles", "video_id": "video10501", "sen_id": 240661}, {"caption": "a girl changes her normal curly hair to hollywood style", "video_id": "video10501", "sen_id": 240662}, {"caption": "a woman in a purple tank top is demonstrating how to create voluminous curly hair", "video_id": "video10501", "sen_id": 240663}, {"caption": "the lady is telling the lady viewers to flip their heads upside down and separate all the curls out of your fingers", "video_id": "video10501", "sen_id": 240664}, {"caption": "a violet colour dressed girl is making a free hair style", "video_id": "video10501", "sen_id": 240665}, {"caption": "sexy brunette showing her hair style and ways to make it look more sexier", "video_id": "video10501", "sen_id": 240666}, {"caption": "a women in purple dress is showing her hair", "video_id": "video10501", "sen_id": 240667}, {"caption": "a women in purple trys to show off her hairstyle", "video_id": "video10501", "sen_id": 240668}, {"caption": "one beautiful and lovely women makeup her hair", "video_id": "video10501", "sen_id": 240669}, {"caption": "beautiful girl giving tips how to make your curly hair prettier", "video_id": "video10501", "sen_id": 240670}, {"caption": "a woman with brown hair is talking about something", "video_id": "video10501", "sen_id": 240671}, {"caption": "a women in violet dressing showing her hair", "video_id": "video10501", "sen_id": 240672}, {"caption": "a lady with purple dress teaches how to seperate your curly hair with the fingers", "video_id": "video10501", "sen_id": 240673}, {"caption": "a woman is tangling her hair her finger", "video_id": "video10501", "sen_id": 240674}, {"caption": "the beautiful girl in purple dress is telling us about different types of haidressing", "video_id": "video10501", "sen_id": 240675}, {"caption": "there is a violet women applying makeup by herself", "video_id": "video10501", "sen_id": 240676}, {"caption": "a girl is showing off hair on camera", "video_id": "video10501", "sen_id": 240677}, {"caption": "a young woman descrbes and demonstrates her hair style method", "video_id": "video10501", "sen_id": 240678}, {"caption": "a presenter showing how to show thin hair lustrous", "video_id": "video10501", "sen_id": 240679}, {"caption": "a group of chefs have their recipes judged in a contest", "video_id": "video10745", "sen_id": 240680}, {"caption": "a cooking show contestant refuses to sample a dish without a fork", "video_id": "video10745", "sen_id": 240681}, {"caption": "several people are participating in a television cooking competition", "video_id": "video10745", "sen_id": 240682}, {"caption": "a man serves a meal to a chef who isn't impressed", "video_id": "video10745", "sen_id": 240683}, {"caption": "competitors nervously await as a judge tries the food they just cooked", "video_id": "video10745", "sen_id": 240684}, {"caption": "people are preparing the tables in a restaurant and talking", "video_id": "video10745", "sen_id": 240685}, {"caption": "a man in white shirt serves food in a restaurant", "video_id": "video10745", "sen_id": 240686}, {"caption": "celebrity chef gordon ramsay is tasting the food prepared by the masterchef contestants", "video_id": "video10745", "sen_id": 240687}, {"caption": "a culinary judge rates the participant s food with a low score so the man swore with a curse that was censored", "video_id": "video10745", "sen_id": 240688}, {"caption": "chef ramsey evaluates food during a hells kitchen challenge", "video_id": "video10745", "sen_id": 240689}, {"caption": "all persons are speaking together on the dinning room", "video_id": "video10745", "sen_id": 240690}, {"caption": "a is talking the opposite of what the chef is asking", "video_id": "video10745", "sen_id": 240691}, {"caption": "chef tasting food in a competition", "video_id": "video10745", "sen_id": 240692}, {"caption": "people are participating in a cooking show on tv", "video_id": "video10745", "sen_id": 240693}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10745", "sen_id": 240694}, {"caption": "there is a man in white dressing serving a dish", "video_id": "video10745", "sen_id": 240695}, {"caption": "the man wearing the white chef uniform teach the group how to cook", "video_id": "video10745", "sen_id": 240696}, {"caption": "on a tv show about competing cooks as chef ramsey looks at a cook s dish the cook mouths off defiantly to him", "video_id": "video10745", "sen_id": 240697}, {"caption": "contestants in a cooking contest are being judged one of the contestants is mad that his dish is not being received well", "video_id": "video10745", "sen_id": 240698}, {"caption": "multiple cooks reacting to a master chef s criticism about their cooking", "video_id": "video10745", "sen_id": 240699}, {"caption": "a man discusses a news story that he is getting ready for a student news channel", "video_id": "video12388", "sen_id": 240700}, {"caption": "a man in an orange and red plaid shirt talks about student events", "video_id": "video12388", "sen_id": 240701}, {"caption": "middle aged man in an orange plaid shirt giving the world news", "video_id": "video12388", "sen_id": 240702}, {"caption": "a man in a red plaid shirt talks about current events", "video_id": "video12388", "sen_id": 240703}, {"caption": "a cnn news clip is giving the news that a terorist is dead", "video_id": "video12388", "sen_id": 240704}, {"caption": "a man is providing the introduction to cnn student news", "video_id": "video12388", "sen_id": 240705}, {"caption": "a man is talking on tv in a news channel", "video_id": "video12388", "sen_id": 240706}, {"caption": "men in brown dress reading the news about someone who put cap and smiling in photo", "video_id": "video12388", "sen_id": 240707}, {"caption": "a man is talking in the news channel", "video_id": "video12388", "sen_id": 240708}, {"caption": "student cnn news is going on a tv and one of the terriorist is died in attack by the police raid", "video_id": "video12388", "sen_id": 240709}, {"caption": "a man with check shirt talking from a street", "video_id": "video12388", "sen_id": 240710}, {"caption": "student cnn news program is going on an the reporter analysis various events from different nations", "video_id": "video12388", "sen_id": 240711}, {"caption": "cnn student news first up this friday november 20th", "video_id": "video12388", "sen_id": 240712}, {"caption": "a news reporter does a show that is directed at student viewers", "video_id": "video12388", "sen_id": 240713}, {"caption": "guy in newsroom talking about the current events between two country", "video_id": "video12388", "sen_id": 240714}, {"caption": "there is a man in check shirt talking from the studio", "video_id": "video12388", "sen_id": 240715}, {"caption": "one man wearing red color dress talking about a man", "video_id": "video12388", "sen_id": 240716}, {"caption": "a news reader reading a news in news program", "video_id": "video12388", "sen_id": 240717}, {"caption": "student at cnn news the person talks and red line moves from one place to another", "video_id": "video12388", "sen_id": 240718}, {"caption": "a person in brown shirt speaking about the earth in student news tv channel", "video_id": "video12388", "sen_id": 240719}, {"caption": "a still photo of a crowd of people and a man in a black shirt talking", "video_id": "video10315", "sen_id": 240720}, {"caption": "a man is driving his car while wearing a sweatshirt", "video_id": "video10315", "sen_id": 240721}, {"caption": "there is a man talking while driving a car", "video_id": "video10315", "sen_id": 240722}, {"caption": "a man is driving a car and talking about the results of post-war germany he speaks of how post-war reparations have crippled the country financially", "video_id": "video10315", "sen_id": 240723}, {"caption": "a driving man narrating about some old photos", "video_id": "video10315", "sen_id": 240724}, {"caption": "a guy speaking about the pavements during the world war 2", "video_id": "video10315", "sen_id": 240725}, {"caption": "a historic scenes shown and a person describes when driving car", "video_id": "video10315", "sen_id": 240726}, {"caption": "as he drives a man explains how a bit about how life in post-war germany was as images from this time are displayed", "video_id": "video10315", "sen_id": 240727}, {"caption": "a few people stands outside a building and a man drives behind a wheel", "video_id": "video10315", "sen_id": 240728}, {"caption": "a man drives a car while giving a brief history lesson", "video_id": "video10315", "sen_id": 240729}, {"caption": "man in a car explaining the effects of world war", "video_id": "video10315", "sen_id": 240730}, {"caption": "a commentator explains conditions of post war germany and its financial status", "video_id": "video10315", "sen_id": 240731}, {"caption": "a man is talking and showing pictures about germany", "video_id": "video10315", "sen_id": 240732}, {"caption": "a man in a car narrates about post war german history", "video_id": "video10315", "sen_id": 240733}, {"caption": "a man is driving in a car out side", "video_id": "video10315", "sen_id": 240734}, {"caption": "a man driving in a car while narrating on post war germany photos", "video_id": "video10315", "sen_id": 240735}, {"caption": "a man have beard is driving a car and explaining some thing", "video_id": "video10315", "sen_id": 240736}, {"caption": "a man is talking about post world war 1 germany", "video_id": "video10315", "sen_id": 240737}, {"caption": "bunch of photographs being shown on the screen as bearded guy drives the car", "video_id": "video10315", "sen_id": 240738}, {"caption": "some people in a group are waiting for some food", "video_id": "video10315", "sen_id": 240739}, {"caption": "a person is playing around with sliced apples on a plate", "video_id": "video12209", "sen_id": 240740}, {"caption": "sliced apples on a white plate being covered by plastic wrap", "video_id": "video12209", "sen_id": 240741}, {"caption": "a tutorial from lucky penny shop for a recipe", "video_id": "video12209", "sen_id": 240742}, {"caption": "a man is talking about microwaving sliced apples", "video_id": "video12209", "sen_id": 240743}, {"caption": "thinly sliced pieces of apple being cover in cling wrap on a plate", "video_id": "video12209", "sen_id": 240744}, {"caption": "in a white plate thinly sliced apple is taken and someone covers it with plastic", "video_id": "video12209", "sen_id": 240745}, {"caption": "a man taking thin slices of apple out of the microwave and covering them with plastic", "video_id": "video12209", "sen_id": 240746}, {"caption": "a chef explains how much to microwave sliced apples for a few seconds and lays them in a plate covered by a sheet of plastic", "video_id": "video12209", "sen_id": 240747}, {"caption": "a man places a plate of apple slices on a table and puts saran wrap over it", "video_id": "video12209", "sen_id": 240748}, {"caption": "a person shows the apple slices in a plate and cover the apple slices using a polythene", "video_id": "video12209", "sen_id": 240749}, {"caption": "a man cuts apple into to small pieces and puts a plastic cover over it", "video_id": "video12209", "sen_id": 240750}, {"caption": "a man discusses microwaving apple slices for a recipe", "video_id": "video12209", "sen_id": 240751}, {"caption": "apples are cut into many pieces and are placed on white plate covered by transparent paper", "video_id": "video12209", "sen_id": 240752}, {"caption": "person is showing the teen slices of apple in the plate", "video_id": "video12209", "sen_id": 240753}, {"caption": "a person is piling up some apple slices", "video_id": "video12209", "sen_id": 240754}, {"caption": "someone is arranging apple slices on a plate then covering them", "video_id": "video12209", "sen_id": 240755}, {"caption": "a lady how is cut the slice as of apple and use", "video_id": "video12209", "sen_id": 240756}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video12209", "sen_id": 240757}, {"caption": "person is showing the teen slices of apple in white plate", "video_id": "video12209", "sen_id": 240758}, {"caption": "some food is being wrapped in some plastic", "video_id": "video12209", "sen_id": 240759}, {"caption": "a silver car with the engine being revved and then taking off to a high rate of speed", "video_id": "video12089", "sen_id": 240760}, {"caption": "a gray car drives slowly then quickly on a racetrack", "video_id": "video12089", "sen_id": 240761}, {"caption": "a sports car's engine revs and then takes off quickly", "video_id": "video12089", "sen_id": 240762}, {"caption": "a silver low to the ground race car is taking off on the race track", "video_id": "video12089", "sen_id": 240763}, {"caption": "two sports cars speed racing to the finish line", "video_id": "video12089", "sen_id": 240764}, {"caption": "a silver ferrai drag racing at a track", "video_id": "video12089", "sen_id": 240765}, {"caption": "top tier luxury sport car in action revving engine like there is no tomorrow", "video_id": "video12089", "sen_id": 240766}, {"caption": "a driver is revving the engine in a very expensive sports car", "video_id": "video12089", "sen_id": 240767}, {"caption": "a silver sports car is speeding down a road", "video_id": "video12089", "sen_id": 240768}, {"caption": "people watch outside as a race car drives", "video_id": "video12089", "sen_id": 240769}, {"caption": "there is a stylish car moving in to the road", "video_id": "video12089", "sen_id": 240770}, {"caption": "someone is driving a silver luxury sports car very fast", "video_id": "video12089", "sen_id": 240771}, {"caption": "sportsrace cars are standing in a line on the roadgrey color car which stands first has started movingcrowds are watching over this", "video_id": "video12089", "sen_id": 240772}, {"caption": "expensive cars raving their engines before driving off down a race track", "video_id": "video12089", "sen_id": 240773}, {"caption": "a silver sports car it let loose on the racetrack as its engine growls", "video_id": "video12089", "sen_id": 240774}, {"caption": "several silver lamborghini race cars line up to make circles around a racetrack", "video_id": "video12089", "sen_id": 240775}, {"caption": "group car racers were racing the cars on runway", "video_id": "video12089", "sen_id": 240776}, {"caption": "a number of sports cars being driven on a race track with people watching on both sides", "video_id": "video12089", "sen_id": 240777}, {"caption": "sports cars parade to the starting line while the first one peals out", "video_id": "video12089", "sen_id": 240778}, {"caption": "an expensive car is being filmed out side", "video_id": "video12089", "sen_id": 240779}, {"caption": "a pan of carrots and celery is cooked with hot broth", "video_id": "video12252", "sen_id": 240780}, {"caption": "a man adds and boils chicken broth to his pot of carrots onions and celery", "video_id": "video12252", "sen_id": 240781}, {"caption": "some one in a kitchen sliced vegetables and preparing a curry", "video_id": "video12252", "sen_id": 240782}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12252", "sen_id": 240783}, {"caption": "a chef describes a dish he is preparing and demonstrates his techniues", "video_id": "video12252", "sen_id": 240784}, {"caption": "a man starts cooking vegetable soup in the bowl and waiting for it to heat and boil", "video_id": "video12252", "sen_id": 240785}, {"caption": "the chef indicated that two quarts of chicken broth would be best", "video_id": "video12252", "sen_id": 240786}, {"caption": "a man is adding broth to chopped up vegetable in a pot on the stove", "video_id": "video12252", "sen_id": 240787}, {"caption": "food boiling in a sufuria", "video_id": "video12252", "sen_id": 240788}, {"caption": "a boiling pot of vegetables and stock is prepared before noodles are added", "video_id": "video12252", "sen_id": 240789}, {"caption": "the man is putting water into the previously mixed vegetables", "video_id": "video12252", "sen_id": 240790}, {"caption": "some soup is boiling in a silver bowl", "video_id": "video12252", "sen_id": 240791}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12252", "sen_id": 240792}, {"caption": "making the vegetables bonda in the hotel at the cook", "video_id": "video12252", "sen_id": 240793}, {"caption": "a person is pouring water to a mixture of vegetables and boiling it", "video_id": "video12252", "sen_id": 240794}, {"caption": "someone is mixing up some ingredients to eat", "video_id": "video12252", "sen_id": 240795}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video12252", "sen_id": 240796}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video12252", "sen_id": 240797}, {"caption": " and celery have been cooked in a pan then broth is poured in", "video_id": "video12252", "sen_id": 240798}, {"caption": "a man describes part of the cooking process in a broth recipe", "video_id": "video12252", "sen_id": 240799}, {"caption": "a man named darren star stands on a track and talks about the 800 meter dash and its effects on the human body", "video_id": "video10375", "sen_id": 240800}, {"caption": "a man in sunglasses an a dark colored sports shirt talks while standing on a track field", "video_id": "video10375", "sen_id": 240801}, {"caption": "darren straw discusses how to run the 800 meter successfully", "video_id": "video10375", "sen_id": 240802}, {"caption": "a man from expert village named darren storm is explaining how to run the 800m dash in track and field", "video_id": "video10375", "sen_id": 240803}, {"caption": "person standing ar a race track talking about how to run 100 meters successfully", "video_id": "video10375", "sen_id": 240804}, {"caption": "african man is talking about athletics while walking on the pitch", "video_id": "video10375", "sen_id": 240805}, {"caption": "darren introduces that he will show you how to run 800 meters successfully", "video_id": "video10375", "sen_id": 240806}, {"caption": "a guy in a dark blue shirt and wearing glasses is on a track explaining how to run 800 meters successfully", "video_id": "video10375", "sen_id": 240807}, {"caption": "an athletic man on a track is teaching how to run the 800 meter race successfully", "video_id": "video10375", "sen_id": 240808}, {"caption": "man in blue shirt is on the court and talking", "video_id": "video10375", "sen_id": 240809}, {"caption": "a person in blue t shirt standing on a running track", "video_id": "video10375", "sen_id": 240810}, {"caption": "a track coach gives expert advice tailored specificically to running the 800 meter race", "video_id": "video10375", "sen_id": 240811}, {"caption": "a bald man wearing sunglasses and a dark shirt stands on a brown running track with white-line lanes between tall lampposts and a green field", "video_id": "video10375", "sen_id": 240812}, {"caption": "a man in blue tshirt discusses running techniques on a track and field course", "video_id": "video10375", "sen_id": 240813}, {"caption": "a man in a dark blue polo shirt and sunglasses gives advice about how to run while standing on a track", "video_id": "video10375", "sen_id": 240814}, {"caption": "a man in blue shirt talking in the ground", "video_id": "video10375", "sen_id": 240815}, {"caption": "this guy is talking about running about in the field and what to work on", "video_id": "video10375", "sen_id": 240816}, {"caption": "a guy is tell us how to run a certain run properly", "video_id": "video10375", "sen_id": 240817}, {"caption": "a man in sports tshirt stands on track of a sporting field discussing races", "video_id": "video10375", "sen_id": 240818}, {"caption": "there is a man with sun glasses on a red track in the middle of the day", "video_id": "video10375", "sen_id": 240819}, {"caption": "a woman stands in the bathroom while putting her hair in a ponytail", "video_id": "video11279", "sen_id": 240820}, {"caption": "a woman in a white shirt in a bathroom describes how her day has gone", "video_id": "video11279", "sen_id": 240821}, {"caption": "a woman in a white shirt is putting her hair into a pony tail", "video_id": "video11279", "sen_id": 240822}, {"caption": "a woman wearing a white long sleeve top is fixing her hair pulled backwards", "video_id": "video11279", "sen_id": 240823}, {"caption": "at the end of the day a woman in a white shirt is putting up her hair and talking about going up a mountain before relaxing", "video_id": "video11279", "sen_id": 240824}, {"caption": "a woman that is filming herself is putting her hair up and preparing to relax", "video_id": "video11279", "sen_id": 240825}, {"caption": "a woman in a white long sleeve shirt puts her hair up into a ponytail", "video_id": "video11279", "sen_id": 240826}, {"caption": "a lady is tying her hair in a knot she is wearing a white top", "video_id": "video11279", "sen_id": 240827}, {"caption": "a woman in a white shirt is fixing her hair into a ponytail", "video_id": "video11279", "sen_id": 240828}, {"caption": "a woman with dark hair wearing a white shirt is putting her hair into a pony tail while describing her day and what she is about to do next", "video_id": "video11279", "sen_id": 240829}, {"caption": "a woman in white dress is making a bun an her head", "video_id": "video11279", "sen_id": 240830}, {"caption": "a woman talking about her upcoming mountain climb", "video_id": "video11279", "sen_id": 240831}, {"caption": "a woman wearing a white shirt standing in a bathrom talking to the camara and putting her hair in a ponytail", "video_id": "video11279", "sen_id": 240832}, {"caption": "a woman is in a bathroom and putting her hair into a ponytail", "video_id": "video11279", "sen_id": 240833}, {"caption": "a woman is putting her hair in a pony tail", "video_id": "video11279", "sen_id": 240834}, {"caption": "the girl wearing white dress talking about some thing in the room", "video_id": "video11279", "sen_id": 240835}, {"caption": "a women wearing a white shirt putting her hair into a pony tail in a bathroom talking about getting ready for a climb", "video_id": "video11279", "sen_id": 240836}, {"caption": "more peoples sir=tting on the table and women in white dress putting band to her hair", "video_id": "video11279", "sen_id": 240837}, {"caption": "a girl in white dress wearing standing speaking ready to go and doing hairs style girl siting and drinking displaying on screen", "video_id": "video11279", "sen_id": 240838}, {"caption": "a woman is showing how to do a pony tail", "video_id": "video11279", "sen_id": 240839}, {"caption": "a man in a green shirt is sitting by a woman with brown hair", "video_id": "video10546", "sen_id": 240840}, {"caption": "at a tropical restaurant a young woman resists a man's advances", "video_id": "video10546", "sen_id": 240841}, {"caption": "a man sits down next to a woman and starts fondleing her", "video_id": "video10546", "sen_id": 240842}, {"caption": "a man wearing a green shirt is sitting with his girlfriend", "video_id": "video10546", "sen_id": 240843}, {"caption": "the man in green thinks he is hot stuff and trying to make a move on the lady", "video_id": "video10546", "sen_id": 240844}, {"caption": "a man and a woman sitting next to each other and hugging", "video_id": "video10546", "sen_id": 240845}, {"caption": "a man tries to put his hands all over a girl who pushes him off", "video_id": "video10546", "sen_id": 240846}, {"caption": "two persons are speaking each other on a hotel", "video_id": "video10546", "sen_id": 240847}, {"caption": "a man wearing green color shirt kissing a lady", "video_id": "video10546", "sen_id": 240848}, {"caption": "as the man takes a seat and tries to be intimate the woman shoves him away because she just wants a drink", "video_id": "video10546", "sen_id": 240849}, {"caption": "a man with a green polo shirt sits down to a lady at the beach and starts hugging her", "video_id": "video10546", "sen_id": 240850}, {"caption": "a man sits next to a woman the man then touches her and she stops him", "video_id": "video10546", "sen_id": 240851}, {"caption": "a green tshirt man kissing a woman in park", "video_id": "video10546", "sen_id": 240852}, {"caption": "a man is attempting to seduce a woman she declines", "video_id": "video10546", "sen_id": 240853}, {"caption": "woman and man man is making a move and she pushes him away", "video_id": "video10546", "sen_id": 240854}, {"caption": "romantic couple relaxing on a holiday resort and having ice cream", "video_id": "video10546", "sen_id": 240855}, {"caption": "a green shirt man comes and sits close to the girl and touches", "video_id": "video10546", "sen_id": 240856}, {"caption": "the man in the scene gets up and goes across to the lady and fondles her much to her opposing", "video_id": "video10546", "sen_id": 240857}, {"caption": "a man in a green oxford shirt sits down next to a dark haired lady who doesn t want him touching her", "video_id": "video10546", "sen_id": 240858}, {"caption": "some people are sitting down in a place", "video_id": "video10546", "sen_id": 240859}, {"caption": "chicken beef and what she says that very fast lol", "video_id": "video12863", "sen_id": 240860}, {"caption": "various kebabs are discussed specifically sweet meat sticks by a woman", "video_id": "video12863", "sen_id": 240861}, {"caption": "two people talking about grilled meat in singapore", "video_id": "video12863", "sen_id": 240862}, {"caption": "a woman in a black shirt describes meat on a stick from singapore", "video_id": "video12863", "sen_id": 240863}, {"caption": "a man talking to a lady about grilled meat in singapore", "video_id": "video12863", "sen_id": 240864}, {"caption": "in restaurant girl ordered food and she started to eat using sticks it looks yummy", "video_id": "video12863", "sen_id": 240865}, {"caption": "a chinese woman with black top explains about her dish", "video_id": "video12863", "sen_id": 240866}, {"caption": "there is a meet dish on the table", "video_id": "video12863", "sen_id": 240867}, {"caption": "a lady showing meats on sticks at an outdoor area", "video_id": "video12863", "sen_id": 240868}, {"caption": "a man is asking question of a woman regarding a grilled meat dish in singapore", "video_id": "video12863", "sen_id": 240869}, {"caption": "a very pretty lady from singapore is showing different types of meat eaten and cooked in singapore", "video_id": "video12863", "sen_id": 240870}, {"caption": "there is a woman eating a variety dish", "video_id": "video12863", "sen_id": 240871}, {"caption": "a young woman in an open market is describing a grilled meat product to a reporter", "video_id": "video12863", "sen_id": 240872}, {"caption": "a woman is eating a stick meat in the restaurant", "video_id": "video12863", "sen_id": 240873}, {"caption": "a young woman named annabelle shows us sweet meat on sticks", "video_id": "video12863", "sen_id": 240874}, {"caption": "a plate of grilled meat on sticks in singapore", "video_id": "video12863", "sen_id": 240875}, {"caption": "a woman is arranging food on a table", "video_id": "video12863", "sen_id": 240876}, {"caption": "a woman is describing food on a table outside at night", "video_id": "video12863", "sen_id": 240877}, {"caption": "a pair of young people talk about a meat dish they are getting ready to eat", "video_id": "video12863", "sen_id": 240878}, {"caption": "a lady sits by a white table eating some street food", "video_id": "video12863", "sen_id": 240879}, {"caption": "a bearded man talks about what a woman says in relation to her acting in a movie", "video_id": "video12280", "sen_id": 240880}, {"caption": "a man wearing a black shirt talking about a woman", "video_id": "video12280", "sen_id": 240881}, {"caption": "a person with beard and moustache is seated and talking", "video_id": "video12280", "sen_id": 240882}, {"caption": "a bearded man explains the disposition of a woman he had worked with on a film", "video_id": "video12280", "sen_id": 240883}, {"caption": "a man describing the differences in characters between different movies", "video_id": "video12280", "sen_id": 240884}, {"caption": "a man discusses an actress and her own feedback on playing a role", "video_id": "video12280", "sen_id": 240885}, {"caption": "a man with blonde hair describes a woman s opinion of a character", "video_id": "video12280", "sen_id": 240886}, {"caption": "a man talking about a woman character what she would do and what she would otherwise do being spontaneous about it he said", "video_id": "video12280", "sen_id": 240887}, {"caption": "men in black suit and gray hair giving interview to the channel", "video_id": "video12280", "sen_id": 240888}, {"caption": "a man describes his experience working with an actress on a character", "video_id": "video12280", "sen_id": 240889}, {"caption": "a man talking to the camera explain and discussing something", "video_id": "video12280", "sen_id": 240890}, {"caption": "a man is sitting in a chair talking on a video", "video_id": "video12280", "sen_id": 240891}, {"caption": "a manwith facial hair is sitting and speaking to the camera", "video_id": "video12280", "sen_id": 240892}, {"caption": "a blond middle-aged man with a beard is talking about female actress s character", "video_id": "video12280", "sen_id": 240893}, {"caption": "a man with a beard and a leather moto jacket is being interviewed about a character", "video_id": "video12280", "sen_id": 240894}, {"caption": "a man with a beard is talking to some peope", "video_id": "video12280", "sen_id": 240895}, {"caption": "a person describe a matter in his life", "video_id": "video12280", "sen_id": 240896}, {"caption": "a man with brown hair and and a beard is wearing a black leather jacket and is talking about a woman", "video_id": "video12280", "sen_id": 240897}, {"caption": "a man is talking and sitting in the room", "video_id": "video12280", "sen_id": 240898}, {"caption": "a blonde man is talking about his co star in a movie", "video_id": "video12280", "sen_id": 240899}, {"caption": "a race car driver in his race car while his pit crew change his tires", "video_id": "video12723", "sen_id": 240900}, {"caption": "a race car driver in a red car puts on his red gloves", "video_id": "video12723", "sen_id": 240901}, {"caption": "a man in a red race car puts on red racing gloves", "video_id": "video12723", "sen_id": 240902}, {"caption": "a man in a red dragster talking to his pit crew", "video_id": "video12723", "sen_id": 240903}, {"caption": "an indy car driver getting ready to get out on the racetrack", "video_id": "video12723", "sen_id": 240904}, {"caption": "a racecar driver is getting his gloves on in his car", "video_id": "video12723", "sen_id": 240905}, {"caption": "the au cour de la fi race is on and this video shows a team dressed in red readying their vehicle", "video_id": "video12723", "sen_id": 240906}, {"caption": "race car driver in red car getting ready before the race", "video_id": "video12723", "sen_id": 240907}, {"caption": "a race car driver prepares for a race by talking to his crew in his car", "video_id": "video12723", "sen_id": 240908}, {"caption": "pit crew preparing a race car driver inside a small red car", "video_id": "video12723", "sen_id": 240909}, {"caption": "there is a driver getting ready for a race", "video_id": "video12723", "sen_id": 240910}, {"caption": "a race car driver prepares for a race several pit crew members help the car get ready", "video_id": "video12723", "sen_id": 240911}, {"caption": "he is getting ready to race", "video_id": "video12723", "sen_id": 240912}, {"caption": "a man in a red race car is getting ready to race", "video_id": "video12723", "sen_id": 240913}, {"caption": "a view from the inside of an indy race car prior to a race", "video_id": "video12723", "sen_id": 240914}, {"caption": "there is a man getting ready to race", "video_id": "video12723", "sen_id": 240915}, {"caption": "forma1 pilot vettel spending his time in the car at the pit stop", "video_id": "video12723", "sen_id": 240916}, {"caption": "a race car driver preparing to leave his pit stop and continue driving", "video_id": "video12723", "sen_id": 240917}, {"caption": "a race car driving is preparing for their next race", "video_id": "video12723", "sen_id": 240918}, {"caption": "a car rider in white dress sitting inside the car and wear the gloves in red color", "video_id": "video12723", "sen_id": 240919}, {"caption": "still pictures of the comic book series daredevil", "video_id": "video11652", "sen_id": 240920}, {"caption": "a montage of different daredevil pictures", "video_id": "video11652", "sen_id": 240921}, {"caption": "music by mgmt plays over a comic book hero slideshow", "video_id": "video11652", "sen_id": 240922}, {"caption": "daredevil is shown looking sly and ready for anything", "video_id": "video11652", "sen_id": 240923}, {"caption": "images of the superhero daredevil one with his costume on the other as matt murdock", "video_id": "video11652", "sen_id": 240924}, {"caption": "there is a man with light cooling glass", "video_id": "video11652", "sen_id": 240925}, {"caption": "a man has a slight smile with a split lip while wearing dark oval sunglasses in front of a blue-and-red skyline of a large city", "video_id": "video11652", "sen_id": 240926}, {"caption": "daredevil the man without fear movie in image", "video_id": "video11652", "sen_id": 240927}, {"caption": "a super hero is in his costume and is also in his disguise", "video_id": "video11652", "sen_id": 240928}, {"caption": "a boy still image wearing glass pictures displaying on screen", "video_id": "video11652", "sen_id": 240929}, {"caption": "a cartoon super hero appears before the image of a real man with glasses on in front of a city", "video_id": "video11652", "sen_id": 240930}, {"caption": "a musical slideshow showcases two different interpretations of a well-regarded comic character", "video_id": "video11652", "sen_id": 240931}, {"caption": "a picture of film hero is displaying on", "video_id": "video11652", "sen_id": 240932}, {"caption": "a video clip about an advertisement of a movie", "video_id": "video11652", "sen_id": 240933}, {"caption": "the daredevil lounges in his red super-suit and poses behind red-tinted glasses", "video_id": "video11652", "sen_id": 240934}, {"caption": "posters of super heros are shown in the above visuals super hero like daredevils include the list etc", "video_id": "video11652", "sen_id": 240935}, {"caption": "cartoon daredevil the man without fear poses behind city", "video_id": "video11652", "sen_id": 240936}, {"caption": "a posters are displaying in the scene", "video_id": "video11652", "sen_id": 240937}, {"caption": "trailer of movie daredevil and image of the actor shown here", "video_id": "video11652", "sen_id": 240938}, {"caption": "like film animation character and a man with a glass", "video_id": "video11652", "sen_id": 240939}, {"caption": "two teams of of soccer players play a game of soccer on a grassy green field", "video_id": "video12015", "sen_id": 240940}, {"caption": "a group of young adults playing soccer", "video_id": "video12015", "sen_id": 240941}, {"caption": "two teams play rugby on a grassy field", "video_id": "video12015", "sen_id": 240942}, {"caption": "men s rugby teams compete on a grassy field", "video_id": "video12015", "sen_id": 240943}, {"caption": "there is someone playing rugby with funny moments", "video_id": "video12015", "sen_id": 240944}, {"caption": "rugby players are playing while the narrator discusses rugby in the u", "video_id": "video12015", "sen_id": 240945}, {"caption": "some players are playing foot ball game on a green grass ground", "video_id": "video12015", "sen_id": 240946}, {"caption": "a man talking about men playing rugby and how it is becoming more popular in the us", "video_id": "video12015", "sen_id": 240947}, {"caption": "all persons are paying ruby on a ground", "video_id": "video12015", "sen_id": 240948}, {"caption": "two teams of men play rugby on a large open field near a school", "video_id": "video12015", "sen_id": 240949}, {"caption": "a few people play football on a field against each other", "video_id": "video12015", "sen_id": 240950}, {"caption": "rugby player running hard but opponent team catch him easily", "video_id": "video12015", "sen_id": 240951}, {"caption": "players playing rugby game", "video_id": "video12015", "sen_id": 240952}, {"caption": "one with white shirt and other with grey& black shirtare playing football in the football court referee and audiences are watching the game and commentator is giving commentary on their performance", "video_id": "video12015", "sen_id": 240953}, {"caption": "some people are playing rugby on a field", "video_id": "video12015", "sen_id": 240954}, {"caption": "there are some players practicing rugby on the grass", "video_id": "video12015", "sen_id": 240955}, {"caption": "rugby on news channel while the increased popularity of the sport is discussed", "video_id": "video12015", "sen_id": 240956}, {"caption": "many game field where the players are trying hard to win the game by holding the ball", "video_id": "video12015", "sen_id": 240957}, {"caption": "a rugby game takes place as a man talks about it s growing popularity in the united states", "video_id": "video12015", "sen_id": 240958}, {"caption": "some soccer players are running around a field", "video_id": "video12015", "sen_id": 240959}, {"caption": "man in a red shirt describing some of the obstacles faced by movie heroes", "video_id": "video10102", "sen_id": 240960}, {"caption": "a man talking about video games and arnold schwarzenegger", "video_id": "video10102", "sen_id": 240961}, {"caption": "a man lectures on a series of obstacles that were holding back development", "video_id": "video10102", "sen_id": 240962}, {"caption": "a man in red sarcastically compares fictional problems like aliens to world obstacles", "video_id": "video10102", "sen_id": 240963}, {"caption": "a man in a red shirt talks about historical figures", "video_id": "video10102", "sen_id": 240964}, {"caption": "a man with glasses and a red shirt is talking about different cultural figures", "video_id": "video10102", "sen_id": 240965}, {"caption": "man in red shirt talks about arnold schwarzenegger", "video_id": "video10102", "sen_id": 240966}, {"caption": "reviewing great movies arnold had some awesome hits in his day", "video_id": "video10102", "sen_id": 240967}, {"caption": "a man is describing threats for humans to overcome and uses the movie predator as an example of beating an alien invasion", "video_id": "video10102", "sen_id": 240968}, {"caption": "a man wearing red tshirt and spectacles talking about alien predatorstheir disease and starvation thanking arnold schwarznegger for taking care of alien predators", "video_id": "video10102", "sen_id": 240969}, {"caption": "there is a red tshirt man talking nearby the globe", "video_id": "video10102", "sen_id": 240970}, {"caption": "a white person wearing eye glass with red dressing is speaking about arnold schwarzenegger", "video_id": "video10102", "sen_id": 240971}, {"caption": "a man discusses some potential problems and begins to address them in a humorous fashion", "video_id": "video10102", "sen_id": 240972}, {"caption": "a person is explaining about the disease and starvation of the food material", "video_id": "video10102", "sen_id": 240973}, {"caption": "a man named arnold is very color ful", "video_id": "video10102", "sen_id": 240974}, {"caption": "a man in a red shirt talks about famous politicians", "video_id": "video10102", "sen_id": 240975}, {"caption": "a man is explaining game play as cartoons animate his descriptions", "video_id": "video10102", "sen_id": 240976}, {"caption": "a gentleman in glasses talking about arnold schwarzenegger", "video_id": "video10102", "sen_id": 240977}, {"caption": "a man in red shirt sits near a plant and speaks", "video_id": "video10102", "sen_id": 240978}, {"caption": "a man with glasses is speaking about something", "video_id": "video10102", "sen_id": 240979}, {"caption": "a manual and a text box are seen in a program on a computer screen", "video_id": "video12279", "sen_id": 240980}, {"caption": "a voice talking about a manual that is about sores", "video_id": "video12279", "sen_id": 240981}, {"caption": "a computer page shows a blue book of writing instructions next to information directing the user to a specific page for documenting quotations and sources in easy-to-read white text", "video_id": "video12279", "sen_id": 240982}, {"caption": "a still photo of a computer opened sowtware program being displayed", "video_id": "video12279", "sen_id": 240983}, {"caption": "a reference manual that says to look at a certain page", "video_id": "video12279", "sen_id": 240984}, {"caption": "a man is talking about formats and telling you where in a manual you can find them", "video_id": "video12279", "sen_id": 240985}, {"caption": "a guy said that by turning to the page 193 we can get the full list of reference citation formats", "video_id": "video12279", "sen_id": 240986}, {"caption": "a man is explaining about formats on an online publication manual", "video_id": "video12279", "sen_id": 240987}, {"caption": "a man describes what page in the apa citation guide you can find various citation formats", "video_id": "video12279", "sen_id": 240988}, {"caption": "a computer screen showing a publication manual", "video_id": "video12279", "sen_id": 240989}, {"caption": "there are some publication manual in microsoft word", "video_id": "video12279", "sen_id": 240990}, {"caption": "the item can be found beggining from page 193", "video_id": "video12279", "sen_id": 240991}, {"caption": "a man narrating about different formats", "video_id": "video12279", "sen_id": 240992}, {"caption": "a man is showing a tutorial explaining how to site a source for writing", "video_id": "video12279", "sen_id": 240993}, {"caption": "a mans voice narrating a tutorial for an apa manual", "video_id": "video12279", "sen_id": 240994}, {"caption": "there is a good software with multiple use", "video_id": "video12279", "sen_id": 240995}, {"caption": "computer screen having more data are displayed and explained by a boy", "video_id": "video12279", "sen_id": 240996}, {"caption": "on a computer monitor of microsoft word page a publication manual of the book is displayed", "video_id": "video12279", "sen_id": 240997}, {"caption": "there is a man voice explaining different formats to use", "video_id": "video12279", "sen_id": 240998}, {"caption": "in the monitor some text messages are shown and they are giving some references", "video_id": "video12279", "sen_id": 240999}, {"caption": "a young boy puts on a shirt and readies himself for a soccer practice", "video_id": "video12673", "sen_id": 241000}, {"caption": "a person putting on a yellow jersey over their shirt", "video_id": "video12673", "sen_id": 241001}, {"caption": "a staircase and a kid putting on a uniform", "video_id": "video12673", "sen_id": 241002}, {"caption": "a boy is wearing a yellow top at a park", "video_id": "video12673", "sen_id": 241003}, {"caption": "a young man with brownish hair puts on a yellow shirt while sitting outside on a clear day", "video_id": "video12673", "sen_id": 241004}, {"caption": "young kid puts on a yellow sporting dress", "video_id": "video12673", "sen_id": 241005}, {"caption": "a young boy puts on a yellow jersey and sits quietly near a field", "video_id": "video12673", "sen_id": 241006}, {"caption": "a boy puts on a yellow soccer jersey while overlooking a field", "video_id": "video12673", "sen_id": 241007}, {"caption": "a boy in a blue shirt is putting on a yellow jersey", "video_id": "video12673", "sen_id": 241008}, {"caption": " a boy around the age of 8 puts on a yellow shirt over his blue jersey", "video_id": "video12673", "sen_id": 241009}, {"caption": "a boy puts on his uniform for a sporting event", "video_id": "video12673", "sen_id": 241010}, {"caption": " a boy pulls a yellow jersey on over a blue shirt while music plays", "video_id": "video12673", "sen_id": 241011}, {"caption": "a boy getting ready to play some kind of sports game", "video_id": "video12673", "sen_id": 241012}, {"caption": "a kid in a blue shirt is putting on a yellow jersey", "video_id": "video12673", "sen_id": 241013}, {"caption": "a young boy is getting ready for a big soccer game", "video_id": "video12673", "sen_id": 241014}, {"caption": "a boy puts on a yellow jersey and stares off to the side", "video_id": "video12673", "sen_id": 241015}, {"caption": "kid is putting on a sport dress to signify his team", "video_id": "video12673", "sen_id": 241016}, {"caption": "a young boy who is outdoors puts on a yellow tank top over his blue shirt", "video_id": "video12673", "sen_id": 241017}, {"caption": "kid in white shirt is sitting near the pitch and thinking", "video_id": "video12673", "sen_id": 241018}, {"caption": "a guy with a yellow hood is standing around", "video_id": "video12673", "sen_id": 241019}, {"caption": "a young kid talks about traveling around in moscow", "video_id": "video10131", "sen_id": 241020}, {"caption": "a teenage boy with his dog is walking on the street alone", "video_id": "video10131", "sen_id": 241021}, {"caption": "there is a hairless boy walking through the street", "video_id": "video10131", "sen_id": 241022}, {"caption": "a young boy says he wants to see moscow learn about moscow and eat in moscow", "video_id": "video10131", "sen_id": 241023}, {"caption": "silhoutte of buildings is seen and a man without any hair is walking along", "video_id": "video10131", "sen_id": 241024}, {"caption": "a young boy discusses his desire to travel throughout the city of moscow to know it better", "video_id": "video10131", "sen_id": 241025}, {"caption": "a boy walks down the streets of moscow at night", "video_id": "video10131", "sen_id": 241026}, {"caption": "there is a red jacket boy walking in to the street", "video_id": "video10131", "sen_id": 241027}, {"caption": "the cars are going fast on the street at night", "video_id": "video10131", "sen_id": 241028}, {"caption": "a young boy talks about a large city as he walks a street carrying a dog", "video_id": "video10131", "sen_id": 241029}, {"caption": "bald kid walking the streets of moscow with dog in his hand", "video_id": "video10131", "sen_id": 241030}, {"caption": "vehicles are moving around in a busy street during night time", "video_id": "video10131", "sen_id": 241031}, {"caption": "a young boy talks about all the things he wants to do and try in moscow", "video_id": "video10131", "sen_id": 241032}, {"caption": "a young bald kid holding a dog walking through moscow talking about different beverages that they drink", "video_id": "video10131", "sen_id": 241033}, {"caption": "kind walking in the streets with a puppy in his hands", "video_id": "video10131", "sen_id": 241034}, {"caption": "a bald person is walking the streets at night", "video_id": "video10131", "sen_id": 241035}, {"caption": "there is a boy walking on the street", "video_id": "video10131", "sen_id": 241036}, {"caption": "a young person walks down town carrying his dog with him in moscow", "video_id": "video10131", "sen_id": 241037}, {"caption": "a small homeless boy walks the streets of moscow carrying a puppy and smoking a cigarette while begging passersby for money", "video_id": "video10131", "sen_id": 241038}, {"caption": "a person is talking about wanting to visit moscow while pictures of the city are playing", "video_id": "video10131", "sen_id": 241039}, {"caption": "a pot containing a thick brown meat stew is stirred", "video_id": "video12769", "sen_id": 241040}, {"caption": "a woman stirs an indian dish while making preparation suggestions", "video_id": "video12769", "sen_id": 241041}, {"caption": "a stew is stirred as a woman talks about its spices", "video_id": "video12769", "sen_id": 241042}, {"caption": "a person stirring a pot of stew with a white spoon", "video_id": "video12769", "sen_id": 241043}, {"caption": "a woman with an indian accent is cooking a curry and explains that it is spicy but you can reduce the spiciness by reducing the chili powder or the green chilis used in the recipe", "video_id": "video12769", "sen_id": 241044}, {"caption": "a woman stirs a pot of meat and green herbs with a silver spoon while discussing how to make it less spicy if necessary", "video_id": "video12769", "sen_id": 241045}, {"caption": "a meat based stew is stirred while a woman explains what she is doing", "video_id": "video12769", "sen_id": 241046}, {"caption": "someone is mixing the food using spoon in the white pot", "video_id": "video12769", "sen_id": 241047}, {"caption": "an indian in home chef talks about an extra spicy dish she has prepared", "video_id": "video12769", "sen_id": 241048}, {"caption": "food being stirred in a pot while a woman talks about how spicy it is", "video_id": "video12769", "sen_id": 241049}, {"caption": "some one in a kitchen prepared a dish and finally added coriander leaves", "video_id": "video12769", "sen_id": 241050}, {"caption": "a chef stirs a pile of brown food with vigor and enthusiasm", "video_id": "video12769", "sen_id": 241051}, {"caption": "a woman is stirring what appears to be curry with green chillis", "video_id": "video12769", "sen_id": 241052}, {"caption": "a lady is describing a spicy dish she has cooked", "video_id": "video12769", "sen_id": 241053}, {"caption": "a foreign woman stirs a bowl of unknown food", "video_id": "video12769", "sen_id": 241054}, {"caption": "woman talking about spicy food in a pot and how to change spiciness level while she stirs contents of the pot", "video_id": "video12769", "sen_id": 241055}, {"caption": "a person stirs a bowl of brown food with a spoon", "video_id": "video12769", "sen_id": 241056}, {"caption": "in a tv cookery program a non-veg item spicy malabar chicken korma with chicken curry and chilly powder is being cooked", "video_id": "video12769", "sen_id": 241057}, {"caption": "kashmiri chili powders and chilis may be too spicy for some palates so this indian cook advices reducing this ingredient", "video_id": "video12769", "sen_id": 241058}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12769", "sen_id": 241059}, {"caption": "a man with a camera spends time on the street taking pictures of different people in the name of fashion blogging", "video_id": "video11400", "sen_id": 241060}, {"caption": "a news clip interview about a photographer named ton", "video_id": "video11400", "sen_id": 241061}, {"caption": "many people being interviewed in busy streets in europe", "video_id": "video11400", "sen_id": 241062}, {"caption": "a man taking pictures of women walking and some more flicks by a bus", "video_id": "video11400", "sen_id": 241063}, {"caption": "woman walk while an asian man take photos of them for fashion blogs", "video_id": "video11400", "sen_id": 241064}, {"caption": "a dark haired man is taking pictures of people walking down a busy street", "video_id": "video11400", "sen_id": 241065}, {"caption": "a young asian man with a professional camera shooting pictures of attractive models in a city street", "video_id": "video11400", "sen_id": 241066}, {"caption": "a man is clicking photo of two beautiful girls walking on the street", "video_id": "video11400", "sen_id": 241067}, {"caption": "a man is click photos in the crowd with his camera", "video_id": "video11400", "sen_id": 241068}, {"caption": "peoples are walking on a different location and a person is taking photos with his camera", "video_id": "video11400", "sen_id": 241069}, {"caption": "a fashion design photographer clicking photos on the road side", "video_id": "video11400", "sen_id": 241070}, {"caption": "a man shooting the video of people on the road", "video_id": "video11400", "sen_id": 241071}, {"caption": "people are walking in the street and posing for cameras", "video_id": "video11400", "sen_id": 241072}, {"caption": "a guy with black hair taes pictures of celebrities", "video_id": "video11400", "sen_id": 241073}, {"caption": "a person is talking some photos on the public road", "video_id": "video11400", "sen_id": 241074}, {"caption": "people are walking along a busy road with vehicles moving around", "video_id": "video11400", "sen_id": 241075}, {"caption": "a man is taking pictures of people outside", "video_id": "video11400", "sen_id": 241076}, {"caption": "a man photographs some women walking along the street outside", "video_id": "video11400", "sen_id": 241077}, {"caption": "in this video clip a man taking photographs", "video_id": "video11400", "sen_id": 241078}, {"caption": "group of people walking the streets being photographed by asian guy", "video_id": "video11400", "sen_id": 241079}, {"caption": "a young man on a bicycle attempts to do a trick and fails but recovers", "video_id": "video12335", "sen_id": 241080}, {"caption": "a young man on a bicycle describes a trick he plans on doing", "video_id": "video12335", "sen_id": 241081}, {"caption": "a man in a purple shirt is doing tricks on his bike", "video_id": "video12335", "sen_id": 241082}, {"caption": "a man is on his bike and is now on a platform", "video_id": "video12335", "sen_id": 241083}, {"caption": "a young man in glasses discusses his technique for bicycle riding", "video_id": "video12335", "sen_id": 241084}, {"caption": "a kid talking and then attempting to jump his bike on a stone slab", "video_id": "video12335", "sen_id": 241085}, {"caption": "a young man discusses his technique for doing bike tricks", "video_id": "video12335", "sen_id": 241086}, {"caption": "a boy trying to jump a cement flag pole slab with his bike", "video_id": "video12335", "sen_id": 241087}, {"caption": "a black tshirt man waiting in a cycle", "video_id": "video12335", "sen_id": 241088}, {"caption": "a young man talks about bike riding techniques and then falls off of his bicycle", "video_id": "video12335", "sen_id": 241089}, {"caption": "a man sitting on a bike and then attempting a stunt and failing", "video_id": "video12335", "sen_id": 241090}, {"caption": "a boy sitting on a bmx bike explains how to do a trick", "video_id": "video12335", "sen_id": 241091}, {"caption": "a guy on a video talking about doing tricks or riding a bike", "video_id": "video12335", "sen_id": 241092}, {"caption": "a boy talks about doing bike tricks and then drops his bike", "video_id": "video12335", "sen_id": 241093}, {"caption": "a young boy fails to do a bike trick", "video_id": "video12335", "sen_id": 241094}, {"caption": "a young man sitting on a bicycle tries to explain a street cycling trick but ends up crashing the bike into a curb he was trying to jump", "video_id": "video12335", "sen_id": 241095}, {"caption": "a man in a black shirt explains and then demonstrates a bicycle trick", "video_id": "video12335", "sen_id": 241096}, {"caption": "the young boy wearing blue color t-shirt and spectaclesis siting on a bicycle suddenly the bicycle is hit in to foundation", "video_id": "video12335", "sen_id": 241097}, {"caption": "a kid on a bike crashes into a white wall", "video_id": "video12335", "sen_id": 241098}, {"caption": "a young boy sits on a bike and tries to do a trick", "video_id": "video12335", "sen_id": 241099}, {"caption": "young family riding in a large suv with three children in the backseat", "video_id": "video11340", "sen_id": 241100}, {"caption": "a family is riding in a car the dad asks the kids how old they are", "video_id": "video11340", "sen_id": 241101}, {"caption": "a man with sunglasses driving a car while vlogging with his family", "video_id": "video11340", "sen_id": 241102}, {"caption": "there is a man with cooling glass driving a car", "video_id": "video11340", "sen_id": 241103}, {"caption": "a group of people in a car riding along a mountainside", "video_id": "video11340", "sen_id": 241104}, {"caption": "a man in sunglasses is quizzing children in the back seat on their ages as he drives his family to a skiing outing", "video_id": "video11340", "sen_id": 241105}, {"caption": "a family is traveling in a vehicle and the father is talking to the kids in the backseat while driving", "video_id": "video11340", "sen_id": 241106}, {"caption": "a family in a car on a snowy road talking to each other", "video_id": "video11340", "sen_id": 241107}, {"caption": "a person driving the car while his kids sitting on the back seat and enjoying the drive", "video_id": "video11340", "sen_id": 241108}, {"caption": "a man in a hat takes his family on a ski trip", "video_id": "video11340", "sen_id": 241109}, {"caption": "a man and woman driving with a small boy and young girl in the back seat", "video_id": "video11340", "sen_id": 241110}, {"caption": "a family of four are driving in the car", "video_id": "video11340", "sen_id": 241111}, {"caption": "a family riding in a car with dad talking about the children are going on their first day of skiing", "video_id": "video11340", "sen_id": 241112}, {"caption": "man with cap and sunglasses is driving his car with friends", "video_id": "video11340", "sen_id": 241113}, {"caption": "a dad and mom are driving two children in a van while the kids sit in their car seats in the back they ask them their ages: five and two", "video_id": "video11340", "sen_id": 241114}, {"caption": "a women in blue t-shirt and a man in black shirt are travelling in car along with two children", "video_id": "video11340", "sen_id": 241115}, {"caption": "a man driving his waife and children to take them on a skiing trip", "video_id": "video11340", "sen_id": 241116}, {"caption": "a family is going on a ski trip it is the first time for the kids to go skiing the daughter is five years old and the boy s age is not told", "video_id": "video11340", "sen_id": 241117}, {"caption": "a man talks and films as his drives his family to a ski resort for their first day of skiing", "video_id": "video11340", "sen_id": 241118}, {"caption": "a man in a black t shirt blue baseball cap and sunglasses is driving through the snow", "video_id": "video11340", "sen_id": 241119}, {"caption": "an animated ant is shaking its head among three other ants", "video_id": "video10116", "sen_id": 241120}, {"caption": "a polish children's show about ants shows the main character crying", "video_id": "video10116", "sen_id": 241121}, {"caption": "an ant is upset and talking to his three friends", "video_id": "video10116", "sen_id": 241122}, {"caption": "a cartoon ant is upset in a foreign language and almost crying", "video_id": "video10116", "sen_id": 241123}, {"caption": "a sad animated ant freaks out and starts to cry in a foreign language", "video_id": "video10116", "sen_id": 241124}, {"caption": "there is a ant talking on the ground", "video_id": "video10116", "sen_id": 241125}, {"caption": "the ant is of a brown animation character from india", "video_id": "video10116", "sen_id": 241126}, {"caption": "an ant crying to his friends about something that has just happened", "video_id": "video10116", "sen_id": 241127}, {"caption": "several animated ants are talking in a language other than english", "video_id": "video10116", "sen_id": 241128}, {"caption": "an animated ant cries then speaks and joins four other animated ants", "video_id": "video10116", "sen_id": 241129}, {"caption": "a cartoon of ants speaking a foreign language in the grass and crying", "video_id": "video10116", "sen_id": 241130}, {"caption": "little ants are talking each othe", "video_id": "video10116", "sen_id": 241131}, {"caption": "a computer animated ant speaks to other cgi ants", "video_id": "video10116", "sen_id": 241132}, {"caption": "an animated ant looks upset and is talking to other ants", "video_id": "video10116", "sen_id": 241133}, {"caption": "a video animation of movie video cartoon dolls inside forest displaying on screen", "video_id": "video10116", "sen_id": 241134}, {"caption": "an ant was telling her colony what had happened", "video_id": "video10116", "sen_id": 241135}, {"caption": "a group of ants outside as one speaks and gestures to the others", "video_id": "video10116", "sen_id": 241136}, {"caption": "an animated cartoon with bugs speaking a foriegn language", "video_id": "video10116", "sen_id": 241137}, {"caption": "several computer generated and animated ants talk between each other worriedly", "video_id": "video10116", "sen_id": 241138}, {"caption": "cartoon characters of ants complaining that bittu is breaking the things always in hindi", "video_id": "video10116", "sen_id": 241139}, {"caption": "a woman seems to get turned on while attempting to impress a man sitting across from her", "video_id": "video10825", "sen_id": 241140}, {"caption": "a women with dark hair is talking to a man in an office", "video_id": "video10825", "sen_id": 241141}, {"caption": "a female student flirts with a male professor while talking about a studies in his office", "video_id": "video10825", "sen_id": 241142}, {"caption": "a woman with wide eyes talks to a man behind a desk", "video_id": "video10825", "sen_id": 241143}, {"caption": "a woman is talking to a man who is sitting behind a desk", "video_id": "video10825", "sen_id": 241144}, {"caption": "a woman in black dress explaining some issue with a man", "video_id": "video10825", "sen_id": 241145}, {"caption": "women in black is talking to a men who is sitting opposite side of her", "video_id": "video10825", "sen_id": 241146}, {"caption": "a man sitting at a table is talking to a woman at the other end", "video_id": "video10825", "sen_id": 241147}, {"caption": "a man and a woman are having an interview in an office", "video_id": "video10825", "sen_id": 241148}, {"caption": "a beautiful woman in black dress is talking to a young man across the table", "video_id": "video10825", "sen_id": 241149}, {"caption": "a women in black dress talking to a office man", "video_id": "video10825", "sen_id": 241150}, {"caption": "a passionate lady is talking to a man inside a room while sitting at a table", "video_id": "video10825", "sen_id": 241151}, {"caption": "a curly haired woman talking to a man in his office", "video_id": "video10825", "sen_id": 241152}, {"caption": "a man and girl is talking about the english grammar but the girl seems to be flirting the man", "video_id": "video10825", "sen_id": 241153}, {"caption": "a man wearing vests is talking gently and pleasantly to a handsome woman", "video_id": "video10825", "sen_id": 241154}, {"caption": "there is a black shirt women talking to her boyfriend", "video_id": "video10825", "sen_id": 241155}, {"caption": "a sexy lady talking to a gentleman in a room", "video_id": "video10825", "sen_id": 241156}, {"caption": "a women who in black sitting opposite to the men lawyer and explaining her situation", "video_id": "video10825", "sen_id": 241157}, {"caption": "a man and woman is talking about something but the woman behaviour different", "video_id": "video10825", "sen_id": 241158}, {"caption": "a woman wearing black dress sitting in a black chair is talking to a man who is wearing a black jacket", "video_id": "video10825", "sen_id": 241159}, {"caption": "a scenic drive through the forest is shown here", "video_id": "video12470", "sen_id": 241160}, {"caption": "mountains and countryside pass by while driving down a road", "video_id": "video12470", "sen_id": 241161}, {"caption": "a car rolls down a road as green countryside and farmhouses flow by", "video_id": "video12470", "sen_id": 241162}, {"caption": "moving down a rural road with a few houses fields and trees and mountains in the background", "video_id": "video12470", "sen_id": 241163}, {"caption": "a view of large mountains with trees and small fields", "video_id": "video12470", "sen_id": 241164}, {"caption": "a person is riding in a car and looking at the surrounding landscape", "video_id": "video12470", "sen_id": 241165}, {"caption": "someone is riding down a rode looking at the mountains and scenery", "video_id": "video12470", "sen_id": 241166}, {"caption": "a car driving down a country road by a lot of scenery", "video_id": "video12470", "sen_id": 241167}, {"caption": "there is a forest with sun light is showed", "video_id": "video12470", "sen_id": 241168}, {"caption": "someone is travelling in a car and playing a music", "video_id": "video12470", "sen_id": 241169}, {"caption": "a person is driving car with camera on the dash board", "video_id": "video12470", "sen_id": 241170}, {"caption": "beautiful rolling country side green grass and barns pass by", "video_id": "video12470", "sen_id": 241171}, {"caption": "a wooded area is being shown throughout the neighborhood", "video_id": "video12470", "sen_id": 241172}, {"caption": "spanish music plays as a great view of mountain greenery is given", "video_id": "video12470", "sen_id": 241173}, {"caption": "a sunny view of grassy rural area with mountains and trees and a barn is shown from the window of a moving vehicle", "video_id": "video12470", "sen_id": 241174}, {"caption": "a car is driving around a road out side", "video_id": "video12470", "sen_id": 241175}, {"caption": "some one showing the beautiful scene of the nature", "video_id": "video12470", "sen_id": 241176}, {"caption": "a person drives up a narrow mountain road on a sunny day", "video_id": "video12470", "sen_id": 241177}, {"caption": "person is travelling and recording the high mountain tops", "video_id": "video12470", "sen_id": 241178}, {"caption": "a field is being filmed as a person dreives", "video_id": "video12470", "sen_id": 241179}, {"caption": "a man is being interviewed on the bloomberg news channel", "video_id": "video10724", "sen_id": 241180}, {"caption": "a man in a black suit and red tie speaking on the news as stock prices scroll by", "video_id": "video10724", "sen_id": 241181}, {"caption": "a man with a beard and wearing a suit and tie sits in front of a window overlooking a city", "video_id": "video10724", "sen_id": 241182}, {"caption": "a man with a goatee is speaking about businesses", "video_id": "video10724", "sen_id": 241183}, {"caption": "a man with bushy hair moustache and beard wears a black suit with a red tie and sits in front of a cityscape by a river while names of companies their stock prices and arrows move across the bottom of the screen", "video_id": "video10724", "sen_id": 241184}, {"caption": "stocks market data runs by on the bottom of the screen as a man talks about customers and financial matters", "video_id": "video10724", "sen_id": 241185}, {"caption": "a man with black hair and graying beard is talking in front of backdrop of a city", "video_id": "video10724", "sen_id": 241186}, {"caption": "there is a suit man talking from the studio", "video_id": "video10724", "sen_id": 241187}, {"caption": "a person explaing the progress of their company globally", "video_id": "video10724", "sen_id": 241188}, {"caption": "a man wearing a red tie and lake background sits and talks to a camera", "video_id": "video10724", "sen_id": 241189}, {"caption": "black haired man is explaining and giving some facts", "video_id": "video10724", "sen_id": 241190}, {"caption": "a man in black suit reading the news of san francisco", "video_id": "video10724", "sen_id": 241191}, {"caption": "a man is sitting and talking on a news show about banking systems", "video_id": "video10724", "sen_id": 241192}, {"caption": "an economist is talking about the overall state of the us economy dealing with the business in particular", "video_id": "video10724", "sen_id": 241193}, {"caption": "an interviewee describes his company s business prospects and customers", "video_id": "video10724", "sen_id": 241194}, {"caption": "a person giving interview on a live tv show", "video_id": "video10724", "sen_id": 241195}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10724", "sen_id": 241196}, {"caption": "a businessman in san francisco dressed in a black suit with a white shirt and red tie is giving an interview on bloomberg discussing his company s customers are looking for more pragmatic ways in a tough economic times", "video_id": "video10724", "sen_id": 241197}, {"caption": "a new reporter talks about the market and growth", "video_id": "video10724", "sen_id": 241198}, {"caption": "a man on a financial tv show is talking about how his company s customers and how the company experienced recent growth", "video_id": "video10724", "sen_id": 241199}, {"caption": "a monkey is playing on a green towel and eating apple slices", "video_id": "video11299", "sen_id": 241200}, {"caption": "a monkey who is eating in a regular kitchen", "video_id": "video11299", "sen_id": 241201}, {"caption": "a small monkey is moving around on a green towel and eating on a kitchen counter", "video_id": "video11299", "sen_id": 241202}, {"caption": "a small monkey on a kitchen counter is rolling around and eating apple pieces", "video_id": "video11299", "sen_id": 241203}, {"caption": "a monkey is rolling around on a towel then he gets up and eats some apples", "video_id": "video11299", "sen_id": 241204}, {"caption": "a small brown-and-gray monkey rolls around on a mint-green dish towel placed on a stone kitchen counter and then reaches for a chunk of cut apple by the sink", "video_id": "video11299", "sen_id": 241205}, {"caption": "a monkey is playing and eating food very funny", "video_id": "video11299", "sen_id": 241206}, {"caption": "men in black is playing with a monkey in kitchen", "video_id": "video11299", "sen_id": 241207}, {"caption": "one monkey in towel and it is sounds like", "video_id": "video11299", "sen_id": 241208}, {"caption": "on a kitchen counter a small pet monkey rolls around trying to eat small pieces of fruit", "video_id": "video11299", "sen_id": 241209}, {"caption": "a baby monkey is eating and playing in kitchen plaform", "video_id": "video11299", "sen_id": 241210}, {"caption": "there is a monkey eating apple in the kitchen", "video_id": "video11299", "sen_id": 241211}, {"caption": "a baby monkey is seen rolling over the towel in a kitchen counter", "video_id": "video11299", "sen_id": 241212}, {"caption": "a monkey eats apples and runs around on kitchen counter", "video_id": "video11299", "sen_id": 241213}, {"caption": "in the kitchen a monkey take the apple piece rolling on the towel and eating", "video_id": "video11299", "sen_id": 241214}, {"caption": "there is a monkey eating something from the kitchen", "video_id": "video11299", "sen_id": 241215}, {"caption": "a pet monkey eats apple and rolls on a green serviette", "video_id": "video11299", "sen_id": 241216}, {"caption": "a little monkey is playing in the kitchen", "video_id": "video11299", "sen_id": 241217}, {"caption": "a monkey is disturbing a kitchen and eating some food from plateform", "video_id": "video11299", "sen_id": 241218}, {"caption": "a monkey is eating food on a counter", "video_id": "video11299", "sen_id": 241219}, {"caption": "a woman with short hair and wearing a black sweater and talking to a room full of people", "video_id": "video10355", "sen_id": 241220}, {"caption": "a short blonde haired woman wearing a black shirt is sitting in a burgundy chair performing her talk show", "video_id": "video10355", "sen_id": 241221}, {"caption": "young man in black jacket and white shirt talking to a woman on a couch", "video_id": "video10355", "sen_id": 241222}, {"caption": "an ellen show clip is being show with ellen sitting in a red chair wearing a black long sleeve shirt", "video_id": "video10355", "sen_id": 241223}, {"caption": "the celebrity ellen is sitting on a red sofa and speaking to a man", "video_id": "video10355", "sen_id": 241224}, {"caption": "a man in black suit interviewing a young women in black dress", "video_id": "video10355", "sen_id": 241225}, {"caption": "ellen degeneres sits on the red furniture on the set of her tv show", "video_id": "video10355", "sen_id": 241226}, {"caption": "an audience applaude at the ellen tv show the hostess ellen is dressed in white pants and black sweater", "video_id": "video10355", "sen_id": 241227}, {"caption": "an audience of a talk show cheer for guest wearing black suit and tie with female host", "video_id": "video10355", "sen_id": 241228}, {"caption": "a man in a suit smiles as the whole crowd cheers", "video_id": "video10355", "sen_id": 241229}, {"caption": "a man in a suit claps at being introduced by a talk show host", "video_id": "video10355", "sen_id": 241230}, {"caption": "tom cruise is on the ellen degeneres show clapping and talking to the audience", "video_id": "video10355", "sen_id": 241231}, {"caption": "ellen degeneres questions her audience about what they did last night", "video_id": "video10355", "sen_id": 241232}, {"caption": "ellen degeneres asks her guest about his evening", "video_id": "video10355", "sen_id": 241233}, {"caption": "on a talk show a women is sitting on a couch and talking to her guests", "video_id": "video10355", "sen_id": 241234}, {"caption": "a man greets the cheerful audience and the celebrity greets them", "video_id": "video10355", "sen_id": 241235}, {"caption": "a talk show introduction in which the host asks invitee about his last night", "video_id": "video10355", "sen_id": 241236}, {"caption": "a guest on talk show in tuxedo waves to audience as they applaud and host sits in red lounge chairs", "video_id": "video10355", "sen_id": 241237}, {"caption": "max greenfield is on the ellen show with the audience clapping and cheering", "video_id": "video10355", "sen_id": 241238}, {"caption": "a blonde woman is being interviewed on the tv", "video_id": "video10355", "sen_id": 241239}, {"caption": "a doubles tennis match is being played and two mens teams are hard at it", "video_id": "video11807", "sen_id": 241240}, {"caption": "two teams of badmitton players are in a match in a large dark stadium", "video_id": "video11807", "sen_id": 241241}, {"caption": "two teams of men play badminton in a dark indoor arena as a crowd watches them", "video_id": "video11807", "sen_id": 241242}, {"caption": "two teams of two players each play a game of badminton when the shuttlecock goes between the legs of a player in an arena with reacting spectators sitting in the dark", "video_id": "video11807", "sen_id": 241243}, {"caption": "two teams of badminton players participate in a match in a large indoor stadium", "video_id": "video11807", "sen_id": 241244}, {"caption": "a game of badminton is being played indoors", "video_id": "video11807", "sen_id": 241245}, {"caption": "in a badminton match replay is showing how the guy missed the ball which he could have easily hit", "video_id": "video11807", "sen_id": 241246}, {"caption": "four players participate in a badminton tournament together", "video_id": "video11807", "sen_id": 241247}, {"caption": "tennis players playing using rackets wearing short shorts", "video_id": "video11807", "sen_id": 241248}, {"caption": "people watching badminton doubles played", "video_id": "video11807", "sen_id": 241249}, {"caption": "two teams are playing professional tennis in front of an audience", "video_id": "video11807", "sen_id": 241250}, {"caption": "a badminton tournament where the blue team scores against the red by an inbound drop", "video_id": "video11807", "sen_id": 241251}, {"caption": "two teams plays shuttle cork and one players is not able to take the serve of the other team", "video_id": "video11807", "sen_id": 241252}, {"caption": "two pair of sets of men are playing a game of bat mitten on a court", "video_id": "video11807", "sen_id": 241253}, {"caption": "pair of two badminton players competing with an another team for tournament", "video_id": "video11807", "sen_id": 241254}, {"caption": "four players are playing badmition and they are wearing blue colour dress", "video_id": "video11807", "sen_id": 241255}, {"caption": "badminton players are playing a game of professional badminton", "video_id": "video11807", "sen_id": 241256}, {"caption": "a badmitton game between two teams where a point is scored", "video_id": "video11807", "sen_id": 241257}, {"caption": "players in the ground were playing", "video_id": "video11807", "sen_id": 241258}, {"caption": "some people are playing badminton on a court", "video_id": "video11807", "sen_id": 241259}, {"caption": "there is a stand still frame with the words clever movies and thank you for watching and the background is dark in color with film reel", "video_id": "video10614", "sen_id": 241260}, {"caption": "a split screen shows a smiling woman with long hair wearing a gray dress and a white-haired man wearing 3-d cardboard eyeglasses with a black suit a screen with credits invitation and message to viewers is in black gold and white", "video_id": "video10614", "sen_id": 241261}, {"caption": "subscription clip for a video ending video clip of a video asking people to subscribe", "video_id": "video10614", "sen_id": 241262}, {"caption": "a girl is on the left side of the screen and a man in 3d glasses is on the right then the screen fades into a an advertisement for subcribing to movie watching", "video_id": "video10614", "sen_id": 241263}, {"caption": "the sign off message to a show thanking and asking for subscribers", "video_id": "video10614", "sen_id": 241264}, {"caption": "brief clip of woman speaking then proceeds to ad and music", "video_id": "video10614", "sen_id": 241265}, {"caption": "a cute girl wearing a grey t-shirt is all smiles facing the camera", "video_id": "video10614", "sen_id": 241266}, {"caption": "its a blue display images and letters are displayed", "video_id": "video10614", "sen_id": 241267}, {"caption": "clewer movies thankyou ad", "video_id": "video10614", "sen_id": 241268}, {"caption": "an advertisement about the clevver movies has been shown the video", "video_id": "video10614", "sen_id": 241269}, {"caption": "a young woman is saying farewell as a media show comes to an end", "video_id": "video10614", "sen_id": 241270}, {"caption": "men is talking and discussing something ans subscribe", "video_id": "video10614", "sen_id": 241271}, {"caption": "clevver movies thank you for watching click here", "video_id": "video10614", "sen_id": 241272}, {"caption": "a girl and old man sitting wearing glass with white shirt displaying on the screen", "video_id": "video10614", "sen_id": 241273}, {"caption": "sexy brunette talking to the camera about celebrities", "video_id": "video10614", "sen_id": 241274}, {"caption": "there is some impressive matter going on", "video_id": "video10614", "sen_id": 241275}, {"caption": "women in brown talking standing in studio", "video_id": "video10614", "sen_id": 241276}, {"caption": "a video clip about an advertisement of clevver movies", "video_id": "video10614", "sen_id": 241277}, {"caption": "the two announcers are happily and carefully leading the viewers to subscribe their show", "video_id": "video10614", "sen_id": 241278}, {"caption": "a woman is talking about some movie news", "video_id": "video10614", "sen_id": 241279}, {"caption": "a female news reporter conducts an interview by phone", "video_id": "video10328", "sen_id": 241280}, {"caption": "two people are sitting at a desk reading the news", "video_id": "video10328", "sen_id": 241281}, {"caption": "two news people are sitting at the desk reading news", "video_id": "video10328", "sen_id": 241282}, {"caption": "two reporters are talking to the bureau chief on the phone", "video_id": "video10328", "sen_id": 241283}, {"caption": "a man and a lady look at their laptops on a new show", "video_id": "video10328", "sen_id": 241284}, {"caption": "a pair of business reporters look at computers and listen to a man talk", "video_id": "video10328", "sen_id": 241285}, {"caption": "a man and woman sitting at a table in front of a computer tablet answering questions", "video_id": "video10328", "sen_id": 241286}, {"caption": "a male and a female news anchors sit behind laptops with network logos on the cover and in front of a blue screen with moving slanted white lines", "video_id": "video10328", "sen_id": 241287}, {"caption": "woman and man newscasters broadcasting the news behind their laptops", "video_id": "video10328", "sen_id": 241288}, {"caption": "a man and a woman talking on cnbc news", "video_id": "video10328", "sen_id": 241289}, {"caption": "a man and a woman talking to a man over the phone while doing a news report about the 1mdb money trail", "video_id": "video10328", "sen_id": 241290}, {"caption": "a woman in a blue dress is sitting in front of a laptop and speaking", "video_id": "video10328", "sen_id": 241291}, {"caption": "there is a women in blue dress talking with a man", "video_id": "video10328", "sen_id": 241292}, {"caption": "a woman and a man are reading news in the tv", "video_id": "video10328", "sen_id": 241293}, {"caption": "pm najib razak s accounts linked to imdb money trail to people reading this news has the laptop", "video_id": "video10328", "sen_id": 241294}, {"caption": "cnbc new reader person s doing a good live program", "video_id": "video10328", "sen_id": 241295}, {"caption": "a man and a woman on the news are speaking", "video_id": "video10328", "sen_id": 241296}, {"caption": "two news casters do a news report on a terrorist money trail", "video_id": "video10328", "sen_id": 241297}, {"caption": "a couple of news anchors discuss politics with a third field journalist", "video_id": "video10328", "sen_id": 241298}, {"caption": "a lady with blue color with a gentleman wearing black suit both were sitting in front of a laptop and the lady is saying something after seeing the laptop", "video_id": "video10328", "sen_id": 241299}, {"caption": "someone is cooking five packs of raman in a large pot", "video_id": "video11369", "sen_id": 241300}, {"caption": "an inhome chef works on a recipe involving boiling noodles", "video_id": "video11369", "sen_id": 241301}, {"caption": "a person starts boiling five sheets of ramen noodles in a pot", "video_id": "video11369", "sen_id": 241302}, {"caption": "a person demonstrating how to make ramen noodles", "video_id": "video11369", "sen_id": 241303}, {"caption": "five packs of noodles being cooked in boiling water", "video_id": "video11369", "sen_id": 241304}, {"caption": "a person is putting multiple packets of ramen noodles in some water on the stove", "video_id": "video11369", "sen_id": 241305}, {"caption": "in a kitchen a person is adding noodles into hot water and then adds the spcies to it", "video_id": "video11369", "sen_id": 241306}, {"caption": "noodles are poured in a big container which is hot", "video_id": "video11369", "sen_id": 241307}, {"caption": "a person preparing multiple ramon noodles in boiling water on the stove", "video_id": "video11369", "sen_id": 241308}, {"caption": "a noodles is broke into the hot water and its prepared", "video_id": "video11369", "sen_id": 241309}, {"caption": "someone is adding noodles and masala in boiled water", "video_id": "video11369", "sen_id": 241310}, {"caption": "there are some noodles put in to the boiled water", "video_id": "video11369", "sen_id": 241311}, {"caption": "a chef combines ramen in a pot on the stove to eat", "video_id": "video11369", "sen_id": 241312}, {"caption": "someone is cooking multiple bricks of noodles while a rap song plays in the background", "video_id": "video11369", "sen_id": 241313}, {"caption": "music is playing in the background of a tutorial on preparing noddles there are displayed instructions on the proper preparation of the noodles", "video_id": "video11369", "sen_id": 241314}, {"caption": "five bricks of ramen noodles are dropped into the pot one at a time", "video_id": "video11369", "sen_id": 241315}, {"caption": "a recipe based on noodles is under preparation", "video_id": "video11369", "sen_id": 241316}, {"caption": "an instructional video plays depicting boiling noodles on a stove", "video_id": "video11369", "sen_id": 241317}, {"caption": "a person is putting a noodles in to the hot water", "video_id": "video11369", "sen_id": 241318}, {"caption": "on a pot of boiling water in gas stow adding dried noodles on it", "video_id": "video11369", "sen_id": 241319}, {"caption": "a woman discusses a recipe for making cookie dough", "video_id": "video12460", "sen_id": 241320}, {"caption": "a woman a in a kitchen is explaining how to make cookie dough", "video_id": "video12460", "sen_id": 241321}, {"caption": "a woman describing and showing how to make cookies", "video_id": "video12460", "sen_id": 241322}, {"caption": "a woman showing show she makes cookie dough", "video_id": "video12460", "sen_id": 241323}, {"caption": "a female chef starts a recipe by measuring out some flour", "video_id": "video12460", "sen_id": 241324}, {"caption": "a women in white t-shirt is saying something and preparing food", "video_id": "video12460", "sen_id": 241325}, {"caption": "the woman adds the ingredients to the big clear bowl", "video_id": "video12460", "sen_id": 241326}, {"caption": "its a cooking time she takes the four in the measuring cup and then adds the brown powder", "video_id": "video12460", "sen_id": 241327}, {"caption": "lady making cookie dough and adding brown cinnamon", "video_id": "video12460", "sen_id": 241328}, {"caption": "a woemn is making some receipe in the kitchen an shhw", "video_id": "video12460", "sen_id": 241329}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12460", "sen_id": 241330}, {"caption": "one women adding baking soda to the recipe prepareing", "video_id": "video12460", "sen_id": 241331}, {"caption": "in a kitchen a woman is putting flour in a bowl add baking soda dry ginger powder and cinnomon powder", "video_id": "video12460", "sen_id": 241332}, {"caption": "a women inside kitchen in white dress baking soda mixing with spoon measuring", "video_id": "video12460", "sen_id": 241333}, {"caption": "a woman in white is in a kitchen naming ingredients needed for a cookie recipe", "video_id": "video12460", "sen_id": 241334}, {"caption": "a lady is taking flour and ingredients in a dish to make dough", "video_id": "video12460", "sen_id": 241335}, {"caption": "a red headed chef describes and demonstrates her recipe for cookie dough", "video_id": "video12460", "sen_id": 241336}, {"caption": "a person in a kitchen putting ingredients in a bowl", "video_id": "video12460", "sen_id": 241337}, {"caption": "a redhead in a white shirt puts ginger and cinnamon in her recipe", "video_id": "video12460", "sen_id": 241338}, {"caption": "a red haired woman is complaining about hr life", "video_id": "video12460", "sen_id": 241339}, {"caption": "black and white static on the screen of a television for a commercial", "video_id": "video12292", "sen_id": 241340}, {"caption": "a summary of an occupancy in the 1980's in which a man temporarily disabled hbo's satellite signal", "video_id": "video12292", "sen_id": 241341}, {"caption": "a number 3 in white letters and the letters hbo on a television screen", "video_id": "video12292", "sen_id": 241342}, {"caption": "green lettering made up of straight lines blends into a textured gray background a popular cable logo is shown in black and white and a movie poster has one man leaning on another man in front of a red bird with spread feathers", "video_id": "video12292", "sen_id": 241343}, {"caption": "audio describing what happened to hbo by an individual calling himself captain midnight on april 27th1986 during a showing of a movie that lasted approx 4 minutes", "video_id": "video12292", "sen_id": 241344}, {"caption": "3 in a tv channel on of the programs is not coming", "video_id": "video12292", "sen_id": 241345}, {"caption": "many black and white dots are displayed in the hbo then its the fight pic between two guys", "video_id": "video12292", "sen_id": 241346}, {"caption": "a advertiser explaining about a program on hbo channel", "video_id": "video12292", "sen_id": 241347}, {"caption": "there is something impressing matters going on", "video_id": "video12292", "sen_id": 241348}, {"caption": "black color back ground display an image in thant", "video_id": "video12292", "sen_id": 241349}, {"caption": "the man is talking about captain midnight that plays on hbo", "video_id": "video12292", "sen_id": 241350}, {"caption": "a blurb about an hbo broadcast being interrupted by captain midnight during a showing of the falcon and the snowman", "video_id": "video12292", "sen_id": 241351}, {"caption": "a man is talking about a channel of hbo", "video_id": "video12292", "sen_id": 241352}, {"caption": "a man telling about the movie the flacon and the snowman", "video_id": "video12292", "sen_id": 241353}, {"caption": "a person is showing information regarding movie and series", "video_id": "video12292", "sen_id": 241354}, {"caption": "a black hbo logo on a white background consumes the entire screen for a brief moment", "video_id": "video12292", "sen_id": 241355}, {"caption": "talks about how hbo s signal was interrupted my a man who calls himself captain midnight", "video_id": "video12292", "sen_id": 241356}, {"caption": "a man is telling about a satellite signal for hbo channel", "video_id": "video12292", "sen_id": 241357}, {"caption": "hbo tv screen a man speaking about a show with a english accent", "video_id": "video12292", "sen_id": 241358}, {"caption": "a man talks about bizarre things to happen on hbo at night", "video_id": "video12292", "sen_id": 241359}, {"caption": "a woman trying on a colorful skirt in a clothing store getting some help from a man", "video_id": "video12241", "sen_id": 241360}, {"caption": "a man talks to a crowd gathered to look at dresses in a store", "video_id": "video12241", "sen_id": 241361}, {"caption": "a designer selecting the dresses to his customers on his shop", "video_id": "video12241", "sen_id": 241362}, {"caption": "a women is wearing a indian outfit and showing to the other women who is wearing short dress", "video_id": "video12241", "sen_id": 241363}, {"caption": "a group of africans try on brightly colored clothing", "video_id": "video12241", "sen_id": 241364}, {"caption": "in a fashion show models are in the dressing room getting ready for the show", "video_id": "video12241", "sen_id": 241365}, {"caption": "all womans are wearing dresses in a fhion show", "video_id": "video12241", "sen_id": 241366}, {"caption": "a group of people are wearing colorful clothing", "video_id": "video12241", "sen_id": 241367}, {"caption": "music is playing while people are trying on and evaluating dresses", "video_id": "video12241", "sen_id": 241368}, {"caption": "a woman is putting on a beautiful bright green and pink dress with the help of many other people", "video_id": "video12241", "sen_id": 241369}, {"caption": "there is a man helping a woman to get ready", "video_id": "video12241", "sen_id": 241370}, {"caption": "dressing taking place in the dressing room before the start of the fashion show", "video_id": "video12241", "sen_id": 241371}, {"caption": "female models trying on a green dress and a multi colored dress", "video_id": "video12241", "sen_id": 241372}, {"caption": "lot of pretty women in a fashion designer shop trying new outfits", "video_id": "video12241", "sen_id": 241373}, {"caption": "women are trying out dresses in an apparel store", "video_id": "video12241", "sen_id": 241374}, {"caption": "there is a model getting ready fro a show", "video_id": "video12241", "sen_id": 241375}, {"caption": "a man who is wearing a multi coloured shirt", "video_id": "video12241", "sen_id": 241376}, {"caption": "this dressing room is modelling or shopping mall trail fit", "video_id": "video12241", "sen_id": 241377}, {"caption": "a fashion dress design a woman wearing fashion dress with slipper in hands many girls inside dressing", "video_id": "video12241", "sen_id": 241378}, {"caption": "some woman in colored dresses are alive", "video_id": "video12241", "sen_id": 241379}, {"caption": "a food dish with garlic bell pepper and tomato puree is being made", "video_id": "video10544", "sen_id": 241380}, {"caption": "someone is cooking and is explaining how to prepare the dish", "video_id": "video10544", "sen_id": 241381}, {"caption": "a woman oils a pan on medium heat before adding garlic diced bell pepper and tomato puree", "video_id": "video10544", "sen_id": 241382}, {"caption": "a chef prepares for a recipe by adding ingredients into a hot pot", "video_id": "video10544", "sen_id": 241383}, {"caption": "a person adds various ingredients to a pot in order to make pizza sauce", "video_id": "video10544", "sen_id": 241384}, {"caption": "a purple cooking pan is getting ingredients added to it by a womens hands", "video_id": "video10544", "sen_id": 241385}, {"caption": "some one in a kitchen preparing pizza sauce step by step", "video_id": "video10544", "sen_id": 241386}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10544", "sen_id": 241387}, {"caption": "oil is added to a red pot from a yellow-nozzled container diced onion and green pepper are pushed out of a white bowl with a spoon", "video_id": "video10544", "sen_id": 241388}, {"caption": "in a large pink pot oil is added and garlic and bell pepper are sauted tomato puree is then stirred into the dish", "video_id": "video10544", "sen_id": 241389}, {"caption": "a women is adding a garlic and diced bell pepper and adding tomato puree into it", "video_id": "video10544", "sen_id": 241390}, {"caption": "someone adding oil and ingredients to a pot on the stove", "video_id": "video10544", "sen_id": 241391}, {"caption": "a man is pouring oil into a pot and sauteing onion and bell pepper he proceeds to add tomato puree", "video_id": "video10544", "sen_id": 241392}, {"caption": "a cooking tutorial where all the ingredients are being poured into a boiling pot", "video_id": "video10544", "sen_id": 241393}, {"caption": "a pan inside oil pouring vegetables spoon mixing masala inside kitchen preparing dish to serve to eat", "video_id": "video10544", "sen_id": 241394}, {"caption": "a person is stirring up food in a bowl", "video_id": "video10544", "sen_id": 241395}, {"caption": "a person standing at the stove putting a recipe together", "video_id": "video10544", "sen_id": 241396}, {"caption": "showing the secssion how to make the south indian bel puri in very well", "video_id": "video10544", "sen_id": 241397}, {"caption": "on a heating pan adding some oil ginger diced bell pepper and tomato puree", "video_id": "video10544", "sen_id": 241398}, {"caption": "a video of a recipe being made in action with up beat music in the background there are several ingredients that are put into a pot", "video_id": "video10544", "sen_id": 241399}, {"caption": "a man in a black suit is walking down a hallway before he is joined by another man in black", "video_id": "video12244", "sen_id": 241400}, {"caption": "two men in black suits and white shirts talking", "video_id": "video12244", "sen_id": 241401}, {"caption": "tommy lee jones and will smith in men in black pulling out their sunglasses", "video_id": "video12244", "sen_id": 241402}, {"caption": "a man in a dark suit and dark tie walks down a narrow corridor", "video_id": "video12244", "sen_id": 241403}, {"caption": "a serious man wearing a black suit with white shirt walks down a gray hallway lit with lights from round recesses in the ceiling and beams of light along the ceiling and floor when he is joined by another man wearing an identical outfit", "video_id": "video12244", "sen_id": 241404}, {"caption": "will smith and another talking about a movie they are in", "video_id": "video12244", "sen_id": 241405}, {"caption": "in this clip the start actors give a brief movie preview of men in black", "video_id": "video12244", "sen_id": 241406}, {"caption": "there is a suit man walking through the corridor", "video_id": "video12244", "sen_id": 241407}, {"caption": "two men are walking down a long hall in the movie the men in black", "video_id": "video12244", "sen_id": 241408}, {"caption": "two men wearing black suits walking and talking in a hallway", "video_id": "video12244", "sen_id": 241409}, {"caption": "a man in black dress wearing walking standing with other guy on screen displaying", "video_id": "video12244", "sen_id": 241410}, {"caption": "will smith and tommy lee walking in suit and tie in movie mib", "video_id": "video12244", "sen_id": 241411}, {"caption": "a holly wood movie scene two men talking about something", "video_id": "video12244", "sen_id": 241412}, {"caption": "tommy lee jones and will smith walking in a hallway talking about their roles in the movie men in black", "video_id": "video12244", "sen_id": 241413}, {"caption": "the man is black suit and black tie walks from the distance to the room and he is joined by another", "video_id": "video12244", "sen_id": 241414}, {"caption": "a man in a suit is doing some thing", "video_id": "video12244", "sen_id": 241415}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video12244", "sen_id": 241416}, {"caption": "two famous film celebrities in a trailer of men in black introducing themselves briefly", "video_id": "video12244", "sen_id": 241417}, {"caption": "the two characters from men in black preview of their movie", "video_id": "video12244", "sen_id": 241418}, {"caption": "actors rip torn and will smith are describing a little bit about the men in black during the movie men in black", "video_id": "video12244", "sen_id": 241419}, {"caption": "cook teaches how to cook something in a pot of water that is turning green", "video_id": "video10361", "sen_id": 241420}, {"caption": "a man cooks greens very briefly in a pot of boiling water", "video_id": "video10361", "sen_id": 241421}, {"caption": "a man cooking wakame in a steel pan on a stovetop", "video_id": "video10361", "sen_id": 241422}, {"caption": "man in black outfit putting green vegetables into a large metal pot", "video_id": "video10361", "sen_id": 241423}, {"caption": "a man is cooking something in a strainer over a boiling pot of water", "video_id": "video10361", "sen_id": 241424}, {"caption": "a man man wearing a black shirt cooking food", "video_id": "video10361", "sen_id": 241425}, {"caption": "a man in a green chef shirt is in a kitchen alone he takes a handful of vegetables into a pot of boiling water; then uses a strainer to carry them back towards the table where he started", "video_id": "video10361", "sen_id": 241426}, {"caption": "there is a man in black shirt making a green tea", "video_id": "video10361", "sen_id": 241427}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video10361", "sen_id": 241428}, {"caption": "the man is heating vegetables in a pot in a kitchen", "video_id": "video10361", "sen_id": 241429}, {"caption": "a man explains cooking green leaves in a double cooker as one of the steps in the rescipe he is describing", "video_id": "video10361", "sen_id": 241430}, {"caption": "a man in black dress in a kitchen cooking some dishes and talking", "video_id": "video10361", "sen_id": 241431}, {"caption": "the chef is seen putting something in the boiling with the help of a strainer for a few seconds which changes the color and then he takes it out and keeps it aside", "video_id": "video10361", "sen_id": 241432}, {"caption": "a chef describes how to cook a vegetable in boiling water", "video_id": "video10361", "sen_id": 241433}, {"caption": "a person is staining the hot liquid in a kitchen", "video_id": "video10361", "sen_id": 241434}, {"caption": "a man with grey hair is cooking green vegetables", "video_id": "video10361", "sen_id": 241435}, {"caption": "a old man preparing food in a tawa", "video_id": "video10361", "sen_id": 241436}, {"caption": "chef is cooking very tasty food and strain it", "video_id": "video10361", "sen_id": 241437}, {"caption": "in a kitchen a guy taking boiled leafs and mixing them in a dish", "video_id": "video10361", "sen_id": 241438}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10361", "sen_id": 241439}, {"caption": "the inside of a cockpit is shone then a plane flying through a star filled sky", "video_id": "video11287", "sen_id": 241440}, {"caption": "this is an animated clip starting off by showing the inside of a ship which is then proceeded by the ship flying away from a planet", "video_id": "video11287", "sen_id": 241441}, {"caption": "a jet taking off into a night sky with it's engines firing", "video_id": "video11287", "sen_id": 241442}, {"caption": "an aircraft flying into space with two little back lights and one big back light", "video_id": "video11287", "sen_id": 241443}, {"caption": "a spaceship in the void of space fires up its engines and prepares to take off", "video_id": "video11287", "sen_id": 241444}, {"caption": "a cockpit of a flying craft is visible then the craft flies away from a pink planet out into a star filled sky in space", "video_id": "video11287", "sen_id": 241445}, {"caption": "a space craft of some sort flying in space", "video_id": "video11287", "sen_id": 241446}, {"caption": "a space ship powers up as it readies to fly", "video_id": "video11287", "sen_id": 241447}, {"caption": "a small space craft hovers over a planet and gets ready to head into deep space", "video_id": "video11287", "sen_id": 241448}, {"caption": "there is a space ship moving in to the darkness", "video_id": "video11287", "sen_id": 241449}, {"caption": "a ship in space gets ready to blast of into the outer reaches of space", "video_id": "video11287", "sen_id": 241450}, {"caption": "one jet is going in the sky very fast as", "video_id": "video11287", "sen_id": 241451}, {"caption": "a small space craft leaves a planet and gets ready to take off into deep space", "video_id": "video11287", "sen_id": 241452}, {"caption": "a plane is flying in the sky at night time", "video_id": "video11287", "sen_id": 241453}, {"caption": "there is a space vehicle moving to the darkness", "video_id": "video11287", "sen_id": 241454}, {"caption": "a satelite is taking photos in the space and it has been videoed", "video_id": "video11287", "sen_id": 241455}, {"caption": "a space air craft is moving in the space", "video_id": "video11287", "sen_id": 241456}, {"caption": "a grey aircraft with black trim has a long pointed nose and blue circles of light on its flat tail end as it soars through the sky filled with clouds and bright stars", "video_id": "video11287", "sen_id": 241457}, {"caption": "a rock are moving in the planet with light", "video_id": "video11287", "sen_id": 241458}, {"caption": "a person is flying spacecraft into the universe", "video_id": "video11287", "sen_id": 241459}, {"caption": "a lady is putting items in a suitcase in an orderly fashion", "video_id": "video12198", "sen_id": 241460}, {"caption": "a woman is getting ready for a trip and showing what she is going to pack", "video_id": "video12198", "sen_id": 241461}, {"caption": "a suitcase is being packed with bathing suits shoes and a purse", "video_id": "video12198", "sen_id": 241462}, {"caption": "suitcase being packed with bikinis and other beach materials", "video_id": "video12198", "sen_id": 241463}, {"caption": "girl packs for a summer trip including bathing suits and coverups", "video_id": "video12198", "sen_id": 241464}, {"caption": "a woman with blue nail polish is rapidly backing her suitcase", "video_id": "video12198", "sen_id": 241465}, {"caption": "a lady is packing a suitcase and describing what she is packing for", "video_id": "video12198", "sen_id": 241466}, {"caption": "a woman packs clothes into a suitcase while narrating the process", "video_id": "video12198", "sen_id": 241467}, {"caption": "a woman with blue nail polish rapidly packs her suitcase", "video_id": "video12198", "sen_id": 241468}, {"caption": "a woman with blue nail polish is rapidly backing her suitcase", "video_id": "video12198", "sen_id": 241469}, {"caption": "a woman with blue nail polish rapidly packs her suitcase", "video_id": "video12198", "sen_id": 241470}, {"caption": "a person is packing folded clothing into a suitcase", "video_id": "video12198", "sen_id": 241471}, {"caption": "a woman is packing a suitcase with folded cloths and a black purse", "video_id": "video12198", "sen_id": 241472}, {"caption": "a woman demonstrates and describes how she packs for a trip to the beach", "video_id": "video12198", "sen_id": 241473}, {"caption": "a girl is demonstrating how to pack efficiently", "video_id": "video12198", "sen_id": 241474}, {"caption": "a lady keeping dressed in the bos", "video_id": "video12198", "sen_id": 241475}, {"caption": "a woman packing a suitcase with things for a vacation", "video_id": "video12198", "sen_id": 241476}, {"caption": "women talking on packing cloths", "video_id": "video12198", "sen_id": 241477}, {"caption": "a woman is packing a suitcase with her clothes", "video_id": "video12198", "sen_id": 241478}, {"caption": "a person with a black purse is sitting down", "video_id": "video12198", "sen_id": 241479}, {"caption": "an outro about baking various yummy treats", "video_id": "video12749", "sen_id": 241480}, {"caption": "a quick video pan over different examples of objects encased in jelly on a cookie youtube channel", "video_id": "video12749", "sen_id": 241481}, {"caption": "a woman is talking about her video channel and the different things she makes in the videos", "video_id": "video12749", "sen_id": 241482}, {"caption": "a girl talks about various edible artistic items that she's made and what she's going to make in the future", "video_id": "video12749", "sen_id": 241483}, {"caption": "eyes and bugs thats you can eat", "video_id": "video12749", "sen_id": 241484}, {"caption": "a graphic with a female voiceover explaining about the products shown on the screen", "video_id": "video12749", "sen_id": 241485}, {"caption": "its a lot of designs as a flowers and animals", "video_id": "video12749", "sen_id": 241486}, {"caption": "many examples of table settings and decorations are shown as the host of a show closes", "video_id": "video12749", "sen_id": 241487}, {"caption": "a girl is explain how to cook and wand to subscribe her website", "video_id": "video12749", "sen_id": 241488}, {"caption": "a woman showing off the stuff she has made in her kitchen", "video_id": "video12749", "sen_id": 241489}, {"caption": "some scenes from a thing are being shown", "video_id": "video12749", "sen_id": 241490}, {"caption": "there is a flower in a plastic cage", "video_id": "video12749", "sen_id": 241491}, {"caption": "the preparation of variety dishesand juices explaning", "video_id": "video12749", "sen_id": 241492}, {"caption": "a young woman describes and demonstrates he methods for making deserts that look like domes", "video_id": "video12749", "sen_id": 241493}, {"caption": "a baker displays her projects and invites people to follow her", "video_id": "video12749", "sen_id": 241494}, {"caption": "various scenes from a youtube video are being shown", "video_id": "video12749", "sen_id": 241495}, {"caption": "one women talks about the art of decorating how to cook that", "video_id": "video12749", "sen_id": 241496}, {"caption": "a camera scrolls over desserts while a woman signs off", "video_id": "video12749", "sen_id": 241497}, {"caption": "a white table supports a beautiful display of jello pastries with pretty flowers inside", "video_id": "video12749", "sen_id": 241498}, {"caption": "some cakes of different varieties are displayed and asked to subscribe to learn how to make it", "video_id": "video12749", "sen_id": 241499}, {"caption": "a model modeling her swimsuit by the pool", "video_id": "video11717", "sen_id": 241500}, {"caption": "a beautiful model with long curly hair poses in a bikini", "video_id": "video11717", "sen_id": 241501}, {"caption": "i women in a small bikini poses on wooded steps for a picture", "video_id": "video11717", "sen_id": 241502}, {"caption": "woman in a very skimpy bikini poses for camera", "video_id": "video11717", "sen_id": 241503}, {"caption": "a beautiful woman in a small bikini smiles", "video_id": "video11717", "sen_id": 241504}, {"caption": "a beautiful women in bikini shows off her skin in different poses", "video_id": "video11717", "sen_id": 241505}, {"caption": "a woman in a bikini poses for a photo shoot", "video_id": "video11717", "sen_id": 241506}, {"caption": "a woman in a bikini smiles and twists", "video_id": "video11717", "sen_id": 241507}, {"caption": "a woman in a bikini being filmed while music plays", "video_id": "video11717", "sen_id": 241508}, {"caption": "a woman in a bikini is posing for a photo shoot", "video_id": "video11717", "sen_id": 241509}, {"caption": "a models posing to the camera in different angels", "video_id": "video11717", "sen_id": 241510}, {"caption": "a woman is posing in a bikini on a set of wooden stairs for a photo shoot", "video_id": "video11717", "sen_id": 241511}, {"caption": "a model working at a photo shoot in a bikini", "video_id": "video11717", "sen_id": 241512}, {"caption": "beautiful bikini clad woman posing on the steps of the deck", "video_id": "video11717", "sen_id": 241513}, {"caption": "a woman with brown hair and wearing a bikini is sitting outsite on a porch", "video_id": "video11717", "sen_id": 241514}, {"caption": "a young model posing to the camera in different angels", "video_id": "video11717", "sen_id": 241515}, {"caption": "a lady sitting and making pose for a camera", "video_id": "video11717", "sen_id": 241516}, {"caption": "a brown haired bikini model posing on wooden deck stairs for a montage with some black and white frames", "video_id": "video11717", "sen_id": 241517}, {"caption": "a woman is looking very romantic mode in wearing the dirty dress", "video_id": "video11717", "sen_id": 241518}, {"caption": "a woman in a bikini is doing some poses", "video_id": "video11717", "sen_id": 241519}, {"caption": "bill nye the science guy has on a light blue jacket and a bow tie discussing sodium and chlorine", "video_id": "video12068", "sen_id": 241520}, {"caption": "a scientist with a blue coat and bowtie discusses the dangers of chlorine", "video_id": "video12068", "sen_id": 241521}, {"caption": "a middle aged man wearing a lab coat and talking", "video_id": "video12068", "sen_id": 241522}, {"caption": "a man with a bow tie and glasses is talking about sodium", "video_id": "video12068", "sen_id": 241523}, {"caption": "bill nye the science guy talking about chlorine and salt", "video_id": "video12068", "sen_id": 241524}, {"caption": "a man in blue is explaining about the chlorine", "video_id": "video12068", "sen_id": 241525}, {"caption": "a man is talking about an experiment he ll do using sodium and chlorine", "video_id": "video12068", "sen_id": 241526}, {"caption": "the man wearing the blue sweater and eye glasses talk", "video_id": "video12068", "sen_id": 241527}, {"caption": "a scientist wearing a white smock and bow tie holds a flask and discusses mixing sodium and chlorine to produce chlorine gas", "video_id": "video12068", "sen_id": 241528}, {"caption": "a man in glasses talks about dangers of chemistry", "video_id": "video12068", "sen_id": 241529}, {"caption": "a scientist wearing thick glasses is showing chemicals and equipments in lab", "video_id": "video12068", "sen_id": 241530}, {"caption": "a person explaining a concept in a show in a laborers", "video_id": "video12068", "sen_id": 241531}, {"caption": "the man wearing the eyeglasses talks about science", "video_id": "video12068", "sen_id": 241532}, {"caption": "a an old man is explain about sodium chloride", "video_id": "video12068", "sen_id": 241533}, {"caption": "bill nye the science guy talks about sodium and chlorine close up to the camera", "video_id": "video12068", "sen_id": 241534}, {"caption": "bill nye the science guy is talking about how poisonous chlorine gas is", "video_id": "video12068", "sen_id": 241535}, {"caption": "there is a man with a suit talking from a room", "video_id": "video12068", "sen_id": 241536}, {"caption": "the man with spectacles is talking and showing the bottle of something", "video_id": "video12068", "sen_id": 241537}, {"caption": "a clip from bill nye the science guy television show years ago", "video_id": "video12068", "sen_id": 241538}, {"caption": "bill nye talking about mixing sodium and chlorine and how chlorine gas will kill you", "video_id": "video12068", "sen_id": 241539}, {"caption": "a blond girl sings near a bunch of lit candles", "video_id": "video11297", "sen_id": 241540}, {"caption": "a creepy house is shown that is quite dark", "video_id": "video11297", "sen_id": 241541}, {"caption": "a lady in a a black top hat sings in a dark room and in a grand entryway", "video_id": "video11297", "sen_id": 241542}, {"caption": "a blonde girl wearing a black hat singing in front of a fireplace", "video_id": "video11297", "sen_id": 241543}, {"caption": "a woman with blonde hair is singing in a music video", "video_id": "video11297", "sen_id": 241544}, {"caption": "a young female singer performs her music video in a very dark house", "video_id": "video11297", "sen_id": 241545}, {"caption": "an avril lavigne music video she is wearing a black hat", "video_id": "video11297", "sen_id": 241546}, {"caption": "a blonde woman that is singing by a fireplace and walking through a dark house", "video_id": "video11297", "sen_id": 241547}, {"caption": "a woman walking through an empty house", "video_id": "video11297", "sen_id": 241548}, {"caption": "a blond woman is singing in a black hat about love", "video_id": "video11297", "sen_id": 241549}, {"caption": "woman with blond hair singing in a dark house with candles burning in the background", "video_id": "video11297", "sen_id": 241550}, {"caption": "there is a cute woman singing with feelings", "video_id": "video11297", "sen_id": 241551}, {"caption": "a blonde hair woman is singing in from t of a fireplace in a fancy house", "video_id": "video11297", "sen_id": 241552}, {"caption": "some women in white with big nlack hats do witchy stuff", "video_id": "video11297", "sen_id": 241553}, {"caption": "dark cinematic music video with female singer", "video_id": "video11297", "sen_id": 241554}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video11297", "sen_id": 241555}, {"caption": "a woman with blonde hair sings a love song in this music video", "video_id": "video11297", "sen_id": 241556}, {"caption": "a woman is singing in front of a fireplace and other scenes are shown throughout the house", "video_id": "video11297", "sen_id": 241557}, {"caption": "a music video with a young woman with blonde hair singing a variety of scenes flash by", "video_id": "video11297", "sen_id": 241558}, {"caption": "a woman walking through a mansion and sitting by a fireplace in a music video", "video_id": "video11297", "sen_id": 241559}, {"caption": "a man is sauting shrimp in a pan and adding chicken stock to it", "video_id": "video12514", "sen_id": 241560}, {"caption": "a man stirs shrimp in a pan on the stove and adds chicken stock to the pan", "video_id": "video12514", "sen_id": 241561}, {"caption": "shrimp stock is being prepared in a pot with shrimp peels and chicken stock a wooden spoon is stirring it", "video_id": "video12514", "sen_id": 241562}, {"caption": "a male cook whose hand can be seen holding a wooden spoon gives a lesson as he sautes shrimp in chicken stock", "video_id": "video12514", "sen_id": 241563}, {"caption": "shrimp is being cooked on the top of a stove by a chef", "video_id": "video12514", "sen_id": 241564}, {"caption": "a man is cooking shrimp while providing verbal instructions", "video_id": "video12514", "sen_id": 241565}, {"caption": "a person is putting some stuff into boiling in kitchen", "video_id": "video12514", "sen_id": 241566}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12514", "sen_id": 241567}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video12514", "sen_id": 241568}, {"caption": "a recipe for shrimp in a pan is demonstrated", "video_id": "video12514", "sen_id": 241569}, {"caption": "shrimp is being prepared in a cooking vessel along with its shell", "video_id": "video12514", "sen_id": 241570}, {"caption": "some one in a kitchen preparing some prawns curry which is kept for boiling", "video_id": "video12514", "sen_id": 241571}, {"caption": "there is a women cooking food in untensil", "video_id": "video12514", "sen_id": 241572}, {"caption": "a bowl inside pawn mixing with spoon inside kitchen pouring masala and cooking dish", "video_id": "video12514", "sen_id": 241573}, {"caption": "how to make shrimp soup with shrimp shells and broth", "video_id": "video12514", "sen_id": 241574}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12514", "sen_id": 241575}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12514", "sen_id": 241576}, {"caption": "someone is cooking shrimp in a silver pot on a stove", "video_id": "video12514", "sen_id": 241577}, {"caption": "a person is cooking food in frying pan and telling its procedure how to cook", "video_id": "video12514", "sen_id": 241578}, {"caption": "some dishes are being cooked by a chef in a kitchen show", "video_id": "video12514", "sen_id": 241579}, {"caption": "a news story about a submarine and missile", "video_id": "video11666", "sen_id": 241580}, {"caption": "a submarine moves along the surface of the ocean on a hazy day", "video_id": "video11666", "sen_id": 241581}, {"caption": "a submarine moves along the ocean surface and then test fires a missle", "video_id": "video11666", "sen_id": 241582}, {"caption": "a georgia submarine base has ballistic missile submarines", "video_id": "video11666", "sen_id": 241583}, {"caption": "a submarins skims along the surface of the ocean and then test fires a missle", "video_id": "video11666", "sen_id": 241584}, {"caption": "a rocket takes off from water and goes into the sky", "video_id": "video11666", "sen_id": 241585}, {"caption": "a submarine floating in the ocean shoots ballistic missiles off into the air", "video_id": "video11666", "sen_id": 241586}, {"caption": "a submarine is traveling at sea level when it shoots a missile", "video_id": "video11666", "sen_id": 241587}, {"caption": "boats on the ocean and then rackets taking off", "video_id": "video11666", "sen_id": 241588}, {"caption": "a missile flies from the ocean into the sky past clouds", "video_id": "video11666", "sen_id": 241589}, {"caption": "a news reporter is speaking about warheads on a fox news special report", "video_id": "video11666", "sen_id": 241590}, {"caption": "a picture of an ocean shows right before an image of a rocket goes to space", "video_id": "video11666", "sen_id": 241591}, {"caption": " navy rocket traveling on the sky", "video_id": "video11666", "sen_id": 241592}, {"caption": "a big ship is in the sea from the ship a fire ball is released", "video_id": "video11666", "sen_id": 241593}, {"caption": "a person showing how submarine fire s the rocket", "video_id": "video11666", "sen_id": 241594}, {"caption": "us fleet are moving fast in the sea and shoots missile", "video_id": "video11666", "sen_id": 241595}, {"caption": "the fox news giving news about the explosion of us navy sub-marine", "video_id": "video11666", "sen_id": 241596}, {"caption": "a submarine is shown in the ocean as it cruises along and prepares to dive", "video_id": "video11666", "sen_id": 241597}, {"caption": "in a seathe ship is moving on and the rocket goes to the sky", "video_id": "video11666", "sen_id": 241598}, {"caption": "a rocket is shooting into the sky", "video_id": "video11666", "sen_id": 241599}, {"caption": "there are different vegetables cut up and separated into bowls", "video_id": "video11067", "sen_id": 241600}, {"caption": "a female voiceover explain what is in six animated white bowls that are filled with foods and what to do with them", "video_id": "video11067", "sen_id": 241601}, {"caption": "a woman talking about vegetables such as carrots and onions", "video_id": "video11067", "sen_id": 241602}, {"caption": "six white bowls of vegetables on a black table", "video_id": "video11067", "sen_id": 241603}, {"caption": "a lady is introducing vegetable stew ingredients one by one", "video_id": "video11067", "sen_id": 241604}, {"caption": "a video showing 6 different ingredients in white glass bowls", "video_id": "video11067", "sen_id": 241605}, {"caption": "6 bowls with different cube sized chopped vegetables are shown", "video_id": "video11067", "sen_id": 241606}, {"caption": "there is a woman preparing for a vegetable dish", "video_id": "video11067", "sen_id": 241607}, {"caption": "6 white bowls of different foods with an asian woman commenting in the background", "video_id": "video11067", "sen_id": 241608}, {"caption": "six bowls of different vegetables are on a table while a woman is talking", "video_id": "video11067", "sen_id": 241609}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video11067", "sen_id": 241610}, {"caption": "a display of six white bowls all with different chopped up ingredients inside", "video_id": "video11067", "sen_id": 241611}, {"caption": "a woman talks about how to make a recipe with bowls of certain foods", "video_id": "video11067", "sen_id": 241612}, {"caption": "a woman s voice discusses six small bowls of ingredient", "video_id": "video11067", "sen_id": 241613}, {"caption": "a home cook expresses her love for kerala food by showing ingredients that go into the dishes", "video_id": "video11067", "sen_id": 241614}, {"caption": "some white bowls are full of ingredients inside", "video_id": "video11067", "sen_id": 241615}, {"caption": "a vegetable stew is going to prepared and the ingredients are taken in bowls", "video_id": "video11067", "sen_id": 241616}, {"caption": "a woman speaks in hindi while varying vegetables and spices are shown in white bowls", "video_id": "video11067", "sen_id": 241617}, {"caption": "bowls of food sit out on a table", "video_id": "video11067", "sen_id": 241618}, {"caption": "some ingredients are displayed to make a kerala food", "video_id": "video11067", "sen_id": 241619}, {"caption": "a crash course in decomposers is being taught online to people", "video_id": "video12412", "sen_id": 241620}, {"caption": "a woman talking and a cartoon about decomposition", "video_id": "video12412", "sen_id": 241621}, {"caption": "credits roll on a green colored screen with movies and sloths", "video_id": "video12412", "sen_id": 241622}, {"caption": "a ending to a youtube video telling you others thing you can do for their content", "video_id": "video12412", "sen_id": 241623}, {"caption": "a woman in glasses and then credits rolling to end a show", "video_id": "video12412", "sen_id": 241624}, {"caption": "the credits for a show called crash course kids runs across the screen", "video_id": "video12412", "sen_id": 241625}, {"caption": "this is an advertisement of a monthly magazine expecially for pre schoolers", "video_id": "video12412", "sen_id": 241626}, {"caption": "the ending of what just may be a youtube video is shown", "video_id": "video12412", "sen_id": 241627}, {"caption": "the end credits of a podcast are displayed for a company named crash course", "video_id": "video12412", "sen_id": 241628}, {"caption": "cute dark tanned lady introducing the end of her show with a green screen", "video_id": "video12412", "sen_id": 241629}, {"caption": "sexy brunette in glass with blue shirt talking to the camera", "video_id": "video12412", "sen_id": 241630}, {"caption": "a woman says attention then the closing credits are shown", "video_id": "video12412", "sen_id": 241631}, {"caption": "a woman with glasses is sitting and talking then credits play", "video_id": "video12412", "sen_id": 241632}, {"caption": "an advertisement about crash course is being shown the course is about decomposers following the sun for kids etc", "video_id": "video12412", "sen_id": 241633}, {"caption": "a bunch of animated things are being shown", "video_id": "video12412", "sen_id": 241634}, {"caption": "the crash course for kids is being displayed", "video_id": "video12412", "sen_id": 241635}, {"caption": "a womsn in glasses talking about her video", "video_id": "video12412", "sen_id": 241636}, {"caption": "its green background where there are many movies based on different creatures", "video_id": "video12412", "sen_id": 241637}, {"caption": "cartoon imagery is being utilized to explain science to children", "video_id": "video12412", "sen_id": 241638}, {"caption": "a youtuber asks people to watch her videos and subscribe", "video_id": "video12412", "sen_id": 241639}, {"caption": "a news channel is discussing bilingual education being introduced in different schools", "video_id": "video12555", "sen_id": 241640}, {"caption": "schools are shown as bilingual education is discussed", "video_id": "video12555", "sen_id": 241641}, {"caption": "children stand in a circle and clap their hands in a classroom signs point to different directions hedges surround a multi-level school words are written over an entry and a poster with a yellow sun hangs on the wall", "video_id": "video12555", "sen_id": 241642}, {"caption": "bilingual education is being used for breton children in france", "video_id": "video12555", "sen_id": 241643}, {"caption": "a building exterior with posters on the building walls", "video_id": "video12555", "sen_id": 241644}, {"caption": "kids clapping as the video flashes through pictures of a school", "video_id": "video12555", "sen_id": 241645}, {"caption": "a news broadcast outside of a building with art", "video_id": "video12555", "sen_id": 241646}, {"caption": "there are kids studing in a school and their premises is shown", "video_id": "video12555", "sen_id": 241647}, {"caption": "different events from different countries are covered by this newschannel", "video_id": "video12555", "sen_id": 241648}, {"caption": "some banners on a wall are hanging up", "video_id": "video12555", "sen_id": 241649}, {"caption": "students in a class learning some dance step from their teacher", "video_id": "video12555", "sen_id": 241650}, {"caption": "a news report on the diwan penharz education success", "video_id": "video12555", "sen_id": 241651}, {"caption": "a man is talking about a school of diwan", "video_id": "video12555", "sen_id": 241652}, {"caption": "large buildings along with great number of people are seen here", "video_id": "video12555", "sen_id": 241653}, {"caption": "some kids are singing inside of a building", "video_id": "video12555", "sen_id": 241654}, {"caption": "there are some signs about a institution building", "video_id": "video12555", "sen_id": 241655}, {"caption": "in a news program a speakers tells us about public education while we look at a school", "video_id": "video12555", "sen_id": 241656}, {"caption": "a school inside students inside regarding education studies displaying on screen", "video_id": "video12555", "sen_id": 241657}, {"caption": "riots by peopleillustrations and schools are shown here", "video_id": "video12555", "sen_id": 241658}, {"caption": "some street signs are being shown on a tv show", "video_id": "video12555", "sen_id": 241659}, {"caption": "a black and white phone is being displayed and advertised while music is playing", "video_id": "video12151", "sen_id": 241660}, {"caption": "a black and white phone are spinning and showing photos", "video_id": "video12151", "sen_id": 241661}, {"caption": "a new phone with higher pixels is shown here", "video_id": "video12151", "sen_id": 241662}, {"caption": "a cell phone rotating and being touched andphone features being displayed", "video_id": "video12151", "sen_id": 241663}, {"caption": "a smart phone demonstration shows the various things the phone apps can do for a family", "video_id": "video12151", "sen_id": 241664}, {"caption": "a phones features including high resolution in picture taking", "video_id": "video12151", "sen_id": 241665}, {"caption": "several images of a smart phone followed by diamond shaped pictures of people are shown", "video_id": "video12151", "sen_id": 241666}, {"caption": "an informative video about both cell phones and well being with relaxing music", "video_id": "video12151", "sen_id": 241667}, {"caption": "a informational video apparently about cell phones and well being", "video_id": "video12151", "sen_id": 241668}, {"caption": "fingers pinching the screen of a cell phone and different pictures being displayed", "video_id": "video12151", "sen_id": 241669}, {"caption": "some one showing the features of a new touch screen mobile", "video_id": "video12151", "sen_id": 241670}, {"caption": "a video clip about an advertisement of mobile phones", "video_id": "video12151", "sen_id": 241671}, {"caption": "there is a mobile phone with multiple functions", "video_id": "video12151", "sen_id": 241672}, {"caption": "a new mobile phone is being introduced with nice pictures taken with it", "video_id": "video12151", "sen_id": 241673}, {"caption": "samsung led side view flash mobile have more features", "video_id": "video12151", "sen_id": 241674}, {"caption": "two samsung mobile black mist and white frost shown their features about helping in day today life", "video_id": "video12151", "sen_id": 241675}, {"caption": "the video photos of phones and people", "video_id": "video12151", "sen_id": 241676}, {"caption": "a person demonstrates the features of a cell phone", "video_id": "video12151", "sen_id": 241677}, {"caption": "samsung smartphone ad is running on screen as a women shows its resolution by zoom in", "video_id": "video12151", "sen_id": 241678}, {"caption": "some images are being shown on a phone", "video_id": "video12151", "sen_id": 241679}, {"caption": "an in-home chef describes and demonstrates a recipe she is preparing", "video_id": "video11632", "sen_id": 241680}, {"caption": "a pot with a white melting substance is stirred with a wooden spoon", "video_id": "video11632", "sen_id": 241681}, {"caption": "a south asian woman makes a dish in a pot stirring vigorously", "video_id": "video11632", "sen_id": 241682}, {"caption": "someone string meat covered in sauce in a dutch pot", "video_id": "video11632", "sen_id": 241683}, {"caption": "a woman has a pot on the stove describing how she prepares a creamy chicken recipe", "video_id": "video11632", "sen_id": 241684}, {"caption": "a person preparing chicken fry on a oil bowl", "video_id": "video11632", "sen_id": 241685}, {"caption": "there is a women cooking food in untensil", "video_id": "video11632", "sen_id": 241686}, {"caption": "in a bowl chicken piece are cooked by alady", "video_id": "video11632", "sen_id": 241687}, {"caption": "a woman is holding a spoon steering ingredients in a pan describing a recipe made with chicken", "video_id": "video11632", "sen_id": 241688}, {"caption": "a woman cooking chicken in a creamy sauce in a kitchen", "video_id": "video11632", "sen_id": 241689}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11632", "sen_id": 241690}, {"caption": "a female cook stirs food in a big pan narrating as she continues", "video_id": "video11632", "sen_id": 241691}, {"caption": "a woman is stirring chicken and other ingredients together in a pot", "video_id": "video11632", "sen_id": 241692}, {"caption": "a woman stirs chicken in a pot with sauce while stating cooking times and temperatures", "video_id": "video11632", "sen_id": 241693}, {"caption": "a person is using a white spoon to stir dough", "video_id": "video11632", "sen_id": 241694}, {"caption": "a person is standing in front of a pot stirring a dish", "video_id": "video11632", "sen_id": 241695}, {"caption": "a lady mixes the chicken with yogurt and stirs it well before cooking it", "video_id": "video11632", "sen_id": 241696}, {"caption": "a person demonstrates how to cook a creamy chicken dish", "video_id": "video11632", "sen_id": 241697}, {"caption": "a woman talks about stirring various ingredients in a pot", "video_id": "video11632", "sen_id": 241698}, {"caption": "someone is making some food in a metal bowl", "video_id": "video11632", "sen_id": 241699}, {"caption": "a man is driving a fast orange car on a road in a valley", "video_id": "video12868", "sen_id": 241700}, {"caption": "a young man drives a yellow sports car on a deserted desert highway", "video_id": "video12868", "sen_id": 241701}, {"caption": "an orange car races down a road as someone drives it", "video_id": "video12868", "sen_id": 241702}, {"caption": "a man speeds down an empty road next to a mountain", "video_id": "video12868", "sen_id": 241703}, {"caption": "a man is driving an orange car very fast down a road", "video_id": "video12868", "sen_id": 241704}, {"caption": "a sports car is seen zooming along many curved roads", "video_id": "video12868", "sen_id": 241705}, {"caption": "an orange luxury sports car racing down a windy freeway", "video_id": "video12868", "sen_id": 241706}, {"caption": "an orange sports car speeding down a freeway", "video_id": "video12868", "sen_id": 241707}, {"caption": "a man is driving an orange lamborghini at a high speed along a mountain road", "video_id": "video12868", "sen_id": 241708}, {"caption": "a man is driving a sports car at high speed down a winding road", "video_id": "video12868", "sen_id": 241709}, {"caption": "an orange car driving really fast on a deserted road", "video_id": "video12868", "sen_id": 241710}, {"caption": "i car is driving down a roadway that has guard rails on the side", "video_id": "video12868", "sen_id": 241711}, {"caption": "a person driving an orange lamborghini and music playing in the background", "video_id": "video12868", "sen_id": 241712}, {"caption": "a man in black is ridding the orange car with high speed", "video_id": "video12868", "sen_id": 241713}, {"caption": "a man drives a yellow colored sports car on a desserted highway", "video_id": "video12868", "sen_id": 241714}, {"caption": "there is a orange color car riding on the track", "video_id": "video12868", "sen_id": 241715}, {"caption": "a car passing very first on a very well made road", "video_id": "video12868", "sen_id": 241716}, {"caption": "the men driving in their new sports car through the mountain road", "video_id": "video12868", "sen_id": 241717}, {"caption": "a orange sports car is speeding down a street", "video_id": "video12868", "sen_id": 241718}, {"caption": "an orange car is driving fast out side", "video_id": "video12868", "sen_id": 241719}, {"caption": "a man has motorcycle road rage as he calls someone a douche bag for getting in front of them", "video_id": "video11982", "sen_id": 241720}, {"caption": "a motorcyclist being cut off as he rides down the highway", "video_id": "video11982", "sen_id": 241721}, {"caption": "a person records his intense motorcycle ride at night", "video_id": "video11982", "sen_id": 241722}, {"caption": "a man driving a motorcycle and going fast on the highway", "video_id": "video11982", "sen_id": 241723}, {"caption": "someone is riding a motorcycle down the street at night", "video_id": "video11982", "sen_id": 241724}, {"caption": "a bike rider drives fast during night time with few other bikes around", "video_id": "video11982", "sen_id": 241725}, {"caption": "person driving a motorcycle at high speed down the road he is almost hit by a car", "video_id": "video11982", "sen_id": 241726}, {"caption": "a first person video of a man on a motorcycle that almost got hit", "video_id": "video11982", "sen_id": 241727}, {"caption": "a man rides motorcycle on highway and waves off motorist angrily", "video_id": "video11982", "sen_id": 241728}, {"caption": "someone is driving a motorcycle on a highway and cursing aloud about other drivers on the road", "video_id": "video11982", "sen_id": 241729}, {"caption": "a man swears at a guy on a motorcycle as it speeds past him", "video_id": "video11982", "sen_id": 241730}, {"caption": "a guy on a motorcycle gets passed by another guy on a motorcycle and then rants about him with foul language", "video_id": "video11982", "sen_id": 241731}, {"caption": "guy riding a bike and talking loud", "video_id": "video11982", "sen_id": 241732}, {"caption": "a man on a motorcycle almost gets hit while on the street", "video_id": "video11982", "sen_id": 241733}, {"caption": "a bunch of motorcylists racing on a highway in traffic using swear words", "video_id": "video11982", "sen_id": 241734}, {"caption": "a person on a motorcycle drives quickly around other vehicles on a highway at night", "video_id": "video11982", "sen_id": 241735}, {"caption": "a biker goes swiftly waving his hands at night time", "video_id": "video11982", "sen_id": 241736}, {"caption": "man driving motorcycle talking about driver cutting him off", "video_id": "video11982", "sen_id": 241737}, {"caption": "a person rides a bike on the road", "video_id": "video11982", "sen_id": 241738}, {"caption": "there is a man on a motorcycle riding on a highway", "video_id": "video11982", "sen_id": 241739}, {"caption": "a man adds seasoning to raw chicken in a bowl", "video_id": "video10184", "sen_id": 241740}, {"caption": "pieces of chicken are shown in a bowl being seasoned", "video_id": "video10184", "sen_id": 241741}, {"caption": "recipe for chicken curry someone puoring red chilli powder and salt on some chicken pieces", "video_id": "video10184", "sen_id": 241742}, {"caption": "there is a boiling pot filled with chicken curry on a counter there is a bowl of raw chicken parts and then red chili powder was added to the bowl", "video_id": "video10184", "sen_id": 241743}, {"caption": "a man is putting chicken pieces in a bowl adding a teaspoon of salt and two teaspoons of paprika", "video_id": "video10184", "sen_id": 241744}, {"caption": "a graphic with a male voiceover using his hands to prepare a chicken dish in a metal pot using salt and red chile peppers", "video_id": "video10184", "sen_id": 241745}, {"caption": "chicken kept in a bowl and someone adding salt and chilli powder", "video_id": "video10184", "sen_id": 241746}, {"caption": "a man is putting salt and chilli into a bowl that has chicken in it", "video_id": "video10184", "sen_id": 241747}, {"caption": "a man instructing to take a bowl and place chicken in it then add 1 teaspoon of salt and 2 tablespoons of red chili powder", "video_id": "video10184", "sen_id": 241748}, {"caption": "a person has some food inside of a pot", "video_id": "video10184", "sen_id": 241749}, {"caption": "in the kitchen there is a man preparing a chicken dish", "video_id": "video10184", "sen_id": 241750}, {"caption": "a presentation about how to make a special chicken dish", "video_id": "video10184", "sen_id": 241751}, {"caption": "a man adding chili powder and salt to the chicken to make a chicken curry", "video_id": "video10184", "sen_id": 241752}, {"caption": "a kitchen tips from a cook about chcken curry step by step where to start with a 500gram of chicken needs 1 tbl spoon salt and 2 tbl spoon red chilly and go on", "video_id": "video10184", "sen_id": 241753}, {"caption": "some meat is being cooked in a pot", "video_id": "video10184", "sen_id": 241754}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video10184", "sen_id": 241755}, {"caption": "a man gives instruction as me makes a chicken curry", "video_id": "video10184", "sen_id": 241756}, {"caption": "a chef describes some of the steps to making chicken curry", "video_id": "video10184", "sen_id": 241757}, {"caption": "step by step explanation of how to make chicken curry", "video_id": "video10184", "sen_id": 241758}, {"caption": "someone is pouring red stuff on mea", "video_id": "video10184", "sen_id": 241759}, {"caption": "a pack of llamas are running around in the snow", "video_id": "video12569", "sen_id": 241760}, {"caption": "a lot of animals walking the same direction in a snow towards a cage", "video_id": "video12569", "sen_id": 241761}, {"caption": "a group of animals runs through the snow they are guided through an opening in a wooden fence as they head to pasture", "video_id": "video12569", "sen_id": 241762}, {"caption": "several llamas are walking around in the snow", "video_id": "video12569", "sen_id": 241763}, {"caption": "animals are being directed from the fence to the field", "video_id": "video12569", "sen_id": 241764}, {"caption": "there are some animals walking in to the snow", "video_id": "video12569", "sen_id": 241765}, {"caption": "in the national park the yak are going their stables in one by one", "video_id": "video12569", "sen_id": 241766}, {"caption": "animals walking in line on snow", "video_id": "video12569", "sen_id": 241767}, {"caption": "animals are going out of the fence to the pasture", "video_id": "video12569", "sen_id": 241768}, {"caption": "a herd of alpacas walk across the snow near a fence", "video_id": "video12569", "sen_id": 241769}, {"caption": "number of camels of different colors are walking along the hedges on snow", "video_id": "video12569", "sen_id": 241770}, {"caption": "few australia horse in the cage walking around it and running", "video_id": "video12569", "sen_id": 241771}, {"caption": "its like bog lambs in brown color trying to come out of cage", "video_id": "video12569", "sen_id": 241772}, {"caption": "a llama farm features several animals walking through the pens with snow on the ground", "video_id": "video12569", "sen_id": 241773}, {"caption": "llamas are being herded into a nearby pasture", "video_id": "video12569", "sen_id": 241774}, {"caption": "an animal is going on the mist", "video_id": "video12569", "sen_id": 241775}, {"caption": "a group of llamas being led from the corral into the field", "video_id": "video12569", "sen_id": 241776}, {"caption": "a person is shown walking with multiple llamas to a pasture", "video_id": "video12569", "sen_id": 241777}, {"caption": "several farm animals are walked from one location to another in the snow", "video_id": "video12569", "sen_id": 241778}, {"caption": "someone herds a group of llamas into a snowy pasture", "video_id": "video12569", "sen_id": 241779}, {"caption": "a clip showing a accordion player in the train station", "video_id": "video10580", "sen_id": 241780}, {"caption": "a little boy is shown at the train station", "video_id": "video10580", "sen_id": 241781}, {"caption": "a little boy appears lost in subway station crowd", "video_id": "video10580", "sen_id": 241782}, {"caption": "a lot of people are walking in a tunnel", "video_id": "video10580", "sen_id": 241783}, {"caption": "a boy plays an accordion in a busy station while another sleeps on the floor", "video_id": "video10580", "sen_id": 241784}, {"caption": "a man in a gray shirt with a black bag is in the middle of a crowded room", "video_id": "video10580", "sen_id": 241785}, {"caption": "a great host of people walk through a station while a man plays an accordion", "video_id": "video10580", "sen_id": 241786}, {"caption": "a large crowd of people are walking around while a man plays music", "video_id": "video10580", "sen_id": 241787}, {"caption": "people walk rapidly through a scenic mall as a man plays an accordian in the midst of the mall and one young child sleeps against the wall of the mall", "video_id": "video10580", "sen_id": 241788}, {"caption": "some peoples are entering and walking in a big plate form", "video_id": "video10580", "sen_id": 241789}, {"caption": "a lot of adults are walking through a packed terminal-type area and ignoring the little boy who lays down to sleep", "video_id": "video10580", "sen_id": 241790}, {"caption": "there is a crowd moving in to the street", "video_id": "video10580", "sen_id": 241791}, {"caption": "the inside of the building is very crowded the young boy is playing an accordian", "video_id": "video10580", "sen_id": 241792}, {"caption": "guy playing music instrument in a crowded place", "video_id": "video10580", "sen_id": 241793}, {"caption": "various people including a young boy and a man playing accordian are seen in a subway or train station", "video_id": "video10580", "sen_id": 241794}, {"caption": "a man is playing music in a crowded hall or area", "video_id": "video10580", "sen_id": 241795}, {"caption": "some people are moving in the video and talking", "video_id": "video10580", "sen_id": 241796}, {"caption": "a little boy is ignored public place from people", "video_id": "video10580", "sen_id": 241797}, {"caption": "its pas by route where many people are crossing person plays music instrument", "video_id": "video10580", "sen_id": 241798}, {"caption": "some people are walking in a sub way", "video_id": "video10580", "sen_id": 241799}, {"caption": "a woman is making a recipe that requires a certain bread crumb combination", "video_id": "video10460", "sen_id": 241800}, {"caption": "a woman makes a recipe with bread crumbs", "video_id": "video10460", "sen_id": 241801}, {"caption": "a woman in a leopard print shirt is stirring bread crumbs on a plate", "video_id": "video10460", "sen_id": 241802}, {"caption": "a mexican women in a leopard print shirt is cooking", "video_id": "video10460", "sen_id": 241803}, {"caption": "a woman is mixing breadcrumbs with other ingredients for a recipe", "video_id": "video10460", "sen_id": 241804}, {"caption": "a lady wearing a blue dress with black hair illustrates how to use bread crumbs in a dish", "video_id": "video10460", "sen_id": 241805}, {"caption": "a woman is showing how to make a special breading mix for cooking", "video_id": "video10460", "sen_id": 241806}, {"caption": "there is a woman making a simple dish", "video_id": "video10460", "sen_id": 241807}, {"caption": "a woman talking in a foreign language while cooking", "video_id": "video10460", "sen_id": 241808}, {"caption": "in kitchen the lady mixes corn flakes with bread grams her suit nice", "video_id": "video10460", "sen_id": 241809}, {"caption": "a woman discusses cooking while preparing some food", "video_id": "video10460", "sen_id": 241810}, {"caption": "a women is preparing some special food in kitchen", "video_id": "video10460", "sen_id": 241811}, {"caption": "a woman prepares breadcrumbs for a recipe on a cooking show", "video_id": "video10460", "sen_id": 241812}, {"caption": "a woman mixes ingredients on a plate while she instructs", "video_id": "video10460", "sen_id": 241813}, {"caption": "a hispanic woman in a kitchen is hand mixing two ingredients together on a plate", "video_id": "video10460", "sen_id": 241814}, {"caption": "a woman is preparing a food item", "video_id": "video10460", "sen_id": 241815}, {"caption": "a lady pouring sauce on a plate and mixed it", "video_id": "video10460", "sen_id": 241816}, {"caption": "an indian woman works on a recipe in her in home kitchen", "video_id": "video10460", "sen_id": 241817}, {"caption": "a lady is mixing a breading coating on a plate", "video_id": "video10460", "sen_id": 241818}, {"caption": "a hispanic woman prepares a meal as she explains the process", "video_id": "video10460", "sen_id": 241819}, {"caption": "traveling along a country road a view of a church comes with a marker", "video_id": "video10321", "sen_id": 241820}, {"caption": "an old church sets on a green hill above a small town", "video_id": "video10321", "sen_id": 241821}, {"caption": "countrysides are being shown including country roads and hotels near it", "video_id": "video10321", "sen_id": 241822}, {"caption": "a moving winding road leading to a building with a strange sign on it", "video_id": "video10321", "sen_id": 241823}, {"caption": "a large open grassy area shown from the angle of a moving car through the desert is shown", "video_id": "video10321", "sen_id": 241824}, {"caption": "a car drives along a gravel road near an old castle in the country", "video_id": "video10321", "sen_id": 241825}, {"caption": "open fields with first person view driving down the road", "video_id": "video10321", "sen_id": 241826}, {"caption": "music plays in the background while the viewer gets to see an open road ending at a church", "video_id": "video10321", "sen_id": 241827}, {"caption": "a cloudy sky gray sea and green meadow are three horizontal blocks of color a country road cuts through lush fields toward mountains a stone church sits on a green slope and a sign centered under a crown and open wreath is above a brick archway", "video_id": "video10321", "sen_id": 241828}, {"caption": "a road surrounded by mountains and greenery is being driven on to arrive at a chapel", "video_id": "video10321", "sen_id": 241829}, {"caption": "there is a calm and pleasure place for visitors", "video_id": "video10321", "sen_id": 241830}, {"caption": "different views of an empty street and buildings in the daytime", "video_id": "video10321", "sen_id": 241831}, {"caption": "perspective of driving down a road and a castle is shown", "video_id": "video10321", "sen_id": 241832}, {"caption": "person is driving his car fast on the street to kong oscar", "video_id": "video10321", "sen_id": 241833}, {"caption": "there is a drive through a countryside area down a small road ending with a rustic building", "video_id": "video10321", "sen_id": 241834}, {"caption": "a video is showing a drive on nice country road and some of the buildings along the way", "video_id": "video10321", "sen_id": 241835}, {"caption": "someone capturing the road and buildings and trees", "video_id": "video10321", "sen_id": 241836}, {"caption": "a barn sitting in a field on a nice sunny day", "video_id": "video10321", "sen_id": 241837}, {"caption": "the sun and clouds create a majestic panorama over a chapel in the country", "video_id": "video10321", "sen_id": 241838}, {"caption": "some one is driving a car out side", "video_id": "video10321", "sen_id": 241839}, {"caption": "an indian woman yells are her sleeping husband", "video_id": "video11737", "sen_id": 241840}, {"caption": "woman tries to awaken a man and when he does he seems dazed", "video_id": "video11737", "sen_id": 241841}, {"caption": "a women walks into a room upset with a man that is sleeping on the bed", "video_id": "video11737", "sen_id": 241842}, {"caption": "woman in a dark colored shirt and blue jeans yells at a man laying in bed", "video_id": "video11737", "sen_id": 241843}, {"caption": "a man is laying in bed and a woman is yelling at him in a foreign language", "video_id": "video11737", "sen_id": 241844}, {"caption": "a woman shouting a man on room", "video_id": "video11737", "sen_id": 241845}, {"caption": "a woman scolds a man as we tries to wake up in his bed", "video_id": "video11737", "sen_id": 241846}, {"caption": "a woman in a black t-shirt walks into a white-wall bedroom where a man is sleeping on his stomach on a red pillow and purple blanket", "video_id": "video11737", "sen_id": 241847}, {"caption": "a man in blue shirt lie on bed and sleep snoring a lady in black shirt yel at him", "video_id": "video11737", "sen_id": 241848}, {"caption": "one man is sleeping on a bed and a lady is shouting on him", "video_id": "video11737", "sen_id": 241849}, {"caption": "a women in tshirt asking to awake to a old man", "video_id": "video11737", "sen_id": 241850}, {"caption": "the woman yells to the man as he sleeps in the bed", "video_id": "video11737", "sen_id": 241851}, {"caption": "volga one man sleeping in a telugu movie", "video_id": "video11737", "sen_id": 241852}, {"caption": "it is a comedy sean which are performed by one man and lady", "video_id": "video11737", "sen_id": 241853}, {"caption": "a man who is sleeping and another woman is scolding and get off from their for gym", "video_id": "video11737", "sen_id": 241854}, {"caption": "there is a blue dress man awake from sleep", "video_id": "video11737", "sen_id": 241855}, {"caption": "this is the south indian movie part the wife is calling the husband on the bedrrom", "video_id": "video11737", "sen_id": 241856}, {"caption": "a indian film scene is playing on the screen", "video_id": "video11737", "sen_id": 241857}, {"caption": "the person in blue dress sleeps on the pink bed a lady yell at him", "video_id": "video11737", "sen_id": 241858}, {"caption": "a video clip cars parking and sleeping man getting up and speaking displaying on screen", "video_id": "video11737", "sen_id": 241859}, {"caption": "an announcer is talking while a team in white uniforms and a team in blue uniforms are playing soccer", "video_id": "video12000", "sen_id": 241860}, {"caption": "blue shirt team is playing rugby against white shirt team", "video_id": "video12000", "sen_id": 241861}, {"caption": "players are moving fast to grab the ball in rugby on green grassy ground", "video_id": "video12000", "sen_id": 241862}, {"caption": "two teams players playing rugby very interestingly", "video_id": "video12000", "sen_id": 241863}, {"caption": "on a green field two teams are playing a hand ball match", "video_id": "video12000", "sen_id": 241864}, {"caption": "the man in black dress is telling us about a something", "video_id": "video12000", "sen_id": 241865}, {"caption": "rugby player running hard but opponent team catch him easily", "video_id": "video12000", "sen_id": 241866}, {"caption": "the men wearing soccer uniforms run on the field", "video_id": "video12000", "sen_id": 241867}, {"caption": "the through ball players play in the playground", "video_id": "video12000", "sen_id": 241868}, {"caption": "some players are playing hand game on a green grass ground", "video_id": "video12000", "sen_id": 241869}, {"caption": "rugby player showing his tackle skill and then scoring a goal", "video_id": "video12000", "sen_id": 241870}, {"caption": "here the two teams are playing a rugby game where one of them got the ball and he put at the goal", "video_id": "video12000", "sen_id": 241871}, {"caption": "sentence 1: the blue colour nfl team toughly took the football and placed a goal over the white colour nfl team", "video_id": "video12000", "sen_id": 241872}, {"caption": "two men teams grabbing the ball and running on the field", "video_id": "video12000", "sen_id": 241873}, {"caption": "a team in whiteblack vs a team in blueblack players playing foot boll in the ground", "video_id": "video12000", "sen_id": 241874}, {"caption": "two team players are playing rugby on ground", "video_id": "video12000", "sen_id": 241875}, {"caption": "in a rugby match white and blue jersey wearing players playing rugby passing the ball to one to another to score a goal", "video_id": "video12000", "sen_id": 241876}, {"caption": "tennis playing match live telecast programmed and rather then new", "video_id": "video12000", "sen_id": 241877}, {"caption": "a blue dress and white dress player playing game in ground ball in hands", "video_id": "video12000", "sen_id": 241878}, {"caption": "some people are playing rugby on a field", "video_id": "video12000", "sen_id": 241879}, {"caption": "a woman is using a pencil to draw a picture of a horse jumping in the air", "video_id": "video11935", "sen_id": 241880}, {"caption": "a woman holding a pencil is describing how she drew a picture of a horse", "video_id": "video11935", "sen_id": 241881}, {"caption": "there is a woman talking about her drawing", "video_id": "video11935", "sen_id": 241882}, {"caption": "a woman is drawing and showing lines of a horse on paper", "video_id": "video11935", "sen_id": 241883}, {"caption": "the lady is explaining a proper techniques for drawing a horse", "video_id": "video11935", "sen_id": 241884}, {"caption": "a woman is describing her pencil sketch of a jumping horse", "video_id": "video11935", "sen_id": 241885}, {"caption": "a person is doing his art work in paper", "video_id": "video11935", "sen_id": 241886}, {"caption": "there is someone drawing a horse in a white papper", "video_id": "video11935", "sen_id": 241887}, {"caption": "a woman is talking while showing a drawing of a horse", "video_id": "video11935", "sen_id": 241888}, {"caption": "a woman is draw a horse in the paper", "video_id": "video11935", "sen_id": 241889}, {"caption": "a quick tutorial of how a realistic horse is drawn", "video_id": "video11935", "sen_id": 241890}, {"caption": "a person is drawing a horse diagram", "video_id": "video11935", "sen_id": 241891}, {"caption": "one hand is supporting a horse drawing on a white sheet of paper against a wall and the other hand is holding a pencil following drawn horizontal", "video_id": "video11935", "sen_id": 241892}, {"caption": "in white paper horse is drawn using pencil its pencil sketch", "video_id": "video11935", "sen_id": 241893}, {"caption": "the woman uses a pencil to draw a horse that is jumping", "video_id": "video11935", "sen_id": 241894}, {"caption": "a person is making a horse art on a paper", "video_id": "video11935", "sen_id": 241895}, {"caption": "a nice sketch of jumping horse is being drawn by an artist in black and white", "video_id": "video11935", "sen_id": 241896}, {"caption": "one girl drawing a horse in the paper", "video_id": "video11935", "sen_id": 241897}, {"caption": "a lady describe the drawing of a jumping horse with a pencil on her hand", "video_id": "video11935", "sen_id": 241898}, {"caption": "a person is drawing on a piece of paper", "video_id": "video11935", "sen_id": 241899}, {"caption": "a red sports car convertible is shown driving", "video_id": "video12937", "sen_id": 241900}, {"caption": "a red volkswagen beetle drives on a hilly road", "video_id": "video12937", "sen_id": 241901}, {"caption": "a red little car is shows as it sits on the side of the road then is shown driving on a highway", "video_id": "video12937", "sen_id": 241902}, {"caption": "a man providing commentary about a volkswagon beetle", "video_id": "video12937", "sen_id": 241903}, {"caption": "a red beetle car starts and goes for a ride as a man's voice describes it's history", "video_id": "video12937", "sen_id": 241904}, {"caption": "a open red car is moving away in a empty road", "video_id": "video12937", "sen_id": 241905}, {"caption": "there is a sunny day someone is travelling", "video_id": "video12937", "sen_id": 241906}, {"caption": "an advertisement for a beetle volkswagon that was just too much of a wink after a few years", "video_id": "video12937", "sen_id": 241907}, {"caption": "a convertible beetle drives along winding coastal roads", "video_id": "video12937", "sen_id": 241908}, {"caption": "person driving beautiful red cabriolet car through the street", "video_id": "video12937", "sen_id": 241909}, {"caption": "there is a red car riding on the road", "video_id": "video12937", "sen_id": 241910}, {"caption": "a red open car is moving along a ghat road", "video_id": "video12937", "sen_id": 241911}, {"caption": "a man driving a red color car on the road", "video_id": "video12937", "sen_id": 241912}, {"caption": "a car is being shown and driven by me", "video_id": "video12937", "sen_id": 241913}, {"caption": "a person is driving car and showing its features", "video_id": "video12937", "sen_id": 241914}, {"caption": "there is a stylish car on the street", "video_id": "video12937", "sen_id": 241915}, {"caption": "someone is driving the red car very fast on the road", "video_id": "video12937", "sen_id": 241916}, {"caption": "a man explains something about a brand new car", "video_id": "video12937", "sen_id": 241917}, {"caption": "a man telling about the red car and its features after few years", "video_id": "video12937", "sen_id": 241918}, {"caption": "a person is driving a car around on the street", "video_id": "video12937", "sen_id": 241919}, {"caption": "a woman is fixing her wooden sandals outside", "video_id": "video12146", "sen_id": 241920}, {"caption": "closed heel strapless sandals for the fashionista in all of us", "video_id": "video12146", "sen_id": 241921}, {"caption": "women models crochet sandals which have a zipper in the back they go great with her outfit", "video_id": "video12146", "sen_id": 241922}, {"caption": "a woman with pink toe nail polish shows off crocheted sandals", "video_id": "video12146", "sen_id": 241923}, {"caption": "a woman is trying on a pair of sandals", "video_id": "video12146", "sen_id": 241924}, {"caption": "a young woman in jeans tries on and demonstrates a type of cream-colored open toed sandals", "video_id": "video12146", "sen_id": 241925}, {"caption": "a woman is reviewing certain strap sandals with the camera focused on her putting them on", "video_id": "video12146", "sen_id": 241926}, {"caption": "a woman is putting on a pair of sandals while describing how they look and what outfit they will go with", "video_id": "video12146", "sen_id": 241927}, {"caption": "a woman puts a sandal on and moves her legs back and forth", "video_id": "video12146", "sen_id": 241928}, {"caption": "a girl tries on a pair of white strappy sandals", "video_id": "video12146", "sen_id": 241929}, {"caption": "a woman reviews her new sandals and how to style them", "video_id": "video12146", "sen_id": 241930}, {"caption": "a woman is trying on a shoe that is made of lace and zips up in the back", "video_id": "video12146", "sen_id": 241931}, {"caption": "a woman is putting on sandles and talking about how they feel", "video_id": "video12146", "sen_id": 241932}, {"caption": "a young lady believes this crocheted sandal upper is more comfortable than strappy sandals", "video_id": "video12146", "sen_id": 241933}, {"caption": "a lady is wearing the chappals to her foots and adjust the leg", "video_id": "video12146", "sen_id": 241934}, {"caption": "a girl describing a pair of tan sandals", "video_id": "video12146", "sen_id": 241935}, {"caption": "a woman showing a pair of white lace sandals with a zipper on the back", "video_id": "video12146", "sen_id": 241936}, {"caption": "a girl talks about her cream colored thong sandals", "video_id": "video12146", "sen_id": 241937}, {"caption": "a young girl with painted toe nails models sandals that zip up in the back", "video_id": "video12146", "sen_id": 241938}, {"caption": "a woman outside is putting on some shoes", "video_id": "video12146", "sen_id": 241939}, {"caption": "glasses are displayed with various substances in them as someone points to the glasses", "video_id": "video11225", "sen_id": 241940}, {"caption": "a person describing different ingredients for a dish", "video_id": "video11225", "sen_id": 241941}, {"caption": "person makes fried rice with many different oriental spices and sauces", "video_id": "video11225", "sen_id": 241942}, {"caption": "a woman describes the ingredients necessary to prepare a dish", "video_id": "video11225", "sen_id": 241943}, {"caption": "a woman hand wearing a gold bracelet is pointing at ingredients on a counter", "video_id": "video11225", "sen_id": 241944}, {"caption": "a women in a kitchen showing different ingredients to prepare some dish", "video_id": "video11225", "sen_id": 241945}, {"caption": "someone in a kitchen describing ingredients in small bowls", "video_id": "video11225", "sen_id": 241946}, {"caption": "a woman is telling a ingredient it placed in the bowl", "video_id": "video11225", "sen_id": 241947}, {"caption": "a woman is speaking about cooking a chinese dish using different chinese sauces", "video_id": "video11225", "sen_id": 241948}, {"caption": "a girl bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11225", "sen_id": 241949}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video11225", "sen_id": 241950}, {"caption": "seven different ingredients being described by a woman", "video_id": "video11225", "sen_id": 241951}, {"caption": "women showing ingredients to prepare a dish in a kitchen", "video_id": "video11225", "sen_id": 241952}, {"caption": "in a kitchen someone is going over ingredients to a meal", "video_id": "video11225", "sen_id": 241953}, {"caption": "a women pointing out what sauces she has in different glasses", "video_id": "video11225", "sen_id": 241954}, {"caption": "some one in a kitchen showing different ingredients to prepare some dish", "video_id": "video11225", "sen_id": 241955}, {"caption": "somebody is pouring sauce or salad dressing onto a salad and then showing the different ingredients they used", "video_id": "video11225", "sen_id": 241956}, {"caption": "many ingredients are placed in glass bowlthen he explains", "video_id": "video11225", "sen_id": 241957}, {"caption": "ingredients for a sauce are displayed while a woman describes each ingredient", "video_id": "video11225", "sen_id": 241958}, {"caption": "the chef prepares all of the ingredients for the dish she is about to make", "video_id": "video11225", "sen_id": 241959}, {"caption": "a young lady sits in front of a mirror talking to the camera", "video_id": "video10775", "sen_id": 241960}, {"caption": "a lady talking about people in the industry touching her hair as she speaks", "video_id": "video10775", "sen_id": 241961}, {"caption": "a woman speaking about her company and how to use the website", "video_id": "video10775", "sen_id": 241962}, {"caption": "a young women talking about trends and what companies are looking for", "video_id": "video10775", "sen_id": 241963}, {"caption": "the women use the word information in the sentence", "video_id": "video10775", "sen_id": 241964}, {"caption": "a woman is talking about what scouts are looking for on modeling sites", "video_id": "video10775", "sen_id": 241965}, {"caption": "a women in black dress is talking in all confidence", "video_id": "video10775", "sen_id": 241966}, {"caption": "one smart women is talking about something very nicely", "video_id": "video10775", "sen_id": 241967}, {"caption": "a young woman with long brown hair and bright pink lipstick discusses the company where she works", "video_id": "video10775", "sen_id": 241968}, {"caption": "a woman wearing in black dress explaing sitting", "video_id": "video10775", "sen_id": 241969}, {"caption": "a woman with brown hair is talking about something", "video_id": "video10775", "sen_id": 241970}, {"caption": "there is a black shirt women talking in side the room", "video_id": "video10775", "sen_id": 241971}, {"caption": "a woman with long hair who is wearing lipstick discusses business matters", "video_id": "video10775", "sen_id": 241972}, {"caption": "a woman wearing black top red lipstick and eyeliner is talking", "video_id": "video10775", "sen_id": 241973}, {"caption": "the beautiful girl in black design dress is speaking to someone in the talk show", "video_id": "video10775", "sen_id": 241974}, {"caption": "a women with brown hair is talking about soemthing", "video_id": "video10775", "sen_id": 241975}, {"caption": "a woman discussing the fashion industry and forecasts in trends and designs", "video_id": "video10775", "sen_id": 241976}, {"caption": "a brown haired woman in a black top in front of a large mirror on the wall", "video_id": "video10775", "sen_id": 241977}, {"caption": "a woman speaks to the camera for a video segment", "video_id": "video10775", "sen_id": 241978}, {"caption": "sexy brunette in black top talking to the camera", "video_id": "video10775", "sen_id": 241979}, {"caption": "a man is describing a smooth wall which appears to have been built on a stone-like substance", "video_id": "video11502", "sen_id": 241980}, {"caption": "a man claims natural-looking features were actually made by sentient beings", "video_id": "video11502", "sen_id": 241981}, {"caption": "a man talking about a photo shopped picture from nasa", "video_id": "video11502", "sen_id": 241982}, {"caption": "a man describes a picture of a rock from another planet", "video_id": "video11502", "sen_id": 241983}, {"caption": "a man in the speaking about whats on his display screen", "video_id": "video11502", "sen_id": 241984}, {"caption": "a man performing web checks and testing out a web page", "video_id": "video11502", "sen_id": 241985}, {"caption": "there is rock s structure is look like cave and there is also a measuring tool found", "video_id": "video11502", "sen_id": 241986}, {"caption": "a man in blue using a pointer to show places on a rock formation", "video_id": "video11502", "sen_id": 241987}, {"caption": "man is sitting in his room and searching on the computer", "video_id": "video11502", "sen_id": 241988}, {"caption": "a man is streaming his photo editing skills", "video_id": "video11502", "sen_id": 241989}, {"caption": "a man is on split screen while he talks about pictures from outer space", "video_id": "video11502", "sen_id": 241990}, {"caption": "a computer screen with a man in the background explaining that there is a small wall built on the stone that appears to be from another planet", "video_id": "video11502", "sen_id": 241991}, {"caption": "a man giving a tutorial about hyrogliphics on a stone", "video_id": "video11502", "sen_id": 241992}, {"caption": "a possible stone structure with a man in the corner describing his find", "video_id": "video11502", "sen_id": 241993}, {"caption": "a person in blue shirt sitting and giving speech", "video_id": "video11502", "sen_id": 241994}, {"caption": "a man explains the scenario in a video game which he has posted a screenshot of", "video_id": "video11502", "sen_id": 241995}, {"caption": "a man is demonstrating heiroglyphs on a rock", "video_id": "video11502", "sen_id": 241996}, {"caption": "a man wearing blue shirt describes a photo using a software", "video_id": "video11502", "sen_id": 241997}, {"caption": "a man is explaining a still image of a rock pile and changing the color intensity of the image to reflect details on the rock", "video_id": "video11502", "sen_id": 241998}, {"caption": "person is showing a cave in nature outside", "video_id": "video11502", "sen_id": 241999}, {"caption": "scenes from the walking dead play while facts about the series are written down", "video_id": "video12744", "sen_id": 242000}, {"caption": "a comercial on a laptop about the walking dead", "video_id": "video12744", "sen_id": 242001}, {"caption": "animated infographics tell us about the walking dead", "video_id": "video12744", "sen_id": 242002}, {"caption": "a countdown list of the tv show the walking dead", "video_id": "video12744", "sen_id": 242003}, {"caption": "a laptop with clips from the walking dead plays while written facts are shown about this popular tv show", "video_id": "video12744", "sen_id": 242004}, {"caption": "a fake computer screen shoeing a show and a hand writing a message next to it", "video_id": "video12744", "sen_id": 242005}, {"caption": "the walking dead show scenes on a small computer screen while facts of the tv show are on the side of it", "video_id": "video12744", "sen_id": 242006}, {"caption": "on a small computer screen is scenes from the show the walking dead with facts next to it", "video_id": "video12744", "sen_id": 242007}, {"caption": "numbers are displayed on board and a man writes something", "video_id": "video12744", "sen_id": 242008}, {"caption": "top countries downloads the walking deadits written in red color", "video_id": "video12744", "sen_id": 242009}, {"caption": "an advertisement of the walking dead s number of seasons approximate downloads and imdb rating", "video_id": "video12744", "sen_id": 242010}, {"caption": "clippings of walking dead season is playing with men writing text", "video_id": "video12744", "sen_id": 242011}, {"caption": "a white t-shirt man watching in side the room", "video_id": "video12744", "sen_id": 242012}, {"caption": "the walking dead total seasons = 5 top countries downloads the", "video_id": "video12744", "sen_id": 242013}, {"caption": "a statistical overview of the show the walking dead", "video_id": "video12744", "sen_id": 242014}, {"caption": "a computer and images displaying on the screen pictures on screen", "video_id": "video12744", "sen_id": 242015}, {"caption": "a hand writes on a screen along side a smaller screen showing a tv series about zombies", "video_id": "video12744", "sen_id": 242016}, {"caption": "the season performance numbers of the show the walking dead are given", "video_id": "video12744", "sen_id": 242017}, {"caption": "they are saying the walking dead is downloaded by five and a half millions of people", "video_id": "video12744", "sen_id": 242018}, {"caption": "a man writing in a board about the top countries downloads", "video_id": "video12744", "sen_id": 242019}, {"caption": "a plare of pasta with sauce is shown", "video_id": "video11857", "sen_id": 242020}, {"caption": "a white plate with shrimp and tomato sauce is sitting on a table", "video_id": "video11857", "sen_id": 242021}, {"caption": "there is a red sauce dish being cooked in a black pot followed by a complete dish on a white plate", "video_id": "video11857", "sen_id": 242022}, {"caption": "some food on a white plate with some sauce", "video_id": "video11857", "sen_id": 242023}, {"caption": "a plate of shrimp in tomato sause with something yellow behind it sits on a table while a woman tries not to swear while talking about her recipes on her website", "video_id": "video11857", "sen_id": 242024}, {"caption": "a woman is speaking about her recipe while the finished dish is sitting on the table", "video_id": "video11857", "sen_id": 242025}, {"caption": "a woman is speaking while displaying a dish of food", "video_id": "video11857", "sen_id": 242026}, {"caption": "the food items are placed in the white plates on the table", "video_id": "video11857", "sen_id": 242027}, {"caption": "a woman has cooked a sea food and put into the plate and speaking about the food", "video_id": "video11857", "sen_id": 242028}, {"caption": "a plate of food with red sauce is in a white bowl and sits on a wooden table top", "video_id": "video11857", "sen_id": 242029}, {"caption": "a woman is showing a shrimp dish that she describes as inespensive and tasty", "video_id": "video11857", "sen_id": 242030}, {"caption": "a woman shows off food that she cooked consisting of tomato sauce and sea food", "video_id": "video11857", "sen_id": 242031}, {"caption": "a medium size dish with shrimp covered in tomato sauce as well as a knife and fork", "video_id": "video11857", "sen_id": 242032}, {"caption": "the women talking is says that what is on the plate is a shrimp and tomato sauce she then tells us to go look at her other recipes on her website", "video_id": "video11857", "sen_id": 242033}, {"caption": "a lady giving description of the sea food along with tomato sauce which is very-very good", "video_id": "video11857", "sen_id": 242034}, {"caption": "pictures of a shrimp and tomato sauce dish is explained by a voice", "video_id": "video11857", "sen_id": 242035}, {"caption": "a serving of shrimps in tomate sauce is displayed", "video_id": "video11857", "sen_id": 242036}, {"caption": "person is showing the amazing meals he made", "video_id": "video11857", "sen_id": 242037}, {"caption": "a woman is showing the completed product of her shrimp and tomato sauce recipe", "video_id": "video11857", "sen_id": 242038}, {"caption": "some food is sitting on a white plate", "video_id": "video11857", "sen_id": 242039}, {"caption": "there is someone giving instructions in spanish on how to cook a meal", "video_id": "video10207", "sen_id": 242040}, {"caption": "a chef works on a recipe by adding ingredients to a hot wok", "video_id": "video10207", "sen_id": 242041}, {"caption": "a person cooking in a pot and putting veggies on a stick", "video_id": "video10207", "sen_id": 242042}, {"caption": "cooking some kind of meat with onion bell pepper and tomato on a skewer with rice", "video_id": "video10207", "sen_id": 242043}, {"caption": "a woman with an accent cooks some food while she discusses what she's doing", "video_id": "video10207", "sen_id": 242044}, {"caption": "in a kitchen someone is preparing a appetizer to eat", "video_id": "video10207", "sen_id": 242045}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video10207", "sen_id": 242046}, {"caption": "in the kitchen a woman using some sliced tomato s", "video_id": "video10207", "sen_id": 242047}, {"caption": "a woman is cooking some food on the stove", "video_id": "video10207", "sen_id": 242048}, {"caption": "in black pan ingredients are added one by one then they pork the ingredients into the stick", "video_id": "video10207", "sen_id": 242049}, {"caption": "in a cooking demonstration a woman is preparing a meal the initial image is of a meat preparation simmering in a pot", "video_id": "video10207", "sen_id": 242050}, {"caption": "a woman making a dish in the kitchen", "video_id": "video10207", "sen_id": 242051}, {"caption": "a person using a large pot is frying some meat and demonstrating what foods to put on a shish kabob skewer", "video_id": "video10207", "sen_id": 242052}, {"caption": "a woman is cooking food on stove and putting vegitables on a stick", "video_id": "video10207", "sen_id": 242053}, {"caption": "some food is being boiled in a pot", "video_id": "video10207", "sen_id": 242054}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10207", "sen_id": 242055}, {"caption": "a woman taps a wooden spatula onto a pot with meat sizzling inside followed by explaining what vegetables she has on a stick", "video_id": "video10207", "sen_id": 242056}, {"caption": "a lady preparing meat on the stove and vegetables on a plate for a great dish", "video_id": "video10207", "sen_id": 242057}, {"caption": "a woman is cooking meat and vegitable in a pan on the stove", "video_id": "video10207", "sen_id": 242058}, {"caption": "a woman stir fries meat in a pan and then adds vegetables to a kebab stick", "video_id": "video10207", "sen_id": 242059}, {"caption": "spectators cheer during an intense ping pong match", "video_id": "video10540", "sen_id": 242060}, {"caption": "two asian ping-pong players are battling it out on a purple ping-pong table", "video_id": "video10540", "sen_id": 242061}, {"caption": "players are busy in a table tennis match here", "video_id": "video10540", "sen_id": 242062}, {"caption": "a ping pong tennis match in progress between two males", "video_id": "video10540", "sen_id": 242063}, {"caption": "two men intensely play a game of table tennis", "video_id": "video10540", "sen_id": 242064}, {"caption": "two men in shorts are playing ping pong against each other", "video_id": "video10540", "sen_id": 242065}, {"caption": "two men are playing a game of ping pong ball", "video_id": "video10540", "sen_id": 242066}, {"caption": "two young people practising for table tennis match", "video_id": "video10540", "sen_id": 242067}, {"caption": "two men playing in a ping pong competition", "video_id": "video10540", "sen_id": 242068}, {"caption": "two men are competing in a ping-pong competition", "video_id": "video10540", "sen_id": 242069}, {"caption": "two table tennis players are playing a match", "video_id": "video10540", "sen_id": 242070}, {"caption": "there is a man playing table tennis with control", "video_id": "video10540", "sen_id": 242071}, {"caption": "two men are playing table tennis on tv", "video_id": "video10540", "sen_id": 242072}, {"caption": "an intense ping pong match between two men", "video_id": "video10540", "sen_id": 242073}, {"caption": "two men play ping pong in a large stadium in front of a large crowd", "video_id": "video10540", "sen_id": 242074}, {"caption": "ping pong players in black and purple tshirt playing against each other in a match", "video_id": "video10540", "sen_id": 242075}, {"caption": "a fast paced game of table tennis is being played by two people", "video_id": "video10540", "sen_id": 242076}, {"caption": "two ping pong players compete on a purple ping pong table sitting on a blue floor", "video_id": "video10540", "sen_id": 242077}, {"caption": "a man in black serves and scores a quick point with opponent in table tennis match", "video_id": "video10540", "sen_id": 242078}, {"caption": "two men one wearing maroon and the other wearing black are playing table tennis", "video_id": "video10540", "sen_id": 242079}, {"caption": "a man in a black shirt and cream colored jacket speaks inside a factory", "video_id": "video11143", "sen_id": 242080}, {"caption": "a scientist discusses a project he has been working on in his lab", "video_id": "video11143", "sen_id": 242081}, {"caption": "a professor in a tan sport coat talks about the ethnic diversity of his research team", "video_id": "video11143", "sen_id": 242082}, {"caption": "a man standing next to equipment talking", "video_id": "video11143", "sen_id": 242083}, {"caption": "a man stands in front of a very large industrial machine", "video_id": "video11143", "sen_id": 242084}, {"caption": "a man is speaking in front of a machine describing the nationalities of his workers", "video_id": "video11143", "sen_id": 242085}, {"caption": "man in a black tshirt and grey jacket speaking in a lab", "video_id": "video11143", "sen_id": 242086}, {"caption": "a man in a tan sport coat and black glasses stands next to equipment wired with red and blue wires", "video_id": "video11143", "sen_id": 242087}, {"caption": "a man in a laboratory is talking his ethnicity", "video_id": "video11143", "sen_id": 242088}, {"caption": "men in gray coat and wore eye glass standing near the machine and speaking about something", "video_id": "video11143", "sen_id": 242089}, {"caption": "a middle aged man with large black glasses a black shirt and a tan blazer speaks in front of machinery", "video_id": "video11143", "sen_id": 242090}, {"caption": "man with glasses and black t-shirt talks about nationalities of who he works with", "video_id": "video11143", "sen_id": 242091}, {"caption": "a man in suit wearing glasses is standing and talking", "video_id": "video11143", "sen_id": 242092}, {"caption": "a man from the university of wollongong is talking about a machine", "video_id": "video11143", "sen_id": 242093}, {"caption": "male with beige jacket and black shirt black glasses talking about nationalities that work for him", "video_id": "video11143", "sen_id": 242094}, {"caption": "a man in a black shirt and grey jacket in a research lab speaking about the people of different countries who he has helping him", "video_id": "video11143", "sen_id": 242095}, {"caption": "a man with coat explained about something in an industry", "video_id": "video11143", "sen_id": 242096}, {"caption": "a man with a black shirt and a tan jacket talks about people", "video_id": "video11143", "sen_id": 242097}, {"caption": "a man is talking in a maunufaturing lab about his company", "video_id": "video11143", "sen_id": 242098}, {"caption": "guy in glass and coat talking to the camera", "video_id": "video11143", "sen_id": 242099}, {"caption": "a woman weighs her backpack that she has prepared for her hike and then puts it on", "video_id": "video11536", "sen_id": 242100}, {"caption": "a person uses an outdoor scale to measure the weight of her backpack", "video_id": "video11536", "sen_id": 242101}, {"caption": "a woman is weighing her backpack", "video_id": "video11536", "sen_id": 242102}, {"caption": "a young woman is weighing her backpack on a hanging scale", "video_id": "video11536", "sen_id": 242103}, {"caption": "a hiker weighs her back pack before taking off on a long hike", "video_id": "video11536", "sen_id": 242104}, {"caption": "a lady had just put on a backpack and is smiling with it", "video_id": "video11536", "sen_id": 242105}, {"caption": "a lady is weighting her backpack and then puts it on her back", "video_id": "video11536", "sen_id": 242106}, {"caption": "there is a women in one top standing on a hill and telling news", "video_id": "video11536", "sen_id": 242107}, {"caption": "a young woman weighs her backpack before taking off on a long hike", "video_id": "video11536", "sen_id": 242108}, {"caption": "a beautiful lady in black dress getting ready with her travel bag for a journey", "video_id": "video11536", "sen_id": 242109}, {"caption": "there is a women setting timer before she start the journey", "video_id": "video11536", "sen_id": 242110}, {"caption": "the female puts the big black back pack on her shoulders", "video_id": "video11536", "sen_id": 242111}, {"caption": "a woman is weighing a backpack and then she puts the backpack onto her back", "video_id": "video11536", "sen_id": 242112}, {"caption": "a woman in grey weighing the contents of her bag and narrating the video", "video_id": "video11536", "sen_id": 242113}, {"caption": "a woman is holding a backpack on a thing", "video_id": "video11536", "sen_id": 242114}, {"caption": "a person with a large backpack on her back", "video_id": "video11536", "sen_id": 242115}, {"caption": "a woman weighs her black backpack and then puts it on", "video_id": "video11536", "sen_id": 242116}, {"caption": "a backpack hangs on a wooden stand", "video_id": "video11536", "sen_id": 242117}, {"caption": "a lady is weighing her backpack for hiking", "video_id": "video11536", "sen_id": 242118}, {"caption": "a woman is talking and hiking on a trail", "video_id": "video11536", "sen_id": 242119}, {"caption": "a woman is sitting and lamenting about her life", "video_id": "video10562", "sen_id": 242120}, {"caption": "a woman is sing and writing a text message", "video_id": "video10562", "sen_id": 242121}, {"caption": "a woman sits and sings a slow song while typing on her cell phone", "video_id": "video10562", "sen_id": 242122}, {"caption": "a lady sings as she looks through her cell phone in her bedroom", "video_id": "video10562", "sen_id": 242123}, {"caption": "a woman with brown hair sets on a bed in a dark room and uses her cell phone", "video_id": "video10562", "sen_id": 242124}, {"caption": "adele is sitting alone in a dark room and singing a song", "video_id": "video10562", "sen_id": 242125}, {"caption": "a woman recording something in her mobile and sending to some other person", "video_id": "video10562", "sen_id": 242126}, {"caption": "a men in white tshirt is telling about mobile phones", "video_id": "video10562", "sen_id": 242127}, {"caption": "one women has mobile phone she see a number and singing", "video_id": "video10562", "sen_id": 242128}, {"caption": "one lady is recording one interesting song and sending to some one", "video_id": "video10562", "sen_id": 242129}, {"caption": "a fat woman is talking about something", "video_id": "video10562", "sen_id": 242130}, {"caption": "there is a fatty lay singing at the night", "video_id": "video10562", "sen_id": 242131}, {"caption": "singer looks at the mobile and sings a song winds blowing in your face", "video_id": "video10562", "sen_id": 242132}, {"caption": "a woman presses some buttons on her cellphone", "video_id": "video10562", "sen_id": 242133}, {"caption": "girl singing the song and mobile in hand", "video_id": "video10562", "sen_id": 242134}, {"caption": "a girl in her home and singing a song", "video_id": "video10562", "sen_id": 242135}, {"caption": "there is a women singing after using mobile phone", "video_id": "video10562", "sen_id": 242136}, {"caption": "the singer adele sings a sad song as she makes a phone call in a bedroom", "video_id": "video10562", "sen_id": 242137}, {"caption": "a lady songs a song and operates the phone she has brown hair waiting symbol displayed in her phone", "video_id": "video10562", "sen_id": 242138}, {"caption": "pretty girl text on phone as she talks to the guy on bed", "video_id": "video10562", "sen_id": 242139}, {"caption": "spectators watch two men compete at badmitton in an indoor court", "video_id": "video12715", "sen_id": 242140}, {"caption": "two men are playing badminten on an indoor court and a man wearing black fails to get the birdie over the net", "video_id": "video12715", "sen_id": 242141}, {"caption": "there are two players with one red dressing and another blue dressing is playing tennis in green groundafterthat red one going out", "video_id": "video12715", "sen_id": 242142}, {"caption": "two competing men are playing a tennis match", "video_id": "video12715", "sen_id": 242143}, {"caption": "two men are playing professional badmitten in front of an audience", "video_id": "video12715", "sen_id": 242144}, {"caption": "young people play tennis at an indoor court", "video_id": "video12715", "sen_id": 242145}, {"caption": "there is a man playing badminton with skills", "video_id": "video12715", "sen_id": 242146}, {"caption": "a tennis match with people in an arena", "video_id": "video12715", "sen_id": 242147}, {"caption": "two people playing tennis one in red one in blue", "video_id": "video12715", "sen_id": 242148}, {"caption": "two badminton players face off alone on an indoor court in a sponsored competition", "video_id": "video12715", "sen_id": 242149}, {"caption": "a tennis match between chen and suguarto are playing with chen winning", "video_id": "video12715", "sen_id": 242150}, {"caption": "there is a red color jersey man playing badminton", "video_id": "video12715", "sen_id": 242151}, {"caption": "a shuttle game between two players one with black and other with red dress", "video_id": "video12715", "sen_id": 242152}, {"caption": "two men are playing against each other while a crowd is cheering", "video_id": "video12715", "sen_id": 242153}, {"caption": "a red and black color dress players playing game batmanton inside a stadium audience watching displaying on screen", "video_id": "video12715", "sen_id": 242154}, {"caption": " one in blue and one in red battle each other in a game of tennis", "video_id": "video12715", "sen_id": 242155}, {"caption": " dark men are playing professional tennis on a tennis court lined with commercial banners and surrounded by spectators", "video_id": "video12715", "sen_id": 242156}, {"caption": "it is a person playing a game on an inside field", "video_id": "video12715", "sen_id": 242157}, {"caption": "people play an intense tennis match on a green court", "video_id": "video12715", "sen_id": 242158}, {"caption": "two people from other countries are playing tennis competitively", "video_id": "video12715", "sen_id": 242159}, {"caption": "a clip of fashion red carpet scene with 2 women and a man", "video_id": "video10262", "sen_id": 242160}, {"caption": "a man is interviewed by two women about his varying wardrobe", "video_id": "video10262", "sen_id": 242161}, {"caption": "a man wearing fashionable clothes is being interviewed about what he is wearing", "video_id": "video10262", "sen_id": 242162}, {"caption": "a man is describing his outfit to two women and where he purchased the different articles", "video_id": "video10262", "sen_id": 242163}, {"caption": "interview of some fashionista advertising h&m and other brands", "video_id": "video10262", "sen_id": 242164}, {"caption": "there is a green suit man talking with some women", "video_id": "video10262", "sen_id": 242165}, {"caption": "a man wearing glasses is answering questions to two female interviewers", "video_id": "video10262", "sen_id": 242166}, {"caption": "a man is being interviewed about his outfit", "video_id": "video10262", "sen_id": 242167}, {"caption": " reporter is taking an interview of two ladies", "video_id": "video10262", "sen_id": 242168}, {"caption": "person in green coat is having an interview for the television", "video_id": "video10262", "sen_id": 242169}, {"caption": "a man tells the ladies where the clothes he is wearing comes from", "video_id": "video10262", "sen_id": 242170}, {"caption": "a young man being interviewed and discussing his clothing from h&m and bangkok", "video_id": "video10262", "sen_id": 242171}, {"caption": "a man tells a fashion reporter about the clothes and shoes he is wearing", "video_id": "video10262", "sen_id": 242172}, {"caption": "a fashion concious man is talking about his outfit", "video_id": "video10262", "sen_id": 242173}, {"caption": "couple of sexy brunettes talking about their fashionable outfits", "video_id": "video10262", "sen_id": 242174}, {"caption": "a man explains the commercial origins of his outfit", "video_id": "video10262", "sen_id": 242175}, {"caption": "a celebrity explaining about his dress to media", "video_id": "video10262", "sen_id": 242176}, {"caption": "three women stading on a big arena talking in an interview", "video_id": "video10262", "sen_id": 242177}, {"caption": "a man is talking to an interviewer about his outfit", "video_id": "video10262", "sen_id": 242178}, {"caption": "someone interviews a man about his fashion choices on the red carpet", "video_id": "video10262", "sen_id": 242179}, {"caption": "an asian woman is describing how to make an asian dish while demonstrating how to fry it", "video_id": "video11750", "sen_id": 242180}, {"caption": "a women in a kitchen prepared some snacks in the pan", "video_id": "video11750", "sen_id": 242181}, {"caption": "woman discussing how to form a round ground meat patty and how to cook it in a pan with oil", "video_id": "video11750", "sen_id": 242182}, {"caption": "the lady telling how to make the white forest cake in simply method", "video_id": "video11750", "sen_id": 242183}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video11750", "sen_id": 242184}, {"caption": "chinese lady preparing burger and putting it in the frying pan", "video_id": "video11750", "sen_id": 242185}, {"caption": "a woman is preparing a food item", "video_id": "video11750", "sen_id": 242186}, {"caption": "the person talks about making it into a round shape and then put it into the cooking oil", "video_id": "video11750", "sen_id": 242187}, {"caption": "a woman preparing to cook a round shape piece of beef", "video_id": "video11750", "sen_id": 242188}, {"caption": "a person unwraps meat from a package and places in a pan", "video_id": "video11750", "sen_id": 242189}, {"caption": "woman presenting the new brown chocholate cake she bought", "video_id": "video11750", "sen_id": 242190}, {"caption": "there is a woman making a tasty dish", "video_id": "video11750", "sen_id": 242191}, {"caption": "a lady putting a biscut ion the flat and put it on the oil container", "video_id": "video11750", "sen_id": 242192}, {"caption": "a woman cooking a hamburger inside of a large black metal pan", "video_id": "video11750", "sen_id": 242193}, {"caption": "a woman puts a patty of meat onto a hot pan", "video_id": "video11750", "sen_id": 242194}, {"caption": "a woman shows how to shape minced meat by using a plastic bag and then puts it in a frying pan with already heated oil in it", "video_id": "video11750", "sen_id": 242195}, {"caption": "a lady putting meals on the container", "video_id": "video11750", "sen_id": 242196}, {"caption": "a meat patty is shown as a woman instructs on forming it", "video_id": "video11750", "sen_id": 242197}, {"caption": "some brown beef sitting on a clear bag a lady taking the beef and putting it in a pot", "video_id": "video11750", "sen_id": 242198}, {"caption": "a person is showing a meat patty on a bag", "video_id": "video11750", "sen_id": 242199}, {"caption": "a man gives a verbal presentation at a web summit", "video_id": "video11014", "sen_id": 242200}, {"caption": "a man in a green stripe shirt at a web summit", "video_id": "video11014", "sen_id": 242201}, {"caption": "a man in a green shirt is talking to someone off camera", "video_id": "video11014", "sen_id": 242202}, {"caption": "a man gives a lecture in a web summit that he is attending", "video_id": "video11014", "sen_id": 242203}, {"caption": "a man in a green stripped shirt talks into a microphone", "video_id": "video11014", "sen_id": 242204}, {"caption": "a man give a presentation at a web summit related to his work", "video_id": "video11014", "sen_id": 242205}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video11014", "sen_id": 242206}, {"caption": "a man having sigaret on her mouth and talking", "video_id": "video11014", "sen_id": 242207}, {"caption": "a man in green speaks to an audience while wearing a microphone", "video_id": "video11014", "sen_id": 242208}, {"caption": "a man in a green striped shirt giving a speech about a new company", "video_id": "video11014", "sen_id": 242209}, {"caption": "two mens are discussing with each other by actions", "video_id": "video11014", "sen_id": 242210}, {"caption": "a man talking with ahead mike", "video_id": "video11014", "sen_id": 242211}, {"caption": "a man wearing green dress talking about something on stage", "video_id": "video11014", "sen_id": 242212}, {"caption": "a man is giving speech on web summit", "video_id": "video11014", "sen_id": 242213}, {"caption": "guy in stripe tshirt talking to the audience with mic piece on his cheek", "video_id": "video11014", "sen_id": 242214}, {"caption": "a man wearing a striped blue tshirt and with microphone talking", "video_id": "video11014", "sen_id": 242215}, {"caption": "a man wearing a head piece is speaking to an audience", "video_id": "video11014", "sen_id": 242216}, {"caption": "a man gives a lecture about the web solutions his company has developed", "video_id": "video11014", "sen_id": 242217}, {"caption": "a guy with a mic talks on stage at the web summit", "video_id": "video11014", "sen_id": 242218}, {"caption": "a person with a green shirt is talking", "video_id": "video11014", "sen_id": 242219}, {"caption": "a black and tan chihuahua is licking the ear of an uninterested orange cat", "video_id": "video11840", "sen_id": 242220}, {"caption": "a chiwawa is licking a cats ear while the cat is laying down", "video_id": "video11840", "sen_id": 242221}, {"caption": "a black dog licking an orange cat's ear", "video_id": "video11840", "sen_id": 242222}, {"caption": "a small animal resting on the rug playing with another animal", "video_id": "video11840", "sen_id": 242223}, {"caption": "a sleeping cat is having its head and ear licked by a very friendly chihuahua puppy", "video_id": "video11840", "sen_id": 242224}, {"caption": "a black and tan chihuahua is licking the ear of an uninterested orange cat", "video_id": "video11840", "sen_id": 242225}, {"caption": "a black dog grooms a orange haired cat in the sunlight", "video_id": "video11840", "sen_id": 242226}, {"caption": "there is a dog sucking a cat in a kitchen", "video_id": "video11840", "sen_id": 242227}, {"caption": "upbeat music plays in the background as a chihuahua-like dog cleans the ear of the gold-colored cat laying on the tiled floor", "video_id": "video11840", "sen_id": 242228}, {"caption": "a small black and brown dog is licking the ear of an orange cat", "video_id": "video11840", "sen_id": 242229}, {"caption": "shots of different types of cats with music in the background", "video_id": "video11840", "sen_id": 242230}, {"caption": "a black puppy is licking the ears of a brown cat which is lying on a carpet", "video_id": "video11840", "sen_id": 242231}, {"caption": "there is a dog sucking a cat on the floor", "video_id": "video11840", "sen_id": 242232}, {"caption": "a black dog licks the brown cat s ear on the road", "video_id": "video11840", "sen_id": 242233}, {"caption": "a dog licking on the fore head of a cat and playing", "video_id": "video11840", "sen_id": 242234}, {"caption": "a dog licks a kitties ears and cleans them", "video_id": "video11840", "sen_id": 242235}, {"caption": "a black dog is cleaning a fat orange cats ears laying in the sun on a rug", "video_id": "video11840", "sen_id": 242236}, {"caption": "a small dog licks the ears of a cat while it lays outside in the sun", "video_id": "video11840", "sen_id": 242237}, {"caption": "a cute black puppy licks the ears of a sleeping cat", "video_id": "video11840", "sen_id": 242238}, {"caption": "black color cat another light brown kissing each other displaying on screen", "video_id": "video11840", "sen_id": 242239}, {"caption": "a commercial for a disney drawing so for all ages", "video_id": "video10297", "sen_id": 242240}, {"caption": "a tutorial on what a mickey mouse app has in store", "video_id": "video10297", "sen_id": 242241}, {"caption": "learn to draw classic disney animated characters like mickey mouse and goofy", "video_id": "video10297", "sen_id": 242242}, {"caption": "a man talking about disney characters such as mickey mouse", "video_id": "video10297", "sen_id": 242243}, {"caption": "a man speaks about disney characters on a phone as the characters are created", "video_id": "video10297", "sen_id": 242244}, {"caption": "a app for artistic use to draw and enhance pictures in a smart phone has a disney character theme", "video_id": "video10297", "sen_id": 242245}, {"caption": "display of different cartoon characters and their act in various poses", "video_id": "video10297", "sen_id": 242246}, {"caption": "video showing various disney characters and how to draw them", "video_id": "video10297", "sen_id": 242247}, {"caption": "an app that allows you to create videos using disney characters", "video_id": "video10297", "sen_id": 242248}, {"caption": "many cartoon characters are playing on a mobile screen", "video_id": "video10297", "sen_id": 242249}, {"caption": "tutorial given to create animated characters in a tablet", "video_id": "video10297", "sen_id": 242250}, {"caption": "instrument for kids in which micky mouse drawing is coloured", "video_id": "video10297", "sen_id": 242251}, {"caption": "a person explaining about a mickey mouse cartoon", "video_id": "video10297", "sen_id": 242252}, {"caption": "a cartoon show video game displaying on the screen", "video_id": "video10297", "sen_id": 242253}, {"caption": "the disney characters minnie mouse and mickey mouse dance on the screen of the phone", "video_id": "video10297", "sen_id": 242254}, {"caption": "its a cartoon small jerrys are playing activity", "video_id": "video10297", "sen_id": 242255}, {"caption": "in a mobile disney mickey with some animation", "video_id": "video10297", "sen_id": 242256}, {"caption": "in a phone mickey mouse drawing was going on", "video_id": "video10297", "sen_id": 242257}, {"caption": "in a mobile advertisement is going on about the micky mouse donal duck to frame magic", "video_id": "video10297", "sen_id": 242258}, {"caption": "a picture of goofy is on a person s cell phone", "video_id": "video10297", "sen_id": 242259}, {"caption": "music playing while information for downloading a version of rockstar games social club application comes across the screen", "video_id": "video10395", "sen_id": 242260}, {"caption": "a computer screen with directions on how to join a club", "video_id": "video10395", "sen_id": 242261}, {"caption": "a person is showing how to download games on a computer", "video_id": "video10395", "sen_id": 242262}, {"caption": "a computer screen displays prompts to download rockstar games social club", "video_id": "video10395", "sen_id": 242263}, {"caption": "a screen prompts a user to download rockstar games", "video_id": "video10395", "sen_id": 242264}, {"caption": "music is being played in the background while an image of a computer screen is being shown", "video_id": "video10395", "sen_id": 242265}, {"caption": "black computer screen covered in blue and green instruction boxes", "video_id": "video10395", "sen_id": 242266}, {"caption": "video instructions on how to install rockstar games", "video_id": "video10395", "sen_id": 242267}, {"caption": "an exploration about the link to the rock star games", "video_id": "video10395", "sen_id": 242268}, {"caption": "a violin is playing while an add for a social club is showing", "video_id": "video10395", "sen_id": 242269}, {"caption": "a link for a downloadable version of rockstar games social club", "video_id": "video10395", "sen_id": 242270}, {"caption": "there is a information about a downloading site", "video_id": "video10395", "sen_id": 242271}, {"caption": "someone operating system and marking some letters on the screen", "video_id": "video10395", "sen_id": 242272}, {"caption": "its presentation about how to download rock star games social club full", "video_id": "video10395", "sen_id": 242273}, {"caption": "a person is showing software in the computer", "video_id": "video10395", "sen_id": 242274}, {"caption": "a computer screen image has a black top and white bottom with words on it", "video_id": "video10395", "sen_id": 242275}, {"caption": "there is a picture of how to download the social club application made by rockstar games", "video_id": "video10395", "sen_id": 242276}, {"caption": "some files or apps are downloading on a computer screen", "video_id": "video10395", "sen_id": 242277}, {"caption": "music is played while a link to download a game is displayed", "video_id": "video10395", "sen_id": 242278}, {"caption": "some text is being shown on a video", "video_id": "video10395", "sen_id": 242279}, {"caption": "an female athlete with long black hair pulled back stands quietly near a padded wall outdoors by a man wearing a red jacket with his hands on his hips", "video_id": "video11900", "sen_id": 242280}, {"caption": "a female athlete prepares herself for her competition", "video_id": "video11900", "sen_id": 242281}, {"caption": "an female athlete in fit and great shape who won last ncaa title is getting ready awaiting to compete", "video_id": "video11900", "sen_id": 242282}, {"caption": "female athlete is preparing for a run aired on tv", "video_id": "video11900", "sen_id": 242283}, {"caption": "a female athlete standing while announcers talk about her", "video_id": "video11900", "sen_id": 242284}, {"caption": "there is a woman getting ready to a run", "video_id": "video11900", "sen_id": 242285}, {"caption": "a man is talking about kamaria brown and how she is in shape", "video_id": "video11900", "sen_id": 242286}, {"caption": "a guy explaining about a sports girl on the play ground", "video_id": "video11900", "sen_id": 242287}, {"caption": "a girl standing there getting talked about on tv", "video_id": "video11900", "sen_id": 242288}, {"caption": "a man announces a female athlete just the start of competition", "video_id": "video11900", "sen_id": 242289}, {"caption": "the players are getting ready to take part", "video_id": "video11900", "sen_id": 242290}, {"caption": "a women with curly hair standing in a line to compete in the running race", "video_id": "video11900", "sen_id": 242291}, {"caption": "a woman looks down and waits a man passes behind her", "video_id": "video11900", "sen_id": 242292}, {"caption": "a woman is preparing to compete in a competition", "video_id": "video11900", "sen_id": 242293}, {"caption": "a black woman is standing around outside", "video_id": "video11900", "sen_id": 242294}, {"caption": "a man in red coat standing behind a lady", "video_id": "video11900", "sen_id": 242295}, {"caption": "athlete players are warmup for the running race and runs fast", "video_id": "video11900", "sen_id": 242296}, {"caption": "a female track athlete being described by a commentator", "video_id": "video11900", "sen_id": 242297}, {"caption": "a person with white shirt is standing in a ground", "video_id": "video11900", "sen_id": 242298}, {"caption": "a woman is standing around on a court", "video_id": "video11900", "sen_id": 242299}, {"caption": "a documentary or new story on a sprinter", "video_id": "video12952", "sen_id": 242300}, {"caption": "two men discuss the abilities of a track star", "video_id": "video12952", "sen_id": 242301}, {"caption": "a man in a black shirt talking infront of a camera", "video_id": "video12952", "sen_id": 242302}, {"caption": "a man with bald head is talking to a person who is young and bearded", "video_id": "video12952", "sen_id": 242303}, {"caption": "the old man and young man are talking about something", "video_id": "video12952", "sen_id": 242304}, {"caption": "documentary and interviews about a young track sprinter", "video_id": "video12952", "sen_id": 242305}, {"caption": "two different men are talking to an interviewer", "video_id": "video12952", "sen_id": 242306}, {"caption": "a man in a track jacket discusses micah murray a sprinter", "video_id": "video12952", "sen_id": 242307}, {"caption": "the two men are conversing while seated comfortably", "video_id": "video12952", "sen_id": 242308}, {"caption": "one coach taking about micah murray talks in a show", "video_id": "video12952", "sen_id": 242309}, {"caption": "man with dark blue dress coolred then another person talks about it", "video_id": "video12952", "sen_id": 242310}, {"caption": "a man talking about a person named bryson who runs track", "video_id": "video12952", "sen_id": 242311}, {"caption": "two men are talking about an athlete named bryson", "video_id": "video12952", "sen_id": 242312}, {"caption": "a man wearing black color dress is talking", "video_id": "video12952", "sen_id": 242313}, {"caption": "a bald head man and another man are speaking", "video_id": "video12952", "sen_id": 242314}, {"caption": "a bard man is asking some thing to a young boy and he is replying", "video_id": "video12952", "sen_id": 242315}, {"caption": "a man in a jacket is talking about something", "video_id": "video12952", "sen_id": 242316}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12952", "sen_id": 242317}, {"caption": " brycen spratling s running ability and competitiveness is discussed", "video_id": "video12952", "sen_id": 242318}, {"caption": "a bald man and another man are talking", "video_id": "video12952", "sen_id": 242319}, {"caption": "a woman showing how she makes a dish", "video_id": "video12801", "sen_id": 242320}, {"caption": "a woman adds some julienned cucumbers to the top of a dish", "video_id": "video12801", "sen_id": 242321}, {"caption": "a hand takes thinly-sliced cucumbers from a small saucer and places them over sauted meat and brown gravy in a silver skillet", "video_id": "video12801", "sen_id": 242322}, {"caption": "a woman adds matchstick cucumbers to the dish she is cooking", "video_id": "video12801", "sen_id": 242323}, {"caption": "girl is making some rice and meat adding cucumber sticks onto the top", "video_id": "video12801", "sen_id": 242324}, {"caption": "a woman putting on pieces of a vegetable on a meat dish", "video_id": "video12801", "sen_id": 242325}, {"caption": "a person putting cucumber on top of some food", "video_id": "video12801", "sen_id": 242326}, {"caption": "a woman is putting sliced cucumber strips on top of the disk to add extra crispy and nice sensation", "video_id": "video12801", "sen_id": 242327}, {"caption": "a person putting vegetables on top of a dish of food", "video_id": "video12801", "sen_id": 242328}, {"caption": "a person is putting some vegetables right on top of the dish", "video_id": "video12801", "sen_id": 242329}, {"caption": "a chef garnishes a plate of food that she just completed cooking", "video_id": "video12801", "sen_id": 242330}, {"caption": "a woman places raw julienned cucumbers over a dish", "video_id": "video12801", "sen_id": 242331}, {"caption": "a food dish is being prepared while a woman's hand is placing julienne sliced cucumbers on top of the dish her voice is heard giving instructions", "video_id": "video12801", "sen_id": 242332}, {"caption": "a woman adds cucumbers to her recipe on her silver plate", "video_id": "video12801", "sen_id": 242333}, {"caption": "a metal dish is covered in steaming meal being topped by a green vegtable", "video_id": "video12801", "sen_id": 242334}, {"caption": "a woman adds small slices of cucumber to her dish", "video_id": "video12801", "sen_id": 242335}, {"caption": "a lady explains to prepare a dish in her home", "video_id": "video12801", "sen_id": 242336}, {"caption": "a women garnishing a meal with sliced cucumbers", "video_id": "video12801", "sen_id": 242337}, {"caption": "person is decorating the meal which looks perfect", "video_id": "video12801", "sen_id": 242338}, {"caption": "a woman places slices of cucumbers on top of a fresh noodle dish", "video_id": "video12801", "sen_id": 242339}, {"caption": "a clip of a guy getting out of a car with cameras flashing", "video_id": "video12045", "sen_id": 242340}, {"caption": "two men are sitting in a car one gets out and people are photographing them", "video_id": "video12045", "sen_id": 242341}, {"caption": "two men that have won a race get out of a race car", "video_id": "video12045", "sen_id": 242342}, {"caption": "a man is getting out of a race car while people are watching", "video_id": "video12045", "sen_id": 242343}, {"caption": "a snow land and two persons sitting inside car and many person beside standing taking camera displaying on screen", "video_id": "video12045", "sen_id": 242344}, {"caption": "there is a man coming out of a car", "video_id": "video12045", "sen_id": 242345}, {"caption": "a man gets out of a parked car tat is surrounded by people", "video_id": "video12045", "sen_id": 242346}, {"caption": "a short sequence of a snow terrain rally with the contestants stopping for a while", "video_id": "video12045", "sen_id": 242347}, {"caption": "a rally car and it s drivers in the car are being photographed", "video_id": "video12045", "sen_id": 242348}, {"caption": "two men in a rally race car revving the engine with various people around them", "video_id": "video12045", "sen_id": 242349}, {"caption": "there is a man getting out of the car", "video_id": "video12045", "sen_id": 242350}, {"caption": "two people are getting in or out of their race car while onlookers take pictures of them", "video_id": "video12045", "sen_id": 242351}, {"caption": "a sports car racer in a white suit is sitting in a car", "video_id": "video12045", "sen_id": 242352}, {"caption": "a man being photographed while in a white race car", "video_id": "video12045", "sen_id": 242353}, {"caption": "men sit in a race car while people around take pictures", "video_id": "video12045", "sen_id": 242354}, {"caption": "there is a man getting out of the for checking", "video_id": "video12045", "sen_id": 242355}, {"caption": "the people ride in the white sports car really fast in the snow", "video_id": "video12045", "sen_id": 242356}, {"caption": "a man is sitting in a car and a group of people are around it with cameras", "video_id": "video12045", "sen_id": 242357}, {"caption": "man is driving his white car very fast on the street", "video_id": "video12045", "sen_id": 242358}, {"caption": "a rally car driver getting ready to exit his car after his race", "video_id": "video12045", "sen_id": 242359}, {"caption": "a man in a pinkish colored shirt is sitting on a mountain side", "video_id": "video11280", "sen_id": 242360}, {"caption": "an indian man looks out over the foggy mountain top he is setting on", "video_id": "video11280", "sen_id": 242361}, {"caption": "a man with black hair sits on a green grassy hill staring into oblivia", "video_id": "video11280", "sen_id": 242362}, {"caption": "a man sits on the grass alone meditating and writing something in a notebook", "video_id": "video11280", "sen_id": 242363}, {"caption": "a man is sitting on a hill looking into a foggy distance", "video_id": "video11280", "sen_id": 242364}, {"caption": "a man in red is sitting on top of hill and closing his eyes", "video_id": "video11280", "sen_id": 242365}, {"caption": "a man sits alone on a rock and looks into the mist filled hills", "video_id": "video11280", "sen_id": 242366}, {"caption": "a man in a collared shirt sitting in a field of yellow grass", "video_id": "video11280", "sen_id": 242367}, {"caption": "this is short film video very good nature place", "video_id": "video11280", "sen_id": 242368}, {"caption": "a red color dress wearing boy in video clip sitting inside forest grass land displaying on screen", "video_id": "video11280", "sen_id": 242369}, {"caption": "a man in red is sitting among the fog in highlands", "video_id": "video11280", "sen_id": 242370}, {"caption": "a person sitting on a rock wearing a red shirt and black pants", "video_id": "video11280", "sen_id": 242371}, {"caption": "the man with red shirt is sitting on a rock", "video_id": "video11280", "sen_id": 242372}, {"caption": "guy sitting on a rock and doing meditation", "video_id": "video11280", "sen_id": 242373}, {"caption": "the young man in red dress is looking at the green grassland and the stones there", "video_id": "video11280", "sen_id": 242374}, {"caption": "a person sitting on a beautiful climate on hills", "video_id": "video11280", "sen_id": 242375}, {"caption": "in a forest a man sitting alone", "video_id": "video11280", "sen_id": 242376}, {"caption": "a man with dark hair and moustache sits on the top of a grassy slope in a red jacket and looks at the misty sky", "video_id": "video11280", "sen_id": 242377}, {"caption": "a camera pans over a foggy meadow as a man sits in contemplation", "video_id": "video11280", "sen_id": 242378}, {"caption": "fog lies heavy over the mountain and a man s eyes grow heavy", "video_id": "video11280", "sen_id": 242379}, {"caption": "a woman's hands are shown putting a black triangular shape together on paper then putting batteries in a black and pink cylinder", "video_id": "video11387", "sen_id": 242380}, {"caption": "a person screwing screws into a metal form and adding a battery", "video_id": "video11387", "sen_id": 242381}, {"caption": "a person is demonstrating how to assemble something", "video_id": "video11387", "sen_id": 242382}, {"caption": "a woman makes a craft while music plays in the background", "video_id": "video11387", "sen_id": 242383}, {"caption": "someone creating some structure out of rulers on a white paper", "video_id": "video11387", "sen_id": 242384}, {"caption": "a men is doing some craft items with his hands and keep on table", "video_id": "video11387", "sen_id": 242385}, {"caption": "one boy doing some in the measuring scale wire positive electron", "video_id": "video11387", "sen_id": 242386}, {"caption": "a person is doing some thing with some product", "video_id": "video11387", "sen_id": 242387}, {"caption": "a person is showing how to make the adjustment in the performance", "video_id": "video11387", "sen_id": 242388}, {"caption": "a man inserts a battery into a device and passes current through the rectangle shaped device", "video_id": "video11387", "sen_id": 242389}, {"caption": "this is a positive electrode termina of the battery", "video_id": "video11387", "sen_id": 242390}, {"caption": "guy assembling an equipment and showing battery", "video_id": "video11387", "sen_id": 242391}, {"caption": "there is a man fixing a light on the table", "video_id": "video11387", "sen_id": 242392}, {"caption": "a person preparing for an experiment demo", "video_id": "video11387", "sen_id": 242393}, {"caption": "a person is showing an object they bought", "video_id": "video11387", "sen_id": 242394}, {"caption": "a man is talking on tv in a news channel", "video_id": "video11387", "sen_id": 242395}, {"caption": "a person setting and adjusting a triangular device on a white surface loading a battery into a tube", "video_id": "video11387", "sen_id": 242396}, {"caption": "a person builds a triangular shaped device using screws", "video_id": "video11387", "sen_id": 242397}, {"caption": "a person s hand is fixing the base of a stand on which a battery operated device is going to fix", "video_id": "video11387", "sen_id": 242398}, {"caption": "someone is building a device on the floor", "video_id": "video11387", "sen_id": 242399}, {"caption": "man giving a talk about business logistics with a screen in the background", "video_id": "video11009", "sen_id": 242400}, {"caption": "a man is making a ted talk in front of an audience", "video_id": "video11009", "sen_id": 242401}, {"caption": "a guy is saying about his life experience in ted talk", "video_id": "video11009", "sen_id": 242402}, {"caption": "a man talking about offering services whenever and wherever it is needed", "video_id": "video11009", "sen_id": 242403}, {"caption": "a man in black dress standing on stage infront of screen speaking on topic displaying on screen", "video_id": "video11009", "sen_id": 242404}, {"caption": "a guy standing on a red circle on a stage talking", "video_id": "video11009", "sen_id": 242405}, {"caption": "a man is giving a speech to a crowd in an auditorium", "video_id": "video11009", "sen_id": 242406}, {"caption": "a man standing and talking with a big screen behind him", "video_id": "video11009", "sen_id": 242407}, {"caption": "a man is standing on a stage talking with a screen behind him", "video_id": "video11009", "sen_id": 242408}, {"caption": "the man on stage spoke about logistics and needs", "video_id": "video11009", "sen_id": 242409}, {"caption": "a man stands in red circle and talking about ted", "video_id": "video11009", "sen_id": 242410}, {"caption": "a man on the stage screen explains about the screen display", "video_id": "video11009", "sen_id": 242411}, {"caption": "a man in casual is talking about something on the stage", "video_id": "video11009", "sen_id": 242412}, {"caption": "the man in a red circle and giving instructions", "video_id": "video11009", "sen_id": 242413}, {"caption": "a man on a stage has red light on him", "video_id": "video11009", "sen_id": 242414}, {"caption": "a person stands on a stage on spot light and explains a presentation", "video_id": "video11009", "sen_id": 242415}, {"caption": "a man stands on a red dot on a stage auditorium", "video_id": "video11009", "sen_id": 242416}, {"caption": "a aman in red dress standing on stage explaning about topic displaying on screen", "video_id": "video11009", "sen_id": 242417}, {"caption": "a person is addressed to the gatheriing in the conference hall by explaining them by seeing the datas in the computer", "video_id": "video11009", "sen_id": 242418}, {"caption": "a person is giving a speech at a ted talk", "video_id": "video11009", "sen_id": 242419}, {"caption": "a tennis player standing by his partner on the tennis court explains how to do the finishing phase of the point", "video_id": "video12820", "sen_id": 242420}, {"caption": "two men in matching outfits are standing on a tennis court talking about tennis tactics for game play", "video_id": "video12820", "sen_id": 242421}, {"caption": "two tennis players explain how to finish the match in a tennis game", "video_id": "video12820", "sen_id": 242422}, {"caption": "the two tennis players with white t-shirt are talking on the tennis ground", "video_id": "video12820", "sen_id": 242423}, {"caption": "two men are giving instructions on playing tennis", "video_id": "video12820", "sen_id": 242424}, {"caption": "tennis players in white tshirt talking about tricks and skills in a match", "video_id": "video12820", "sen_id": 242425}, {"caption": "two men on a tennis court explain how to finish a point", "video_id": "video12820", "sen_id": 242426}, {"caption": "two men give tips on how to play tennis", "video_id": "video12820", "sen_id": 242427}, {"caption": "tennis player talks about how they try to win game they hold bats in hand", "video_id": "video12820", "sen_id": 242428}, {"caption": "two male tennis players speaking about something in a tennis ground", "video_id": "video12820", "sen_id": 242429}, {"caption": "two men are speaking about tennis in an instructional video", "video_id": "video12820", "sen_id": 242430}, {"caption": "two men hold tennis rackets while they explain tennis techniques", "video_id": "video12820", "sen_id": 242431}, {"caption": "two men wearing the same outfit stand holding tennis rackets on a tennis court", "video_id": "video12820", "sen_id": 242432}, {"caption": "tennis players give advice on how other inexperienced players can step their game up", "video_id": "video12820", "sen_id": 242433}, {"caption": "some people are playing tennis outside on a court", "video_id": "video12820", "sen_id": 242434}, {"caption": "a tennis instructor is outside on a court in blue shorts and white t shirt sharing techniques", "video_id": "video12820", "sen_id": 242435}, {"caption": "two male tennis players wearing white and blue are speaking to the camera", "video_id": "video12820", "sen_id": 242436}, {"caption": "two men teach tennis tactics while dressed to play and on a clay court", "video_id": "video12820", "sen_id": 242437}, {"caption": "two men in blue stand outside and talk about tennis", "video_id": "video12820", "sen_id": 242438}, {"caption": "two men discuss and teach finishing moves in tennis", "video_id": "video12820", "sen_id": 242439}, {"caption": "a screen from movieclipscom encourages viewers to watch a trailer from the movie seven starring morgan freeman and brad pitt", "video_id": "video12458", "sen_id": 242440}, {"caption": "a streaming movie site giving opening information for the movie seven", "video_id": "video12458", "sen_id": 242441}, {"caption": "home screen view of a streaming movie device with multiple options", "video_id": "video12458", "sen_id": 242442}, {"caption": "several small clips of different movies play during the end of another clip", "video_id": "video12458", "sen_id": 242443}, {"caption": "a video showing how to watch trailers of movies", "video_id": "video12458", "sen_id": 242444}, {"caption": "features are being shown for a website called movieclipscom", "video_id": "video12458", "sen_id": 242445}, {"caption": "some one showing the video of movie clips", "video_id": "video12458", "sen_id": 242446}, {"caption": "different screens show clips from various movies", "video_id": "video12458", "sen_id": 242447}, {"caption": "its movie clip where many clips are shown if needed we can download", "video_id": "video12458", "sen_id": 242448}, {"caption": "a person is on a website watching movie clips", "video_id": "video12458", "sen_id": 242449}, {"caption": "there is a man clapping in front of some people", "video_id": "video12458", "sen_id": 242450}, {"caption": "few movie clips are shown and the actor director of the movie is given", "video_id": "video12458", "sen_id": 242451}, {"caption": "short clips of actor brad pitt and morgan freeman is shown", "video_id": "video12458", "sen_id": 242452}, {"caption": "hottest movies with actors morgan freemanbrad pitt and david fincher", "video_id": "video12458", "sen_id": 242453}, {"caption": "a movie clips displaying bit by bit with trailer scenes", "video_id": "video12458", "sen_id": 242454}, {"caption": "several trailers play at once before showing a list of actors and their director", "video_id": "video12458", "sen_id": 242455}, {"caption": "some movie clips running in the screen the actor director names are shown", "video_id": "video12458", "sen_id": 242456}, {"caption": "on a computer screen multiple movie trailers are shown for the viewer to choose from the another choice is offered by actor or director", "video_id": "video12458", "sen_id": 242457}, {"caption": "person is talking about the movie clips on the website", "video_id": "video12458", "sen_id": 242458}, {"caption": "a list of movies is being shown to people", "video_id": "video12458", "sen_id": 242459}, {"caption": "a woman takes a red robe off the door and then walks into her bedroom and starts to brush her hair", "video_id": "video12380", "sen_id": 242460}, {"caption": "a lady that has blonde hair wearing a red robe and is twirling her hair", "video_id": "video12380", "sen_id": 242461}, {"caption": "a young woman in a red robe combs her wet hair", "video_id": "video12380", "sen_id": 242462}, {"caption": "a young lady shows what she does with her hair", "video_id": "video12380", "sen_id": 242463}, {"caption": "a woman in a red robe brushing and twisting her hair", "video_id": "video12380", "sen_id": 242464}, {"caption": "white lady walking through a house with white walks brushing hair blonde hair", "video_id": "video12380", "sen_id": 242465}, {"caption": "here the girl is describing about her hair that she takes care and wearing her dress", "video_id": "video12380", "sen_id": 242466}, {"caption": "a woman in her apartment wearing a pink robe brushing and styling her hair", "video_id": "video12380", "sen_id": 242467}, {"caption": "a young girl is showing how to achieve heatless waves in her hair", "video_id": "video12380", "sen_id": 242468}, {"caption": "a young girl in a red bathrobe does her hair cutely", "video_id": "video12380", "sen_id": 242469}, {"caption": "a woman in red dressing combing her hair", "video_id": "video12380", "sen_id": 242470}, {"caption": "a woman in a red robe combs her hair after a shower", "video_id": "video12380", "sen_id": 242471}, {"caption": "a blonde woman is stranding her hair she then changes into a new outfit", "video_id": "video12380", "sen_id": 242472}, {"caption": "blond women in red robe brushing hair after getting out of the shower", "video_id": "video12380", "sen_id": 242473}, {"caption": "a woman is discussing her hygiene and hair brushing", "video_id": "video12380", "sen_id": 242474}, {"caption": "there is a woman in red combing her hair on the bed", "video_id": "video12380", "sen_id": 242475}, {"caption": "a woman in a red robe showing how to do a hair style", "video_id": "video12380", "sen_id": 242476}, {"caption": "the beautiful girl wearing red gowns and cleaning their hair suddenly she change the red gownthat time she wear the top and trouser she is very beauty", "video_id": "video12380", "sen_id": 242477}, {"caption": "a blonde girl in a red robe is describing her morning routine and how she does her hair", "video_id": "video12380", "sen_id": 242478}, {"caption": "a pretty young dirty blonde woman with an accent is wearing a red robe showing and talking about preparing her hair and herself", "video_id": "video12380", "sen_id": 242479}, {"caption": "a narrated web-based video game review with captured video game footage", "video_id": "video10149", "sen_id": 242480}, {"caption": "a man is playing a video game which shows an animated man jumping onto buildings and cars", "video_id": "video10149", "sen_id": 242481}, {"caption": "a clip of the video game just cause", "video_id": "video10149", "sen_id": 242482}, {"caption": "a man with a gun on his back jumping from a building on to a tank", "video_id": "video10149", "sen_id": 242483}, {"caption": "an animated player in a game runs and interacts with other characters", "video_id": "video10149", "sen_id": 242484}, {"caption": "a man describes and demonstrates a video game that they are playing", "video_id": "video10149", "sen_id": 242485}, {"caption": "there is a person wearing camo jumping out of a plane", "video_id": "video10149", "sen_id": 242486}, {"caption": "a video game s special grapple and pull function is demonstrated", "video_id": "video10149", "sen_id": 242487}, {"caption": "a male narrator describes an action-adventure video game that is shown", "video_id": "video10149", "sen_id": 242488}, {"caption": "a man is talking about a military video game is he playing", "video_id": "video10149", "sen_id": 242489}, {"caption": "there is a commando jumping to get a vehicle", "video_id": "video10149", "sen_id": 242490}, {"caption": "a person is giving a review on a fast paced action video game", "video_id": "video10149", "sen_id": 242491}, {"caption": "game features the grappling hook that makes you hook onto anything", "video_id": "video10149", "sen_id": 242492}, {"caption": "a man is talking about a video game he s playing", "video_id": "video10149", "sen_id": 242493}, {"caption": "a male video game character is showing off the games vehicle features", "video_id": "video10149", "sen_id": 242494}, {"caption": "there is a commando running with a gun", "video_id": "video10149", "sen_id": 242495}, {"caption": "a person in a video game is using an item to propel himself across the map", "video_id": "video10149", "sen_id": 242496}, {"caption": "the character grapples up a building and flies in a plane", "video_id": "video10149", "sen_id": 242497}, {"caption": "a man talks about a video game while the video game character uses a grappling hook to get from place to place", "video_id": "video10149", "sen_id": 242498}, {"caption": "a gun man is jumping on the walls in a animated cartoon game", "video_id": "video10149", "sen_id": 242499}, {"caption": "a man lectures about some aspects of american history", "video_id": "video10423", "sen_id": 242500}, {"caption": "a man in a striped shirt sits in front of a laptop while describing jamestown", "video_id": "video10423", "sen_id": 242501}, {"caption": "a man with spectacles and wearing a blue stripes coloured t-shirt is saying something", "video_id": "video10423", "sen_id": 242502}, {"caption": "a person sitting in front of the laptop and speaking about the ancient drawings", "video_id": "video10423", "sen_id": 242503}, {"caption": "man with blue striped shirt has laptop in front of him it has globe on back side", "video_id": "video10423", "sen_id": 242504}, {"caption": "a guy who is wearing glasses talks about history", "video_id": "video10423", "sen_id": 242505}, {"caption": "man in blue striped shirt on internet show talking about various issues in his animated screen", "video_id": "video10423", "sen_id": 242506}, {"caption": "a man in blue t shirt explaining in front of a laptop", "video_id": "video10423", "sen_id": 242507}, {"caption": "someone is talking about the investment of money", "video_id": "video10423", "sen_id": 242508}, {"caption": "a man in blue t shirt and black strip dress sitting and speaking globe beside and laptop beside on topic displaying on screen", "video_id": "video10423", "sen_id": 242509}, {"caption": "virginia company wants money for their investors and they can get gold from spanish and south america", "video_id": "video10423", "sen_id": 242510}, {"caption": "a man in a collared and striped blue shirt is speaking very earnestly", "video_id": "video10423", "sen_id": 242511}, {"caption": "a man talking about goldsmiths and jewelers in front of a laptop", "video_id": "video10423", "sen_id": 242512}, {"caption": "a nerdy looking boy in a navy polo shirt with white stripes is talking to the camera", "video_id": "video10423", "sen_id": 242513}, {"caption": "a man in glasses sits at a desk on which there is a computer", "video_id": "video10423", "sen_id": 242514}, {"caption": "a man with glasses is speaking about something", "video_id": "video10423", "sen_id": 242515}, {"caption": "a man in a striped shirt giving a history lesson", "video_id": "video10423", "sen_id": 242516}, {"caption": "a man talking about history", "video_id": "video10423", "sen_id": 242517}, {"caption": "a guy talks about people who were searching for gold", "video_id": "video10423", "sen_id": 242518}, {"caption": "a man in glasses talks about the history of settlers", "video_id": "video10423", "sen_id": 242519}, {"caption": "we see from the point of view of a person riding a horse in a grassy field as people watch", "video_id": "video10075", "sen_id": 242520}, {"caption": "a person riding a horse and unsuccessfully jumping over hurdles", "video_id": "video10075", "sen_id": 242521}, {"caption": "a horse galloping through a cross country course and has a refusal at a fence", "video_id": "video10075", "sen_id": 242522}, {"caption": "view from a horseback rider in competition the horse jumps over the first jump but misses the second one", "video_id": "video10075", "sen_id": 242523}, {"caption": "a big brown horse running in front of a large crowd", "video_id": "video10075", "sen_id": 242524}, {"caption": "a horses head as you gallop through a course of jumper", "video_id": "video10075", "sen_id": 242525}, {"caption": "go pro footage of an equestrian event involving a reluctant horse", "video_id": "video10075", "sen_id": 242526}, {"caption": "a horse running on the ground faster", "video_id": "video10075", "sen_id": 242527}, {"caption": "a brown horse gallops around a track and jumps over obstacles while spectators watch", "video_id": "video10075", "sen_id": 242528}, {"caption": "a horse is runnning and going to jump into the ring", "video_id": "video10075", "sen_id": 242529}, {"caption": "a person with head cam is riding horse in a horse high jump show", "video_id": "video10075", "sen_id": 242530}, {"caption": "there is a black horse riding on the grass", "video_id": "video10075", "sen_id": 242531}, {"caption": "a horse is running at high speeds past a big crowd", "video_id": "video10075", "sen_id": 242532}, {"caption": "first person camera footage worn by a horse rider shows a horse being showcased before a crowd", "video_id": "video10075", "sen_id": 242533}, {"caption": "a horse gallops down a track and jumps over gates", "video_id": "video10075", "sen_id": 242534}, {"caption": "the brown horse gallops quickly on toward the jump during the contest", "video_id": "video10075", "sen_id": 242535}, {"caption": "a horse running around in field while people watching", "video_id": "video10075", "sen_id": 242536}, {"caption": "the camera is attached to a running horse who is running through the course", "video_id": "video10075", "sen_id": 242537}, {"caption": "horse is running in the ground very fastly", "video_id": "video10075", "sen_id": 242538}, {"caption": "a girl riding a horse through a grassy path lined with spectators", "video_id": "video10075", "sen_id": 242539}, {"caption": "two menone of them fishing talking outside", "video_id": "video11541", "sen_id": 242540}, {"caption": "an older man in a brown robe stands near a large castle", "video_id": "video11541", "sen_id": 242541}, {"caption": "a man in brown robes is talking to a man", "video_id": "video11541", "sen_id": 242542}, {"caption": "two elderly men standing near the water and having a conversation", "video_id": "video11541", "sen_id": 242543}, {"caption": "a man with a white beard speaking to another man making something out of sticks", "video_id": "video11541", "sen_id": 242544}, {"caption": "two old men in a medievil setting have a metaphorical conversation about flowers", "video_id": "video11541", "sen_id": 242545}, {"caption": "a movie clip of a feature film showing two men talking", "video_id": "video11541", "sen_id": 242546}, {"caption": "this video is of a man speaking to a friend my lord", "video_id": "video11541", "sen_id": 242547}, {"caption": "two old man talking about something one of them fishing in net", "video_id": "video11541", "sen_id": 242548}, {"caption": "a man speaks to another man alongside a river in a movie scene", "video_id": "video11541", "sen_id": 242549}, {"caption": "scene from a movie where old guys are talking with each other", "video_id": "video11541", "sen_id": 242550}, {"caption": "a old man in brown over coat is instructing other person", "video_id": "video11541", "sen_id": 242551}, {"caption": "a old man dressed with brown rob talks to man who is sitting on a rock", "video_id": "video11541", "sen_id": 242552}, {"caption": "a bearded old man in black is speaking to another man who is sitting on a stone in front of him", "video_id": "video11541", "sen_id": 242553}, {"caption": "two old men talking to each other about remaining in the garden", "video_id": "video11541", "sen_id": 242554}, {"caption": "the old man stands on the rocks talking with another man sharpening a long stick", "video_id": "video11541", "sen_id": 242555}, {"caption": "an old person wearing a brown overcoat is talking to another person", "video_id": "video11541", "sen_id": 242556}, {"caption": "the person with the brown robe talks about flowers that are tallest brightest and one day they will be plucked from the garden", "video_id": "video11541", "sen_id": 242557}, {"caption": "two elderly men next to a river discuss flowers in a garden", "video_id": "video11541", "sen_id": 242558}, {"caption": "a man with a beard is talking to a fisherman", "video_id": "video11541", "sen_id": 242559}, {"caption": "a man gives a tutorial on picture creation in microsoft paint", "video_id": "video10072", "sen_id": 242560}, {"caption": "a person demonstrates the use of a computer program related to drawing", "video_id": "video10072", "sen_id": 242561}, {"caption": "video showing how to use a photo editor software", "video_id": "video10072", "sen_id": 242562}, {"caption": "some useful animations in computer software application opened", "video_id": "video10072", "sen_id": 242563}, {"caption": "with the help of different techniques animated film is made here", "video_id": "video10072", "sen_id": 242564}, {"caption": "many pictures are edited using editing software", "video_id": "video10072", "sen_id": 242565}, {"caption": "there is some picture work doing by a person on screen", "video_id": "video10072", "sen_id": 242566}, {"caption": "a man is making a animation picture", "video_id": "video10072", "sen_id": 242567}, {"caption": "a person writes a graphic desing program on the computer", "video_id": "video10072", "sen_id": 242568}, {"caption": "a person is showing how to create minecraft character on computer", "video_id": "video10072", "sen_id": 242569}, {"caption": "its a drawing a figures on a notepad in computer", "video_id": "video10072", "sen_id": 242570}, {"caption": "the computer monitor was flashing various bright colors", "video_id": "video10072", "sen_id": 242571}, {"caption": "a person demonstrates some animation drawing techniques on a computer", "video_id": "video10072", "sen_id": 242572}, {"caption": "a software displaying on screen", "video_id": "video10072", "sen_id": 242573}, {"caption": "a man is talking while working on a pixel art image", "video_id": "video10072", "sen_id": 242574}, {"caption": "there is someone drawing a picture with a software", "video_id": "video10072", "sen_id": 242575}, {"caption": "a man is heard explaining on how to create a draw a cartoon character and animate itwe can also call it the basic walk cycle tutorial", "video_id": "video10072", "sen_id": 242576}, {"caption": "a person narrates over a video of their computer", "video_id": "video10072", "sen_id": 242577}, {"caption": "with photoshop and other technical apps we can produce animated films", "video_id": "video10072", "sen_id": 242578}, {"caption": "someone is showing people how to make pixel art", "video_id": "video10072", "sen_id": 242579}, {"caption": "brittany spears a famous music artist singing and dancing on an mtv special", "video_id": "video10822", "sen_id": 242580}, {"caption": "a young woman sings and dances on a stage in front of a large crowd", "video_id": "video10822", "sen_id": 242581}, {"caption": "a blonde headed pop star sings a song in front of a large audience", "video_id": "video10822", "sen_id": 242582}, {"caption": "a young blonde woman sings and dances on a large stage", "video_id": "video10822", "sen_id": 242583}, {"caption": "brittney spears singing in a headshot video", "video_id": "video10822", "sen_id": 242584}, {"caption": "a mtv musical video playing on tv showing a female artist", "video_id": "video10822", "sen_id": 242585}, {"caption": "in a tv show a singer performing a show", "video_id": "video10822", "sen_id": 242586}, {"caption": "a woman in black dress is singing and dancing", "video_id": "video10822", "sen_id": 242587}, {"caption": "a headshot of britney spears performing from the back and then from the front as she turns around", "video_id": "video10822", "sen_id": 242588}, {"caption": "the pop singer singing her song with dancing steps", "video_id": "video10822", "sen_id": 242589}, {"caption": "a woman singing a song while dancing on the stage", "video_id": "video10822", "sen_id": 242590}, {"caption": "a girl with white hair and black dress singing song", "video_id": "video10822", "sen_id": 242591}, {"caption": "a woman sings a song on stage for a preformance", "video_id": "video10822", "sen_id": 242592}, {"caption": "britney spears appears on a stage as she begins to sing an audience starts clapping and screaming", "video_id": "video10822", "sen_id": 242593}, {"caption": "the singer britney spears is performing a song on stage to a live audience", "video_id": "video10822", "sen_id": 242594}, {"caption": "a woman dancing on a stage in a mtv presentation", "video_id": "video10822", "sen_id": 242595}, {"caption": "a lady is dancing on stage with awesome expressions and she is also singing the song heard in the background we can also hear the audience cheering for her", "video_id": "video10822", "sen_id": 242596}, {"caption": "a clip of britney spears on camera getting ready to perform", "video_id": "video10822", "sen_id": 242597}, {"caption": "a girl dancing moving her body in black dress", "video_id": "video10822", "sen_id": 242598}, {"caption": "a blonde haired woman is on stage and singing", "video_id": "video10822", "sen_id": 242599}, {"caption": "a news studio is panned around with a giant screen displaying donald trump", "video_id": "video10754", "sen_id": 242600}, {"caption": "a news studio shows a large image of a presidential candidate on one of its screens", "video_id": "video10754", "sen_id": 242601}, {"caption": "donald trump on the phone talking about polls", "video_id": "video10754", "sen_id": 242602}, {"caption": "there is a picture of donald trump while he is speaking on the phone", "video_id": "video10754", "sen_id": 242603}, {"caption": "a young turks stream of donald trump talking about the election", "video_id": "video10754", "sen_id": 242604}, {"caption": "msnbc plays audio of president donald trump speaking about a man's loss of control", "video_id": "video10754", "sen_id": 242605}, {"caption": "a white man in a suit and yellow tie smiling", "video_id": "video10754", "sen_id": 242606}, {"caption": "s presidential candidate donald trump is on news", "video_id": "video10754", "sen_id": 242607}, {"caption": "its the news about the person donald trump he smiles in the pic", "video_id": "video10754", "sen_id": 242608}, {"caption": "some person watching television at home watching msnbc live about donald trump", "video_id": "video10754", "sen_id": 242609}, {"caption": "its a news presentation a news channel", "video_id": "video10754", "sen_id": 242610}, {"caption": "a man talked on a stadium", "video_id": "video10754", "sen_id": 242611}, {"caption": "on msnbc s morning joe a recording plays of donald trump speaking negatively of the other republican candidates after a debate while a baby cries in the background", "video_id": "video10754", "sen_id": 242612}, {"caption": "donald trump in a phone interview discusses previous evenings events", "video_id": "video10754", "sen_id": 242613}, {"caption": "some sports news in a news related television show", "video_id": "video10754", "sen_id": 242614}, {"caption": "there is a man talking about good polls", "video_id": "video10754", "sen_id": 242615}, {"caption": "a stage is covered with lighted panels and screens one of which is a smiling presidential candidate with his name in red lettering", "video_id": "video10754", "sen_id": 242616}, {"caption": "trump fox new wont put up my good polls", "video_id": "video10754", "sen_id": 242617}, {"caption": "msnbc news reporters talk about donald trump and the presidental elections", "video_id": "video10754", "sen_id": 242618}, {"caption": "donald trump talking to a reporter about someone losing control if themselves", "video_id": "video10754", "sen_id": 242619}, {"caption": "a man enjoys watching and commenting on a video of other men playing basketball and saying my bad", "video_id": "video10428", "sen_id": 242620}, {"caption": "the my bad guy plays sports with others and keeps saying my bad", "video_id": "video10428", "sen_id": 242621}, {"caption": "a young black man wearing a white t-shirt and thick metal necklace narrates and laughs at a superimposed sports blooper video clip", "video_id": "video10428", "sen_id": 242622}, {"caption": "a young african man makes fun of a white man who is bad at basketball", "video_id": "video10428", "sen_id": 242623}, {"caption": "an african american man watches another man play basketball and gives his commentary", "video_id": "video10428", "sen_id": 242624}, {"caption": "an african american man is saying my bad my bad white on a tv screen a man in green t-shirt is running with a ball and saying my bad", "video_id": "video10428", "sen_id": 242625}, {"caption": "a young black man is laughing at a video he watches that shows white men playing basketball outside", "video_id": "video10428", "sen_id": 242626}, {"caption": "a man in a white tee shirts watches a video of men playing basketball and notices that one of the men repeatedly says", "video_id": "video10428", "sen_id": 242627}, {"caption": "a man talking and other players are playing on the ground", "video_id": "video10428", "sen_id": 242628}, {"caption": "a person speaks about his practice session on the basket ball court", "video_id": "video10428", "sen_id": 242629}, {"caption": "a young man playing in a basketball game makes a series of big mistakes", "video_id": "video10428", "sen_id": 242630}, {"caption": "boys inside ground playing basket ball practicing and other boy laughing displaying on screen", "video_id": "video10428", "sen_id": 242631}, {"caption": "there is a white tshirt man talking in a room", "video_id": "video10428", "sen_id": 242632}, {"caption": "a man is describe to the play very interesting", "video_id": "video10428", "sen_id": 242633}, {"caption": "african-american guy reacts to funny basketball fails", "video_id": "video10428", "sen_id": 242634}, {"caption": "the two teams are playing a game against each other", "video_id": "video10428", "sen_id": 242635}, {"caption": "a green tshirt man tries to practice the basket ball while he misses all the chances", "video_id": "video10428", "sen_id": 242636}, {"caption": "a young man watches a funny video clip of a basketball player excessively apologizing", "video_id": "video10428", "sen_id": 242637}, {"caption": "three men playing basketball on sunny day outdoors", "video_id": "video10428", "sen_id": 242638}, {"caption": "black guy in white tshirt talking to the camera", "video_id": "video10428", "sen_id": 242639}, {"caption": "a man walking on the side of the road next to a moving car", "video_id": "video12172", "sen_id": 242640}, {"caption": "a video from a foreign insurance commercial", "video_id": "video12172", "sen_id": 242641}, {"caption": "a man urinating on the side of a road is pranked by his friends", "video_id": "video12172", "sen_id": 242642}, {"caption": "a man walking next to a car on a road as he gets closer the car speeds away", "video_id": "video12172", "sen_id": 242643}, {"caption": "a man finishes peeing on the side of the road and his friends slowly drive away from him as a joke but drive over the edge of a cliff", "video_id": "video12172", "sen_id": 242644}, {"caption": "a man in white shirt get down from the white car", "video_id": "video12172", "sen_id": 242645}, {"caption": "a car full of men speeding up every time one man is trying to open a door to get in", "video_id": "video12172", "sen_id": 242646}, {"caption": "a man pissing the urine on the road side", "video_id": "video12172", "sen_id": 242647}, {"caption": "a man stands by a white car then tries to get in but car drove off the cliff", "video_id": "video12172", "sen_id": 242648}, {"caption": "group of men messing with a man trying to get into a car", "video_id": "video12172", "sen_id": 242649}, {"caption": "there is a man coming to get in the car", "video_id": "video12172", "sen_id": 242650}, {"caption": "as the men were playing pranks they fell over the cliff", "video_id": "video12172", "sen_id": 242651}, {"caption": "a car full of men call for another man to get in and then drive away as he tries to open the door", "video_id": "video12172", "sen_id": 242652}, {"caption": "a group of young men prank their friend who had exited their shared their communal vehicle to answer a call of nature", "video_id": "video12172", "sen_id": 242653}, {"caption": "a man being harassed from getting into the car", "video_id": "video12172", "sen_id": 242654}, {"caption": "there is a man walking towards a car", "video_id": "video12172", "sen_id": 242655}, {"caption": "there is a man next to a char who is being harassed", "video_id": "video12172", "sen_id": 242656}, {"caption": "usually men are stupid he moves the car by pushing then he pushed fastlt", "video_id": "video12172", "sen_id": 242657}, {"caption": "a man on the side of the road is peeing then trying to get back in the car", "video_id": "video12172", "sen_id": 242658}, {"caption": "a man in a white shirt is walking around", "video_id": "video12172", "sen_id": 242659}, {"caption": "an in-home chef discusses a recipe he is working on at home", "video_id": "video12789", "sen_id": 242660}, {"caption": "someone has put cheesecloth over the top of a small mason jar and covered the edges with a gold rim lid", "video_id": "video12789", "sen_id": 242661}, {"caption": "a person puts a cloth over the top of a mason jar and under the gold lid", "video_id": "video12789", "sen_id": 242662}, {"caption": "a man has put cheesecloth across the lid of a jar to use as a strainer", "video_id": "video12789", "sen_id": 242663}, {"caption": "a person uses various household ingredients to make a concoction", "video_id": "video12789", "sen_id": 242664}, {"caption": "anyone can be creative with the right tools and planning in place", "video_id": "video12789", "sen_id": 242665}, {"caption": "some one showing a glass bottle in front of the camera", "video_id": "video12789", "sen_id": 242666}, {"caption": "a man having empty glass bottle covered with white cloth to do something different", "video_id": "video12789", "sen_id": 242667}, {"caption": "a man talks about the cover of a jar and its liquid absorption properties", "video_id": "video12789", "sen_id": 242668}, {"caption": "a man is using a jar with cheesecolth as a filter in the kitchen", "video_id": "video12789", "sen_id": 242669}, {"caption": "teaching us how to strain liquid with cheese cloth", "video_id": "video12789", "sen_id": 242670}, {"caption": "its a bottle covered with a cloth on top", "video_id": "video12789", "sen_id": 242671}, {"caption": "the chef is making some items in the kitchen and explain", "video_id": "video12789", "sen_id": 242672}, {"caption": "a camera focused on items on a table with a mans hands picking up one of the items as he described it", "video_id": "video12789", "sen_id": 242673}, {"caption": "a person is doing a tutorial on a mason jar", "video_id": "video12789", "sen_id": 242674}, {"caption": "a person is checking the cloth covering on the bottle jar", "video_id": "video12789", "sen_id": 242675}, {"caption": "man had strainer in the cap of the bottle", "video_id": "video12789", "sen_id": 242676}, {"caption": "a man showing how he has setup his mason jar to include a cheesecloth between the lid and the jar", "video_id": "video12789", "sen_id": 242677}, {"caption": "a guy talking about how to put cheese cloth over a jar", "video_id": "video12789", "sen_id": 242678}, {"caption": "a person is showing the cover being placed on the jar bottle", "video_id": "video12789", "sen_id": 242679}, {"caption": "a receipt on how to create something with various oils", "video_id": "video11137", "sen_id": 242680}, {"caption": "cooking ingredients portioned out into white bowls sitting on a table", "video_id": "video11137", "sen_id": 242681}, {"caption": "a man talks about vinegar and salad oil ingredients that he will need", "video_id": "video11137", "sen_id": 242682}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11137", "sen_id": 242683}, {"caption": "a person reciting a recipe while a demonstration is being shown", "video_id": "video11137", "sen_id": 242684}, {"caption": " such as salt and vinegar are described and displayed", "video_id": "video11137", "sen_id": 242685}, {"caption": "a bowl inside kitchen to prepare dish to cook to serve to eat displaying on screen", "video_id": "video11137", "sen_id": 242686}, {"caption": "in a kitchen someone is putting all the ingredients on the table", "video_id": "video11137", "sen_id": 242687}, {"caption": "ingredients in containers for a recipe flash across the screen", "video_id": "video11137", "sen_id": 242688}, {"caption": "a man is stating ingredients needed for a recipe that includes two tablespoons sugar a quarter teaspoon salt", "video_id": "video11137", "sen_id": 242689}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video11137", "sen_id": 242690}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video11137", "sen_id": 242691}, {"caption": "a small and round white container with a slightly wider rim is partially filled with tan granules and placed on a wooden surface with horizontal grain with round knots and marks", "video_id": "video11137", "sen_id": 242692}, {"caption": "a man narrates as he shows ingredients he is about to use in a recipe", "video_id": "video11137", "sen_id": 242693}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11137", "sen_id": 242694}, {"caption": "its a preparation of a mixture of all spices", "video_id": "video11137", "sen_id": 242695}, {"caption": "a man is describing a recipe for some type of food dish that he is preparing", "video_id": "video11137", "sen_id": 242696}, {"caption": "small ceramic and glass containers hold a yellow liquid a dark liquid granulated white crystals pale yellow liquid", "video_id": "video11137", "sen_id": 242697}, {"caption": "in a kitchen someone is preparing ingredients for cooking a dish", "video_id": "video11137", "sen_id": 242698}, {"caption": "on the table a glass bowl oil and black color liquid and another bowl of salt and honey in the glass", "video_id": "video11137", "sen_id": 242699}, {"caption": "an actor laughs as he is interviewed by a talk show host", "video_id": "video11301", "sen_id": 242700}, {"caption": "two men in black suits are speaking on a late night talk show", "video_id": "video11301", "sen_id": 242701}, {"caption": "a man is being interviewed by another man on a stage", "video_id": "video11301", "sen_id": 242702}, {"caption": "a talk-show host laughs while his guest smiles rubs his nose and lifts his hands while they are seated against a backdrop of a nighttime new york skyline", "video_id": "video11301", "sen_id": 242703}, {"caption": "matt damon is sitting in a chaor and laughing and ralking ti david letterman on the set of the david letterman show", "video_id": "video11301", "sen_id": 242704}, {"caption": "matt damon is laughs with david letterman while sitting in an upholstered tan chair", "video_id": "video11301", "sen_id": 242705}, {"caption": "matt damon is interviewed by david letterman", "video_id": "video11301", "sen_id": 242706}, {"caption": "matt damon is being interviewed on the set of a night time tv show", "video_id": "video11301", "sen_id": 242707}, {"caption": "a movie star sits in a chair being interviewed by a talk show host who is sitting at a desk with a backdrop of the city", "video_id": "video11301", "sen_id": 242708}, {"caption": "a man talking funny with anchor in a tv", "video_id": "video11301", "sen_id": 242709}, {"caption": "a young man in black suit is happy talking to a middle aged man in a a tv show", "video_id": "video11301", "sen_id": 242710}, {"caption": "david letterman laughs while interviewing famous actor matt damon", "video_id": "video11301", "sen_id": 242711}, {"caption": "two men are sitting and laughing to each other on television", "video_id": "video11301", "sen_id": 242712}, {"caption": "old man congrats him and said excellent with laughing", "video_id": "video11301", "sen_id": 242713}, {"caption": "guy in suit and tie talking to the actor in talk show", "video_id": "video11301", "sen_id": 242714}, {"caption": "a black suit man laughing in a studio", "video_id": "video11301", "sen_id": 242715}, {"caption": "two men are chatting with cracking jokes and the audience appreciate it", "video_id": "video11301", "sen_id": 242716}, {"caption": "a late night talk host sits with guest to audience loud applause", "video_id": "video11301", "sen_id": 242717}, {"caption": "matt damon on the dave letterman show getting a loud round of laughter", "video_id": "video11301", "sen_id": 242718}, {"caption": "actor matt damon appears on the david letterman show", "video_id": "video11301", "sen_id": 242719}, {"caption": "a man in a red chair interviews a red-headed woman sitting on a couch", "video_id": "video10914", "sen_id": 242720}, {"caption": "a woman and man are talking about a television show", "video_id": "video10914", "sen_id": 242721}, {"caption": "a red-headed woman on a white sofa and a man sitting on a red upholstered chair talk about television casts that are being shown on a screen behind them", "video_id": "video10914", "sen_id": 242722}, {"caption": "a man and woman talking to each other while sitting on a plush sofa and chair", "video_id": "video10914", "sen_id": 242723}, {"caption": "there are two people sitting in chairs having a conversation about a show", "video_id": "video10914", "sen_id": 242724}, {"caption": "a man and a woman banter with each other on a television show", "video_id": "video10914", "sen_id": 242725}, {"caption": "a talk show involving a host and a guest is shown", "video_id": "video10914", "sen_id": 242726}, {"caption": "two talk show host talking", "video_id": "video10914", "sen_id": 242727}, {"caption": "two show hosts discuss plot development in a popular show", "video_id": "video10914", "sen_id": 242728}, {"caption": "a man in a red chair and a woman on a white couch talking", "video_id": "video10914", "sen_id": 242729}, {"caption": "there is a woman talking with a person", "video_id": "video10914", "sen_id": 242730}, {"caption": "a woman with dark dressing is interviewing with a man black coat dressing in sitting positionwhile behind one screen is playing photos", "video_id": "video10914", "sen_id": 242731}, {"caption": "a celebrity talking about something to a man in the media", "video_id": "video10914", "sen_id": 242732}, {"caption": "a man and a woman converse while hosting a talk show", "video_id": "video10914", "sen_id": 242733}, {"caption": "a man and a woman sitting in a bright living room have a fun conversation for the audience about people generally", "video_id": "video10914", "sen_id": 242734}, {"caption": "male talk show host and female guest discussing what their personality types are", "video_id": "video10914", "sen_id": 242735}, {"caption": "a man and a lady speaking to the tv camera about her experience", "video_id": "video10914", "sen_id": 242736}, {"caption": "a man and woman are on air sitting and talking about a t", "video_id": "video10914", "sen_id": 242737}, {"caption": "a lady in blue and a man in black sitting down talking to one another", "video_id": "video10914", "sen_id": 242738}, {"caption": "the buzz hosts talk about tv shows to watch this summer", "video_id": "video10914", "sen_id": 242739}, {"caption": "a guy plays call of duty and celebrates his win very loudly", "video_id": "video12711", "sen_id": 242740}, {"caption": "a man demonstrates and describes a video game that he is playing", "video_id": "video12711", "sen_id": 242741}, {"caption": "a man cursing while walking with a gun through a video game", "video_id": "video12711", "sen_id": 242742}, {"caption": "a man is playing a game of call of duty online and talking some trash to other players", "video_id": "video12711", "sen_id": 242743}, {"caption": "an animated character carries a gun and throws a grenade", "video_id": "video12711", "sen_id": 242744}, {"caption": "a man takes down opponents in a game and wins for his team", "video_id": "video12711", "sen_id": 242745}, {"caption": "person is playing online game to kill the enemies", "video_id": "video12711", "sen_id": 242746}, {"caption": "a person playing a player vs player game and winning for his team", "video_id": "video12711", "sen_id": 242747}, {"caption": "a man is talking while we see gameplay from a fps", "video_id": "video12711", "sen_id": 242748}, {"caption": "a video animation of video game firing guns shots moving walls displaying on screen", "video_id": "video12711", "sen_id": 242749}, {"caption": "there is a man walking to find out someone", "video_id": "video12711", "sen_id": 242750}, {"caption": "a person with a gun is walking around looking for people", "video_id": "video12711", "sen_id": 242751}, {"caption": "a character on call of duty gets buzz kill then payback before team claims victory", "video_id": "video12711", "sen_id": 242752}, {"caption": "some video game demonstration has been shown in high quality", "video_id": "video12711", "sen_id": 242753}, {"caption": "a horse running through the corridors and the man shouts that they are the winner", "video_id": "video12711", "sen_id": 242754}, {"caption": "a screen stream of someone playing a first person shooter game and talking", "video_id": "video12711", "sen_id": 242755}, {"caption": "a man playing a game and using foolish word and excitiment", "video_id": "video12711", "sen_id": 242756}, {"caption": "a vedio game and the building shooting game", "video_id": "video12711", "sen_id": 242757}, {"caption": "a person is going through a building and shooting", "video_id": "video12711", "sen_id": 242758}, {"caption": "a male is playing a shooting video game and wins", "video_id": "video12711", "sen_id": 242759}, {"caption": "an elderly man talking and being animated with both of his hands", "video_id": "video10583", "sen_id": 242760}, {"caption": "leonard sitting and talking while using his hands to gesticulate", "video_id": "video10583", "sen_id": 242761}, {"caption": "a bald middle aged man talking and moving his hands", "video_id": "video10583", "sen_id": 242762}, {"caption": "a man with glasses is talking about different people", "video_id": "video10583", "sen_id": 242763}, {"caption": "a founder of a company goes over it and its visions", "video_id": "video10583", "sen_id": 242764}, {"caption": "a man in a small home living room speaks using his hands extensively", "video_id": "video10583", "sen_id": 242765}, {"caption": "founder dartz mortoz giving interview to life&luxury is talking about people about what they do", "video_id": "video10583", "sen_id": 242766}, {"caption": "a bald headed man with specs is talking with gestures", "video_id": "video10583", "sen_id": 242767}, {"caption": "a man setting in front of a fireplace and a set of box shelves talks about poor people", "video_id": "video10583", "sen_id": 242768}, {"caption": "a bald man speaks and gesticulates in an orange and yellow room", "video_id": "video10583", "sen_id": 242769}, {"caption": "a man in a gray shirt gestures with his hands and describes people with problems", "video_id": "video10583", "sen_id": 242770}, {"caption": "a man with bald head and eyeglasses sitting in a chair and talks to someone", "video_id": "video10583", "sen_id": 242771}, {"caption": "an older white man in a grey shirt and glasses is talking", "video_id": "video10583", "sen_id": 242772}, {"caption": "a old man in ash color dress wearing speaking shaking his hands sitting car parking displaying on screen", "video_id": "video10583", "sen_id": 242773}, {"caption": "the person is explaining about the ways to spend the money and what to do with the money", "video_id": "video10583", "sen_id": 242774}, {"caption": "a man with specs talking from his house", "video_id": "video10583", "sen_id": 242775}, {"caption": "a man talking about people and how they should spend their money", "video_id": "video10583", "sen_id": 242776}, {"caption": "one man talks about something in a stage", "video_id": "video10583", "sen_id": 242777}, {"caption": "a old man in ash color dress wearing speaking shaking his hands sitting displaying on screen", "video_id": "video10583", "sen_id": 242778}, {"caption": "this man is sitting in his living room doing an interview infront of a wooden stove", "video_id": "video10583", "sen_id": 242779}, {"caption": "a person is sitting in a red car driving down the street", "video_id": "video10589", "sen_id": 242780}, {"caption": "a woman films a man pushing a stalled red car down a street", "video_id": "video10589", "sen_id": 242781}, {"caption": "a young couple are pushing their red automobile down the road while the girl is taking the video of it", "video_id": "video10589", "sen_id": 242782}, {"caption": "a person is observing someone pushing their car laughing about it and asking if she's a bitch for not helping", "video_id": "video10589", "sen_id": 242783}, {"caption": "a couple of people pushing a very nice car down the street", "video_id": "video10589", "sen_id": 242784}, {"caption": "two people slowly push a car down a street in a suburban community", "video_id": "video10589", "sen_id": 242785}, {"caption": "red car is on the road and the owner of the vehicle is beside", "video_id": "video10589", "sen_id": 242786}, {"caption": "a man in a pink shirt with glasses on top of his head pushing a car", "video_id": "video10589", "sen_id": 242787}, {"caption": "a man is pushing a car in the road", "video_id": "video10589", "sen_id": 242788}, {"caption": "a man pushes his red car that died in the middle of the road", "video_id": "video10589", "sen_id": 242789}, {"caption": "a man and a woman push their fancy car up the road", "video_id": "video10589", "sen_id": 242790}, {"caption": "the car has been failed so the two of them were pushing the car with their hands by getting down to it", "video_id": "video10589", "sen_id": 242791}, {"caption": "we can see a lady and a guy pushing a red car on the road in order to start it and the lady is speaking in a teasing manner as if trying to tease the guy pushing the car", "video_id": "video10589", "sen_id": 242792}, {"caption": "a person is moving his red car in road", "video_id": "video10589", "sen_id": 242793}, {"caption": "couple pushing a small red car along the highway", "video_id": "video10589", "sen_id": 242794}, {"caption": "a guy and his friend pushing a classic car on the side of the rode because the battery died", "video_id": "video10589", "sen_id": 242795}, {"caption": "one women is pushing a big nice car", "video_id": "video10589", "sen_id": 242796}, {"caption": "its a red car near which the person stands and then the car moves slowly", "video_id": "video10589", "sen_id": 242797}, {"caption": "a red colour car pushing a red colour dress man on road and car moving beside", "video_id": "video10589", "sen_id": 242798}, {"caption": "someone is walking around a red car outside", "video_id": "video10589", "sen_id": 242799}, {"caption": "a woman talks about and demonstrates a facial primer", "video_id": "video12469", "sen_id": 242800}, {"caption": "a woman is showing how to put makeup on for a certain look", "video_id": "video12469", "sen_id": 242801}, {"caption": "a lady in white dress doing a makeup tutorial", "video_id": "video12469", "sen_id": 242802}, {"caption": "a woman is talking and applying foundation to her face", "video_id": "video12469", "sen_id": 242803}, {"caption": "a woman in a white shirt sitting in front of a camera applying makeup", "video_id": "video12469", "sen_id": 242804}, {"caption": "a cute female is saying something and applying cream to her face", "video_id": "video12469", "sen_id": 242805}, {"caption": "a girl in white dress is talking and putting make up on her face", "video_id": "video12469", "sen_id": 242806}, {"caption": "a young woman describes and demonstrates her method of applying make-up", "video_id": "video12469", "sen_id": 242807}, {"caption": "a young girl is putting make-up foundation on her face", "video_id": "video12469", "sen_id": 242808}, {"caption": "a girl putting facial creame her face makeup beauty on screen", "video_id": "video12469", "sen_id": 242809}, {"caption": "a woman is showing how to apply a make up cream on face", "video_id": "video12469", "sen_id": 242810}, {"caption": "a woman in a white shirt is giving a review on a face primer", "video_id": "video12469", "sen_id": 242811}, {"caption": "an attractive young woman describes and demonstrates her method of applying makeup to her face", "video_id": "video12469", "sen_id": 242812}, {"caption": "a woman is giving makeup tips and reviews on the makeup she uses", "video_id": "video12469", "sen_id": 242813}, {"caption": "a woman talks about and tests makeup on her face", "video_id": "video12469", "sen_id": 242814}, {"caption": "a women is telling how to do makeup and apply foundation for face", "video_id": "video12469", "sen_id": 242815}, {"caption": "the beautyful women is explaning their baeauty and the cosmestics product", "video_id": "video12469", "sen_id": 242816}, {"caption": "a woman with too much makeup already applies even more makeup whale talking to the camera", "video_id": "video12469", "sen_id": 242817}, {"caption": "a lady with white dress talking and putting some cream on her face rub it smoothly", "video_id": "video12469", "sen_id": 242818}, {"caption": "the woman applies a primer to her face to show people what it looks like", "video_id": "video12469", "sen_id": 242819}, {"caption": "a video that is showing a public location in a foreign country", "video_id": "video12177", "sen_id": 242820}, {"caption": "a group of people set on a creek bank near a hand made wooden sign", "video_id": "video12177", "sen_id": 242821}, {"caption": "a sign on a board and some people by a natural stream in the jungle", "video_id": "video12177", "sen_id": 242822}, {"caption": "a pool or hot springs is shown followed by a couple children walking through a cave on a hike", "video_id": "video12177", "sen_id": 242823}, {"caption": "a group of people sitting in natural springs and showing a flowing river there are also waterfalls and caves", "video_id": "video12177", "sen_id": 242824}, {"caption": "a man showing and telling you information about mainit springs", "video_id": "video12177", "sen_id": 242825}, {"caption": "mainit sulfuric hot springs are shown as well as the waterfalls that flow into the river", "video_id": "video12177", "sen_id": 242826}, {"caption": "a girl in checks shirt wearing dress sitting and book on tables inside forest person moving water scene displaying on screen", "video_id": "video12177", "sen_id": 242827}, {"caption": "men and women walking on the forest and sitting near the lake", "video_id": "video12177", "sen_id": 242828}, {"caption": "people sitting in the manut hot water springs and hiking to get to the springs", "video_id": "video12177", "sen_id": 242829}, {"caption": "a group of people sitting in a hot spring and then walking down a stairway and up in a cavern", "video_id": "video12177", "sen_id": 242830}, {"caption": "a man describes some hot springs and a valley which they are in", "video_id": "video12177", "sen_id": 242831}, {"caption": "some people are enjoying on a picnic spot", "video_id": "video12177", "sen_id": 242832}, {"caption": "lady introducing us to the beautiful small lakes in a park", "video_id": "video12177", "sen_id": 242833}, {"caption": "a person speaking about the site seeing places in a forest around the water", "video_id": "video12177", "sen_id": 242834}, {"caption": "a group of people are sitting in springs soaking their feet and relaxing", "video_id": "video12177", "sen_id": 242835}, {"caption": "a boy and this girls goes to outting and forest area and the river", "video_id": "video12177", "sen_id": 242836}, {"caption": "mainit springs holiday sopt with natural water falls amazing look", "video_id": "video12177", "sen_id": 242837}, {"caption": "some group of people are walking in the forest", "video_id": "video12177", "sen_id": 242838}, {"caption": "some water is coming down from the rocky cliffs", "video_id": "video12177", "sen_id": 242839}, {"caption": "lush green hills in the distance covered in clouds", "video_id": "video12201", "sen_id": 242840}, {"caption": "a view of a foggy landscape with mountains and people muttering in the background", "video_id": "video12201", "sen_id": 242841}, {"caption": "a panoramic view of a green field and a mountian covered in dense thick clouds", "video_id": "video12201", "sen_id": 242842}, {"caption": "come with us as we travel through one of the last wild places on earth", "video_id": "video12201", "sen_id": 242843}, {"caption": "there is a lot of fog on a green mountainous terrain", "video_id": "video12201", "sen_id": 242844}, {"caption": "nice and beautiful nature with greenery all around and mist can be seen", "video_id": "video12201", "sen_id": 242845}, {"caption": "a beautiful rivers with variety of mountain", "video_id": "video12201", "sen_id": 242846}, {"caption": "a large cloud covered hill is being shown", "video_id": "video12201", "sen_id": 242847}, {"caption": "a nature showing video and showing the fog", "video_id": "video12201", "sen_id": 242848}, {"caption": "a rain showered in a hilly area and it is covered by mists", "video_id": "video12201", "sen_id": 242849}, {"caption": "there is a landscape with dim light and snow", "video_id": "video12201", "sen_id": 242850}, {"caption": "there is a beautiful scenery a waterfall and also a nice hotel", "video_id": "video12201", "sen_id": 242851}, {"caption": "nature beautiful mountain in trees and mist there", "video_id": "video12201", "sen_id": 242852}, {"caption": "it is looking like forest and the sky is full of clouds", "video_id": "video12201", "sen_id": 242853}, {"caption": "a person is showing cloudy mountain with ice on top", "video_id": "video12201", "sen_id": 242854}, {"caption": "there is a mountain with clouded sky and faded sun", "video_id": "video12201", "sen_id": 242855}, {"caption": "its green color forest area looks greeny", "video_id": "video12201", "sen_id": 242856}, {"caption": "the camera pans over the fog covered valley", "video_id": "video12201", "sen_id": 242857}, {"caption": "a clouds scene and grass land scene images shown on screen", "video_id": "video12201", "sen_id": 242858}, {"caption": "some misty mountains are in the distance", "video_id": "video12201", "sen_id": 242859}, {"caption": "a woman eating her food with a fork at a restaurant then giving the food a smile and a thumbs up", "video_id": "video11693", "sen_id": 242860}, {"caption": "a woman with a scarf tries a new dish in a restaurant", "video_id": "video11693", "sen_id": 242861}, {"caption": "a woman is seen eating dessert she has on a white scarf she wipes her mouth with a napkin she seems to enjoy the food", "video_id": "video11693", "sen_id": 242862}, {"caption": "a woman in a white scarf described what was in the french toast that she ate", "video_id": "video11693", "sen_id": 242863}, {"caption": "a women in a restaurant is saying something and eating", "video_id": "video11693", "sen_id": 242864}, {"caption": "thw woman is sitting in the restaurant with trying to taste food", "video_id": "video11693", "sen_id": 242865}, {"caption": "a girl is in a restaurant she is eating french toast with cream cheese", "video_id": "video11693", "sen_id": 242866}, {"caption": "a female tv anchor tasting food in a restaurant", "video_id": "video11693", "sen_id": 242867}, {"caption": "there is a woman eating a dish from a restaurant", "video_id": "video11693", "sen_id": 242868}, {"caption": "a lady trying a new food in hotel and see is explain her experience about food", "video_id": "video11693", "sen_id": 242869}, {"caption": "television anchor tasting food in restaurant and explaining on it", "video_id": "video11693", "sen_id": 242870}, {"caption": "there is a women eating a yellow color dish", "video_id": "video11693", "sen_id": 242871}, {"caption": "a woman is discussing her meal choice at a restaurant", "video_id": "video11693", "sen_id": 242872}, {"caption": "the girl eat in the restaurant has the white cloth around her neck she says its good", "video_id": "video11693", "sen_id": 242873}, {"caption": "a woman in hotel carrying food in fork and talking something", "video_id": "video11693", "sen_id": 242874}, {"caption": "a woman in a restaurant is eating some food", "video_id": "video11693", "sen_id": 242875}, {"caption": "a woman wearing a white scarf and a grey sweater taste tests some food at a restaurant", "video_id": "video11693", "sen_id": 242876}, {"caption": "a lady on the restaurant eating some food with fork and wiping the lip with tissue describing it", "video_id": "video11693", "sen_id": 242877}, {"caption": "a person is tasting the ingredients for the recipe in a restaurant", "video_id": "video11693", "sen_id": 242878}, {"caption": "a woman is eating some food in a place", "video_id": "video11693", "sen_id": 242879}, {"caption": "two women create a recipe in a giant bowl", "video_id": "video10420", "sen_id": 242880}, {"caption": "two women are mixing a variety of foods into a bowl one woman holds the bowl and the other adds the ingredients", "video_id": "video10420", "sen_id": 242881}, {"caption": "a woman is putting ingredients in a bowl that another woman is holding", "video_id": "video10420", "sen_id": 242882}, {"caption": "two young women in a kitchen prepare a meal in a blue bowl", "video_id": "video10420", "sen_id": 242883}, {"caption": "tow ladies was cooking and one lady pouring something on the bowl which is on the hand of another lady", "video_id": "video10420", "sen_id": 242884}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10420", "sen_id": 242885}, {"caption": "there are two woman making a dish", "video_id": "video10420", "sen_id": 242886}, {"caption": "two girls were trying to prepare some dish in kitchen", "video_id": "video10420", "sen_id": 242887}, {"caption": "two girls inside kitchen mixing inside bowl and drink in hand preparing to eat dish displaying on screen", "video_id": "video10420", "sen_id": 242888}, {"caption": "a couple of women in a room are making something", "video_id": "video10420", "sen_id": 242889}, {"caption": "there is a woman preparing a dish with a friend", "video_id": "video10420", "sen_id": 242890}, {"caption": "a lady pours something to the bowl held by another one", "video_id": "video10420", "sen_id": 242891}, {"caption": "a two women are doing some thing like cooking", "video_id": "video10420", "sen_id": 242892}, {"caption": "two funny women pour food in a blue bowl", "video_id": "video10420", "sen_id": 242893}, {"caption": "a woman is pouring some food in a bowl", "video_id": "video10420", "sen_id": 242894}, {"caption": "two ladies pouring carrots and celery in a blue plastic dish and then mixing in some cream of chicken and other ingredients", "video_id": "video10420", "sen_id": 242895}, {"caption": "two women one holding a blue mixing bowl in front of herself while the other adds ingredients", "video_id": "video10420", "sen_id": 242896}, {"caption": "two girls are making a salad in their kitchen", "video_id": "video10420", "sen_id": 242897}, {"caption": "a young woman is holding a big blue bowl as another adds ingredients like sliced vegetables cream to make a dish", "video_id": "video10420", "sen_id": 242898}, {"caption": "two women in a kitchen are mixing food", "video_id": "video10420", "sen_id": 242899}, {"caption": "2 indian one sitting and one standing up are having a conversation near a fence", "video_id": "video12831", "sen_id": 242900}, {"caption": "a man sitting and smoking a cigarette is talking to another man", "video_id": "video12831", "sen_id": 242901}, {"caption": "a man is seated witha cigarette in his mouth he talks and lights it", "video_id": "video12831", "sen_id": 242902}, {"caption": "a man having cigaret on her mounth", "video_id": "video12831", "sen_id": 242903}, {"caption": "the men is talking in spanish and smoking a cigarete", "video_id": "video12831", "sen_id": 242904}, {"caption": "two friends are having conversation and smoking cigarettes", "video_id": "video12831", "sen_id": 242905}, {"caption": "man leaning on a fence talking to a sitting man who is smoking", "video_id": "video12831", "sen_id": 242906}, {"caption": "there is a check shirt man talking to a man", "video_id": "video12831", "sen_id": 242907}, {"caption": "a boy with the smoke on his mouth while his friend near watching him", "video_id": "video12831", "sen_id": 242908}, {"caption": "two cool indian youth discuss their lifestyles while one lights up a cigarette", "video_id": "video12831", "sen_id": 242909}, {"caption": "there are two persons in these video from the movie pokiria person in black shirt smoking cigarette asking about bail case information with another person", "video_id": "video12831", "sen_id": 242910}, {"caption": "two men are talking beside a fence and one man is smoking a cigarette", "video_id": "video12831", "sen_id": 242911}, {"caption": "two foreign men talking about something while one man smokes a cigarette", "video_id": "video12831", "sen_id": 242912}, {"caption": "a group of young indian men sit around smoking", "video_id": "video12831", "sen_id": 242913}, {"caption": "a video movie scene hero siting and smoking cigerete and speaking with other guy displaying on screen", "video_id": "video12831", "sen_id": 242914}, {"caption": "a man is sitting down near a fence", "video_id": "video12831", "sen_id": 242915}, {"caption": "a man who is standing is wearing black pants is talking to a man who is seated smoking", "video_id": "video12831", "sen_id": 242916}, {"caption": "a men are talking in the ground", "video_id": "video12831", "sen_id": 242917}, {"caption": "two guys one white and one mexican smoking a cigarette behind a chain fence", "video_id": "video12831", "sen_id": 242918}, {"caption": "a man is sitting down near a fenece", "video_id": "video12831", "sen_id": 242919}, {"caption": "a white sports car peels out down the road loses control and crashes into traffic", "video_id": "video12797", "sen_id": 242920}, {"caption": "the white mustang loses control and spins into the line of cars", "video_id": "video12797", "sen_id": 242921}, {"caption": "a white car was going down the street and made a turn then crashed into another car", "video_id": "video12797", "sen_id": 242922}, {"caption": "a white car speeding around a turn then swerving into oncoming traffic", "video_id": "video12797", "sen_id": 242923}, {"caption": "a white forward mustang lost control of their vehicle and spun out crashing into oncoming traffic", "video_id": "video12797", "sen_id": 242924}, {"caption": "a white car speeding across the road and crashing", "video_id": "video12797", "sen_id": 242925}, {"caption": "people shooting the actions of white colour car on the road", "video_id": "video12797", "sen_id": 242926}, {"caption": "a white car is speeding down the road and makes it hard left turn which makes him crash into other cars", "video_id": "video12797", "sen_id": 242927}, {"caption": "a car going on road and container goes to the same road", "video_id": "video12797", "sen_id": 242928}, {"caption": "a white car drag races and crashes into another car in the opposite lane", "video_id": "video12797", "sen_id": 242929}, {"caption": "a white color car moving on road fast many cars beside dashing and catching camera displaying on screen", "video_id": "video12797", "sen_id": 242930}, {"caption": " and comment as a white car speeds recklessly thru traffic and then crashes into other cars", "video_id": "video12797", "sen_id": 242931}, {"caption": "handheld cam video of a dumb ass speeding out of control", "video_id": "video12797", "sen_id": 242932}, {"caption": "what appears to be a racing car accelerates fast then makes a wide turn to the opposite side of the road", "video_id": "video12797", "sen_id": 242933}, {"caption": "the white car is being driven very fast on the street", "video_id": "video12797", "sen_id": 242934}, {"caption": "some cars are parked outside on a road", "video_id": "video12797", "sen_id": 242935}, {"caption": "a car is running on the road with full of speed", "video_id": "video12797", "sen_id": 242936}, {"caption": "a white ford mustang with a black racing stripe drifts around a corner on a three lane road before losing control", "video_id": "video12797", "sen_id": 242937}, {"caption": "a car speeds around a corner and spins out into slow moving traffic in opposite side of highway", "video_id": "video12797", "sen_id": 242938}, {"caption": "a white car is shown speeding on a highway and proceeding to hit a car", "video_id": "video12797", "sen_id": 242939}, {"caption": "a fun clip from a nationals baseball game", "video_id": "video11830", "sen_id": 242940}, {"caption": "a catcher wears a yellow necklace with a dollar-sign pendant over his vest during a ball game after a batter hits a foul ball", "video_id": "video11830", "sen_id": 242941}, {"caption": "a player is about to hit the ball on the field", "video_id": "video11830", "sen_id": 242942}, {"caption": "baseball players are playing a game before we see the image of the umpire edited to appear like a thug in a gold chain", "video_id": "video11830", "sen_id": 242943}, {"caption": "baseball players do a play that the announcer finds amusing", "video_id": "video11830", "sen_id": 242944}, {"caption": "there is someone playing baseball with big audience", "video_id": "video11830", "sen_id": 242945}, {"caption": "a baseball catcher is wearing a yellow chain necklace with a large-dollar sign pendant over his dark chest protector during a game", "video_id": "video11830", "sen_id": 242946}, {"caption": "two teams are playing a game of professional baseball", "video_id": "video11830", "sen_id": 242947}, {"caption": "a pitcher throws a pitch that the batter balls off to the side", "video_id": "video11830", "sen_id": 242948}, {"caption": "a white dress color cloth and red player playing game ball throwing and hitting with bat catching audience watching displaying on screen", "video_id": "video11830", "sen_id": 242949}, {"caption": "in a ground a man in white t shirt with black cap throw a boll and another man in red bating", "video_id": "video11830", "sen_id": 242950}, {"caption": "baseball players are playing a game in a stadium for an audience", "video_id": "video11830", "sen_id": 242951}, {"caption": "a baseball game is in progress and a commentary is being heard", "video_id": "video11830", "sen_id": 242952}, {"caption": "players hitting ball to other player in the stadium with more people around them", "video_id": "video11830", "sen_id": 242953}, {"caption": "the player is wearing blue and white dress and is playing well", "video_id": "video11830", "sen_id": 242954}, {"caption": "some baseball players are doing their best to win", "video_id": "video11830", "sen_id": 242955}, {"caption": "there is a man with cap throwing ball with full power", "video_id": "video11830", "sen_id": 242956}, {"caption": "a baseball pitcher throws the ball the batter swings but causes a foul", "video_id": "video11830", "sen_id": 242957}, {"caption": "a two team are playing a baseball game", "video_id": "video11830", "sen_id": 242958}, {"caption": "there is a baseball going on and in the back of the batter up the umpire has a superimposed or clipart hiphop gold chain around his neck while nwa thug life music plays in the background over the live commentary", "video_id": "video11830", "sen_id": 242959}, {"caption": "a man wearing black framed glasses is standing in a kitchen informing how to win a glassed bottle crystal cake server", "video_id": "video10312", "sen_id": 242960}, {"caption": "a bald man wearing black-frame eyeglasses stands in a kitchen with wooden cabinets and places a box cover over a silver cake cutter with crystal handle", "video_id": "video10312", "sen_id": 242961}, {"caption": "a man with glasses standing in his kitchen", "video_id": "video10312", "sen_id": 242962}, {"caption": "a man in glasses is teaching the viewers how to make a type of food", "video_id": "video10312", "sen_id": 242963}, {"caption": "a bald man in glasses in a kitchen boxing a cake server", "video_id": "video10312", "sen_id": 242964}, {"caption": "an inhome chef works in his kitchen and closes a box that holds a cake server", "video_id": "video10312", "sen_id": 242965}, {"caption": "a man on a tv show talking to viewers about how to win a prize at the end of the show", "video_id": "video10312", "sen_id": 242966}, {"caption": "a man is thanking his viewers for watching his channel", "video_id": "video10312", "sen_id": 242967}, {"caption": "a man wearing specs talking", "video_id": "video10312", "sen_id": 242968}, {"caption": "the man in the video is telling how to win the crystal cake server when we stay tuned", "video_id": "video10312", "sen_id": 242969}, {"caption": "a fat guy with specks closing the liquor bottle in a box", "video_id": "video10312", "sen_id": 242970}, {"caption": "guy in glass with moustache taking to the camera", "video_id": "video10312", "sen_id": 242971}, {"caption": "there is a specs man talking inside the room", "video_id": "video10312", "sen_id": 242972}, {"caption": "a bald man with a spectacle is talking", "video_id": "video10312", "sen_id": 242973}, {"caption": "a man with bald head wearing a specs and a black t-shirt talking", "video_id": "video10312", "sen_id": 242974}, {"caption": "a man in the kitchen explaining how to win a contest", "video_id": "video10312", "sen_id": 242975}, {"caption": "an african-american man in glasses is explaining what he will be making during his cooking show", "video_id": "video10312", "sen_id": 242976}, {"caption": "an inhome chef talks about a cake server he is planning on giving away", "video_id": "video10312", "sen_id": 242977}, {"caption": "a man wearing glasses is about to do a recipe about country food", "video_id": "video10312", "sen_id": 242978}, {"caption": "a man with glasses is talking to some people", "video_id": "video10312", "sen_id": 242979}, {"caption": "mike huckabee speaks about kim davis appealing being put into jail", "video_id": "video11341", "sen_id": 242980}, {"caption": "a politician criticizes the jailing of a woman for following her conscience", "video_id": "video11341", "sen_id": 242981}, {"caption": "a old white guy in a suit and red tie is reporting the news", "video_id": "video11341", "sen_id": 242982}, {"caption": "men talk about a woman who was sentenced to jail", "video_id": "video11341", "sen_id": 242983}, {"caption": "a man in a suit and tie is talking on the news", "video_id": "video11341", "sen_id": 242984}, {"caption": "a man is interviewed about an improper jailing of an american citizen", "video_id": "video11341", "sen_id": 242985}, {"caption": "there is an old man in black speaking seriously about something", "video_id": "video11341", "sen_id": 242986}, {"caption": "a political talk show host is debating on whether or not a local government employee broke the law", "video_id": "video11341", "sen_id": 242987}, {"caption": "an old man sitting in ash colour coat wearing speaking with other man in blue dress displaying on screen", "video_id": "video11341", "sen_id": 242988}, {"caption": "a man talking on the news about someone being put in jail and how it isn t fair", "video_id": "video11341", "sen_id": 242989}, {"caption": "mike huckabee on fox news talking about the ky clerk case", "video_id": "video11341", "sen_id": 242990}, {"caption": "a news reader reading a news in news program", "video_id": "video11341", "sen_id": 242991}, {"caption": "fox news reporter talks about same sex marriage and the laws that apply with this", "video_id": "video11341", "sen_id": 242992}, {"caption": "mike huckabee discusses a case in kentucky being reviewed by the supreme court", "video_id": "video11341", "sen_id": 242993}, {"caption": "guy in suit and tie talking to the camera in studio", "video_id": "video11341", "sen_id": 242994}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video11341", "sen_id": 242995}, {"caption": "a man in a black suit talks about the law", "video_id": "video11341", "sen_id": 242996}, {"caption": "mike huckabee on the television channel fox news discussing a kentucky clerk jail order", "video_id": "video11341", "sen_id": 242997}, {"caption": "a man explaining his view about a woman who was jailed without bail for a stance she took on same sex marriage", "video_id": "video11341", "sen_id": 242998}, {"caption": "a guy oin tv is talking about some stuff", "video_id": "video11341", "sen_id": 242999}, {"caption": "a video that is showing how a cancer cell grows", "video_id": "video10770", "sen_id": 243000}, {"caption": "a lecture where the speaker shows slides on how cancerous cells can spread very quickly", "video_id": "video10770", "sen_id": 243001}, {"caption": "a graph comparing tumor sizes and a cartoon image of skin referencing cancer", "video_id": "video10770", "sen_id": 243002}, {"caption": "a man speaking about how cancer can become dangerous", "video_id": "video10770", "sen_id": 243003}, {"caption": "a narrator explains how cancer can grow while slides are being shown on screen", "video_id": "video10770", "sen_id": 243004}, {"caption": "a diagram shows how cancer becomes dangerous in the body", "video_id": "video10770", "sen_id": 243005}, {"caption": "a tutorial for how cancer becomes dangerous", "video_id": "video10770", "sen_id": 243006}, {"caption": "the growth of cancer is graphed and details about the malignant effect of cancer", "video_id": "video10770", "sen_id": 243007}, {"caption": "a slide shoe depicts the affect of cancer in the body", "video_id": "video10770", "sen_id": 243008}, {"caption": "a man in blue dress standing on stage and explaning about science topic displaying on screen", "video_id": "video10770", "sen_id": 243009}, {"caption": "its about a topic how cancer becomes dangerous", "video_id": "video10770", "sen_id": 243010}, {"caption": "a man on stage explains about the cancer and graph is shown", "video_id": "video10770", "sen_id": 243011}, {"caption": "its a statistics diagram about how the cancer becomes so dangerous", "video_id": "video10770", "sen_id": 243012}, {"caption": "a man describing how caner becomes dangerous by showing different charts", "video_id": "video10770", "sen_id": 243013}, {"caption": "a symposium on how tumors actually grow", "video_id": "video10770", "sen_id": 243014}, {"caption": "there is a blue shirt man talking about cancer", "video_id": "video10770", "sen_id": 243015}, {"caption": "a man explaining about the cancer and its causes", "video_id": "video10770", "sen_id": 243016}, {"caption": "a man talks about cancer while referring to a slide presentation", "video_id": "video10770", "sen_id": 243017}, {"caption": "a man showing the chart of tumor size and the cancer dangerous", "video_id": "video10770", "sen_id": 243018}, {"caption": "some one is talking about cancer", "video_id": "video10770", "sen_id": 243019}, {"caption": "a man is showing a woman with blonde hair how to use a blue control box", "video_id": "video10998", "sen_id": 243020}, {"caption": "a person is turning the motor on clockwise", "video_id": "video10998", "sen_id": 243021}, {"caption": "a man is showing a woman how to use a sound device for musicians", "video_id": "video10998", "sen_id": 243022}, {"caption": "a blond woman fixes dials on a blue box", "video_id": "video10998", "sen_id": 243023}, {"caption": "a man talking to a woman about songs in artist", "video_id": "video10998", "sen_id": 243024}, {"caption": "man explains to a woman how to use a blue machine which appears to be used for music", "video_id": "video10998", "sen_id": 243025}, {"caption": "a man is demonstating various features of a device which is in blue color", "video_id": "video10998", "sen_id": 243026}, {"caption": "a man explains to a woman how to use a device", "video_id": "video10998", "sen_id": 243027}, {"caption": "a man is explain about a electrical equipment", "video_id": "video10998", "sen_id": 243028}, {"caption": "a man is explaining about a blue handy music system", "video_id": "video10998", "sen_id": 243029}, {"caption": "a man demostrates a music device to a woman", "video_id": "video10998", "sen_id": 243030}, {"caption": "a man explaining the features of a machine to a women sitting near him", "video_id": "video10998", "sen_id": 243031}, {"caption": "man showing woman how to use a device about songs and artists how to work the device", "video_id": "video10998", "sen_id": 243032}, {"caption": "a person is explaining some thing about a product on screen", "video_id": "video10998", "sen_id": 243033}, {"caption": "some one is describing the working of a electronic checking device", "video_id": "video10998", "sen_id": 243034}, {"caption": "a man explaining to a woman how to operate a machine that has something to do with music", "video_id": "video10998", "sen_id": 243035}, {"caption": "a man teaching a woman how to use a machine for music", "video_id": "video10998", "sen_id": 243036}, {"caption": "a man describes the various settings of a piece of musical electronics to a woman", "video_id": "video10998", "sen_id": 243037}, {"caption": "a girl and a boy showing a screen with hand how to skip the next on screen displaying on screen", "video_id": "video10998", "sen_id": 243038}, {"caption": "a blue box with lights is being shown", "video_id": "video10998", "sen_id": 243039}, {"caption": "a man with dreadlocks in a basketball gym challenges an opponent for his friend", "video_id": "video10943", "sen_id": 243040}, {"caption": "a young basketball player talks to some friends on an indoor court", "video_id": "video10943", "sen_id": 243041}, {"caption": "a black man in a black jersey and dreads is playing basketball", "video_id": "video10943", "sen_id": 243042}, {"caption": "a man who is on a basketball court and talking smack to a future opponent", "video_id": "video10943", "sen_id": 243043}, {"caption": "a man with braids is wearing a basketball jersey and is trash talking on the court", "video_id": "video10943", "sen_id": 243044}, {"caption": "there are many players practising some game in the hall", "video_id": "video10943", "sen_id": 243045}, {"caption": "a youn man with long curly hair approaches a boy sitting at a table", "video_id": "video10943", "sen_id": 243046}, {"caption": "several young men play basketball in a gym and speak about it", "video_id": "video10943", "sen_id": 243047}, {"caption": "a man having long hair teaching something to his student", "video_id": "video10943", "sen_id": 243048}, {"caption": "a black player with long player preparing himself for a basketball competition", "video_id": "video10943", "sen_id": 243049}, {"caption": "there is a long hair man talking with a man", "video_id": "video10943", "sen_id": 243050}, {"caption": "players are sitting on a room", "video_id": "video10943", "sen_id": 243051}, {"caption": "young african american basketball players creating a pre-game intimidation video", "video_id": "video10943", "sen_id": 243052}, {"caption": "some africans who are playing basketball tell about how they are preparing for a big game", "video_id": "video10943", "sen_id": 243053}, {"caption": "several basketball players walking on a basketball court", "video_id": "video10943", "sen_id": 243054}, {"caption": "a man with dreadlocked hair talking to the camera while walking around a basketball court", "video_id": "video10943", "sen_id": 243055}, {"caption": "a man with dreadlocks in a basketball jersey is talking into a camera he appears to be inside a gymnasium", "video_id": "video10943", "sen_id": 243056}, {"caption": "an african american man walking and cursing at another man who is sitting down", "video_id": "video10943", "sen_id": 243057}, {"caption": "boy has very long hair and black skin he feel so happy", "video_id": "video10943", "sen_id": 243058}, {"caption": "two men on a basketball court one in a black shirt saying he s coming", "video_id": "video10943", "sen_id": 243059}, {"caption": "four silver lights and a curved metal black bar are on top of a vehicle following a car through a flooded dirt road in a wooded area", "video_id": "video11375", "sen_id": 243060}, {"caption": "view from the top of a vehicle following another through rough flooded forest terrain", "video_id": "video11375", "sen_id": 243061}, {"caption": "a hood view of a vehicle riding down the road in a forrest", "video_id": "video11375", "sen_id": 243062}, {"caption": "a vehicle is driving down a muddy road in the forest", "video_id": "video11375", "sen_id": 243063}, {"caption": "a dune buggy prepares to make a run through the middle of a long deep mud hole", "video_id": "video11375", "sen_id": 243064}, {"caption": "a person is riding a jeep which has four headlights", "video_id": "video11375", "sen_id": 243065}, {"caption": "a truck with lights on top goes down a muddy road very slowly", "video_id": "video11375", "sen_id": 243066}, {"caption": "a person drives his vehicle in the dense forest", "video_id": "video11375", "sen_id": 243067}, {"caption": "a vehicle is moving in the forest road", "video_id": "video11375", "sen_id": 243068}, {"caption": "an off road truck follows another through a large muddy puddle on through woods", "video_id": "video11375", "sen_id": 243069}, {"caption": "a truck with many headlights and a push bar is off-roading through rugged terrain", "video_id": "video11375", "sen_id": 243070}, {"caption": "the inside view of a truck travelling down a road in a forest", "video_id": "video11375", "sen_id": 243071}, {"caption": "the top of a truck with 4 silver spotlights on top driving through a muddy trail in the woods", "video_id": "video11375", "sen_id": 243072}, {"caption": "jeep traveling in a forest", "video_id": "video11375", "sen_id": 243073}, {"caption": "a person rides along a dirt road in the woods", "video_id": "video11375", "sen_id": 243074}, {"caption": "there is a vehicle moving to the forest", "video_id": "video11375", "sen_id": 243075}, {"caption": "a car is running on the forest", "video_id": "video11375", "sen_id": 243076}, {"caption": "off road vehicles are driving down a muddy wet path", "video_id": "video11375", "sen_id": 243077}, {"caption": "a cameria is mounted on the hood of a four wheel drive vehicle that is about to plow through a mud hole", "video_id": "video11375", "sen_id": 243078}, {"caption": "a many persons standing car inside forest moving trees beside in muddy road slowly displaying on screen", "video_id": "video11375", "sen_id": 243079}, {"caption": "two men play a hotly contested table tennis match", "video_id": "video12065", "sen_id": 243080}, {"caption": "tennis players playing a very competitive match of tennis", "video_id": "video12065", "sen_id": 243081}, {"caption": "a fast professional ping-pong game is played on a purple table followed by a slower professional game played on a muted-blue table", "video_id": "video12065", "sen_id": 243082}, {"caption": "a man in a red shirt plays a fast game of table tennis against man in a blue shirt", "video_id": "video12065", "sen_id": 243083}, {"caption": "a clip of a ping pong rally with music behind it", "video_id": "video12065", "sen_id": 243084}, {"caption": "people playing a invigorating game of table tennis then a video game table tennis match", "video_id": "video12065", "sen_id": 243085}, {"caption": "two people one in red one in blue are playing ping pong", "video_id": "video12065", "sen_id": 243086}, {"caption": "two players are playing table tennis", "video_id": "video12065", "sen_id": 243087}, {"caption": "two men play a hotly contested ping pong match in a stadium", "video_id": "video12065", "sen_id": 243088}, {"caption": "ping pong players go at it at high speeds", "video_id": "video12065", "sen_id": 243089}, {"caption": "two table tennis players playing and audience cheering them a song is playing in the background", "video_id": "video12065", "sen_id": 243090}, {"caption": "two young men are playing ping pong in a stadium", "video_id": "video12065", "sen_id": 243091}, {"caption": "two men are playing ping pong in a professional venue two men are hitting a ping pong ball on a ping pong table in a sports competition", "video_id": "video12065", "sen_id": 243092}, {"caption": "two men play a lively game of badminton on a court before an audience", "video_id": "video12065", "sen_id": 243093}, {"caption": "two men are playing professional ping pong in front of a crowd", "video_id": "video12065", "sen_id": 243094}, {"caption": "ping pong players in orange and blue tshirt playing against each other in a match", "video_id": "video12065", "sen_id": 243095}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video12065", "sen_id": 243096}, {"caption": "two persons playing table tennis very consciously", "video_id": "video12065", "sen_id": 243097}, {"caption": "a table tennis match is shown with music playing and an audience cheering", "video_id": "video12065", "sen_id": 243098}, {"caption": "two players are playing table tennis in a sports event", "video_id": "video12065", "sen_id": 243099}, {"caption": "multiple pairs of high heels are displayed in succession as part of an animated slide show", "video_id": "video10520", "sen_id": 243100}, {"caption": "a slideshow of red and black high heels", "video_id": "video10520", "sen_id": 243101}, {"caption": "blue flowers surrounding paires of high heel shoes", "video_id": "video10520", "sen_id": 243102}, {"caption": "music playing in the background showing a slideshow of shoes", "video_id": "video10520", "sen_id": 243103}, {"caption": "a beautifull high heels in different colours for fashion womens", "video_id": "video10520", "sen_id": 243104}, {"caption": "a red shows and red sandals and other sandals are in display", "video_id": "video10520", "sen_id": 243105}, {"caption": "different fashion lady shoes are being displayed beautifully", "video_id": "video10520", "sen_id": 243106}, {"caption": "it shows beautiful women cut shoes with high heels in many and combinations colors including red", "video_id": "video10520", "sen_id": 243107}, {"caption": "an ad depicting several different styles of ladies shoes to music", "video_id": "video10520", "sen_id": 243108}, {"caption": "a red color shoe wearing lady and design pair of slippers displaying on screen", "video_id": "video10520", "sen_id": 243109}, {"caption": "some one wearing the different type of high hield sandals", "video_id": "video10520", "sen_id": 243110}, {"caption": "there are close-ups of several different types of shoes", "video_id": "video10520", "sen_id": 243111}, {"caption": "a various types of foot ware is displaying", "video_id": "video10520", "sen_id": 243112}, {"caption": "fancy red shoes are shown then black shoes with a gold heel and gold on the toe section", "video_id": "video10520", "sen_id": 243113}, {"caption": "a person is showing bunch of shoe s photo on screen", "video_id": "video10520", "sen_id": 243114}, {"caption": "there are some high heels with new designs", "video_id": "video10520", "sen_id": 243115}, {"caption": "red shoes are shown on a woman s foot then a few other pairs of shoes are shown some worn and some unworn", "video_id": "video10520", "sen_id": 243116}, {"caption": "high heeled shoes are shown in a variety of settings", "video_id": "video10520", "sen_id": 243117}, {"caption": "red ruby slippers black pumps and jeweled stiletto heels are all displayed on a rotating blue box", "video_id": "video10520", "sen_id": 243118}, {"caption": "some woman is showing people her shoes", "video_id": "video10520", "sen_id": 243119}, {"caption": "a boy clicks on lists on a computer screen to match video episodes he wants to watch with the corresponding server links", "video_id": "video11411", "sen_id": 243120}, {"caption": "a person shows a webpage that can help a person use their computer better", "video_id": "video11411", "sen_id": 243121}, {"caption": "a kid showing a screen of a streaming service", "video_id": "video11411", "sen_id": 243122}, {"caption": "a young boy is giving a tutorial on how to watch movies online", "video_id": "video11411", "sen_id": 243123}, {"caption": "a computer screen with window opened ", "video_id": "video11411", "sen_id": 243124}, {"caption": "there is someone showing how to navigate around a website to watch episodes of shows", "video_id": "video11411", "sen_id": 243125}, {"caption": "a demonstration of a website that streams movies and other files", "video_id": "video11411", "sen_id": 243126}, {"caption": "a boy explains about the software application that works to view the episodes we want to watch", "video_id": "video11411", "sen_id": 243127}, {"caption": "a young man describes and demonstrates a computer program", "video_id": "video11411", "sen_id": 243128}, {"caption": "a person is clicking a things on a computer and talking about it", "video_id": "video11411", "sen_id": 243129}, {"caption": "a person is showing software in the computer", "video_id": "video11411", "sen_id": 243130}, {"caption": "telling how to watch hd videos in a website", "video_id": "video11411", "sen_id": 243131}, {"caption": "computer screen mouse clicked on the letters", "video_id": "video11411", "sen_id": 243132}, {"caption": "a web page is shown to get some list from the site", "video_id": "video11411", "sen_id": 243133}, {"caption": "a computer page is being eloborately explained page by page by a lady", "video_id": "video11411", "sen_id": 243134}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video11411", "sen_id": 243135}, {"caption": "men is talking and discussing something about setting", "video_id": "video11411", "sen_id": 243136}, {"caption": "a person is teaching some information on system about the menu", "video_id": "video11411", "sen_id": 243137}, {"caption": "this is and study video clip its help for reshers", "video_id": "video11411", "sen_id": 243138}, {"caption": "someone is scrolling through a pc program", "video_id": "video11411", "sen_id": 243139}, {"caption": "a woman shoots a man while a child in the background covers his ears in anticipation of the shot", "video_id": "video11271", "sen_id": 243140}, {"caption": "a man discusses a mistake found in a scene of a classic movie", "video_id": "video11271", "sen_id": 243141}, {"caption": "a man grabs a woman's arm she pulls a gun and shoots him while a child plugs his ears in the background", "video_id": "video11271", "sen_id": 243142}, {"caption": "a man describing a clip of an older movie", "video_id": "video11271", "sen_id": 243143}, {"caption": "hitchcock thriller scene with boy plugging his ears in the background", "video_id": "video11271", "sen_id": 243144}, {"caption": "man explains about movie called north by northwest while image of the movie plays", "video_id": "video11271", "sen_id": 243145}, {"caption": "a lady holding a gun on a man in a restaurant", "video_id": "video11271", "sen_id": 243146}, {"caption": "a man in a suit talking to a lady", "video_id": "video11271", "sen_id": 243147}, {"caption": "a man in a suit is shot in by a woman in a black dress", "video_id": "video11271", "sen_id": 243148}, {"caption": "here a handsome man in black shirt is talking to a beautiful girl in black dress", "video_id": "video11271", "sen_id": 243149}, {"caption": "there is a suit man moving with a women", "video_id": "video11271", "sen_id": 243150}, {"caption": "there is a man and he is reding news", "video_id": "video11271", "sen_id": 243151}, {"caption": "a scene from north by northwest with cary grant talking to a lady", "video_id": "video11271", "sen_id": 243152}, {"caption": "in which west lets habit back of up coming", "video_id": "video11271", "sen_id": 243153}, {"caption": "a movie scene is been shot and a women is gun-shot a man in the restaurant where many people are gathered around there", "video_id": "video11271", "sen_id": 243154}, {"caption": "there is a suit man talking to a brown hair woman", "video_id": "video11271", "sen_id": 243155}, {"caption": "a men in suit is touching a women in restaurant", "video_id": "video11271", "sen_id": 243156}, {"caption": "hollywood dailies north by northwest hero and heroine was", "video_id": "video11271", "sen_id": 243157}, {"caption": "a man and a lady were fighting but it was funny", "video_id": "video11271", "sen_id": 243158}, {"caption": "a man and women in gray dress clothes arguing", "video_id": "video11271", "sen_id": 243159}, {"caption": "two parents are looking at their son and are gathered around", "video_id": "video11268", "sen_id": 243160}, {"caption": "a reporter discusses a strange family arrangement with three middle aged people", "video_id": "video11268", "sen_id": 243161}, {"caption": "a news reporter does a story on a very strange family set up", "video_id": "video11268", "sen_id": 243162}, {"caption": "people are spending time in the kitchen together", "video_id": "video11268", "sen_id": 243163}, {"caption": "two men and a woman standing in a kitchen talking about their relationship", "video_id": "video11268", "sen_id": 243164}, {"caption": "two men and a woman standing in a kitchen talking about their relationship", "video_id": "video11268", "sen_id": 243165}, {"caption": "a woman talking about a family with a child", "video_id": "video11268", "sen_id": 243166}, {"caption": "a man holding a child and people discussing", "video_id": "video11268", "sen_id": 243167}, {"caption": "visit a local family of designers discussing how advanced stage alzheimer's has impacted their daily lives", "video_id": "video11268", "sen_id": 243168}, {"caption": "a reporter talks to a family about their very odd living arrangements", "video_id": "video11268", "sen_id": 243169}, {"caption": "a woman with two husbands is being interviewed", "video_id": "video11268", "sen_id": 243170}, {"caption": "there is a man in shirt playing with a boy", "video_id": "video11268", "sen_id": 243171}, {"caption": "a father showing his loving intrest in his family", "video_id": "video11268", "sen_id": 243172}, {"caption": "a father and mother playing with their child in home", "video_id": "video11268", "sen_id": 243173}, {"caption": "an old man is playing with a young kid and a bald men along with two girls are talking over a table", "video_id": "video11268", "sen_id": 243174}, {"caption": "there is a old man caring his grandson", "video_id": "video11268", "sen_id": 243175}, {"caption": "a woman is speaking about the family and their dynamic", "video_id": "video11268", "sen_id": 243176}, {"caption": "a couple is sitting on a couch and the man is holding his young son they move to a scene in the kitchen and there are two men and a woman", "video_id": "video11268", "sen_id": 243177}, {"caption": "a man stays at home to raise a child with a woman and her other lover", "video_id": "video11268", "sen_id": 243178}, {"caption": "some people are doing things in a kitchen", "video_id": "video11268", "sen_id": 243179}, {"caption": "jeremy kleiner the producer of the movie is describing the zombies as they chase the people and climb up walls like an ant hill", "video_id": "video10665", "sen_id": 243180}, {"caption": "someone is being interviewed and showing clips of a movie with brad pitt", "video_id": "video10665", "sen_id": 243181}, {"caption": "a man is speaking in a dark room then zombies overrun a city by climbing over a gigantic wall in thousands", "video_id": "video10665", "sen_id": 243182}, {"caption": "a man speaking about the movie world war z as many people try to climb up a ship", "video_id": "video10665", "sen_id": 243183}, {"caption": "someone is talking about the movie in which an actor is shooting the zombies from the helicoper", "video_id": "video10665", "sen_id": 243184}, {"caption": "man in gray shirt talking about zombies and swarm behavior", "video_id": "video10665", "sen_id": 243185}, {"caption": "there is a man talking about his new movie", "video_id": "video10665", "sen_id": 243186}, {"caption": "a movie producer is giving an interview about his recent film", "video_id": "video10665", "sen_id": 243187}, {"caption": "a man with long brown hair wearing a gray v-neck shirt explains a movie", "video_id": "video10665", "sen_id": 243188}, {"caption": "guy in grey tshirt talking to the camera about the movie", "video_id": "video10665", "sen_id": 243189}, {"caption": "a man is detailing a movie to another person", "video_id": "video10665", "sen_id": 243190}, {"caption": "a man in a dark shirt is talking about a movie and then the movie plays", "video_id": "video10665", "sen_id": 243191}, {"caption": "a movie director talks about special effect scenes in a movie he directed", "video_id": "video10665", "sen_id": 243192}, {"caption": "jeremy kleiner is talking about zombies and other organisms that swarm", "video_id": "video10665", "sen_id": 243193}, {"caption": "a man is talking about some stuff inside", "video_id": "video10665", "sen_id": 243194}, {"caption": "a movie producer talks about a zombie movie that he is producing", "video_id": "video10665", "sen_id": 243195}, {"caption": "a producer discusses how swarming metaphors are executed in his film", "video_id": "video10665", "sen_id": 243196}, {"caption": "jeremy kleiner talking a helicopter flying over hords of people form the movie world war z", "video_id": "video10665", "sen_id": 243197}, {"caption": "description of how zombies were created for an action movie", "video_id": "video10665", "sen_id": 243198}, {"caption": "some people are walking around in a alley", "video_id": "video10665", "sen_id": 243199}, {"caption": "a teenage boy is seen in a track and field competion", "video_id": "video10680", "sen_id": 243200}, {"caption": "a young boy competes in a track meet by doing the long jump", "video_id": "video10680", "sen_id": 243201}, {"caption": "a man in a white shirt and blue pants is jumping up high", "video_id": "video10680", "sen_id": 243202}, {"caption": "a man participates in a track meet by doing the long jump event", "video_id": "video10680", "sen_id": 243203}, {"caption": "a track star giving a pose next to his statistics", "video_id": "video10680", "sen_id": 243204}, {"caption": "there is a small blonde boy smiling looking down followed by his long jump and flexing his muscles", "video_id": "video10680", "sen_id": 243205}, {"caption": "a man with a white shirt and black shorts is standing with his hands on his knees", "video_id": "video10680", "sen_id": 243206}, {"caption": "a man wearing a white shirt running on a track field", "video_id": "video10680", "sen_id": 243207}, {"caption": "a boy is being interviewed followed by the boy doing a long jump and then posing for the camera in a muscle-bound position", "video_id": "video10680", "sen_id": 243208}, {"caption": "a young man doing the long lump and another young man flexing his muscles", "video_id": "video10680", "sen_id": 243209}, {"caption": "a man is running and then jumping while an audience cheers", "video_id": "video10680", "sen_id": 243210}, {"caption": "a boy is running fast on ground to perform high jump", "video_id": "video10680", "sen_id": 243211}, {"caption": "a blonde track athelete jumps a very high hurl", "video_id": "video10680", "sen_id": 243212}, {"caption": "a athalate weared sports dress and doing long jump in a ground", "video_id": "video10680", "sen_id": 243213}, {"caption": "young guy showing his long jump skill at the track", "video_id": "video10680", "sen_id": 243214}, {"caption": "some statistics about athletes are being displayed on screen", "video_id": "video10680", "sen_id": 243215}, {"caption": "a men is running behind a van very fast", "video_id": "video10680", "sen_id": 243216}, {"caption": "a trach athelete warms up by the track field", "video_id": "video10680", "sen_id": 243217}, {"caption": "the player is wearing blue and white dress and is playing well", "video_id": "video10680", "sen_id": 243218}, {"caption": "a teen boy is talking about his performance in track and field", "video_id": "video10680", "sen_id": 243219}, {"caption": "an over-enthusiastic man rocks out while running on a treadmill", "video_id": "video11856", "sen_id": 243220}, {"caption": "a man in red tshirt walking and dancing on the tread mill machine in a gym", "video_id": "video11856", "sen_id": 243221}, {"caption": "in the gymanasium the men is enjoying their exercise with the help of music", "video_id": "video11856", "sen_id": 243222}, {"caption": "a man is at the gym listening to a silly pop-techno song and pumping hir arms in the air while running on the tradmill with his mountain dew", "video_id": "video11856", "sen_id": 243223}, {"caption": "a man in a red collared shirt and beige khaki pants runs and fist pumps on the treadmill to dance music", "video_id": "video11856", "sen_id": 243224}, {"caption": "guy in red tshirt running in jym with music on", "video_id": "video11856", "sen_id": 243225}, {"caption": "a person is very happy in exercising time in runner", "video_id": "video11856", "sen_id": 243226}, {"caption": "one man enjoying jymanesium with the music lot of people are walk with their background", "video_id": "video11856", "sen_id": 243227}, {"caption": "a young man in a red shirt dances and pumps his arms while he runs on a treadmill", "video_id": "video11856", "sen_id": 243228}, {"caption": "a boy in red dress doing gym and drinking juice in screen running", "video_id": "video11856", "sen_id": 243229}, {"caption": "a man is dancing in a gym while on a treadmill", "video_id": "video11856", "sen_id": 243230}, {"caption": "a man in red is dancing in gym on gym machine", "video_id": "video11856", "sen_id": 243231}, {"caption": "the men in gym and he enterded in tredmill and he drink some water", "video_id": "video11856", "sen_id": 243232}, {"caption": "a young man is shown dancing and running on a treadmill", "video_id": "video11856", "sen_id": 243233}, {"caption": "a man wearing headphones pumps his fist on the treadmill", "video_id": "video11856", "sen_id": 243234}, {"caption": "a guy in a red shirt is running on a treadmill", "video_id": "video11856", "sen_id": 243235}, {"caption": "a man in a red shirt is exercising vigorously on a treadmill while listening to music on his earbuds", "video_id": "video11856", "sen_id": 243236}, {"caption": "a guy in a gym is running on the treadmill in a dancing manner and drinking water in between to relieve him from getting tired", "video_id": "video11856", "sen_id": 243237}, {"caption": "a man in red polo shirt is runing on a treadmill and drinking water", "video_id": "video11856", "sen_id": 243238}, {"caption": "guy in red tshirt running in gym with music in his ears", "video_id": "video11856", "sen_id": 243239}, {"caption": "a man is playing a video game involving a basketball court", "video_id": "video10707", "sen_id": 243240}, {"caption": "two minecraft characters are playing basketball in the game", "video_id": "video10707", "sen_id": 243241}, {"caption": "two men talk while playing a basketball video game", "video_id": "video10707", "sen_id": 243242}, {"caption": "someone pixelated is in a basketball field", "video_id": "video10707", "sen_id": 243243}, {"caption": "a man shooting a character in the video game", "video_id": "video10707", "sen_id": 243244}, {"caption": "its animated basket ball court it so colorful we can play this using system", "video_id": "video10707", "sen_id": 243245}, {"caption": "a beautiful green ground having a basket ball ground robot shown in the ground practicing", "video_id": "video10707", "sen_id": 243246}, {"caption": "a person is playing mine craft and trying to get more points for next level", "video_id": "video10707", "sen_id": 243247}, {"caption": "a green character is walking onto a basketball court and moving around", "video_id": "video10707", "sen_id": 243248}, {"caption": "people talk about playing basketball in a video game while playing the video game", "video_id": "video10707", "sen_id": 243249}, {"caption": "a person playing a videogame where only the screen is showing", "video_id": "video10707", "sen_id": 243250}, {"caption": "playing a basketball game in the video game minecraft", "video_id": "video10707", "sen_id": 243251}, {"caption": "a person is playing the mine craft game", "video_id": "video10707", "sen_id": 243252}, {"caption": "a screen stream of a man playing minecraft while he talks about it", "video_id": "video10707", "sen_id": 243253}, {"caption": "a person is playing on a basketball court in minecraft", "video_id": "video10707", "sen_id": 243254}, {"caption": "a guy is talking to another guy while playing a computer video game", "video_id": "video10707", "sen_id": 243255}, {"caption": "an animated lizards prepares to play basket ball in a virtual court", "video_id": "video10707", "sen_id": 243256}, {"caption": "a video game of basket ball and someone is discussing about how to play the game", "video_id": "video10707", "sen_id": 243257}, {"caption": "a gamer roam in a basket ball field where lots of balls were around the court", "video_id": "video10707", "sen_id": 243258}, {"caption": "two males narrate gameplay of a basketball videogame", "video_id": "video10707", "sen_id": 243259}, {"caption": "large black horse opening its mouth and licking inside a fenced area", "video_id": "video11631", "sen_id": 243260}, {"caption": "a horse lick sticks it tongue out and makes funny faces then another horse rolls around in the snow", "video_id": "video11631", "sen_id": 243261}, {"caption": "a black horse opening its mouth a sticking its tongue out", "video_id": "video11631", "sen_id": 243262}, {"caption": "people are laughing at horses making faces and playing in snow", "video_id": "video11631", "sen_id": 243263}, {"caption": "a black horse makes silly faces sticking its tongue out and showing its teeth another horse rolls in the snow", "video_id": "video11631", "sen_id": 243264}, {"caption": "a black horse is yawning and a woman is laughing at it", "video_id": "video11631", "sen_id": 243265}, {"caption": "people laughing while watching a horse yawn and another horse frolicking and rolling in the snow", "video_id": "video11631", "sen_id": 243266}, {"caption": "a dark colored horse yawns and there is a lady laughing in the background then a horse rolls around in the snow while a lady is still laughing", "video_id": "video11631", "sen_id": 243267}, {"caption": "a horse is moving is mouth while a man and woman laugh at it", "video_id": "video11631", "sen_id": 243268}, {"caption": "a horse in a stall is smiling at something", "video_id": "video11631", "sen_id": 243269}, {"caption": "there is a horse rolling on the sand", "video_id": "video11631", "sen_id": 243270}, {"caption": "horse yawning and smiling and rolling on the floor", "video_id": "video11631", "sen_id": 243271}, {"caption": "a woman and man laugh at horses fooling around", "video_id": "video11631", "sen_id": 243272}, {"caption": "a woman laughs at a small horse flapping its gums and another horse rolling around in the snow", "video_id": "video11631", "sen_id": 243273}, {"caption": "a horse in a stall is standing around in a stall", "video_id": "video11631", "sen_id": 243274}, {"caption": "a black horse is in a stall outside while another rolls around in the snow", "video_id": "video11631", "sen_id": 243275}, {"caption": "a woman and man are laughing as a horse in a stable makes funny faces and then again as two other play in the snow", "video_id": "video11631", "sen_id": 243276}, {"caption": "there are people laughing at a horse who is making funny faces", "video_id": "video11631", "sen_id": 243277}, {"caption": "people laughing as horses neigh and roll around", "video_id": "video11631", "sen_id": 243278}, {"caption": "a horse is rolling around in the snow", "video_id": "video11631", "sen_id": 243279}, {"caption": "video regarding the iowa senate race tv interview about the iowa senate race", "video_id": "video11836", "sen_id": 243280}, {"caption": "three men in suits are sitting around table talking about politics", "video_id": "video11836", "sen_id": 243281}, {"caption": "a group of men sitting around a table talking about politics", "video_id": "video11836", "sen_id": 243282}, {"caption": "a man in a gray suit answers questions on a tv news show", "video_id": "video11836", "sen_id": 243283}, {"caption": "a panel discusses a political race on bloomberg politics", "video_id": "video11836", "sen_id": 243284}, {"caption": "three men sitting around a table wearing suits and ties talk about data and politics", "video_id": "video11836", "sen_id": 243285}, {"caption": "the people discussing some matter in front of the table", "video_id": "video11836", "sen_id": 243286}, {"caption": "an interview with three men all wearing suits sitting down in front of a table on the table there is paper and each have a coffee mug", "video_id": "video11836", "sen_id": 243287}, {"caption": "three men are sitting around a table talking", "video_id": "video11836", "sen_id": 243288}, {"caption": "guy in suit and tie talking to couple of guys in the studio", "video_id": "video11836", "sen_id": 243289}, {"caption": "there is a suit man talking from the studio with co-workers", "video_id": "video11836", "sen_id": 243290}, {"caption": "three persons in suit who are sitting in sofa discussing about important issue in hall", "video_id": "video11836", "sen_id": 243291}, {"caption": "three men discuss financial markets on a money related news show", "video_id": "video11836", "sen_id": 243292}, {"caption": "a old man in blue coat sitting beside other man speaking on the table topic discussing", "video_id": "video11836", "sen_id": 243293}, {"caption": "some men on the news are talking", "video_id": "video11836", "sen_id": 243294}, {"caption": "there is a suit man talking with someone", "video_id": "video11836", "sen_id": 243295}, {"caption": "three men were sitting and discussing about politics", "video_id": "video11836", "sen_id": 243296}, {"caption": "three men together are having a conversation all dressed up formally", "video_id": "video11836", "sen_id": 243297}, {"caption": "three men talking around a small table on an interview show", "video_id": "video11836", "sen_id": 243298}, {"caption": "some men on tv are sitting down and talking", "video_id": "video11836", "sen_id": 243299}, {"caption": "a horse jumps over a white fence and text is displayed while a song plays in the background", "video_id": "video10850", "sen_id": 243300}, {"caption": "a horse jumping and a story about him pulling back from crossties", "video_id": "video10850", "sen_id": 243301}, {"caption": "a country song plays in the background of a written story", "video_id": "video10850", "sen_id": 243302}, {"caption": "white words against a black background tell a story", "video_id": "video10850", "sen_id": 243303}, {"caption": "a person crossing the hurdle with the horse and some wordings displayed", "video_id": "video10850", "sen_id": 243304}, {"caption": "a horse jumping over a rail and white words over a black background", "video_id": "video10850", "sen_id": 243305}, {"caption": "loud country music while words about something escaping crossties is messaged", "video_id": "video10850", "sen_id": 243306}, {"caption": "a girl talking about her childhood horse getting spooked breaking loose and running off", "video_id": "video10850", "sen_id": 243307}, {"caption": "text telling the story of a horse getting free from a crosstie", "video_id": "video10850", "sen_id": 243308}, {"caption": "a girl recalls fond memories of moments with her horse", "video_id": "video10850", "sen_id": 243309}, {"caption": "there is something written on the screen and explaining", "video_id": "video10850", "sen_id": 243310}, {"caption": "a screen is displaying paragraphs that are explaining a scenario", "video_id": "video10850", "sen_id": 243311}, {"caption": "white text is above a black background in order to describe a story", "video_id": "video10850", "sen_id": 243312}, {"caption": "a lady is singing a country song and there are background music playing", "video_id": "video10850", "sen_id": 243313}, {"caption": "a video slideshow or a horse with some font written", "video_id": "video10850", "sen_id": 243314}, {"caption": "a person recounts a story of a horse getting away", "video_id": "video10850", "sen_id": 243315}, {"caption": "a screen with paragraphs is explaining a scenario that occured before", "video_id": "video10850", "sen_id": 243316}, {"caption": "a woman rides her horse over a hurdle", "video_id": "video10850", "sen_id": 243317}, {"caption": "a song plays as a story is presented about an animal and a crosstie", "video_id": "video10850", "sen_id": 243318}, {"caption": "a black screen with music playing in the background with words in white lettering", "video_id": "video10850", "sen_id": 243319}, {"caption": "a woman is crushing up crackers in a bowl", "video_id": "video12734", "sen_id": 243320}, {"caption": "a female chef works on a recipe by crushing some crackers", "video_id": "video12734", "sen_id": 243321}, {"caption": "a woman talks about crushed up crackers she is going to use in a recipe", "video_id": "video12734", "sen_id": 243322}, {"caption": "a hand crushing crumbs into small pieces in a bowl", "video_id": "video12734", "sen_id": 243323}, {"caption": "a lady is crumbling up crackers and putting them in a bowl", "video_id": "video12734", "sen_id": 243324}, {"caption": "a woman crumbles crackers into small pieces in a blue and white bowl", "video_id": "video12734", "sen_id": 243325}, {"caption": "a woman in a colorful striped dress crushes crackers onto a plate", "video_id": "video12734", "sen_id": 243326}, {"caption": "a woman is using her hands to crunch up some bread crumbs to coat different foods with", "video_id": "video12734", "sen_id": 243327}, {"caption": "a woman preparing croutons or breadcrumbs for a steak", "video_id": "video12734", "sen_id": 243328}, {"caption": "girl in kitchen crunch the oats so that it mix well and she spread that in white plate", "video_id": "video12734", "sen_id": 243329}, {"caption": "a woman in a kitchen is crumbling apart a food item into a bowl", "video_id": "video12734", "sen_id": 243330}, {"caption": "a woman is crunching crackers to use as a breading", "video_id": "video12734", "sen_id": 243331}, {"caption": "a blonde woman in the kitchen wearing a bright colored dress crunching up crackers in a bowl", "video_id": "video12734", "sen_id": 243332}, {"caption": "a woman in a kitchen crumbling crackers into a bowl to use in her recipe", "video_id": "video12734", "sen_id": 243333}, {"caption": "a girl in green dress color a plate dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12734", "sen_id": 243334}, {"caption": "there is a woman making a dish with a plate", "video_id": "video12734", "sen_id": 243335}, {"caption": "a women crunching up crackers to put on a steak", "video_id": "video12734", "sen_id": 243336}, {"caption": "a lady in green dress crushes some integrents to make some food", "video_id": "video12734", "sen_id": 243337}, {"caption": "a lady wearing green dress explaining about some dish", "video_id": "video12734", "sen_id": 243338}, {"caption": "a person is mixing up some food in a bowl", "video_id": "video12734", "sen_id": 243339}, {"caption": "a boy is working with electronic materials in a lab", "video_id": "video11495", "sen_id": 243340}, {"caption": "a man in lines t-shirt and spectacles is saying something", "video_id": "video11495", "sen_id": 243341}, {"caption": "a t-shirt man talking from a lab", "video_id": "video11495", "sen_id": 243342}, {"caption": "a person is talking about the research he does in a lab", "video_id": "video11495", "sen_id": 243343}, {"caption": "a boy in blue t shirt wearing dress inside laboratory doing research displaying on screen", "video_id": "video11495", "sen_id": 243344}, {"caption": "a scientist is working in a lab and wearing apron", "video_id": "video11495", "sen_id": 243345}, {"caption": "man in white coat and purple gloves is working in laboratory", "video_id": "video11495", "sen_id": 243346}, {"caption": "science project is prepared and used for science day", "video_id": "video11495", "sen_id": 243347}, {"caption": "a girl smiles a boy works in the lab the boy wear specs", "video_id": "video11495", "sen_id": 243348}, {"caption": "a guy with blue red is talking about something in a lab", "video_id": "video11495", "sen_id": 243349}, {"caption": "a guy in a striped shirt is wearing some glasses", "video_id": "video11495", "sen_id": 243350}, {"caption": "a person is preparing a chemical on a laborateries", "video_id": "video11495", "sen_id": 243351}, {"caption": "there is a men in blue line tshirt talking", "video_id": "video11495", "sen_id": 243352}, {"caption": "a man wearing glasses talks as he is sitting in a laboratory", "video_id": "video11495", "sen_id": 243353}, {"caption": "a person with black dress is explaining about something inside the lab", "video_id": "video11495", "sen_id": 243354}, {"caption": "a man with specs talking from a lab", "video_id": "video11495", "sen_id": 243355}, {"caption": "one man in lab can tests and talks about it", "video_id": "video11495", "sen_id": 243356}, {"caption": "a man doing in the lab and explaing", "video_id": "video11495", "sen_id": 243357}, {"caption": "a person with blue dress in talking about something in a lab", "video_id": "video11495", "sen_id": 243358}, {"caption": "a man with glasses is speaking about something", "video_id": "video11495", "sen_id": 243359}, {"caption": "an interview with will smith on the red carpet", "video_id": "video11072", "sen_id": 243360}, {"caption": "interview footage with will smith about his new movie will smith being interviewed about his new movie", "video_id": "video11072", "sen_id": 243361}, {"caption": "will smith answers an interviewer's question in relation to will's part in a movie", "video_id": "video11072", "sen_id": 243362}, {"caption": "will smith wearing a suit and talking about a man", "video_id": "video11072", "sen_id": 243363}, {"caption": "will smith talks to someone while other people walk around behind him", "video_id": "video11072", "sen_id": 243364}, {"caption": "actor will smith answers interview questions about a recent movie role", "video_id": "video11072", "sen_id": 243365}, {"caption": "will smith talks to someone while other people stand around behind him", "video_id": "video11072", "sen_id": 243366}, {"caption": "will smith talking about his character in the movie concussion", "video_id": "video11072", "sen_id": 243367}, {"caption": "a man in a suit and tie is talking into a microphone being held by an unseen person", "video_id": "video11072", "sen_id": 243368}, {"caption": "a black male wearing a black suit black tie and a white shirt explains the storyline in a movie", "video_id": "video11072", "sen_id": 243369}, {"caption": "will smith is wearing a suit and tie and getting interviewed about his work", "video_id": "video11072", "sen_id": 243370}, {"caption": "will smith is explaining someone as people go about behind him some one is holding a large mic by will smith mouth", "video_id": "video11072", "sen_id": 243371}, {"caption": "will smith is describing his character s attributes and personality in his new film", "video_id": "video11072", "sen_id": 243372}, {"caption": "an actor in black tuxedo does interview in front of movie posters and other guests walking", "video_id": "video11072", "sen_id": 243373}, {"caption": "a man in a suit and tie is talking on tv", "video_id": "video11072", "sen_id": 243374}, {"caption": "will smith discusses his new oscar nominated film", "video_id": "video11072", "sen_id": 243375}, {"caption": "will smith giving details on a movie that he played in", "video_id": "video11072", "sen_id": 243376}, {"caption": "a man wearing black coat talking about something", "video_id": "video11072", "sen_id": 243377}, {"caption": "will smith is being interviewed about the movie he is in", "video_id": "video11072", "sen_id": 243378}, {"caption": "will smith in a suit is talking to a person", "video_id": "video11072", "sen_id": 243379}, {"caption": "a female news reporter stands in front of a very large crowd and gives her update", "video_id": "video10727", "sen_id": 243380}, {"caption": "a woman who is talking from westminster on sky news", "video_id": "video10727", "sen_id": 243381}, {"caption": "a female reporter interviews a man in a suit about an event in paris", "video_id": "video10727", "sen_id": 243382}, {"caption": "a woman with brown hair wearing a brown coat and peach scarf stands in a busy area and discusses news with a man in a studio", "video_id": "video10727", "sen_id": 243383}, {"caption": "a news anchor in a brown suite is interviewing a man with white hair about events in paris", "video_id": "video10727", "sen_id": 243384}, {"caption": "a new reporter from sky tv gives a breaking news of terrorist attack on paris", "video_id": "video10727", "sen_id": 243385}, {"caption": "seven attacks prevented in past year sky new breaking news pm", "video_id": "video10727", "sen_id": 243386}, {"caption": "a woman is interviewing a man regarding the paris attacks", "video_id": "video10727", "sen_id": 243387}, {"caption": "a lady with brown dress is taking interview through media", "video_id": "video10727", "sen_id": 243388}, {"caption": "a man and woman discuss something on tv", "video_id": "video10727", "sen_id": 243389}, {"caption": "a woman in fashionable clothing speaks on the news with an old man with white hair about paris", "video_id": "video10727", "sen_id": 243390}, {"caption": "sky news breaking news pm: seven attacks prevented in past year", "video_id": "video10727", "sen_id": 243391}, {"caption": "a lady giving the news on the spot of the place in the skynews channel", "video_id": "video10727", "sen_id": 243392}, {"caption": "a lady with brown dress is talking through media about a news", "video_id": "video10727", "sen_id": 243393}, {"caption": "a woman in a coat is talking to a man", "video_id": "video10727", "sen_id": 243394}, {"caption": "a woman news reporter reports from an urban area while a man prepares to respond", "video_id": "video10727", "sen_id": 243395}, {"caption": "a female news caster gives a report from a live remote location", "video_id": "video10727", "sen_id": 243396}, {"caption": "live tv interview on attack of terrorists on paris on the light the attack by terrorists on uk is the concern", "video_id": "video10727", "sen_id": 243397}, {"caption": "sexy blonde talking to the camera and reporting to studio in news room", "video_id": "video10727", "sen_id": 243398}, {"caption": "a woman in a coat is talking to an old man", "video_id": "video10727", "sen_id": 243399}, {"caption": "a blonde woman making a video about a presentation", "video_id": "video10573", "sen_id": 243400}, {"caption": "a woman wearing making talking in a well lighted room", "video_id": "video10573", "sen_id": 243401}, {"caption": "a woman in a black shirt talks about baking her face", "video_id": "video10573", "sen_id": 243402}, {"caption": "a woman is smiling while talking about baking with no cake", "video_id": "video10573", "sen_id": 243403}, {"caption": "a woman sits alone in a home setting and talks alone about baking", "video_id": "video10573", "sen_id": 243404}, {"caption": "a woman is discussing how to bake your face", "video_id": "video10573", "sen_id": 243405}, {"caption": "a woman telling everyone watching that she is going to bake her face", "video_id": "video10573", "sen_id": 243406}, {"caption": "on take two the lady says we are going to bake our face in a cake then decides that would be bad", "video_id": "video10573", "sen_id": 243407}, {"caption": "a lady is talking wearing black color dress", "video_id": "video10573", "sen_id": 243408}, {"caption": "a woman with long hair in a black dress is in a house and discusses baking", "video_id": "video10573", "sen_id": 243409}, {"caption": "a lady is smiling and explaining some thing on screen", "video_id": "video10573", "sen_id": 243410}, {"caption": "a woman with brown hair and a black and white top is speaking to a camera", "video_id": "video10573", "sen_id": 243411}, {"caption": "a lady is talking with black color dress", "video_id": "video10573", "sen_id": 243412}, {"caption": "a woman is is going to bake cake pastry", "video_id": "video10573", "sen_id": 243413}, {"caption": "tati from youtube videos is talking about makeup", "video_id": "video10573", "sen_id": 243414}, {"caption": "a woman prepares for a video about making a cake", "video_id": "video10573", "sen_id": 243415}, {"caption": "a woman is talking about painting her face", "video_id": "video10573", "sen_id": 243416}, {"caption": "a woman talks about a makeup process she is going to demonstrate", "video_id": "video10573", "sen_id": 243417}, {"caption": "a woman with brown hair talking about baking her face", "video_id": "video10573", "sen_id": 243418}, {"caption": "a woman is talking about baking her face like a cake", "video_id": "video10573", "sen_id": 243419}, {"caption": "a woman with long straight hair black hair wears a hoodie inside an office where there are monitors with green and blue screens a partial wall desks and a coworker facing away", "video_id": "video10859", "sen_id": 243420}, {"caption": "a woman reporter is speaking about watching tv privately", "video_id": "video10859", "sen_id": 243421}, {"caption": "gillian pensivalle reporting on watching tv with your parents", "video_id": "video10859", "sen_id": 243422}, {"caption": "a dark haired woman tells of a streaming service where you can watch television without your parents", "video_id": "video10859", "sen_id": 243423}, {"caption": "gillian pensavalle talks about using hbo go to watch tv privately to avoid uncomfortable movie scenes with parents", "video_id": "video10859", "sen_id": 243424}, {"caption": "a woman wearing a black shirt talking to the camera", "video_id": "video10859", "sen_id": 243425}, {"caption": "a women in black over coat is saying something", "video_id": "video10859", "sen_id": 243426}, {"caption": "a woman is talking about watching tv with your parents", "video_id": "video10859", "sen_id": 243427}, {"caption": "a female entertainment reporter talks about a new personal tv service", "video_id": "video10859", "sen_id": 243428}, {"caption": "a girl sitting and speaking with beside monitor displaying screen", "video_id": "video10859", "sen_id": 243429}, {"caption": "a woman with black hair is talking on tv", "video_id": "video10859", "sen_id": 243430}, {"caption": "there is a women talking from the studio", "video_id": "video10859", "sen_id": 243431}, {"caption": "a woman with long dark hair speaks to the camera in front of a room full of computers", "video_id": "video10859", "sen_id": 243432}, {"caption": "its a buzz a lady in black hair with the smiling face", "video_id": "video10859", "sen_id": 243433}, {"caption": "a free haired lady wearing a jacket is interestingly talking about something", "video_id": "video10859", "sen_id": 243434}, {"caption": "a woman with dark hair is talking on tv", "video_id": "video10859", "sen_id": 243435}, {"caption": "a women in black top is talking and shaking her hands", "video_id": "video10859", "sen_id": 243436}, {"caption": "a woman in a black shirt is talking about the akwardness of watching movies with your parents", "video_id": "video10859", "sen_id": 243437}, {"caption": "sexy brunette in black tshirt talking to the camera", "video_id": "video10859", "sen_id": 243438}, {"caption": "a woman with long hair is talking on the news", "video_id": "video10859", "sen_id": 243439}, {"caption": "a man in red is playing a ping pong game against a man in blue", "video_id": "video10492", "sen_id": 243440}, {"caption": "two ping-pong players attack the ball in a strenuous game using a blue table on a maroon floor with advertising panels in english and chinese", "video_id": "video10492", "sen_id": 243441}, {"caption": "a professional table tennis game where two men are bouncing back and forth on opposite side of the court", "video_id": "video10492", "sen_id": 243442}, {"caption": "there are two guys playing table tennis", "video_id": "video10492", "sen_id": 243443}, {"caption": "two men playing table tennis on a purple table", "video_id": "video10492", "sen_id": 243444}, {"caption": "segment of a ping pong match depicting a particularly furious set", "video_id": "video10492", "sen_id": 243445}, {"caption": "two guys playing table tennis", "video_id": "video10492", "sen_id": 243446}, {"caption": "there is a red jersey man playing table tennis with a person", "video_id": "video10492", "sen_id": 243447}, {"caption": "a terrific table tennis play is progressing between two players", "video_id": "video10492", "sen_id": 243448}, {"caption": "two asian men playing a professional match of ping pong", "video_id": "video10492", "sen_id": 243449}, {"caption": "two players are playing in a table tennis event of sports", "video_id": "video10492", "sen_id": 243450}, {"caption": "two men playing table tennis very aggressively on the stage very interestingly", "video_id": "video10492", "sen_id": 243451}, {"caption": "two players are with a terrific rally in table tennis", "video_id": "video10492", "sen_id": 243452}, {"caption": "two men playing professional table tennis without either scoring", "video_id": "video10492", "sen_id": 243453}, {"caption": "a ping pong game is going on between a male in a red shirt and a male in a dark blue shirt", "video_id": "video10492", "sen_id": 243454}, {"caption": "some people are playing ping pong on a court", "video_id": "video10492", "sen_id": 243455}, {"caption": "a man in a red unifrom is playing ping pong against a man in a blue uniform", "video_id": "video10492", "sen_id": 243456}, {"caption": "two table tennis players are showing their skills of smashing the ball during a match", "video_id": "video10492", "sen_id": 243457}, {"caption": "ping-pong players move farther away from the blue table on a brown floor covered with advertising logos as the point progresses", "video_id": "video10492", "sen_id": 243458}, {"caption": "two men playing ping pong on a purple ping pong table", "video_id": "video10492", "sen_id": 243459}, {"caption": "a football player chases and tackles and opposing player to take the ball away from him", "video_id": "video11226", "sen_id": 243460}, {"caption": "soccer players from opposing teams are attacking a ball and a player falls", "video_id": "video11226", "sen_id": 243461}, {"caption": "there is a player playing football without fear", "video_id": "video11226", "sen_id": 243462}, {"caption": "a player showing his skill of defending", "video_id": "video11226", "sen_id": 243463}, {"caption": "a soccer player trips during an important part of the game", "video_id": "video11226", "sen_id": 243464}, {"caption": "a very competitive soccer game where apponents are dressed in white and blue respecively", "video_id": "video11226", "sen_id": 243465}, {"caption": "there is a white jersey man diffending a striker", "video_id": "video11226", "sen_id": 243466}, {"caption": "a person in white dress rushes to hold the foot ball which was taken by the opponent team player", "video_id": "video11226", "sen_id": 243467}, {"caption": "many football player running fast to catch and shoot the ball", "video_id": "video11226", "sen_id": 243468}, {"caption": "a soccer player forcefully runs and tackles another soccer player dribbling with the ball", "video_id": "video11226", "sen_id": 243469}, {"caption": "a soccer player is running in a field", "video_id": "video11226", "sen_id": 243470}, {"caption": "a group of people playing a game on a field", "video_id": "video11226", "sen_id": 243471}, {"caption": "a group of two teams of people are playing foot ball", "video_id": "video11226", "sen_id": 243472}, {"caption": "a person in a white soccer jersey with the number 10 on the back runs and steals the ball from another guy with a number 7 blue soccer jersey on", "video_id": "video11226", "sen_id": 243473}, {"caption": "a soccer player s dream that he strips the ball away from a competitor before they can score a goal", "video_id": "video11226", "sen_id": 243474}, {"caption": "some people are running on a rugby field", "video_id": "video11226", "sen_id": 243475}, {"caption": "there are two powerful team one is white and the other is bluewere competitors are in high spirit", "video_id": "video11226", "sen_id": 243476}, {"caption": "a white and blue color dress wearing clothes player playing football game in stadium audience watching displaying on screen", "video_id": "video11226", "sen_id": 243477}, {"caption": "men playing soccer in a big stadium with bright lights", "video_id": "video11226", "sen_id": 243478}, {"caption": "some soccer players are running around a field", "video_id": "video11226", "sen_id": 243479}, {"caption": "a man describes how to control a ping pong ball serve", "video_id": "video12718", "sen_id": 243480}, {"caption": "two people are practising table tennis indoor", "video_id": "video12718", "sen_id": 243481}, {"caption": "the boys are playing table tennis in indoor stadium", "video_id": "video12718", "sen_id": 243482}, {"caption": "a ping pong player giving tips on playing ping pong while playing it", "video_id": "video12718", "sen_id": 243483}, {"caption": "a coacher is explaining about how to play table tennis", "video_id": "video12718", "sen_id": 243484}, {"caption": "a guy is teaching how to hit the ball in table tennis", "video_id": "video12718", "sen_id": 243485}, {"caption": "two men are playing table tennis indoors demonstrating how to perform a technique", "video_id": "video12718", "sen_id": 243486}, {"caption": "its a table tennis game in which the player can manage the ball by back spin its very useful", "video_id": "video12718", "sen_id": 243487}, {"caption": "a man in a black shirt is playing ping pong ball", "video_id": "video12718", "sen_id": 243488}, {"caption": "table tennis coach gives tips about the game", "video_id": "video12718", "sen_id": 243489}, {"caption": "a man playing table tennis very aggressively", "video_id": "video12718", "sen_id": 243490}, {"caption": "men playing table tennis in black dress with the competitor in a room", "video_id": "video12718", "sen_id": 243491}, {"caption": "some one is playing table tenses with full of concentration and wearing block t-shirt", "video_id": "video12718", "sen_id": 243492}, {"caption": "a man is playing ping pong and discussing ping pong strategies", "video_id": "video12718", "sen_id": 243493}, {"caption": "a man is using a ping pong paddle inside", "video_id": "video12718", "sen_id": 243494}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video12718", "sen_id": 243495}, {"caption": "player talks about how to play tabletennis game", "video_id": "video12718", "sen_id": 243496}, {"caption": "one player alone practicing a table tennis game", "video_id": "video12718", "sen_id": 243497}, {"caption": "a coach is explaining about how to play the table tennis and how to take the balls and their positions", "video_id": "video12718", "sen_id": 243498}, {"caption": "some people are playing ping pong on a court", "video_id": "video12718", "sen_id": 243499}, {"caption": "a man in a white lab coat stands in front of a picture of a man in a black suit", "video_id": "video10031", "sen_id": 243500}, {"caption": "a scientist discusses the origins of a major corporation", "video_id": "video10031", "sen_id": 243501}, {"caption": "a historian discusses the innovations of company and the histroy of a scientist", "video_id": "video10031", "sen_id": 243502}, {"caption": "a professor in a white coat and glasses discusses an att archive film that features a wave generator", "video_id": "video10031", "sen_id": 243503}, {"caption": "a scientist is describing a photo of a physicist who invented something", "video_id": "video10031", "sen_id": 243504}, {"caption": "a guy in a lab coat discusses old physics videos in black and white", "video_id": "video10031", "sen_id": 243505}, {"caption": "a man talks about the inventor of the sin wave generator", "video_id": "video10031", "sen_id": 243506}, {"caption": "a man wearing glasses a yellow collared shirt and white lab coat is introducing a black and white video about the shive wave generator", "video_id": "video10031", "sen_id": 243507}, {"caption": "the lab technician is puting on a white coat and glasses", "video_id": "video10031", "sen_id": 243508}, {"caption": "a scientist in a white lab coat talks about college physics", "video_id": "video10031", "sen_id": 243509}, {"caption": "george kupczak describing some facts and news about his study", "video_id": "video10031", "sen_id": 243510}, {"caption": "a man in white coat explaining some important issue in front of the camera", "video_id": "video10031", "sen_id": 243511}, {"caption": "there is a white dressing man talking in front of a photo", "video_id": "video10031", "sen_id": 243512}, {"caption": "a man in a white coat discussing the company at&t while a black and white photo is next to him", "video_id": "video10031", "sen_id": 243513}, {"caption": "its at&t archivesdoctor talks about some person", "video_id": "video10031", "sen_id": 243514}, {"caption": "george kupczak is discussing a photo about dr john shine wave generator", "video_id": "video10031", "sen_id": 243515}, {"caption": "a man in suit testing something from a lab", "video_id": "video10031", "sen_id": 243516}, {"caption": "scientist demonstrates a experiments in the laboratory", "video_id": "video10031", "sen_id": 243517}, {"caption": "a man in a lab coat talks about an object in front of a man in a photo", "video_id": "video10031", "sen_id": 243518}, {"caption": "the man spoke of an invention that was created in the 1950 s", "video_id": "video10031", "sen_id": 243519}, {"caption": "a cook seasons a simmering stew with salt and a slice of lemon", "video_id": "video10476", "sen_id": 243520}, {"caption": "mixing salt and other stuff in a pan thats boiling", "video_id": "video10476", "sen_id": 243521}, {"caption": "a person adding indredients to a pot of boiling meat", "video_id": "video10476", "sen_id": 243522}, {"caption": "a chef prepares a meal by adding spices to a boiling pot of meat", "video_id": "video10476", "sen_id": 243523}, {"caption": "several ingredients are being added to a simmering pot", "video_id": "video10476", "sen_id": 243524}, {"caption": "in the kitchen a man making a spicy dish", "video_id": "video10476", "sen_id": 243525}, {"caption": "a chef demonstrates how to stew and cook chicken with pepper salt and lemon", "video_id": "video10476", "sen_id": 243526}, {"caption": "someone is pouring spices into a pot of food and talks about what he s putting in the pot", "video_id": "video10476", "sen_id": 243527}, {"caption": "a man adds pepper and lemon to a pot filled with boiling liquid", "video_id": "video10476", "sen_id": 243528}, {"caption": "a person mixes various ingredients into a pot on the stove", "video_id": "video10476", "sen_id": 243529}, {"caption": "in the kitchen someone making a dish with lemon", "video_id": "video10476", "sen_id": 243530}, {"caption": "a foreign man is giving instructions on how to make a recipe", "video_id": "video10476", "sen_id": 243531}, {"caption": "someone is adding ingredients to a pot on a stove", "video_id": "video10476", "sen_id": 243532}, {"caption": "a bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10476", "sen_id": 243533}, {"caption": "a man putting salt and a slice of lemon into a dish that is cooking in a pot on the stove", "video_id": "video10476", "sen_id": 243534}, {"caption": "a man is adding spices to a pot of soup", "video_id": "video10476", "sen_id": 243535}, {"caption": "in a kitchen someone is putting some salt a piece of lemon in a non stick pan", "video_id": "video10476", "sen_id": 243536}, {"caption": "a man is cooking food and adding ingredients to the pot", "video_id": "video10476", "sen_id": 243537}, {"caption": "a bowl mixing lemon dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10476", "sen_id": 243538}, {"caption": "a man cooking a meal in a pot on a stovetop", "video_id": "video10476", "sen_id": 243539}, {"caption": "movie clips are shown as ads for a variety of topics", "video_id": "video10265", "sen_id": 243540}, {"caption": "we see clips of movies and actors on a movie ticket website", "video_id": "video10265", "sen_id": 243541}, {"caption": "three different movie clips play at a time as they showcase awards they have won", "video_id": "video10265", "sen_id": 243542}, {"caption": "a title screen showing categories of movies for a streaming service", "video_id": "video10265", "sen_id": 243543}, {"caption": "movie clips are displayed in rotating fashion while music plays", "video_id": "video10265", "sen_id": 243544}, {"caption": "triple screens show a set of movie clips a film app a scene with a famous actor a scene by a famous director and genres in live action or automation", "video_id": "video10265", "sen_id": 243545}, {"caption": "a screen of movie clips to choose from", "video_id": "video10265", "sen_id": 243546}, {"caption": "a graphic showing several different advertisement trailers for several different movies and their stars", "video_id": "video10265", "sen_id": 243547}, {"caption": "several different movie clips of movies nominated for an award on fandango", "video_id": "video10265", "sen_id": 243548}, {"caption": "an advertisement showing trailers on movies to watch", "video_id": "video10265", "sen_id": 243549}, {"caption": "there are three movie previews playing with a blue banner in the corner that says subscribe", "video_id": "video10265", "sen_id": 243550}, {"caption": "an advertisement shows three screens of short clips from movies", "video_id": "video10265", "sen_id": 243551}, {"caption": "clips of different movies and application to be downloaded from movie clip", "video_id": "video10265", "sen_id": 243552}, {"caption": "the movie clips video is providing a list of objects for the viewer", "video_id": "video10265", "sen_id": 243553}, {"caption": "a different type of movie clip are playing in thescreen", "video_id": "video10265", "sen_id": 243554}, {"caption": "movie clips scenes of various genres are featured on fandango as soft music plays", "video_id": "video10265", "sen_id": 243555}, {"caption": "a list of different movies that are available to watch are displayed for the choosing", "video_id": "video10265", "sen_id": 243556}, {"caption": "a post-content referral screen for movie clips by fandango", "video_id": "video10265", "sen_id": 243557}, {"caption": "movie clips flash across a screen and an advertisement plays to subscribe to an app", "video_id": "video10265", "sen_id": 243558}, {"caption": "a preview of fandango movie clips from trailers to information on their app subscriptions offer more updates", "video_id": "video10265", "sen_id": 243559}, {"caption": "this is a video of a brad pitt movie that is in another language", "video_id": "video10945", "sen_id": 243560}, {"caption": "a man in a jacket is talking to another man in a tan coat", "video_id": "video10945", "sen_id": 243561}, {"caption": "two men stand outside in a parking garage and talk after dark", "video_id": "video10945", "sen_id": 243562}, {"caption": "two men are talking to each other in the dark", "video_id": "video10945", "sen_id": 243563}, {"caption": "german-dubbed scene from fight club with brad pitt and edward norton", "video_id": "video10945", "sen_id": 243564}, {"caption": "there is a man talking on the street with a friend", "video_id": "video10945", "sen_id": 243565}, {"caption": "two men are arguing about something in the middle of night", "video_id": "video10945", "sen_id": 243566}, {"caption": "two men speaking in a foreign language in a trailer for a movie", "video_id": "video10945", "sen_id": 243567}, {"caption": "a man in a red jacket is talking to a man in a suit outside", "video_id": "video10945", "sen_id": 243568}, {"caption": "a trailer for a movie by regency that is in a foreign language where two men are talking", "video_id": "video10945", "sen_id": 243569}, {"caption": "the two men in suit are talking to each other in the dark", "video_id": "video10945", "sen_id": 243570}, {"caption": "a man is speaking to another man in a parking lot", "video_id": "video10945", "sen_id": 243571}, {"caption": "a blonde man wearing a red jacket and a white shirt is talking toa brunette guy in a grey blazer with a white shirt", "video_id": "video10945", "sen_id": 243572}, {"caption": "a german dubbed trailer for the film fight club plays", "video_id": "video10945", "sen_id": 243573}, {"caption": "brad pitt in a movie preview dubbed in a foreign language", "video_id": "video10945", "sen_id": 243574}, {"caption": "this commercial is for regency and features a clip from fight club", "video_id": "video10945", "sen_id": 243575}, {"caption": "a man is speaking with a another man", "video_id": "video10945", "sen_id": 243576}, {"caption": "a man is talking to another man on a movie", "video_id": "video10945", "sen_id": 243577}, {"caption": "two men discussing fighting in basement", "video_id": "video10945", "sen_id": 243578}, {"caption": "a trailer for fight club is being shown", "video_id": "video10945", "sen_id": 243579}, {"caption": "a movie trailer for aquaman showing different clips of two men one of them pleading for the other that he needs him", "video_id": "video12062", "sen_id": 243580}, {"caption": "a man talking near a giant fish tank", "video_id": "video12062", "sen_id": 243581}, {"caption": "a clip from a parody staring the youtube star nigahiga", "video_id": "video12062", "sen_id": 243582}, {"caption": "a man is talking about superheroes with another person", "video_id": "video12062", "sen_id": 243583}, {"caption": "a young man talks to another man in a room with a lit aquarium", "video_id": "video12062", "sen_id": 243584}, {"caption": "there is a man talking to a friend", "video_id": "video12062", "sen_id": 243585}, {"caption": "a man gazes into a fish tank while a voice off camera tells him he needs him", "video_id": "video12062", "sen_id": 243586}, {"caption": "a boy is speaking some thing above scene", "video_id": "video12062", "sen_id": 243587}, {"caption": "a man is standing in the dark talking to a man with sunglasses on", "video_id": "video12062", "sen_id": 243588}, {"caption": "in a dark room beside a bright fish tank a man is pleading with aquaman and letting him know he needs a hero like him", "video_id": "video12062", "sen_id": 243589}, {"caption": "a blonde man who is referred to as aquaman sits in front of an aquatic fish tank", "video_id": "video12062", "sen_id": 243590}, {"caption": "in the aquarium the men is watching the life cycles of the fish", "video_id": "video12062", "sen_id": 243591}, {"caption": "a man is talking about being a super hero while looking at water", "video_id": "video12062", "sen_id": 243592}, {"caption": "two men talking by aquarium", "video_id": "video12062", "sen_id": 243593}, {"caption": "a blonde guy sitting near the fish tank talking to camera", "video_id": "video12062", "sen_id": 243594}, {"caption": "the person tell that he does not need the other hero s but only need him the auca man", "video_id": "video12062", "sen_id": 243595}, {"caption": "in a dimly lit room two people are conversing near an aquarium", "video_id": "video12062", "sen_id": 243596}, {"caption": "a man talking about superheros while looking at a fish tank", "video_id": "video12062", "sen_id": 243597}, {"caption": "there is a close up of an aquarium that shows a man talking about some incomplete thought but i think is says i need you", "video_id": "video12062", "sen_id": 243598}, {"caption": "a man is looking at an aquarium and talking", "video_id": "video12062", "sen_id": 243599}, {"caption": "a man rides a bicycle down a street and then falls over on a turn", "video_id": "video11946", "sen_id": 243600}, {"caption": "a cyclist in a dark shirt is riding down the street falls off and slides across the road in front of a car", "video_id": "video11946", "sen_id": 243601}, {"caption": "a bicyclist goes down a small road quickly before crashing to the ground", "video_id": "video11946", "sen_id": 243602}, {"caption": "a bicyclist rides fast on a small empty road and winds up falling down", "video_id": "video11946", "sen_id": 243603}, {"caption": "a cyclist on a curved road falling on the road and almost slamming into a rock", "video_id": "video11946", "sen_id": 243604}, {"caption": "a man in sports wear rides bicycle and fell in the curve of the road", "video_id": "video11946", "sen_id": 243605}, {"caption": "car is running very very fast on road", "video_id": "video11946", "sen_id": 243606}, {"caption": "a cycle rider met an accident when ride on road", "video_id": "video11946", "sen_id": 243607}, {"caption": "a man is riding a bicycle on the street and then he wrecks it", "video_id": "video11946", "sen_id": 243608}, {"caption": "a professional cyclist is banking into a turn on a highway then loses control he falls down but gets back up not seeming injured in any way", "video_id": "video11946", "sen_id": 243609}, {"caption": "there is a man falling down from a cycle", "video_id": "video11946", "sen_id": 243610}, {"caption": "a bmx rider sliped on the road and walked back to get his bike", "video_id": "video11946", "sen_id": 243611}, {"caption": "a person with black dress and wearing a helmet riding a cycle on the road and falling down", "video_id": "video11946", "sen_id": 243612}, {"caption": "man is falling from his bike on the left side", "video_id": "video11946", "sen_id": 243613}, {"caption": "a guy is doing a stunt and crashing his bike", "video_id": "video11946", "sen_id": 243614}, {"caption": "there is someone falling down from a cycle", "video_id": "video11946", "sen_id": 243615}, {"caption": "a person with black dressing skids on the highway while cycling", "video_id": "video11946", "sen_id": 243616}, {"caption": "a person rides a bike down a mountain side and falls", "video_id": "video11946", "sen_id": 243617}, {"caption": "a boy in black color dress wearing ryding bicycle on road skidding on road falling down displaying on screen", "video_id": "video11946", "sen_id": 243618}, {"caption": "a man is riding a bike on the road", "video_id": "video11946", "sen_id": 243619}, {"caption": "an indian woman shows and explains the ingredients for a recipe", "video_id": "video10831", "sen_id": 243620}, {"caption": "a woman speaking as all the ingredients fennel seeds coriander seeds star anise cloves peppercorns chili powder garam masala powder cinnamon tumeric salt coconut oil are shown for a recipe", "video_id": "video10831", "sen_id": 243621}, {"caption": "an in-home chef discusses the various ingredients she will be using in a dish she is preparing", "video_id": "video10831", "sen_id": 243622}, {"caption": "a woman is describing ingredients that go into her indian recipe", "video_id": "video10831", "sen_id": 243623}, {"caption": "a woman lists herbs and spices for a dish as they are shown", "video_id": "video10831", "sen_id": 243624}, {"caption": "ingredients for a dish are displayed together orderly", "video_id": "video10831", "sen_id": 243625}, {"caption": "a female chef talks about the ingredients she will be using in a recipe", "video_id": "video10831", "sen_id": 243626}, {"caption": "spices oil and herbs in small bowls on a cooking show", "video_id": "video10831", "sen_id": 243627}, {"caption": "a woman talks about ingredients needed for her recipe", "video_id": "video10831", "sen_id": 243628}, {"caption": "a woman cooks using a variety of spices", "video_id": "video10831", "sen_id": 243629}, {"caption": "a woman showing the ingredients for a recipe", "video_id": "video10831", "sen_id": 243630}, {"caption": "a chef talks about ingredients whe will be using in a recipe", "video_id": "video10831", "sen_id": 243631}, {"caption": "a woman s lists ingredients for a cooking recipe", "video_id": "video10831", "sen_id": 243632}, {"caption": "a woman is speaking many ingredients needed to create a dish", "video_id": "video10831", "sen_id": 243633}, {"caption": "this things are very useful for health glass jar is nice for all thing", "video_id": "video10831", "sen_id": 243634}, {"caption": "some stuff is being shown in glass cups", "video_id": "video10831", "sen_id": 243635}, {"caption": "a woman has multiple ingredients ready in small clear glass bowls a shows them one by one", "video_id": "video10831", "sen_id": 243636}, {"caption": "integrents required to prepare a recepie is kept in the glass bowl and one by one is shown", "video_id": "video10831", "sen_id": 243637}, {"caption": "a woman putting different ingredients into bowls to prepare a dish", "video_id": "video10831", "sen_id": 243638}, {"caption": "a few ingredients are showing in its own little glass bowls", "video_id": "video10831", "sen_id": 243639}, {"caption": "men in yellow shirts are embracing each other and the other team in blue after a competition", "video_id": "video10300", "sen_id": 243640}, {"caption": "two pairs of tennis players acknowledge each other on a tennis court", "video_id": "video10300", "sen_id": 243641}, {"caption": "two pairs of tennis players greet each other on a tennis court", "video_id": "video10300", "sen_id": 243642}, {"caption": "two men dressed in yellow who have finished playing a game of badminton say goodbye to two other men dressed in dark purple", "video_id": "video10300", "sen_id": 243643}, {"caption": "two men dressed in yellow who have finished playing a game of badminton say goodbye to two other men dressed in dark purple", "video_id": "video10300", "sen_id": 243644}, {"caption": "two teams prepare for an opening match in a tennis superseries", "video_id": "video10300", "sen_id": 243645}, {"caption": "doubles team players of a tennis match meet at the next to shake hands", "video_id": "video10300", "sen_id": 243646}, {"caption": "oriental men are seen playing a sports game at the world superseries", "video_id": "video10300", "sen_id": 243647}, {"caption": "all persons are playing badmintion on a ground", "video_id": "video10300", "sen_id": 243648}, {"caption": "players are greeting after completing a badminton game", "video_id": "video10300", "sen_id": 243649}, {"caption": "two tennis players wearing yellow shake hands before a match", "video_id": "video10300", "sen_id": 243650}, {"caption": "two teams of men play badmitton in a stadium in front of people", "video_id": "video10300", "sen_id": 243651}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10300", "sen_id": 243652}, {"caption": "the yellow team wins for the first time against the blue team in a shuttle cork match", "video_id": "video10300", "sen_id": 243653}, {"caption": "the doubles badminton players are shaking hands with each others", "video_id": "video10300", "sen_id": 243654}, {"caption": "some men touch hands before starting a professional sports game", "video_id": "video10300", "sen_id": 243655}, {"caption": "two badminton players in yellow jerseys are wishing the opponent players", "video_id": "video10300", "sen_id": 243656}, {"caption": "two teams playing tennis against each other shaking hands", "video_id": "video10300", "sen_id": 243657}, {"caption": " wearing yellow shake hands and reach across the net to shake their opponents hands after winning the match on a green court", "video_id": "video10300", "sen_id": 243658}, {"caption": "two players playing badminton very interesting to watch and ends", "video_id": "video10300", "sen_id": 243659}, {"caption": "a man is eating a hamburger while his phone talks to him", "video_id": "video10952", "sen_id": 243660}, {"caption": "a man sitting on the sofa eating a sandwich", "video_id": "video10952", "sen_id": 243661}, {"caption": "a man is sitting down on the couch and enjoying a sandwich", "video_id": "video10952", "sen_id": 243662}, {"caption": "while a man is sitting and eating a meal he listens to a female voice as she offers him an opportunity to make millions of dollars", "video_id": "video10952", "sen_id": 243663}, {"caption": "a commercial on an investment opportunity from a phone", "video_id": "video10952", "sen_id": 243664}, {"caption": "a young man is tasting a hamburger an listening to news", "video_id": "video10952", "sen_id": 243665}, {"caption": "a man is holding a thick sandwich with both hands while sitting on a white sofa in front of a low table by a large window", "video_id": "video10952", "sen_id": 243666}, {"caption": "a person is eating snack by sitting on a chair in a hall", "video_id": "video10952", "sen_id": 243667}, {"caption": "a blue t shirt wearing dress sitting and eating on table and mobile beside speaking displaying on screen", "video_id": "video10952", "sen_id": 243668}, {"caption": "a man is eating sandwich while he heard his smartphone placed on table", "video_id": "video10952", "sen_id": 243669}, {"caption": "a man eating a sandwich sitting on the cough and answering the cellphone", "video_id": "video10952", "sen_id": 243670}, {"caption": "one man eating in room some tasty recipes", "video_id": "video10952", "sen_id": 243671}, {"caption": "a guy sits on the couch and eats a huge sandwich", "video_id": "video10952", "sen_id": 243672}, {"caption": "the young man in blue dress is eating hamburg sitting in a sofa near a table", "video_id": "video10952", "sen_id": 243673}, {"caption": "a man eats a cheeseburger and siri offers him an investment opportunity", "video_id": "video10952", "sen_id": 243674}, {"caption": "an automated voice is speaking to a man eating a sandwhich", "video_id": "video10952", "sen_id": 243675}, {"caption": "a man sitting and eating a sandwich responds to an ad for him to make a lot of money through a smart phone somewhere nearby", "video_id": "video10952", "sen_id": 243676}, {"caption": "a man is thinking while sitting on his couch and eating a sandwich", "video_id": "video10952", "sen_id": 243677}, {"caption": "as a man eats a sandwich he get a call from a telemarketer", "video_id": "video10952", "sen_id": 243678}, {"caption": "a man eating a sandwich and listening to a customer s service recording", "video_id": "video10952", "sen_id": 243679}, {"caption": "a woman touches a bare-chested man who lying in bed a woman with long hair sings into a standing microphone and a muted person in a green shirt and jeans plays guitar", "video_id": "video10964", "sen_id": 243680}, {"caption": "a young woman sings a medium tempo song while playing an acoustic guitar", "video_id": "video10964", "sen_id": 243681}, {"caption": "a woman sings and plays guitar in front of a live audience", "video_id": "video10964", "sen_id": 243682}, {"caption": "a lady sings into a microphone and strums a guitar on stage", "video_id": "video10964", "sen_id": 243683}, {"caption": "a woman with straight brown hair and heavy eye makeup sings in front of a crowd", "video_id": "video10964", "sen_id": 243684}, {"caption": "there is a blue eyes women singing with music", "video_id": "video10964", "sen_id": 243685}, {"caption": "a woman on a stage with a green shirt sings about today with a guitar she plays herself", "video_id": "video10964", "sen_id": 243686}, {"caption": "a woman is singing a song into a microphone while playing a guitar", "video_id": "video10964", "sen_id": 243687}, {"caption": "a young girl sings and plays guitar on a large stage", "video_id": "video10964", "sen_id": 243688}, {"caption": "the beautiful girl in black dress is singing very melodiously", "video_id": "video10964", "sen_id": 243689}, {"caption": "there is a women singing on the stage", "video_id": "video10964", "sen_id": 243690}, {"caption": "a young woman singing into a microphone on stage playing a guitar", "video_id": "video10964", "sen_id": 243691}, {"caption": "one girl singing and background music can running", "video_id": "video10964", "sen_id": 243692}, {"caption": "a girl sings into a microphone while playing the guitar", "video_id": "video10964", "sen_id": 243693}, {"caption": "avril lavigne on stage singing with the guitar", "video_id": "video10964", "sen_id": 243694}, {"caption": "a women on the mic is singing with the guitar", "video_id": "video10964", "sen_id": 243695}, {"caption": "the singer are sung the song in very well in the orchestra", "video_id": "video10964", "sen_id": 243696}, {"caption": "a girl is singing a song for a music", "video_id": "video10964", "sen_id": 243697}, {"caption": "a woman sings a melancholy tune into a microphone", "video_id": "video10964", "sen_id": 243698}, {"caption": "a pop singer is singing a song in mic with a guy playing guitar", "video_id": "video10964", "sen_id": 243699}, {"caption": "woman is putting concealer on and using the brush to blend it into her face", "video_id": "video10548", "sen_id": 243700}, {"caption": "a young woman dabs concealer under her eyes and then blends it with a brush", "video_id": "video10548", "sen_id": 243701}, {"caption": "a girls puts on makeup as she narrates her own actions", "video_id": "video10548", "sen_id": 243702}, {"caption": "a young girl in oink dress make up her face in front of the mirror", "video_id": "video10548", "sen_id": 243703}, {"caption": "a girl pink dressed making her eye make up", "video_id": "video10548", "sen_id": 243704}, {"caption": "a young woman puts make up under her eyes", "video_id": "video10548", "sen_id": 243705}, {"caption": "a women doing makeup with the brush to cover her black under the eyes", "video_id": "video10548", "sen_id": 243706}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10548", "sen_id": 243707}, {"caption": "a young women make up her face using a brush", "video_id": "video10548", "sen_id": 243708}, {"caption": "a lady make up on her under eyes cheek and brushes it with colour", "video_id": "video10548", "sen_id": 243709}, {"caption": "a woman is coloring her eye lid her self", "video_id": "video10548", "sen_id": 243710}, {"caption": "a women is doing make up on her own", "video_id": "video10548", "sen_id": 243711}, {"caption": "a woman is showing how to do makeup", "video_id": "video10548", "sen_id": 243712}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10548", "sen_id": 243713}, {"caption": "a young woman demonstrates how to apply makeup your face", "video_id": "video10548", "sen_id": 243714}, {"caption": "a brunette girl wearing pink is putting on eye makeup", "video_id": "video10548", "sen_id": 243715}, {"caption": "the lady with the pink top applies make up for her face", "video_id": "video10548", "sen_id": 243716}, {"caption": "a girl doing make up on her face and eye lash", "video_id": "video10548", "sen_id": 243717}, {"caption": "a beautiful girl supports her eye sides with a foundation cream and brushes it for finish her makeup", "video_id": "video10548", "sen_id": 243718}, {"caption": "a women in pink dress gently apply the under eye cream with a brush in black color", "video_id": "video10548", "sen_id": 243719}, {"caption": "a band with 4 males doing a music video", "video_id": "video10045", "sen_id": 243720}, {"caption": "a group of men play guitar while standing behind children", "video_id": "video10045", "sen_id": 243721}, {"caption": "a small group of men sing a song and play instruments", "video_id": "video10045", "sen_id": 243722}, {"caption": "two men are signing with a rock band in a room with several children", "video_id": "video10045", "sen_id": 243723}, {"caption": "man is singing with a band playing in the background while children stand staring at the camera", "video_id": "video10045", "sen_id": 243724}, {"caption": "a red headed man standing in a group of children sings a song", "video_id": "video10045", "sen_id": 243725}, {"caption": "a man in printed shirt is singing with a group of musicians", "video_id": "video10045", "sen_id": 243726}, {"caption": "the music band people are enjoying in very well", "video_id": "video10045", "sen_id": 243727}, {"caption": "a famous singer sings songs in the middle of a large group of children", "video_id": "video10045", "sen_id": 243728}, {"caption": "a blue printed shirt person singing with kids and guitarist playing the guitar", "video_id": "video10045", "sen_id": 243729}, {"caption": "a guy is singing a song along with group of kids", "video_id": "video10045", "sen_id": 243730}, {"caption": "a band playing a man singing with children standing in front of the band", "video_id": "video10045", "sen_id": 243731}, {"caption": "the man singer is singing while the children are standing in front of him", "video_id": "video10045", "sen_id": 243732}, {"caption": "a singing trop singing the song with many instruments that are played", "video_id": "video10045", "sen_id": 243733}, {"caption": "a man in a pattern shirt is singing with a band with little children around", "video_id": "video10045", "sen_id": 243734}, {"caption": "a guy in a jacket is covering up his face", "video_id": "video10045", "sen_id": 243735}, {"caption": "a band playing music on a stage with children standing in front of them", "video_id": "video10045", "sen_id": 243736}, {"caption": "a guy is sitting among the children and singing a song am a family man and children are see looking into the camera and another guy is seen playing", "video_id": "video10045", "sen_id": 243737}, {"caption": "people are playing the trupes the kids are standing infront of the performance", "video_id": "video10045", "sen_id": 243738}, {"caption": "a man is singing a song with a group and dancing with childrens", "video_id": "video10045", "sen_id": 243739}, {"caption": "i woman in doing her makeup and teaching how to blend in eyeshadow", "video_id": "video10112", "sen_id": 243740}, {"caption": "a woman puts on makeup while she narrates her own actions", "video_id": "video10112", "sen_id": 243741}, {"caption": "a woman demonstrates putting eye shadow on with a brush", "video_id": "video10112", "sen_id": 243742}, {"caption": "a woman putting eyeshadow on her eyelids and blending it in", "video_id": "video10112", "sen_id": 243743}, {"caption": "a woman holds up a burgundy eyeshadow and then applies it to her eyelids while speaking about the shadow", "video_id": "video10112", "sen_id": 243744}, {"caption": "a woman with an accent applies dark eyeshadow with a makeup brush", "video_id": "video10112", "sen_id": 243745}, {"caption": "there is a cute woman applying makeup herself", "video_id": "video10112", "sen_id": 243746}, {"caption": "a pale woman slowly applies eyeshadow with a brush while explaining the reason and why she likes to wear it at christmas", "video_id": "video10112", "sen_id": 243747}, {"caption": "a woman is coloring her eye lid and make up", "video_id": "video10112", "sen_id": 243748}, {"caption": "woman explaining how to apply eye shadow make up on her eye lids", "video_id": "video10112", "sen_id": 243749}, {"caption": "a girl showing how eye makeup is applied correctly", "video_id": "video10112", "sen_id": 243750}, {"caption": "a woman is putting eye shadow of brown color with a brush", "video_id": "video10112", "sen_id": 243751}, {"caption": "a woman shows how to apply christmas eye shadow", "video_id": "video10112", "sen_id": 243752}, {"caption": "a woman is applying the cream that she is going to use", "video_id": "video10112", "sen_id": 243753}, {"caption": "a women putting on great eye shadow", "video_id": "video10112", "sen_id": 243754}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10112", "sen_id": 243755}, {"caption": "a pale-skinned young woman is applyign eye makeup", "video_id": "video10112", "sen_id": 243756}, {"caption": "women applying make up to her eye and showing the procedure", "video_id": "video10112", "sen_id": 243757}, {"caption": "a woman applies shades of eye shadow to upper eye and blends with broader brush", "video_id": "video10112", "sen_id": 243758}, {"caption": "an enthusiastic eye shadow wearer applies her favorite cosmetic to both eyelids without pause", "video_id": "video10112", "sen_id": 243759}, {"caption": "a woman describing and showing her file cabinet full of all different kinds of her urban decay naked brand make up", "video_id": "video10731", "sen_id": 243760}, {"caption": "a woman is recommending naked makeup", "video_id": "video10731", "sen_id": 243761}, {"caption": "a woman's hands show makeup as she talks about then", "video_id": "video10731", "sen_id": 243762}, {"caption": "a woman is showing off her extensive makeup collection", "video_id": "video10731", "sen_id": 243763}, {"caption": "someone showing many different eye makeup and accessories", "video_id": "video10731", "sen_id": 243764}, {"caption": "a person is showing a fashion items on boxes", "video_id": "video10731", "sen_id": 243765}, {"caption": "a woman is talking about different types of makeup in a draw", "video_id": "video10731", "sen_id": 243766}, {"caption": "a person is showing various kinds of makeup", "video_id": "video10731", "sen_id": 243767}, {"caption": "the woman displays the types of make up", "video_id": "video10731", "sen_id": 243768}, {"caption": "a woman discusses makeup and the various kinds she likes to use", "video_id": "video10731", "sen_id": 243769}, {"caption": "women describing her naked make up brand collection", "video_id": "video10731", "sen_id": 243770}, {"caption": "a cosmetic enthusiast exhibits her collection", "video_id": "video10731", "sen_id": 243771}, {"caption": "a woman discusses the makeup that she uses for her face and body", "video_id": "video10731", "sen_id": 243772}, {"caption": "woman with beautiful nails is showing some make up sets", "video_id": "video10731", "sen_id": 243773}, {"caption": "a women is holding cosmetics in her hand sharing information about them", "video_id": "video10731", "sen_id": 243774}, {"caption": "a women show he new naken makeup kit", "video_id": "video10731", "sen_id": 243775}, {"caption": "one beautiful and lovely women talks about makeup kit", "video_id": "video10731", "sen_id": 243776}, {"caption": "its a make up item the girl has black color nailpolish she shows the different kits", "video_id": "video10731", "sen_id": 243777}, {"caption": "a person is showing makeup and telling about its diferrent shades", "video_id": "video10731", "sen_id": 243778}, {"caption": "someone is holding a box and opening it", "video_id": "video10731", "sen_id": 243779}, {"caption": "two men in a boat at night are having a conversation", "video_id": "video12017", "sen_id": 243780}, {"caption": "two men on a boat have a conversation with a castle in the background", "video_id": "video12017", "sen_id": 243781}, {"caption": "a bollywood film that is between the two protagonists", "video_id": "video12017", "sen_id": 243782}, {"caption": "two indian men sit on a boat floating on a river surrounded by candles and talk to each other", "video_id": "video12017", "sen_id": 243783}, {"caption": "two men with black hair sit in a boat and act out a scene in front of a beige building", "video_id": "video12017", "sen_id": 243784}, {"caption": "two indian men talk to each other in a small boat", "video_id": "video12017", "sen_id": 243785}, {"caption": "a man in white robes talks to a man in gold robes in front of an ornate building and lights", "video_id": "video12017", "sen_id": 243786}, {"caption": "two people interacting with one another on the top of a building", "video_id": "video12017", "sen_id": 243787}, {"caption": "two men in robes sit next to each other one men is in gold robes and leans towards the second man; the second man sits in a boat in white robes and spreads his arms wide open", "video_id": "video12017", "sen_id": 243788}, {"caption": "two men talking in a boat in front of a castle", "video_id": "video12017", "sen_id": 243789}, {"caption": "a man in a white robe groaning in front of a large castle while another man watches closely", "video_id": "video12017", "sen_id": 243790}, {"caption": "a movie scene is being shown during night the white color dressed man fearing towards the yellow cloth covered man", "video_id": "video12017", "sen_id": 243791}, {"caption": "a couple of men sitting close together by a large cluster of candles", "video_id": "video12017", "sen_id": 243792}, {"caption": "sharaook khan the leading hindi movie actor making performance", "video_id": "video12017", "sen_id": 243793}, {"caption": "actor sharukh khan is speaking in person to other when traveling in boat", "video_id": "video12017", "sen_id": 243794}, {"caption": "indian man making weird hand motions and calling out", "video_id": "video12017", "sen_id": 243795}, {"caption": "a man wearing white is talking to another man while sitting in a boat", "video_id": "video12017", "sen_id": 243796}, {"caption": "a man wearing yellow talking to a man in white while sitting down", "video_id": "video12017", "sen_id": 243797}, {"caption": "a man in a white robe sits in a small boat while another man leans over him", "video_id": "video12017", "sen_id": 243798}, {"caption": "on a river in a boat one man is parting his hands infront of his chest while tilting his head", "video_id": "video12017", "sen_id": 243799}, {"caption": "puppy is making baby laugh because he is close to her", "video_id": "video11799", "sen_id": 243800}, {"caption": "a laughing baby and a dog are playing with each other on the couch", "video_id": "video11799", "sen_id": 243801}, {"caption": "a young baby laying on its stomach is smiling a a puppy dog that is near by", "video_id": "video11799", "sen_id": 243802}, {"caption": "a baby is laying down and giggling at a puppy", "video_id": "video11799", "sen_id": 243803}, {"caption": "a baby girl laughing at a puppy while laying on her tummy", "video_id": "video11799", "sen_id": 243804}, {"caption": "a little cute baby keep smiling and enjoys his kid dog activities", "video_id": "video11799", "sen_id": 243805}, {"caption": "an infant laughs joyfully at a cute puppy", "video_id": "video11799", "sen_id": 243806}, {"caption": "the baby laughs at the puppy playing nearby", "video_id": "video11799", "sen_id": 243807}, {"caption": "a baby is laying down and laughing at a puppy", "video_id": "video11799", "sen_id": 243808}, {"caption": "baby looking at the puppy and smiling", "video_id": "video11799", "sen_id": 243809}, {"caption": "a baby playing with a puppy on the couch making amused noises at it", "video_id": "video11799", "sen_id": 243810}, {"caption": "a dog is shown to the baby and the baby laughs seeing the dog", "video_id": "video11799", "sen_id": 243811}, {"caption": "a child playing and laughing with a puppy", "video_id": "video11799", "sen_id": 243812}, {"caption": "a baby laughing at a new brown and white puppy", "video_id": "video11799", "sen_id": 243813}, {"caption": "the person edged the puppy on to play with the baby", "video_id": "video11799", "sen_id": 243814}, {"caption": "a baby is on the bed it is playing with dog", "video_id": "video11799", "sen_id": 243815}, {"caption": "a human baby giggles as a dog playfully interacts with him", "video_id": "video11799", "sen_id": 243816}, {"caption": "a baby laughs lying on a blanket while mother plays with dog", "video_id": "video11799", "sen_id": 243817}, {"caption": "a baby laughing at a dog rolling around next to him", "video_id": "video11799", "sen_id": 243818}, {"caption": "a baby on a couch is lying down with a toy", "video_id": "video11799", "sen_id": 243819}, {"caption": "a person is stirring milk simmering in a pot before they cover it with a lid", "video_id": "video11809", "sen_id": 243820}, {"caption": "someone stirs boiling milk with a wooden spoon", "video_id": "video11809", "sen_id": 243821}, {"caption": "a big pan of rice cooking with a couple of instructions", "video_id": "video11809", "sen_id": 243822}, {"caption": "a frothy mixture is stirred with a wooden spoon on a stove top", "video_id": "video11809", "sen_id": 243823}, {"caption": "a chef works on a recipe by stirring a pot of boiling liquid", "video_id": "video11809", "sen_id": 243824}, {"caption": "this is a demonstration of one way to prepare white rice", "video_id": "video11809", "sen_id": 243825}, {"caption": "a person is stirring a boiling pot of food and then covers it", "video_id": "video11809", "sen_id": 243826}, {"caption": "create some delicious meals that your whole family will love with our help", "video_id": "video11809", "sen_id": 243827}, {"caption": "a person preparing a food item on a bowel", "video_id": "video11809", "sen_id": 243828}, {"caption": "a chef stirs a bowl of white food and instructs on how to make it", "video_id": "video11809", "sen_id": 243829}, {"caption": "milk added playing and rather then news produced item", "video_id": "video11809", "sen_id": 243830}, {"caption": "a white rice-like mixture is stirred covered and cooked and then cooked uncovered", "video_id": "video11809", "sen_id": 243831}, {"caption": "someone is string something in a pan", "video_id": "video11809", "sen_id": 243832}, {"caption": "the recipe and cooking of the desert sweet", "video_id": "video11809", "sen_id": 243833}, {"caption": "a chef is preparing some dish in a pan and stir it", "video_id": "video11809", "sen_id": 243834}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11809", "sen_id": 243835}, {"caption": "a process procedure on how to prepare rice", "video_id": "video11809", "sen_id": 243836}, {"caption": "one man make recipe cover with lid but", "video_id": "video11809", "sen_id": 243837}, {"caption": "boiled milk and oats they stir frequently and closed with lid to cook well", "video_id": "video11809", "sen_id": 243838}, {"caption": "snappy music plays while a a person stirs a pot of food", "video_id": "video11809", "sen_id": 243839}, {"caption": "a person that is cooking in a pressure cooker", "video_id": "video11731", "sen_id": 243840}, {"caption": "a receipt video on how to cook using a pot", "video_id": "video11731", "sen_id": 243841}, {"caption": "in a kitchen someone is assembling and using a pressure cooker on a stovetop", "video_id": "video11731", "sen_id": 243842}, {"caption": "a person puts a lid on top of a pressure cooker on top of the stove", "video_id": "video11731", "sen_id": 243843}, {"caption": "someone is preparing food on a stove that requires a long boil", "video_id": "video11731", "sen_id": 243844}, {"caption": "someone puts a cover onto a silver pot that is on the stove", "video_id": "video11731", "sen_id": 243845}, {"caption": "a person is using a pressure cooker which is set on a stove", "video_id": "video11731", "sen_id": 243846}, {"caption": "the clip shows a white stove top the stove s clock and a silver metal pot sealed with a cover", "video_id": "video11731", "sen_id": 243847}, {"caption": "a person is cooking the food in pressure cooker at medium-low heat setting", "video_id": "video11731", "sen_id": 243848}, {"caption": "a person locks a lid onto a pot that is on the stove", "video_id": "video11731", "sen_id": 243849}, {"caption": "there is a hot cooker going to make sound", "video_id": "video11731", "sen_id": 243850}, {"caption": "a cooking apparatus is being tested in one particular configuration", "video_id": "video11731", "sen_id": 243851}, {"caption": "a woman is preparing a dish with pressure cooker", "video_id": "video11731", "sen_id": 243852}, {"caption": "a person puts the lid on the pressure cooker then turns the heat to medium low heat setting for simmers for 2 to 2", "video_id": "video11731", "sen_id": 243853}, {"caption": "someone is showing how to cover the pressure cooker s lid", "video_id": "video11731", "sen_id": 243854}, {"caption": "a pressure cooker is being use to heat up water", "video_id": "video11731", "sen_id": 243855}, {"caption": "a pressure cooker was closed after few minutes the whistle blow starts", "video_id": "video11731", "sen_id": 243856}, {"caption": "an inhome chef works on a recipe in a pressure cooker in their home kitchen", "video_id": "video11731", "sen_id": 243857}, {"caption": "a person shows how to simmer food in a pot for an extended time", "video_id": "video11731", "sen_id": 243858}, {"caption": "a cooker is covered using lid and installed the regulator over the cooker lid", "video_id": "video11731", "sen_id": 243859}, {"caption": "two young men get ready to participate in a basketball challenge", "video_id": "video10619", "sen_id": 243860}, {"caption": "two teenagers a dark haired boy wearing red shorts and another boy with a hoodie on play basketball", "video_id": "video10619", "sen_id": 243861}, {"caption": "two players in black t-shirt are practising basketball in indoor court", "video_id": "video10619", "sen_id": 243862}, {"caption": "two persons playing basket ball on a court", "video_id": "video10619", "sen_id": 243863}, {"caption": "a two men are having a basket ball and playing", "video_id": "video10619", "sen_id": 243864}, {"caption": "friends are in black dress they are in the basketball ground he holds the ball", "video_id": "video10619", "sen_id": 243865}, {"caption": "bunch of guys showing basketball court room and telling the tricks to play the game", "video_id": "video10619", "sen_id": 243866}, {"caption": "two young boys in a playing room practising volley ball game", "video_id": "video10619", "sen_id": 243867}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video10619", "sen_id": 243868}, {"caption": "several boys give instruction on half-court basketball", "video_id": "video10619", "sen_id": 243869}, {"caption": "two boys having basketball in their hand talking to camera standing in basketball court", "video_id": "video10619", "sen_id": 243870}, {"caption": "two young boys practising some game in the play court", "video_id": "video10619", "sen_id": 243871}, {"caption": "two men in gym clothes discussing an upcoming half court challenge and the consequences of losing", "video_id": "video10619", "sen_id": 243872}, {"caption": "two boys holding basketball and talking", "video_id": "video10619", "sen_id": 243873}, {"caption": "a boy in black color dress wearing cloth ball in hand with other guy inside stadium speaking shaking hand displaying on screen", "video_id": "video10619", "sen_id": 243874}, {"caption": "two men compete to see who can make two half court shots", "video_id": "video10619", "sen_id": 243875}, {"caption": "a young man in a black sweatshirt is explaining a basketball game he is about to play", "video_id": "video10619", "sen_id": 243876}, {"caption": "players were doing practice for volley ball on the stadium", "video_id": "video10619", "sen_id": 243877}, {"caption": "two basketball players discuss how they are going to take up a half court challenge", "video_id": "video10619", "sen_id": 243878}, {"caption": "two persons wearing black t shirts in a basketball club practice ground with two basket ball in hand", "video_id": "video10619", "sen_id": 243879}, {"caption": "a clip form watch mojo about victoria angels", "video_id": "video10103", "sen_id": 243880}, {"caption": "a model walks in a white bikini and with white long feathers for a commercial add", "video_id": "video10103", "sen_id": 243881}, {"caption": "women in underwear and wings walk around before men in toy costumes are seen behaving like they are cool", "video_id": "video10103", "sen_id": 243882}, {"caption": "women walk with angel wings bras and panties through the streets and meeting rooms costumed characters ride mechanical horses get sewn tattoos and ride cars in tourist cities", "video_id": "video10103", "sen_id": 243883}, {"caption": "victoria's secrect models showing underwear while a man talks about the top ten commercials", "video_id": "video10103", "sen_id": 243884}, {"caption": "there is a lingerie model walking with wings", "video_id": "video10103", "sen_id": 243885}, {"caption": "a video jockey on watchmojocom on counting down the top 10 songs from commercials", "video_id": "video10103", "sen_id": 243886}, {"caption": "watch mojo victorias secret the new angels have landed", "video_id": "video10103", "sen_id": 243887}, {"caption": "in this video three ladys coming like angels and after that micky mose dress driving in a car", "video_id": "video10103", "sen_id": 243888}, {"caption": "girl shows her beauty for the magazine", "video_id": "video10103", "sen_id": 243889}, {"caption": "the clip features a top ten countdown of songs from commercials", "video_id": "video10103", "sen_id": 243890}, {"caption": "a tall red character with one centered eye and covered with raised dots walks with a bear robot and roly poly", "video_id": "video10103", "sen_id": 243891}, {"caption": "models wearing bikinis and angel wings walk around and then life sized stuffed animals drive a car in las vegas", "video_id": "video10103", "sen_id": 243892}, {"caption": "a business promo from watchmojocom about 10 popular songs from commercials", "video_id": "video10103", "sen_id": 243893}, {"caption": "different songs are being discussed and the effects they have in the background of commercials", "video_id": "video10103", "sen_id": 243894}, {"caption": "the clip is from a top ten countdown of songs from commercials", "video_id": "video10103", "sen_id": 243895}, {"caption": "victoria s secret the new angels have landed watch mojo", "video_id": "video10103", "sen_id": 243896}, {"caption": "victoria secret models walk on the walkway with angel wings", "video_id": "video10103", "sen_id": 243897}, {"caption": "in los vegas fashion show is going to take place in a watch mojo", "video_id": "video10103", "sen_id": 243898}, {"caption": "the models have huge wings on their backs to make them look like angels", "video_id": "video10103", "sen_id": 243899}, {"caption": "a girl with pink nails wraps an orreo in yellow frosting", "video_id": "video10121", "sen_id": 243900}, {"caption": "a woman is pressing an oreo cookie into a soft round substance to form a mold as she discusses the importance of pushing gently to avoid beaking the cookies", "video_id": "video10121", "sen_id": 243901}, {"caption": "a man is folding some gum like thing into different shape", "video_id": "video10121", "sen_id": 243902}, {"caption": "a lady is cooking a recipe and is being shown on making buiscuits", "video_id": "video10121", "sen_id": 243903}, {"caption": "a woman presses an oreo cookie into a frosting substitute", "video_id": "video10121", "sen_id": 243904}, {"caption": "a young woman makes a mold of the face of an oreo cookie", "video_id": "video10121", "sen_id": 243905}, {"caption": "a woman is using an oreo and a round piece of dough to make a treat", "video_id": "video10121", "sen_id": 243906}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10121", "sen_id": 243907}, {"caption": "the woman presses the objects to gether with the pink nail polish on her nails", "video_id": "video10121", "sen_id": 243908}, {"caption": "someone is doing something they hold like coins and pushing it and making a shape", "video_id": "video10121", "sen_id": 243909}, {"caption": "demonstration on how to make unique cookie treat", "video_id": "video10121", "sen_id": 243910}, {"caption": "there is a woman and she is telling about biscuits", "video_id": "video10121", "sen_id": 243911}, {"caption": "someone pressing the oreo biscuit on spongy substance", "video_id": "video10121", "sen_id": 243912}, {"caption": "a woman is explaining how to make an oreo cookie mold", "video_id": "video10121", "sen_id": 243913}, {"caption": "a biscuit paste inside kitchen making to serve", "video_id": "video10121", "sen_id": 243914}, {"caption": "a women is doing some craft work with the helo of an orio biscuit", "video_id": "video10121", "sen_id": 243915}, {"caption": "reciepe of making a sweet with oreo biscuit", "video_id": "video10121", "sen_id": 243916}, {"caption": "a lady takes a oreo biscuits and presses it into the mould", "video_id": "video10121", "sen_id": 243917}, {"caption": "one beautiful and lovely women talks about biscuit", "video_id": "video10121", "sen_id": 243918}, {"caption": "two hands are moving hastily with something black and yellow and making something new", "video_id": "video10121", "sen_id": 243919}, {"caption": "woman in silver dress dancing around a stage and singing", "video_id": "video12883", "sen_id": 243920}, {"caption": "mariah carrey music video dancing around in a schoolgirl outfit and a tight silver dress", "video_id": "video12883", "sen_id": 243921}, {"caption": "a lady sings as a nerdy man lays behind her on a picnic blanket and plays with toy guns with her", "video_id": "video12883", "sen_id": 243922}, {"caption": "a woman is wearing a silver dress while dancing and singing", "video_id": "video12883", "sen_id": 243923}, {"caption": "a female singer is singing in her music video in various outfits", "video_id": "video12883", "sen_id": 243924}, {"caption": "a woman in a white shirt dancing on a filed with a guy while singing", "video_id": "video12883", "sen_id": 243925}, {"caption": "mariah carey in a dress and a schoolgirl outfit singing and lounging about", "video_id": "video12883", "sen_id": 243926}, {"caption": "it is about a music album and the artists are singing and dancing", "video_id": "video12883", "sen_id": 243927}, {"caption": "an album song sung by a lady by giving poses to camera", "video_id": "video12883", "sen_id": 243928}, {"caption": "a women with white dress is singing and dancing", "video_id": "video12883", "sen_id": 243929}, {"caption": "there is a women in white shirt singing a song", "video_id": "video12883", "sen_id": 243930}, {"caption": "a girls are singing a song and dancing", "video_id": "video12883", "sen_id": 243931}, {"caption": "a lady in a school girl uniforn dances with a toy gun", "video_id": "video12883", "sen_id": 243932}, {"caption": "the beautiful girl in white dress is singing and dancing along with others", "video_id": "video12883", "sen_id": 243933}, {"caption": "a woman is playing with guns and singing a song", "video_id": "video12883", "sen_id": 243934}, {"caption": "a scene from a music video featuring a girl", "video_id": "video12883", "sen_id": 243935}, {"caption": "a heavier older woman dances and sings in a a series of skimpy outfits", "video_id": "video12883", "sen_id": 243936}, {"caption": "a girl in white dress singing and dancing with a sexy look", "video_id": "video12883", "sen_id": 243937}, {"caption": "the young beautiful girl wearing white dress is singing and performing", "video_id": "video12883", "sen_id": 243938}, {"caption": "some women and a man are doing various things", "video_id": "video12883", "sen_id": 243939}, {"caption": "woman is trying on her wedding dress in front of her friends", "video_id": "video10771", "sen_id": 243940}, {"caption": "a young woman models a wedding dress in a bridal shop in front of a small group", "video_id": "video10771", "sen_id": 243941}, {"caption": "a group of women at a bridal boutique are checking out a wedding dress that's being modeled they like it and think it would be good for an outdoor wedding", "video_id": "video10771", "sen_id": 243942}, {"caption": "fashion models are taking a break and mingling with each other", "video_id": "video10771", "sen_id": 243943}, {"caption": "a bride is dressed well and speaking to her friends", "video_id": "video10771", "sen_id": 243944}, {"caption": "the beautiful girl in white designer dress is showing the dress to someone", "video_id": "video10771", "sen_id": 243945}, {"caption": "a young bride emerges from a dressing room in a gown and her friends offer their feedback to help her pick a dress", "video_id": "video10771", "sen_id": 243946}, {"caption": "a women in white dress impressing people around", "video_id": "video10771", "sen_id": 243947}, {"caption": "one beautiful and lovely women had lovely dress", "video_id": "video10771", "sen_id": 243948}, {"caption": "a female in bride dress is walking and sitting in front of female judges", "video_id": "video10771", "sen_id": 243949}, {"caption": "here all sitting ladies were like the dress wearing the girl came from inside the costumes is very beautiful", "video_id": "video10771", "sen_id": 243950}, {"caption": "a television show a girl comes on bridal dress", "video_id": "video10771", "sen_id": 243951}, {"caption": "a bride wear the white dress for the weedingshe looks beautiful", "video_id": "video10771", "sen_id": 243952}, {"caption": "a girl wearing white wedding dress and others looking its design", "video_id": "video10771", "sen_id": 243953}, {"caption": "a woman with black hair is sitting and smiling", "video_id": "video10771", "sen_id": 243954}, {"caption": "there are many womens sitting on sofa and one lady wearing wedding glown", "video_id": "video10771", "sen_id": 243955}, {"caption": "a woman in white bridal dress comes in and sits before some women who admire her", "video_id": "video10771", "sen_id": 243956}, {"caption": "a girl wearing white dress fashion and many girl sitting and watching audience speaking", "video_id": "video10771", "sen_id": 243957}, {"caption": "an asian women dressed in wedding gown is showing her dress to her family members", "video_id": "video10771", "sen_id": 243958}, {"caption": "an asian woman is sitting in a chair and smiling", "video_id": "video10771", "sen_id": 243959}, {"caption": "this shows the ceo of aeromobil while he talks about the company and what he is doing", "video_id": "video11698", "sen_id": 243960}, {"caption": "a man in a black suit is speaking about the flying car", "video_id": "video11698", "sen_id": 243961}, {"caption": "a short-haired man wearing eyeglasses stands in a multiple-level yellow space where people are riding escalators in both directions in front of windows", "video_id": "video11698", "sen_id": 243962}, {"caption": "the ceo of aeromobil is explaining the plans for rolling out the first prototype of a flying car in 2017", "video_id": "video11698", "sen_id": 243963}, {"caption": "a man is shown discussing future plans for his company", "video_id": "video11698", "sen_id": 243964}, {"caption": "a aman standing in black coat and lift moving upward peoples", "video_id": "video11698", "sen_id": 243965}, {"caption": "a ceo of a company is seen chatting with somebody here", "video_id": "video11698", "sen_id": 243966}, {"caption": "cnbc juraj vaculik co-founder ceo aero mobil is talk", "video_id": "video11698", "sen_id": 243967}, {"caption": "a man being interviewed on camera as the co founder", "video_id": "video11698", "sen_id": 243968}, {"caption": "a man in black dress speaking and lift of people moving up", "video_id": "video11698", "sen_id": 243969}, {"caption": "a man wearing glasses is speaking about building a team", "video_id": "video11698", "sen_id": 243970}, {"caption": "the ceo of aeromobil discussing the launch of a prototype for a flying car", "video_id": "video11698", "sen_id": 243971}, {"caption": "a man stands in front of two escalators and discusses progress related to the development of a flying car", "video_id": "video11698", "sen_id": 243972}, {"caption": "the young man in black suit explains about something very elaborately", "video_id": "video11698", "sen_id": 243973}, {"caption": "a man is giving interview while people are climbing stairs in background", "video_id": "video11698", "sen_id": 243974}, {"caption": "the man is answering to a question asked by someone", "video_id": "video11698", "sen_id": 243975}, {"caption": "a man is talking in some thing in public place", "video_id": "video11698", "sen_id": 243976}, {"caption": "a man in a suit and glasses stands by the stairs", "video_id": "video11698", "sen_id": 243977}, {"caption": "a male executive explains that he is building the team and expanding the enterprise", "video_id": "video11698", "sen_id": 243978}, {"caption": "a man in glasses is talking to the camera", "video_id": "video11698", "sen_id": 243979}, {"caption": "a smiling woman with long black hair wears a royal blue gown topped with silver sequins over lace as she happily holds a narrow gold statuette at an award show", "video_id": "video10288", "sen_id": 243980}, {"caption": "a woman wearing a blue jeweled adorned dress and holding an award", "video_id": "video10288", "sen_id": 243981}, {"caption": "a lady with a fancy blue dress posing for photos", "video_id": "video10288", "sen_id": 243982}, {"caption": "a smiling woman with long black hair holds a gold award while posing in a floor-length blue gown decorated with silver sequins from her hips to her neck", "video_id": "video10288", "sen_id": 243983}, {"caption": "a girl in a shiny dress is posing with a trophy", "video_id": "video10288", "sen_id": 243984}, {"caption": "groovy music plays as a woman in a beautiful dress holds an award", "video_id": "video10288", "sen_id": 243985}, {"caption": "a girl in blue dress is posing for photographers after receiving the award in a function", "video_id": "video10288", "sen_id": 243986}, {"caption": "a woman actor is having her picture taken with her award", "video_id": "video10288", "sen_id": 243987}, {"caption": "a beautiful girl dressed up in violet long frock with tied pony a her hairstyle stands on stage for photo postures", "video_id": "video10288", "sen_id": 243988}, {"caption": "a woamn in a blue dress is smiling for pics", "video_id": "video10288", "sen_id": 243989}, {"caption": "a woman with glittering blue dressing received an award", "video_id": "video10288", "sen_id": 243990}, {"caption": "a cute actress is standing in amazing blue costume in award ceremony", "video_id": "video10288", "sen_id": 243991}, {"caption": "a woman holds an award on a red carpet", "video_id": "video10288", "sen_id": 243992}, {"caption": "a woman is wearing a blue gown and holding a award", "video_id": "video10288", "sen_id": 243993}, {"caption": "a woman with brown hair is smiling and standing", "video_id": "video10288", "sen_id": 243994}, {"caption": "there is a blue dress women with a award", "video_id": "video10288", "sen_id": 243995}, {"caption": "a cute actress receives award and stands in elegant dress", "video_id": "video10288", "sen_id": 243996}, {"caption": "a beautiful exotic woman with very long dark hair in a beautiful blue lacy gown being photographed at an event", "video_id": "video10288", "sen_id": 243997}, {"caption": "a woman being photographed on red carpet while wearing an evening dress", "video_id": "video10288", "sen_id": 243998}, {"caption": "an actress has a photoshoot after winning a golden petal award", "video_id": "video10288", "sen_id": 243999}, {"caption": "a man is wearing a tie and is holding a microphone", "video_id": "video12207", "sen_id": 244000}, {"caption": "a man in grey shirt and spectacles is explaining something", "video_id": "video12207", "sen_id": 244001}, {"caption": "a man is speaking in front of some people sitting at tables into a hand-held microphone while wearing a grey suit in front of a blurred blue-and-white screen", "video_id": "video12207", "sen_id": 244002}, {"caption": "a person wearing coat speak in the mike in front of the audience", "video_id": "video12207", "sen_id": 244003}, {"caption": "the gentleman in blue suit and striped tie is making a campaign", "video_id": "video12207", "sen_id": 244004}, {"caption": "a person in grey coat with red tie eye glass giving speech in mike in front of many peoples", "video_id": "video12207", "sen_id": 244005}, {"caption": "a person holding a mike giving class to the people gathered in the room", "video_id": "video12207", "sen_id": 244006}, {"caption": "a man is talking some thing in a mic", "video_id": "video12207", "sen_id": 244007}, {"caption": "a man in a suit and tie standing and talking in a mic to people sitting", "video_id": "video12207", "sen_id": 244008}, {"caption": "the young man in grey suit explains about something very elaborately", "video_id": "video12207", "sen_id": 244009}, {"caption": "a guy with a mic is talking to a crowd of people", "video_id": "video12207", "sen_id": 244010}, {"caption": "there is a suit man talking on the stage", "video_id": "video12207", "sen_id": 244011}, {"caption": "a man is giving lecturing to the student", "video_id": "video12207", "sen_id": 244012}, {"caption": "there is a man in a suit and tie giving a lecture to a class and using a microphone", "video_id": "video12207", "sen_id": 244013}, {"caption": "a lecturer wearing a casual suit with spectacles is lecturing to the students", "video_id": "video12207", "sen_id": 244014}, {"caption": "a man with a mic is talking about something", "video_id": "video12207", "sen_id": 244015}, {"caption": "men is talking and discussing something ans subscribe", "video_id": "video12207", "sen_id": 244016}, {"caption": "guy in suit talks to a group of people in a meeting", "video_id": "video12207", "sen_id": 244017}, {"caption": "a man telling about the some project in front of the meeting members", "video_id": "video12207", "sen_id": 244018}, {"caption": "a man holding mic in his hand telling something to audience watching him", "video_id": "video12207", "sen_id": 244019}, {"caption": "a large farm implement picks ears of corn in a large field", "video_id": "video12829", "sen_id": 244020}, {"caption": "agricultural waste is being collected and dumped in an area so it can be used for the creation of alternate fuels", "video_id": "video12829", "sen_id": 244021}, {"caption": "a large vehicle cuts and collects large stalks of corn in a field before emptying them out", "video_id": "video12829", "sen_id": 244022}, {"caption": "a combine tractor mowing down a field of corn", "video_id": "video12829", "sen_id": 244023}, {"caption": "a harvester machine driving through a corn field and harvesting the corn", "video_id": "video12829", "sen_id": 244024}, {"caption": "cars are driving followed by plants and their processing", "video_id": "video12829", "sen_id": 244025}, {"caption": "mechanical harvesting of crops commented by a woman voice", "video_id": "video12829", "sen_id": 244026}, {"caption": "a field of crops being farmed with farm machinery", "video_id": "video12829", "sen_id": 244027}, {"caption": "a female voice is discussing the making of bio fuels by using farming waste like the parts left over from corn", "video_id": "video12829", "sen_id": 244028}, {"caption": "a combine is shown harvesting crops and a woman discusses how bio-fuel will bring new income to farmers", "video_id": "video12829", "sen_id": 244029}, {"caption": "grass cutting tractor is moving slow cutting grass", "video_id": "video12829", "sen_id": 244030}, {"caption": "a farmer is harvesting corn for bio fuels", "video_id": "video12829", "sen_id": 244031}, {"caption": "few crops are shown and its explained how the machine is used to pluck the crops", "video_id": "video12829", "sen_id": 244032}, {"caption": "vehicle cutting corps and pouring them in heap", "video_id": "video12829", "sen_id": 244033}, {"caption": "there is a harvesting machine with new technology", "video_id": "video12829", "sen_id": 244034}, {"caption": "an explanation of how biofuels are used and created plays over footage of a corn harvest", "video_id": "video12829", "sen_id": 244035}, {"caption": "an agricultural ad concerning the conversion of biomass is shown", "video_id": "video12829", "sen_id": 244036}, {"caption": "this very easy method corn cutting to land handling easy", "video_id": "video12829", "sen_id": 244037}, {"caption": "a woman talking about diesel fuel", "video_id": "video12829", "sen_id": 244038}, {"caption": "a person is showing farm life compared to the city", "video_id": "video12829", "sen_id": 244039}, {"caption": "a man in red versus a man in blue at the game of ping pong", "video_id": "video12611", "sen_id": 244040}, {"caption": "two people are playing each other in ping pong", "video_id": "video12611", "sen_id": 244041}, {"caption": "a man in a blue shirt plays ping pong with a man in red shirt", "video_id": "video12611", "sen_id": 244042}, {"caption": "two men indoors playing table tennis in front of an audience", "video_id": "video12611", "sen_id": 244043}, {"caption": "table tennis match is going on with two players fighting for the win", "video_id": "video12611", "sen_id": 244044}, {"caption": "the boys are playing table tennis in indoor stadium", "video_id": "video12611", "sen_id": 244045}, {"caption": "a blue tshirt men start the service in the table tennis and he plays with his red tshirt opponent", "video_id": "video12611", "sen_id": 244046}, {"caption": "two guys are competing in a ping pong competition", "video_id": "video12611", "sen_id": 244047}, {"caption": "two sports men are playing table tennis and its being narrated", "video_id": "video12611", "sen_id": 244048}, {"caption": "a man in a blue shirt faces off against a man in a red shirt in a match of professional table tennis", "video_id": "video12611", "sen_id": 244049}, {"caption": "a table tennis stage two players playing", "video_id": "video12611", "sen_id": 244050}, {"caption": "a couple guys are playing ping pong in a room", "video_id": "video12611", "sen_id": 244051}, {"caption": "there is a red jersey man playing table tennis with a man", "video_id": "video12611", "sen_id": 244052}, {"caption": "the two men go back and fourth while playing table tennis", "video_id": "video12611", "sen_id": 244053}, {"caption": "a table tennis is tournament is going in a stadium", "video_id": "video12611", "sen_id": 244054}, {"caption": "some people are playing ping pong on a court", "video_id": "video12611", "sen_id": 244055}, {"caption": "two men are playing a game of ping pong on a blue table", "video_id": "video12611", "sen_id": 244056}, {"caption": "in the table tennis game one player wear blue dress and the other wear the red dress", "video_id": "video12611", "sen_id": 244057}, {"caption": "boys in red and blue color dress wearing cloth playing table tennis game inside stadium audience watching clapping hands displaying on screen", "video_id": "video12611", "sen_id": 244058}, {"caption": "in the highlights of table tennis singles match 4 points won by the player in red t-shirt against the player in blue t-shirt", "video_id": "video12611", "sen_id": 244059}, {"caption": "a man discusses a graphic of dna", "video_id": "video10858", "sen_id": 244060}, {"caption": "a sci show clip on dna replication by hank green", "video_id": "video10858", "sen_id": 244061}, {"caption": "a round sphere with some things swirling around ", "video_id": "video10858", "sen_id": 244062}, {"caption": "a pink circle inside a yellow rectangle explaning how dna replicates itself", "video_id": "video10858", "sen_id": 244063}, {"caption": "a small animated clip of a pink ball with lines in the middle", "video_id": "video10858", "sen_id": 244064}, {"caption": "an animated cell is shown while a man talks about how dna replicates itself", "video_id": "video10858", "sen_id": 244065}, {"caption": "its all color look like worms inside a circle", "video_id": "video10858", "sen_id": 244066}, {"caption": "a man speaking about dna as a pink circle with moving pink and white lines inside move around on a yellow screen", "video_id": "video10858", "sen_id": 244067}, {"caption": "a pink circle with some structure inside and it explained", "video_id": "video10858", "sen_id": 244068}, {"caption": "a pink colour structure round circle a man explaing", "video_id": "video10858", "sen_id": 244069}, {"caption": "animation of pink ball with worms inside and yellow background", "video_id": "video10858", "sen_id": 244070}, {"caption": "a man is explain about a cell with a diagram", "video_id": "video10858", "sen_id": 244071}, {"caption": "an animation of dna strands is replicating inside a pink circle with a yellow background", "video_id": "video10858", "sen_id": 244072}, {"caption": "a doctor is explaining two application about dna test", "video_id": "video10858", "sen_id": 244073}, {"caption": "an atomic structure of element is shown on screen", "video_id": "video10858", "sen_id": 244074}, {"caption": "there a round pink ball and there are some things moving in it", "video_id": "video10858", "sen_id": 244075}, {"caption": "a person is describing some sort of science experiment", "video_id": "video10858", "sen_id": 244076}, {"caption": "an animated example of dna in a cell with a narrator giving information", "video_id": "video10858", "sen_id": 244077}, {"caption": "a small cartoon shows you a link and has a voice over about how dna works", "video_id": "video10858", "sen_id": 244078}, {"caption": "someone is talking about a diagram of a pink ball", "video_id": "video10858", "sen_id": 244079}, {"caption": "a woman sings into a microphone a man wearing a cap accompanies her on a guitar and a pianist plays a keyboard during an open stage performance of moody music and lighting", "video_id": "video10699", "sen_id": 244080}, {"caption": "a heavy set woman sings while a man in a purple beanie plays the guitar", "video_id": "video10699", "sen_id": 244081}, {"caption": "during a live concert a guitar player and keyboard player perform for a female vocalist", "video_id": "video10699", "sen_id": 244082}, {"caption": "a women in black over coat is singing and entertaining", "video_id": "video10699", "sen_id": 244083}, {"caption": "a night club where a singer and a guitar player perform for a crowded room", "video_id": "video10699", "sen_id": 244084}, {"caption": "a young and charm guy enjoying and play guitar in an orchestra", "video_id": "video10699", "sen_id": 244085}, {"caption": "lady sings in the mike the guitarist play the guitar", "video_id": "video10699", "sen_id": 244086}, {"caption": "a girl singing a song and music on the stage", "video_id": "video10699", "sen_id": 244087}, {"caption": "there is a woman in black singing a song", "video_id": "video10699", "sen_id": 244088}, {"caption": "a girl singing and a guy playing guitar on the stage", "video_id": "video10699", "sen_id": 244089}, {"caption": "a men playing a gutar a at a consert", "video_id": "video10699", "sen_id": 244090}, {"caption": "a band doing a mellow show for a sitting crowd", "video_id": "video10699", "sen_id": 244091}, {"caption": "there is a woman singing with great music", "video_id": "video10699", "sen_id": 244092}, {"caption": "a man playing a song with a gitre", "video_id": "video10699", "sen_id": 244093}, {"caption": "band on stage playing some music without any vocals", "video_id": "video10699", "sen_id": 244094}, {"caption": "adele is on stage singing while a crowd watches", "video_id": "video10699", "sen_id": 244095}, {"caption": "sexy brunette singing on the stage in front of the audience", "video_id": "video10699", "sen_id": 244096}, {"caption": "there is a women singing on the stage", "video_id": "video10699", "sen_id": 244097}, {"caption": "a lady sings on the stage while a person making music in guitar", "video_id": "video10699", "sen_id": 244098}, {"caption": "adele on stage with a young man in the background playing a guitar", "video_id": "video10699", "sen_id": 244099}, {"caption": "nasa speaks about time and the galaxies and how close the galaxies are", "video_id": "video11056", "sen_id": 244100}, {"caption": "all of the galaxies are moving backwards and it shows that they used to be closer", "video_id": "video11056", "sen_id": 244101}, {"caption": "a man talking about galaxies and how they were in the past", "video_id": "video11056", "sen_id": 244102}, {"caption": "a man is discussing the birth of the universe as supported by the fact that the galaxies are spreading apart", "video_id": "video11056", "sen_id": 244103}, {"caption": "the cosmos is illustrated with a space scene", "video_id": "video11056", "sen_id": 244104}, {"caption": "rocks and planets are flying through the dark outer space sky", "video_id": "video11056", "sen_id": 244105}, {"caption": "credit nasa one man talks about galaxy of sky", "video_id": "video11056", "sen_id": 244106}, {"caption": "a man is explaining about the galaxy and stars", "video_id": "video11056", "sen_id": 244107}, {"caption": "a man is speaking about all the stars in the galaxy and space", "video_id": "video11056", "sen_id": 244108}, {"caption": "all the galaxies in the sky are getting further and further away from us", "video_id": "video11056", "sen_id": 244109}, {"caption": "a women is talking abot galaxy and milky way stars", "video_id": "video11056", "sen_id": 244110}, {"caption": "a man explaining something about the planets to media", "video_id": "video11056", "sen_id": 244111}, {"caption": "some one explaining about nasa video about galaxy seriously", "video_id": "video11056", "sen_id": 244112}, {"caption": "cosmic dust travels through space at high speeds", "video_id": "video11056", "sen_id": 244113}, {"caption": "a men voice is playing in background and telling about cosmic power", "video_id": "video11056", "sen_id": 244114}, {"caption": "a man is talking while space and cosmo images are shown", "video_id": "video11056", "sen_id": 244115}, {"caption": "a scientist lextures on the expansion of the universe", "video_id": "video11056", "sen_id": 244116}, {"caption": "presenter discusses motion of galaxy s and that they get closer as you move back in time", "video_id": "video11056", "sen_id": 244117}, {"caption": "a man is lecturing in theory how the galaxies in the universe are currently moving farther and farther away from us but were at one point close together", "video_id": "video11056", "sen_id": 244118}, {"caption": "a scene of space is showing on the camera", "video_id": "video11056", "sen_id": 244119}, {"caption": "a person uses chopsticks to move food in a sizzling hot skillet", "video_id": "video11460", "sen_id": 244120}, {"caption": "frying pan cooking green vegetables with chopsticks at table", "video_id": "video11460", "sen_id": 244121}, {"caption": "vegetables are being grilled in a pan and stirred with chop sticks by a server", "video_id": "video11460", "sen_id": 244122}, {"caption": "someone is mixing a bowl of vegetable soup next to a diet coke next to someone else placing their chop sticks in a bowl", "video_id": "video11460", "sen_id": 244123}, {"caption": "a pair of chopsticks are pushing some green vegetable in a wok that is being heated at a table", "video_id": "video11460", "sen_id": 244124}, {"caption": "a woman is about to eat a bowl of steaming hot greens and vegetables", "video_id": "video11460", "sen_id": 244125}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video11460", "sen_id": 244126}, {"caption": "someone with chop sticks eating food", "video_id": "video11460", "sen_id": 244127}, {"caption": "someone picking through their meal with a pair of chopsticks before saying thank you to someone not on screen", "video_id": "video11460", "sen_id": 244128}, {"caption": "a person with chopsticks mix up food in a hot pan", "video_id": "video11460", "sen_id": 244129}, {"caption": "stirfry food is being cooked in the foreground with a persom in the background eating with chopsticks and drinking a diet coke", "video_id": "video11460", "sen_id": 244130}, {"caption": "there is someone cooking in the kitchen with vegetables", "video_id": "video11460", "sen_id": 244131}, {"caption": "chopsticks are used to mix a steaming stir-fry dish", "video_id": "video11460", "sen_id": 244132}, {"caption": "someone cooking peppers in a pan with steam coming off the food", "video_id": "video11460", "sen_id": 244133}, {"caption": "stir fry is cooking in a hot man with a diet coke and this has to be eaten with chop sticks when a person says thank you", "video_id": "video11460", "sen_id": 244134}, {"caption": "someone is cooking a stir fry dish with meat and vegetables", "video_id": "video11460", "sen_id": 244135}, {"caption": "a lady taking curry leaves from pot", "video_id": "video11460", "sen_id": 244136}, {"caption": "someone with chopsticks stirring their bowl of vegetable soup", "video_id": "video11460", "sen_id": 244137}, {"caption": "an inhome chef works on a dish of vegetables and meat", "video_id": "video11460", "sen_id": 244138}, {"caption": "person cooking an asian meal with chopsticks on a black skillet", "video_id": "video11460", "sen_id": 244139}, {"caption": "a picture slide show of nature is displayed with scenery from the mountains", "video_id": "video10403", "sen_id": 244140}, {"caption": "a video graphic showing a man in hiking clothes and a group of elephants walking by snow covered mountain tops", "video_id": "video10403", "sen_id": 244141}, {"caption": "there is a man wearing hiking gear standing by a large sign", "video_id": "video10403", "sen_id": 244142}, {"caption": "different parts of the world with different things are put together as a slideshow", "video_id": "video10403", "sen_id": 244143}, {"caption": "a person travelling on the snow mountain", "video_id": "video10403", "sen_id": 244144}, {"caption": "as music plays images of a mountainclimber some elephants and a mountain appear", "video_id": "video10403", "sen_id": 244145}, {"caption": "the slide show is made by using pictures like elephant and mountains etc", "video_id": "video10403", "sen_id": 244146}, {"caption": "this video is about a lot of pictures joined together as a powerpoint", "video_id": "video10403", "sen_id": 244147}, {"caption": "an artifical huts on mountains and a man stands near the board and large group of elephants background mountains", "video_id": "video10403", "sen_id": 244148}, {"caption": "a guy dressed in hiking gear is standing by a wooden sign and elephants are standing in a field n front of huge mountains", "video_id": "video10403", "sen_id": 244149}, {"caption": "a person visiting various adventurous places and sharing pictures", "video_id": "video10403", "sen_id": 244150}, {"caption": "a hiker in winter gear poses by a sign in foreign language then a photographs of a herd of elephants appears", "video_id": "video10403", "sen_id": 244151}, {"caption": "a slideshow of someone standing by signs elephants and a mountain landsacap", "video_id": "video10403", "sen_id": 244152}, {"caption": "a mountain climber poses at the summit of a snowy mountain and shows other views of the mountain from different angles", "video_id": "video10403", "sen_id": 244153}, {"caption": "a pack of elephants travel together near a mountain", "video_id": "video10403", "sen_id": 244154}, {"caption": "a man is on top of a mountain and elephants are moving in a group", "video_id": "video10403", "sen_id": 244155}, {"caption": "the video shows photos being displayed on the screen", "video_id": "video10403", "sen_id": 244156}, {"caption": "a photo click during a tour visit with wild animals and mountains", "video_id": "video10403", "sen_id": 244157}, {"caption": "a slideshow presentation containing four images of natur including tents a person standing next to signs on a mountain", "video_id": "video10403", "sen_id": 244158}, {"caption": "a man is near a sign on a mountain", "video_id": "video10403", "sen_id": 244159}, {"caption": "an orchestra that is playing music from uncharted", "video_id": "video12423", "sen_id": 244160}, {"caption": "an orchestra is playing on stage with a two video screens in the background of the maestro conducting and the other has scenery", "video_id": "video12423", "sen_id": 244161}, {"caption": "a group of people playing instruments on stage", "video_id": "video12423", "sen_id": 244162}, {"caption": "a conductor is leading and orchestra while scenes from a movie play above him", "video_id": "video12423", "sen_id": 244163}, {"caption": "an orchestra playing a song in front of a giant screen which is playing a video", "video_id": "video12423", "sen_id": 244164}, {"caption": "an orchestra is playing music while a video shows on a screen above them", "video_id": "video12423", "sen_id": 244165}, {"caption": "the music director compose the music on the stage for the video", "video_id": "video12423", "sen_id": 244166}, {"caption": "an orchestra playing a beautiful melody with two large movie screens behind them", "video_id": "video12423", "sen_id": 244167}, {"caption": "a large orchestra plays the soundtrack from a famous movie", "video_id": "video12423", "sen_id": 244168}, {"caption": "an orchestra performs while movie clips play in the background", "video_id": "video12423", "sen_id": 244169}, {"caption": "there are two large screens showing a film and an orchestra playing a musical piece to accompany the film", "video_id": "video12423", "sen_id": 244170}, {"caption": "a large projection screen is showing various images while a live orchestra is performing on stage", "video_id": "video12423", "sen_id": 244171}, {"caption": "a large orchestra is performing on stage while different images are projected on to a screen behind them", "video_id": "video12423", "sen_id": 244172}, {"caption": "an orchestra playing to a movie on a large screen", "video_id": "video12423", "sen_id": 244173}, {"caption": "people watching the movie and a music shows on the monitor subsequently", "video_id": "video12423", "sen_id": 244174}, {"caption": "a music band is playing an orchestra in a studio", "video_id": "video12423", "sen_id": 244175}, {"caption": "a movie played on the big screen with a quartet", "video_id": "video12423", "sen_id": 244176}, {"caption": "its music show where many musicians are playing violin for wonderful song so nice", "video_id": "video12423", "sen_id": 244177}, {"caption": "man is singing a song and rising the atmosphere", "video_id": "video12423", "sen_id": 244178}, {"caption": "an audience of people is watching a big screen", "video_id": "video12423", "sen_id": 244179}, {"caption": "a man displays a photo of einstein while discussing einstein's works", "video_id": "video12223", "sen_id": 244180}, {"caption": "this is an older video of machinery and they also display a photo of einstein", "video_id": "video12223", "sen_id": 244181}, {"caption": "einstein was taken up with the problem of the unified field theory", "video_id": "video12223", "sen_id": 244182}, {"caption": "an old video with a man describing the history of einstein", "video_id": "video12223", "sen_id": 244183}, {"caption": "a man is reading a book followed by a picture of a spectrophotometer and albert einstein", "video_id": "video12223", "sen_id": 244184}, {"caption": "a man is talking about the world famous scientist", "video_id": "video12223", "sen_id": 244185}, {"caption": "view of a younger einstein beside calculations on a blackboard and an elderly more commonly seen einstein buttress views of machinery designed by the genius", "video_id": "video12223", "sen_id": 244186}, {"caption": "a man talking something about a another man in media", "video_id": "video12223", "sen_id": 244187}, {"caption": "a close-up is shown of a famous scientist", "video_id": "video12223", "sen_id": 244188}, {"caption": "a man speaking about the spectrometer made by albert einstein", "video_id": "video12223", "sen_id": 244189}, {"caption": "a video clips of dr einstein and the spectra auto meter designed by him", "video_id": "video12223", "sen_id": 244190}, {"caption": "albert einsteins designs and his unified field theory", "video_id": "video12223", "sen_id": 244191}, {"caption": "a man is talking about the scientist and he on photo", "video_id": "video12223", "sen_id": 244192}, {"caption": "a documentary of albert einstein that had released after his death about his achievements and his invention", "video_id": "video12223", "sen_id": 244193}, {"caption": "a biography of albert einstein features his later work on unified field theory", "video_id": "video12223", "sen_id": 244194}, {"caption": "a person described about albert einstein story and invention", "video_id": "video12223", "sen_id": 244195}, {"caption": "an old video of a man talking about einstein", "video_id": "video12223", "sen_id": 244196}, {"caption": "albert einstein s biography and accomplishments and theories are reviewed", "video_id": "video12223", "sen_id": 244197}, {"caption": "a documentary about the legendary albert einstein", "video_id": "video12223", "sen_id": 244198}, {"caption": "a man is speaking in a documentary about albert einstein while a photograph of einstein is displayed", "video_id": "video12223", "sen_id": 244199}, {"caption": "a young woman describes and demonstrates a makeup technique", "video_id": "video12660", "sen_id": 244200}, {"caption": "a young woman discusses makeup and applies makeup to her face", "video_id": "video12660", "sen_id": 244201}, {"caption": "woman applying cosmetics to her eyes to teach how to apply properly", "video_id": "video12660", "sen_id": 244202}, {"caption": "a woman applying concealer under her eye and demonstrating the product", "video_id": "video12660", "sen_id": 244203}, {"caption": "a lady is demonstrating the use of beauty product", "video_id": "video12660", "sen_id": 244204}, {"caption": "a woman is applying makeup on her face and is explaining the product", "video_id": "video12660", "sen_id": 244205}, {"caption": "a lad make up her eye by hand with cream", "video_id": "video12660", "sen_id": 244206}, {"caption": "a woman is taking make-up for her eye-lit with a yellow cosmetic cream", "video_id": "video12660", "sen_id": 244207}, {"caption": "a person using a cotton to apply brown makeup to face and showing product in hand", "video_id": "video12660", "sen_id": 244208}, {"caption": "someone is teaching about eyeliner and eye shadows and how to apply them", "video_id": "video12660", "sen_id": 244209}, {"caption": "there is a women applying makeup by herself", "video_id": "video12660", "sen_id": 244210}, {"caption": "a woman is explaining about the makeup tips", "video_id": "video12660", "sen_id": 244211}, {"caption": "a lady is applying makeup to her face", "video_id": "video12660", "sen_id": 244212}, {"caption": "a girl applies makeup to her eyes with a coton dabber", "video_id": "video12660", "sen_id": 244213}, {"caption": "a women applying the cream in sandal colour under the eye and give gentle massage", "video_id": "video12660", "sen_id": 244214}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video12660", "sen_id": 244215}, {"caption": "a brunet woman is applying makeup while explaining what she is doing", "video_id": "video12660", "sen_id": 244216}, {"caption": "a women takes the foundation and applies to the face", "video_id": "video12660", "sen_id": 244217}, {"caption": "a woman is taking different kind of makeup and putting it on her face", "video_id": "video12660", "sen_id": 244218}, {"caption": "a girl is doing her make up for viewers", "video_id": "video12660", "sen_id": 244219}, {"caption": "an inhome chef talks about a pan she will be using for a recipe", "video_id": "video10535", "sen_id": 244220}, {"caption": "a woman is about to put a dish into a pan", "video_id": "video10535", "sen_id": 244221}, {"caption": "a woman in a blue top scoops food from a bowl to a baking dish", "video_id": "video10535", "sen_id": 244222}, {"caption": "a woman gives the measurements for the proper size dish for a food item", "video_id": "video10535", "sen_id": 244223}, {"caption": "a blond woman in a blue shirt is talking about the size of a dish you need the woman then begins pouring ingredients from mixing bowl into the dish", "video_id": "video10535", "sen_id": 244224}, {"caption": "a women in blue t-shirt is preparing food", "video_id": "video10535", "sen_id": 244225}, {"caption": "a lady is taking transparent dish with particular dimension and pouring something to it", "video_id": "video10535", "sen_id": 244226}, {"caption": "one women making a tasty and healthy recipe in bottle", "video_id": "video10535", "sen_id": 244227}, {"caption": "a girl in blue dress inside kitchen bowl dish prepared pouring inside plate to serve", "video_id": "video10535", "sen_id": 244228}, {"caption": "a blonde haired women is stirring food in a bol", "video_id": "video10535", "sen_id": 244229}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10535", "sen_id": 244230}, {"caption": "someone is taking food from a bowl to a glass container of specific dimension", "video_id": "video10535", "sen_id": 244231}, {"caption": "an in home chef discusses a recipe she is preparing in her home kitchen", "video_id": "video10535", "sen_id": 244232}, {"caption": "a glass of bowl inside spoon kitchen ready to serve the dish pouring", "video_id": "video10535", "sen_id": 244233}, {"caption": "a blonde woman is scooping out some food", "video_id": "video10535", "sen_id": 244234}, {"caption": "a lady shows a glass container and transfer a uncooked food into it", "video_id": "video10535", "sen_id": 244235}, {"caption": "a chef examines a glass rectangular baking pan and prepares to put food in it to cook", "video_id": "video10535", "sen_id": 244236}, {"caption": "a lady with the blue dress drop the food from the wide bowl into the plateits in yellow color", "video_id": "video10535", "sen_id": 244237}, {"caption": "a lady in blue dress inside kitchen taking bowl and preparing to eat", "video_id": "video10535", "sen_id": 244238}, {"caption": "a woman in a blue shirt is cooking up some food", "video_id": "video10535", "sen_id": 244239}, {"caption": "cutting edge iphone app cooks your popcorn without burning it", "video_id": "video10971", "sen_id": 244240}, {"caption": "a man in a grey hoodie is sitting on a bed barking before he turns into a dog", "video_id": "video10971", "sen_id": 244241}, {"caption": "a clip from a interesting vine magic trick", "video_id": "video10971", "sen_id": 244242}, {"caption": "a man in a grey sweatshirt and jeans turns into a dog and then his phone emits popcorn", "video_id": "video10971", "sen_id": 244243}, {"caption": "there is a black dog on top of a bed that then jumps down followed by a man speaking at a table with a cell phone in front of him", "video_id": "video10971", "sen_id": 244244}, {"caption": "a man in a grey hoodie and blue jeans is sitting on a bed and he turns into a cat", "video_id": "video10971", "sen_id": 244245}, {"caption": "a man in a grey hoodie and jeans sitting on a bed he barks and turns in a dog a young guy uses an iphone app to cook popcorn", "video_id": "video10971", "sen_id": 244246}, {"caption": "a man in a hoodie sits on his bed barking and turns into a dog then later makes his phone make popcorn", "video_id": "video10971", "sen_id": 244247}, {"caption": "a man on a bed turns into a dog then pops pop corn on his iphone", "video_id": "video10971", "sen_id": 244248}, {"caption": "two short magic tricks: a hooded man barking on a bed and then changing into a dog a man putting a popcorn kernel on his iphone", "video_id": "video10971", "sen_id": 244249}, {"caption": "a man sitting on a bed morphs into a small dog", "video_id": "video10971", "sen_id": 244250}, {"caption": "a man barks like a dog and then suddenly becomes a dog himself the man places popcorn kernals on his phone and pretends to pop them with an app", "video_id": "video10971", "sen_id": 244251}, {"caption": "a man is showing tricks with the use of editing", "video_id": "video10971", "sen_id": 244252}, {"caption": "interesting video magician making popcorn out of his phone", "video_id": "video10971", "sen_id": 244253}, {"caption": "some comedy scenes like a man transforming to a dog is seen here", "video_id": "video10971", "sen_id": 244254}, {"caption": "a young boy in his hoodie barking on the bed", "video_id": "video10971", "sen_id": 244255}, {"caption": "a man is an gray shirt is barking when a cat drops on him then he discusses an iphone app", "video_id": "video10971", "sen_id": 244256}, {"caption": "a man is barking like a dog and then turns into one", "video_id": "video10971", "sen_id": 244257}, {"caption": "a man in a grey hoodie begins barking to emulate a dog and then becomes a dog he mentions an iphone app which cooks popcorn", "video_id": "video10971", "sen_id": 244258}, {"caption": "guy in grey tshirt shows some magic tricks in front of camera", "video_id": "video10971", "sen_id": 244259}, {"caption": "two people are eating steak in a kitchen", "video_id": "video10127", "sen_id": 244260}, {"caption": "a man and a lady cut piece of chicken on a plate and eat it", "video_id": "video10127", "sen_id": 244261}, {"caption": "a woman is cutting a piece of meat on a chopping board and the tasting it", "video_id": "video10127", "sen_id": 244262}, {"caption": "a man and a woman sampling a piece of cooked meat and discussing the experience", "video_id": "video10127", "sen_id": 244263}, {"caption": "a man and woman cutting up some food on a plate and eating it", "video_id": "video10127", "sen_id": 244264}, {"caption": "a couple cuts and eats food that is on top of a white plate", "video_id": "video10127", "sen_id": 244265}, {"caption": "a male and female judges on a cooking competition show are tasting a meat that looks likes chicken and proclaim it to be tender and firm", "video_id": "video10127", "sen_id": 244266}, {"caption": "a lady standing in the kitchen cutting food on a plate", "video_id": "video10127", "sen_id": 244267}, {"caption": "a man in a sweater vest cuts up meat and discusses how well it is cooked with a woman in a blue shirt", "video_id": "video10127", "sen_id": 244268}, {"caption": "an older man judges the taste of some meat he finds it to be perfectly cooked and firm", "video_id": "video10127", "sen_id": 244269}, {"caption": "cook and guest discuss and taste meal after cooked", "video_id": "video10127", "sen_id": 244270}, {"caption": "an older man and woman taste some food standing in a kitchen", "video_id": "video10127", "sen_id": 244271}, {"caption": "a man is congratulating the cook for creating a great dish", "video_id": "video10127", "sen_id": 244272}, {"caption": "a couple stand and eat together in the kitchen", "video_id": "video10127", "sen_id": 244273}, {"caption": "a lady and man are tasting a steak they just made", "video_id": "video10127", "sen_id": 244274}, {"caption": "a man and women are cutting some meat on a plate", "video_id": "video10127", "sen_id": 244275}, {"caption": "in the kitchen a man in black dressing eating some food", "video_id": "video10127", "sen_id": 244276}, {"caption": "a man and woman are cutting meat on a white plate amd tasting it", "video_id": "video10127", "sen_id": 244277}, {"caption": "a man and woman is tasting food that is on the plate", "video_id": "video10127", "sen_id": 244278}, {"caption": "a woman and old man enjoy food made in the kitchen", "video_id": "video10127", "sen_id": 244279}, {"caption": "an advertisement for a blue and black convertible car that currenly has the top down", "video_id": "video11771", "sen_id": 244280}, {"caption": "a blue sports car sets inside a large garage with the audi symbol on the door", "video_id": "video11771", "sen_id": 244281}, {"caption": "an advertise is about the car brand audi r8 gt spyder", "video_id": "video11771", "sen_id": 244282}, {"caption": "viewing of an audi r8 gt spyder from multiple angles generated by a computer", "video_id": "video11771", "sen_id": 244283}, {"caption": "a motor-centric video game customization screen shows an audi model car while tame music plays in the background", "video_id": "video11771", "sen_id": 244284}, {"caption": "there is a new audi car with new model", "video_id": "video11771", "sen_id": 244285}, {"caption": "an blue grey audi r8 gt spyder is showcased in a digital garage", "video_id": "video11771", "sen_id": 244286}, {"caption": "audi car looks stunning in the new model called spyder in grey color", "video_id": "video11771", "sen_id": 244287}, {"caption": "a car is moving and rolling slowly", "video_id": "video11771", "sen_id": 244288}, {"caption": "a blue convertible sports car at various angles in a large grey room with a garage door", "video_id": "video11771", "sen_id": 244289}, {"caption": "a grey color car from audi car company is shown for advertisement", "video_id": "video11771", "sen_id": 244290}, {"caption": "a new car is being introduced by a video and it does make a person want to touch the icon to see more", "video_id": "video11771", "sen_id": 244291}, {"caption": "a blue color car with no hood being rotated", "video_id": "video11771", "sen_id": 244292}, {"caption": "a gray blue convertible sports car sets in a large open garage", "video_id": "video11771", "sen_id": 244293}, {"caption": "a blue convertible car is shown as the camera moves all around it", "video_id": "video11771", "sen_id": 244294}, {"caption": "an audi r8 gt spyder is being placed in a show room and it has a touch coin to show interior view", "video_id": "video11771", "sen_id": 244295}, {"caption": "there is a top open car on the floor", "video_id": "video11771", "sen_id": 244296}, {"caption": "introducing the new audi sports edition and their features the car is rotating", "video_id": "video11771", "sen_id": 244297}, {"caption": "a demo of a miniature model of a audi rt gt spyder car is displayed with touch icons to view the interior", "video_id": "video11771", "sen_id": 244298}, {"caption": "it is an audi car showing an trial launching", "video_id": "video11771", "sen_id": 244299}, {"caption": "a woman interviews a man about his reasons for leaving a certain place to go to another", "video_id": "video10014", "sen_id": 244300}, {"caption": "an male athlete wearing a light-blue uniform is interviewed in a lounge by a woman with long brown hair wearing a tan jacket", "video_id": "video10014", "sen_id": 244301}, {"caption": "a person with blue t shirt he is a football player in front of one girl conducting a interview after finishing the game", "video_id": "video10014", "sen_id": 244302}, {"caption": "a women is talking to man who is wearing a blue jersey", "video_id": "video10014", "sen_id": 244303}, {"caption": "two persons speaking each other in a interview", "video_id": "video10014", "sen_id": 244304}, {"caption": "the lady speaking to the man in blue jersey while seated", "video_id": "video10014", "sen_id": 244305}, {"caption": "a woman is talking to an athlete about his move to russia", "video_id": "video10014", "sen_id": 244306}, {"caption": " muscular soccer player is interviewed by a brunette reporter", "video_id": "video10014", "sen_id": 244307}, {"caption": "there is a man with blue tshirt talking to a woman", "video_id": "video10014", "sen_id": 244308}, {"caption": "a woman is talking with a man in the room", "video_id": "video10014", "sen_id": 244309}, {"caption": "a young women taking interview with a sports man", "video_id": "video10014", "sen_id": 244310}, {"caption": "a interview talking with hulk and what has changed in his life", "video_id": "video10014", "sen_id": 244311}, {"caption": "a man is sitting and talking to a russian athlete", "video_id": "video10014", "sen_id": 244312}, {"caption": "a woman reporter interviewing a professional soccer player about his trip to russia", "video_id": "video10014", "sen_id": 244313}, {"caption": "a professional football player that is in a sitdown interview with a female reporter", "video_id": "video10014", "sen_id": 244314}, {"caption": "we can see a girl interviewing a sports man inside the hall", "video_id": "video10014", "sen_id": 244315}, {"caption": "a woman interviews a man in a blue shirt who is from russia", "video_id": "video10014", "sen_id": 244316}, {"caption": "a woman in a jacket is speaking to who seems to be an athlete", "video_id": "video10014", "sen_id": 244317}, {"caption": "its a gamelady takes interview of the player he wear the blue dress an sits on the chair", "video_id": "video10014", "sen_id": 244318}, {"caption": "a male player in a blue shirt is being interviewed about moving to russia", "video_id": "video10014", "sen_id": 244319}, {"caption": "a young woman setting in front of a cluttered shelf talks about a list she has compiled", "video_id": "video11307", "sen_id": 244320}, {"caption": "brunette woman in a black tank top speaking in front of a bookshelf", "video_id": "video11307", "sen_id": 244321}, {"caption": "a happy lady named sandrine is preparing to read off a list", "video_id": "video11307", "sen_id": 244322}, {"caption": "a girl in a black shirt talking about her list", "video_id": "video11307", "sen_id": 244323}, {"caption": "a woman in her room introducing a list", "video_id": "video11307", "sen_id": 244324}, {"caption": "a woman is speaking on a channel wearing black dress", "video_id": "video11307", "sen_id": 244325}, {"caption": "the lady wish the audiance and telling the beauty system the showcase is behind the lady", "video_id": "video11307", "sen_id": 244326}, {"caption": "a woman gives an upbeat welcome and begins to discuss a list she has composed", "video_id": "video11307", "sen_id": 244327}, {"caption": "a lady in a black tank top is sitting in front of a shelf", "video_id": "video11307", "sen_id": 244328}, {"caption": "a young girl is excited to talk about her list of things", "video_id": "video11307", "sen_id": 244329}, {"caption": "there is a woman black dressing talking in front of a sheaf", "video_id": "video11307", "sen_id": 244330}, {"caption": "a girl explains about the toys and at the back of her there were toys kept on the rack", "video_id": "video11307", "sen_id": 244331}, {"caption": "a woman with a bookcase behind her inside her home welcome her audience back and explains what she will discuss next", "video_id": "video11307", "sen_id": 244332}, {"caption": "a lady in a black top is making a video blog", "video_id": "video11307", "sen_id": 244333}, {"caption": "a woman saying welcome back to part two and talking about getting thru a list", "video_id": "video11307", "sen_id": 244334}, {"caption": "a lady standing infront of books placed on her shelf", "video_id": "video11307", "sen_id": 244335}, {"caption": "a young woman gives her list of the tv shows she likes watching the most", "video_id": "video11307", "sen_id": 244336}, {"caption": "a lady wearing black is explaining some thing on screen", "video_id": "video11307", "sen_id": 244337}, {"caption": "a woman sits in front of a shelf filled with toys while talking to the viewer", "video_id": "video11307", "sen_id": 244338}, {"caption": "a woman talking about getting thru part 2 of a list", "video_id": "video11307", "sen_id": 244339}, {"caption": "a video on youtube which shows a guy on a motorcycle", "video_id": "video10747", "sen_id": 244340}, {"caption": "a group of young motorcycle riders move along a busy road in traffic", "video_id": "video10747", "sen_id": 244341}, {"caption": "people on motorcycles going doing a street near cars", "video_id": "video10747", "sen_id": 244342}, {"caption": "a group of motorcycle riders move quickly through traffic on a busy street", "video_id": "video10747", "sen_id": 244343}, {"caption": "a video of someone filming their drive on the highway", "video_id": "video10747", "sen_id": 244344}, {"caption": "a bike is moving very fast in a road with other vehicles around", "video_id": "video10747", "sen_id": 244345}, {"caption": "a men explainging car is displayed with its features", "video_id": "video10747", "sen_id": 244346}, {"caption": "bikes are ready for the race in the hard road side", "video_id": "video10747", "sen_id": 244347}, {"caption": "person driving his motorbike very vast through the straight path", "video_id": "video10747", "sen_id": 244348}, {"caption": "a man riding a bike with a camera on his helmet", "video_id": "video10747", "sen_id": 244349}, {"caption": "a vehicle moves fast in a road where other vehicles are also moving", "video_id": "video10747", "sen_id": 244350}, {"caption": "vehicles are moving fast on the road and a bike overtakes", "video_id": "video10747", "sen_id": 244351}, {"caption": "a high speed motorcycle chase takes place on a busy urban highway", "video_id": "video10747", "sen_id": 244352}, {"caption": "a camera mounted on a motorcycle rider he is riding on a motorcycle and another fellow motorist is riding by his side", "video_id": "video10747", "sen_id": 244353}, {"caption": "a person with head cam is riding the bike on the freeway", "video_id": "video10747", "sen_id": 244354}, {"caption": "a red car going very fast through the road with other vehicles", "video_id": "video10747", "sen_id": 244355}, {"caption": "a fast bike racing on a road overtaking some cars is overtaken by a cop on bike", "video_id": "video10747", "sen_id": 244356}, {"caption": "a bike speeds away from a cop at high speeds", "video_id": "video10747", "sen_id": 244357}, {"caption": "a biker is going at a very high speed and the biker is being chased by the polic personal", "video_id": "video10747", "sen_id": 244358}, {"caption": "the driver drives the motorcycle quickly through the traffic", "video_id": "video10747", "sen_id": 244359}, {"caption": "a man is shown from and old looking video and a man narrates about a man that was in a documentary", "video_id": "video12951", "sen_id": 244360}, {"caption": "a narrator discusses a character presented in a documentary", "video_id": "video12951", "sen_id": 244361}, {"caption": "a man in a large cossack hat drinks a liquid from a horn as another older man in a hat and a mustache walks down a set of wooden stairs", "video_id": "video12951", "sen_id": 244362}, {"caption": "an old man wearing a black cap and shirt is walking down the stairs", "video_id": "video12951", "sen_id": 244363}, {"caption": "there's a man in a white shirt speaking followed by a man drinking something and then walking down the stairs", "video_id": "video12951", "sen_id": 244364}, {"caption": "a man in an interesting hat walks out of a building and down stairs", "video_id": "video12951", "sen_id": 244365}, {"caption": "a man in a fur lined hat is walking down some stairs", "video_id": "video12951", "sen_id": 244366}, {"caption": "the main character in a 1970s documentary", "video_id": "video12951", "sen_id": 244367}, {"caption": "how long can a man live is directed by d rodovsky who documented the long living men s life in 1970", "video_id": "video12951", "sen_id": 244368}, {"caption": "a man walking slowly and going to the crowd", "video_id": "video12951", "sen_id": 244369}, {"caption": "a man is telling about a documentary film", "video_id": "video12951", "sen_id": 244370}, {"caption": "a older man is walking out of a building and down the steps to the crowd", "video_id": "video12951", "sen_id": 244371}, {"caption": "a man in cap coming out from the house and others looking him", "video_id": "video12951", "sen_id": 244372}, {"caption": "an old man with a hat is walking down the stairs", "video_id": "video12951", "sen_id": 244373}, {"caption": "a man is talking about a president of a country on a tv show", "video_id": "video12951", "sen_id": 244374}, {"caption": "a news reporter talks about how a man is the focus of a documentary", "video_id": "video12951", "sen_id": 244375}, {"caption": "a older man with a hat walking out of a building", "video_id": "video12951", "sen_id": 244376}, {"caption": "an old man is talking and doing some actions", "video_id": "video12951", "sen_id": 244377}, {"caption": "old man drinking water and walking out", "video_id": "video12951", "sen_id": 244378}, {"caption": "a talk about how long a man can live and shows the pictures of legendary characters", "video_id": "video12951", "sen_id": 244379}, {"caption": "two comedians are speaking one is interviewing and reading something from a twitter", "video_id": "video11092", "sen_id": 244380}, {"caption": "bob balaban reading a mean tweet about himself on the jimmy kimmel show", "video_id": "video11092", "sen_id": 244381}, {"caption": "a bald actor with red glasses reads a rude tweet that someone wrote about him", "video_id": "video11092", "sen_id": 244382}, {"caption": "a man reading text from a phone in front of a brick wall", "video_id": "video11092", "sen_id": 244383}, {"caption": "a man is reading a twitter tweet about the bob balaban storyline from seinfield from his phone", "video_id": "video11092", "sen_id": 244384}, {"caption": "famous actors are reading tweets that are negative towards them for the jimmy kimmel show", "video_id": "video11092", "sen_id": 244385}, {"caption": "a mobile is displayed with various features", "video_id": "video11092", "sen_id": 244386}, {"caption": "one old man in stage had mobile funny with some magic", "video_id": "video11092", "sen_id": 244387}, {"caption": "a man in a blazer stands and holds up a phone while speaking", "video_id": "video11092", "sen_id": 244388}, {"caption": "an old man is wearing glasses and reading something from his smartphone", "video_id": "video11092", "sen_id": 244389}, {"caption": "there is a suit man talking on mobile phone", "video_id": "video11092", "sen_id": 244390}, {"caption": "a balding man wearing round eyeglasses is holding a black cellphone up to his face as he sits in front of a brick wall", "video_id": "video11092", "sen_id": 244391}, {"caption": "a man reads a funny text that was written about him", "video_id": "video11092", "sen_id": 244392}, {"caption": "a goofy man in glasses reads twitter comments about himself", "video_id": "video11092", "sen_id": 244393}, {"caption": "a man with a bald head is talking about soemthing", "video_id": "video11092", "sen_id": 244394}, {"caption": "a men talks with mobile phone in hand", "video_id": "video11092", "sen_id": 244395}, {"caption": "a old men in black dress holding the mobile phone and reading comedy text", "video_id": "video11092", "sen_id": 244396}, {"caption": "famous actors read tweets that people have tweeted about them", "video_id": "video11092", "sen_id": 244397}, {"caption": "a man is reading tweets from a phone screen", "video_id": "video11092", "sen_id": 244398}, {"caption": "a person on tv is looking close at his phone", "video_id": "video11092", "sen_id": 244399}, {"caption": "a man and a woman talking at a restaurant", "video_id": "video12125", "sen_id": 244400}, {"caption": "in a fancy restaurant a man convinces a woman to try something", "video_id": "video12125", "sen_id": 244401}, {"caption": "a woman is staring at a man that is sitting across from her at a table in a restaurant as the man asks her if she'll try something", "video_id": "video12125", "sen_id": 244402}, {"caption": "a white man and a white lady dressed formally discuss their driving situation while seated in a restuarant full of people", "video_id": "video12125", "sen_id": 244403}, {"caption": "a man is sitting next to an attractive woman and asks her a question", "video_id": "video12125", "sen_id": 244404}, {"caption": "two men in suits are speaking to a woman in a black dress at a restaurant", "video_id": "video12125", "sen_id": 244405}, {"caption": "three people hold a dinner as a man asks a woman a simple question to which she responds", "video_id": "video12125", "sen_id": 244406}, {"caption": "a clip from scent of a woman shows al pacino speaking with a young brunette woman", "video_id": "video12125", "sen_id": 244407}, {"caption": "two men and a woman is talking at a restraunt", "video_id": "video12125", "sen_id": 244408}, {"caption": "a woman in black is going to try something that man in a grey suit asked her about", "video_id": "video12125", "sen_id": 244409}, {"caption": "a young brunette woman sits at a table talking with al pacino", "video_id": "video12125", "sen_id": 244410}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video12125", "sen_id": 244411}, {"caption": "a movie scene shows a young woman and a young man in a restaurant and al pacino is asking the woman to try", "video_id": "video12125", "sen_id": 244412}, {"caption": "a girl in black dress talking to the man to try something to eat", "video_id": "video12125", "sen_id": 244413}, {"caption": "the man and woman in the restaurant prepare to leave the table", "video_id": "video12125", "sen_id": 244414}, {"caption": "there is a man in suit talking to a beuty", "video_id": "video12125", "sen_id": 244415}, {"caption": "a man in black suit watching the man in grey suit talking to a lady in black dress", "video_id": "video12125", "sen_id": 244416}, {"caption": "a guy and lady mingle at a casual party", "video_id": "video12125", "sen_id": 244417}, {"caption": "one eldery person asking a fine looking lady to try somethingand the lady accepted to try", "video_id": "video12125", "sen_id": 244418}, {"caption": "some actors in a movie are talking about something", "video_id": "video12125", "sen_id": 244419}, {"caption": "this shows examples of 2-d animation while a girl talks about 2-d animation", "video_id": "video11061", "sen_id": 244420}, {"caption": "a kid with a british accent is talking about animation in movies and cartoons", "video_id": "video11061", "sen_id": 244421}, {"caption": "small cute girl is in happy mood while her dad comes from behind", "video_id": "video11061", "sen_id": 244422}, {"caption": "there is a girl putting some chemical is a beaker", "video_id": "video11061", "sen_id": 244423}, {"caption": "this is the telecast of animation companies cartoon projects", "video_id": "video11061", "sen_id": 244424}, {"caption": "in a cartoon adventure fighting with one of", "video_id": "video11061", "sen_id": 244425}, {"caption": "a cartoon a cup pouring something inside an old man cartoon image displaying on screen", "video_id": "video11061", "sen_id": 244426}, {"caption": "a woman in violet hair making a dish", "video_id": "video11061", "sen_id": 244427}, {"caption": "there is a women hellowing the crowd in the stadium", "video_id": "video11061", "sen_id": 244428}, {"caption": "the narrator talks about animation and anime as we see visions of animation and animation take place such as an upside down house and a young girl working in a science lab", "video_id": "video11061", "sen_id": 244429}, {"caption": "a cartoon that is showing three different previews from animate company", "video_id": "video11061", "sen_id": 244430}, {"caption": "a cartoon show pouring juice inside glass still images displaying on screen", "video_id": "video11061", "sen_id": 244431}, {"caption": "a girl is wearing a yellow crown in her purple hair a t-shirt with a tan-and-white cat on the front", "video_id": "video11061", "sen_id": 244432}, {"caption": "cartoon like hercules on women is make a fire in pot", "video_id": "video11061", "sen_id": 244433}, {"caption": "a girl is speaking in the animation film", "video_id": "video11061", "sen_id": 244434}, {"caption": "the animation was vibrant high in contrast and very colorful", "video_id": "video11061", "sen_id": 244435}, {"caption": "a cartoon with anime characters explain animation to viewers", "video_id": "video11061", "sen_id": 244436}, {"caption": "a woman is explaining about the animated video", "video_id": "video11061", "sen_id": 244437}, {"caption": "i a cartoon one of the girl put some cracker in", "video_id": "video11061", "sen_id": 244438}, {"caption": "a lady explains how animation studios making animated characters", "video_id": "video11061", "sen_id": 244439}, {"caption": "a white plate of crispy onion rings with a man's voice in the background talking about the recipe", "video_id": "video12130", "sen_id": 244440}, {"caption": "crispy onion rings on top of a table", "video_id": "video12130", "sen_id": 244441}, {"caption": "a food recipe for incredibly delicious onion rings", "video_id": "video12130", "sen_id": 244442}, {"caption": "chef john begins talking about the most incredible onion rings while showing the onion rings on a white plate", "video_id": "video12130", "sen_id": 244443}, {"caption": "a plate of crispy onion rings is displayed on a table", "video_id": "video12130", "sen_id": 244444}, {"caption": "some one arranged some onion rings on the tray", "video_id": "video12130", "sen_id": 244445}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video12130", "sen_id": 244446}, {"caption": "there is a white plate piled high with cripsy brown onion rings on top of it", "video_id": "video12130", "sen_id": 244447}, {"caption": "a chef talks about an onion ring recipe that he has perfected", "video_id": "video12130", "sen_id": 244448}, {"caption": "a pile of onions rings are on a plate", "video_id": "video12130", "sen_id": 244449}, {"caption": "there is a served food with crunchy taste inbuilt", "video_id": "video12130", "sen_id": 244450}, {"caption": "a chef speaks about fried onion rings and hot to make them very crispy", "video_id": "video12130", "sen_id": 244451}, {"caption": "com presents: tasty and health crispy onion rings", "video_id": "video12130", "sen_id": 244452}, {"caption": "someone is talking about the crispy onion rings", "video_id": "video12130", "sen_id": 244453}, {"caption": "some onion rings are sitting on a plate", "video_id": "video12130", "sen_id": 244454}, {"caption": "the man here is saying about the crispy onion rings which he had made it", "video_id": "video12130", "sen_id": 244455}, {"caption": "a high stack of onion rings on a white plate while chef john prepares to give his recipe", "video_id": "video12130", "sen_id": 244456}, {"caption": "making of tasty and healthy recipe crispy onion rings", "video_id": "video12130", "sen_id": 244457}, {"caption": "some ring like orange color snacks are kept on a plate", "video_id": "video12130", "sen_id": 244458}, {"caption": "someone is filming a plate full of onion rings", "video_id": "video12130", "sen_id": 244459}, {"caption": "a man previews the next episode of a television show and shows an interview with a man who is driving a truck", "video_id": "video10388", "sen_id": 244460}, {"caption": "a man with a truck camper heads for the ski slopes", "video_id": "video10388", "sen_id": 244461}, {"caption": "a white truck is driving down the road", "video_id": "video10388", "sen_id": 244462}, {"caption": "a man is driving his truck right in the snow", "video_id": "video10388", "sen_id": 244463}, {"caption": "a rolodex flips before we see an elderly man driving down a highway", "video_id": "video10388", "sen_id": 244464}, {"caption": "journey with us as we follow the last real pilgrims living their lives in the frozen tundra of alaska", "video_id": "video10388", "sen_id": 244465}, {"caption": "a white van is moving with a old man driving it", "video_id": "video10388", "sen_id": 244466}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video10388", "sen_id": 244467}, {"caption": "a man driving around in a car talking about having fun while skiing", "video_id": "video10388", "sen_id": 244468}, {"caption": "a old man is driving a car and speaking", "video_id": "video10388", "sen_id": 244469}, {"caption": "a man talking about the car and driving", "video_id": "video10388", "sen_id": 244470}, {"caption": "there is a man riding a small truck", "video_id": "video10388", "sen_id": 244471}, {"caption": "a freeski tv is telecastinga person with white hair is driving a car in between mountain snow pile", "video_id": "video10388", "sen_id": 244472}, {"caption": "thanks to hank devre tim ditty joe mcbride", "video_id": "video10388", "sen_id": 244473}, {"caption": "its next time on tvthe person drives the car by holding the stearing", "video_id": "video10388", "sen_id": 244474}, {"caption": "a old man sitting inside car driving speaking beside moving cars displaying on screen", "video_id": "video10388", "sen_id": 244475}, {"caption": "freeski tv showing an older man driving in a large white truck down a snowy road", "video_id": "video10388", "sen_id": 244476}, {"caption": "a old man driving a truck and talking something", "video_id": "video10388", "sen_id": 244477}, {"caption": "it is showing a preview of the next episode in the tv series and a man is driving an old truck on a snowy road", "video_id": "video10388", "sen_id": 244478}, {"caption": "old guy driving pickup truck for the trip", "video_id": "video10388", "sen_id": 244479}, {"caption": "a tutorial on how to get to the onetechgeniuscom web site followed by where to locate the site's add-ons tab", "video_id": "video10618", "sen_id": 244480}, {"caption": "a man is explaining how to access his website", "video_id": "video10618", "sen_id": 244481}, {"caption": "a man guides people through his web page", "video_id": "video10618", "sen_id": 244482}, {"caption": "a man is explaining how to go to his website one tech genius", "video_id": "video10618", "sen_id": 244483}, {"caption": "a guy is guiding through the user audiences in browser and giving tips on how to go to the web site to locate the addon", "video_id": "video10618", "sen_id": 244484}, {"caption": "a man demonstrates how to access features on an app and a webpage", "video_id": "video10618", "sen_id": 244485}, {"caption": "there is a website with some tips about streaming", "video_id": "video10618", "sen_id": 244486}, {"caption": "a tutorial is going on how to find out the website", "video_id": "video10618", "sen_id": 244487}, {"caption": "on a computer monitor a person googling different sites and multitasking each site one after other", "video_id": "video10618", "sen_id": 244488}, {"caption": "step for streaming tv & movies are shown in this video", "video_id": "video10618", "sen_id": 244489}, {"caption": "man performing a google search and opening streaming website", "video_id": "video10618", "sen_id": 244490}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10618", "sen_id": 244491}, {"caption": "a man advises users on how they can locate and use a particular feature he is promoting", "video_id": "video10618", "sen_id": 244492}, {"caption": "a man demonstrates the process of navigating to the website onetechgeniuscom and finding the addons page located there", "video_id": "video10618", "sen_id": 244493}, {"caption": "an advertisement about the movie website is being shown that is 110 genius", "video_id": "video10618", "sen_id": 244494}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10618", "sen_id": 244495}, {"caption": "a man is talking about how to use a website", "video_id": "video10618", "sen_id": 244496}, {"caption": "a trailer which gives you an idea how to install the onetechgenius add on", "video_id": "video10618", "sen_id": 244497}, {"caption": "a man is showing how to go to a browser to search for the website", "video_id": "video10618", "sen_id": 244498}, {"caption": "some colored icons are shown on a pc", "video_id": "video10618", "sen_id": 244499}, {"caption": "man is preparing food for his pet and putting the lid on the container at the end", "video_id": "video11194", "sen_id": 244500}, {"caption": "a person dunks a mug in a fish tank and then adds grains to it while it is sitting on a wooden table", "video_id": "video11194", "sen_id": 244501}, {"caption": "a man is explaining about what he's doing as he takes a cup of aquarium water and adds some small pellets to it", "video_id": "video11194", "sen_id": 244502}, {"caption": "a man dips a mug in a fish aquarium and adds pellets to soak", "video_id": "video11194", "sen_id": 244503}, {"caption": "a person dips a green mug into an aquarium scoops out water then places small pellets from a tupperware dish into the mug", "video_id": "video11194", "sen_id": 244504}, {"caption": "a man placing food pallets in a fish tank", "video_id": "video11194", "sen_id": 244505}, {"caption": "a man showing how to feed his fish by adding food pellets to a coffee mug", "video_id": "video11194", "sen_id": 244506}, {"caption": "in transparent bowl some ingredients is placed then its covered with blue lid", "video_id": "video11194", "sen_id": 244507}, {"caption": "person is putting some food in the aquarium for the fish", "video_id": "video11194", "sen_id": 244508}, {"caption": "a person is feeding their fish in an aquarium", "video_id": "video11194", "sen_id": 244509}, {"caption": "a man is taking water in a green cup from a fish tank", "video_id": "video11194", "sen_id": 244510}, {"caption": "a person is taking some water in a cup and pouring some food material in its", "video_id": "video11194", "sen_id": 244511}, {"caption": "a man is dropping balls of something into a coffee mug", "video_id": "video11194", "sen_id": 244512}, {"caption": "a man is mixing some item in the cup", "video_id": "video11194", "sen_id": 244513}, {"caption": "a man is narrating steps for something to do with putting pellets into his home aquarium", "video_id": "video11194", "sen_id": 244514}, {"caption": "a person is showing cereal in his tupperware box", "video_id": "video11194", "sen_id": 244515}, {"caption": "a man is explaining how to make pellets used for fish feed soft and soggy", "video_id": "video11194", "sen_id": 244516}, {"caption": "guying filling a cup with water and putting some seeds into it", "video_id": "video11194", "sen_id": 244517}, {"caption": "a guy talks about putting pellets into aquarium water", "video_id": "video11194", "sen_id": 244518}, {"caption": "a person dips a cup into a fish tank and puts pellets into the cup", "video_id": "video11194", "sen_id": 244519}, {"caption": "a person seasoning meat in a pan", "video_id": "video11676", "sen_id": 244520}, {"caption": "a woman is demonstrating with adding spices and garlics on the steak on the pan that she is cooking", "video_id": "video11676", "sen_id": 244521}, {"caption": "a woman putting meat in a pot and then adding seasoning", "video_id": "video11676", "sen_id": 244522}, {"caption": "a woman is cooking in a pan and talking about how she is doing it", "video_id": "video11676", "sen_id": 244523}, {"caption": "a woman cooking in a pan and explaining what to do", "video_id": "video11676", "sen_id": 244524}, {"caption": "some one in a kitchen preparing some meat dish in a big vessel", "video_id": "video11676", "sen_id": 244525}, {"caption": "in this video there is a women and she is in a kitchen and cooking", "video_id": "video11676", "sen_id": 244526}, {"caption": "a woman is cooking meat and other ingredients in a pot", "video_id": "video11676", "sen_id": 244527}, {"caption": "pieces of meat are begging to cook in pan while spices and garlic are added in for seasoning", "video_id": "video11676", "sen_id": 244528}, {"caption": "a pan with meat inside kitchen mixing with spoon preparing dish displaying on screen", "video_id": "video11676", "sen_id": 244529}, {"caption": "in the kitchen a woman cooking two meet pieces", "video_id": "video11676", "sen_id": 244530}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11676", "sen_id": 244531}, {"caption": "one women make a recipe with adding some spices", "video_id": "video11676", "sen_id": 244532}, {"caption": "cooking with garlic and spices make food more flavorful", "video_id": "video11676", "sen_id": 244533}, {"caption": "a woman drop dry spices onto her three sizzling red steaks", "video_id": "video11676", "sen_id": 244534}, {"caption": "there is a women preparing a food in a pan", "video_id": "video11676", "sen_id": 244535}, {"caption": "a cook adds spices and garlic to her meat dish and mixes well", "video_id": "video11676", "sen_id": 244536}, {"caption": "a woman is cooking a meat dish as a spice", "video_id": "video11676", "sen_id": 244537}, {"caption": "a person is cooking meat and season in a pan on the stove", "video_id": "video11676", "sen_id": 244538}, {"caption": "a women is frying meat pieces in pan and pouring spices over it", "video_id": "video11676", "sen_id": 244539}, {"caption": "a man and a woman on a television show discuss voting", "video_id": "video12726", "sen_id": 244540}, {"caption": "a women in a red shirt speaking with a man in a suit about how the voting process works", "video_id": "video12726", "sen_id": 244541}, {"caption": "a woman and man tell the difference between voting in england vs the united states", "video_id": "video12726", "sen_id": 244542}, {"caption": "a british woman and an american man speak to each other about voting in england and the us", "video_id": "video12726", "sen_id": 244543}, {"caption": "a man and a woman talk about parliament and the news in america", "video_id": "video12726", "sen_id": 244544}, {"caption": "two news anchors discuss politics in some sort of news segment", "video_id": "video12726", "sen_id": 244545}, {"caption": "a woman and a man are standing and talking to each other", "video_id": "video12726", "sen_id": 244546}, {"caption": "a man and a woman discussing politics in front of a screen", "video_id": "video12726", "sen_id": 244547}, {"caption": "a top news about election commision held in united states -stenate", "video_id": "video12726", "sen_id": 244548}, {"caption": "a lady in a orange shirt is discussing politics with a man", "video_id": "video12726", "sen_id": 244549}, {"caption": "a tv studio news of politics and votes of parliament election", "video_id": "video12726", "sen_id": 244550}, {"caption": "there is a woman talking to a man in a show", "video_id": "video12726", "sen_id": 244551}, {"caption": "a woman stands across from a man separated by a ballot with some boxes having red check marks and a frame has a drawn figure of a man with his head tilted", "video_id": "video12726", "sen_id": 244552}, {"caption": "the differences between voting in british and united states elections", "video_id": "video12726", "sen_id": 244553}, {"caption": "this is a video of two people discussing who they want to vote for and how to vote in england and america", "video_id": "video12726", "sen_id": 244554}, {"caption": "a man and a woman is standing talking", "video_id": "video12726", "sen_id": 244555}, {"caption": "a man and woman talk about the government on the news", "video_id": "video12726", "sen_id": 244556}, {"caption": "two person are discussing with one of the lady in red dress and one of the man in white shirt and black blessor", "video_id": "video12726", "sen_id": 244557}, {"caption": "news session of the tv programme", "video_id": "video12726", "sen_id": 244558}, {"caption": "a woman in an orange shirt is talking", "video_id": "video12726", "sen_id": 244559}, {"caption": "a person is installing an application on his cell phone", "video_id": "video12337", "sen_id": 244560}, {"caption": "a man is clicking through his phone and explaining how to jailbreak ones android phone", "video_id": "video12337", "sen_id": 244561}, {"caption": "there is a man showing his touch mobile", "video_id": "video12337", "sen_id": 244562}, {"caption": "a person showing the options in a mobile and how to use it", "video_id": "video12337", "sen_id": 244563}, {"caption": "a person is doing a demostration on their smart phone", "video_id": "video12337", "sen_id": 244564}, {"caption": "a mobile phone in hand holding touching screen to displaying pictures different images", "video_id": "video12337", "sen_id": 244565}, {"caption": "a person is showing his phone and its application", "video_id": "video12337", "sen_id": 244566}, {"caption": "a man is telling a features of mobile phone", "video_id": "video12337", "sen_id": 244567}, {"caption": "a guy doing a tutorial about installing any apps without permission", "video_id": "video12337", "sen_id": 244568}, {"caption": "a person is using their phone in a room", "video_id": "video12337", "sen_id": 244569}, {"caption": "video shows a phone with its applications", "video_id": "video12337", "sen_id": 244570}, {"caption": "a person explains how to install and app which is not available in google playstore", "video_id": "video12337", "sen_id": 244571}, {"caption": "a person discussing how to install just about any app wanted", "video_id": "video12337", "sen_id": 244572}, {"caption": "man demonstrates something about settings of a smartphone", "video_id": "video12337", "sen_id": 244573}, {"caption": "someone is holding a phone and using it", "video_id": "video12337", "sen_id": 244574}, {"caption": "a man is showing and demonstrating features of a cell phone", "video_id": "video12337", "sen_id": 244575}, {"caption": "a video of a guy showing you how to install a app on a cell phone", "video_id": "video12337", "sen_id": 244576}, {"caption": "a mobile in hand touching screen and displaying the icons", "video_id": "video12337", "sen_id": 244577}, {"caption": "a person is showing feature of the smart phone", "video_id": "video12337", "sen_id": 244578}, {"caption": "someone is messing around with their phone", "video_id": "video12337", "sen_id": 244579}, {"caption": "cartoon image of a large black castle in the snow as a wallpaper", "video_id": "video11486", "sen_id": 244580}, {"caption": "the computer background of a castle high on a snow covered hill", "video_id": "video11486", "sen_id": 244581}, {"caption": "an image of a castle on top of an ice hill", "video_id": "video11486", "sen_id": 244582}, {"caption": "a man speaking in spanish about a program on his computer", "video_id": "video11486", "sen_id": 244583}, {"caption": "there is an operating system desktop with a castle as its background", "video_id": "video11486", "sen_id": 244584}, {"caption": "the man display one computer screen and talking about one topic", "video_id": "video11486", "sen_id": 244585}, {"caption": "someome speaking spanish sitting on the desktop of their computer", "video_id": "video11486", "sen_id": 244586}, {"caption": "a tall castle on the top of a hill", "video_id": "video11486", "sen_id": 244587}, {"caption": "in this animated scene a tall castle is on top of a snow covered hill and a man narrates in the background", "video_id": "video11486", "sen_id": 244588}, {"caption": "a dark castle is on an icy cliff surrounded by clouds", "video_id": "video11486", "sen_id": 244589}, {"caption": "a castle is built on top of a mountain the sky is covered with dark clouds", "video_id": "video11486", "sen_id": 244590}, {"caption": "a man speaking spanish is discussing his desktop screenshot", "video_id": "video11486", "sen_id": 244591}, {"caption": "a castle themed background of computer desktop is shown", "video_id": "video11486", "sen_id": 244592}, {"caption": "person is showing the folders on his desktop of the computer", "video_id": "video11486", "sen_id": 244593}, {"caption": "a desktop home page is displaying with blue color image background", "video_id": "video11486", "sen_id": 244594}, {"caption": "there is a old fort in a strange place", "video_id": "video11486", "sen_id": 244595}, {"caption": "a man narrates over the image of a computer desktop", "video_id": "video11486", "sen_id": 244596}, {"caption": "a man is talking in a foreign language and there is a desktop screen with a picture of a castle on top of a snowy mountain", "video_id": "video11486", "sen_id": 244597}, {"caption": "a man s computer desktop which shows a castle on top of a snowy hill", "video_id": "video11486", "sen_id": 244598}, {"caption": "a castle on a hill is being shown on tv", "video_id": "video11486", "sen_id": 244599}, {"caption": "a woman with short blonde hair is giving her viewers a visual tutorial of how to do a specific hairstyle", "video_id": "video11569", "sen_id": 244600}, {"caption": "a lay is looking at herself in a mirror as she plays in her hair", "video_id": "video11569", "sen_id": 244601}, {"caption": "a young woman describes and demonstrates a hair technique", "video_id": "video11569", "sen_id": 244602}, {"caption": "a young blonde woman demonstrates how she curls her hair", "video_id": "video11569", "sen_id": 244603}, {"caption": "a blonde woman talks about how she curls her hair", "video_id": "video11569", "sen_id": 244604}, {"caption": "a woman demonstrates on how to make a hair style", "video_id": "video11569", "sen_id": 244605}, {"caption": "a lady adjusting her hair with her hands and she is wearing white", "video_id": "video11569", "sen_id": 244606}, {"caption": "a lady at her makeup table shows how she likes to curl her her in sections and then pin them up", "video_id": "video11569", "sen_id": 244607}, {"caption": "beautiful blonde woman is making her hairstyle", "video_id": "video11569", "sen_id": 244608}, {"caption": "a woman with blonde hair is sectioning her hair to show how to get a certain style", "video_id": "video11569", "sen_id": 244609}, {"caption": "a woman is giving a demonstration on how to curl your hair", "video_id": "video11569", "sen_id": 244610}, {"caption": "a lady showing how she styles her hair while looking into a mirror", "video_id": "video11569", "sen_id": 244611}, {"caption": "girl with white hair teaches us how to do hair style she has red nail polish", "video_id": "video11569", "sen_id": 244612}, {"caption": "a girl doing a hair tutorial", "video_id": "video11569", "sen_id": 244613}, {"caption": "a woman in a room is doing her hair", "video_id": "video11569", "sen_id": 244614}, {"caption": "a blonde lady is making improvements to her hair using clips", "video_id": "video11569", "sen_id": 244615}, {"caption": "a woman is dressing her hair with own", "video_id": "video11569", "sen_id": 244616}, {"caption": "a lady is dressing her hair in front of a mirror", "video_id": "video11569", "sen_id": 244617}, {"caption": "a woman in a white top is sitting in front of a makeup mirror sectioning her hair with clips before curling it", "video_id": "video11569", "sen_id": 244618}, {"caption": "a woman is showing how to do her hair", "video_id": "video11569", "sen_id": 244619}, {"caption": "man in a grey suit sitting on a sound stage giving the news", "video_id": "video10356", "sen_id": 244620}, {"caption": "there is a news anchor looking at the camera and reporting", "video_id": "video10356", "sen_id": 244621}, {"caption": "john phillips is on screen for his show the rundown talking about trump's feud with fox news", "video_id": "video10356", "sen_id": 244622}, {"caption": "a man in a gray jacket is delivering the news", "video_id": "video10356", "sen_id": 244623}, {"caption": "a man in a suit discusses a feud between fox news and mcdonalds", "video_id": "video10356", "sen_id": 244624}, {"caption": "there is a suit man talking from the studio", "video_id": "video10356", "sen_id": 244625}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10356", "sen_id": 244626}, {"caption": "the mans sits on the stage and talks with the blue background", "video_id": "video10356", "sen_id": 244627}, {"caption": "a host speaks with his grey colour coat and a mike is attched", "video_id": "video10356", "sen_id": 244628}, {"caption": "a news anchor host wearing jacket is reading news", "video_id": "video10356", "sen_id": 244629}, {"caption": "there is a suit man talking inside the room", "video_id": "video10356", "sen_id": 244630}, {"caption": "there is a men in grey suit telling news in news room", "video_id": "video10356", "sen_id": 244631}, {"caption": "the run down john phillips host speaking something", "video_id": "video10356", "sen_id": 244632}, {"caption": "a man in blue shirt dress sitting and speaking displaying on screen", "video_id": "video10356", "sen_id": 244633}, {"caption": "a man in a gray shirt is talking about something", "video_id": "video10356", "sen_id": 244634}, {"caption": "there is a person and he is reading news", "video_id": "video10356", "sen_id": 244635}, {"caption": "a man well dressed up talking in the program", "video_id": "video10356", "sen_id": 244636}, {"caption": "a man talking something about in a television show", "video_id": "video10356", "sen_id": 244637}, {"caption": "the young man in black suit explains about something very elaborately", "video_id": "video10356", "sen_id": 244638}, {"caption": "a man in a gray suit is sitting and talking", "video_id": "video10356", "sen_id": 244639}, {"caption": "a panel of women talk about their favorite disney tv shows", "video_id": "video12751", "sen_id": 244640}, {"caption": "multiple woman sitting around a table discussing their favorite characters and why on different disney sitcoms", "video_id": "video12751", "sen_id": 244641}, {"caption": "a group of ladies sit at a table talking on a tv talk show", "video_id": "video12751", "sen_id": 244642}, {"caption": "a group of young women talk about their favorite old tv shows", "video_id": "video12751", "sen_id": 244643}, {"caption": "five women are talking about boys and tv shows", "video_id": "video12751", "sen_id": 244644}, {"caption": "five young women sit around a desk and discuss television shows", "video_id": "video12751", "sen_id": 244645}, {"caption": "a group of women discuss their favorite disney tv shows", "video_id": "video12751", "sen_id": 244646}, {"caption": "a group of five women on a talk show are discussing their favorite disney show", "video_id": "video12751", "sen_id": 244647}, {"caption": "a group of five women sitting at a table having a discussion", "video_id": "video12751", "sen_id": 244648}, {"caption": "five women sit around a table and discuss their favorite t", "video_id": "video12751", "sen_id": 244649}, {"caption": "group of beautiful ladies speaking on a tv show", "video_id": "video12751", "sen_id": 244650}, {"caption": "there are some women attending a meeting in a studio", "video_id": "video12751", "sen_id": 244651}, {"caption": "five ladies on a debate show discuss their choice of disney shows on the program", "video_id": "video12751", "sen_id": 244652}, {"caption": "five women are sitting around a table talking", "video_id": "video12751", "sen_id": 244653}, {"caption": "group of girls sitting beside table discusing each other on topic displaying on screen", "video_id": "video12751", "sen_id": 244654}, {"caption": "a panel of 5 women discuss their favorite disney tv shows", "video_id": "video12751", "sen_id": 244655}, {"caption": "a group of woman sit around a table and talk about disney television shows", "video_id": "video12751", "sen_id": 244656}, {"caption": "a group of women speak to each other at a table", "video_id": "video12751", "sen_id": 244657}, {"caption": "women discuss their favorite disney tv shows on a talk show", "video_id": "video12751", "sen_id": 244658}, {"caption": "many girls sitting on chairs beside speaking discusing on topic laughing displaying on screen", "video_id": "video12751", "sen_id": 244659}, {"caption": "a woman in a ponytail is shaking her head at someone", "video_id": "video10106", "sen_id": 244660}, {"caption": "a woman is looking sad while talking to the man", "video_id": "video10106", "sen_id": 244661}, {"caption": "an african man and a white woman have a serious conversation", "video_id": "video10106", "sen_id": 244662}, {"caption": "will smith talks to a blonde actress with a ponytail", "video_id": "video10106", "sen_id": 244663}, {"caption": "a man is talking to a cute lady who is sad", "video_id": "video10106", "sen_id": 244664}, {"caption": "the beautiful girl in black design dress is speaking to someone in the talk show", "video_id": "video10106", "sen_id": 244665}, {"caption": "a beautiful women is seen talking to a man with a bit of tension", "video_id": "video10106", "sen_id": 244666}, {"caption": "a man talking with a girl deeply", "video_id": "video10106", "sen_id": 244667}, {"caption": "will smith and margot robbie acting on the movie focus", "video_id": "video10106", "sen_id": 244668}, {"caption": "willsmith and a lady talking to each other looking upset", "video_id": "video10106", "sen_id": 244669}, {"caption": "there is a man with blue tshirt talking to his girl friend", "video_id": "video10106", "sen_id": 244670}, {"caption": "a man in a blue shirt speaking to a woman with pink lipstick about wanting to keep her safe", "video_id": "video10106", "sen_id": 244671}, {"caption": "a blond young women is having an emotional conversation presumably with her boyfriend about their relationship", "video_id": "video10106", "sen_id": 244672}, {"caption": "beautiful blonde lady gets disappointed when her man tells her something", "video_id": "video10106", "sen_id": 244673}, {"caption": "a black man is talking to a white woman inside", "video_id": "video10106", "sen_id": 244674}, {"caption": "blonde woman and dark skinned man with beard discuss her safety while she is upset and scared", "video_id": "video10106", "sen_id": 244675}, {"caption": "a lady speaking to a man and she closes eyes and feels sad", "video_id": "video10106", "sen_id": 244676}, {"caption": "a man and a woman are talking and feeling", "video_id": "video10106", "sen_id": 244677}, {"caption": "a boy in blue color dress wearing cloth speaking with girl displaying on screen", "video_id": "video10106", "sen_id": 244678}, {"caption": "a man and woman are interacting closely", "video_id": "video10106", "sen_id": 244679}, {"caption": "a group of jockeys wearing vaious colored helmets race their different colored horses around a green grass race track", "video_id": "video11789", "sen_id": 244680}, {"caption": "a sports commentator is reporting about a live horse raise in the united kingdom", "video_id": "video11789", "sen_id": 244681}, {"caption": "a group of jockeys racing their horses around a race track", "video_id": "video11789", "sen_id": 244682}, {"caption": "a steeplechase with a large field of horses on a grass track", "video_id": "video11789", "sen_id": 244683}, {"caption": "men race horses while the announcer lists the ranks", "video_id": "video11789", "sen_id": 244684}, {"caption": "men race horses while the announcer lists the ranks", "video_id": "video11789", "sen_id": 244685}, {"caption": "all persons are ridding horse racing on a race court", "video_id": "video11789", "sen_id": 244686}, {"caption": "horse race in which all the jockey going as a group and crossing hurdles", "video_id": "video11789", "sen_id": 244687}, {"caption": "a group of horses race down a racetrack", "video_id": "video11789", "sen_id": 244688}, {"caption": "a pack of race horses race down the track", "video_id": "video11789", "sen_id": 244689}, {"caption": "there are some people riding horses on the grass", "video_id": "video11789", "sen_id": 244690}, {"caption": "race horses run together in a square-ish formation on grass until the group thins out along the rail after an obstacle jump and a track curve", "video_id": "video11789", "sen_id": 244691}, {"caption": "a large group of horse race along a grass covered reaceway", "video_id": "video11789", "sen_id": 244692}, {"caption": "many race horses running a race on a track that has grass on it", "video_id": "video11789", "sen_id": 244693}, {"caption": "horses and jokeys in a bunch are running on a grassy racetrack and turn as they race for the finish line", "video_id": "video11789", "sen_id": 244694}, {"caption": "a man narrates a horse race as a group of horses run on a green track", "video_id": "video11789", "sen_id": 244695}, {"caption": "a man narrating a pack of racing horses by their names", "video_id": "video11789", "sen_id": 244696}, {"caption": "a steeplechase horse race with two dark bays leading", "video_id": "video11789", "sen_id": 244697}, {"caption": "a horse race being commentated by a man where all the horses are very close to each other", "video_id": "video11789", "sen_id": 244698}, {"caption": "horse race being moderated by english man with the front horses fighting for the lead", "video_id": "video11789", "sen_id": 244699}, {"caption": "a woman giving a recipe for chicken dish", "video_id": "video10575", "sen_id": 244700}, {"caption": "a chef describes and demonstrates the ingredients they will be using for a recipe", "video_id": "video10575", "sen_id": 244701}, {"caption": "a chef prepares for a recipe by describing the ingredients they plan on using", "video_id": "video10575", "sen_id": 244702}, {"caption": "a woman is describing what ingrediants she is putting in her dish she is about to cook", "video_id": "video10575", "sen_id": 244703}, {"caption": "a woman adds spices to meat for her recipe", "video_id": "video10575", "sen_id": 244704}, {"caption": "a chef details the various ingredients she plans on using in a recipe", "video_id": "video10575", "sen_id": 244705}, {"caption": "some raw chicken in a bowl and a hand picking up glass cups of spices", "video_id": "video10575", "sen_id": 244706}, {"caption": "in a kitchen a woman is describing a couple of seasoning", "video_id": "video10575", "sen_id": 244707}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10575", "sen_id": 244708}, {"caption": "in a small bowl container grains are taken", "video_id": "video10575", "sen_id": 244709}, {"caption": "a woman is describing a recipe and cooking it as she goes", "video_id": "video10575", "sen_id": 244710}, {"caption": "this clip contained the steps and ingredients on how to cook something", "video_id": "video10575", "sen_id": 244711}, {"caption": "a woman shows various amounts of herbs and spices for a recipe tutorial", "video_id": "video10575", "sen_id": 244712}, {"caption": "a woman is showing different type of spices that are in bowls", "video_id": "video10575", "sen_id": 244713}, {"caption": "a person is holding some glass cups", "video_id": "video10575", "sen_id": 244714}, {"caption": "a person is preparing a tasty dish in a room", "video_id": "video10575", "sen_id": 244715}, {"caption": "a woman pointing at varieties of ingreedients in glasses", "video_id": "video10575", "sen_id": 244716}, {"caption": "a woman is listing the ingredients and that are placed in the bowl", "video_id": "video10575", "sen_id": 244717}, {"caption": "a lady is cooking with spices", "video_id": "video10575", "sen_id": 244718}, {"caption": "someone is showing things in small cuips", "video_id": "video10575", "sen_id": 244719}, {"caption": "a boy in a red shirt is eating ice cream while talking to ma man about his pet", "video_id": "video12635", "sen_id": 244720}, {"caption": "a boy in a red shirt eats an ice cream cone against a green wall", "video_id": "video12635", "sen_id": 244721}, {"caption": "a boy tells that his hamster only bit him once", "video_id": "video12635", "sen_id": 244722}, {"caption": "a boy is feeding his pet rodent in a cage before he eats ice cream in a cone", "video_id": "video12635", "sen_id": 244723}, {"caption": "there is a kid in red speaking to someone in a green kitchen and eats ice cream", "video_id": "video12635", "sen_id": 244724}, {"caption": "man filming his son explain how his hamster bit him once while child eats ice cream", "video_id": "video12635", "sen_id": 244725}, {"caption": "a boy in a green room eats a vanilla ice cream cone and places his other hand through an opening in a wire hamster cage", "video_id": "video12635", "sen_id": 244726}, {"caption": "a little boy is talking about his pet and eating an ice cream cone", "video_id": "video12635", "sen_id": 244727}, {"caption": "a boy in red t-shirt eating some snacks in front of the camera", "video_id": "video12635", "sen_id": 244728}, {"caption": "one boy is talking something and eat icecream in", "video_id": "video12635", "sen_id": 244729}, {"caption": "a boy is eating and talking in the home", "video_id": "video12635", "sen_id": 244730}, {"caption": "a young boy talks about his hamster while he is eating an ice cream cone", "video_id": "video12635", "sen_id": 244731}, {"caption": "kid in orange shirt talking to the camera with mouthful of food", "video_id": "video12635", "sen_id": 244732}, {"caption": "a cat is in the cage and women is carring them in cage", "video_id": "video12635", "sen_id": 244733}, {"caption": "one man talks with a boy eating ice cream", "video_id": "video12635", "sen_id": 244734}, {"caption": "a small boy eats an ice cream cone and talks about his pet hamster", "video_id": "video12635", "sen_id": 244735}, {"caption": "there is a boy removing something from cage and eating ice cream", "video_id": "video12635", "sen_id": 244736}, {"caption": "a small boy wearing red dress playing with his pets", "video_id": "video12635", "sen_id": 244737}, {"caption": "a young boy talks about his hamster and the hamster s cage", "video_id": "video12635", "sen_id": 244738}, {"caption": "a boy is talking to person and eating ice cream", "video_id": "video12635", "sen_id": 244739}, {"caption": "a woman discusses the primal factors of a cheetah", "video_id": "video10215", "sen_id": 244740}, {"caption": "a woman with a navy blue shirt on talks about cheetahs", "video_id": "video10215", "sen_id": 244741}, {"caption": "a woman with red hair pulled back wears a blue pullover sweater over a lighter blue shirt while standing on grass by a metal railing and ridged building", "video_id": "video10215", "sen_id": 244742}, {"caption": "a woman in a blue sweatshirt talking about cheetahs", "video_id": "video10215", "sen_id": 244743}, {"caption": "a woman describes the prey instincts of a predator", "video_id": "video10215", "sen_id": 244744}, {"caption": "a lady in the green grass field speaks about some athlete meets", "video_id": "video10215", "sen_id": 244745}, {"caption": "a lady wearing blue dress explaining something to media", "video_id": "video10215", "sen_id": 244746}, {"caption": "a woman with reddish hair and blue shirt is talking", "video_id": "video10215", "sen_id": 244747}, {"caption": "not to be confused with the cheetah from cheetos", "video_id": "video10215", "sen_id": 244748}, {"caption": "a old lady standing in the grass of an athlete ground and speaking", "video_id": "video10215", "sen_id": 244749}, {"caption": "a red-haired woman explains that cheetahs are sight hunters who chase what runs", "video_id": "video10215", "sen_id": 244750}, {"caption": "there is a mature woman talking from a ground", "video_id": "video10215", "sen_id": 244751}, {"caption": "a lady wearing blue dress is talking", "video_id": "video10215", "sen_id": 244752}, {"caption": "a red headed woman giving an interview in a field describing cheetahs", "video_id": "video10215", "sen_id": 244753}, {"caption": "a woman is speaking to an audience on a field of grass", "video_id": "video10215", "sen_id": 244754}, {"caption": "a woman in a field is talking on a camera", "video_id": "video10215", "sen_id": 244755}, {"caption": "there is a woman talking about a game", "video_id": "video10215", "sen_id": 244756}, {"caption": "a female sports player talking something to media", "video_id": "video10215", "sen_id": 244757}, {"caption": "girl in blue dress and brown hair talks by shaking her headfloor is full of green", "video_id": "video10215", "sen_id": 244758}, {"caption": "a woman with red hair is on a field", "video_id": "video10215", "sen_id": 244759}, {"caption": "a woman describes what she is doing as she prepares to give another woman a haircut", "video_id": "video11768", "sen_id": 244760}, {"caption": "a woman is cutting hair of other stylish and neatly", "video_id": "video11768", "sen_id": 244761}, {"caption": "a person makes a hair cut and explains how to cut with the correct size of hair", "video_id": "video11768", "sen_id": 244762}, {"caption": "women cutting the hair in shape", "video_id": "video11768", "sen_id": 244763}, {"caption": "a woman s hands are shown holding a comb and scissors as she holds a section of hair that she is about to cut", "video_id": "video11768", "sen_id": 244764}, {"caption": "hair restyling by a hair dresser using a comb and a sizer", "video_id": "video11768", "sen_id": 244765}, {"caption": "a hairdresser explains how to cut hair in certain style", "video_id": "video11768", "sen_id": 244766}, {"caption": "a woman explaining how to cut hair and what angel to use", "video_id": "video11768", "sen_id": 244767}, {"caption": "women showing how she going to cut hair", "video_id": "video11768", "sen_id": 244768}, {"caption": "a woman that is describing how to change grade when cutting hair", "video_id": "video11768", "sen_id": 244769}, {"caption": "a blonde woman is using scissors to cut another woman s hair properly", "video_id": "video11768", "sen_id": 244770}, {"caption": "woman explaining how to cut hair on an angle dark haired girl in a hair salon", "video_id": "video11768", "sen_id": 244771}, {"caption": "a woman is sectioning off a clients hair in order to cut it", "video_id": "video11768", "sen_id": 244772}, {"caption": "a woman demonstrates hair styling techniques on a dark haired person", "video_id": "video11768", "sen_id": 244773}, {"caption": "a woman is demonstrating a hair cutting technique on another woman s hair", "video_id": "video11768", "sen_id": 244774}, {"caption": "a lady is working on another womans hair and making improvements", "video_id": "video11768", "sen_id": 244775}, {"caption": "a woman explaining how to cut a humans hair", "video_id": "video11768", "sen_id": 244776}, {"caption": "a woman is cutting a woman s hair and demonstrating how to properly do it", "video_id": "video11768", "sen_id": 244777}, {"caption": "a woman s voice is heard explaining how to hold the hair to achieve the right stack when cutting it she is combing through wet", "video_id": "video11768", "sen_id": 244778}, {"caption": "a person is styling a person s hair inside", "video_id": "video11768", "sen_id": 244779}, {"caption": "a cat setting next to his food bowl sways around and moves his paws", "video_id": "video12527", "sen_id": 244780}, {"caption": "a couple of vines show cats doing different funny things", "video_id": "video12527", "sen_id": 244781}, {"caption": "video contains clips of three different cats accompanied by music", "video_id": "video12527", "sen_id": 244782}, {"caption": "a cat sleeping and moving his paws in front of the camera", "video_id": "video12527", "sen_id": 244783}, {"caption": "short clips of animals doing hilarious things", "video_id": "video12527", "sen_id": 244784}, {"caption": "a funny cat compilation with music and dancing", "video_id": "video12527", "sen_id": 244785}, {"caption": "cats dancing and nodding their heads to music", "video_id": "video12527", "sen_id": 244786}, {"caption": "cats are dancing to the music or it seems to be dancing after some editing of the video", "video_id": "video12527", "sen_id": 244787}, {"caption": "cats act strangely and chase their tails and dance to music", "video_id": "video12527", "sen_id": 244788}, {"caption": "funny vines of cats doing silly or ridiculous things", "video_id": "video12527", "sen_id": 244789}, {"caption": "a cat doing some action in front of the camera", "video_id": "video12527", "sen_id": 244790}, {"caption": "a cat dancing to the tune", "video_id": "video12527", "sen_id": 244791}, {"caption": "a cute funny cat doing something funny while eating", "video_id": "video12527", "sen_id": 244792}, {"caption": "cats are shown dancing in various situations and in different locations", "video_id": "video12527", "sen_id": 244793}, {"caption": "a little kitty cat picks food off the table", "video_id": "video12527", "sen_id": 244794}, {"caption": "the two cats in the house doing some actions", "video_id": "video12527", "sen_id": 244795}, {"caption": "a cat dancing to the tune of hot nigga by bobby shmurda and then some other cats", "video_id": "video12527", "sen_id": 244796}, {"caption": "a cat is dancing for a music and another cat is laying", "video_id": "video12527", "sen_id": 244797}, {"caption": "cute little cats are playing then the cat near table closes its eyes", "video_id": "video12527", "sen_id": 244798}, {"caption": "a gray and white cat is silently praying to buddha", "video_id": "video12527", "sen_id": 244799}, {"caption": "two badminton players are in a match in a large indoor stadium", "video_id": "video12340", "sen_id": 244800}, {"caption": "a tennis match with two young ladies and their coaches", "video_id": "video12340", "sen_id": 244801}, {"caption": "commentators analyze the most recent tennis point in a women's match", "video_id": "video12340", "sen_id": 244802}, {"caption": "in an exciting game of tennis both players look to be exhausted as the coach looks on from the sideline", "video_id": "video12340", "sen_id": 244803}, {"caption": "during a competitive badminton match the players get reach for the next point while the coach observes from a chair on the sidelines", "video_id": "video12340", "sen_id": 244804}, {"caption": "announcer commenting on a women's badmitton match as coach watches", "video_id": "video12340", "sen_id": 244805}, {"caption": "as two young female badminton players take a short break during a high level match a coach looks on from the sidelines", "video_id": "video12340", "sen_id": 244806}, {"caption": "two young women sweat heavily while playing tennis against one another", "video_id": "video12340", "sen_id": 244807}, {"caption": "in badminton court girl in black wiped her sweat from face", "video_id": "video12340", "sen_id": 244808}, {"caption": "its the tennis game the girl in white dress plays against the girl in black dress", "video_id": "video12340", "sen_id": 244809}, {"caption": "scene from a badminton match where players are wearing black and white tshirts `respectively", "video_id": "video12340", "sen_id": 244810}, {"caption": "a women in black jersey playing badminton", "video_id": "video12340", "sen_id": 244811}, {"caption": "two girls playing badminton in indoor stadium", "video_id": "video12340", "sen_id": 244812}, {"caption": "womens singles badminton playing glasgow 2014 trainer watching", "video_id": "video12340", "sen_id": 244813}, {"caption": "tennis game in which the player touched the bat then he lifted the cock to hit", "video_id": "video12340", "sen_id": 244814}, {"caption": "the badminton player prepares to hit the birdie to the other player", "video_id": "video12340", "sen_id": 244815}, {"caption": "there is a black tshirt woman playing badminton in a court", "video_id": "video12340", "sen_id": 244816}, {"caption": "badminton singles is progressing between two lady players and coach observes", "video_id": "video12340", "sen_id": 244817}, {"caption": "a girl in black and white dress playing tennis game inside stadium and refere sitting in chair", "video_id": "video12340", "sen_id": 244818}, {"caption": "a couple of people are playing badminton against each other", "video_id": "video12340", "sen_id": 244819}, {"caption": "brad pitt is shown in a war movie speaking to a boy under him giving him comfort", "video_id": "video11155", "sen_id": 244820}, {"caption": "one soldiers grabs another soldier by the face and slaps him", "video_id": "video11155", "sen_id": 244821}, {"caption": "a young boy is being talked to by another male and smacked around", "video_id": "video11155", "sen_id": 244822}, {"caption": "a man is grabbing the face of another man and then slaps him", "video_id": "video11155", "sen_id": 244823}, {"caption": "a commander gives one of his soldiers a stern talking to", "video_id": "video11155", "sen_id": 244824}, {"caption": "an older soldier confronts and slaps a younger soldier in this clip from a war movie", "video_id": "video11155", "sen_id": 244825}, {"caption": "there are two men in world war ii army uniforms the older man is speaking to the younger man", "video_id": "video11155", "sen_id": 244826}, {"caption": "one man slap another man twice fury movie", "video_id": "video11155", "sen_id": 244827}, {"caption": "a man is beating a another man and asking some quesion", "video_id": "video11155", "sen_id": 244828}, {"caption": "senior officer talking to young soldier to get ready for the war", "video_id": "video11155", "sen_id": 244829}, {"caption": "a young man is being smashed and interrogated by another one", "video_id": "video11155", "sen_id": 244830}, {"caption": "one man beats another man twice very hardly", "video_id": "video11155", "sen_id": 244831}, {"caption": "brad pitt grabbing a young man s face and slapping his cheek in a clip of the movie fury", "video_id": "video11155", "sen_id": 244832}, {"caption": "a movie scene shows two men arguing with each other", "video_id": "video11155", "sen_id": 244833}, {"caption": "some soldiers are interacting outside in a place", "video_id": "video11155", "sen_id": 244834}, {"caption": "a army commander slapping a young solider on duty", "video_id": "video11155", "sen_id": 244835}, {"caption": "one man can beat a boy twice angerly", "video_id": "video11155", "sen_id": 244836}, {"caption": "a man beating some one and ask some questions", "video_id": "video11155", "sen_id": 244837}, {"caption": "old officer talking to young soldier and telling him to get ready for war", "video_id": "video11155", "sen_id": 244838}, {"caption": "two soldiers are talking and one is getting slapped", "video_id": "video11155", "sen_id": 244839}, {"caption": "a cooking tutorial with an old woman and man", "video_id": "video10962", "sen_id": 244840}, {"caption": "two chefs work together on a dish in a small home kitchen", "video_id": "video10962", "sen_id": 244841}, {"caption": "a woman peels and chops a red onion", "video_id": "video10962", "sen_id": 244842}, {"caption": "a female cook with her hair pulled up on her head peels a purple onion while a younger man watches in a kitchen with a yellow window shelves of pots a cluttered counter and hanging utensils", "video_id": "video10962", "sen_id": 244843}, {"caption": "a woman peels and chops an onion while a man watches her", "video_id": "video10962", "sen_id": 244844}, {"caption": "a woman peels a red onion for a man and then begins to chop an onion on a different cutting board", "video_id": "video10962", "sen_id": 244845}, {"caption": "women is arranging ingredients to prepare food", "video_id": "video10962", "sen_id": 244846}, {"caption": "a woman is teaching a boy how to prepare vegetables", "video_id": "video10962", "sen_id": 244847}, {"caption": "in a kitchen an older woman is cutting food on a cutting board while a man is standing to her left watching her", "video_id": "video10962", "sen_id": 244848}, {"caption": "woman is cooking and teaching the guy in maroon shirt how to do it", "video_id": "video10962", "sen_id": 244849}, {"caption": "a woman in white top cutting the onions very carefully", "video_id": "video10962", "sen_id": 244850}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10962", "sen_id": 244851}, {"caption": "a chef is cutting a vegetables and a man is watching it", "video_id": "video10962", "sen_id": 244852}, {"caption": "a chef prepares a dish in demonstration to a man watching", "video_id": "video10962", "sen_id": 244853}, {"caption": "a couple of people are making food together", "video_id": "video10962", "sen_id": 244854}, {"caption": "a woman showing a young man how to cut the onions on the tray", "video_id": "video10962", "sen_id": 244855}, {"caption": "hey woman peeling onions and chopping it", "video_id": "video10962", "sen_id": 244856}, {"caption": "a woman chef is explain about how to cut a vegetable", "video_id": "video10962", "sen_id": 244857}, {"caption": "a woman shows a man how to peel a red onion", "video_id": "video10962", "sen_id": 244858}, {"caption": "a woman is showing a man how to make food", "video_id": "video10962", "sen_id": 244859}, {"caption": "a women in a bedroom explaining the five species of domestic hamsters", "video_id": "video11549", "sen_id": 244860}, {"caption": "a woman speaking about the five species of domestic hamsters", "video_id": "video11549", "sen_id": 244861}, {"caption": "a woman discusses the five species of domestic hamster", "video_id": "video11549", "sen_id": 244862}, {"caption": "a woman lists several different kinds of hamsters", "video_id": "video11549", "sen_id": 244863}, {"caption": "a woman in grey t shirt is telling about hamsters", "video_id": "video11549", "sen_id": 244864}, {"caption": "a blond woman in a grey t-shirt is speaking about different types of hamsters", "video_id": "video11549", "sen_id": 244865}, {"caption": "a woman is describing types of hamsters", "video_id": "video11549", "sen_id": 244866}, {"caption": "a blond haired lady is sitting in her bedroom", "video_id": "video11549", "sen_id": 244867}, {"caption": "a woman with blonde hair and a gray shirt and an english accent is describing different types of hamsters", "video_id": "video11549", "sen_id": 244868}, {"caption": "a lady is speaking about the different types of hamsters", "video_id": "video11549", "sen_id": 244869}, {"caption": "a woman in tshirt talking from her room", "video_id": "video11549", "sen_id": 244870}, {"caption": "hamster expert gives the viewer a rundown on the main types of domestic hamsters", "video_id": "video11549", "sen_id": 244871}, {"caption": "a woman is speaking in the bed room", "video_id": "video11549", "sen_id": 244872}, {"caption": "a woman talks about the five types of hamsters", "video_id": "video11549", "sen_id": 244873}, {"caption": "a lady speaking about the hamsters for various types like chinese and some others", "video_id": "video11549", "sen_id": 244874}, {"caption": "a woman with blonde hair is recording a video about hamsters", "video_id": "video11549", "sen_id": 244875}, {"caption": "in a bedroom a woman is listing the numerous different breeds of hamsters", "video_id": "video11549", "sen_id": 244876}, {"caption": "a woman is describing the different types of hamsters", "video_id": "video11549", "sen_id": 244877}, {"caption": "blonde woman is talking in her bedroom", "video_id": "video11549", "sen_id": 244878}, {"caption": "a woman with a gray shirt is sitting and talking", "video_id": "video11549", "sen_id": 244879}, {"caption": "a woman in a business suit walks slowly across a college campus", "video_id": "video10115", "sen_id": 244880}, {"caption": "a woman in a skirt and sweater is giving an interview", "video_id": "video10115", "sen_id": 244881}, {"caption": "an older woman talks about her work as a college professor and researcher", "video_id": "video10115", "sen_id": 244882}, {"caption": "a woman wearing a pink shirt and talking", "video_id": "video10115", "sen_id": 244883}, {"caption": "a woman in a pink turtleneck is talking to someone off screen", "video_id": "video10115", "sen_id": 244884}, {"caption": "a woman communicating with a bird and then explaining why", "video_id": "video10115", "sen_id": 244885}, {"caption": "a women in grey over coat and black short skirt is walking", "video_id": "video10115", "sen_id": 244886}, {"caption": "a lady is talking with parrot and walking", "video_id": "video10115", "sen_id": 244887}, {"caption": "an introduction for the human counterpart of an experiment with a bird shows the doctor walking on campus", "video_id": "video10115", "sen_id": 244888}, {"caption": "a women in a purple turtle neck shirt talks about a bird", "video_id": "video10115", "sen_id": 244889}, {"caption": "an older woman is walking around outside and then discusses a topical issue", "video_id": "video10115", "sen_id": 244890}, {"caption": "pink colored university professor with her pet parrot and walking on the road", "video_id": "video10115", "sen_id": 244891}, {"caption": "a woman interacting and speaking about a particular bird", "video_id": "video10115", "sen_id": 244892}, {"caption": " talking about an experiment with a bird and communication", "video_id": "video10115", "sen_id": 244893}, {"caption": "dr irene pepperberg from brandeis university feeding food to her pet", "video_id": "video10115", "sen_id": 244894}, {"caption": "the female doctor wore a black skirt and a grey blazer", "video_id": "video10115", "sen_id": 244895}, {"caption": "dr irene pepperberg in a documentary about her work with speech and birds", "video_id": "video10115", "sen_id": 244896}, {"caption": "a doctor talking about 2-way relationship with a bird", "video_id": "video10115", "sen_id": 244897}, {"caption": " irene pepperberg establish a two way communication with a bird", "video_id": "video10115", "sen_id": 244898}, {"caption": "a woman is walking around with a pink shirt", "video_id": "video10115", "sen_id": 244899}, {"caption": "a black snake crawls on the gray earth", "video_id": "video11306", "sen_id": 244900}, {"caption": "a long black snake crawls across the surface of a road near grass", "video_id": "video11306", "sen_id": 244901}, {"caption": "a snake is slithering on the sand outside", "video_id": "video11306", "sen_id": 244902}, {"caption": "a large black snake winds his way across a sandy street", "video_id": "video11306", "sen_id": 244903}, {"caption": "a black snake slithering around coiling up then rolling around like it's in pain", "video_id": "video11306", "sen_id": 244904}, {"caption": "a black snack slithering into a circle and then having a siezure on a dirt road", "video_id": "video11306", "sen_id": 244905}, {"caption": "short video featuring a hunting black snake on sand", "video_id": "video11306", "sen_id": 244906}, {"caption": "a snake is crawling on the road and then starts shaking itself", "video_id": "video11306", "sen_id": 244907}, {"caption": "a silky black snake moving around in the sand", "video_id": "video11306", "sen_id": 244908}, {"caption": "a black snake is slithering then coiling up then thrashing around on the ground", "video_id": "video11306", "sen_id": 244909}, {"caption": "a snake is moving and curling in a stylish way so as to form a circle in a pathway near grass", "video_id": "video11306", "sen_id": 244910}, {"caption": "its a black colour snake moving on a sand road", "video_id": "video11306", "sen_id": 244911}, {"caption": "a long black snake curls on the ground and becoming agitated", "video_id": "video11306", "sen_id": 244912}, {"caption": "snake in black color moves on road side it bent then it shakes its head very fastly", "video_id": "video11306", "sen_id": 244913}, {"caption": "a snake coils up and crawls on the dirt floor", "video_id": "video11306", "sen_id": 244914}, {"caption": "a person is showing snake crawling in the side of the road attacking", "video_id": "video11306", "sen_id": 244915}, {"caption": "there is a black snake on the way", "video_id": "video11306", "sen_id": 244916}, {"caption": "dark snake on the ground moving through the dirt", "video_id": "video11306", "sen_id": 244917}, {"caption": "a snake slithering in the sand next to a few patches of dry grass", "video_id": "video11306", "sen_id": 244918}, {"caption": "a person is showing the snake crawling on the road", "video_id": "video11306", "sen_id": 244919}, {"caption": "leonard maltin a bearded man in large glasses and a suit with a blue shirt describes a package selling animation tutorials for $12995 and states that he thinks it will make people enjoy animation more", "video_id": "video10474", "sen_id": 244920}, {"caption": "movie critic leonard maltin discusses an animated movie", "video_id": "video10474", "sen_id": 244921}, {"caption": "a man with brown hair and a beard with glasses discusses animation", "video_id": "video10474", "sen_id": 244922}, {"caption": "a amn with glasses is trying to sell a package about animation", "video_id": "video10474", "sen_id": 244923}, {"caption": "a man in suit and tie sits in a chair and begins to discuss the different areas of animation", "video_id": "video10474", "sen_id": 244924}, {"caption": "a man is talking about how to understand the process of animation", "video_id": "video10474", "sen_id": 244925}, {"caption": "leonard maltin talks about that animation is not about drawing but about understanding movements", "video_id": "video10474", "sen_id": 244926}, {"caption": "a man supporting a package being sold that relates to animation", "video_id": "video10474", "sen_id": 244927}, {"caption": "there is a specs man talking in front of a red background", "video_id": "video10474", "sen_id": 244928}, {"caption": "a man passing an information", "video_id": "video10474", "sen_id": 244929}, {"caption": "a man with glasses is speaking about something", "video_id": "video10474", "sen_id": 244930}, {"caption": "film critic leonard maltin talks about animation in film", "video_id": "video10474", "sen_id": 244931}, {"caption": "the man dresssed in a suit and tie sits in a red chair and talks", "video_id": "video10474", "sen_id": 244932}, {"caption": "a man is describing animation where it s about understanding movement he also explains the price of an object being sold in this advertisement", "video_id": "video10474", "sen_id": 244933}, {"caption": "a commercial selling a product to help people become familiar with the process of animation", "video_id": "video10474", "sen_id": 244934}, {"caption": "an entertainment tonight anchor talks about a product involving animation", "video_id": "video10474", "sen_id": 244935}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10474", "sen_id": 244936}, {"caption": "in the entertainment tonight programme a guest speaking on a issue", "video_id": "video10474", "sen_id": 244937}, {"caption": "a guy in a suit and glasses sits and talks about life", "video_id": "video10474", "sen_id": 244938}, {"caption": "the talking of a man who named leonard maltin", "video_id": "video10474", "sen_id": 244939}, {"caption": "a man puts dry noodles in a container and fills the container with water", "video_id": "video11066", "sen_id": 244940}, {"caption": "a man in a red shirt and jeans soaks noodles in a plastic container of water", "video_id": "video11066", "sen_id": 244941}, {"caption": "a man throwing noodles into a container and putting water into it", "video_id": "video11066", "sen_id": 244942}, {"caption": "a man wearing a red shirt and blue jeans illustrates how to cook noodles by adding water to a dish pan", "video_id": "video11066", "sen_id": 244943}, {"caption": "someone is in a kitchen putting some noodles in a dishpan and then fills it with water", "video_id": "video11066", "sen_id": 244944}, {"caption": "in a kicthen someone is making chicken noodle soup", "video_id": "video11066", "sen_id": 244945}, {"caption": "the person places the food in th to bowl along wth the water", "video_id": "video11066", "sen_id": 244946}, {"caption": "a white plastic basin is being filled with noodles and water", "video_id": "video11066", "sen_id": 244947}, {"caption": "a man opens a pack of noodles and puts them into water to soak and soften", "video_id": "video11066", "sen_id": 244948}, {"caption": "a man in a red sweatshirt dumps a bag of noodles into a white tub of water", "video_id": "video11066", "sen_id": 244949}, {"caption": "a man in a red shirt adding noodles and water to a pan to soak", "video_id": "video11066", "sen_id": 244950}, {"caption": "a man in a kitchen wearing a red shirt and jeans is putting noodles into a white container and adding water to the container", "video_id": "video11066", "sen_id": 244951}, {"caption": "a white tub sits on a kitchen counter with a guy holding it", "video_id": "video11066", "sen_id": 244952}, {"caption": "a man in red shirt cooking dish to prepare to serve to eat displaying on screen", "video_id": "video11066", "sen_id": 244953}, {"caption": "a man in a kitchen puts noodles into a big white dish", "video_id": "video11066", "sen_id": 244954}, {"caption": "a man talking about adding his noddels into the water so they can soak for ten mintues", "video_id": "video11066", "sen_id": 244955}, {"caption": "a man in red shirt peels of cover and puts in a white colored basket in kitchen", "video_id": "video11066", "sen_id": 244956}, {"caption": "a man putting water into a white container", "video_id": "video11066", "sen_id": 244957}, {"caption": "preparation of chicken noodles - chinese way", "video_id": "video11066", "sen_id": 244958}, {"caption": "a man with a red shirt in a kitchen placing noodles in a white tub of water", "video_id": "video11066", "sen_id": 244959}, {"caption": "a baby giggles and plays on the lap of a man", "video_id": "video11765", "sen_id": 244960}, {"caption": "a man and a baby are play fighting and the baby is laughing", "video_id": "video11765", "sen_id": 244961}, {"caption": "a man in a white shirt plays with a little baby", "video_id": "video11765", "sen_id": 244962}, {"caption": "a dad is playing with his adorable baby", "video_id": "video11765", "sen_id": 244963}, {"caption": "a young dad is sitting on a couch and playing with a baby making him laugh", "video_id": "video11765", "sen_id": 244964}, {"caption": "a baby laughing while its dad pretends to have the baby bunch him in the face", "video_id": "video11765", "sen_id": 244965}, {"caption": "a man in a white shirt play fighting with a smiling baby on a couch", "video_id": "video11765", "sen_id": 244966}, {"caption": "a baby punches a man in the face over and over again to everyone s delight", "video_id": "video11765", "sen_id": 244967}, {"caption": "the father is cajoling the cute tiny baby in white beautiful dress", "video_id": "video11765", "sen_id": 244968}, {"caption": "a man is holding a baby in his house", "video_id": "video11765", "sen_id": 244969}, {"caption": "a baby is playing with her father by sitting side of him", "video_id": "video11765", "sen_id": 244970}, {"caption": "a little cute baby playing and laughing with his father", "video_id": "video11765", "sen_id": 244971}, {"caption": "a man is kidding with his kid and both are smiling", "video_id": "video11765", "sen_id": 244972}, {"caption": "a laughing cute baby is playing with the man happily", "video_id": "video11765", "sen_id": 244973}, {"caption": "a man is smiling and holding a baby", "video_id": "video11765", "sen_id": 244974}, {"caption": "a father holds his baby s hands and arms as he moves them in a motion as if the baby is punching the father ultimately making the baby laugh", "video_id": "video11765", "sen_id": 244975}, {"caption": "a dad and baby play games on the couch while the baby laughs", "video_id": "video11765", "sen_id": 244976}, {"caption": "a man is playing with a baby making the baby laugh", "video_id": "video11765", "sen_id": 244977}, {"caption": "a gentleman is playing with a cute small kids in a house", "video_id": "video11765", "sen_id": 244978}, {"caption": "a man plays with his baby pretending the baby is punching him in the face", "video_id": "video11765", "sen_id": 244979}, {"caption": "different people discuss the outfits they wear in a busy city setting", "video_id": "video11542", "sen_id": 244980}, {"caption": "two skateboarders are sharing their fashion styles with a camera crew", "video_id": "video11542", "sen_id": 244981}, {"caption": "a young woman talks about her fashion sense in front of a large building", "video_id": "video11542", "sen_id": 244982}, {"caption": "there are several millenials in a town center that are skateboarding and discussing the clothing they wear", "video_id": "video11542", "sen_id": 244983}, {"caption": "a man riding a skateboard and motor scooter and a female talking in a market square", "video_id": "video11542", "sen_id": 244984}, {"caption": "a large group of people mill around in a large town square", "video_id": "video11542", "sen_id": 244985}, {"caption": "people are skating around in a public place", "video_id": "video11542", "sen_id": 244986}, {"caption": "there is a women talking from the street", "video_id": "video11542", "sen_id": 244987}, {"caption": "a man is driving a bike a guy is scatting and a woman is standing on a street", "video_id": "video11542", "sen_id": 244988}, {"caption": "a bunch of people are sitting and talking outdoors", "video_id": "video11542", "sen_id": 244989}, {"caption": "people talking about what they wear and their style on the street", "video_id": "video11542", "sen_id": 244990}, {"caption": "biker rider is riding bike very fast on road", "video_id": "video11542", "sen_id": 244991}, {"caption": "a group of young people move about while some of them talk about their fashion", "video_id": "video11542", "sen_id": 244992}, {"caption": "a girl in white dress standing on road skating boy skating on road checks shirt boy sitting speaking", "video_id": "video11542", "sen_id": 244993}, {"caption": "a man with glasses is speaking about something", "video_id": "video11542", "sen_id": 244994}, {"caption": "a bike is moving fast and a women in white top with glasses is standing in the road", "video_id": "video11542", "sen_id": 244995}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video11542", "sen_id": 244996}, {"caption": "young people in a large town square talk about the fashions they are wearing", "video_id": "video11542", "sen_id": 244997}, {"caption": "a media person is interviewing public and thier opinion about the dress they wears", "video_id": "video11542", "sen_id": 244998}, {"caption": "some people are doing various things outside", "video_id": "video11542", "sen_id": 244999}, {"caption": "a man explaining a process on a board", "video_id": "video12132", "sen_id": 245000}, {"caption": "a person writing out a computer problem", "video_id": "video12132", "sen_id": 245001}, {"caption": "a person writing an example for windows and linux", "video_id": "video12132", "sen_id": 245002}, {"caption": "a hand on a clear board doing a computer problem", "video_id": "video12132", "sen_id": 245003}, {"caption": "a person is holding a pen and is teaching as he writes on the white board", "video_id": "video12132", "sen_id": 245004}, {"caption": "man talking and illustrating a diagram about the cpu hosting", "video_id": "video12132", "sen_id": 245005}, {"caption": "someone is teaching about the cpu virtualization", "video_id": "video12132", "sen_id": 245006}, {"caption": "a person is explaining about windows and linux program", "video_id": "video12132", "sen_id": 245007}, {"caption": "the person writes with a black marker on the white board", "video_id": "video12132", "sen_id": 245008}, {"caption": "an instructor describes two computer systems interacting on a cpu", "video_id": "video12132", "sen_id": 245009}, {"caption": "a man explaining about cpu virtualization", "video_id": "video12132", "sen_id": 245010}, {"caption": "a graph is being shown about something to people", "video_id": "video12132", "sen_id": 245011}, {"caption": "a man talking about the comparison in networking in windows and linux operating systems", "video_id": "video12132", "sen_id": 245012}, {"caption": "a man is speaking about windows linux and cpu visualisation", "video_id": "video12132", "sen_id": 245013}, {"caption": "the man put some equation of computer language", "video_id": "video12132", "sen_id": 245014}, {"caption": "a person is drawing a diagram for some people", "video_id": "video12132", "sen_id": 245015}, {"caption": "a man is describing and comparing windows and linux cpu systems", "video_id": "video12132", "sen_id": 245016}, {"caption": "a man is teaching about windows linux cpu virtualization", "video_id": "video12132", "sen_id": 245017}, {"caption": "how guest operating system processes are hosted on the cpu", "video_id": "video12132", "sen_id": 245018}, {"caption": "a person is drawing stuff on a paper", "video_id": "video12132", "sen_id": 245019}, {"caption": "the tutorial on youtube to make a chicken dish", "video_id": "video11047", "sen_id": 245020}, {"caption": "a lady is lifting up a can of tomatoes and explaining it", "video_id": "video11047", "sen_id": 245021}, {"caption": "an in-home chef discusses the ingredients she is preparing to use in a recipe", "video_id": "video11047", "sen_id": 245022}, {"caption": "a woman showing the ingredients to a meal", "video_id": "video11047", "sen_id": 245023}, {"caption": "a woman talking about what ingredients to use to make a dish", "video_id": "video11047", "sen_id": 245024}, {"caption": "ingredients for preparing food are kept in a table", "video_id": "video11047", "sen_id": 245025}, {"caption": "a lady in the kitchen with fresh chicken and diced tomatoes ready for cooking", "video_id": "video11047", "sen_id": 245026}, {"caption": "a woman pointing to and naming ingredients sitting in front of a microwave", "video_id": "video11047", "sen_id": 245027}, {"caption": "a woman is identifying ingredients for something she will make", "video_id": "video11047", "sen_id": 245028}, {"caption": "glass and dish in a saucer drink in a table explaining", "video_id": "video11047", "sen_id": 245029}, {"caption": "various ingredients are lined up in table to prepare food", "video_id": "video11047", "sen_id": 245030}, {"caption": "the person prepares the ingredients to cook the food", "video_id": "video11047", "sen_id": 245031}, {"caption": "a chef talks about the ingredients she is using in a recipe she is working on in her kitchen", "video_id": "video11047", "sen_id": 245032}, {"caption": "a woman is showing the ingredients to a chicken recipe she will make", "video_id": "video11047", "sen_id": 245033}, {"caption": "the recipe requires tomatos as well as chicken and chicken broth", "video_id": "video11047", "sen_id": 245034}, {"caption": "here the lady show the ingredient to make the chicken s breast recepie", "video_id": "video11047", "sen_id": 245035}, {"caption": "a lady explaining how to make a chicken dish using some juices and tinned sauces", "video_id": "video11047", "sen_id": 245036}, {"caption": "a chef prepares some ingredients in a kitchen", "video_id": "video11047", "sen_id": 245037}, {"caption": "there is a woman doing a tutorial for a chicken recipe", "video_id": "video11047", "sen_id": 245038}, {"caption": "the woman talks about the ingredients for the dish she is about to make", "video_id": "video11047", "sen_id": 245039}, {"caption": "a man by the name of matthew chance with cnn from moscow is reporting on russia increasing their presence in syria", "video_id": "video12200", "sen_id": 245040}, {"caption": "a map of europe and a man shooting a rifle in the mountains", "video_id": "video12200", "sen_id": 245041}, {"caption": "there is an image of two tanks in rocks followed by a map with a plane people shooting people walking on a trail and a man in a tank", "video_id": "video12200", "sen_id": 245042}, {"caption": "news cast about war in the middle east containing combat footage", "video_id": "video12200", "sen_id": 245043}, {"caption": "a map of the world that pans from russia to syria with planes flying over it then there are fighters with guns shooting at some target in the distance", "video_id": "video12200", "sen_id": 245044}, {"caption": "according to usa russia is increasing its military footprint in syria", "video_id": "video12200", "sen_id": 245045}, {"caption": "a news reporter gives a report about the russian military in syria", "video_id": "video12200", "sen_id": 245046}, {"caption": "a reporter reporting about the war between us and the syria millitants", "video_id": "video12200", "sen_id": 245047}, {"caption": "a news program news reader explaining about something", "video_id": "video12200", "sen_id": 245048}, {"caption": "it is about syrian war using tanks and other weapons", "video_id": "video12200", "sen_id": 245049}, {"caption": "man talking about russia and their miltarygoing into syria", "video_id": "video12200", "sen_id": 245050}, {"caption": "there is a commando fighting on the ground", "video_id": "video12200", "sen_id": 245051}, {"caption": "world map airplane shown army soldiers are standing with a gun", "video_id": "video12200", "sen_id": 245052}, {"caption": "a news anchor is talking about military in the middle east", "video_id": "video12200", "sen_id": 245053}, {"caption": "a person is showing bunch of terrorist attacking the plane", "video_id": "video12200", "sen_id": 245054}, {"caption": "a women is showing and telling all ingredients for a recepie", "video_id": "video12200", "sen_id": 245055}, {"caption": "it is showing how the war is progressing in syria and russia s involvement", "video_id": "video12200", "sen_id": 245056}, {"caption": "us officials tell the media they are increasing russia s support", "video_id": "video12200", "sen_id": 245057}, {"caption": "it is a news from a channel showing terrorist attacking one building and a tanker is moving", "video_id": "video12200", "sen_id": 245058}, {"caption": "some terrorist are firing using rifles war tankers are moving", "video_id": "video12200", "sen_id": 245059}, {"caption": "a fish dish with vegetables being prepared in a white bowl near a black stove", "video_id": "video10393", "sen_id": 245060}, {"caption": "a woman holding a bowl and showing a chicken macaroni soup", "video_id": "video10393", "sen_id": 245061}, {"caption": "a person scoops a hot chicken soup into a white bowl", "video_id": "video10393", "sen_id": 245062}, {"caption": "a steaming bowl of vegetables is a white cream sauce", "video_id": "video10393", "sen_id": 245063}, {"caption": "a woman is showing off her chicken macaroon soup", "video_id": "video10393", "sen_id": 245064}, {"caption": "a woman ladles a white soup from a pot into a white bowl", "video_id": "video10393", "sen_id": 245065}, {"caption": "vegetables are poured in the bowl", "video_id": "video10393", "sen_id": 245066}, {"caption": "a woman presents chicken macaroni soup as music plays in the background", "video_id": "video10393", "sen_id": 245067}, {"caption": "a woman scoops soup from a large pot and shows in bowl", "video_id": "video10393", "sen_id": 245068}, {"caption": "the woman in the video is holding a bowl of soup", "video_id": "video10393", "sen_id": 245069}, {"caption": "a woman is holding a bowl containing chicken soup", "video_id": "video10393", "sen_id": 245070}, {"caption": "a woman is displaying a dish called chiken maccaroni soup", "video_id": "video10393", "sen_id": 245071}, {"caption": "a women showing off her delicious looking soup", "video_id": "video10393", "sen_id": 245072}, {"caption": "chicken macaroni soup is ladled out of the pan into a bowl", "video_id": "video10393", "sen_id": 245073}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video10393", "sen_id": 245074}, {"caption": "a man shows the food prepared holding a plate in hand", "video_id": "video10393", "sen_id": 245075}, {"caption": "a woman is showing off her success at making chicken macaroni soup", "video_id": "video10393", "sen_id": 245076}, {"caption": "a woman dishes a bowl of chicken soup from the cooking pan to a serving bowl and holds it up", "video_id": "video10393", "sen_id": 245077}, {"caption": "a woman displays a bowl of chicken soup filled with lots of chicken and green vegetables", "video_id": "video10393", "sen_id": 245078}, {"caption": "a person is doing cooking show and telling the ingredients", "video_id": "video10393", "sen_id": 245079}, {"caption": "a digital representation of a street with car driving and people standing", "video_id": "video11708", "sen_id": 245080}, {"caption": "a computer generated video tour showing a college campus", "video_id": "video11708", "sen_id": 245081}, {"caption": "there is a futuristically designed building shown as cars drive around it", "video_id": "video11708", "sen_id": 245082}, {"caption": "cars are driving on the queens college campus", "video_id": "video11708", "sen_id": 245083}, {"caption": "a computer generated video showing a college campus", "video_id": "video11708", "sen_id": 245084}, {"caption": "there is a blue car moving in to the street", "video_id": "video11708", "sen_id": 245085}, {"caption": "the cars drive down the street pass the building", "video_id": "video11708", "sen_id": 245086}, {"caption": "music plays while we see cars moving on the street", "video_id": "video11708", "sen_id": 245087}, {"caption": "a cars moving on road trees beside and building displaying on screen", "video_id": "video11708", "sen_id": 245088}, {"caption": "an animation shows cars and a new building", "video_id": "video11708", "sen_id": 245089}, {"caption": "animation of cars passing by on the road with big building by the side", "video_id": "video11708", "sen_id": 245090}, {"caption": "cars drive in slow-motion past a three-story structure presumably queen s university at belfast with white silhouettes of people lining the sidewalks", "video_id": "video11708", "sen_id": 245091}, {"caption": "a promotional introduction of queen s university belfast showing the area of their premises", "video_id": "video11708", "sen_id": 245092}, {"caption": "a commercial showing the grounds at a colelge in belfast", "video_id": "video11708", "sen_id": 245093}, {"caption": "the 3d effects of a road and car move fast on the road", "video_id": "video11708", "sen_id": 245094}, {"caption": "a computer generated clip that depicts the front of queen s university belfast", "video_id": "video11708", "sen_id": 245095}, {"caption": "a computer generated rendering of a new building project for a university", "video_id": "video11708", "sen_id": 245096}, {"caption": "an outdoor scene in front of belfast university building showing cars driving along the roadway", "video_id": "video11708", "sen_id": 245097}, {"caption": "white images of people stand on sidewalks near a large glass faced building on the edge of a slow moving highway", "video_id": "video11708", "sen_id": 245098}, {"caption": "a video for queen s university in belfast which shows the campus in a virtual world", "video_id": "video11708", "sen_id": 245099}, {"caption": "a cartoon detective platypus wearing a hat hangs a do not disturb sign on the butt of a man stuck in a door", "video_id": "video11994", "sen_id": 245100}, {"caption": "two creatures in the cartoon are playing with each other", "video_id": "video11994", "sen_id": 245101}, {"caption": "a cartoon platypus opens and door that a man is sticking through and leaves after putting a sign on the mans butt", "video_id": "video11994", "sen_id": 245102}, {"caption": "a cartoon platypus with a man that is through the door", "video_id": "video11994", "sen_id": 245103}, {"caption": "an animated show of a green platypuss walking around", "video_id": "video11994", "sen_id": 245104}, {"caption": "a cartoon graphic showing two fantasy creatures where one is wearing a hat and the other is stuck in a mail with a sign on his butt", "video_id": "video11994", "sen_id": 245105}, {"caption": "there is a green man talking outside the door", "video_id": "video11994", "sen_id": 245106}, {"caption": "a woman decribing a cartoon show followed by a preview", "video_id": "video11994", "sen_id": 245107}, {"caption": "a female voice describing a new cartoon show", "video_id": "video11994", "sen_id": 245108}, {"caption": "a narrator describes a cartoon show that stars a platypus crime fighter", "video_id": "video11994", "sen_id": 245109}, {"caption": "a woman is speaking while showing an animation of a talking duck", "video_id": "video11994", "sen_id": 245110}, {"caption": "a green-skinned man is leaning through a square pet door looking at a cylindrical teal bird wearing a fedora", "video_id": "video11994", "sen_id": 245111}, {"caption": "a woman is describing a character on the children s television show phineas and ferb", "video_id": "video11994", "sen_id": 245112}, {"caption": "animated green figure closes door on animated blue figure", "video_id": "video11994", "sen_id": 245113}, {"caption": "an cartoon show with the protaganist as detective hanging an board of do not disturb", "video_id": "video11994", "sen_id": 245114}, {"caption": "a green duck with a brown hat puts a sign on a professor s bottom", "video_id": "video11994", "sen_id": 245115}, {"caption": "a woman talks about the children s television show phineas and ferb", "video_id": "video11994", "sen_id": 245116}, {"caption": "a cartoon bird talks with a man stuck in a dog door", "video_id": "video11994", "sen_id": 245117}, {"caption": "animated characters are movingdancing and playing and it is a beautiful sight", "video_id": "video11994", "sen_id": 245118}, {"caption": "a cartoon scene is playing in the television", "video_id": "video11994", "sen_id": 245119}, {"caption": "a woman with wavy hair closely holds a black-and white dog while the man next to her wearing a black tee shirt with red lettering does all the talking", "video_id": "video12775", "sen_id": 245120}, {"caption": "a video of two people ranking tv shows", "video_id": "video12775", "sen_id": 245121}, {"caption": "an african american man explains how much he likes a show", "video_id": "video12775", "sen_id": 245122}, {"caption": "a man and a woman discuss a movie they have recently seen", "video_id": "video12775", "sen_id": 245123}, {"caption": "a woman with a dog on her lap sits next to a man who is talking about movies", "video_id": "video12775", "sen_id": 245124}, {"caption": "a man and woman are talking about brooklyn nine nine", "video_id": "video12775", "sen_id": 245125}, {"caption": "a man talking about one of his favorite comedies", "video_id": "video12775", "sen_id": 245126}, {"caption": "an african man and a white woman do a countdown of their favorite tv shows", "video_id": "video12775", "sen_id": 245127}, {"caption": "a woman with dogs in her hand and another man are giving ratings to various tv shows", "video_id": "video12775", "sen_id": 245128}, {"caption": "a woman holds a black dog as her friend talks about his favorite television shows", "video_id": "video12775", "sen_id": 245129}, {"caption": "a man in a black shirt is sitting next to a woman who is holding a puppy and he is reviewing a show", "video_id": "video12775", "sen_id": 245130}, {"caption": "a man in a black t-shirt seated next to a lady", "video_id": "video12775", "sen_id": 245131}, {"caption": "an african man and white woman talk about their favorite tv shows", "video_id": "video12775", "sen_id": 245132}, {"caption": "a man and woman with a dog talking", "video_id": "video12775", "sen_id": 245133}, {"caption": "a man and woman commenting about movies and shows", "video_id": "video12775", "sen_id": 245134}, {"caption": "there is a man talking with a lady", "video_id": "video12775", "sen_id": 245135}, {"caption": "man and woman are talking and the woman having a pet on her hand", "video_id": "video12775", "sen_id": 245136}, {"caption": "a man in a black tshirt and a woman in a blue tshirt are talking about tv shows", "video_id": "video12775", "sen_id": 245137}, {"caption": "a black colour boy wearing dress and blue t shirt girl catching a black cat in her hand and still images of girl and boy on screen", "video_id": "video12775", "sen_id": 245138}, {"caption": "black guy in black tshirt sitting next to blonde in tshirt is talking to the camera", "video_id": "video12775", "sen_id": 245139}, {"caption": "a symbol of infinite colored white is set against a blue background", "video_id": "video12063", "sen_id": 245140}, {"caption": "a white infinity symbol is displayed against a blue background", "video_id": "video12063", "sen_id": 245141}, {"caption": "a white infinity sign overlays on top of a sky blue background", "video_id": "video12063", "sen_id": 245142}, {"caption": "a white infinity symbol logo is shown on a blue background", "video_id": "video12063", "sen_id": 245143}, {"caption": "an infinity sign slowly moves on a blue background", "video_id": "video12063", "sen_id": 245144}, {"caption": "a blue screen with a white symbol in the middle", "video_id": "video12063", "sen_id": 245145}, {"caption": "a white curvy symbol on a blue background", "video_id": "video12063", "sen_id": 245146}, {"caption": "a blue and white symbol is scene that resembles infinity", "video_id": "video12063", "sen_id": 245147}, {"caption": "a curvy design in white with a blue background", "video_id": "video12063", "sen_id": 245148}, {"caption": "a white infinity sign is displayed on a white background", "video_id": "video12063", "sen_id": 245149}, {"caption": "there is a impressive logo moving on the screen", "video_id": "video12063", "sen_id": 245150}, {"caption": "picture of a figure eight symbol that starts off big and progressively gets smaller", "video_id": "video12063", "sen_id": 245151}, {"caption": "a logo is shown in blue and white resembling infinity symbol", "video_id": "video12063", "sen_id": 245152}, {"caption": "a sideways eight depicts the infinity logo in white with a blue background", "video_id": "video12063", "sen_id": 245153}, {"caption": "the symbol in white with a background color of sky blue is projected", "video_id": "video12063", "sen_id": 245154}, {"caption": "a white infinity symbol is on a blue background", "video_id": "video12063", "sen_id": 245155}, {"caption": "infinity symbel drawn in blue back ground and zoomed out from the frame", "video_id": "video12063", "sen_id": 245156}, {"caption": "a symbol similar to infinity is seen in white with blue background", "video_id": "video12063", "sen_id": 245157}, {"caption": "the infinity sign slowly moves further away and gets smaller", "video_id": "video12063", "sen_id": 245158}, {"caption": " in front of a blue background is being revealed", "video_id": "video12063", "sen_id": 245159}, {"caption": "four people stand on top of a tennis court while playing tennis", "video_id": "video10256", "sen_id": 245160}, {"caption": "two opposing sideseach with a different uniform playing tennis on a lawn", "video_id": "video10256", "sen_id": 245161}, {"caption": "a competition doubles match of badminton on an indoor court", "video_id": "video10256", "sen_id": 245162}, {"caption": "there are four men playing a game of doubles tennis", "video_id": "video10256", "sen_id": 245163}, {"caption": "two teams playing tennis one team in black shorts one in red", "video_id": "video10256", "sen_id": 245164}, {"caption": "two teams with two players each play a game of badminton in an arena where they jump and change positions with their teammate", "video_id": "video10256", "sen_id": 245165}, {"caption": "two teams having two players each are sweating out by playing hard for points in the badminton match", "video_id": "video10256", "sen_id": 245166}, {"caption": "in the cort the badmintion double plays are conducting in very well", "video_id": "video10256", "sen_id": 245167}, {"caption": "four people play a doubles game of badminton while action-movie-type music plays", "video_id": "video10256", "sen_id": 245168}, {"caption": "a doubles match sponsored by metlife takes place on a green court", "video_id": "video10256", "sen_id": 245169}, {"caption": "four players tag team are playing badminton match in a sports event", "video_id": "video10256", "sen_id": 245170}, {"caption": "there is a team playing badminton with good techniques", "video_id": "video10256", "sen_id": 245171}, {"caption": "four players were playing a tennis on the stadium", "video_id": "video10256", "sen_id": 245172}, {"caption": "four people are playing a game and a crowd of people are watching", "video_id": "video10256", "sen_id": 245173}, {"caption": "two teams of two men battle each other in a game of tennis while an audience looks on", "video_id": "video10256", "sen_id": 245174}, {"caption": "double players method tennis players playing tennis in a full fledged manners", "video_id": "video10256", "sen_id": 245175}, {"caption": "several tennis players play a game indoors with a blue floor", "video_id": "video10256", "sen_id": 245176}, {"caption": "its table tennis game where double players are playing they both play", "video_id": "video10256", "sen_id": 245177}, {"caption": "four players are playing a game of professional badmitten", "video_id": "video10256", "sen_id": 245178}, {"caption": "some people are playing badminton on a court", "video_id": "video10256", "sen_id": 245179}, {"caption": "a blond female newscaster is talking about presidential candidates", "video_id": "video11787", "sen_id": 245180}, {"caption": "a woman with blonde hair is on television talking about the presidential race", "video_id": "video11787", "sen_id": 245181}, {"caption": "a news show prepares for a political debate by setting the stage for the event", "video_id": "video11787", "sen_id": 245182}, {"caption": "a news reporter sets the stage for a political debate they are moderating", "video_id": "video11787", "sen_id": 245183}, {"caption": "a news show depicts republican candidates as busts on pillars then compares their poll numbers", "video_id": "video11787", "sen_id": 245184}, {"caption": "fox news is displayed on a blue background showing election polls", "video_id": "video11787", "sen_id": 245185}, {"caption": "a woman in black is speaking followed by the head of presidential candidates on a column", "video_id": "video11787", "sen_id": 245186}, {"caption": "a blonde headed news reporter preps for a political debate", "video_id": "video11787", "sen_id": 245187}, {"caption": "a woman is giving an outline of the presidential election", "video_id": "video11787", "sen_id": 245188}, {"caption": "a female news anchor gives summery of a national poll of gop primary voters", "video_id": "video11787", "sen_id": 245189}, {"caption": "a telivision with pictures of men's faces in a row and then another television with names in a list with percentages next to them", "video_id": "video11787", "sen_id": 245190}, {"caption": "fox news discussing trumps lead above all his running mates", "video_id": "video11787", "sen_id": 245191}, {"caption": "a woman is commentating over a television screen displaying presidential candidates", "video_id": "video11787", "sen_id": 245192}, {"caption": "fox news talks about gop poll results and candidates", "video_id": "video11787", "sen_id": 245193}, {"caption": "presentation of all the presidential debates for televison", "video_id": "video11787", "sen_id": 245194}, {"caption": "a fox news host talking about republican debate and who is leading in the polls nationally", "video_id": "video11787", "sen_id": 245195}, {"caption": "the fox news channel the reporter are speaking about the 2012 republican presidential election", "video_id": "video11787", "sen_id": 245196}, {"caption": "a lady with black top and blond hair is giving news about 2016 republic presidential election wherein trump is leading with 41%", "video_id": "video11787", "sen_id": 245197}, {"caption": "a blonde woman the republican candidates in the republican debate and then mentions that donald trump is in the lead in the polls", "video_id": "video11787", "sen_id": 245198}, {"caption": "some people on the tv are shown to people", "video_id": "video11787", "sen_id": 245199}, {"caption": "a large rocket sets on a launch pad and awaits the completion of the countdown for launch", "video_id": "video12291", "sen_id": 245200}, {"caption": "there is a huge building in the town", "video_id": "video12291", "sen_id": 245201}, {"caption": "a space shuttle prepping for takeoff is being narrated", "video_id": "video12291", "sen_id": 245202}, {"caption": "a few guys talking about a rocket that is getting ready to go up", "video_id": "video12291", "sen_id": 245203}, {"caption": "a man talks as we see a close up of rocket about to launch and then the same rocket at a distance", "video_id": "video12291", "sen_id": 245204}, {"caption": "a rocket preparing for take off and range readiness being tested with no issues", "video_id": "video12291", "sen_id": 245205}, {"caption": "there is a man explains about a building", "video_id": "video12291", "sen_id": 245206}, {"caption": "a man from pbs news hour reports on the countdown to launch a rocket", "video_id": "video12291", "sen_id": 245207}, {"caption": "men verifying there are no issues before a space shuttle takes off", "video_id": "video12291", "sen_id": 245208}, {"caption": "a man speaking about a rocket that is preparing to lauch", "video_id": "video12291", "sen_id": 245209}, {"caption": "a shuttle is preparing for launch with launch control communicating in the audio", "video_id": "video12291", "sen_id": 245210}, {"caption": "there is a town with huge building and trees", "video_id": "video12291", "sen_id": 245211}, {"caption": "a rocket is in the view that seems like it is about to be launched", "video_id": "video12291", "sen_id": 245212}, {"caption": "a man explaining about the rocket take off from the earth", "video_id": "video12291", "sen_id": 245213}, {"caption": "men verify the readiness of a rocket to be launched into space", "video_id": "video12291", "sen_id": 245214}, {"caption": "a person is showing spacecraft far from the air base", "video_id": "video12291", "sen_id": 245215}, {"caption": "a large space launch vehicle is shown on a launch pad about a minute before initiating the launch of the rocket into space", "video_id": "video12291", "sen_id": 245216}, {"caption": "a person talking about a rocketship in the distance", "video_id": "video12291", "sen_id": 245217}, {"caption": "a pbs news broadcast details the final 60 seconds before a space shuttle launch", "video_id": "video12291", "sen_id": 245218}, {"caption": "a rocket takes off from a platform a rocket is in the background far away with trees in the foreground", "video_id": "video12291", "sen_id": 245219}, {"caption": "a man rides a bicycle and drinks water a woman rides a bicycle", "video_id": "video11546", "sen_id": 245220}, {"caption": "a man in a grey shirt drinking water and riding a bike", "video_id": "video11546", "sen_id": 245221}, {"caption": "a man drinks from a water bottle while standing near a bike", "video_id": "video11546", "sen_id": 245222}, {"caption": "a man drinks from a white water bottle near a bike", "video_id": "video11546", "sen_id": 245223}, {"caption": "a man in a vneck grey shirt drinks from a bottle of clear fluid and then a woman in a pink shirt rides a bicycle uphill", "video_id": "video11546", "sen_id": 245224}, {"caption": "a guy in black t-shirt takes a break and drinks water after riding his bicycle in mountain", "video_id": "video11546", "sen_id": 245225}, {"caption": "there is a man drinking water on the road", "video_id": "video11546", "sen_id": 245226}, {"caption": "a lady is riding bicycle along with her luggage", "video_id": "video11546", "sen_id": 245227}, {"caption": "a man and a woman on a cycle ride down a country road", "video_id": "video11546", "sen_id": 245228}, {"caption": "a man is riding his bike for the first time in ten years with a woman", "video_id": "video11546", "sen_id": 245229}, {"caption": "a man in black dress drinking water from a bottle", "video_id": "video11546", "sen_id": 245230}, {"caption": "a man is taking a drink from a water bottle while taking a break from riding his bike", "video_id": "video11546", "sen_id": 245231}, {"caption": "a young girl driving the bicycle along the road", "video_id": "video11546", "sen_id": 245232}, {"caption": "one bicycle riding man can put some tablets and drinks", "video_id": "video11546", "sen_id": 245233}, {"caption": "a man is drinking water from a bottle and a lady riding a bicycle enters", "video_id": "video11546", "sen_id": 245234}, {"caption": "a man in t-shirt drinking water standing in middle of the street", "video_id": "video11546", "sen_id": 245235}, {"caption": "a boy is riding bicycle along with her luggage", "video_id": "video11546", "sen_id": 245236}, {"caption": "a man having water bottle on his hand", "video_id": "video11546", "sen_id": 245237}, {"caption": "one man take tablet and drinks water women cycling", "video_id": "video11546", "sen_id": 245238}, {"caption": "a guy on a road is drinking some water", "video_id": "video11546", "sen_id": 245239}, {"caption": "a woman stands on a stage wearing a blue blazer and red pants in front of a blue-and yellow screen with an inserted photograph of two parents and two adult children", "video_id": "video12350", "sen_id": 245240}, {"caption": "a woman in a pair of pink pants and a blue jacket stands on a stage", "video_id": "video12350", "sen_id": 245241}, {"caption": "a female scientist discusses the effects of stress on the human life", "video_id": "video12350", "sen_id": 245242}, {"caption": "a female speaker is onstage talking about major stressful life experiences at a ted talk", "video_id": "video12350", "sen_id": 245243}, {"caption": "a woman in bright red pants gives a lecture to a room full of people", "video_id": "video12350", "sen_id": 245244}, {"caption": "a woman in red pants stands on stage and gives a ted talk", "video_id": "video12350", "sen_id": 245245}, {"caption": "there is a woman taking a presentation on the stage", "video_id": "video12350", "sen_id": 245246}, {"caption": "a lady standing with red phant and talking", "video_id": "video12350", "sen_id": 245247}, {"caption": "in a convention a woman boldly giving some valuable messages", "video_id": "video12350", "sen_id": 245248}, {"caption": "a woman wearing red pants talks on a stage that has a large red circle on it", "video_id": "video12350", "sen_id": 245249}, {"caption": "a person in pink pants is talking on stage", "video_id": "video12350", "sen_id": 245250}, {"caption": "there is a woman with red pant talking on the stage", "video_id": "video12350", "sen_id": 245251}, {"caption": "a woman wearing red pants is on stage with a headset microphone doing a show for ted talks", "video_id": "video12350", "sen_id": 245252}, {"caption": "a lady with red pants and black tops is speaking before a monitor", "video_id": "video12350", "sen_id": 245253}, {"caption": "a woman in red pants and black jacket is standing on a stage giving a lecture in front of a backdrop with computerized images and the ted talks logo", "video_id": "video12350", "sen_id": 245254}, {"caption": "a woman is talking to an audience in a place", "video_id": "video12350", "sen_id": 245255}, {"caption": "a woman in red pants talks to a crowd about stressful experiences", "video_id": "video12350", "sen_id": 245256}, {"caption": "a lady working for the company ted is speaking and talking about topics", "video_id": "video12350", "sen_id": 245257}, {"caption": "a woman is talking on stage about family crisis", "video_id": "video12350", "sen_id": 245258}, {"caption": "sexy blonde in red pant talking to the audience", "video_id": "video12350", "sen_id": 245259}, {"caption": "a pasture and ocean are in view", "video_id": "video11696", "sen_id": 245260}, {"caption": "the countryside is seen through a car window", "video_id": "video11696", "sen_id": 245261}, {"caption": "driving by a large field with tall weeds to a street sign", "video_id": "video11696", "sen_id": 245262}, {"caption": "a few trees rise above grassland a mountain shore is just beyond tall reeds a white flower blooms among long stems and a weathered wooden post supports a green street sign", "video_id": "video11696", "sen_id": 245263}, {"caption": "a video made of fields of wildflowers and weeds", "video_id": "video11696", "sen_id": 245264}, {"caption": "someone walks through a field of grass looking at the trees the flowers and nature around them", "video_id": "video11696", "sen_id": 245265}, {"caption": "an open field with white flower and far away water source", "video_id": "video11696", "sen_id": 245266}, {"caption": "there is a nice garden with lots of flowers in it", "video_id": "video11696", "sen_id": 245267}, {"caption": "different shots of a an open field and a flower are set to music", "video_id": "video11696", "sen_id": 245268}, {"caption": "a grass field as seen from a moving car and then close ups of grass and flowers", "video_id": "video11696", "sen_id": 245269}, {"caption": "there were large weeds in the field among the many trees", "video_id": "video11696", "sen_id": 245270}, {"caption": "a view of some wild small plants dancing in the wind with a white flower in the centre", "video_id": "video11696", "sen_id": 245271}, {"caption": "the view of greenery and fields is going on", "video_id": "video11696", "sen_id": 245272}, {"caption": " beautiful flowers grasses are shown in this video", "video_id": "video11696", "sen_id": 245273}, {"caption": "a person is driving around a field in the day", "video_id": "video11696", "sen_id": 245274}, {"caption": "there is a land with dry grass and very hot sun", "video_id": "video11696", "sen_id": 245275}, {"caption": "in a forest some plants are showed for a time", "video_id": "video11696", "sen_id": 245276}, {"caption": "beautiful and lovely flowers with sound in nature", "video_id": "video11696", "sen_id": 245277}, {"caption": "a video of farm flowers are shown in this video", "video_id": "video11696", "sen_id": 245278}, {"caption": "a person is driving around in a field", "video_id": "video11696", "sen_id": 245279}, {"caption": "young man in a white tshirt giving a presentation in front of a white screen", "video_id": "video11293", "sen_id": 245280}, {"caption": "a man and a woman give a presentation in the front of a room with a projector", "video_id": "video11293", "sen_id": 245281}, {"caption": "student giving a presentation on creating gel molds", "video_id": "video11293", "sen_id": 245282}, {"caption": "a man with a white shirt reading a powerpoint", "video_id": "video11293", "sen_id": 245283}, {"caption": "a young man and woman give a powerpoint presentation in the front of a classroom", "video_id": "video11293", "sen_id": 245284}, {"caption": "a white t shirt man is talking to a lady in a white t shirt and black shorts", "video_id": "video11293", "sen_id": 245285}, {"caption": "two people in white top are discussing on some subject", "video_id": "video11293", "sen_id": 245286}, {"caption": "a man reading information from the projector", "video_id": "video11293", "sen_id": 245287}, {"caption": "a boy and a girl taking a seminar and describing the slides on a lcd screen", "video_id": "video11293", "sen_id": 245288}, {"caption": "a male student in a white shirt gives a powerpoint presentation", "video_id": "video11293", "sen_id": 245289}, {"caption": "a boy is standing in front of a projected screen and is explaining the procedure", "video_id": "video11293", "sen_id": 245290}, {"caption": "there is a white tshirt man talking in front of the screen", "video_id": "video11293", "sen_id": 245291}, {"caption": "two men wearing white shirts are trying to speak another man and removing their shirts", "video_id": "video11293", "sen_id": 245292}, {"caption": "a guy gives a presentation for his class on project he had to do", "video_id": "video11293", "sen_id": 245293}, {"caption": "a person with white colour dress is explaining about something", "video_id": "video11293", "sen_id": 245294}, {"caption": "a young man giving instructions and procedures on how to pour gel into a mold", "video_id": "video11293", "sen_id": 245295}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video11293", "sen_id": 245296}, {"caption": "a teacher teaching something to his students in classroom", "video_id": "video11293", "sen_id": 245297}, {"caption": "a student is giving a presentation to the class and another student helping to change the slides", "video_id": "video11293", "sen_id": 245298}, {"caption": "the students stood neer the projector screen as the procedure was read aloud", "video_id": "video11293", "sen_id": 245299}, {"caption": "a woman nurses a weasel a woman in a white shirt gives an infant weasel milk a baby weasel drinks from a bottle", "video_id": "video12032", "sen_id": 245300}, {"caption": "a little girl feeding her baby pet and holding it", "video_id": "video12032", "sen_id": 245301}, {"caption": "a newly born gray color baby dog is sucking milk from bottle in the arms of a lady who feeds the baby dog nicely", "video_id": "video12032", "sen_id": 245302}, {"caption": "a man laughs at a frenchie puppy biting a tablet and a girl bottlefeeds a newborn puppy", "video_id": "video12032", "sen_id": 245303}, {"caption": "a puppy is being fed with milk by a woman", "video_id": "video12032", "sen_id": 245304}, {"caption": "a woman is feeding a baby dog with a baby bottle", "video_id": "video12032", "sen_id": 245305}, {"caption": "a cute rabbit is touching the tab a small girl feeds milk in the bottle for kitten", "video_id": "video12032", "sen_id": 245306}, {"caption": "the young girl in white dress is feeding the little puppy in a feeding bottle", "video_id": "video12032", "sen_id": 245307}, {"caption": "there is a white t-shirt women feeding a dog", "video_id": "video12032", "sen_id": 245308}, {"caption": "woman giving a puppy some milk", "video_id": "video12032", "sen_id": 245309}, {"caption": "a woman bottle feeds a husky puppy against her chest", "video_id": "video12032", "sen_id": 245310}, {"caption": "a dog little puppy and a white dress wearing cloth girl feeding milk to puppy dog displaying on screen", "video_id": "video12032", "sen_id": 245311}, {"caption": "a girl in a white t-shirt in her room is feeding a puppy milk from a bottle", "video_id": "video12032", "sen_id": 245312}, {"caption": "a female in the white shirt is bottle feeding the newborn puppy", "video_id": "video12032", "sen_id": 245313}, {"caption": "a woman feeding a baby puppy", "video_id": "video12032", "sen_id": 245314}, {"caption": "a woman is feeding a small husky puppy with a bottle", "video_id": "video12032", "sen_id": 245315}, {"caption": "a woman feeds a small ferret", "video_id": "video12032", "sen_id": 245316}, {"caption": "a person is feeding a baby animal", "video_id": "video12032", "sen_id": 245317}, {"caption": "a person holds a bottle feeding a baby animal milk", "video_id": "video12032", "sen_id": 245318}, {"caption": "a woman is feeding an animal with a bottle", "video_id": "video12032", "sen_id": 245319}, {"caption": "a young woman with brown hair parted in the center uses a brush to apply a deep-tan powder from an open compact over her cheeks and forehead to add to her look of thick eyebrows and pink lips", "video_id": "video12968", "sen_id": 245320}, {"caption": "a young woman applies bronzer to her face with a makeup brush", "video_id": "video12968", "sen_id": 245321}, {"caption": "a blonde woman is putting the makeup on", "video_id": "video12968", "sen_id": 245322}, {"caption": "a blond asian women applies foundation to her face", "video_id": "video12968", "sen_id": 245323}, {"caption": "a young woman putting on make up and telling you how to do it", "video_id": "video12968", "sen_id": 245324}, {"caption": "a young women make up her face using a brush", "video_id": "video12968", "sen_id": 245325}, {"caption": "a pretty young asian woman is applying blush makeup", "video_id": "video12968", "sen_id": 245326}, {"caption": "someone applying makeup to her chicks and telling how to use it", "video_id": "video12968", "sen_id": 245327}, {"caption": "a woman with blond hair describes how to properly apply bronzer", "video_id": "video12968", "sen_id": 245328}, {"caption": "a girl is started to apply milk chocolate bronzer to her cheeks", "video_id": "video12968", "sen_id": 245329}, {"caption": "a girl demonstrating how to apply bronzer to your face", "video_id": "video12968", "sen_id": 245330}, {"caption": "a woman is applying makeup to herself while someone else is describing what she is doing", "video_id": "video12968", "sen_id": 245331}, {"caption": "a girl having bright face is showing how to use makeup brush on the face", "video_id": "video12968", "sen_id": 245332}, {"caption": "a girl a brush in her hand brush for make up beauty facial look displaying on screen", "video_id": "video12968", "sen_id": 245333}, {"caption": "beautiful girl shows how to apply make up on the face", "video_id": "video12968", "sen_id": 245334}, {"caption": "a woman shows us a bronzer and then applies it to her cheeks and forehead using a large makeup brush", "video_id": "video12968", "sen_id": 245335}, {"caption": "a woman applying bronzer to her cheecks with a black colored brush", "video_id": "video12968", "sen_id": 245336}, {"caption": "a girl is doing a tutorial on using bronzing powder", "video_id": "video12968", "sen_id": 245337}, {"caption": "a woman holds a bronzer before applying the bronzer on her face with a brush", "video_id": "video12968", "sen_id": 245338}, {"caption": "a woman is showing how to do her makeup", "video_id": "video12968", "sen_id": 245339}, {"caption": "a man is explaining how a toshiba motherboard works in a computed device", "video_id": "video12229", "sen_id": 245340}, {"caption": "there is a men telling about the intel processor chip and drives", "video_id": "video12229", "sen_id": 245341}, {"caption": "explanation given about the comparison of toshiba with the other competitor", "video_id": "video12229", "sen_id": 245342}, {"caption": "a person is telling about a toshiba brand", "video_id": "video12229", "sen_id": 245343}, {"caption": "a person is explaining about computer hard disc", "video_id": "video12229", "sen_id": 245344}, {"caption": "a non english speaking voice talks about a toshiba product that is displayed", "video_id": "video12229", "sen_id": 245345}, {"caption": "a toshiba computer chip up against another computer chip", "video_id": "video12229", "sen_id": 245346}, {"caption": "on the grey board two white notifications are shown one is toshiba", "video_id": "video12229", "sen_id": 245347}, {"caption": "a hard disk of a computer shown on screen picture image displaying on screen", "video_id": "video12229", "sen_id": 245348}, {"caption": "a person is showing product in the computer", "video_id": "video12229", "sen_id": 245349}, {"caption": "the product of toshiba is shown with its front and rear view", "video_id": "video12229", "sen_id": 245350}, {"caption": "two sides of hard disc shown in the image and someone explaining about that", "video_id": "video12229", "sen_id": 245351}, {"caption": "the word toshiba and two white squares side by side", "video_id": "video12229", "sen_id": 245352}, {"caption": "a toshiba hard drive is pictured next to a different hard drive", "video_id": "video12229", "sen_id": 245353}, {"caption": "animated graphics of hard drive disks are being talked about", "video_id": "video12229", "sen_id": 245354}, {"caption": "an advert of toshiba products being potrayed here", "video_id": "video12229", "sen_id": 245355}, {"caption": "a man talking and explaining something about the product to media", "video_id": "video12229", "sen_id": 245356}, {"caption": "a man is comparing products made by toshiba", "video_id": "video12229", "sen_id": 245357}, {"caption": "a man talks while displaying an animation of two hard drives side by side in compassion while some music plays", "video_id": "video12229", "sen_id": 245358}, {"caption": "the images on the wall looked like a computer s hard drive", "video_id": "video12229", "sen_id": 245359}, {"caption": "two women wearing hats and clothing from the", "video_id": "video12009", "sen_id": 245360}, {"caption": "two smiling ladies in coats walk in a yard in the 1950's", "video_id": "video12009", "sen_id": 245361}, {"caption": "two women walking together slowly down a hill", "video_id": "video12009", "sen_id": 245362}, {"caption": "two ladies in fur coats are walking together down a side walk", "video_id": "video12009", "sen_id": 245363}, {"caption": "a couple of young women walk next to each other across a field", "video_id": "video12009", "sen_id": 245364}, {"caption": "two women are walking on a sidewalk outside a building", "video_id": "video12009", "sen_id": 245365}, {"caption": "there is a woman walking in to the ground", "video_id": "video12009", "sen_id": 245366}, {"caption": "two woman walking dressed in clothing from the early forties to fifties time period", "video_id": "video12009", "sen_id": 245367}, {"caption": " one wearing a flat hat and the other with curly hair walk side by side on a path away from a rectangular building with a recessed entrance near a residential area in the distance", "video_id": "video12009", "sen_id": 245368}, {"caption": "two women in dress clothes walk down a sidewalk and get ready to cross a street", "video_id": "video12009", "sen_id": 245369}, {"caption": "old black and white footage of women walking through a park", "video_id": "video12009", "sen_id": 245370}, {"caption": "a black and white vintage short with music depicting two older women walking through what appears to be a park or college quad", "video_id": "video12009", "sen_id": 245371}, {"caption": "a ancient days video few ladies walking on the road", "video_id": "video12009", "sen_id": 245372}, {"caption": "classic footage from the 40 s-50 s of two women walking", "video_id": "video12009", "sen_id": 245373}, {"caption": "the two women in this video seem very happy", "video_id": "video12009", "sen_id": 245374}, {"caption": "two ladies are walking and talking", "video_id": "video12009", "sen_id": 245375}, {"caption": "two ladies from the early 20th century walk down a sidewalk together", "video_id": "video12009", "sen_id": 245376}, {"caption": "two young shy old fashioned dressed girls pass by on the sidewalk", "video_id": "video12009", "sen_id": 245377}, {"caption": "two women that are in black and white film is walking down a driveway", "video_id": "video12009", "sen_id": 245378}, {"caption": "an old movie shows people walking around", "video_id": "video12009", "sen_id": 245379}, {"caption": "a collage of scenes from the movie gatsby is played", "video_id": "video10034", "sen_id": 245380}, {"caption": "a preview of the movie the great gatsby starring leonardo dicaprio", "video_id": "video10034", "sen_id": 245381}, {"caption": "two men in white coats hold a man while a third man punches him", "video_id": "video10034", "sen_id": 245382}, {"caption": "man in a dark black suit holding a woman with short blonde hair", "video_id": "video10034", "sen_id": 245383}, {"caption": "a man and woman are in different scenarios and hugging in most", "video_id": "video10034", "sen_id": 245384}, {"caption": "leonardo dicaprio is shown multiple times in clips from the film the great gatsby", "video_id": "video10034", "sen_id": 245385}, {"caption": "a man toasting and sharing multiple intense moments with a woman ending with them embracing", "video_id": "video10034", "sen_id": 245386}, {"caption": "a movie trailer which is involving the famous actor leon di capri", "video_id": "video10034", "sen_id": 245387}, {"caption": "a move trailer with leonardo dicaprio in which a variety of scenes are messed together", "video_id": "video10034", "sen_id": 245388}, {"caption": "bunch of people dancing with leonardo dicaprio", "video_id": "video10034", "sen_id": 245389}, {"caption": "there are some clippings of a holly wood movie", "video_id": "video10034", "sen_id": 245390}, {"caption": "leonardo dicaprio is shown in different scenes from his newest movie", "video_id": "video10034", "sen_id": 245391}, {"caption": "a couple is there and a lorry crashes on to a woman", "video_id": "video10034", "sen_id": 245392}, {"caption": "group of people are in the center and having good time", "video_id": "video10034", "sen_id": 245393}, {"caption": "a man and a woman are embracing inside", "video_id": "video10034", "sen_id": 245394}, {"caption": "there is a man talking with a land phone", "video_id": "video10034", "sen_id": 245395}, {"caption": "a movie trailer involving the celebrity leon di capri romance and action are a huge factor", "video_id": "video10034", "sen_id": 245396}, {"caption": "an english movie scene is playing in the screen", "video_id": "video10034", "sen_id": 245397}, {"caption": "there is a man celebrating at a party with a blonde woman drinking wine and then holding her", "video_id": "video10034", "sen_id": 245398}, {"caption": "a movie trailer is being shown on tv", "video_id": "video10034", "sen_id": 245399}, {"caption": "three different people are going to different cities to find something", "video_id": "video10519", "sen_id": 245400}, {"caption": "a dark haired woman speaks in flashing pictures", "video_id": "video10519", "sen_id": 245401}, {"caption": "three images of people talking are shown side by side", "video_id": "video10519", "sen_id": 245402}, {"caption": "people talking and three photos of city landmarks", "video_id": "video10519", "sen_id": 245403}, {"caption": "a movie in various cities displaying luxuries of life", "video_id": "video10519", "sen_id": 245404}, {"caption": "bbc is promoting a show in which people are exposing cities they enjoy", "video_id": "video10519", "sen_id": 245405}, {"caption": "three videos are playing on screen of three people and then the video shows three videos of three cities", "video_id": "video10519", "sen_id": 245406}, {"caption": "three people will reveal to us hidden treasures in a city", "video_id": "video10519", "sen_id": 245407}, {"caption": "a group of people talk during scenes from movies in front of a black background", "video_id": "video10519", "sen_id": 245408}, {"caption": "promotion video for an online channel about city visiting", "video_id": "video10519", "sen_id": 245409}, {"caption": "music playing while three people are being introduced on television", "video_id": "video10519", "sen_id": 245410}, {"caption": "promotion video for an online channel about city visiting", "video_id": "video10519", "sen_id": 245411}, {"caption": "the start of a television show in which people will show u different locations in different places", "video_id": "video10519", "sen_id": 245412}, {"caption": "three different people in different boxes show you three different places", "video_id": "video10519", "sen_id": 245413}, {"caption": "three people talk about the city they love on a bbc program", "video_id": "video10519", "sen_id": 245414}, {"caption": "there are some people talking from a studio", "video_id": "video10519", "sen_id": 245415}, {"caption": "three people are exploring the city they are from on the bbc network", "video_id": "video10519", "sen_id": 245416}, {"caption": "three windows of people are seen along with views of urban city landscapes", "video_id": "video10519", "sen_id": 245417}, {"caption": "cars drive by on a busy city street at night", "video_id": "video10519", "sen_id": 245418}, {"caption": "images of a city flash rapidly on the screen", "video_id": "video10519", "sen_id": 245419}, {"caption": "a woman speaks of body language and how people stand near each other and posture", "video_id": "video12155", "sen_id": 245420}, {"caption": "a ted talk that is featuring humans conversing and power", "video_id": "video12155", "sen_id": 245421}, {"caption": "pairs of people standing next to each other with complimentary gestures indicating status", "video_id": "video12155", "sen_id": 245422}, {"caption": "a woman is giving a lecture about power while showing various slides", "video_id": "video12155", "sen_id": 245423}, {"caption": "a woman talks about power and emotions and why we have them", "video_id": "video12155", "sen_id": 245424}, {"caption": "a woman compares how animals and humans act", "video_id": "video12155", "sen_id": 245425}, {"caption": "a woman is talking about what happens when high and low power is put together", "video_id": "video12155", "sen_id": 245426}, {"caption": "the old woman is talking while the photographs of man and woman together are shown", "video_id": "video12155", "sen_id": 245427}, {"caption": "a woman in black is speaking and pictures of two couples are seen", "video_id": "video12155", "sen_id": 245428}, {"caption": "a lady with green t shirt and black pullover is showing difference between a young couple and old couple in a case of disappointment", "video_id": "video12155", "sen_id": 245429}, {"caption": "a woman is explaining about behaviour of human and comparing it with animals", "video_id": "video12155", "sen_id": 245430}, {"caption": "a lady in tv show is explaining about some celebreties", "video_id": "video12155", "sen_id": 245431}, {"caption": "a lady speaks about the arguments between the couples", "video_id": "video12155", "sen_id": 245432}, {"caption": "two couples placed their hand on there head in frustration and looking each other", "video_id": "video12155", "sen_id": 245433}, {"caption": "man and woman are shown on the picture for tv", "video_id": "video12155", "sen_id": 245434}, {"caption": "a women giving speech while the slideshow shows an old woman leader trying to dominate an old man", "video_id": "video12155", "sen_id": 245435}, {"caption": "a woman is educating other about high and low power and how animal and people both respond", "video_id": "video12155", "sen_id": 245436}, {"caption": "a woman presenting and narrating slides describing human behaviour", "video_id": "video12155", "sen_id": 245437}, {"caption": "a woman and man are sitting with their head resting on their hand", "video_id": "video12155", "sen_id": 245438}, {"caption": "a lady in green color dress wearing cloth standing and speaking and still picture of girl and boy sitting on the topic displaying on screen", "video_id": "video12155", "sen_id": 245439}, {"caption": "an adverstisement for shes inside showing two poses of a female model with long hair wearing a reddish color dress", "video_id": "video12879", "sen_id": 245440}, {"caption": "a woman wears a burgundy romper", "video_id": "video12879", "sen_id": 245441}, {"caption": "a series of photos of a young woman in a red backless dress", "video_id": "video12879", "sen_id": 245442}, {"caption": "a woman is shown in a burgundy cocktail dress", "video_id": "video12879", "sen_id": 245443}, {"caption": "a young woman in a sexy purple dress poses for a series of pictures", "video_id": "video12879", "sen_id": 245444}, {"caption": "a woman in a red mini dress is standing", "video_id": "video12879", "sen_id": 245445}, {"caption": "a woman models a burgundy cocktail dress for sheinside", "video_id": "video12879", "sen_id": 245446}, {"caption": "a caucasian woman with long brown hair models a red short outfit", "video_id": "video12879", "sen_id": 245447}, {"caption": "a short silent slide show shows a young woman posing in a short red dress", "video_id": "video12879", "sen_id": 245448}, {"caption": "a woman is modeling a burgundy colored outfit", "video_id": "video12879", "sen_id": 245449}, {"caption": "there is a girl wearing maroon dress and doing modelling", "video_id": "video12879", "sen_id": 245450}, {"caption": "a woman is wearing block inner show add", "video_id": "video12879", "sen_id": 245451}, {"caption": "a model with brown hair and pink dress posses the dress has stripes in the back and she has white skin", "video_id": "video12879", "sen_id": 245452}, {"caption": "a girl in red dress and still images displaying on the screen", "video_id": "video12879", "sen_id": 245453}, {"caption": "sexy girls in red dress posing for the camera", "video_id": "video12879", "sen_id": 245454}, {"caption": "a lady model in brown sleeveless dress posing for the camera", "video_id": "video12879", "sen_id": 245455}, {"caption": "a woman with long hair is modeling a low-cut red dress with two sets of thin straps in the back", "video_id": "video12879", "sen_id": 245456}, {"caption": "a girl in a red dress poses for pictures", "video_id": "video12879", "sen_id": 245457}, {"caption": "a girl in red dress still images on screen", "video_id": "video12879", "sen_id": 245458}, {"caption": "a woman in a red dress is standing around", "video_id": "video12879", "sen_id": 245459}, {"caption": "chef john from food wishes dot com is narrating one of his favorite recipes while demonstrating by smearing dijon mustard on his pieces of meat and getting ready to place the bacon on top", "video_id": "video11498", "sen_id": 245460}, {"caption": "a man is putting mustard on two slices of meat with a knife", "video_id": "video11498", "sen_id": 245461}, {"caption": "someone spreading a sauce on pieces of uncooked steak", "video_id": "video11498", "sen_id": 245462}, {"caption": "a person spreading sauce onto two pieces of red meat", "video_id": "video11498", "sen_id": 245463}, {"caption": "a man cooking red meat and putting sauce on it", "video_id": "video11498", "sen_id": 245464}, {"caption": "someone dressing up two steaks that are laying on a table", "video_id": "video11498", "sen_id": 245465}, {"caption": "some one in a kitchen adding some masala to the meat pieces", "video_id": "video11498", "sen_id": 245466}, {"caption": "chef is cooking very tasty food cutting meats", "video_id": "video11498", "sen_id": 245467}, {"caption": "a man discusses steps of a recipe as he smears mustard on a steak", "video_id": "video11498", "sen_id": 245468}, {"caption": "someone is applying something like paste in to meat before cooking", "video_id": "video11498", "sen_id": 245469}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11498", "sen_id": 245470}, {"caption": "a person is brushing some sort of sauce on slim steaks", "video_id": "video11498", "sen_id": 245471}, {"caption": "a flat meat piece is spread on a wooden surface and something white in colour is spread over it", "video_id": "video11498", "sen_id": 245472}, {"caption": "a man basting two steaks with dijion mustard although the recipe calls for german mustard", "video_id": "video11498", "sen_id": 245473}, {"caption": "a meat inside kitchen a knife on table ready to prepare to serve to eat dish displaying on screen", "video_id": "video11498", "sen_id": 245474}, {"caption": "in the kitchena man applying butter to meet", "video_id": "video11498", "sen_id": 245475}, {"caption": "a man preparing a flat steak by applying a sauce on top of it", "video_id": "video11498", "sen_id": 245476}, {"caption": "a chef puts mustard on some thinly sliced meat that is laying on a chopping block", "video_id": "video11498", "sen_id": 245477}, {"caption": "a guy seasons two long thin pieces of steak", "video_id": "video11498", "sen_id": 245478}, {"caption": "the two peace meat on the table and spread something in it", "video_id": "video11498", "sen_id": 245479}, {"caption": "a man slices a fish on a wooden cutting board", "video_id": "video11998", "sen_id": 245480}, {"caption": "a chef is slicing a large fish in half using a large flat knife", "video_id": "video11998", "sen_id": 245481}, {"caption": "a chef fillets a fish using a large sharp knife", "video_id": "video11998", "sen_id": 245482}, {"caption": "a cleaver is being used to slice a fish in preparation for cooking", "video_id": "video11998", "sen_id": 245483}, {"caption": "someone is slicing or filleting a fish on a table", "video_id": "video11998", "sen_id": 245484}, {"caption": "a chef is butchering a fish but cutting it in half lengthwise", "video_id": "video11998", "sen_id": 245485}, {"caption": "a man is cutting up a fish using a very thick knife removing its spine", "video_id": "video11998", "sen_id": 245486}, {"caption": "a man in a restaurant kitchen cutting up fish", "video_id": "video11998", "sen_id": 245487}, {"caption": "a man in a restaurant kitchen cutting up fish", "video_id": "video11998", "sen_id": 245488}, {"caption": "a chef is using a large butcher knife to remove the spine from a large silver fish", "video_id": "video11998", "sen_id": 245489}, {"caption": "there is a man cutting fish in to the pieces", "video_id": "video11998", "sen_id": 245490}, {"caption": "fish is sliced in to pieces", "video_id": "video11998", "sen_id": 245491}, {"caption": "in a kitchen a skilled check slices a squirrel fish in half", "video_id": "video11998", "sen_id": 245492}, {"caption": "a man is butchering a piece of fish", "video_id": "video11998", "sen_id": 245493}, {"caption": "a person is cutting a fish in half", "video_id": "video11998", "sen_id": 245494}, {"caption": "a chef using a large knife to cut fish into a filet off the bone", "video_id": "video11998", "sen_id": 245495}, {"caption": "a man is filleting a fish in preparation to cook particularly a squirrel fish", "video_id": "video11998", "sen_id": 245496}, {"caption": "a fish is being cut on a large board text appearts", "video_id": "video11998", "sen_id": 245497}, {"caption": "lady cutting a fish on the spine of the fish", "video_id": "video11998", "sen_id": 245498}, {"caption": "a person is cutting a fish in half inside", "video_id": "video11998", "sen_id": 245499}, {"caption": "a man introduces a clip from a new movie that he stars in", "video_id": "video11168", "sen_id": 245500}, {"caption": "an head shot of a man talking into the camera", "video_id": "video11168", "sen_id": 245501}, {"caption": "morgan freeman introducing the trailer to his new movie last vegas", "video_id": "video11168", "sen_id": 245502}, {"caption": "elderly black man wearing a blue shirt sitting in front of a black tarp", "video_id": "video11168", "sen_id": 245503}, {"caption": "morgan freeman wearing a blue shirt talking about the movie last vegas", "video_id": "video11168", "sen_id": 245504}, {"caption": "a black old man with beard is talking something here", "video_id": "video11168", "sen_id": 245505}, {"caption": "an advertisement about a movie is narrated by morgan freeman", "video_id": "video11168", "sen_id": 245506}, {"caption": "a black man wearing a blue shirt with grey hair is talking", "video_id": "video11168", "sen_id": 245507}, {"caption": "an old african man talks about a movie that he has recently starred in", "video_id": "video11168", "sen_id": 245508}, {"caption": "an african old man with white beard is telling something", "video_id": "video11168", "sen_id": 245509}, {"caption": "a person explaining a concept in a show", "video_id": "video11168", "sen_id": 245510}, {"caption": "the arrival of new film is announced with the appearance of lead character", "video_id": "video11168", "sen_id": 245511}, {"caption": "on november 1 michael douglas robert de niro", "video_id": "video11168", "sen_id": 245512}, {"caption": "on november an event a blue shirt man talks he has white color", "video_id": "video11168", "sen_id": 245513}, {"caption": "morgan freeman introduces a clip from a new film he is in", "video_id": "video11168", "sen_id": 245514}, {"caption": "there is a blue shirt old man talking about film", "video_id": "video11168", "sen_id": 245515}, {"caption": "red color blue color text and a man displayed", "video_id": "video11168", "sen_id": 245516}, {"caption": "a man is talking about a film what he acted", "video_id": "video11168", "sen_id": 245517}, {"caption": "the morgan freeman taking about something", "video_id": "video11168", "sen_id": 245518}, {"caption": "a man with a beard is talking about some thing", "video_id": "video11168", "sen_id": 245519}, {"caption": "group of sailors in a building discussing the dangers of their mission", "video_id": "video12798", "sen_id": 245520}, {"caption": "a man is talking to a woman by the window", "video_id": "video12798", "sen_id": 245521}, {"caption": "there are several men talking about their responsibility as a coast guard in different clips", "video_id": "video12798", "sen_id": 245522}, {"caption": "a man wearing a brown suit talking to another man", "video_id": "video12798", "sen_id": 245523}, {"caption": "sailor men discuss hardships and the uncertainty of fighting in the united states coast guard", "video_id": "video12798", "sen_id": 245524}, {"caption": "several different men are discussing matters involving military issues", "video_id": "video12798", "sen_id": 245525}, {"caption": "a man is talking with other men and a woman is staring out a window", "video_id": "video12798", "sen_id": 245526}, {"caption": "various men are talking about having to go on active duty on the sea for a war", "video_id": "video12798", "sen_id": 245527}, {"caption": "there is a man watching behind the window", "video_id": "video12798", "sen_id": 245528}, {"caption": "the characters are talking and a lady stands along at the door", "video_id": "video12798", "sen_id": 245529}, {"caption": "there is a shirt man talking to a person", "video_id": "video12798", "sen_id": 245530}, {"caption": "a car is going in the dark snow for some cia purpose", "video_id": "video12798", "sen_id": 245531}, {"caption": "a costguard officer giveing orders to a lowr to go rescue some one", "video_id": "video12798", "sen_id": 245532}, {"caption": "men discuss whether or not to brave the sea and a woman looks outside her door", "video_id": "video12798", "sen_id": 245533}, {"caption": "this video is a dialogue between men discussing the coast guard and at the end a woman stands by a door looking at the ocean", "video_id": "video12798", "sen_id": 245534}, {"caption": "a movie trailer shows a man talking about what happenes in the coast guard", "video_id": "video12798", "sen_id": 245535}, {"caption": "a movie trailer which involves many different men talking", "video_id": "video12798", "sen_id": 245536}, {"caption": "it is a movie with men talking and looking out the window", "video_id": "video12798", "sen_id": 245537}, {"caption": "various scenes from a movie show people living lives", "video_id": "video12798", "sen_id": 245538}, {"caption": "several people and cut scenes discussing the coast guard there is background music playing", "video_id": "video12798", "sen_id": 245539}, {"caption": "a man plays a game about a plane and we see the cords in the computer", "video_id": "video10301", "sen_id": 245540}, {"caption": "aircraft simulation is done in a in order to test equipment", "video_id": "video10301", "sen_id": 245541}, {"caption": "there is a man operating a machine in a room", "video_id": "video10301", "sen_id": 245542}, {"caption": "a woman is talking about a flight simulator while a simulation is displayed", "video_id": "video10301", "sen_id": 245543}, {"caption": "a flight has been controlled remotely with the remote control", "video_id": "video10301", "sen_id": 245544}, {"caption": "man with glasses is controlling the flying of the airplane", "video_id": "video10301", "sen_id": 245545}, {"caption": "guy in glass showing the stimulated version of flying the plane on screen", "video_id": "video10301", "sen_id": 245546}, {"caption": "there is a man with specs working at his office", "video_id": "video10301", "sen_id": 245547}, {"caption": "a person watching on the animation remotes to run a helicoptor", "video_id": "video10301", "sen_id": 245548}, {"caption": "a man who is driving the flight in game and its more interesting", "video_id": "video10301", "sen_id": 245549}, {"caption": "a women is looking into a microscope and then checking on monitor", "video_id": "video10301", "sen_id": 245550}, {"caption": "futuris in plane tracks plants track air pollution", "video_id": "video10301", "sen_id": 245551}, {"caption": "a guy with glasses explains how a simulation program works", "video_id": "video10301", "sen_id": 245552}, {"caption": "a woman narrates about a flight simulator program", "video_id": "video10301", "sen_id": 245553}, {"caption": "the facility housed a unique flight simulator and other equipment", "video_id": "video10301", "sen_id": 245554}, {"caption": "a man wearing black dress operating a machine", "video_id": "video10301", "sen_id": 245555}, {"caption": "a man demonstrates the use of a detailed flight simulator", "video_id": "video10301", "sen_id": 245556}, {"caption": "a man moving a controller that moves a plane", "video_id": "video10301", "sen_id": 245557}, {"caption": "an women is telling about some aeronautical flight facility and some technical improvement in making flight", "video_id": "video10301", "sen_id": 245558}, {"caption": "simulation experiment for testing a flight at the test lab", "video_id": "video10301", "sen_id": 245559}, {"caption": "a man with a red shirt is telling us about tuscany", "video_id": "video10438", "sen_id": 245560}, {"caption": "an older man in a pink shirt talks inside his kitchen", "video_id": "video10438", "sen_id": 245561}, {"caption": "an older man in a kitchen discusses wine and cooking before he begins slicing a chili", "video_id": "video10438", "sen_id": 245562}, {"caption": "a chef discusses a chicken recipe that he is getting ready to prepare", "video_id": "video10438", "sen_id": 245563}, {"caption": "an old man in pink shirt explaning a recipe in a kitchen", "video_id": "video10438", "sen_id": 245564}, {"caption": "an old man is standing in a kitchen and talking about vegetables", "video_id": "video10438", "sen_id": 245565}, {"caption": "a man in a red shirt describing where the reciepe for tuscan chicken", "video_id": "video10438", "sen_id": 245566}, {"caption": "a man in a red shirt talking and using his hands to emphasize his words", "video_id": "video10438", "sen_id": 245567}, {"caption": "man in red shirt is in the kitchen and talking about food", "video_id": "video10438", "sen_id": 245568}, {"caption": "old guy in pink shirt talking to camera", "video_id": "video10438", "sen_id": 245569}, {"caption": "there is a shirt man talking from the kitchen", "video_id": "video10438", "sen_id": 245570}, {"caption": "an older man with a accent in a kitchen talking about cooking", "video_id": "video10438", "sen_id": 245571}, {"caption": "a man with an italian accent speaks of tuscany and is obviously doing a cooking show", "video_id": "video10438", "sen_id": 245572}, {"caption": "preparation of chicken recipe with chilly is explained by the man", "video_id": "video10438", "sen_id": 245573}, {"caption": "a man in a pink shirt is talking on tv", "video_id": "video10438", "sen_id": 245574}, {"caption": "a white bald person with brown dressing is giving information about cooking in kitchen and person showing grapes", "video_id": "video10438", "sen_id": 245575}, {"caption": "an older italian man in a pink button-up shirt is in a kitchen talking about tuscan cooking he begins to cook", "video_id": "video10438", "sen_id": 245576}, {"caption": "a man in a red suit is talking about how to cook a recipe", "video_id": "video10438", "sen_id": 245577}, {"caption": "a man in a red shirt talks about tuscany in a kitchen", "video_id": "video10438", "sen_id": 245578}, {"caption": "a woman in a kitchen is making some food", "video_id": "video10438", "sen_id": 245579}, {"caption": "a video clip of a guy on the xbox menu", "video_id": "video10609", "sen_id": 245580}, {"caption": "video game home screen with a woman's face overlooking the gameplay", "video_id": "video10609", "sen_id": 245581}, {"caption": "the weather report is shown on a computer screen", "video_id": "video10609", "sen_id": 245582}, {"caption": "preview of a scary looking vidio gamelooks cool", "video_id": "video10609", "sen_id": 245583}, {"caption": "a demo of a scary game being placed", "video_id": "video10609", "sen_id": 245584}, {"caption": "the face of a lady is the background wallpaper for a computer and we see a few images", "video_id": "video10609", "sen_id": 245585}, {"caption": "a still photo and screen shot of some video game software", "video_id": "video10609", "sen_id": 245586}, {"caption": "a person describes and demonstrates a video game they are getting ready to play", "video_id": "video10609", "sen_id": 245587}, {"caption": "a man talks about a horror shooter game called condemned", "video_id": "video10609", "sen_id": 245588}, {"caption": "photos and words are displayed on a screen", "video_id": "video10609", "sen_id": 245589}, {"caption": "a man exploring and explaining about something on the pictures", "video_id": "video10609", "sen_id": 245590}, {"caption": "someone showing off the video game on the xbox one main menu", "video_id": "video10609", "sen_id": 245591}, {"caption": "a men is wearing a suit and telling a sports news on bbc news", "video_id": "video10609", "sen_id": 245592}, {"caption": "the men sharing the mental health and psychology of the diffrent human character", "video_id": "video10609", "sen_id": 245593}, {"caption": "the weather news and two mans kinnas achivements", "video_id": "video10609", "sen_id": 245594}, {"caption": "a screen shot is seen where ancient menmountains dry areas etc", "video_id": "video10609", "sen_id": 245595}, {"caption": "overview of xbox home screen and then a user is browsing through different games", "video_id": "video10609", "sen_id": 245596}, {"caption": "an oval eye is over green panels and a black-and-white panel blood is splattering between two figures blood is pooling under an elevated figure", "video_id": "video10609", "sen_id": 245597}, {"caption": "three rectangle green boxes are displayed the word anna is displayed", "video_id": "video10609", "sen_id": 245598}, {"caption": "a youtuber commentating about a video game that which is a horror game he showing still pictures from the game", "video_id": "video10609", "sen_id": 245599}, {"caption": "the opening credits from my three sons is shown as the basis for the show is described", "video_id": "video11394", "sen_id": 245600}, {"caption": "the intro to a tv show plays three illustrated boys feet and one foot tapping", "video_id": "video11394", "sen_id": 245601}, {"caption": "person is talking about a tv show called my three sons", "video_id": "video11394", "sen_id": 245602}, {"caption": "white text is in front of three sets of legs wearing either sneakers and jeans loafers and khakis or lace-up shoes and trousers", "video_id": "video11394", "sen_id": 245603}, {"caption": "its a animated cartoon video for all ages", "video_id": "video11394", "sen_id": 245604}, {"caption": "a cartoon episode by the name of my three sons", "video_id": "video11394", "sen_id": 245605}, {"caption": "a cartoon with three guys showing only their feet", "video_id": "video11394", "sen_id": 245606}, {"caption": "a cartoon person taps his foot while holding letters while another person stands next to him", "video_id": "video11394", "sen_id": 245607}, {"caption": "a show called my three sons that aired from 1960-1972 that was about a father named steve douglass and his three sons", "video_id": "video11394", "sen_id": 245608}, {"caption": "a documentary about a show named my three sons", "video_id": "video11394", "sen_id": 245609}, {"caption": "a person is showing actor names of the movie on screen", "video_id": "video11394", "sen_id": 245610}, {"caption": "the titles of a motion picture is being shown", "video_id": "video11394", "sen_id": 245611}, {"caption": "the man pats his foot to the beat as the words appear on the screne", "video_id": "video11394", "sen_id": 245612}, {"caption": "the credits are running for the television show my three sons", "video_id": "video11394", "sen_id": 245613}, {"caption": "show named my three sons with the father steven douglas", "video_id": "video11394", "sen_id": 245614}, {"caption": "in the add about my three sons on the blue screen with background cartoon picture", "video_id": "video11394", "sen_id": 245615}, {"caption": "the show is about a father who has three sons", "video_id": "video11394", "sen_id": 245616}, {"caption": "the man with the skinny legs taps hit feet to the beat", "video_id": "video11394", "sen_id": 245617}, {"caption": "a young entertainment reporter discusses a classic tv show from the past", "video_id": "video11394", "sen_id": 245618}, {"caption": "an advertisement about the cartoon show has been videoed and the name is don grady as robbie", "video_id": "video11394", "sen_id": 245619}, {"caption": "man is showing how to cook a dish and starts to season the dish", "video_id": "video11997", "sen_id": 245620}, {"caption": "in a kitchen a man is making sauce for a deep dish biscuit crust pizza", "video_id": "video11997", "sen_id": 245621}, {"caption": "a man showing how to make a deep dish pizza crust", "video_id": "video11997", "sen_id": 245622}, {"caption": "a african chef discusses a meat recipe he is getting ready to prepare", "video_id": "video11997", "sen_id": 245623}, {"caption": "a man is talking about a pizza that he is cooking", "video_id": "video11997", "sen_id": 245624}, {"caption": "a bearded chef quietly discusses how to cook some food", "video_id": "video11997", "sen_id": 245625}, {"caption": "an old man showing to cook a sauce in a pan and adding seasoning in the pan", "video_id": "video11997", "sen_id": 245626}, {"caption": "an african-american chef demonstrates how to cook ethnic food in the kitchen", "video_id": "video11997", "sen_id": 245627}, {"caption": "a man is discussing a recipe and cooking for the camera", "video_id": "video11997", "sen_id": 245628}, {"caption": "a chef speaks to the camera for an interview in his kitchen", "video_id": "video11997", "sen_id": 245629}, {"caption": "a man wearing a light red shirt and a white apron browns ground beef in a skillet on a stove", "video_id": "video11997", "sen_id": 245630}, {"caption": "a old man cooking food with a kadai and using small white plate", "video_id": "video11997", "sen_id": 245631}, {"caption": "a heavy set african in home chef describes a meat recipe he is working on in his kitchen", "video_id": "video11997", "sen_id": 245632}, {"caption": "a man explains how to make a deep dish biscuit crust pizza", "video_id": "video11997", "sen_id": 245633}, {"caption": "a man is talking about how to prepare a recipe on the stove", "video_id": "video11997", "sen_id": 245634}, {"caption": "a man in the kitchen showing how to make a pan pizza", "video_id": "video11997", "sen_id": 245635}, {"caption": "a man is seen sharing the recipe of deep dish biscuit crust pizza he then moves on in to the kitchen wearing an apron and is starting to prepare for the sauce to use on the pizza he browning some ground beef in the deep pan which he seasons the ground beef with some seasoning mixture", "video_id": "video11997", "sen_id": 245636}, {"caption": "an elderly african chef discusses a pizza sauce he is preparing in his home kitchen", "video_id": "video11997", "sen_id": 245637}, {"caption": "a man preparing to cook a meal in his kitchen", "video_id": "video11997", "sen_id": 245638}, {"caption": "a man with an apron on talks about cooking a dish", "video_id": "video11997", "sen_id": 245639}, {"caption": "a scene from a tv show of 3 men having a conservation", "video_id": "video11376", "sen_id": 245640}, {"caption": "ben stiller robert downey jr and jack black chat about tropic thunder", "video_id": "video11376", "sen_id": 245641}, {"caption": "a man sitting behind at a desk talks to two men sitting across from him the man wearing a plaid shirt with a beard is confused and the other man with a goatee is reading a trade periodical", "video_id": "video11376", "sen_id": 245642}, {"caption": "ben stiller jack black and robert downey jr discuss the promotion of their movie tropic thunder", "video_id": "video11376", "sen_id": 245643}, {"caption": "ben stiller jack black and robert downey jr talk about promoting tropic thunder in a funny skit set in an office", "video_id": "video11376", "sen_id": 245644}, {"caption": "a brown haired man talks about promoting a movie to a blonde man", "video_id": "video11376", "sen_id": 245645}, {"caption": "robert downey jr talking to jack black and ben stiller", "video_id": "video11376", "sen_id": 245646}, {"caption": "ben stiller is talking to jack black and another man", "video_id": "video11376", "sen_id": 245647}, {"caption": "a scene from a tv show of 3 men having a conservation", "video_id": "video11376", "sen_id": 245648}, {"caption": "ben stiller jack black robert downey jr promotion of the movie tropic thunder", "video_id": "video11376", "sen_id": 245649}, {"caption": "ben stiller is having a conversation with two other guys in his office", "video_id": "video11376", "sen_id": 245650}, {"caption": "ben stiller is sitting down talking with philip seymor hoffman and robert downey jr", "video_id": "video11376", "sen_id": 245651}, {"caption": "a man in dark hair talks about promoting a film to a man with blonde hair", "video_id": "video11376", "sen_id": 245652}, {"caption": "one man is reading newspaper while other two people are discussing", "video_id": "video11376", "sen_id": 245653}, {"caption": "two men being interviewed on camera and speaking with actors", "video_id": "video11376", "sen_id": 245654}, {"caption": "ben stiller talks with jack black regarding some movie idea", "video_id": "video11376", "sen_id": 245655}, {"caption": "there is a black shirt man talking to his friends", "video_id": "video11376", "sen_id": 245656}, {"caption": "a movie scene shows a man speaking to another man in a meeting room", "video_id": "video11376", "sen_id": 245657}, {"caption": " jack black and robert downey are in a skit referencing tropic thunder", "video_id": "video11376", "sen_id": 245658}, {"caption": "ben stiller is talking to jack black and robert downey jr", "video_id": "video11376", "sen_id": 245659}, {"caption": "a written formula with important information and numbers circled and underlined in red are entered into a calculator with the corresponding numbers and symbols displayed on the calculator screen", "video_id": "video11699", "sen_id": 245660}, {"caption": "a man performs an advanced calculation on a calculator", "video_id": "video11699", "sen_id": 245661}, {"caption": "a complicated math equation is being explained by a teacher", "video_id": "video11699", "sen_id": 245662}, {"caption": "a mathmetician uses a scientific calculator to solve an equation", "video_id": "video11699", "sen_id": 245663}, {"caption": "a man uses an onscreen graphic calculator to help solve equations", "video_id": "video11699", "sen_id": 245664}, {"caption": "there is a calculator with buttons being pressed next to a mathematic equation", "video_id": "video11699", "sen_id": 245665}, {"caption": "some one doing mathematical calculation in mobile screen", "video_id": "video11699", "sen_id": 245666}, {"caption": "a calculator was shown how to do a calculation of the problem shown on the right", "video_id": "video11699", "sen_id": 245667}, {"caption": "a man is calculating with a electronic calculator", "video_id": "video11699", "sen_id": 245668}, {"caption": "a mobile displaying calculation on screen displaying on screen", "video_id": "video11699", "sen_id": 245669}, {"caption": "a recording of a calculator doing math with additional notes to the side", "video_id": "video11699", "sen_id": 245670}, {"caption": "a man uses a calculator on a computer to figure out a math formula", "video_id": "video11699", "sen_id": 245671}, {"caption": "a male with a southern affectation is explaining a math problem on a graphing calculator", "video_id": "video11699", "sen_id": 245672}, {"caption": "a teacher uses a calculator to demonstrate how to do a math problem", "video_id": "video11699", "sen_id": 245673}, {"caption": "this is something which looks like a mobile phone or is it a calculator", "video_id": "video11699", "sen_id": 245674}, {"caption": "some numers are written on a white board", "video_id": "video11699", "sen_id": 245675}, {"caption": "a math problem being solved with a displayed calculator with the problem in the background", "video_id": "video11699", "sen_id": 245676}, {"caption": "a man explaining and doing some calculation using calculator", "video_id": "video11699", "sen_id": 245677}, {"caption": "a man is showing how to calculate a math problem on a calculator", "video_id": "video11699", "sen_id": 245678}, {"caption": "a male describing how to enter a math equation in a calculator", "video_id": "video11699", "sen_id": 245679}, {"caption": "a man discusses a computer program and some of the data the program has produced", "video_id": "video10647", "sen_id": 245680}, {"caption": "a man using a spreadsheet to show some statistics", "video_id": "video10647", "sen_id": 245681}, {"caption": "a list with yellow and green color coding on it", "video_id": "video10647", "sen_id": 245682}, {"caption": "a person describes and demonstrates a computer program that they are using", "video_id": "video10647", "sen_id": 245683}, {"caption": "a cursor is running over a spreadsheet", "video_id": "video10647", "sen_id": 245684}, {"caption": "the voice of a man is talking about the improvement of their company", "video_id": "video10647", "sen_id": 245685}, {"caption": "a man explaining statics of sentiments on a computer program", "video_id": "video10647", "sen_id": 245686}, {"caption": "a man is talking and showing different images on a computer screen", "video_id": "video10647", "sen_id": 245687}, {"caption": "some details list is showing on a computer screen", "video_id": "video10647", "sen_id": 245688}, {"caption": "a man speaks through a tutorial on computers and numbers", "video_id": "video10647", "sen_id": 245689}, {"caption": "there is a man explains some details about the site", "video_id": "video10647", "sen_id": 245690}, {"caption": "a man describing results that are on a computer screen", "video_id": "video10647", "sen_id": 245691}, {"caption": "its like excel application in system many data are entered on it", "video_id": "video10647", "sen_id": 245692}, {"caption": "a man speaking and screen of software on computer arrow pointing displaying on screen", "video_id": "video10647", "sen_id": 245693}, {"caption": "a person is giving about some statistical information by looking at the monitor", "video_id": "video10647", "sen_id": 245694}, {"caption": "a computer screen chart with a man describing some statistics on it", "video_id": "video10647", "sen_id": 245695}, {"caption": "a person explains on the online software and the details in them", "video_id": "video10647", "sen_id": 245696}, {"caption": "a man describing the settings to use in a specific software program", "video_id": "video10647", "sen_id": 245697}, {"caption": "a man explains how to use a particular computer program", "video_id": "video10647", "sen_id": 245698}, {"caption": "a graph of some things is being shown", "video_id": "video10647", "sen_id": 245699}, {"caption": "someone holds a carrot over seaweed as they demonstrate how to make sushi", "video_id": "video11871", "sen_id": 245700}, {"caption": "a person is making a dish in the kitchen", "video_id": "video11871", "sen_id": 245701}, {"caption": "a chef discusses a technique for making a square carrot round", "video_id": "video11871", "sen_id": 245702}, {"caption": "a man is cutting a carrot for sushi", "video_id": "video11871", "sen_id": 245703}, {"caption": "a guy is scrapping a rectangular carrot stick into circle shape to be placed on the nori", "video_id": "video11871", "sen_id": 245704}, {"caption": "a chef demonstrates a technique for making a square carrot round", "video_id": "video11871", "sen_id": 245705}, {"caption": "a chef talks about a technique for making a square carrot round", "video_id": "video11871", "sen_id": 245706}, {"caption": "a man is cutting a price of carrot with some sort of roll paper on the plate", "video_id": "video11871", "sen_id": 245707}, {"caption": "a person is preparing a food item on a dinning board", "video_id": "video11871", "sen_id": 245708}, {"caption": "a man is trimming a carrot while narrating how to make a carrot roll", "video_id": "video11871", "sen_id": 245709}, {"caption": "one man make recipe adds some veg to it", "video_id": "video11871", "sen_id": 245710}, {"caption": "a man is making sushi in a kitchen", "video_id": "video11871", "sen_id": 245711}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11871", "sen_id": 245712}, {"caption": "a men is cooking food he is adding some ingredients to garnish", "video_id": "video11871", "sen_id": 245713}, {"caption": "a person is holding a piece of some food", "video_id": "video11871", "sen_id": 245714}, {"caption": "making a rectangle piece of the item into a cylindrical circle", "video_id": "video11871", "sen_id": 245715}, {"caption": "there is a chef showing how to prepare a carrot for a type of sushi roll", "video_id": "video11871", "sen_id": 245716}, {"caption": "a man in black is teaching viewers how to slice", "video_id": "video11871", "sen_id": 245717}, {"caption": "a man is preparing sushi using a carrot", "video_id": "video11871", "sen_id": 245718}, {"caption": "a person is showing some food on a table", "video_id": "video11871", "sen_id": 245719}, {"caption": "a bottle of pills is shown tipped over and spilling out while a man talks about cancer", "video_id": "video12644", "sen_id": 245720}, {"caption": "a bottle of pills is spilled on a table with the words a dose of bukley displayed under it", "video_id": "video12644", "sen_id": 245721}, {"caption": "effects of tablet and cancer discussed group of people picture on a news article", "video_id": "video12644", "sen_id": 245722}, {"caption": "a bottle of prescription pills is knocked over with the words a dose of buckley stretched across the screen in front of it", "video_id": "video12644", "sen_id": 245723}, {"caption": "someone is talking about the cancer and asking not to take any dose of buckley", "video_id": "video12644", "sen_id": 245724}, {"caption": "an advertisement about the no make-up selfie campaign awareness is being shown in the clip", "video_id": "video12644", "sen_id": 245725}, {"caption": "some one showing the video of no make-up selfie campaign", "video_id": "video12644", "sen_id": 245726}, {"caption": "a man talking about the no makeup selfie campaign and it s purpose", "video_id": "video12644", "sen_id": 245727}, {"caption": "a dose of buckley and few no make up selfie pictures was shown", "video_id": "video12644", "sen_id": 245728}, {"caption": "a man talks about the no makeup selfie campaign", "video_id": "video12644", "sen_id": 245729}, {"caption": "there is a bottle of pills that tipped over and the medicine is no longer in the bottle", "video_id": "video12644", "sen_id": 245730}, {"caption": "ladies images are displayed by boxes", "video_id": "video12644", "sen_id": 245731}, {"caption": "a picture is show of a dose of buckley and someone is speaking about cancer", "video_id": "video12644", "sen_id": 245732}, {"caption": "a man discusses a trial study of a cancer drug", "video_id": "video12644", "sen_id": 245733}, {"caption": "a person is explaining about dose of buckley", "video_id": "video12644", "sen_id": 245734}, {"caption": "there is a man explains about a madicine", "video_id": "video12644", "sen_id": 245735}, {"caption": "girls images are displayed on the screen by boxes", "video_id": "video12644", "sen_id": 245736}, {"caption": "a man talking about the no makeup selfie campaign", "video_id": "video12644", "sen_id": 245737}, {"caption": "a man talks about an anti-cancer campaign as a bottle of pills spills", "video_id": "video12644", "sen_id": 245738}, {"caption": "some images of some women are being shown", "video_id": "video12644", "sen_id": 245739}, {"caption": "a movie clip starting jennifer garner with a car accident", "video_id": "video11579", "sen_id": 245740}, {"caption": "a woman and a man are having a conversation inside a moving car", "video_id": "video11579", "sen_id": 245741}, {"caption": "a woman and a man in a car driving and talking when a car slams into their side", "video_id": "video11579", "sen_id": 245742}, {"caption": "jennifer garner and another actor are in a car accident while a women speaks a voice over", "video_id": "video11579", "sen_id": 245743}, {"caption": "two people talk in a moving car until another person hits it with their car", "video_id": "video11579", "sen_id": 245744}, {"caption": "a man is interrupted by a car as he was explaining something to the woman in the car", "video_id": "video11579", "sen_id": 245745}, {"caption": "a man and woman is riding in a car talking and another car hits them", "video_id": "video11579", "sen_id": 245746}, {"caption": "lady is speaking to one man inside of the vehicle", "video_id": "video11579", "sen_id": 245747}, {"caption": "a woman and man in a car talking when another car broadsides their car", "video_id": "video11579", "sen_id": 245748}, {"caption": "jennifer garner is speaking to a man who is driving a car when another car crashes into them", "video_id": "video11579", "sen_id": 245749}, {"caption": "a man is riding a car and a woman is seated beside her they are talking and then are hit by a vehicle on the driver side", "video_id": "video11579", "sen_id": 245750}, {"caption": "a white women is speaking with a white man while both is going by car and doing accident by another black car", "video_id": "video11579", "sen_id": 245751}, {"caption": "a female passenger with curly hair and a triangular-shaped face questions the male driver when a black car hits the driver s door", "video_id": "video11579", "sen_id": 245752}, {"caption": "a man and a woman driving in a car and another car hits them", "video_id": "video11579", "sen_id": 245753}, {"caption": "two actors in a movie driving in a car before it is hit by another vehicle", "video_id": "video11579", "sen_id": 245754}, {"caption": "the two couples discussing some serious issue inside the car", "video_id": "video11579", "sen_id": 245755}, {"caption": "mr michael bond talks to his co star as he drives his luxury car", "video_id": "video11579", "sen_id": 245756}, {"caption": "a woman with loose hair is talking to a man who driving a car and the car gets accident", "video_id": "video11579", "sen_id": 245757}, {"caption": "a woman is talking to a man in a car while they drive down the road", "video_id": "video11579", "sen_id": 245758}, {"caption": "a discussion between a man and women deeply suddenly hit by an jeep from the side", "video_id": "video11579", "sen_id": 245759}, {"caption": "a group of people throwing a javelin on a green football field", "video_id": "video10370", "sen_id": 245760}, {"caption": "a person in a white tshirt and long dark hair throws a discus down a field at an event", "video_id": "video10370", "sen_id": 245761}, {"caption": "a man throwing a ball", "video_id": "video10370", "sen_id": 245762}, {"caption": "this video is showing how far a person is throwing a discus in the measure of feet", "video_id": "video10370", "sen_id": 245763}, {"caption": "a theam park and play ground these are play and dancng", "video_id": "video10370", "sen_id": 245764}, {"caption": "a person throws a shot put during a competition", "video_id": "video10370", "sen_id": 245765}, {"caption": "a person performing a discus throw on a field", "video_id": "video10370", "sen_id": 245766}, {"caption": "a person throwing a disc far on a field in the daytime", "video_id": "video10370", "sen_id": 245767}, {"caption": "people get ready to start playing sports on a green playing field", "video_id": "video10370", "sen_id": 245768}, {"caption": "a woman throws a discus across the during a competition", "video_id": "video10370", "sen_id": 245769}, {"caption": "people are walking around on a football field", "video_id": "video10370", "sen_id": 245770}, {"caption": "rock music playing as player kicks a ball onto a field", "video_id": "video10370", "sen_id": 245771}, {"caption": "a girl at a track and field area throwing a disc", "video_id": "video10370", "sen_id": 245772}, {"caption": "a girl in a white shirt is shown winning the competition for the discus sport", "video_id": "video10370", "sen_id": 245773}, {"caption": "a guy on a field is wearing a straw hat", "video_id": "video10370", "sen_id": 245774}, {"caption": "a woman is throwing a discus in the middle of a sunny day while people are walking about the track for exercise", "video_id": "video10370", "sen_id": 245775}, {"caption": "shows a person on a foot ball field twirling around throwing a football", "video_id": "video10370", "sen_id": 245776}, {"caption": "a woman in blue shorts throwing a disc in the shot put", "video_id": "video10370", "sen_id": 245777}, {"caption": "a girl throws a discuss at a track event and a man measures the distance of the throw", "video_id": "video10370", "sen_id": 245778}, {"caption": "a person is throwing a ball as far as they can", "video_id": "video10370", "sen_id": 245779}, {"caption": "a skiier skis quickly down a snow covered mountain", "video_id": "video11017", "sen_id": 245780}, {"caption": "a person enjoying his skying time as he moves too slowly and steadily", "video_id": "video11017", "sen_id": 245781}, {"caption": "a men is doing skerting on snow mountain", "video_id": "video11017", "sen_id": 245782}, {"caption": "a young skier flies down a snowy slope that is surrounded by trees", "video_id": "video11017", "sen_id": 245783}, {"caption": "a person snow skiing down a slope and between trees", "video_id": "video11017", "sen_id": 245784}, {"caption": "ice skating with camera on forehead", "video_id": "video11017", "sen_id": 245785}, {"caption": "someone skating on a sunny day light", "video_id": "video11017", "sen_id": 245786}, {"caption": "the ice land people are walked through ice in with ice hockey stick", "video_id": "video11017", "sen_id": 245787}, {"caption": "a in red skating in snow wearing black gloves many people are skating in the snow", "video_id": "video11017", "sen_id": 245788}, {"caption": "a person is skiing down a very long slope on a mountain surrounded by trees", "video_id": "video11017", "sen_id": 245789}, {"caption": "a person is skiing down a snow slope between trees", "video_id": "video11017", "sen_id": 245790}, {"caption": "a go pro video shows a skier going down the slope", "video_id": "video11017", "sen_id": 245791}, {"caption": "here we can see a skier is skiing with other skiers and path is shown through the camera fitted on his helmet", "video_id": "video11017", "sen_id": 245792}, {"caption": "a person skiis down a hill while music plays in the background", "video_id": "video11017", "sen_id": 245793}, {"caption": "a first person perspective of a person skiing", "video_id": "video11017", "sen_id": 245794}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video11017", "sen_id": 245795}, {"caption": "one man skating in the snow mountain very fastly", "video_id": "video11017", "sen_id": 245796}, {"caption": "a guy with a camera on skiing through trees", "video_id": "video11017", "sen_id": 245797}, {"caption": "it is a great experience to ski in snow like this", "video_id": "video11017", "sen_id": 245798}, {"caption": "a person is filming themself skiing on the slopes", "video_id": "video11017", "sen_id": 245799}, {"caption": "two women go for a hike as one of them reflects on her childhood", "video_id": "video12849", "sen_id": 245800}, {"caption": "two people walking up stairs together", "video_id": "video12849", "sen_id": 245801}, {"caption": "a woman talking about her mother and how she has three children", "video_id": "video12849", "sen_id": 245802}, {"caption": "a youngest-child believes her mom is her close friend", "video_id": "video12849", "sen_id": 245803}, {"caption": "two women walk up a stairway in the outdoors", "video_id": "video12849", "sen_id": 245804}, {"caption": "a mother and daughter walk up stairs in the outdoors", "video_id": "video12849", "sen_id": 245805}, {"caption": "a couple of people walking up a set of outdoor stairs", "video_id": "video12849", "sen_id": 245806}, {"caption": "a woman talking about how she is the youngest of three children and that her mom is like her closest friend", "video_id": "video12849", "sen_id": 245807}, {"caption": "a woman who is the youngest of four children thinks of her mom as her close friend", "video_id": "video12849", "sen_id": 245808}, {"caption": "two people are walking up on the steps with beautiful nature around them", "video_id": "video12849", "sen_id": 245809}, {"caption": "a mother and daughter walk up a set of stairs together", "video_id": "video12849", "sen_id": 245810}, {"caption": "two people are walking up stairs together with mountain around them", "video_id": "video12849", "sen_id": 245811}, {"caption": "there is someone slowly walking to the forest", "video_id": "video12849", "sen_id": 245812}, {"caption": "a man and woman were walking on a steps", "video_id": "video12849", "sen_id": 245813}, {"caption": "two persons were walking on the steps one person with white pant and another person with dark blue color pant wearing", "video_id": "video12849", "sen_id": 245814}, {"caption": "two people are walking upstairs with mountain around them", "video_id": "video12849", "sen_id": 245815}, {"caption": "two persons are climping steps and going into jungle", "video_id": "video12849", "sen_id": 245816}, {"caption": "two persons were walking on the steps", "video_id": "video12849", "sen_id": 245817}, {"caption": "the couples are travelling upon the forest", "video_id": "video12849", "sen_id": 245818}, {"caption": "two people are walking in the forest", "video_id": "video12849", "sen_id": 245819}, {"caption": "dick costelo twitter ceo discussing fabric and the foundation of mobile apps", "video_id": "video11855", "sen_id": 245820}, {"caption": "a man on cnbc talking about building apps", "video_id": "video11855", "sen_id": 245821}, {"caption": "twitter ceo dick costolo is in a blue suit jacket speaking about mobile apps", "video_id": "video11855", "sen_id": 245822}, {"caption": "a man in a blue suit jacket and glasses talks while sitting in front of a twitter logo", "video_id": "video11855", "sen_id": 245823}, {"caption": "dick costolo twitter ceo an older man in a blue jacket and white shirt wearing glasses bald on top of his head is talking about apps and developing them", "video_id": "video11855", "sen_id": 245824}, {"caption": "a ceo from twitter is being interviewed on cnbc", "video_id": "video11855", "sen_id": 245825}, {"caption": "dick costolo the twitter ceo is on cnbc talking about his company", "video_id": "video11855", "sen_id": 245826}, {"caption": "a man wearing glasses talks in an interview about twitter", "video_id": "video11855", "sen_id": 245827}, {"caption": "a man with a receding hairline square black glasses a white shirt and a blue jacket talks about twitter in front of the twitter logo", "video_id": "video11855", "sen_id": 245828}, {"caption": "a bald man in glasses talks about technology in the world", "video_id": "video11855", "sen_id": 245829}, {"caption": "there is a man in blue dress talking some thing serious matter", "video_id": "video11855", "sen_id": 245830}, {"caption": "a man wears blue coat and specs talking about something", "video_id": "video11855", "sen_id": 245831}, {"caption": "a man with a balding head and black glasses talking about ecosystems", "video_id": "video11855", "sen_id": 245832}, {"caption": "man in blue shirt is presenting the latest news for tv", "video_id": "video11855", "sen_id": 245833}, {"caption": "the ceo of twitter talks enthusiastically about web development", "video_id": "video11855", "sen_id": 245834}, {"caption": "balding man with glasses discussing the foundation of mobile apps through twitter", "video_id": "video11855", "sen_id": 245835}, {"caption": "a man with glasses is describing the future of applications being developed and monetized", "video_id": "video11855", "sen_id": 245836}, {"caption": "a man with glasses talks on a tv news program", "video_id": "video11855", "sen_id": 245837}, {"caption": "man in blue suit is giving an interview for television", "video_id": "video11855", "sen_id": 245838}, {"caption": "a man is being interviewed on cnbc about mobile apps", "video_id": "video11855", "sen_id": 245839}, {"caption": "an intro to a cnn student tv show", "video_id": "video11563", "sen_id": 245840}, {"caption": "a man in a brown shirt talking about trouble in jerusalem", "video_id": "video11563", "sen_id": 245841}, {"caption": "a man in a brown jacket is talking about trouble in israel", "video_id": "video11563", "sen_id": 245842}, {"caption": "a man in a brown sport coat introduces cnn's student news", "video_id": "video11563", "sen_id": 245843}, {"caption": "a man in a brown jacket is talking about jerusalem", "video_id": "video11563", "sen_id": 245844}, {"caption": "the eiffel tower sphinx taj mahal and then a man in a brown suit speaking and a map of the globe", "video_id": "video11563", "sen_id": 245845}, {"caption": "carl azuz talking about jeruselum and the religion in it", "video_id": "video11563", "sen_id": 245846}, {"caption": "a news reader reading news about religions christian muslim and jews", "video_id": "video11563", "sen_id": 245847}, {"caption": "a man is talking on tv in a news channel", "video_id": "video11563", "sen_id": 245848}, {"caption": "a man is talking about the religious situations in the middle east", "video_id": "video11563", "sen_id": 245849}, {"caption": "there is a man talking about jerusalem and he shows us a map as he explains it", "video_id": "video11563", "sen_id": 245850}, {"caption": "a man in brown over coat is saying soemthing", "video_id": "video11563", "sen_id": 245851}, {"caption": "a men in dark brown suit is sitting and talking", "video_id": "video11563", "sen_id": 245852}, {"caption": "photographs of world wonder seen and man talks about troubles in jerusalem in a tv program", "video_id": "video11563", "sen_id": 245853}, {"caption": "welcome back from the week end he explains about the trouble in the jerusalem", "video_id": "video11563", "sen_id": 245854}, {"caption": "a man on the news station is talking", "video_id": "video11563", "sen_id": 245855}, {"caption": "there is a globe moving to notify iraq", "video_id": "video11563", "sen_id": 245856}, {"caption": "there is a men wearing brown suit and talking", "video_id": "video11563", "sen_id": 245857}, {"caption": "a man in dark brown jacket sit and speaks then a globe that has a red line spins", "video_id": "video11563", "sen_id": 245858}, {"caption": "a globe is showing a world map of earth", "video_id": "video11563", "sen_id": 245859}, {"caption": "a car is speeding down an urban freeway", "video_id": "video12544", "sen_id": 245860}, {"caption": "we see through the windshield in a car as it speeds down a highway on a dark rainy night", "video_id": "video12544", "sen_id": 245861}, {"caption": "a car is driving very fast down the road", "video_id": "video12544", "sen_id": 245862}, {"caption": "a black car is shown passing the vehicle recording the video then speeding ahead", "video_id": "video12544", "sen_id": 245863}, {"caption": "a few cars driving at a high rate of speed", "video_id": "video12544", "sen_id": 245864}, {"caption": "a driver who is driving his vehicle sees a faster car driving in front of him", "video_id": "video12544", "sen_id": 245865}, {"caption": "there is a car moving in to the town", "video_id": "video12544", "sen_id": 245866}, {"caption": "two men are in a car racing and they are discussing how to beat another car in the race", "video_id": "video12544", "sen_id": 245867}, {"caption": "a black car is driving very fast down the highway", "video_id": "video12544", "sen_id": 245868}, {"caption": "a car speed chase on a highway at night", "video_id": "video12544", "sen_id": 245869}, {"caption": "two cars are going fast on a road with street lights glowing", "video_id": "video12544", "sen_id": 245870}, {"caption": "a in car camera captering a street race", "video_id": "video12544", "sen_id": 245871}, {"caption": "a man drives a car very fast to see how the car performs at high speeds", "video_id": "video12544", "sen_id": 245872}, {"caption": "two sports cars are racing down the interstate", "video_id": "video12544", "sen_id": 245873}, {"caption": "a nissan driving at a very high rate of speed with a man talking about its performance", "video_id": "video12544", "sen_id": 245874}, {"caption": "some one on the vehicle following the white colour car", "video_id": "video12544", "sen_id": 245875}, {"caption": "two cars are driving down the street at extremely high speeds", "video_id": "video12544", "sen_id": 245876}, {"caption": "a person using a gps system in his car is navigating in through a tunnel at high speed", "video_id": "video12544", "sen_id": 245877}, {"caption": "a fast car rushing down the rainy highway", "video_id": "video12544", "sen_id": 245878}, {"caption": "on the highway two really fast cars race against each other", "video_id": "video12544", "sen_id": 245879}, {"caption": "a superhero gets armor", "video_id": "video11247", "sen_id": 245880}, {"caption": "robot arms hold a man while other robot arms work on his body", "video_id": "video11247", "sen_id": 245881}, {"caption": "a monster is being built in the factory", "video_id": "video11247", "sen_id": 245882}, {"caption": "a trailer about a upcoming new holly wood movie", "video_id": "video11247", "sen_id": 245883}, {"caption": "a man in room surrounded by machinery that is suiting him in armor", "video_id": "video11247", "sen_id": 245884}, {"caption": "a person becoming robotic upgrade in movie", "video_id": "video11247", "sen_id": 245885}, {"caption": "its a hulk with machines are tied up", "video_id": "video11247", "sen_id": 245886}, {"caption": "a robotic machien lifts the arms of a super hero", "video_id": "video11247", "sen_id": 245887}, {"caption": "a large muscle bound man stands on a podium while robot arms attach to him", "video_id": "video11247", "sen_id": 245888}, {"caption": "a man is being chained up to various kinds of machinery and technology", "video_id": "video11247", "sen_id": 245889}, {"caption": "a person getting upgraded to robotic features", "video_id": "video11247", "sen_id": 245890}, {"caption": "there is a man with ultimate power standing with machines", "video_id": "video11247", "sen_id": 245891}, {"caption": "two mechanical arms are grabbing a person the gears are grinding", "video_id": "video11247", "sen_id": 245892}, {"caption": "an hollywood movie is shown with many robots and some movie shooting is going on in the show", "video_id": "video11247", "sen_id": 245893}, {"caption": "a person is getting robotic upgrade in a movie", "video_id": "video11247", "sen_id": 245894}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video11247", "sen_id": 245895}, {"caption": "a clip depicts a creature undergoing treatment by various forms of technology", "video_id": "video11247", "sen_id": 245896}, {"caption": "the hulk is being held by large machines", "video_id": "video11247", "sen_id": 245897}, {"caption": "this is cini clips and one person standing", "video_id": "video11247", "sen_id": 245898}, {"caption": "a sci-fi video of a monster being assembled by machines", "video_id": "video11247", "sen_id": 245899}, {"caption": "a clip from a cartoon show for kids", "video_id": "video12884", "sen_id": 245900}, {"caption": "a cartoon transport truck transporting four baby vehicles", "video_id": "video12884", "sen_id": 245901}, {"caption": "there is a yellow animated truck driving down a road and transporting other vehicles", "video_id": "video12884", "sen_id": 245902}, {"caption": "a cartoon with an anthropomorhic carrier car carrying smaller baby cars", "video_id": "video12884", "sen_id": 245903}, {"caption": "a animated truck carrying cars is driving on a large bridge", "video_id": "video12884", "sen_id": 245904}, {"caption": "a cartoon truck is carrying lot of car with him and singing and riding on the roas", "video_id": "video12884", "sen_id": 245905}, {"caption": "a truck of cartoon auto moving on road video game displaying on screen", "video_id": "video12884", "sen_id": 245906}, {"caption": "a cartoon car carrier is traveling across a bridge with cargo", "video_id": "video12884", "sen_id": 245907}, {"caption": "some colourful carrier tracks are alongside the road", "video_id": "video12884", "sen_id": 245908}, {"caption": "the vehicles looking very funny and the bridge construction is also wonderful art work", "video_id": "video12884", "sen_id": 245909}, {"caption": "a cartoon personalizing a truck that carries multiple cars long distances", "video_id": "video12884", "sen_id": 245910}, {"caption": "a comic cartoon about a car transporter named kery is carring four young cars meets an other tranporter car on road", "video_id": "video12884", "sen_id": 245911}, {"caption": "there is a vehicle moving on the road", "video_id": "video12884", "sen_id": 245912}, {"caption": "a bus colored blue color", "video_id": "video12884", "sen_id": 245913}, {"caption": "a yellow truck driving across a bridge with a taxie a van a blue pickup truck and a green car loaded into its back", "video_id": "video12884", "sen_id": 245914}, {"caption": "an truck is carrying four smaller cars and driving on a bridge", "video_id": "video12884", "sen_id": 245915}, {"caption": "there is a yellow color truck moving with vehicles", "video_id": "video12884", "sen_id": 245916}, {"caption": "a bus going on the road having more trucks in it", "video_id": "video12884", "sen_id": 245917}, {"caption": "a yellow truck that is hauling cars drives across a long bridge", "video_id": "video12884", "sen_id": 245918}, {"caption": "a cartoon depicting a yellow car carrier carrying 4 cars", "video_id": "video12884", "sen_id": 245919}, {"caption": "a rugby player tests the grip of a natural leather rugby ball", "video_id": "video10793", "sen_id": 245920}, {"caption": "a clip showing a rugby player playing with a ball", "video_id": "video10793", "sen_id": 245921}, {"caption": "a man wearing a blue shirt and holding a football", "video_id": "video10793", "sen_id": 245922}, {"caption": "a rugby player throwing rugby ball over the goal post", "video_id": "video10793", "sen_id": 245923}, {"caption": "a rugby ball flies over a goal post while a presenter later describes how the natural rubber is excellent for a grip", "video_id": "video10793", "sen_id": 245924}, {"caption": "a sunset came and ruby game c ocher is doing execrsie", "video_id": "video10793", "sen_id": 245925}, {"caption": "a man in blue jersey explaining the game of rugby", "video_id": "video10793", "sen_id": 245926}, {"caption": "a rugby player giving details of the ball used in rugby and how to play with it", "video_id": "video10793", "sen_id": 245927}, {"caption": "a man is playing with a ball and catching with neck", "video_id": "video10793", "sen_id": 245928}, {"caption": "bald rugby athlete showing his workout preparation for keeping fit", "video_id": "video10793", "sen_id": 245929}, {"caption": "a man does tricks with a rugby ball on a field", "video_id": "video10793", "sen_id": 245930}, {"caption": "a player is describing the game of rugby", "video_id": "video10793", "sen_id": 245931}, {"caption": "one man talking about rugby and practicing it with tricks", "video_id": "video10793", "sen_id": 245932}, {"caption": "a young man describes the way a rugby ball is made and then he performs tricks with the ball", "video_id": "video10793", "sen_id": 245933}, {"caption": "a guy in a blur shirt is doing tricks with a ball", "video_id": "video10793", "sen_id": 245934}, {"caption": "a man explains the use of a rugby ball in exercise", "video_id": "video10793", "sen_id": 245935}, {"caption": "the man wearing blue t-shirt is giving instructions of rugby and practicing it", "video_id": "video10793", "sen_id": 245936}, {"caption": "a man explain the ball and how is play the ground", "video_id": "video10793", "sen_id": 245937}, {"caption": "a man is kicking a ball through a goal and talking about it", "video_id": "video10793", "sen_id": 245938}, {"caption": "a person is throwing a ball and talking to the camera", "video_id": "video10793", "sen_id": 245939}, {"caption": "a man in a white and black stripe shirt dances with multiple women", "video_id": "video10143", "sen_id": 245940}, {"caption": "a man wearing a referee outfit and woman wearing a black suit dance suggestively in a crowded caf when another man interrupts them and dances with the man who rejects his cutting in", "video_id": "video10143", "sen_id": 245941}, {"caption": "a young black man in a referee costume dances with a girl in a diner", "video_id": "video10143", "sen_id": 245942}, {"caption": "in a scene from the fresh prince of bellaire will smith dances with a woman", "video_id": "video10143", "sen_id": 245943}, {"caption": "a montage of dances from an african american man often wearing a referee shirt", "video_id": "video10143", "sen_id": 245944}, {"caption": "will smith in the fresh prince wearing an umpire shirt in a sports bar", "video_id": "video10143", "sen_id": 245945}, {"caption": "will smith dancing in what appears to be the fresh prince of bel air then having a conflict with his cousin", "video_id": "video10143", "sen_id": 245946}, {"caption": "a man dances bizarrely with various women and is interrupted by his cousin", "video_id": "video10143", "sen_id": 245947}, {"caption": "will smith is in a black and white striped shirt dancing with a woman at a restaurant", "video_id": "video10143", "sen_id": 245948}, {"caption": "a man flirting is interrupted by his friend at a sports bar", "video_id": "video10143", "sen_id": 245949}, {"caption": "there are many people in a restaurant while two men are dancing with women in objectionable manner", "video_id": "video10143", "sen_id": 245950}, {"caption": "the fresh prince of bel air dancing with a young lady in a sports bar before carlton cuts in", "video_id": "video10143", "sen_id": 245951}, {"caption": "an african man dances with a white young woman in a bar", "video_id": "video10143", "sen_id": 245952}, {"caption": "a young black man dances with a white woman and wears a striped shirt", "video_id": "video10143", "sen_id": 245953}, {"caption": "this is a clip from an old tv series with will smith at a sports bar dancing while another boy is trying to cut in", "video_id": "video10143", "sen_id": 245954}, {"caption": "there is a man dancing with a woman in a restuarunt", "video_id": "video10143", "sen_id": 245955}, {"caption": "will smith is wearing a striped shirt and dancing provocatively with another woman", "video_id": "video10143", "sen_id": 245956}, {"caption": "will smith in an umpire shirt dancing with a woman on the fresh prince of bel air", "video_id": "video10143", "sen_id": 245957}, {"caption": "will smith in his series prince of bel air with his cousin dancing in a coffee shop", "video_id": "video10143", "sen_id": 245958}, {"caption": "will smith is dancing with carlton in fresh prince", "video_id": "video10143", "sen_id": 245959}, {"caption": "a man in a black shirt is cleaning car tires", "video_id": "video10569", "sen_id": 245960}, {"caption": "a man is cleaning the wheels and tires of his jeep wrangler", "video_id": "video10569", "sen_id": 245961}, {"caption": "a man demonstrates how to clean the wheels on his personal automobile", "video_id": "video10569", "sen_id": 245962}, {"caption": "a white man sprays a tire with cleaner and washes the wheel", "video_id": "video10569", "sen_id": 245963}, {"caption": "a man is cleaning tires and showing how to do so properly", "video_id": "video10569", "sen_id": 245964}, {"caption": "a person is cleaning the jeep tyre with brush", "video_id": "video10569", "sen_id": 245965}, {"caption": "a shows us the right way to clean tires", "video_id": "video10569", "sen_id": 245966}, {"caption": "an display and demo of car washing liquid", "video_id": "video10569", "sen_id": 245967}, {"caption": "some one is explaining about car and cleaning the car wheel with soap spray", "video_id": "video10569", "sen_id": 245968}, {"caption": "a car wheel is cleaned by the person quikly out of a cleaning liquid", "video_id": "video10569", "sen_id": 245969}, {"caption": "a men washes the tyre rim of a jeep and cleans with brush", "video_id": "video10569", "sen_id": 245970}, {"caption": "a man in a hat and black shirt cleaning tires and rims on a jeep with cleaner and a rim bristle brush", "video_id": "video10569", "sen_id": 245971}, {"caption": "a man applying the polish and cleaning his car wheel", "video_id": "video10569", "sen_id": 245972}, {"caption": "a man is doing some spray on his car wheel and washing it with a brush", "video_id": "video10569", "sen_id": 245973}, {"caption": "some body is using a sponge to clean a hub cap", "video_id": "video10569", "sen_id": 245974}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10569", "sen_id": 245975}, {"caption": "a man in a black shirt and blue jeans giving advice on tire care", "video_id": "video10569", "sen_id": 245976}, {"caption": "a man spraying a polish to his car tyre and cleaning it", "video_id": "video10569", "sen_id": 245977}, {"caption": "the men cleaning the gipsy s tyre with water spray", "video_id": "video10569", "sen_id": 245978}, {"caption": "someone is using a sponge to wash a tire", "video_id": "video10569", "sen_id": 245979}, {"caption": "a man with glasses is sitting behind a desk with a laptop", "video_id": "video10299", "sen_id": 245980}, {"caption": "a man discussing sub atomic particles as a science lesson", "video_id": "video10299", "sen_id": 245981}, {"caption": "a man wearing a brown jacket and glasses is sitting behind a desk and talking directly to the camera", "video_id": "video10299", "sen_id": 245982}, {"caption": "a men sits behind a desk in a sports jacket while he explains chemical bonds", "video_id": "video10299", "sen_id": 245983}, {"caption": "a white male wearing glasses and has brown hair talks about molecules and science", "video_id": "video10299", "sen_id": 245984}, {"caption": "there is a suit man talking in front of a laptop", "video_id": "video10299", "sen_id": 245985}, {"caption": "a young guy wearing light color dress and wearing glass", "video_id": "video10299", "sen_id": 245986}, {"caption": "a man sitting at a desk surrounded with scientific props talks about atoms", "video_id": "video10299", "sen_id": 245987}, {"caption": "a man in brown hair in front of laptop is talking about the nature", "video_id": "video10299", "sen_id": 245988}, {"caption": "a person with brown colour coat is explaining about something", "video_id": "video10299", "sen_id": 245989}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10299", "sen_id": 245990}, {"caption": "a man has both hands extended in front of his brown jacket with the fingers curled as he looks ahead and speaks", "video_id": "video10299", "sen_id": 245991}, {"caption": "a man discusses the finer points of chemistry to the camera", "video_id": "video10299", "sen_id": 245992}, {"caption": "the young man in brown suit and wearing glasses explains about something very elaborately", "video_id": "video10299", "sen_id": 245993}, {"caption": "guy in glasses wearing coat and tshirt is talking to the camera", "video_id": "video10299", "sen_id": 245994}, {"caption": "a man wearing spectacles and sitting in front of lap top is talking", "video_id": "video10299", "sen_id": 245995}, {"caption": "a scientist explains past theories of how atoms bond to one another in molecules according to historic chemists", "video_id": "video10299", "sen_id": 245996}, {"caption": "a man telling about something and sitting on the chair", "video_id": "video10299", "sen_id": 245997}, {"caption": "a person wearing brown color coat and a spec sitting infront of a opened laptop and explaining something by waving his both hands", "video_id": "video10299", "sen_id": 245998}, {"caption": "a man with glasses is speaking about something", "video_id": "video10299", "sen_id": 245999}, {"caption": "an older trailer for the movie jurassic world", "video_id": "video11342", "sen_id": 246000}, {"caption": "scenes from jurassic world are shown and talked about", "video_id": "video11342", "sen_id": 246001}, {"caption": "two people are in a pod and viewing many dinosaurs", "video_id": "video11342", "sen_id": 246002}, {"caption": "people in spheres rolling by dinosaurs and a man in a beard talking", "video_id": "video11342", "sen_id": 246003}, {"caption": "see thru ball with people rolling past dinosaurs and a man in a beard talking", "video_id": "video11342", "sen_id": 246004}, {"caption": "many people gathered in a public place and enjoying the function", "video_id": "video11342", "sen_id": 246005}, {"caption": "a man showing a movie scene on the jurasic world movie", "video_id": "video11342", "sen_id": 246006}, {"caption": "two people in a futuristic car are traveling through an area that has dinosaurs walking around", "video_id": "video11342", "sen_id": 246007}, {"caption": "steven spielberg and colin trevorrow discuss jurassic world to a montage of clips", "video_id": "video11342", "sen_id": 246008}, {"caption": "man speaking about the new jurrasic park movie", "video_id": "video11342", "sen_id": 246009}, {"caption": "there is a big green park of dinosaur", "video_id": "video11342", "sen_id": 246010}, {"caption": "more peoples are clapping and a animal on forest", "video_id": "video11342", "sen_id": 246011}, {"caption": "a group of people are applauding and a group of dinosaurs are around a small vehicle", "video_id": "video11342", "sen_id": 246012}, {"caption": "steven spielberg (person) is the executive producer of the movie like the jurassic park", "video_id": "video11342", "sen_id": 246013}, {"caption": "a person is talking about the movie of the jurassic park and two of them in the circle shaped ball watchin the dinasorus", "video_id": "video11342", "sen_id": 246014}, {"caption": "a area with a lot of animals walking around", "video_id": "video11342", "sen_id": 246015}, {"caption": "a director of jurassic park explains the making of the movie", "video_id": "video11342", "sen_id": 246016}, {"caption": "an animation film is playing on a screen", "video_id": "video11342", "sen_id": 246017}, {"caption": "steven spielberg discussing a movie dinosaurs roaming the earth and a couple moving around in a clear sphere", "video_id": "video11342", "sen_id": 246018}, {"caption": "they are sitting in stadium and two person traveling in a forest", "video_id": "video11342", "sen_id": 246019}, {"caption": "a treatment for teeth is shown for sealings", "video_id": "video10352", "sen_id": 246020}, {"caption": "a tooth-sealing technique is demonstrated while a narrator explains the benefits of the procedure", "video_id": "video10352", "sen_id": 246021}, {"caption": "a generated video of tooth sealants for children", "video_id": "video10352", "sen_id": 246022}, {"caption": "a demonstration of a tooth sealing method that is beneficial for preventative dental care", "video_id": "video10352", "sen_id": 246023}, {"caption": "a dentist uses a laser beam to repair damage to teeth", "video_id": "video10352", "sen_id": 246024}, {"caption": "a tooth is going through a dental procedure to save it", "video_id": "video10352", "sen_id": 246025}, {"caption": "a man exploring and explaining something about the tooth", "video_id": "video10352", "sen_id": 246026}, {"caption": "a teeth picture still image equipment on top inside teeth displaying on screen", "video_id": "video10352", "sen_id": 246027}, {"caption": "a man in a suit is talking about cleaning teeth", "video_id": "video10352", "sen_id": 246028}, {"caption": "a computerized rendition of a dentist sealing the surface of teeth is shown", "video_id": "video10352", "sen_id": 246029}, {"caption": "dentist shows how the infected teach is cleaned using the laser treatment", "video_id": "video10352", "sen_id": 246030}, {"caption": "an animation is showing how some teeth are cleaned", "video_id": "video10352", "sen_id": 246031}, {"caption": "a demonstration on preventative treatment by sealing cracks in teeth with a product called the dentaray is shown", "video_id": "video10352", "sen_id": 246032}, {"caption": "an animated molar s surface is being sealed by a animated dental tool", "video_id": "video10352", "sen_id": 246033}, {"caption": "a set of teeth are being sealed using some technique ideal for children", "video_id": "video10352", "sen_id": 246034}, {"caption": "teeth being treated with a laser for a crack in the enamel", "video_id": "video10352", "sen_id": 246035}, {"caption": "a dental procedure with a laser is cleaning plaque from teeth", "video_id": "video10352", "sen_id": 246036}, {"caption": "talking about preventive treatment for teeth", "video_id": "video10352", "sen_id": 246037}, {"caption": "person is showing how to correct the teeth", "video_id": "video10352", "sen_id": 246038}, {"caption": "preventative dental service using lasers to seal cracks in teeth", "video_id": "video10352", "sen_id": 246039}, {"caption": "these are still photos from the tv series blackish", "video_id": "video11204", "sen_id": 246040}, {"caption": "a female newscaster introduces the show black-ish by listing some members of its cast: anthony anderson tracee ellis ross and laurence fishburne", "video_id": "video11204", "sen_id": 246041}, {"caption": "an old-fashioned tv set shows feet wearing sneakers a family relaxes during a barbecue a man looks sidewalk while stylishly dressed a woman leans forward with a hand outstretched two men are seated on a wooden bench and a female tv host laughs", "video_id": "video11204", "sen_id": 246042}, {"caption": "woman explains about a show called blackish which images of the show are being shown on screen", "video_id": "video11204", "sen_id": 246043}, {"caption": "a tv show host talks about the cast of the show blackish", "video_id": "video11204", "sen_id": 246044}, {"caption": "a man's life is shown in a few shots while the idea of being black is shown", "video_id": "video11204", "sen_id": 246045}, {"caption": "a large group of african actors set together on a wide spread of outdoor furniture", "video_id": "video11204", "sen_id": 246046}, {"caption": "a review of the family sitcom tv show blackish", "video_id": "video11204", "sen_id": 246047}, {"caption": "a woman is talking about the show called 'black-ish", "video_id": "video11204", "sen_id": 246048}, {"caption": "a group of people enjoying together in an outdoor place", "video_id": "video11204", "sen_id": 246049}, {"caption": "a women is wearing long dress and standing and smiling", "video_id": "video11204", "sen_id": 246050}, {"caption": "the announcer talks about the television show about a black family", "video_id": "video11204", "sen_id": 246051}, {"caption": "a whole family sitting outside on the bench and spending their time", "video_id": "video11204", "sen_id": 246052}, {"caption": "photographs of groups of people are shown and giving narration", "video_id": "video11204", "sen_id": 246053}, {"caption": "a person in a dress stands in front of a screen that flashes scenes of a tv show", "video_id": "video11204", "sen_id": 246054}, {"caption": "its a woman taking about a famous people on a news channel", "video_id": "video11204", "sen_id": 246055}, {"caption": "this is a interview of the variety people in the restuarent", "video_id": "video11204", "sen_id": 246056}, {"caption": "a woman speaks to the camera for a news segment", "video_id": "video11204", "sen_id": 246057}, {"caption": "a lady in a pink dress has long flowy hair", "video_id": "video11204", "sen_id": 246058}, {"caption": "a woman on tv is talking about something", "video_id": "video11204", "sen_id": 246059}, {"caption": "a man speaking about new technology thay allows him to do different things with lights", "video_id": "video12510", "sen_id": 246060}, {"caption": "a man is speaking on his work on sound equipment during a concert", "video_id": "video12510", "sen_id": 246061}, {"caption": "a man discusses what he is now able to do with bass nectar", "video_id": "video12510", "sen_id": 246062}, {"caption": "a man talks and we see people enjoying a concert with bright lights", "video_id": "video12510", "sen_id": 246063}, {"caption": "a technology expert discusses what technology allows him to do", "video_id": "video12510", "sen_id": 246064}, {"caption": "a man talking about concert", "video_id": "video12510", "sen_id": 246065}, {"caption": "there is a crowded and popular concert with a light show and sound technician", "video_id": "video12510", "sen_id": 246066}, {"caption": "a man wearing a black shirt talking during an interview", "video_id": "video12510", "sen_id": 246067}, {"caption": "a man in a dj room playing music at the night club", "video_id": "video12510", "sen_id": 246068}, {"caption": "a band is playing on stage and a guy handling the sound is shown while the audience dances", "video_id": "video12510", "sen_id": 246069}, {"caption": "it is a live music performance with a man in the back", "video_id": "video12510", "sen_id": 246070}, {"caption": "dj discusses his skill while people dance in a club", "video_id": "video12510", "sen_id": 246071}, {"caption": "a bald head man speaks out and large number of crowd waving their heads according to the music in music concert", "video_id": "video12510", "sen_id": 246072}, {"caption": "bald man speaking about the technology of a concert", "video_id": "video12510", "sen_id": 246073}, {"caption": "there is a crowd of people going crazy at a concert", "video_id": "video12510", "sen_id": 246074}, {"caption": "there is a stage programme going on and people enjoying", "video_id": "video12510", "sen_id": 246075}, {"caption": "a large audience cheers the guest on the stage", "video_id": "video12510", "sen_id": 246076}, {"caption": "a man manipulates the sound system at a concert while lights flash", "video_id": "video12510", "sen_id": 246077}, {"caption": "a person black color dress wearing cloth sitting on sofa speaking and audience watching waving hands displaying on screen", "video_id": "video12510", "sen_id": 246078}, {"caption": "there was a large crowd that attended the concert", "video_id": "video12510", "sen_id": 246079}, {"caption": "a group of people are having fun on the baseball field", "video_id": "video10019", "sen_id": 246080}, {"caption": "an older woman in a red sox baseball jersey is walked out onto a baseball field by 2 men", "video_id": "video10019", "sen_id": 246081}, {"caption": "an elderly lady in a baseball jersey is escorted onto the field then we see the mascot and girls jumping rope", "video_id": "video10019", "sen_id": 246082}, {"caption": "a mascot is on the field and there are three girls jumping rope", "video_id": "video10019", "sen_id": 246083}, {"caption": "a 100-year-old woman is recognized at a philadelphia phillies game while girls jump rope", "video_id": "video10019", "sen_id": 246084}, {"caption": "a compilation of fun times and moments at games", "video_id": "video10019", "sen_id": 246085}, {"caption": "an older woman in a baseball jersey walks on a baseball field", "video_id": "video10019", "sen_id": 246086}, {"caption": "a clip of an elderly woman at a baseball game appears followed by the mascot dancing to girls just want to have fun", "video_id": "video10019", "sen_id": 246087}, {"caption": "a women in white t-shirt is taken to ground by some people", "video_id": "video10019", "sen_id": 246088}, {"caption": "there is a women hellowing the crowd in the stadium", "video_id": "video10019", "sen_id": 246089}, {"caption": " jump ropers and mascots get the crowd ready for a baseball game", "video_id": "video10019", "sen_id": 246090}, {"caption": "a girls skipping inside stadium a old lady with two man waving hands and dancing", "video_id": "video10019", "sen_id": 246091}, {"caption": "a guy in a costume is playing on the field", "video_id": "video10019", "sen_id": 246092}, {"caption": "people in the stadium celebrating the victory of some game", "video_id": "video10019", "sen_id": 246093}, {"caption": "its a game a very old lady says hi to the audience the girls are playing with the rope", "video_id": "video10019", "sen_id": 246094}, {"caption": "cheerleaders jump rope as a green mascot dances in front of an all-terrain vehicle", "video_id": "video10019", "sen_id": 246095}, {"caption": "there is a funny dance going on the ground", "video_id": "video10019", "sen_id": 246096}, {"caption": "baseball pregame activities feature grandmothers and jump ropers", "video_id": "video10019", "sen_id": 246097}, {"caption": "a woman on field waving a group of women dancing with ropes and a costume character", "video_id": "video10019", "sen_id": 246098}, {"caption": "a man dressed like a bird and dancing funny in a stadium", "video_id": "video10019", "sen_id": 246099}, {"caption": "a man works on the engine of a sports car that he is preparing to drive", "video_id": "video12836", "sen_id": 246100}, {"caption": "top gear hosts drives off in car", "video_id": "video12836", "sen_id": 246101}, {"caption": "a man checks under the hood of a black dodge viper closes the hood and speeds away", "video_id": "video12836", "sen_id": 246102}, {"caption": "a car mechanic servicing the car in the work shop", "video_id": "video12836", "sen_id": 246103}, {"caption": "man with british accent drives along at a fast pace in a desert in a yellow car another man in a black jacket puts fluid in his fancy black car with the hood popped", "video_id": "video12836", "sen_id": 246104}, {"caption": "a old man inside car sitting driving car on road and other man repairing and starting vehical on road displaying on screen", "video_id": "video12836", "sen_id": 246105}, {"caption": "a yellow car is riding on a road with another black color car", "video_id": "video12836", "sen_id": 246106}, {"caption": "one man drives across the desert while another finishes working on his car before leaving", "video_id": "video12836", "sen_id": 246107}, {"caption": "a car is riding on the road and a man doing some thing in the car", "video_id": "video12836", "sen_id": 246108}, {"caption": "a person is keeping lot of things inside a black colour car and going fast", "video_id": "video12836", "sen_id": 246109}, {"caption": "a man is repairing a stylish black colour vehicle", "video_id": "video12836", "sen_id": 246110}, {"caption": "a man wearing black color dress is getting into a black colr car", "video_id": "video12836", "sen_id": 246111}, {"caption": "we see one gentlemen driving and another struggling with his automobile", "video_id": "video12836", "sen_id": 246112}, {"caption": "a man is driving a yellow car while another man is going through his viper gt engine", "video_id": "video12836", "sen_id": 246113}, {"caption": "a person is driving car and showing its features", "video_id": "video12836", "sen_id": 246114}, {"caption": "there is a yellow car riding on the road", "video_id": "video12836", "sen_id": 246115}, {"caption": "one man driving car fastly and its like that jet", "video_id": "video12836", "sen_id": 246116}, {"caption": "a man works on the engine of a sports car that a friend of his has tampered with", "video_id": "video12836", "sen_id": 246117}, {"caption": "a young man tries to get his viper luxury car going by successfully fiddling under the hood with the engine and then driving off", "video_id": "video12836", "sen_id": 246118}, {"caption": "a guy is working on a car in a garage", "video_id": "video12836", "sen_id": 246119}, {"caption": "man with blue shirt trying to turn a dial", "video_id": "video10015", "sen_id": 246120}, {"caption": "a person is showing how to properly set up a drilling mechanism", "video_id": "video10015", "sen_id": 246121}, {"caption": "a man describes and demonstrates how to use an industrial drilling machine", "video_id": "video10015", "sen_id": 246122}, {"caption": "a man uses an industrial machine to bore a hole in a piece of metal", "video_id": "video10015", "sen_id": 246123}, {"caption": "a pair of hands in white gloves turn and twists the handles on a large metal machine", "video_id": "video10015", "sen_id": 246124}, {"caption": "interested in a field that involves your technical and mechanical skills watch to find out more information about drilling", "video_id": "video10015", "sen_id": 246125}, {"caption": "a man in greay shirt setting the machine for drilling", "video_id": "video10015", "sen_id": 246126}, {"caption": "the man turns the knobs and handles on the machine", "video_id": "video10015", "sen_id": 246127}, {"caption": "a man demonstrates an industrial sized drill he is using for his job", "video_id": "video10015", "sen_id": 246128}, {"caption": "a man wearing violet work clothes is demonstrating how to use a drilling machine", "video_id": "video10015", "sen_id": 246129}, {"caption": "a worker operating a knob of the machine with a ever in his hands", "video_id": "video10015", "sen_id": 246130}, {"caption": "there is a man operating a machine in a room", "video_id": "video10015", "sen_id": 246131}, {"caption": "a machine operator putting different levers to drill a component", "video_id": "video10015", "sen_id": 246132}, {"caption": "a man demonstrates how to use a large industrial lathe", "video_id": "video10015", "sen_id": 246133}, {"caption": "a man is giving instructions on how to use a drill", "video_id": "video10015", "sen_id": 246134}, {"caption": "a person is showing the drilling mechanism and its issues", "video_id": "video10015", "sen_id": 246135}, {"caption": "in this video a man showing how to set up a drilling machne", "video_id": "video10015", "sen_id": 246136}, {"caption": "on the back ground of welding laith and explaning the men in drilling", "video_id": "video10015", "sen_id": 246137}, {"caption": "guy moving lever and spinning a machine with his hands", "video_id": "video10015", "sen_id": 246138}, {"caption": "a man is operating a complicated looking drill in a factory", "video_id": "video10015", "sen_id": 246139}, {"caption": "a woman is doing activities in a surgical mask", "video_id": "video11975", "sen_id": 246140}, {"caption": "a woman in a mask is bowling sharp shooting and shopping while she is video chatting", "video_id": "video11975", "sen_id": 246141}, {"caption": "a woman with chin length black hair wears a nose mask and brown plaid shirt while at a bowling alley adds a white apron outdoors and takes a selfie holds a rifle at a shooting arcade holds a prize in a plastic bag returns to the bowling alley and sees a laughing young man watching from her cellphone screen", "video_id": "video11975", "sen_id": 246142}, {"caption": "a girl wearing a medical mask is bowling", "video_id": "video11975", "sen_id": 246143}, {"caption": "a young woman in a face mask bowls and plays carnival games", "video_id": "video11975", "sen_id": 246144}, {"caption": "a woman in plaid shirt and face mask is shown doing several tasks including bowling shopping and facetiming", "video_id": "video11975", "sen_id": 246145}, {"caption": "a girl trying to play 9 pins and try shootings and other games", "video_id": "video11975", "sen_id": 246146}, {"caption": "a woman in a face mask bowling and going to a market while video chatting with a man on a cell phone", "video_id": "video11975", "sen_id": 246147}, {"caption": " in a plaid shirt and a dusk mask bowling and playing a carnival game with facetiming with a friend", "video_id": "video11975", "sen_id": 246148}, {"caption": "a woman tosses the ball down the lane at a bowling alley", "video_id": "video11975", "sen_id": 246149}, {"caption": "chinese girl enjoying the games in a theme park", "video_id": "video11975", "sen_id": 246150}, {"caption": "a women is in a funny mod playing all sorts of games", "video_id": "video11975", "sen_id": 246151}, {"caption": "a woman is playing a various games and covered her mouth", "video_id": "video11975", "sen_id": 246152}, {"caption": "a girl showing funny poses in a snow bowling game", "video_id": "video11975", "sen_id": 246153}, {"caption": "brunette in checks shirt is enjoying herself by play bowling ball", "video_id": "video11975", "sen_id": 246154}, {"caption": "a woman playing games in a mall and recording this in her phone camera", "video_id": "video11975", "sen_id": 246155}, {"caption": "a woman with a face mask is bowling while a man on a camera phone looks on", "video_id": "video11975", "sen_id": 246156}, {"caption": "a young asian girl bowls and plays carnival games", "video_id": "video11975", "sen_id": 246157}, {"caption": "asian woman is playing bowling and having fun", "video_id": "video11975", "sen_id": 246158}, {"caption": "a video of a woman having fun playing various games with her iphone", "video_id": "video11975", "sen_id": 246159}, {"caption": "people are laughing on a bus", "video_id": "video10198", "sen_id": 246160}, {"caption": "a man and a woman are laughing together and reaching for clothes in a car", "video_id": "video10198", "sen_id": 246161}, {"caption": "an empty seat in a moving car and a person trying to tidy a jacket", "video_id": "video10198", "sen_id": 246162}, {"caption": "a group of friends laughing in a car and playing", "video_id": "video10198", "sen_id": 246163}, {"caption": "several people on a bus are laughing hysterically because one of the seats is wet and no one wants to sit in it", "video_id": "video10198", "sen_id": 246164}, {"caption": "several people laughing in a train while the camera person moves around", "video_id": "video10198", "sen_id": 246165}, {"caption": "someone taking video while travelling in the bus", "video_id": "video10198", "sen_id": 246166}, {"caption": "a few men in a vehicle laugh uncontrollably", "video_id": "video10198", "sen_id": 246167}, {"caption": "laughter by several men from inside an moving vehicle", "video_id": "video10198", "sen_id": 246168}, {"caption": "a group of people laughing and having fun on a train", "video_id": "video10198", "sen_id": 246169}, {"caption": "some people travelling and laughing inside the bus", "video_id": "video10198", "sen_id": 246170}, {"caption": "some people are on a buss laughing very loudly", "video_id": "video10198", "sen_id": 246171}, {"caption": "its interior of car person place something inside car", "video_id": "video10198", "sen_id": 246172}, {"caption": "a funny moment after the trip finished with the group of friends travelled in a car", "video_id": "video10198", "sen_id": 246173}, {"caption": "people laughing inside a vehicle because something has been spilled in the seat", "video_id": "video10198", "sen_id": 246174}, {"caption": "there is some friends enjoying each other", "video_id": "video10198", "sen_id": 246175}, {"caption": "an empty car seat with a checkered pattern with background laughing and saying no one can sit there now", "video_id": "video10198", "sen_id": 246176}, {"caption": "people are laughing they are inside a vehiclethey make too much noise", "video_id": "video10198", "sen_id": 246177}, {"caption": "friends laugh and frolic as they pull belongings from a seat on some type of elevated vehicle", "video_id": "video10198", "sen_id": 246178}, {"caption": "a person with red tshirt is keeping his dress inside the bag", "video_id": "video10198", "sen_id": 246179}, {"caption": "an air traffic control tower with no one inside", "video_id": "video12984", "sen_id": 246180}, {"caption": "a news report discusses air traffic controllers and a specific incident", "video_id": "video12984", "sen_id": 246181}, {"caption": "a man with a very deep and serious voice is telling about the last contact with an airplane", "video_id": "video12984", "sen_id": 246182}, {"caption": "there s is a control tower at an aiport and a reporter is talking about a plane crash", "video_id": "video12984", "sen_id": 246183}, {"caption": "an airport tower is watched with recorded audio playing eerily", "video_id": "video12984", "sen_id": 246184}, {"caption": "on the unfortunate aeroplane crashdisappearance the last words spoken by the crew are reported by the tv news", "video_id": "video12984", "sen_id": 246185}, {"caption": "there is a man talking about traffic control", "video_id": "video12984", "sen_id": 246186}, {"caption": "an air traffic controller receives the last transmission of a doomed flight", "video_id": "video12984", "sen_id": 246187}, {"caption": "anchor discusses conversation between military personal in china about missing person", "video_id": "video12984", "sen_id": 246188}, {"caption": "a man is telling the last conversation between the air traffic control and the aeroplane", "video_id": "video12984", "sen_id": 246189}, {"caption": " talking about air traffic control and what they received from an airline", "video_id": "video12984", "sen_id": 246190}, {"caption": "sky news is showing an air traffic control tower and talking about it", "video_id": "video12984", "sen_id": 246191}, {"caption": "sky news reports on a flight from kuala lumpur", "video_id": "video12984", "sen_id": 246192}, {"caption": "sky news shows off an air traffic control tower over ho chi minh", "video_id": "video12984", "sen_id": 246193}, {"caption": "a video news program is being played a big tower", "video_id": "video12984", "sen_id": 246194}, {"caption": "a description of an unknown airline tragedy featuring details of transcripts from communication between the tower and the airline", "video_id": "video12984", "sen_id": 246195}, {"caption": "a man is replaying conversation between air traffic control and a second party while shots of a air traffic control are shown", "video_id": "video12984", "sen_id": 246196}, {"caption": "the last communications between a plane and air traffic control are discussed by the narrator", "video_id": "video12984", "sen_id": 246197}, {"caption": "the air traffic controller in kuala lumpur allowed the doomed aircraft clearance to viet nam", "video_id": "video12984", "sen_id": 246198}, {"caption": "some scenes of an outdoor area are shown", "video_id": "video12984", "sen_id": 246199}, {"caption": "a man is resting his head on a white pillowcase with floral embroidery when he hears his name being called and looks up to see a woman looking down at him", "video_id": "video12566", "sen_id": 246200}, {"caption": "a man lying in bed winces repeatedly while a woman watches him", "video_id": "video12566", "sen_id": 246201}, {"caption": "a man is laying in bed watchin tv and a woman is talking to him", "video_id": "video12566", "sen_id": 246202}, {"caption": "a man laying in bed with the tv going as a woman starts talking to him", "video_id": "video12566", "sen_id": 246203}, {"caption": "a man is laying in bed laughing but appears to be out of it and a woman comes to talk to him", "video_id": "video12566", "sen_id": 246204}, {"caption": "a man lies in bed half asleep then wakes up to the sound of a woman staring and talking to him", "video_id": "video12566", "sen_id": 246205}, {"caption": "there is a man smiling in a bed", "video_id": "video12566", "sen_id": 246206}, {"caption": "a man sleeps and having a dream and gets up to see a lady sits on the bed", "video_id": "video12566", "sen_id": 246207}, {"caption": "this is a clip from the movie", "video_id": "video12566", "sen_id": 246208}, {"caption": "a man is laying in a bed with a woman looking down on him", "video_id": "video12566", "sen_id": 246209}, {"caption": "a man sleeping and smiling about something a woman comes and drags his attention", "video_id": "video12566", "sen_id": 246210}, {"caption": "a man lieing on the bed", "video_id": "video12566", "sen_id": 246211}, {"caption": "a video from an older movie of a man laying in bed", "video_id": "video12566", "sen_id": 246212}, {"caption": "a gentleman in a night shirt laying on a bed is questioned by his lady friend about having gone out", "video_id": "video12566", "sen_id": 246213}, {"caption": "a man is is lying on the bed and listening to the speech of lady", "video_id": "video12566", "sen_id": 246214}, {"caption": "a man lying on the bed and answers to a lady sits on his bed", "video_id": "video12566", "sen_id": 246215}, {"caption": "a man lying in bed and the woman says she knows he has been out", "video_id": "video12566", "sen_id": 246216}, {"caption": "a man laying in bed talks to a big woman leaning towards him", "video_id": "video12566", "sen_id": 246217}, {"caption": "a man lays in bed and hears voices in the background", "video_id": "video12566", "sen_id": 246218}, {"caption": "a man is lying in bed thinking of the good old days", "video_id": "video12566", "sen_id": 246219}, {"caption": "a woman sitting on a bed with her hands clasped and then it cuts to a screenshot", "video_id": "video10984", "sen_id": 246220}, {"caption": "a couple of empty boxes and a subscribe button", "video_id": "video10984", "sen_id": 246221}, {"caption": "a girl in a blue shirt is talking in her room and then there is a blue subscription screen", "video_id": "video10984", "sen_id": 246222}, {"caption": "a blue screen with the words subscribe and last video displayed", "video_id": "video10984", "sen_id": 246223}, {"caption": "a video clip of a girl says quick words and then the video goes to a technology screen", "video_id": "video10984", "sen_id": 246224}, {"caption": "a promotion for amoux studio multi arts videos includes facebook page", "video_id": "video10984", "sen_id": 246225}, {"caption": "woman in grey sweater and white shirt demonstrating operation of streaming device", "video_id": "video10984", "sen_id": 246226}, {"caption": "an ad for amoux studio multiarts is displayed", "video_id": "video10984", "sen_id": 246227}, {"caption": "a women appears and then a screen blue screen with a subscribe button on it", "video_id": "video10984", "sen_id": 246228}, {"caption": "a girl wearing blue dress talking about something in her home", "video_id": "video10984", "sen_id": 246229}, {"caption": "a woman in blue ending the video with her subscribe outro", "video_id": "video10984", "sen_id": 246230}, {"caption": "a young girl is watching videos by the time the tv re- charge is over so they have to subscribe for the tv", "video_id": "video10984", "sen_id": 246231}, {"caption": "there is a user interface for video list", "video_id": "video10984", "sen_id": 246232}, {"caption": "a blue screen is displaying the topic of last videos with the the option to subscribe", "video_id": "video10984", "sen_id": 246233}, {"caption": "a girl is talking and some screen asking to subscribe it", "video_id": "video10984", "sen_id": 246234}, {"caption": "woman sitting and presenting her views for subscribing on her channel", "video_id": "video10984", "sen_id": 246235}, {"caption": "a woman says the word video and a computer menu screen is showen", "video_id": "video10984", "sen_id": 246236}, {"caption": "a girl explains about the subscription of the website", "video_id": "video10984", "sen_id": 246237}, {"caption": "a young girl sets on her bed near a window on a sunny afternoon", "video_id": "video10984", "sen_id": 246238}, {"caption": "a girl in blue dress wearing looking at video screen and watching game on screen", "video_id": "video10984", "sen_id": 246239}, {"caption": "actor is in a war scene and hides behind a truck as he adjusts his gun", "video_id": "video10105", "sen_id": 246240}, {"caption": "a man hides behind an army vehicle while being shot at", "video_id": "video10105", "sen_id": 246241}, {"caption": "soldiers are shooting guns from behind humvee's along side a man in a suit", "video_id": "video10105", "sen_id": 246242}, {"caption": "a man dodges gunfire behind an army vehicle before picking up a gun and shooting", "video_id": "video10105", "sen_id": 246243}, {"caption": "tony stark is hiding behind an army tank firing a gun at the start of iron man", "video_id": "video10105", "sen_id": 246244}, {"caption": "a man in a suit is in the middle of a war", "video_id": "video10105", "sen_id": 246245}, {"caption": "a guy is hiding and running to escape from somebody", "video_id": "video10105", "sen_id": 246246}, {"caption": "there is a suit man shooting against enemies", "video_id": "video10105", "sen_id": 246247}, {"caption": "a man in a black suit leans against vehicles during a fiery battle picks up a black weapon and shoots while standing at the side of a jeep", "video_id": "video10105", "sen_id": 246248}, {"caption": "guy in the coat hide behind the jeepthen he got the gun to fight against", "video_id": "video10105", "sen_id": 246249}, {"caption": "a man in a suit is hiding behind a humvee", "video_id": "video10105", "sen_id": 246250}, {"caption": "a man in black coat is avoiding bullet shots from enemies", "video_id": "video10105", "sen_id": 246251}, {"caption": "a man shooting a gun around vehicles on fire", "video_id": "video10105", "sen_id": 246252}, {"caption": "a suite wearing man escapes from firing and later got a gun and fires on his opponents", "video_id": "video10105", "sen_id": 246253}, {"caption": "man picks up the gun and try to shot against the opposite person", "video_id": "video10105", "sen_id": 246254}, {"caption": "a man is using a gun to defend himself", "video_id": "video10105", "sen_id": 246255}, {"caption": "a man is hiding to avoid gun shots from enemies", "video_id": "video10105", "sen_id": 246256}, {"caption": "a person is shooting with gun in his hand", "video_id": "video10105", "sen_id": 246257}, {"caption": "in a hollywood movie one man fights with cops", "video_id": "video10105", "sen_id": 246258}, {"caption": "a man in a suit is caught up in some action with some soldiers and tries to fire a gun", "video_id": "video10105", "sen_id": 246259}, {"caption": "a long haired man sings a song while dancing around a stage", "video_id": "video12043", "sen_id": 246260}, {"caption": "a group of men with long hair play in a band on a stage while neon lighting strobes around them", "video_id": "video12043", "sen_id": 246261}, {"caption": "some music group is performing live in-front of the huge crowd which looks like music festival", "video_id": "video12043", "sen_id": 246262}, {"caption": "a man with long hair sings metal music on stage", "video_id": "video12043", "sen_id": 246263}, {"caption": "one man singing and dancing very fast with long hair", "video_id": "video12043", "sen_id": 246264}, {"caption": "men are on stage performing with blue lights shining on them", "video_id": "video12043", "sen_id": 246265}, {"caption": "guy with long hair and tshirt is singing at a live concert", "video_id": "video12043", "sen_id": 246266}, {"caption": "the singing troops are showing their skills on the stage show", "video_id": "video12043", "sen_id": 246267}, {"caption": "a man with long brown hair wears a white jacket while playing guitar blue spotlights focus on band musicians and a singer touches his long hair for emphasis while holding a microphone", "video_id": "video12043", "sen_id": 246268}, {"caption": "a lead singer and his band are jamming in a dark room with spotlights shining on them", "video_id": "video12043", "sen_id": 246269}, {"caption": "a rock band with male stars having long hairs are performing on stage", "video_id": "video12043", "sen_id": 246270}, {"caption": "a person playing guiter and singing on the stage", "video_id": "video12043", "sen_id": 246271}, {"caption": "the person in a white top is playing the guitar while the person in black is hitting the drums", "video_id": "video12043", "sen_id": 246272}, {"caption": "a group of long haired young men sing and paly instruments on a large lit stage", "video_id": "video12043", "sen_id": 246273}, {"caption": "a man singing a song about the hair and many peoples playing music behind him", "video_id": "video12043", "sen_id": 246274}, {"caption": "a band is playing a concert for their fans", "video_id": "video12043", "sen_id": 246275}, {"caption": "a suit man singing with his friends on the stage", "video_id": "video12043", "sen_id": 246276}, {"caption": "the song production of artist on the concert", "video_id": "video12043", "sen_id": 246277}, {"caption": "a group of young men with very long hair sing a song on a lighted stage", "video_id": "video12043", "sen_id": 246278}, {"caption": "a man is singing a rock song while other men play the drums and guitar", "video_id": "video12043", "sen_id": 246279}, {"caption": "a receipt on how to create a vegetable dish", "video_id": "video11659", "sen_id": 246280}, {"caption": "some seasoned fish on a plate and a pepper being cut", "video_id": "video11659", "sen_id": 246281}, {"caption": "a man explaining how he is making a dish", "video_id": "video11659", "sen_id": 246282}, {"caption": "a video graphic that show hands using a knife to prepare vegetables for a dish", "video_id": "video11659", "sen_id": 246283}, {"caption": "a male voiceover and a pair of hands show and tell how to use and cut up a green problano pepper", "video_id": "video11659", "sen_id": 246284}, {"caption": "there is a man making a dish sliced capsicum", "video_id": "video11659", "sen_id": 246285}, {"caption": "a man is preparing a dish and slices a poblano pepper in half", "video_id": "video11659", "sen_id": 246286}, {"caption": "a man mixes pepper for a brief moment before chopping up green peppers", "video_id": "video11659", "sen_id": 246287}, {"caption": "putting seasoning on a piece of meet and cutting up veggies", "video_id": "video11659", "sen_id": 246288}, {"caption": "a man is seasoning the meat and cutting up a pepper", "video_id": "video11659", "sen_id": 246289}, {"caption": "there is a man making a tasty dish in the kitchen", "video_id": "video11659", "sen_id": 246290}, {"caption": "a man sprinkles spices over plated food before slicing a pepper", "video_id": "video11659", "sen_id": 246291}, {"caption": "the person puts the seasoning on the fish and chops the vegetables on the cutting board", "video_id": "video11659", "sen_id": 246292}, {"caption": "a man is talking about a recipe as he goes through the steps", "video_id": "video11659", "sen_id": 246293}, {"caption": "a man is seasoning a couple pieces of fish", "video_id": "video11659", "sen_id": 246294}, {"caption": "in the kitchen a person is seasoning meat and cutting a green pepper on a cutting board", "video_id": "video11659", "sen_id": 246295}, {"caption": "in a kitchen someone is slicing a cucumber carefuiiy with other vegetable on a dask", "video_id": "video11659", "sen_id": 246296}, {"caption": "a man is showing a uncooked fish with seasoning on it he is getting the food ready to be cooked in a skillet", "video_id": "video11659", "sen_id": 246297}, {"caption": "a man is cooking a dish using a piece of meat and cutting a veggie", "video_id": "video11659", "sen_id": 246298}, {"caption": "a chef is demonstrating his cooking skills as he puts items in a skillet", "video_id": "video11659", "sen_id": 246299}, {"caption": "a band plays their instruments and sings during a music video", "video_id": "video11063", "sen_id": 246300}, {"caption": "a rock band is playing instruments in the desert in a wind storm", "video_id": "video11063", "sen_id": 246301}, {"caption": "a group of men singing a song in a music video", "video_id": "video11063", "sen_id": 246302}, {"caption": "there is a man singing with loud music", "video_id": "video11063", "sen_id": 246303}, {"caption": "men singing on the stage and musicians playing the instruments", "video_id": "video11063", "sen_id": 246304}, {"caption": "a music rock group sings in their music video with other background images", "video_id": "video11063", "sen_id": 246305}, {"caption": "they are playing different musical instruments and sing song", "video_id": "video11063", "sen_id": 246306}, {"caption": "a music video for a rock band known as linkin park showing scenes of the musicians playing together with various other ambient scenes", "video_id": "video11063", "sen_id": 246307}, {"caption": "singers are singing a song violently outdoors during what appears to be a storm", "video_id": "video11063", "sen_id": 246308}, {"caption": "a man playing guitar and another man beating drums", "video_id": "video11063", "sen_id": 246309}, {"caption": "a person dancing singing songs playing music with guitar drums hitting displaying on screen", "video_id": "video11063", "sen_id": 246310}, {"caption": "a band is playing a concert for their fans", "video_id": "video11063", "sen_id": 246311}, {"caption": "there are several young guys playing in a rock band in several locations like a warehouse and airfield", "video_id": "video11063", "sen_id": 246312}, {"caption": "a music group s music video where they play instruments and sing", "video_id": "video11063", "sen_id": 246313}, {"caption": "a rock band featuring the bald man wearing shades as the lead singer the hooded man as the drummer and the shaggy man as the guitarist is playing", "video_id": "video11063", "sen_id": 246314}, {"caption": "music video of a band singing in different locations around the world", "video_id": "video11063", "sen_id": 246315}, {"caption": "a man singing a song and dancing for the tune", "video_id": "video11063", "sen_id": 246316}, {"caption": "a man plays guitar with his mouth open wide showing upper and lower teeth a spotlight shines upward a man stares at a bush with empty branches", "video_id": "video11063", "sen_id": 246317}, {"caption": "a band playing rock music on multiple musical instruments", "video_id": "video11063", "sen_id": 246318}, {"caption": "a person in black shirt and wearing black glass holding a gittar and playing it and singing another person beat the drums and number of person take part in the music troup", "video_id": "video11063", "sen_id": 246319}, {"caption": "a white suv drives down a busy city street past buildings", "video_id": "video12178", "sen_id": 246320}, {"caption": "pedestrians and drivers are out on a warm day along palm-tree lined streets in a commercial area of a town which attracts tourists", "video_id": "video12178", "sen_id": 246321}, {"caption": "people walk down a boardwalk during the winter during christmastime", "video_id": "video12178", "sen_id": 246322}, {"caption": "a crowded street in a tropical city with many shops", "video_id": "video12178", "sen_id": 246323}, {"caption": "people are driving around in nice expensive cars", "video_id": "video12178", "sen_id": 246324}, {"caption": "there are multiple shots of parts of a city cars driving and stores", "video_id": "video12178", "sen_id": 246325}, {"caption": "the street is busy with people and cars all over", "video_id": "video12178", "sen_id": 246326}, {"caption": "in the tourists expression in their facing diffrent situation in very well", "video_id": "video12178", "sen_id": 246327}, {"caption": "its street where there are many card and white car runs fast on street", "video_id": "video12178", "sen_id": 246328}, {"caption": "an explosion of sights to be found along a typical boulevard in los angeles", "video_id": "video12178", "sen_id": 246329}, {"caption": "various people walk and drive down the street past souvenir shops in a beach town", "video_id": "video12178", "sen_id": 246330}, {"caption": "the video shows cars and people on the street", "video_id": "video12178", "sen_id": 246331}, {"caption": "a man explaining about some places and the peoples in media", "video_id": "video12178", "sen_id": 246332}, {"caption": "a business lined street with pedestrian and vehicle traffic", "video_id": "video12178", "sen_id": 246333}, {"caption": "a day to day activities of the people are being shown and people are busy with their works", "video_id": "video12178", "sen_id": 246334}, {"caption": "here we can see the people are busy in the junction area", "video_id": "video12178", "sen_id": 246335}, {"caption": "group of peoples are going on the commercial roa", "video_id": "video12178", "sen_id": 246336}, {"caption": "people walking down streets lined with palm trees with lots of traffic and stores", "video_id": "video12178", "sen_id": 246337}, {"caption": "people and stores on the street by the coast", "video_id": "video12178", "sen_id": 246338}, {"caption": "various scenes of a city are shown palm trees and people walking down the street are exhibited", "video_id": "video12178", "sen_id": 246339}, {"caption": "a group of people sitting on a couch and having a conversation", "video_id": "video10529", "sen_id": 246340}, {"caption": "two men sit next to woman inside of a brick walled room", "video_id": "video10529", "sen_id": 246341}, {"caption": "kimmel is talking to a man and a woman sitting on a couch", "video_id": "video10529", "sen_id": 246342}, {"caption": "there is a check shirt man talking with two friends", "video_id": "video10529", "sen_id": 246343}, {"caption": "the three persons casually shares their experience to the audience in an interview", "video_id": "video10529", "sen_id": 246344}, {"caption": "two men and a woman speaking about something in a room", "video_id": "video10529", "sen_id": 246345}, {"caption": "two men and a woman are seated on a bed talking and laughing", "video_id": "video10529", "sen_id": 246346}, {"caption": "two men with jeans and red paid shirts are talking to a woman with long dark hair and white tshirt on", "video_id": "video10529", "sen_id": 246347}, {"caption": "two guys and a beautiful lady sitting on the couch and discussing about relationships", "video_id": "video10529", "sen_id": 246348}, {"caption": "two men and a woman speaking about something in a show", "video_id": "video10529", "sen_id": 246349}, {"caption": "a women in white t-shirt is enjoying being with her male friends", "video_id": "video10529", "sen_id": 246350}, {"caption": "a group of friends talk about watching others have fun and the community", "video_id": "video10529", "sen_id": 246351}, {"caption": " two men in red plaid shirts and a woman in a white top sit on a couch talking", "video_id": "video10529", "sen_id": 246352}, {"caption": "two men and a woman sitting on a brown couch laughing about something", "video_id": "video10529", "sen_id": 246353}, {"caption": "a group of people in the news are talking", "video_id": "video10529", "sen_id": 246354}, {"caption": "a women in white t-shirt is laughing with other two guys", "video_id": "video10529", "sen_id": 246355}, {"caption": "the men and the woman sits on the couch and laugh and talk", "video_id": "video10529", "sen_id": 246356}, {"caption": "three people are sitting on a couch watching a screen the people are laughing", "video_id": "video10529", "sen_id": 246357}, {"caption": "host asks the guy and girl if they are in a relationship", "video_id": "video10529", "sen_id": 246358}, {"caption": "some people are sitting on a couch in a room", "video_id": "video10529", "sen_id": 246359}, {"caption": "a clip of a news anchor in indian talking to another woman", "video_id": "video11494", "sen_id": 246360}, {"caption": "a woman in a blue shirt with dark hair delivers the news", "video_id": "video11494", "sen_id": 246361}, {"caption": "a woman with dark hair delivers the news on a foreign station", "video_id": "video11494", "sen_id": 246362}, {"caption": "a woman in a blue dress and dark hair delivers the news", "video_id": "video11494", "sen_id": 246363}, {"caption": "a news crew is giving a phone interview with a woman", "video_id": "video11494", "sen_id": 246364}, {"caption": "a distorted voice talks about something in a foreign language on a news program", "video_id": "video11494", "sen_id": 246365}, {"caption": "there is a woman in blue dressing reading news", "video_id": "video11494", "sen_id": 246366}, {"caption": "the woman wearing the blue top and long hair talks on television", "video_id": "video11494", "sen_id": 246367}, {"caption": "a lady in blue salwar is talking in hindi language in the cnbc channel", "video_id": "video11494", "sen_id": 246368}, {"caption": "a news anchor reports the news on live tv", "video_id": "video11494", "sen_id": 246369}, {"caption": "a women is reading hindi news in a channel and some one on the other side is reporting her news taken place in another area", "video_id": "video11494", "sen_id": 246370}, {"caption": "a woman with black hair and wearing a blue blouse is on one side of screen but moves to the other side to show another person with long black hair wearing blue", "video_id": "video11494", "sen_id": 246371}, {"caption": "its an exclusive news in the hindi channel read by the lady in blue color dress", "video_id": "video11494", "sen_id": 246372}, {"caption": "a news reporter reports the news in arabic on cnnbc", "video_id": "video11494", "sen_id": 246373}, {"caption": "on television a woman speaks with another woman about news", "video_id": "video11494", "sen_id": 246374}, {"caption": "a female news caster gives exclusive news from a television", "video_id": "video11494", "sen_id": 246375}, {"caption": "a woman with black hair wearing a blue dress speaks while text with horizontal vertical and curved lines is displayed next to her", "video_id": "video11494", "sen_id": 246376}, {"caption": "lady reading exclusive news its displayed in hindi she has black color", "video_id": "video11494", "sen_id": 246377}, {"caption": "the news reading is going on in cnbc tv reader is a woman", "video_id": "video11494", "sen_id": 246378}, {"caption": "a pretty woman with blue colour dress is reading a news", "video_id": "video11494", "sen_id": 246379}, {"caption": "a large group of attractive women scatter and fall upon a collection of clothing", "video_id": "video11309", "sen_id": 246380}, {"caption": "a group of girls are wearing summer clothes and examining jeans", "video_id": "video11309", "sen_id": 246381}, {"caption": "a class of women reducing the size of clothing due to weight loss", "video_id": "video11309", "sen_id": 246382}, {"caption": "many girls in shorts are trying to wear clothes on them and also doing something with the clothes kept on a table", "video_id": "video11309", "sen_id": 246383}, {"caption": "several girls all wearing shorts prepare to change into pants", "video_id": "video11309", "sen_id": 246384}, {"caption": "women are walking in preparation to complete clothes", "video_id": "video11309", "sen_id": 246385}, {"caption": "many young girls get down their seats and come forward to a table where clothes are kept", "video_id": "video11309", "sen_id": 246386}, {"caption": "a bunch of women hastily make their way to a table to pick out different clothing items", "video_id": "video11309", "sen_id": 246387}, {"caption": "a group of women testing out different products such as jeans", "video_id": "video11309", "sen_id": 246388}, {"caption": "girls raising from chair and going into a room to check cloths", "video_id": "video11309", "sen_id": 246389}, {"caption": "several teenage girls race to their workstations to begin craft projects", "video_id": "video11309", "sen_id": 246390}, {"caption": "there are some women getting ready for a show", "video_id": "video11309", "sen_id": 246391}, {"caption": "many girls are being called to complete work on clothing", "video_id": "video11309", "sen_id": 246392}, {"caption": "a group of young girls are engaged in a clothing contest show", "video_id": "video11309", "sen_id": 246393}, {"caption": "a collection of pretty young woman are participating in some kind of fashion class or competition", "video_id": "video11309", "sen_id": 246394}, {"caption": "a group of women are sitting then they get up and start working on some clothes at a table", "video_id": "video11309", "sen_id": 246395}, {"caption": "many women are making improvements to clothing on the table", "video_id": "video11309", "sen_id": 246396}, {"caption": "women walking to table to create clothing for competition", "video_id": "video11309", "sen_id": 246397}, {"caption": "beautiful young women put together different types of outfits", "video_id": "video11309", "sen_id": 246398}, {"caption": "two women are working on a project inside", "video_id": "video11309", "sen_id": 246399}, {"caption": "two men wearing suits sit on a panel to discuss current events", "video_id": "video11150", "sen_id": 246400}, {"caption": "two men set together in a tv studio and discuss political issues", "video_id": "video11150", "sen_id": 246401}, {"caption": "two men sit behind a desk talking on a news show", "video_id": "video11150", "sen_id": 246402}, {"caption": "a fat fake newsman talks to a funny looking guy beside him", "video_id": "video11150", "sen_id": 246403}, {"caption": "two men sit in front of a green screen and discuss current events in america", "video_id": "video11150", "sen_id": 246404}, {"caption": "extract of an episode of the young turks broadcast", "video_id": "video11150", "sen_id": 246405}, {"caption": "two persons speaking each other in a news channel", "video_id": "video11150", "sen_id": 246406}, {"caption": "two talk show host discussing the topic of race and social media", "video_id": "video11150", "sen_id": 246407}, {"caption": "two men were discussing something in the media show", "video_id": "video11150", "sen_id": 246408}, {"caption": "two men talk about people who are in politics", "video_id": "video11150", "sen_id": 246409}, {"caption": "a suit man talking in a tv show", "video_id": "video11150", "sen_id": 246410}, {"caption": "a anchor talking about presidential candidate carly fiorina", "video_id": "video11150", "sen_id": 246411}, {"caption": "a two men are discuss in the television channel", "video_id": "video11150", "sen_id": 246412}, {"caption": "it is a couple of guys at a desk talking about news", "video_id": "video11150", "sen_id": 246413}, {"caption": "two guys talking about politics and carly fiorino", "video_id": "video11150", "sen_id": 246414}, {"caption": "two men on a talk show sitting at a desk talking about racism", "video_id": "video11150", "sen_id": 246415}, {"caption": "two men talking about racial issues on some kind of tv show", "video_id": "video11150", "sen_id": 246416}, {"caption": "two men converse on a news talk show about politics", "video_id": "video11150", "sen_id": 246417}, {"caption": "a old man in white color dress sitting with other guy in blue dress speaking on topic discusing displaying on screen", "video_id": "video11150", "sen_id": 246418}, {"caption": "two men in suits talk about the double standards of being white versus other ethnicities", "video_id": "video11150", "sen_id": 246419}, {"caption": "a man with a thin moustache drives a red car in reverse to exit a lot filled with people through a narrow alley as a boy sticks his head and arm out of the passenger side", "video_id": "video10852", "sen_id": 246420}, {"caption": "red car backing up on a narrow street with people walking past it", "video_id": "video10852", "sen_id": 246421}, {"caption": "a red car backing through a crowd down a street", "video_id": "video10852", "sen_id": 246422}, {"caption": "a clip showing a lot of people and a red car with a black stripe down the middle of the hood", "video_id": "video10852", "sen_id": 246423}, {"caption": "a car backs out of a busy street while indian music is playing in the background", "video_id": "video10852", "sen_id": 246424}, {"caption": "a man is taking a video on the town of a city in india", "video_id": "video10852", "sen_id": 246425}, {"caption": "walking through the streets of india to approach a red car", "video_id": "video10852", "sen_id": 246426}, {"caption": "a group of people walk up a street as a man backs his car up the same street", "video_id": "video10852", "sen_id": 246427}, {"caption": "a man in a red car is driving in reverse there are people walking around the car to avoid it", "video_id": "video10852", "sen_id": 246428}, {"caption": "a movie triallers is being shown and a man inside the car is waiting for somebody", "video_id": "video10852", "sen_id": 246429}, {"caption": "there is a red car coming in to the town", "video_id": "video10852", "sen_id": 246430}, {"caption": "a moustached man is driving a small red car backwards on a paved road beside people who are walking slowly near other vehicles by red walls", "video_id": "video10852", "sen_id": 246431}, {"caption": "a sad music on the screen and red car taken bu", "video_id": "video10852", "sen_id": 246432}, {"caption": "a guy in a small red car backing up with people around", "video_id": "video10852", "sen_id": 246433}, {"caption": "the man carefully backed the car down the street", "video_id": "video10852", "sen_id": 246434}, {"caption": "it was movies suppose to be where some one is leaving the house and going in to the car", "video_id": "video10852", "sen_id": 246435}, {"caption": "an unseen entity travels through a crowd dodging feet to reach a man leaning outside the window of his red car", "video_id": "video10852", "sen_id": 246436}, {"caption": "a red car with black stripes somewhere that looks like india", "video_id": "video10852", "sen_id": 246437}, {"caption": "a red car backing down a street while violin music plays", "video_id": "video10852", "sen_id": 246438}, {"caption": "a man in india is riding on a thing", "video_id": "video10852", "sen_id": 246439}, {"caption": "a teacher and a student promoting their school", "video_id": "video11479", "sen_id": 246440}, {"caption": "a woman wearing a black sweater teaches a class of young people", "video_id": "video11479", "sen_id": 246441}, {"caption": "a woman explains it options at a school where students work on imacs", "video_id": "video11479", "sen_id": 246442}, {"caption": "a woman talking about html and css projects", "video_id": "video11479", "sen_id": 246443}, {"caption": "a woman talking about teaching and a student giving his review on the teachings", "video_id": "video11479", "sen_id": 246444}, {"caption": "a teacher outlining the syllabus covered in the course like htlm internet technologies and projects", "video_id": "video11479", "sen_id": 246445}, {"caption": "the woman teacher is giving lecture and students are listening to it", "video_id": "video11479", "sen_id": 246446}, {"caption": "a woman talking about courses and programs offered at a school", "video_id": "video11479", "sen_id": 246447}, {"caption": "a woman gives a speech to an audience in a room", "video_id": "video11479", "sen_id": 246448}, {"caption": "a girl explaining about project on white board and boy speaking", "video_id": "video11479", "sen_id": 246449}, {"caption": "a women in black dress is talking while a man in white t-shirt is writing", "video_id": "video11479", "sen_id": 246450}, {"caption": "a woman describes a computer class and what subjects the class covers", "video_id": "video11479", "sen_id": 246451}, {"caption": "a couple of young students discuss the education they are getting in software design", "video_id": "video11479", "sen_id": 246452}, {"caption": "a woman is explaining what s going on in a technology class", "video_id": "video11479", "sen_id": 246453}, {"caption": "a teacher and her student talking about new technology in the classroom", "video_id": "video11479", "sen_id": 246454}, {"caption": "students gathered in a class room to listen the class of teacher", "video_id": "video11479", "sen_id": 246455}, {"caption": "professor tells about software design these two lectures cover: 1 models of planning software tools to debug software approaches to testing", "video_id": "video11479", "sen_id": 246456}, {"caption": "a woman describes the information available in computer classes at a university", "video_id": "video11479", "sen_id": 246457}, {"caption": "a woman is describing what students are doing in a classroom", "video_id": "video11479", "sen_id": 246458}, {"caption": "teacher explaining students how to be more successful in their profession", "video_id": "video11479", "sen_id": 246459}, {"caption": "a woman working on planting several house plants", "video_id": "video12710", "sen_id": 246460}, {"caption": "a woman talks about how to prepare for a formal dinner party while standing behind several potted plants", "video_id": "video12710", "sen_id": 246461}, {"caption": "a woman with a red shirt talking about plants", "video_id": "video12710", "sen_id": 246462}, {"caption": "a woman is standing in a kitchen with flowers on the counter", "video_id": "video12710", "sen_id": 246463}, {"caption": "a woman in a kitchen talking about home issues", "video_id": "video12710", "sen_id": 246464}, {"caption": "a woman in a red shirt about proper table linens and general hostess etiquette", "video_id": "video12710", "sen_id": 246465}, {"caption": "a person explaining a concept in a show", "video_id": "video12710", "sen_id": 246466}, {"caption": "a lady red color dressed talking in the kitchen", "video_id": "video12710", "sen_id": 246467}, {"caption": "a lady with a tv show", "video_id": "video12710", "sen_id": 246468}, {"caption": "a woman in a kitchen talks about what she will go over next time on her tv show", "video_id": "video12710", "sen_id": 246469}, {"caption": "a mature women is planting a tree inside the house", "video_id": "video12710", "sen_id": 246470}, {"caption": "in the kitchen a woman in red shirt talking some tips", "video_id": "video12710", "sen_id": 246471}, {"caption": "a woman in a kitchen wearing a red shirt talking about dinner etiquette", "video_id": "video12710", "sen_id": 246472}, {"caption": "a woman is standing in the kitchen advertising potted plants that is from better homes", "video_id": "video12710", "sen_id": 246473}, {"caption": "a woman talks about etiquette while in a kitchen", "video_id": "video12710", "sen_id": 246474}, {"caption": "there is a red dress women talking about decoration from the studio", "video_id": "video12710", "sen_id": 246475}, {"caption": "a woman is describing an upcoming program for better homes and plantations", "video_id": "video12710", "sen_id": 246476}, {"caption": "some advice on being the belle of the ball via advice on having proper etiquette for formal dinner parties", "video_id": "video12710", "sen_id": 246477}, {"caption": "a woman wearing a red shirt talks behind a counter that has potted purple and yellow flowers centered on it", "video_id": "video12710", "sen_id": 246478}, {"caption": "a woman in a red shirt is talking", "video_id": "video12710", "sen_id": 246479}, {"caption": "a woman in a patterned dress is delivering news", "video_id": "video12493", "sen_id": 246480}, {"caption": "a woman in a white dress is talking about baby koala care", "video_id": "video12493", "sen_id": 246481}, {"caption": "a woman talks about a wildlife hospital in australia and how an animal got to hug its mom during an operation", "video_id": "video12493", "sen_id": 246482}, {"caption": "a female news reporter does a story about a woman who really loves animals", "video_id": "video12493", "sen_id": 246483}, {"caption": "a woman wearing a patterned dress is giving news on a koala", "video_id": "video12493", "sen_id": 246484}, {"caption": "a lady on a news show in front of an image of a lady hugging a kid then a baby koala hugs it's mom", "video_id": "video12493", "sen_id": 246485}, {"caption": "there is a women talking from the studio", "video_id": "video12493", "sen_id": 246486}, {"caption": "a woman reports on a news story from a zoo in which a baby koala was allowed to cling to her mother as the mother underwent surgery", "video_id": "video12493", "sen_id": 246487}, {"caption": "a woman is talking in the program of a tv", "video_id": "video12493", "sen_id": 246488}, {"caption": "a woman is giving speech about a mother and child and their love", "video_id": "video12493", "sen_id": 246489}, {"caption": "a news reader is talking about the koala who is going to undergo surgery in the hosital and the baby koala is hugging her mother which is quite pathetic condition", "video_id": "video12493", "sen_id": 246490}, {"caption": "a woman is talking on tv in a news channel", "video_id": "video12493", "sen_id": 246491}, {"caption": "in a tv show news beat nature for tender loving koala (a small australian bear like animal) care is being explained by the v", "video_id": "video12493", "sen_id": 246492}, {"caption": "a pretty female reporter does a story about holding on to your mother", "video_id": "video12493", "sen_id": 246493}, {"caption": "a person in a lace dress stands and speaks while a display of picture of people hugging in background", "video_id": "video12493", "sen_id": 246494}, {"caption": "sexy blonde in white dress talking to the camera", "video_id": "video12493", "sen_id": 246495}, {"caption": "on the post of a loving mother and children the anchor is explaning the truth of love", "video_id": "video12493", "sen_id": 246496}, {"caption": "australian zoo tender loving koala care one women talking", "video_id": "video12493", "sen_id": 246497}, {"caption": "a young female reporter discusses the emotions that surround medical procedures", "video_id": "video12493", "sen_id": 246498}, {"caption": "a female reporter wearing a white and black dress gives her story about a baby koala and its mother", "video_id": "video12493", "sen_id": 246499}, {"caption": "a replay of a sequence during a table tennis match is shown with commentary", "video_id": "video10842", "sen_id": 246500}, {"caption": "a ping pong replay showing a man in a blue shirt play against a man in a red shirt", "video_id": "video10842", "sen_id": 246501}, {"caption": "two people playing each other in a game of ping pong", "video_id": "video10842", "sen_id": 246502}, {"caption": "people watching table tennis tournament in the indoor stadium", "video_id": "video10842", "sen_id": 246503}, {"caption": "two people are playing ping pong or table tennis and volleying the ball back and forth", "video_id": "video10842", "sen_id": 246504}, {"caption": "two men are playing a table tennis game", "video_id": "video10842", "sen_id": 246505}, {"caption": "a table tennis tournament match between two males being reported live by a commentator broadcast by the media", "video_id": "video10842", "sen_id": 246506}, {"caption": "ping pong players in red and blue tshirt playing against each other in a match", "video_id": "video10842", "sen_id": 246507}, {"caption": "two men in black and red dress playing table tennis seriously", "video_id": "video10842", "sen_id": 246508}, {"caption": "a commentator marvels at two players engaged in a game of table paddle tennis before an audience", "video_id": "video10842", "sen_id": 246509}, {"caption": "two hopeful players trying to get one up on their opponent", "video_id": "video10842", "sen_id": 246510}, {"caption": "a ping pong match between two asian in a sizable arena that has a panel of judges and a referee", "video_id": "video10842", "sen_id": 246511}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video10842", "sen_id": 246512}, {"caption": "the table tennis game is played by the two talented youngster", "video_id": "video10842", "sen_id": 246513}, {"caption": "two men are playing professional ping pong in front of a small crowd", "video_id": "video10842", "sen_id": 246514}, {"caption": "a men s single table tennis match is played in the stadium", "video_id": "video10842", "sen_id": 246515}, {"caption": "two men are playing a game of table tennis", "video_id": "video10842", "sen_id": 246516}, {"caption": "two players playing table tennis very interesting to watch", "video_id": "video10842", "sen_id": 246517}, {"caption": "a red and black colour dress player playing game table tennis inside a stadium audience watching clapping hands displaying on screen", "video_id": "video10842", "sen_id": 246518}, {"caption": "two players are playing tennis with red and grey colour dress", "video_id": "video10842", "sen_id": 246519}, {"caption": "a lady plays with a baby doll that is lying on the floor in front of her", "video_id": "video12659", "sen_id": 246520}, {"caption": "a woman does instructional yoga on a doll simulating a baby", "video_id": "video12659", "sen_id": 246521}, {"caption": "a person playing with the arms of a baby doll", "video_id": "video12659", "sen_id": 246522}, {"caption": "a woman is demonstrating a motion exercise for baby she manipulates the arms up down and side to side", "video_id": "video12659", "sen_id": 246523}, {"caption": "a woman is holding hands of a baby toy and is playing", "video_id": "video12659", "sen_id": 246524}, {"caption": "a woman playing a cute game with a doll of a baby with its hands", "video_id": "video12659", "sen_id": 246525}, {"caption": "a woman showing how to play with a baby", "video_id": "video12659", "sen_id": 246526}, {"caption": "a fitness instructor is doing yoga with a baby doll", "video_id": "video12659", "sen_id": 246527}, {"caption": "mom with her baby is showing how to workout the baby", "video_id": "video12659", "sen_id": 246528}, {"caption": "a women plays with a bay sleeping in bed", "video_id": "video12659", "sen_id": 246529}, {"caption": "a women is moving a babies arms while sitting on a yoga mat", "video_id": "video12659", "sen_id": 246530}, {"caption": "a woman is demonstrating stretching exercises on a baby-sized doll while she is sitting on a pink mat on the clean floor of a yoga studio with three windows", "video_id": "video12659", "sen_id": 246531}, {"caption": "a woman sitting on a yoga mat plays with a baby doll", "video_id": "video12659", "sen_id": 246532}, {"caption": "a woman is abusing a small baby doll", "video_id": "video12659", "sen_id": 246533}, {"caption": "there is a woman playing with a doll", "video_id": "video12659", "sen_id": 246534}, {"caption": "the lady in the black dress is showing how to do exercises with hands of a baby", "video_id": "video12659", "sen_id": 246535}, {"caption": "there is a woman playing with a toy on the floor", "video_id": "video12659", "sen_id": 246536}, {"caption": "a woman sitting on a floor demonstrates how to play with a baby using a doll", "video_id": "video12659", "sen_id": 246537}, {"caption": "a lady wearing black dress singing song while playing with a baby doll", "video_id": "video12659", "sen_id": 246538}, {"caption": "a person with dummy baby is showing how to give exercise to babies", "video_id": "video12659", "sen_id": 246539}, {"caption": "a man in a blue track uniform throws a shot put", "video_id": "video12759", "sen_id": 246540}, {"caption": "a young man in blue clothes throws the shot put in a competition", "video_id": "video12759", "sen_id": 246541}, {"caption": "various guys are playing shot put out at a park in front of a crowd", "video_id": "video12759", "sen_id": 246542}, {"caption": "a young man dressed in blue throws the shot put", "video_id": "video12759", "sen_id": 246543}, {"caption": "a man with blue banyan is throwing the shot put ball in an event", "video_id": "video12759", "sen_id": 246544}, {"caption": "a man explain the ball and how is play the ground", "video_id": "video12759", "sen_id": 246545}, {"caption": "one player is ready to throw the ball", "video_id": "video12759", "sen_id": 246546}, {"caption": "the athlete prepares to hurl the shot put ball at the track and field meet", "video_id": "video12759", "sen_id": 246547}, {"caption": "a kid in a blue jump suit throws a ball far away", "video_id": "video12759", "sen_id": 246548}, {"caption": "blue colour dress wearing throwing shotput on ground", "video_id": "video12759", "sen_id": 246549}, {"caption": "athlete showing throwing skill in front of large crowd on field", "video_id": "video12759", "sen_id": 246550}, {"caption": "the athelets are ready to throw the discuss throw in the ground", "video_id": "video12759", "sen_id": 246551}, {"caption": "a teen athlete in a blue jump suit prepares to complete his throwing event", "video_id": "video12759", "sen_id": 246552}, {"caption": "the players are practicing in the ground and people are eagerly watching the scene", "video_id": "video12759", "sen_id": 246553}, {"caption": "guy in blue jersey showing his skill of throwing on field to the crowd", "video_id": "video12759", "sen_id": 246554}, {"caption": "a guy in blue dress holding a iron weight and throwing it away in a shot put game", "video_id": "video12759", "sen_id": 246555}, {"caption": "a man in a blue uniform throws a shot put as far as he can", "video_id": "video12759", "sen_id": 246556}, {"caption": "a group of people watching a guy on the pitchers mound throw a ball", "video_id": "video12759", "sen_id": 246557}, {"caption": "a track and field team is at a championship meet", "video_id": "video12759", "sen_id": 246558}, {"caption": "live sporting event of weight throwing with friends and families attending", "video_id": "video12759", "sen_id": 246559}, {"caption": "a woman walks over to a man and shows her id card and then he lets her through the doorway", "video_id": "video10725", "sen_id": 246560}, {"caption": "there is a man walking through a dark hallway and approaches a door shows his hand and the bouncer lets him through the ropes", "video_id": "video10725", "sen_id": 246561}, {"caption": "a blond woman in a dark blue hoodie approaches a man in dark clothing in a blue neon lit hallway", "video_id": "video10725", "sen_id": 246562}, {"caption": "a music video with a woman walking to a man", "video_id": "video10725", "sen_id": 246563}, {"caption": "a woman shows a wad of money to a man who then lets her in a door", "video_id": "video10725", "sen_id": 246564}, {"caption": "the introduction to the backstreet boys video is shown", "video_id": "video10725", "sen_id": 246565}, {"caption": "when a woman is confronted by a man in a hallway she raises her arm and presents something that provokes the man to let her pass", "video_id": "video10725", "sen_id": 246566}, {"caption": "a woman gains access to a room in a backstreet boys music video", "video_id": "video10725", "sen_id": 246567}, {"caption": "a man and women in dark area and women raises her hand", "video_id": "video10725", "sen_id": 246568}, {"caption": "a woman is approaching a man in a lift with sensual intents", "video_id": "video10725", "sen_id": 246569}, {"caption": "a man and woman walk towards each other as if in a face off she holds something up and then the man lets her pass", "video_id": "video10725", "sen_id": 246570}, {"caption": "the woman walks down the dark hallway toward the man", "video_id": "video10725", "sen_id": 246571}, {"caption": "a woman is showing something to a man and he is allowing her to go pass the door", "video_id": "video10725", "sen_id": 246572}, {"caption": "woman approaches a man and he opens the door for her", "video_id": "video10725", "sen_id": 246573}, {"caption": "segment taken from an ancient backstreet boys videoclip", "video_id": "video10725", "sen_id": 246574}, {"caption": "a lady walks down a dark hallway towards a man", "video_id": "video10725", "sen_id": 246575}, {"caption": "a lady walks toward the entrance of the door and shows the man something in her hand and the man allows her to enter in", "video_id": "video10725", "sen_id": 246576}, {"caption": "a music video of the backstreet boys song shane of my heart", "video_id": "video10725", "sen_id": 246577}, {"caption": "a girl giving a card to somebody to activate password of a door", "video_id": "video10725", "sen_id": 246578}, {"caption": "a person is talking towards a man in a hallway", "video_id": "video10725", "sen_id": 246579}, {"caption": "a man pulls on the hair of a woman and then sits in a car with other men", "video_id": "video12729", "sen_id": 246580}, {"caption": "comedy scenes containing several different cuts and individuals", "video_id": "video12729", "sen_id": 246581}, {"caption": "a man sings while something weird happens in different clips then starts talking in the last clips", "video_id": "video12729", "sen_id": 246582}, {"caption": "a group of people acting out funny scenes", "video_id": "video12729", "sen_id": 246583}, {"caption": "the eh bee family shows off some of their popular vine videos", "video_id": "video12729", "sen_id": 246584}, {"caption": "a man wearing a black tshirt singing to family members in the house", "video_id": "video12729", "sen_id": 246585}, {"caption": "a man lip syncs to a song before he pulls a girl's hair", "video_id": "video12729", "sen_id": 246586}, {"caption": "humorous imagesof people singing and play acting alongwith music followed by a man and girl opening a closet door to reveal a tied up man", "video_id": "video12729", "sen_id": 246587}, {"caption": "first a man is singing with a woman then driving in a car and last talking to a little girl", "video_id": "video12729", "sen_id": 246588}, {"caption": "a man showing how to make popular vine videos", "video_id": "video12729", "sen_id": 246589}, {"caption": "there is a woman with black hair crying while playing with her boyfriend", "video_id": "video12729", "sen_id": 246590}, {"caption": "one man singing about a beautiful and sexy girl", "video_id": "video12729", "sen_id": 246591}, {"caption": "a man sings a song with freinds and family for entertainment", "video_id": "video12729", "sen_id": 246592}, {"caption": "how to make a popular vine video including a comedic clip of baby let your hair down", "video_id": "video12729", "sen_id": 246593}, {"caption": "a parody of husband and wife with lip singing a song and three male friends also singing a song", "video_id": "video12729", "sen_id": 246594}, {"caption": "men is talking and discussing something ans subscribe", "video_id": "video12729", "sen_id": 246595}, {"caption": "a guy singing a song about a girl in his home", "video_id": "video12729", "sen_id": 246596}, {"caption": "a slide show about the best vines is talking about how to make a popular vine and the girl says that they need to abduct a popular viner and she opens a door where a man is tied up", "video_id": "video12729", "sen_id": 246597}, {"caption": "a series of vines starring a middle aged man", "video_id": "video12729", "sen_id": 246598}, {"caption": "some people are sitting in a hall way", "video_id": "video12729", "sen_id": 246599}, {"caption": "television screen showing the home screen for a video game", "video_id": "video12823", "sen_id": 246600}, {"caption": "a man talks about changing a bio to a naughty word to get reported on purpose", "video_id": "video12823", "sen_id": 246601}, {"caption": "a promotion for a science-fiction action figure with yellow hair and striped blue outfit is followed by a blurry white blob on a vivid blue background", "video_id": "video12823", "sen_id": 246602}, {"caption": "a person is playing on the xbox 360 they are giving instructions", "video_id": "video12823", "sen_id": 246603}, {"caption": "a kid talking about getting banned in a video game", "video_id": "video12823", "sen_id": 246604}, {"caption": "a guy talks about his video game console that is shown on the tv", "video_id": "video12823", "sen_id": 246605}, {"caption": "there is a yellow hair man standing on the floor", "video_id": "video12823", "sen_id": 246606}, {"caption": "some light showing at a distance in the video", "video_id": "video12823", "sen_id": 246607}, {"caption": "animation in the laptop where the background is blue in color", "video_id": "video12823", "sen_id": 246608}, {"caption": "a man talking with a camera to a tv talking about his xbox", "video_id": "video12823", "sen_id": 246609}, {"caption": "a man is speaking with an unclear picture displayed", "video_id": "video12823", "sen_id": 246610}, {"caption": "some scences is shown in the tv then it switches off", "video_id": "video12823", "sen_id": 246611}, {"caption": "a blue color screen and a dark light is placed on it", "video_id": "video12823", "sen_id": 246612}, {"caption": "a young boy talks about saying bad words", "video_id": "video12823", "sen_id": 246613}, {"caption": "a blurry image is being recorded on camera", "video_id": "video12823", "sen_id": 246614}, {"caption": "a men is looking and doing some work on monitor", "video_id": "video12823", "sen_id": 246615}, {"caption": "one man talks about one lights it occur", "video_id": "video12823", "sen_id": 246616}, {"caption": "a man is explaining something from his computer", "video_id": "video12823", "sen_id": 246617}, {"caption": "some rocket launch is going up in the air and they are watching the speed of the roket whether it is going in a correct posision or not", "video_id": "video12823", "sen_id": 246618}, {"caption": "a person is browsing around on their xbox", "video_id": "video12823", "sen_id": 246619}, {"caption": "a person is introducing the ingredients one by one to make a chili crab dish", "video_id": "video10402", "sen_id": 246620}, {"caption": "various sauces and spices are shown on a table with crab", "video_id": "video10402", "sen_id": 246621}, {"caption": "a cooking video of chili crabs with a variety of sauces", "video_id": "video10402", "sen_id": 246622}, {"caption": "a chef talks about the ingredients he is using to put together a crab recipe", "video_id": "video10402", "sen_id": 246623}, {"caption": "a man is talking about food in a foreign language", "video_id": "video10402", "sen_id": 246624}, {"caption": "a man is talking about preparing a recipe with crabs and other ingredients which are kept in a glass bowls", "video_id": "video10402", "sen_id": 246625}, {"caption": "an array of sauces and a bowl of crab are displayed on wooden table", "video_id": "video10402", "sen_id": 246626}, {"caption": "seven bowls of spices are on a wooden table with a larger bowl that has meat in it", "video_id": "video10402", "sen_id": 246627}, {"caption": "there are many different ingredients laying on a table", "video_id": "video10402", "sen_id": 246628}, {"caption": "a man describes different ingredients needed to cook a crab dish the ingredients are placed on a wooden table", "video_id": "video10402", "sen_id": 246629}, {"caption": "a person is explaining all the ingredients needed to make a crab dish", "video_id": "video10402", "sen_id": 246630}, {"caption": "the most common way is to grill the whole horseshoe crab", "video_id": "video10402", "sen_id": 246631}, {"caption": "making a recipe adding prawns and sweet chilli pepper", "video_id": "video10402", "sen_id": 246632}, {"caption": "a man discusses the chlli crab he has cooked and the ingredients", "video_id": "video10402", "sen_id": 246633}, {"caption": "someone is making a special dish with crab adding chilies ginger etc", "video_id": "video10402", "sen_id": 246634}, {"caption": "lots of food is put in a plate placed in a table", "video_id": "video10402", "sen_id": 246635}, {"caption": "a man name ingredients to use that are in small clear glass bowls to use in a crab dish", "video_id": "video10402", "sen_id": 246636}, {"caption": "a man explains about a preparation of some dish to media", "video_id": "video10402", "sen_id": 246637}, {"caption": "showing the ingredients of chilly crab with crabs on a glass bowl red pepper sweet chilly sauce", "video_id": "video10402", "sen_id": 246638}, {"caption": "some stuff in cups is on a wood table", "video_id": "video10402", "sen_id": 246639}, {"caption": "men are playing with a hand held device to get under another car with their tool", "video_id": "video12220", "sen_id": 246640}, {"caption": "a man in a bright green hat is driving a car", "video_id": "video12220", "sen_id": 246641}, {"caption": "two men on a grassy hill are controlling a device via laptop to chase another man driving a car in the distance", "video_id": "video12220", "sen_id": 246642}, {"caption": "two men in an open field with a laptop and a man driving a vehicle", "video_id": "video12220", "sen_id": 246643}, {"caption": "two guys are trying to play a prank on another who is driving down the road", "video_id": "video12220", "sen_id": 246644}, {"caption": "a man drives a car while his friends chase him with a remote control device", "video_id": "video12220", "sen_id": 246645}, {"caption": "two guys on a hill contolling a remote control device that is following a man in a car the man in the car is talking about not knowing what they are plotting", "video_id": "video12220", "sen_id": 246646}, {"caption": "two men sitting and watching another man in an orange car two men watching are trying to drive an object under the orange car to play a prank on the man driving the car", "video_id": "video12220", "sen_id": 246647}, {"caption": "two men are attempting to drive sticks of dynamite into a car driven by a man in a neon green hat", "video_id": "video12220", "sen_id": 246648}, {"caption": "a old man in black color dress wearing cloth controlling driving car and two person sitting upon car displaying on screen", "video_id": "video12220", "sen_id": 246649}, {"caption": "a man drives as he is followed by a spy device", "video_id": "video12220", "sen_id": 246650}, {"caption": "a man is driving a car while two men watch from a hill above", "video_id": "video12220", "sen_id": 246651}, {"caption": "a man driving acar that is being by two other men in the field", "video_id": "video12220", "sen_id": 246652}, {"caption": "two people watching a car and using remote functions while other one person driving the car", "video_id": "video12220", "sen_id": 246653}, {"caption": "men watch a little car another man is driving", "video_id": "video12220", "sen_id": 246654}, {"caption": "a man in a green hat is driving a car", "video_id": "video12220", "sen_id": 246655}, {"caption": "two persons are speaking each other while driving", "video_id": "video12220", "sen_id": 246656}, {"caption": "two man wearing black color dressed talking", "video_id": "video12220", "sen_id": 246657}, {"caption": "a man driving a car faces off against two others manning a drone", "video_id": "video12220", "sen_id": 246658}, {"caption": "two persons sitting in one area and remote controlling the car which is going far away from the place where they sit", "video_id": "video12220", "sen_id": 246659}, {"caption": "a man and a woman look at each other and then begin to kiss", "video_id": "video10349", "sen_id": 246660}, {"caption": "a blond woman watches as a man takes off his shirt", "video_id": "video10349", "sen_id": 246661}, {"caption": "a shirtless man and a woman making out", "video_id": "video10349", "sen_id": 246662}, {"caption": "a blonde woman removes a man's shirt and starts to kiss him", "video_id": "video10349", "sen_id": 246663}, {"caption": "a man and blonde woman embrace before she removes the mans shirt", "video_id": "video10349", "sen_id": 246664}, {"caption": "a couple holds each other while the woman slides the man's shirt off", "video_id": "video10349", "sen_id": 246665}, {"caption": "a man and woman are slowing dancing to music", "video_id": "video10349", "sen_id": 246666}, {"caption": "a blonde woman is taking off a man's shirt and kissing him while music plays", "video_id": "video10349", "sen_id": 246667}, {"caption": "a love scene between a man and a woman with a love song playing in the background", "video_id": "video10349", "sen_id": 246668}, {"caption": "a dark haired man and blonde woman embrace as the woman removes the mans shirt", "video_id": "video10349", "sen_id": 246669}, {"caption": "there is a woman in short hair having sex with a man", "video_id": "video10349", "sen_id": 246670}, {"caption": "a blonde woman in pink taking the shirt off of a man with dark hair while music plays in the background", "video_id": "video10349", "sen_id": 246671}, {"caption": "a man and a woman are looking into each other s eyes lovingly the woman starts to take of the man s shirt", "video_id": "video10349", "sen_id": 246672}, {"caption": "blonde woman is having good time with her husband", "video_id": "video10349", "sen_id": 246673}, {"caption": "a couple of people are talking in a room", "video_id": "video10349", "sen_id": 246674}, {"caption": "man and woman in front of each other man is undressing romantic music playing in the background", "video_id": "video10349", "sen_id": 246675}, {"caption": "a man and a woman are prepared to be intimate together", "video_id": "video10349", "sen_id": 246676}, {"caption": "women removing shirt of a guy and kissing him", "video_id": "video10349", "sen_id": 246677}, {"caption": "a woman is removing a man shirt and kissing him", "video_id": "video10349", "sen_id": 246678}, {"caption": "a man and a woman are kissing each other", "video_id": "video10349", "sen_id": 246679}, {"caption": "a young girl describing the material of a skirt that a model is wearing in the side by side video next to her", "video_id": "video12917", "sen_id": 246680}, {"caption": "a female video host and a model show and explain her clothes design and why she used the black and white material", "video_id": "video12917", "sen_id": 246681}, {"caption": "a girl tries on an outfit", "video_id": "video12917", "sen_id": 246682}, {"caption": "a young girl talks about a clothing outfit that she helped put together", "video_id": "video12917", "sen_id": 246683}, {"caption": "there is a girl discussing a skirt as well as another girl within the frame modeling the skirt", "video_id": "video12917", "sen_id": 246684}, {"caption": "a women is going over different fashion things and her opinion", "video_id": "video12917", "sen_id": 246685}, {"caption": "a cute girl is showing a dress and in the other video she appears wearing that dress", "video_id": "video12917", "sen_id": 246686}, {"caption": "a lady is explaining the material of a black and white skirt", "video_id": "video12917", "sen_id": 246687}, {"caption": "a woman shows and describes checkered skirt with thick material", "video_id": "video12917", "sen_id": 246688}, {"caption": "a girl in black color dress wearing cloth standing showing dress and other girl speaking dress showing design displaying on screen", "video_id": "video12917", "sen_id": 246689}, {"caption": "a girl is showing some clothes that she bought", "video_id": "video12917", "sen_id": 246690}, {"caption": "a young girl is talking and in another video she appears with new fashion", "video_id": "video12917", "sen_id": 246691}, {"caption": "a girl explains about her skirt and shows how it looks once wear", "video_id": "video12917", "sen_id": 246692}, {"caption": "a young girl with light brown hair in a bun describes a dress to the camera", "video_id": "video12917", "sen_id": 246693}, {"caption": "a woman is showing some clothes she owns", "video_id": "video12917", "sen_id": 246694}, {"caption": "a girl is wearing more dress and showing ir", "video_id": "video12917", "sen_id": 246695}, {"caption": "the lady in a checked skirt and a black shirt twlling you about the clothes", "video_id": "video12917", "sen_id": 246696}, {"caption": "a woman wearing colored cloth were in photo of radha and krishna is printed telling about the quality of the cloth piece she have", "video_id": "video12917", "sen_id": 246697}, {"caption": "a woman is describing the fabric of a skirt she created the fabric is substantial and feels like cotton", "video_id": "video12917", "sen_id": 246698}, {"caption": "a woman is standing around showing off her clothes", "video_id": "video12917", "sen_id": 246699}, {"caption": "a long fire truck moves towards a large fire in a warehouse", "video_id": "video12800", "sen_id": 246700}, {"caption": "a firetruck races to a building on fire firemen climb up the ladder and spray the building with hoses", "video_id": "video12800", "sen_id": 246701}, {"caption": "blank video", "video_id": "video12800", "sen_id": 246702}, {"caption": "an extra long fire truck moves quickly towards a warehouse fire", "video_id": "video12800", "sen_id": 246703}, {"caption": "a fire truck and a boat that join forces to spray water on a burning building", "video_id": "video12800", "sen_id": 246704}, {"caption": "there is a vehicle moving nearby a building with fire", "video_id": "video12800", "sen_id": 246705}, {"caption": "an older movie where a building is on fire and firemen are rushing to extinguish the fire", "video_id": "video12800", "sen_id": 246706}, {"caption": "three fire engines were going to shut down the fire", "video_id": "video12800", "sen_id": 246707}, {"caption": "a group of firefighter both on land and from sea shown directing water hoses at a building besides the actual place of fire", "video_id": "video12800", "sen_id": 246708}, {"caption": "a movie trailler is being shown and in the movie fire was broken out near the port and a very big fire engine is arrived", "video_id": "video12800", "sen_id": 246709}, {"caption": "opening credits with a fire truck going to a burning building while a boat sprays it down as well", "video_id": "video12800", "sen_id": 246710}, {"caption": "a building was in fire and the fire rescue van and boat sprays water on the building", "video_id": "video12800", "sen_id": 246711}, {"caption": "a movie scene is playing in the screen", "video_id": "video12800", "sen_id": 246712}, {"caption": "red vehicle which is fire man vehicle they try to reduce the fire by pouring water on it", "video_id": "video12800", "sen_id": 246713}, {"caption": "a group of firefighters put out a widespread fire in a city", "video_id": "video12800", "sen_id": 246714}, {"caption": "the video shows people trying to put out fire burning a building", "video_id": "video12800", "sen_id": 246715}, {"caption": "the introduction of a show with sam j jones showing the firefighters surrounding a burning building with fire fight equipment", "video_id": "video12800", "sen_id": 246716}, {"caption": "fire trucks and boats going to a building fire along the water", "video_id": "video12800", "sen_id": 246717}, {"caption": "an old building is burning while firefighters try to put it out", "video_id": "video12800", "sen_id": 246718}, {"caption": "some boats are spraying water at a fire", "video_id": "video12800", "sen_id": 246719}, {"caption": "a girl wearing a white hat plays with a stove", "video_id": "video10550", "sen_id": 246720}, {"caption": "lady describes what sound her oven makes when it turns on", "video_id": "video10550", "sen_id": 246721}, {"caption": "a girl wearing glasses talks inside of a kitchen while making noises with her mouth", "video_id": "video10550", "sen_id": 246722}, {"caption": "a female wearing glasses that has brown hair explains about lighting the pilot light on a white stove", "video_id": "video10550", "sen_id": 246723}, {"caption": "a woman in red describing what it's like to like a pilot light on a gas stove", "video_id": "video10550", "sen_id": 246724}, {"caption": "a woman in a red shirt and a white knit hat talks in her kitchen with white appliances", "video_id": "video10550", "sen_id": 246725}, {"caption": "a lady is talking with red color dress", "video_id": "video10550", "sen_id": 246726}, {"caption": "a cute young girl in the kitchen having fun", "video_id": "video10550", "sen_id": 246727}, {"caption": "a girl telling about something and giving the sound", "video_id": "video10550", "sen_id": 246728}, {"caption": "a lady getting ready to prepare something on the oven", "video_id": "video10550", "sen_id": 246729}, {"caption": "there is a tshirt woman talking from the kitchen", "video_id": "video10550", "sen_id": 246730}, {"caption": "a lady wearing red color dress talking infront of camera", "video_id": "video10550", "sen_id": 246731}, {"caption": "lady talks about cooking she has 4 burner stove she wear specs", "video_id": "video10550", "sen_id": 246732}, {"caption": "a woman wearing spects is switch on the burner and talking something", "video_id": "video10550", "sen_id": 246733}, {"caption": "sexy blonde in glass with pink tshirt talking to the camera", "video_id": "video10550", "sen_id": 246734}, {"caption": "there is a women cooking food in untensil", "video_id": "video10550", "sen_id": 246735}, {"caption": "a young woman in a red shirt explains the noises her stove makes", "video_id": "video10550", "sen_id": 246736}, {"caption": "a person wearing a red shirt talks and fiddle with a stove", "video_id": "video10550", "sen_id": 246737}, {"caption": "a women demonstrating the sound of her system", "video_id": "video10550", "sen_id": 246738}, {"caption": "a woman in a kitchen is talking to herself", "video_id": "video10550", "sen_id": 246739}, {"caption": "a woman standing in a kitchen in front of cupboards talking", "video_id": "video11252", "sen_id": 246740}, {"caption": "a woman with short black hair is teaching how to make a vegetable food", "video_id": "video11252", "sen_id": 246741}, {"caption": "there is a woman talking about some dishes", "video_id": "video11252", "sen_id": 246742}, {"caption": "a lady is standing in the kitchen and speaking about a topic", "video_id": "video11252", "sen_id": 246743}, {"caption": "a woman is in the kitchen talking about how to prepare", "video_id": "video11252", "sen_id": 246744}, {"caption": "a young woman prepares to explain how to cook a meal", "video_id": "video11252", "sen_id": 246745}, {"caption": "a woman wearing black chdidhar standing in kitchen talks about how to prepare a dish", "video_id": "video11252", "sen_id": 246746}, {"caption": "a lady is going to demonstrate the preparation of vegetable kichidi which is a healthy and tasty variation for plain kichidi", "video_id": "video11252", "sen_id": 246747}, {"caption": "an indian chef describes how to prepare a vegetable recipe", "video_id": "video11252", "sen_id": 246748}, {"caption": "a woman talking about how to prepare a vegetable dish", "video_id": "video11252", "sen_id": 246749}, {"caption": "a woman is telling the viewer how she is going to show how to make a vegetable dish", "video_id": "video11252", "sen_id": 246750}, {"caption": "a woman is in a kitchen getting ready to prepare a recipe", "video_id": "video11252", "sen_id": 246751}, {"caption": "a person in a pattern blouse stands and talks in a kitchen", "video_id": "video11252", "sen_id": 246752}, {"caption": "a woman explaining how to perform a task in two languages", "video_id": "video11252", "sen_id": 246753}, {"caption": "a woman in a kitchen is talking about something", "video_id": "video11252", "sen_id": 246754}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video11252", "sen_id": 246755}, {"caption": "a woman is giving information about a recipe she will be cooking", "video_id": "video11252", "sen_id": 246756}, {"caption": "a woman in a patterned blouse stands in the kitchen talking", "video_id": "video11252", "sen_id": 246757}, {"caption": "a girl in ash color dress wearing cloth inside kitchen explaning dish how to prepare displaying on screen", "video_id": "video11252", "sen_id": 246758}, {"caption": "a woman with a necklace is speaking to people", "video_id": "video11252", "sen_id": 246759}, {"caption": "an informative breastfeeding latching tutorial for new moms", "video_id": "video11953", "sen_id": 246760}, {"caption": "mothers bond with their infants as they touch breastfeed and cuddle with their babies in the peace and quiet of their bedrooms", "video_id": "video11953", "sen_id": 246761}, {"caption": "a woman is feeding milk to to the kid and sleeping", "video_id": "video11953", "sen_id": 246762}, {"caption": "mother giving breastfeed to child on bed in", "video_id": "video11953", "sen_id": 246763}, {"caption": "one women talking to child and giving breastfeeding", "video_id": "video11953", "sen_id": 246764}, {"caption": "a mother should breast feed her baby by this it is benifitial for both mother and baby to be healthy", "video_id": "video11953", "sen_id": 246765}, {"caption": "the lady was breast feeding her newborn baby", "video_id": "video11953", "sen_id": 246766}, {"caption": "a mother is feeding her baby and smiling", "video_id": "video11953", "sen_id": 246767}, {"caption": "a woman is describing how to breastfeed a newborn baby", "video_id": "video11953", "sen_id": 246768}, {"caption": "in the bed room the baby drinks milk from his mom then he lie down on the bed", "video_id": "video11953", "sen_id": 246769}, {"caption": "the technique of latching on during breastfeeding is introduced", "video_id": "video11953", "sen_id": 246770}, {"caption": "a woman on a bed is playing with a baby", "video_id": "video11953", "sen_id": 246771}, {"caption": "there is a women feeding her baby inside the room", "video_id": "video11953", "sen_id": 246772}, {"caption": "a mother holds a child while discussing how to get the baby to drink from her breast", "video_id": "video11953", "sen_id": 246773}, {"caption": "the vision is important for life so useful in saw any life articles baby is breeding milk it very careful", "video_id": "video11953", "sen_id": 246774}, {"caption": "a baby is feeding the milk from mother", "video_id": "video11953", "sen_id": 246775}, {"caption": "advertisement showing how mother s to breast feed their babies", "video_id": "video11953", "sen_id": 246776}, {"caption": " a mother has one arm under her baby as they lie together in bed a mother cradles her baby in her arm while sitting up", "video_id": "video11953", "sen_id": 246777}, {"caption": "this is how a mother should breast milk her child and makes it sleep", "video_id": "video11953", "sen_id": 246778}, {"caption": "mom breast feeding the young toddler in front of camera", "video_id": "video11953", "sen_id": 246779}, {"caption": "there is a car tire that is zoomed out from during the entire clip", "video_id": "video12120", "sen_id": 246780}, {"caption": "a gray sports car features black and red wheels and tires", "video_id": "video12120", "sen_id": 246781}, {"caption": "showing the exterior of a car showcasing a tire appears to be at an auto show or garage", "video_id": "video12120", "sen_id": 246782}, {"caption": "a dark gray super car with futuristic looking black rims featuring some red colored details with the brake disks visible", "video_id": "video12120", "sen_id": 246783}, {"caption": "showing off a sports car with nice rims and a very nice look", "video_id": "video12120", "sen_id": 246784}, {"caption": "a black tire with red accents is attached to a car resting on a green carpet", "video_id": "video12120", "sen_id": 246785}, {"caption": "a shiny and fancy car is shown in many angles and close-ups", "video_id": "video12120", "sen_id": 246786}, {"caption": "a lamborghini lp 750-4 is being shown at a car show", "video_id": "video12120", "sen_id": 246787}, {"caption": "a silver sports car is on display indoors with elaborate rims", "video_id": "video12120", "sen_id": 246788}, {"caption": "a person capturing a nice set of rims and tires on video", "video_id": "video12120", "sen_id": 246789}, {"caption": "it is a new car having strong and stylish tiers", "video_id": "video12120", "sen_id": 246790}, {"caption": "the tire and the front of a high end sport car is displayed", "video_id": "video12120", "sen_id": 246791}, {"caption": "a car tire is displaying in the screen", "video_id": "video12120", "sen_id": 246792}, {"caption": "an advertisement about a lr750-4 car or pzero tyres", "video_id": "video12120", "sen_id": 246793}, {"caption": "a car from the future is being filmed outside", "video_id": "video12120", "sen_id": 246794}, {"caption": "a silver sports car with black and red tires and rims is on display", "video_id": "video12120", "sen_id": 246795}, {"caption": "a clip of a luxury car it has nice wheels and rims the exterior is silver", "video_id": "video12120", "sen_id": 246796}, {"caption": "the camera pans from a close up of a car s driver side front tire and zooms out", "video_id": "video12120", "sen_id": 246797}, {"caption": "lp 750 4 is a car being shown close up and zoomed out to show the design of the wheel", "video_id": "video12120", "sen_id": 246798}, {"caption": "a car with weird wheels is being shown outside", "video_id": "video12120", "sen_id": 246799}, {"caption": "a group of people ride on the front of a large boat out on the water", "video_id": "video11597", "sen_id": 246800}, {"caption": "people are partying on a boat while rap music plays", "video_id": "video11597", "sen_id": 246801}, {"caption": "a large group of people are on a boat and waving their arms", "video_id": "video11597", "sen_id": 246802}, {"caption": "people in bathing suits stand in a line on a boat and dance in unison to hip-hop music while looking out at the ocean", "video_id": "video11597", "sen_id": 246803}, {"caption": "great dancing to hip music with a group of women and men on a large floating vessel", "video_id": "video11597", "sen_id": 246804}, {"caption": "some men and women in the ship are enjoying a song", "video_id": "video11597", "sen_id": 246805}, {"caption": "four girls are standing on board of a boat in the sea with swim suit another six person standing with them all are waving their hands", "video_id": "video11597", "sen_id": 246806}, {"caption": "biggie smalls is playing while people are dancing and fooling around on a boat", "video_id": "video11597", "sen_id": 246807}, {"caption": "people are enjoying in the boat the girl fell down in the ship", "video_id": "video11597", "sen_id": 246808}, {"caption": "a girls and boys inside ship in water waving hands singing ship moving in water displaying on screen", "video_id": "video11597", "sen_id": 246809}, {"caption": "bunch of people in bathing suit standing on the boat and waving to the sea", "video_id": "video11597", "sen_id": 246810}, {"caption": "more girls and boys are standing on a boat which on the water", "video_id": "video11597", "sen_id": 246811}, {"caption": "homemade music video of notorious b s song hypnotize filmed on a luxury boat", "video_id": "video11597", "sen_id": 246812}, {"caption": "a group of men and women waving their hands while travelling in a boat", "video_id": "video11597", "sen_id": 246813}, {"caption": "boys and girls inside ship standing and dancing singing displaying on screen", "video_id": "video11597", "sen_id": 246814}, {"caption": "some people are sailing out on the ocean", "video_id": "video11597", "sen_id": 246815}, {"caption": "the people stand on the big white boat in the water", "video_id": "video11597", "sen_id": 246816}, {"caption": "a group of people in swimsutis ride on a boat on the ocean", "video_id": "video11597", "sen_id": 246817}, {"caption": "teens dance and party on a boat in the ocean", "video_id": "video11597", "sen_id": 246818}, {"caption": "both women and men are wearing bikins and going on a ride ina boat with background music and enjoying the ride in a boat", "video_id": "video11597", "sen_id": 246819}, {"caption": "two sheep eat as a lama stares into space", "video_id": "video11851", "sen_id": 246820}, {"caption": "a llama with white fur and wearing a red noseband is standing near a fence", "video_id": "video11851", "sen_id": 246821}, {"caption": " white llama with red fabric around its snout stands quietly as it chews on its food", "video_id": "video11851", "sen_id": 246822}, {"caption": "in the zoo the white yak are watching the situatrion in very well", "video_id": "video11851", "sen_id": 246823}, {"caption": "llamas stand in a barnyard while a classical tune plays", "video_id": "video11851", "sen_id": 246824}, {"caption": "there are some animals on the field", "video_id": "video11851", "sen_id": 246825}, {"caption": "few australia horse white in colour standing in the farm", "video_id": "video11851", "sen_id": 246826}, {"caption": "an animal is standing in the carriage", "video_id": "video11851", "sen_id": 246827}, {"caption": "a white llama with a red muzzle is standing still as a piano plays in the background", "video_id": "video11851", "sen_id": 246828}, {"caption": "white alpacas in red halters are shown eating and standing around their pen in a rural setting", "video_id": "video11851", "sen_id": 246829}, {"caption": "an expansive farm where alpacas live", "video_id": "video11851", "sen_id": 246830}, {"caption": "a white alpaca is shown standing in an open area as piano music plays in the background", "video_id": "video11851", "sen_id": 246831}, {"caption": "there are two white llamas in an open grass field", "video_id": "video11851", "sen_id": 246832}, {"caption": "a lama is standing and moving its head around", "video_id": "video11851", "sen_id": 246833}, {"caption": "three goat in white color standing and eating the greass", "video_id": "video11851", "sen_id": 246834}, {"caption": "a illama stands quiet while a piano music plays in the background", "video_id": "video11851", "sen_id": 246835}, {"caption": "the two white llamas eat while the other white llamma looks on", "video_id": "video11851", "sen_id": 246836}, {"caption": "the white llama was standing near the fenced off tree in a big grassy meadow", "video_id": "video11851", "sen_id": 246837}, {"caption": "several fluffy white llamas stand around at the llama ranch", "video_id": "video11851", "sen_id": 246838}, {"caption": "a white animal with a harness is walking", "video_id": "video11851", "sen_id": 246839}, {"caption": "a person does a news report on the future of an investment", "video_id": "video12283", "sen_id": 246840}, {"caption": "people at the stock market are cheering", "video_id": "video12283", "sen_id": 246841}, {"caption": "group of men in suits celebrating on a stocks trading floor together", "video_id": "video12283", "sen_id": 246842}, {"caption": "a news reporter discusses the success of a major importer", "video_id": "video12283", "sen_id": 246843}, {"caption": "an alibaba investor applauds his own success while a man and woman discuss the situation", "video_id": "video12283", "sen_id": 246844}, {"caption": "a group of older gentlemen are clapping in celebration", "video_id": "video12283", "sen_id": 246845}, {"caption": "a crowd of investors cheer and clap as news reporters discuss the baba lockup expiration", "video_id": "video12283", "sen_id": 246846}, {"caption": "a group of people are clapping and cheering as they look up", "video_id": "video12283", "sen_id": 246847}, {"caption": "there are many people clapping at the announcement to the growth of the company alibaba", "video_id": "video12283", "sen_id": 246848}, {"caption": "a news outlet discusses the lockup of alibaba", "video_id": "video12283", "sen_id": 246849}, {"caption": "there is a crowd of people applauding and smiling at a convention", "video_id": "video12283", "sen_id": 246850}, {"caption": "people get together in greeting a man in black suit", "video_id": "video12283", "sen_id": 246851}, {"caption": "shots of the event on which early alibaba investor offers insights on baba lockup expiration", "video_id": "video12283", "sen_id": 246852}, {"caption": "a men are clapping its are telecasting in the cnbc channel", "video_id": "video12283", "sen_id": 246853}, {"caption": "several people in the stock market in background voice 2 interviewers and a man", "video_id": "video12283", "sen_id": 246854}, {"caption": "many peoples are wearing black coat and starts clapping her hands", "video_id": "video12283", "sen_id": 246855}, {"caption": "cnbc news and a lady and a man are talking about yahoo leaving china and an early alibaba investor", "video_id": "video12283", "sen_id": 246856}, {"caption": "a group of alibaba investors clapping in celebration", "video_id": "video12283", "sen_id": 246857}, {"caption": "analysts discussing yahoo and an alibab investor and their future plans", "video_id": "video12283", "sen_id": 246858}, {"caption": "alibaba is being featured on a news channel along with yahoo", "video_id": "video12283", "sen_id": 246859}, {"caption": "friends walk down a dirt road by a flowing river", "video_id": "video10645", "sen_id": 246860}, {"caption": "three men walk down a dusty road by a stream", "video_id": "video10645", "sen_id": 246861}, {"caption": "a clip of people having fun in a foreign country", "video_id": "video10645", "sen_id": 246862}, {"caption": "three young asian men walk through a small village in a jungle area", "video_id": "video10645", "sen_id": 246863}, {"caption": "a couple of men walking and laughing together next to a river", "video_id": "video10645", "sen_id": 246864}, {"caption": "there are several different people walking around on dirt streets and scenes of a river are also shown", "video_id": "video10645", "sen_id": 246865}, {"caption": "two men are walking down a dirt road he then walks into the waters", "video_id": "video10645", "sen_id": 246866}, {"caption": "two men are walking and enjoying along a river flowing", "video_id": "video10645", "sen_id": 246867}, {"caption": "people walk in park admiring nature and swimming", "video_id": "video10645", "sen_id": 246868}, {"caption": "a few people are walking next to a river", "video_id": "video10645", "sen_id": 246869}, {"caption": "four youngsters are walking and some of them are washing clothes in water", "video_id": "video10645", "sen_id": 246870}, {"caption": "several people walking down a dirt road to go swimming", "video_id": "video10645", "sen_id": 246871}, {"caption": "a few boys walking down a dirt road then men swimming in a lake", "video_id": "video10645", "sen_id": 246872}, {"caption": "young adults walking about having fun and chatting outdoors", "video_id": "video10645", "sen_id": 246873}, {"caption": "some indian people are walking around a park", "video_id": "video10645", "sen_id": 246874}, {"caption": "people walk down a dirt street while there are people in a river", "video_id": "video10645", "sen_id": 246875}, {"caption": "group of young people walking down a road rushing water one young man in water rinsing clothes", "video_id": "video10645", "sen_id": 246876}, {"caption": "there is a rushing river and a dirt walk way", "video_id": "video10645", "sen_id": 246877}, {"caption": "local people walk down a dirt street in a rural neighborhood as a young man swims in a flowing river nearby", "video_id": "video10645", "sen_id": 246878}, {"caption": "some people are wading around in the water", "video_id": "video10645", "sen_id": 246879}, {"caption": "a blond woman is applying eye makeup to her face", "video_id": "video11012", "sen_id": 246880}, {"caption": "a woman is describing applying makeup techniques while demonstrating on her own face", "video_id": "video11012", "sen_id": 246881}, {"caption": "a woman putting make up primer on her eye lids and then picking up eye shadow", "video_id": "video11012", "sen_id": 246882}, {"caption": "a woman is showing new make up products to use to make yourself look pretty", "video_id": "video11012", "sen_id": 246883}, {"caption": "a woman applies eye shadow looking into a handheld mirror", "video_id": "video11012", "sen_id": 246884}, {"caption": "a lady prepares her makeup in front of the camera", "video_id": "video11012", "sen_id": 246885}, {"caption": "a girl with big eyebrows preparing for the eye makeup", "video_id": "video11012", "sen_id": 246886}, {"caption": "a blonde women is demonstrating how to put on eye shadow with her fingers", "video_id": "video11012", "sen_id": 246887}, {"caption": "the girl is expaling about how to do the toughup for eyes along with some examples", "video_id": "video11012", "sen_id": 246888}, {"caption": "pretty blonde trying on makeup and showing the variety of shades", "video_id": "video11012", "sen_id": 246889}, {"caption": "a beautiful girl make up her face in front of the camera", "video_id": "video11012", "sen_id": 246890}, {"caption": "a girl is applying eye shadow and rubbing it with fingers and then applying eye liner with brush", "video_id": "video11012", "sen_id": 246891}, {"caption": "one beautiful and lovely women makeup in eyes", "video_id": "video11012", "sen_id": 246892}, {"caption": "a lady applying make-up above her right eye", "video_id": "video11012", "sen_id": 246893}, {"caption": "a woman is demonstrating how to apply eye makeup", "video_id": "video11012", "sen_id": 246894}, {"caption": "a girl applying some eye shadow on the above screen", "video_id": "video11012", "sen_id": 246895}, {"caption": "a women is doing makeup with cream for her face", "video_id": "video11012", "sen_id": 246896}, {"caption": "urban decay eyeshdow primer beautiful women makeup his eyes", "video_id": "video11012", "sen_id": 246897}, {"caption": "a close-up shot of young woman with white dyed hair and faint purple highlights applying makeup with her fingers over her right eyelid while looking into a handheld mirror", "video_id": "video11012", "sen_id": 246898}, {"caption": "a blond woman applies make up above her eyes", "video_id": "video11012", "sen_id": 246899}, {"caption": "a sign talking about computer problem solving flashes against a blue background with various cords", "video_id": "video10169", "sen_id": 246900}, {"caption": "words being flipped a phase written in script and a circuits forming a brain", "video_id": "video10169", "sen_id": 246901}, {"caption": "information technolgy is explaining their problem solving program", "video_id": "video10169", "sen_id": 246902}, {"caption": "a computer generated graphic is showing the links between different computers on the internet", "video_id": "video10169", "sen_id": 246903}, {"caption": "a woman gives a lecture on an informational technology degree", "video_id": "video10169", "sen_id": 246904}, {"caption": "an animation showing information on technology and it systems", "video_id": "video10169", "sen_id": 246905}, {"caption": "a commercial for digital solutions company with animations", "video_id": "video10169", "sen_id": 246906}, {"caption": "a women explains an information technology degree to a mostly blue animation showing connections", "video_id": "video10169", "sen_id": 246907}, {"caption": "a person tells about how information technology works in our day to day life and how it is useful", "video_id": "video10169", "sen_id": 246908}, {"caption": "a woman explains who the internet technology degree is appropriate for", "video_id": "video10169", "sen_id": 246909}, {"caption": "a woman talks about the information techinology degree", "video_id": "video10169", "sen_id": 246910}, {"caption": "a woman is talking about information technology and how a person can change things", "video_id": "video10169", "sen_id": 246911}, {"caption": "a bright and engaging advertisement for an information technology degree", "video_id": "video10169", "sen_id": 246912}, {"caption": "a woman talks about the benefits of an it degree while viewers see graphics that include text smiling computers", "video_id": "video10169", "sen_id": 246913}, {"caption": "advertise about the company being shown on the screeen", "video_id": "video10169", "sen_id": 246914}, {"caption": "a commercial calling out those who enjoy informational problem solving and computer science", "video_id": "video10169", "sen_id": 246915}, {"caption": "a lady talking something about the information technology", "video_id": "video10169", "sen_id": 246916}, {"caption": "a slide shoe presents the intro to a youtube channel", "video_id": "video10169", "sen_id": 246917}, {"caption": "advertisement for schooling in obtaining an information technology degree", "video_id": "video10169", "sen_id": 246918}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10169", "sen_id": 246919}, {"caption": "a video game being played on a tv screen", "video_id": "video11303", "sen_id": 246920}, {"caption": "two women talk in the background as we rush through a cgi cityscape", "video_id": "video11303", "sen_id": 246921}, {"caption": "traveling through a cartoon village with tile flooring and trees on each side", "video_id": "video11303", "sen_id": 246922}, {"caption": "a combat video game searching for the enemy", "video_id": "video11303", "sen_id": 246923}, {"caption": "a point of view watching a gamer play a video game", "video_id": "video11303", "sen_id": 246924}, {"caption": "a television screen is showing an avatar navigating through the world of the video game minecraft", "video_id": "video11303", "sen_id": 246925}, {"caption": "its a animated video game like a 3d game", "video_id": "video11303", "sen_id": 246926}, {"caption": "a cg shooter searches a cg forest looking for targets to shoot", "video_id": "video11303", "sen_id": 246927}, {"caption": "young girls play a video game in a crowded room", "video_id": "video11303", "sen_id": 246928}, {"caption": "a first person video game is being played while a woman is talking", "video_id": "video11303", "sen_id": 246929}, {"caption": "a female wears a go pro cam and illustrate how it works while walking", "video_id": "video11303", "sen_id": 246930}, {"caption": "high way of road looking onr by one", "video_id": "video11303", "sen_id": 246931}, {"caption": "a woman was talking about the video game she is playing", "video_id": "video11303", "sen_id": 246932}, {"caption": "a first person shooter game player shows her ground tactics to get into a lego-like area", "video_id": "video11303", "sen_id": 246933}, {"caption": "a graphic looks like as a camera is going on taking a uninterrupted short", "video_id": "video11303", "sen_id": 246934}, {"caption": "a girl is talking about tactics used in a video game that looks like minecraft", "video_id": "video11303", "sen_id": 246935}, {"caption": "on the tour programme the people are enjoying their movement", "video_id": "video11303", "sen_id": 246936}, {"caption": "different women are playing a video game on a television", "video_id": "video11303", "sen_id": 246937}, {"caption": "a girl speaking historical place structure of stone walls displaying on screen", "video_id": "video11303", "sen_id": 246938}, {"caption": "an english accented woman directs the listener through some video game like structures", "video_id": "video11303", "sen_id": 246939}, {"caption": "a man buys food from a small trailer located on the side of a busy road", "video_id": "video12142", "sen_id": 246940}, {"caption": "a couple different people eating different foods outside", "video_id": "video12142", "sen_id": 246941}, {"caption": "a young woman enjoys a piece of pizza by eating it rapidly", "video_id": "video12142", "sen_id": 246942}, {"caption": "people are eating different types of food while outdoors", "video_id": "video12142", "sen_id": 246943}, {"caption": "a little girl eating a sandwich and fruit", "video_id": "video12142", "sen_id": 246944}, {"caption": "a kid and the woman is eating on a car", "video_id": "video12142", "sen_id": 246945}, {"caption": "a man is speaking while showing different clips of people eating food", "video_id": "video12142", "sen_id": 246946}, {"caption": "a cute girl is sitting and a girl is eating a pizza", "video_id": "video12142", "sen_id": 246947}, {"caption": "a girl is eating ice cream a woman takes a bite out of a slice of pizza", "video_id": "video12142", "sen_id": 246948}, {"caption": "the people eat the food with their hands", "video_id": "video12142", "sen_id": 246949}, {"caption": "there is a woman eating pizza from a restaurant", "video_id": "video12142", "sen_id": 246950}, {"caption": "a short compilation of young people eating people along short videos of food", "video_id": "video12142", "sen_id": 246951}, {"caption": "a van in white and orange color the cute girl eats and lady byte her food", "video_id": "video12142", "sen_id": 246952}, {"caption": "a montage of clips show food delivery and people eating various foods", "video_id": "video12142", "sen_id": 246953}, {"caption": "a van is parked as a man buys food", "video_id": "video12142", "sen_id": 246954}, {"caption": "movie scene from a tamil movie two mens are talking", "video_id": "video12142", "sen_id": 246955}, {"caption": "a lady and her child eating some foods in the restaurant", "video_id": "video12142", "sen_id": 246956}, {"caption": "suggestions from a narrator discussing how to select foods to sell from a mobile cafe", "video_id": "video12142", "sen_id": 246957}, {"caption": "a kid and an adult eating pizza and pastries and a lot of other junk food", "video_id": "video12142", "sen_id": 246958}, {"caption": "some hot dogs are being served for food", "video_id": "video12142", "sen_id": 246959}, {"caption": "an actress is describing her character in a show", "video_id": "video11996", "sen_id": 246960}, {"caption": "a woman discussing motivations of the character she plays in a movie", "video_id": "video11996", "sen_id": 246961}, {"caption": "a lady describing her experiences working on set of television", "video_id": "video11996", "sen_id": 246962}, {"caption": "a woman talking about another woman in a movie", "video_id": "video11996", "sen_id": 246963}, {"caption": "a white english women describing her character in a movie or tv series", "video_id": "video11996", "sen_id": 246964}, {"caption": "an actress talks about a movie role she has recently completed", "video_id": "video11996", "sen_id": 246965}, {"caption": "a women is saying something and a couple is involved in making love", "video_id": "video11996", "sen_id": 246966}, {"caption": "threre is a women talking about a film experience", "video_id": "video11996", "sen_id": 246967}, {"caption": "an actress describing what her character is like", "video_id": "video11996", "sen_id": 246968}, {"caption": "an actress describes a scene she played in a movie", "video_id": "video11996", "sen_id": 246969}, {"caption": "an old man bending down and girl and boy kissing scene and girl speaking displaying on screen", "video_id": "video11996", "sen_id": 246970}, {"caption": "a women is saying something to the other person", "video_id": "video11996", "sen_id": 246971}, {"caption": "a women is talking with amoung self", "video_id": "video11996", "sen_id": 246972}, {"caption": " andrea riseborough talking about the scene of her debut", "video_id": "video11996", "sen_id": 246973}, {"caption": "a woman and man wrestle angrily on a bar", "video_id": "video11996", "sen_id": 246974}, {"caption": "a woman is giving a review about a show which contains a woman trying to find a soul mate", "video_id": "video11996", "sen_id": 246975}, {"caption": "there is a woman kissing with a man", "video_id": "video11996", "sen_id": 246976}, {"caption": "an actress is describing her character s personality as scenes of her character are shown", "video_id": "video11996", "sen_id": 246977}, {"caption": "in a hollywood movie hero and heroine kissing out", "video_id": "video11996", "sen_id": 246978}, {"caption": "sexy brunette kissing and then slapping the guy", "video_id": "video11996", "sen_id": 246979}, {"caption": "an animated boy speaks to an alien-like animated creature", "video_id": "video10785", "sen_id": 246980}, {"caption": "the characters from big hero 6 try to sneak in the house quietly", "video_id": "video10785", "sen_id": 246981}, {"caption": "a boy is talking to his white robot in a movie scene from big hero 6", "video_id": "video10785", "sen_id": 246982}, {"caption": "a boy talking to a white figure and it keeps saying we jumped out a window today", "video_id": "video10785", "sen_id": 246983}, {"caption": "there is a white circular figure interacting with a child inside a suburban home", "video_id": "video10785", "sen_id": 246984}, {"caption": "there is a kid playing with a big and white toy", "video_id": "video10785", "sen_id": 246985}, {"caption": "an animated boy having a conversation with a ghost", "video_id": "video10785", "sen_id": 246986}, {"caption": "a ghostly looking figure is interacting with a child in a delightful way", "video_id": "video10785", "sen_id": 246987}, {"caption": "man is having good time with the big white ghost", "video_id": "video10785", "sen_id": 246988}, {"caption": "a boy tells his toy to lie to his family about where they have been", "video_id": "video10785", "sen_id": 246989}, {"caption": "a boy tries to smuggle a white puffy robot into his house quietly", "video_id": "video10785", "sen_id": 246990}, {"caption": "a young boy is holding and interacting with a white figure the picture is a 3d animation", "video_id": "video10785", "sen_id": 246991}, {"caption": "child and a ghost-like character having a conversation in a house", "video_id": "video10785", "sen_id": 246992}, {"caption": "a white ghost cartoon character and his cartoon boy friend get into an energetic discussion", "video_id": "video10785", "sen_id": 246993}, {"caption": "a cartoon movie clip has been played in which 2 persons are talking", "video_id": "video10785", "sen_id": 246994}, {"caption": "a small boy character is talking", "video_id": "video10785", "sen_id": 246995}, {"caption": "an animated large white creature talks with a boy in a home", "video_id": "video10785", "sen_id": 246996}, {"caption": "an animated boy is talking to an alien dressed in white", "video_id": "video10785", "sen_id": 246997}, {"caption": "two animated characters are having a comical conversation", "video_id": "video10785", "sen_id": 246998}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10785", "sen_id": 246999}, {"caption": "a launch deminstration on a computer with a women computer voice talking", "video_id": "video11671", "sen_id": 247000}, {"caption": "a women describes and demonstrates a computer program she is running", "video_id": "video11671", "sen_id": 247001}, {"caption": "a woman is talking about launch settings and how to adjust the settings while demonstrating on screen how to do it", "video_id": "video11671", "sen_id": 247002}, {"caption": "a person is going through a production program on a computer showing how to use it", "video_id": "video11671", "sen_id": 247003}, {"caption": "a girl explains about something on computer software on her computer", "video_id": "video11671", "sen_id": 247004}, {"caption": "a computer program is being discussed as it zooms into green and gray screens", "video_id": "video11671", "sen_id": 247005}, {"caption": "a lady with a computer voice speaking about how to use the settings of a program", "video_id": "video11671", "sen_id": 247006}, {"caption": "there is a woman talking about a software", "video_id": "video11671", "sen_id": 247007}, {"caption": "a media is explaining uses of software in computer", "video_id": "video11671", "sen_id": 247008}, {"caption": "a lady explaining about something on the computer", "video_id": "video11671", "sen_id": 247009}, {"caption": "a lady describes step by step process to perform a task on a clip controller", "video_id": "video11671", "sen_id": 247010}, {"caption": "a computerized voice is describing how to use a piece of media clip editing software", "video_id": "video11671", "sen_id": 247011}, {"caption": "vertical panels arranged horizontally have an open circle over yellow squares with a number in the center which are over smaller gray vertical panels and pink-and-red panels", "video_id": "video11671", "sen_id": 247012}, {"caption": "an application in which there are many boxes in color they select option from drop down", "video_id": "video11671", "sen_id": 247013}, {"caption": "a person is showing software in the computer", "video_id": "video11671", "sen_id": 247014}, {"caption": "a computer female voice explains software while visually displaying its use", "video_id": "video11671", "sen_id": 247015}, {"caption": "in a system one data is coming on", "video_id": "video11671", "sen_id": 247016}, {"caption": "women opening settings and adjusting the settings", "video_id": "video11671", "sen_id": 247017}, {"caption": "a woman narrates an instructional video on how to adjust settings on a program", "video_id": "video11671", "sen_id": 247018}, {"caption": "someone is browsing a computer program on their pc", "video_id": "video11671", "sen_id": 247019}, {"caption": "a blonde haired female talks on screen while wearing a white dress in a black room", "video_id": "video12182", "sen_id": 247020}, {"caption": "a young woman with blonde hair wears a white tank top in front of a black background before starting a makeup tutorial on her bare face", "video_id": "video12182", "sen_id": 247021}, {"caption": "woman talks about her face and how to apply cosmetics", "video_id": "video12182", "sen_id": 247022}, {"caption": "woman welcomes audience to her channel and explains how she is going to do a one hundred percent drug store tutorial", "video_id": "video12182", "sen_id": 247023}, {"caption": "drug store makeup tutorial using products which are interesting or new to her", "video_id": "video12182", "sen_id": 247024}, {"caption": "a blond woman in a white sleeveless shirt talks about the channel being 100 % drugstore tutorial", "video_id": "video12182", "sen_id": 247025}, {"caption": "a woman in a white top is raising her hands", "video_id": "video12182", "sen_id": 247026}, {"caption": "a woman with blonde highlights is talking about a variety of topics", "video_id": "video12182", "sen_id": 247027}, {"caption": "a blond girl in white dress talks to a tv show", "video_id": "video12182", "sen_id": 247028}, {"caption": "a woman in white dress with golden brown hair is welcoming the viewers to her channel and explaining that the video is about a tutorial on drugs", "video_id": "video12182", "sen_id": 247029}, {"caption": "a woman in a white shirt is talking about drug store brands", "video_id": "video12182", "sen_id": 247030}, {"caption": "a woman with died blond hair and pretty features talks into the camera", "video_id": "video12182", "sen_id": 247031}, {"caption": "a woman with blonde hair who looks to be about 24 years old post a drug store brand vlog on her channel for her viewers to see", "video_id": "video12182", "sen_id": 247032}, {"caption": "woman in white shirt is talking about something", "video_id": "video12182", "sen_id": 247033}, {"caption": "a person looking at the camera and talking", "video_id": "video12182", "sen_id": 247034}, {"caption": "a woman with a clean face is going to do a drug store makeup tutorial from the scratch using only brand name products commonly found in drug stores", "video_id": "video12182", "sen_id": 247035}, {"caption": "the blonde haired woman in a white sleeveless shirt tells us she will do a makeup tutorial with items purchased from a drug store", "video_id": "video12182", "sen_id": 247036}, {"caption": "a woman in a white tank top against a black background talks about an upcoming tutorial using drugstore-brand makeup", "video_id": "video12182", "sen_id": 247037}, {"caption": "a charming young woman talks and uses hand gestures", "video_id": "video12182", "sen_id": 247038}, {"caption": "a blonde women in white is giving an interview infront of a black background", "video_id": "video12182", "sen_id": 247039}, {"caption": "a man is describing shooting a movie scene while looking at pictures", "video_id": "video12664", "sen_id": 247040}, {"caption": "photographs of traditional helmets are mixed with pictures of fantasy animal heads resembling a distorted elephant with small ears", "video_id": "video12664", "sen_id": 247041}, {"caption": "a person talks about a scene from a movie he has recently viewed", "video_id": "video12664", "sen_id": 247042}, {"caption": "artist presents creation of monsters for a movie special effects", "video_id": "video12664", "sen_id": 247043}, {"caption": "a male is talking about a scene from a movie and how hard it was to capture the scene", "video_id": "video12664", "sen_id": 247044}, {"caption": "a man is discussing a movie scene about aliens", "video_id": "video12664", "sen_id": 247045}, {"caption": "different pictures of people animals and other objects", "video_id": "video12664", "sen_id": 247046}, {"caption": "a camera man talks about the trouble he had shooting an important scene", "video_id": "video12664", "sen_id": 247047}, {"caption": "a skull of the dead astraunt is kept in museum", "video_id": "video12664", "sen_id": 247048}, {"caption": "images of the alien from the movie aliens return back to earth", "video_id": "video12664", "sen_id": 247049}, {"caption": "a man is seeing a various part of a scene in movie", "video_id": "video12664", "sen_id": 247050}, {"caption": "director describing the shooting difficulties during a movie", "video_id": "video12664", "sen_id": 247051}, {"caption": "there is a man explains about skeleton with images", "video_id": "video12664", "sen_id": 247052}, {"caption": "its species of different skullits looks different all are in ash color", "video_id": "video12664", "sen_id": 247053}, {"caption": "poster of humans and skulls are shown in this video", "video_id": "video12664", "sen_id": 247054}, {"caption": "a man is talking about a movie while movie stills are being shown", "video_id": "video12664", "sen_id": 247055}, {"caption": "images of an alien on the background from a movie clip", "video_id": "video12664", "sen_id": 247056}, {"caption": "close up pictures of a alien character in a movie", "video_id": "video12664", "sen_id": 247057}, {"caption": "a man is showing pictures of different aliens and masks", "video_id": "video12664", "sen_id": 247058}, {"caption": "some pictures of a movie are being shown", "video_id": "video12664", "sen_id": 247059}, {"caption": "statistics for french athlete antoine conty are presented with a running track background", "video_id": "video10314", "sen_id": 247060}, {"caption": "some stacks being put over a track", "video_id": "video10314", "sen_id": 247061}, {"caption": "a track athletes measurements and achievements are used for a profile", "video_id": "video10314", "sen_id": 247062}, {"caption": "ominous music plays while statistics for a french athlete scroll across the screen", "video_id": "video10314", "sen_id": 247063}, {"caption": "with a track in the background words are coming onto the screen", "video_id": "video10314", "sen_id": 247064}, {"caption": "identity details of an athlete is shown post which the athletics and academics is displayed", "video_id": "video10314", "sen_id": 247065}, {"caption": "list of atheletic birth dates and details", "video_id": "video10314", "sen_id": 247066}, {"caption": "the persons track statistics are displayed on the colorful screen", "video_id": "video10314", "sen_id": 247067}, {"caption": "a screen is playing an auto biography", "video_id": "video10314", "sen_id": 247068}, {"caption": "there are stats being displayed for a olympic athelete or a college track runner", "video_id": "video10314", "sen_id": 247069}, {"caption": "there is a track for real fighters only", "video_id": "video10314", "sen_id": 247070}, {"caption": "a screen showcasing athletes and their personal best sprinting times", "video_id": "video10314", "sen_id": 247071}, {"caption": "sports statistics are being show in a slideshow", "video_id": "video10314", "sen_id": 247072}, {"caption": "an information about athletics and academics are shown and it is french athlete national level of 2012", "video_id": "video10314", "sen_id": 247073}, {"caption": "the identity and achievements of an athlete is diplayed", "video_id": "video10314", "sen_id": 247074}, {"caption": "a atheletics are running to olympics on ground", "video_id": "video10314", "sen_id": 247075}, {"caption": "different specs of a person are shown in front of a track image", "video_id": "video10314", "sen_id": 247076}, {"caption": "athlete players are in running race time table", "video_id": "video10314", "sen_id": 247077}, {"caption": "a graphic showing the physical stats and academic and athletic accomplishments of someone", "video_id": "video10314", "sen_id": 247078}, {"caption": "some stats are being shown on a race screen", "video_id": "video10314", "sen_id": 247079}, {"caption": "scenes from sleeping beauty and the main characters are being shown", "video_id": "video12415", "sen_id": 247080}, {"caption": "a woman in a long coat holding a cane and three faries", "video_id": "video12415", "sen_id": 247081}, {"caption": "a woman in a long red and black gown holds a long black staff", "video_id": "video12415", "sen_id": 247082}, {"caption": "three fairies are holding wands and wearing frocks", "video_id": "video12415", "sen_id": 247083}, {"caption": "three fairies are holding their wands in random positions", "video_id": "video12415", "sen_id": 247084}, {"caption": "a drawing of a cartoon character in a long cape and three faries", "video_id": "video12415", "sen_id": 247085}, {"caption": "there is an animated picture of a disney evil queen and then three disney fairies", "video_id": "video12415", "sen_id": 247086}, {"caption": "the evil queen is holding her staff and the fairies are holding their wands", "video_id": "video12415", "sen_id": 247087}, {"caption": "there are cartoon drawings of different colored fairies", "video_id": "video12415", "sen_id": 247088}, {"caption": "animation video for children", "video_id": "video12415", "sen_id": 247089}, {"caption": "a witch queen wearing red and black dress holding a staff and a vulture", "video_id": "video12415", "sen_id": 247090}, {"caption": "a king enjoying with his servants in the palace", "video_id": "video12415", "sen_id": 247091}, {"caption": "a black color dress with multi color dress are showed", "video_id": "video12415", "sen_id": 247092}, {"caption": "cartoon pictures of a tall evil looking woman and three small fairys are being shown", "video_id": "video12415", "sen_id": 247093}, {"caption": "bad lady with the vulture on the hand then many profiles with the stick on the hand", "video_id": "video12415", "sen_id": 247094}, {"caption": "there are some impressive painting on the wall", "video_id": "video12415", "sen_id": 247095}, {"caption": "a drawing of disney s sleeping beauty character maleficent and another drawing of the the three faeries fauna and merryweather", "video_id": "video12415", "sen_id": 247096}, {"caption": "in a disney pictures a man and women in", "video_id": "video12415", "sen_id": 247097}, {"caption": "there are pictures of evil devil shown as a slide show", "video_id": "video12415", "sen_id": 247098}, {"caption": "disney characters from a movie are shown", "video_id": "video12415", "sen_id": 247099}, {"caption": "we see an illustration of the layers of a leaf", "video_id": "video10192", "sen_id": 247100}, {"caption": "a man with glasses talks about how plants produce glucose", "video_id": "video10192", "sen_id": 247101}, {"caption": "man explains how the circle is made complete as the sugar exits the leaf through the phloem while an illustration is shown", "video_id": "video10192", "sen_id": 247102}, {"caption": "a man explains plant cells and its inner mechanisms", "video_id": "video10192", "sen_id": 247103}, {"caption": "a guy talks about how sugar is used by different parts of the body", "video_id": "video10192", "sen_id": 247104}, {"caption": "a cartoon graphic that first shows a white male with brown hair wearing glasses explaining cell structure", "video_id": "video10192", "sen_id": 247105}, {"caption": "a man with glasses talks about how plants produce glucose", "video_id": "video10192", "sen_id": 247106}, {"caption": "a teacher explaining about pholem and xylem of leaf", "video_id": "video10192", "sen_id": 247107}, {"caption": "one man talks about plant cells xylem", "video_id": "video10192", "sen_id": 247108}, {"caption": "a man lectures about the different parts of a leaf cell", "video_id": "video10192", "sen_id": 247109}, {"caption": "guy in glasses talking infection and its symptoms", "video_id": "video10192", "sen_id": 247110}, {"caption": "a men in brown line shirt is telling about the picture shown on screen", "video_id": "video10192", "sen_id": 247111}, {"caption": "a man explaining about plant cell with the diagram", "video_id": "video10192", "sen_id": 247112}, {"caption": "a person talking about science related matters to an audience", "video_id": "video10192", "sen_id": 247113}, {"caption": "a man is describing how glucose travels through a leaf", "video_id": "video10192", "sen_id": 247114}, {"caption": "a diagram of a human cell is being shown", "video_id": "video10192", "sen_id": 247115}, {"caption": "one boy talking about xylem philoem in leaves", "video_id": "video10192", "sen_id": 247116}, {"caption": "a man describes parts of a leaf cell", "video_id": "video10192", "sen_id": 247117}, {"caption": "a biology teacher is teaching about transport tissues in plants and how they function", "video_id": "video10192", "sen_id": 247118}, {"caption": "a man is describing about the cartoon home", "video_id": "video10192", "sen_id": 247119}, {"caption": "a woman who wears a black crop-top is dancing with the chair", "video_id": "video10628", "sen_id": 247120}, {"caption": "brittney spears singer i'm stronger than yesturday video in a black leather outfit", "video_id": "video10628", "sen_id": 247121}, {"caption": "britney spears is wearing a metallic silver belly shirt and pants dancing on a silver chair", "video_id": "video10628", "sen_id": 247122}, {"caption": "a woman wearing black dancing with a chair", "video_id": "video10628", "sen_id": 247123}, {"caption": "a girl in black is dancing and using a chair as a property", "video_id": "video10628", "sen_id": 247124}, {"caption": "britney spears dances on a black stage with a silver chair while singing", "video_id": "video10628", "sen_id": 247125}, {"caption": "a women sings song in english", "video_id": "video10628", "sen_id": 247126}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video10628", "sen_id": 247127}, {"caption": "a woman is dancing for a song with a ladle", "video_id": "video10628", "sen_id": 247128}, {"caption": "a woman in black clothes in an entirely black room throws around a silver chair while singing", "video_id": "video10628", "sen_id": 247129}, {"caption": "a woman is singing and dancing on her knees using a chair", "video_id": "video10628", "sen_id": 247130}, {"caption": "the lady is singing while dancing in the dark room", "video_id": "video10628", "sen_id": 247131}, {"caption": "sexy girl dancing and singing very very hot", "video_id": "video10628", "sen_id": 247132}, {"caption": "a girl in black top and pant is dancing on the stage using chair as a property", "video_id": "video10628", "sen_id": 247133}, {"caption": "a girl in black color dress wearing cloth dancing and singing chair falling down displaying on screen", "video_id": "video10628", "sen_id": 247134}, {"caption": "a woman is singing and dancing on a video", "video_id": "video10628", "sen_id": 247135}, {"caption": "britney spears dressed in black leather and dancing with a metal chair is singing the song stronger", "video_id": "video10628", "sen_id": 247136}, {"caption": "britney spears dances with a metal chair in her music video for stronger", "video_id": "video10628", "sen_id": 247137}, {"caption": "pop song in which the girl sings by holding the chair", "video_id": "video10628", "sen_id": 247138}, {"caption": "sexy blonde singer dancing and singing in her music video", "video_id": "video10628", "sen_id": 247139}, {"caption": "a red pickup truck is parked at the curb in a residential neighborhood when a motorcyclist dressed in black emerges from the curve driving a bike spewing black smoke", "video_id": "video12474", "sen_id": 247140}, {"caption": "on a serene suburban street someone starts up a choppy unhealthy-sounding motorcycle the motorcycle leaves thick plumes of dark smoke as it putt-putts up the road", "video_id": "video12474", "sen_id": 247141}, {"caption": "a motorcycle that is spewing black smoke runs through a quiet neighborhood", "video_id": "video12474", "sen_id": 247142}, {"caption": "a red pick up truck is parked at the curb as a motorcycle speeds down the street with smoke billowing up behind it", "video_id": "video12474", "sen_id": 247143}, {"caption": "a red pickup truck parked on the side of a subdivision road", "video_id": "video12474", "sen_id": 247144}, {"caption": "on a neighborhood street there is a red truck and a smoky motorcycle is trying to make its way through", "video_id": "video12474", "sen_id": 247145}, {"caption": "a red pick up truck is parked on the side of a road then a bike is seen coming down from the corner with lots of smoke trailing behind it", "video_id": "video12474", "sen_id": 247146}, {"caption": "there is a car parked left side of the road", "video_id": "video12474", "sen_id": 247147}, {"caption": "a red pick up truck is parked on the side of the road", "video_id": "video12474", "sen_id": 247148}, {"caption": "one man driving bike fastly and its like that jet", "video_id": "video12474", "sen_id": 247149}, {"caption": "a red color mini truck is standin on road in garden area", "video_id": "video12474", "sen_id": 247150}, {"caption": "there is a red truck parked in a neighborhood with a person riding on a motorcycle coming up", "video_id": "video12474", "sen_id": 247151}, {"caption": "there is a red car parked in a road side", "video_id": "video12474", "sen_id": 247152}, {"caption": "the red car is parked becides the road while the motocyclist is moving", "video_id": "video12474", "sen_id": 247153}, {"caption": "a man riding his bike on the road side", "video_id": "video12474", "sen_id": 247154}, {"caption": "man is recording the empty street with one red car", "video_id": "video12474", "sen_id": 247155}, {"caption": "a person is riding a motorcycle with a lot of smoke down a street", "video_id": "video12474", "sen_id": 247156}, {"caption": "a man is riding on the bike with over smoke", "video_id": "video12474", "sen_id": 247157}, {"caption": "one car park on the road and one person drive a bike", "video_id": "video12474", "sen_id": 247158}, {"caption": "a guy on a motorcycle is driving on a road", "video_id": "video12474", "sen_id": 247159}, {"caption": "a group of indian children feed a monkey", "video_id": "video11431", "sen_id": 247160}, {"caption": "children are giving food and drink to a money on the street", "video_id": "video11431", "sen_id": 247161}, {"caption": "a monkey is on the ground surrounded by kids who are feeding the monkey", "video_id": "video11431", "sen_id": 247162}, {"caption": "a group of several children are standing around a sitting monkey feeding him; the monkey runs a few feet away after taking the food", "video_id": "video11431", "sen_id": 247163}, {"caption": "a gray monkey seated on a tiled sidewalk with black paws face and ears accepts food from children's extended hands", "video_id": "video11431", "sen_id": 247164}, {"caption": "several children sharing their snack with a monkey before he up and runs away", "video_id": "video11431", "sen_id": 247165}, {"caption": "ther are small childrens giving chanas for a monkey", "video_id": "video11431", "sen_id": 247166}, {"caption": "little boys and girls giving food to monkey and it goes", "video_id": "video11431", "sen_id": 247167}, {"caption": "some children giving food to the monkey and the monkey is eating food", "video_id": "video11431", "sen_id": 247168}, {"caption": "a monkey and baby playing with monkey little boys and girl giving biscuits to monkey displaying on screen", "video_id": "video11431", "sen_id": 247169}, {"caption": "there is a monekey playing with some kids", "video_id": "video11431", "sen_id": 247170}, {"caption": "a group of little children feeding the food to the monkey on the streets", "video_id": "video11431", "sen_id": 247171}, {"caption": "children giving eatables to a monkey in street", "video_id": "video11431", "sen_id": 247172}, {"caption": "a monkey sits in a group of people and takes food from their hands", "video_id": "video11431", "sen_id": 247173}, {"caption": "children feed a monkey on the street small red fruits from their hands", "video_id": "video11431", "sen_id": 247174}, {"caption": "there is a monkey eating something from visitors", "video_id": "video11431", "sen_id": 247175}, {"caption": "girls giving food to the monkey and it runs", "video_id": "video11431", "sen_id": 247176}, {"caption": "a children are playing with a monkey in public place", "video_id": "video11431", "sen_id": 247177}, {"caption": "little kids surround a monkey and feed it peanuts", "video_id": "video11431", "sen_id": 247178}, {"caption": "some people are outside watching a monkey eating", "video_id": "video11431", "sen_id": 247179}, {"caption": "a blurred image of the surface of a planet", "video_id": "video11880", "sen_id": 247180}, {"caption": "images from the moon with a voice over from a man", "video_id": "video11880", "sen_id": 247181}, {"caption": "a scientist describes what he sees in pictures from the surface of another planet", "video_id": "video11880", "sen_id": 247182}, {"caption": "a man describing structures in pictures of the moon", "video_id": "video11880", "sen_id": 247183}, {"caption": "workers stand under the edges of a black triangular aircraft and a square-ish building appears to emerge from flat terrain", "video_id": "video11880", "sen_id": 247184}, {"caption": "a grey surface of land with a man speaking in the background", "video_id": "video11880", "sen_id": 247185}, {"caption": "it shows the images taken from the moon and brief about that", "video_id": "video11880", "sen_id": 247186}, {"caption": "the photograph of moon s surface is shown and someone gives narration", "video_id": "video11880", "sen_id": 247187}, {"caption": "various images of structures that have been found on the moon", "video_id": "video11880", "sen_id": 247188}, {"caption": "a video of the surface of the moon", "video_id": "video11880", "sen_id": 247189}, {"caption": "the foggy picture may be a satellite photo in gray that is explained to be craters and such noted as the moon by yellow lettering on picture", "video_id": "video11880", "sen_id": 247190}, {"caption": "someone analysis about possibility of life in moon using the picture taken from lunar surface", "video_id": "video11880", "sen_id": 247191}, {"caption": "a person is explaining about the building and surface of the earth briefly", "video_id": "video11880", "sen_id": 247192}, {"caption": "still shot of what is explained to be a surface hidden under the surface of the moon", "video_id": "video11880", "sen_id": 247193}, {"caption": "a man is talking about consiperacy theories of the moon", "video_id": "video11880", "sen_id": 247194}, {"caption": "a massive rectangular building that stuck in the lunar surface of the moon is explained with proof", "video_id": "video11880", "sen_id": 247195}, {"caption": "man talking about buildings on the surface of the moon", "video_id": "video11880", "sen_id": 247196}, {"caption": "a photo of the moon s surface is shown while a narrator talks", "video_id": "video11880", "sen_id": 247197}, {"caption": "a man is talking some thing about rectangular building", "video_id": "video11880", "sen_id": 247198}, {"caption": "a man is talking about conspiracies about the moon", "video_id": "video11880", "sen_id": 247199}, {"caption": "a man in a gray sweater delivers the news against a blue square backdrop", "video_id": "video12826", "sen_id": 247200}, {"caption": "a man in front of a green screen is talking about entertainment news", "video_id": "video12826", "sen_id": 247201}, {"caption": "man talking about wolf of walstreet and its schedule", "video_id": "video12826", "sen_id": 247202}, {"caption": "a wearing a grey shirt talking about movies", "video_id": "video12826", "sen_id": 247203}, {"caption": "i white man in a grey sweater in announcing a news story", "video_id": "video12826", "sen_id": 247204}, {"caption": "a young man in a blue shirt talking about movies", "video_id": "video12826", "sen_id": 247205}, {"caption": "a review of the moviethe wolf of wall street", "video_id": "video12826", "sen_id": 247206}, {"caption": "a man discusses an upcoming movie and the buzz around it", "video_id": "video12826", "sen_id": 247207}, {"caption": "a man wearing a grey shirt talking about wolf of wallstreet", "video_id": "video12826", "sen_id": 247208}, {"caption": "a man in t-shirt explaining the breaking news of the day", "video_id": "video12826", "sen_id": 247209}, {"caption": "a man wearing a shirt with a collar is talking about movies", "video_id": "video12826", "sen_id": 247210}, {"caption": "guy in blue shirt talking to the camera about celebrities", "video_id": "video12826", "sen_id": 247211}, {"caption": "a person in grey t-shirt is saying something", "video_id": "video12826", "sen_id": 247212}, {"caption": "a man with a blue shirt talks about different tv shows while appearing on tv", "video_id": "video12826", "sen_id": 247213}, {"caption": "a guy in a gray shirt is talking about something", "video_id": "video12826", "sen_id": 247214}, {"caption": "there is a suit man talking from the studio", "video_id": "video12826", "sen_id": 247215}, {"caption": "the tv men telling the entertainment news in the june month new releasing movies", "video_id": "video12826", "sen_id": 247216}, {"caption": "a man is talking in the tv channel", "video_id": "video12826", "sen_id": 247217}, {"caption": "a person is announcing some breaking news in a channel", "video_id": "video12826", "sen_id": 247218}, {"caption": "a man in a gray shirt is talking about something", "video_id": "video12826", "sen_id": 247219}, {"caption": "ted kennedy giving a speech at the democratic national convention", "video_id": "video12030", "sen_id": 247220}, {"caption": "an old white man in a dark suit and blue tie is making a speech", "video_id": "video12030", "sen_id": 247221}, {"caption": "an old guy is giving speech about hope which has the power to change the life", "video_id": "video12030", "sen_id": 247222}, {"caption": "the old wise man with formal dress giving some valuable messages in a conference", "video_id": "video12030", "sen_id": 247223}, {"caption": "guy in glass with suit and tie talking to the camera", "video_id": "video12030", "sen_id": 247224}, {"caption": "a middle aged man in black shirt is explaining something", "video_id": "video12030", "sen_id": 247225}, {"caption": "mens tells news on tv wearing black suit", "video_id": "video12030", "sen_id": 247226}, {"caption": "pbs newshour one old man talks in stage", "video_id": "video12030", "sen_id": 247227}, {"caption": "a man in a suit is on a stage talking with a crowd cheering", "video_id": "video12030", "sen_id": 247228}, {"caption": "a fat guy with white hair is speaking", "video_id": "video12030", "sen_id": 247229}, {"caption": "a black suit man talking to a audiance", "video_id": "video12030", "sen_id": 247230}, {"caption": "a man addressing a crowd of people", "video_id": "video12030", "sen_id": 247231}, {"caption": "an old man is talking in the news channel", "video_id": "video12030", "sen_id": 247232}, {"caption": "an old man is talking about something on the stage", "video_id": "video12030", "sen_id": 247233}, {"caption": "a man with white hair is talking to a crowd", "video_id": "video12030", "sen_id": 247234}, {"caption": "there is a suit man talking from the studio", "video_id": "video12030", "sen_id": 247235}, {"caption": "an elderly man standing at a podium giving a speech", "video_id": "video12030", "sen_id": 247236}, {"caption": "a dirty old man type guy gives a political speech in some sort of rally", "video_id": "video12030", "sen_id": 247237}, {"caption": "an old man wearing suit is talking something on the stage", "video_id": "video12030", "sen_id": 247238}, {"caption": "an old man with white hair is waving his hands", "video_id": "video12030", "sen_id": 247239}, {"caption": "a man holds a gun as another man and a lady all duck behind boxes in a movie studio", "video_id": "video11096", "sen_id": 247240}, {"caption": "a white man surprises a black man and a woman who laughs", "video_id": "video11096", "sen_id": 247241}, {"caption": "two actors are standing when one crouches down to kiss a woman the woman curses because she messed up a part and one of the men laughs", "video_id": "video11096", "sen_id": 247242}, {"caption": "don cheadle and robert downey jr crouch behind a counter", "video_id": "video11096", "sen_id": 247243}, {"caption": "two actors hide behind a desk on a sound stage as they prepare to film a scene", "video_id": "video11096", "sen_id": 247244}, {"caption": "a man with a green shirt holding a gun", "video_id": "video11096", "sen_id": 247245}, {"caption": "outtakes from a movie with robert downy junior and don cheadle", "video_id": "video11096", "sen_id": 247246}, {"caption": "two men on one side of the table while a man and a woman are on the other", "video_id": "video11096", "sen_id": 247247}, {"caption": "a movie scene from the famous movie ironman", "video_id": "video11096", "sen_id": 247248}, {"caption": "a man and a woman laugh after she says a swear word", "video_id": "video11096", "sen_id": 247249}, {"caption": "a bruised man rises up behind a desk where another man is seated a man turns toward a woman and becomes hysterical after she speaks", "video_id": "video11096", "sen_id": 247250}, {"caption": "a black man is having a gun at his hand", "video_id": "video11096", "sen_id": 247251}, {"caption": "two man and a women is laughing for a shooting of a movie", "video_id": "video11096", "sen_id": 247252}, {"caption": "a man is holding up a gun with a green screen in the background for a movie", "video_id": "video11096", "sen_id": 247253}, {"caption": "butch of actors blooper scenes of the movie with lead actor", "video_id": "video11096", "sen_id": 247254}, {"caption": "here people doing some actions on the screen", "video_id": "video11096", "sen_id": 247255}, {"caption": "four people are hiding behind some boxes and lady crashes some joke", "video_id": "video11096", "sen_id": 247256}, {"caption": "a blooper reel from a robert downey jr and don cheadle movie", "video_id": "video11096", "sen_id": 247257}, {"caption": "a man and woman is talking something and laughing", "video_id": "video11096", "sen_id": 247258}, {"caption": "a black guy is holding a gun while two other people hide", "video_id": "video11096", "sen_id": 247259}, {"caption": "a man describes and demonstrates a video game that he is getting ready to play", "video_id": "video12601", "sen_id": 247260}, {"caption": "a boy in a blue shirt talks against a brick wall", "video_id": "video12601", "sen_id": 247261}, {"caption": "a man describes a video game that he has been playing", "video_id": "video12601", "sen_id": 247262}, {"caption": "a man playing a video game", "video_id": "video12601", "sen_id": 247263}, {"caption": "a man is telling his viewers that he hoped we enjoyed his video and urging viewer to subscribe to his channel", "video_id": "video12601", "sen_id": 247264}, {"caption": "a man thanks his viewers for watching this weeks online video", "video_id": "video12601", "sen_id": 247265}, {"caption": "there is a man talking about a game play", "video_id": "video12601", "sen_id": 247266}, {"caption": "a young man produces different videos on a computer game", "video_id": "video12601", "sen_id": 247267}, {"caption": "a man in blue shirt sits and talks while other screens shows people doing various jobs", "video_id": "video12601", "sen_id": 247268}, {"caption": "a man talks about a video game as portions of the game play", "video_id": "video12601", "sen_id": 247269}, {"caption": "there is a man talking about a video", "video_id": "video12601", "sen_id": 247270}, {"caption": "more persons images are boxed", "video_id": "video12601", "sen_id": 247271}, {"caption": "a man thanks his viewers for watching monster school 4 videos he has created he isn t sure if their will be another video next week due to his wisdom teeth removal", "video_id": "video12601", "sen_id": 247272}, {"caption": "a young man is discussing his videos about video games and when he will make his next video", "video_id": "video12601", "sen_id": 247273}, {"caption": "a young man thanks viewers and has other good videos", "video_id": "video12601", "sen_id": 247274}, {"caption": "a man ends his video talking to his audience and informing them it might be a while before the next video", "video_id": "video12601", "sen_id": 247275}, {"caption": "a guy giving an outro clip for a youtube video for a minecraft series", "video_id": "video12601", "sen_id": 247276}, {"caption": "a young man discusses new video and future updates", "video_id": "video12601", "sen_id": 247277}, {"caption": "monster school 4 shows a new episode with graphics from minecraft", "video_id": "video12601", "sen_id": 247278}, {"caption": "a person is sharing his schedule and promoting himself", "video_id": "video12601", "sen_id": 247279}, {"caption": "a video of a guy trying asian food", "video_id": "video12134", "sen_id": 247280}, {"caption": "a man in a restaurant peels a shrimp on a wooden skewer and dips it into a hot green sauce from a saucer before taking a big bite", "video_id": "video12134", "sen_id": 247281}, {"caption": "an excited guy dips and eats some sea food at a restaurant", "video_id": "video12134", "sen_id": 247282}, {"caption": "a guy tries and reviews some shrimp at a well known restaurant", "video_id": "video12134", "sen_id": 247283}, {"caption": "a young man eats a large shrimp that has been cooked on a stick", "video_id": "video12134", "sen_id": 247284}, {"caption": "a green tshirt man eating a food from a restaurant", "video_id": "video12134", "sen_id": 247285}, {"caption": "men in green eating tiger prawn with taste and smile", "video_id": "video12134", "sen_id": 247286}, {"caption": "at the restaurent the men eating the fish items and enjoy the foods", "video_id": "video12134", "sen_id": 247287}, {"caption": "a man is eating a sea food in the restaurant", "video_id": "video12134", "sen_id": 247288}, {"caption": "a man is eating seafood at a table outside", "video_id": "video12134", "sen_id": 247289}, {"caption": "a man is cooking a recipe and is being shown on", "video_id": "video12134", "sen_id": 247290}, {"caption": "man in green dips his tiger prawn in green and red chillie sauce", "video_id": "video12134", "sen_id": 247291}, {"caption": "one man eating shrimp with one sauce in restaurant", "video_id": "video12134", "sen_id": 247292}, {"caption": "a man in a cafe eats a large shrimp that was cooked on a stick", "video_id": "video12134", "sen_id": 247293}, {"caption": "a person is tasting the ingredients at restaurant", "video_id": "video12134", "sen_id": 247294}, {"caption": "a men is talking and drinking and eating cold drink", "video_id": "video12134", "sen_id": 247295}, {"caption": "person taking some food", "video_id": "video12134", "sen_id": 247296}, {"caption": "one man put shrimp in green chilli sauce and eat", "video_id": "video12134", "sen_id": 247297}, {"caption": "guy in green tshirt eating in a road side hotel", "video_id": "video12134", "sen_id": 247298}, {"caption": "a man is holding shrimp on a wood stick", "video_id": "video12134", "sen_id": 247299}, {"caption": "men kick a soccer ball down a soccer field while rock music plays", "video_id": "video12046", "sen_id": 247300}, {"caption": "a montage of a soccer club such as real madrid", "video_id": "video12046", "sen_id": 247301}, {"caption": "rock music that has been edited in plays over video of a fast-paced soccerfootball game", "video_id": "video12046", "sen_id": 247302}, {"caption": "two teams of soccer players are involved in a heated contest in a very large stadium", "video_id": "video12046", "sen_id": 247303}, {"caption": "a soccer player in a white jersey running the ball the length of the field", "video_id": "video12046", "sen_id": 247304}, {"caption": "a soccer team chases the ball across the course towards the goal", "video_id": "video12046", "sen_id": 247305}, {"caption": "a clip of a soccer game with heavy metal music in the background", "video_id": "video12046", "sen_id": 247306}, {"caption": "the video of a white team and a red team playing soccer in a stadium", "video_id": "video12046", "sen_id": 247307}, {"caption": "the men in the white uniforms run and on the field and play soccer", "video_id": "video12046", "sen_id": 247308}, {"caption": "two teams were playing a foot ball in the ground", "video_id": "video12046", "sen_id": 247309}, {"caption": "a group of persons playing the football game with very energytically", "video_id": "video12046", "sen_id": 247310}, {"caption": "loud music plays as soccer players run on a field for the ball", "video_id": "video12046", "sen_id": 247311}, {"caption": "there is a man running hard on the grass and passing", "video_id": "video12046", "sen_id": 247312}, {"caption": "a player runs all the way across the soccer field barley hanging on to the ball as the opposing team tries to steal the ball from him", "video_id": "video12046", "sen_id": 247313}, {"caption": "a players are playing a football in the ground", "video_id": "video12046", "sen_id": 247314}, {"caption": "a clip of a soccer game on a sports channel", "video_id": "video12046", "sen_id": 247315}, {"caption": "some soccer players are running around a field", "video_id": "video12046", "sen_id": 247316}, {"caption": "there are two players playing football and there is a person who is telling comentry of the match", "video_id": "video12046", "sen_id": 247317}, {"caption": "a soccer game is being played by two teams", "video_id": "video12046", "sen_id": 247318}, {"caption": "a players were playing foot ball on the ground", "video_id": "video12046", "sen_id": 247319}, {"caption": "a combustion has happened with the car engine in the game", "video_id": "video11600", "sen_id": 247320}, {"caption": "video game footage of various cars being destroyed on a white track", "video_id": "video11600", "sen_id": 247321}, {"caption": "a vehicle made from a black tire with black fins spins in place creating a lot of smoke a brown car proceeds between two red rails hits a spinning spiked horizontal cylinder and crashes into flying pieces", "video_id": "video11600", "sen_id": 247322}, {"caption": "a man describes and demonstrates a car related video game", "video_id": "video11600", "sen_id": 247323}, {"caption": "a man describes and demonstrates a car related video game that he is playing", "video_id": "video11600", "sen_id": 247324}, {"caption": "a video game of a car spinning out its tires in the desert", "video_id": "video11600", "sen_id": 247325}, {"caption": "a car drives on a ramp and then crashes into a wall", "video_id": "video11600", "sen_id": 247326}, {"caption": "there is a car riding in to the ice", "video_id": "video11600", "sen_id": 247327}, {"caption": "the sports car drives and then wrecks the wall", "video_id": "video11600", "sen_id": 247328}, {"caption": "a man talks overhead as he plays a video game where he can destroy different vehicles in obstacle courses", "video_id": "video11600", "sen_id": 247329}, {"caption": "a car is driving up a ramp then runs in to a object", "video_id": "video11600", "sen_id": 247330}, {"caption": "a car in a video game revving it engine and then smashing into a wall", "video_id": "video11600", "sen_id": 247331}, {"caption": "there is a car with dark fog moving in to the ice", "video_id": "video11600", "sen_id": 247332}, {"caption": "a man commentating on a video game he is currently playing", "video_id": "video11600", "sen_id": 247333}, {"caption": "a man is playing a video game and telling about it", "video_id": "video11600", "sen_id": 247334}, {"caption": "it is a simulation game with a car crashing into things", "video_id": "video11600", "sen_id": 247335}, {"caption": "someone is playing a video game with a car and talking about it", "video_id": "video11600", "sen_id": 247336}, {"caption": "a man demonstrates and describes a video game he is playing", "video_id": "video11600", "sen_id": 247337}, {"caption": "a video animation of video game of car moving up wards dashing breaking into pieces many cars moving beside displaying on screen", "video_id": "video11600", "sen_id": 247338}, {"caption": "a person is playing some kind of video game", "video_id": "video11600", "sen_id": 247339}, {"caption": "a pretty lady applies eye shadow to her eye lid as she stares in a compact mirror", "video_id": "video12784", "sen_id": 247340}, {"caption": "a woman describes and demonstrates a makeup technique she uses", "video_id": "video12784", "sen_id": 247341}, {"caption": "a woman showing how to apply make to the eye area", "video_id": "video12784", "sen_id": 247342}, {"caption": "a woman applying eye shadow to her eye", "video_id": "video12784", "sen_id": 247343}, {"caption": "a female with a large face and holding a makeup brush illustrates how to apply glitter makeup to your face", "video_id": "video12784", "sen_id": 247344}, {"caption": "a woman is applying makeup on her eyes and is explaining on how to do it", "video_id": "video12784", "sen_id": 247345}, {"caption": "there is a women applying makeup by herself", "video_id": "video12784", "sen_id": 247346}, {"caption": "a woman with long auburn hair demonstrates how to create a specific eye make up effect while looking into a compact mirror", "video_id": "video12784", "sen_id": 247347}, {"caption": "a woman is shadowing her eye lid her own hand", "video_id": "video12784", "sen_id": 247348}, {"caption": "a girl make up eye browse with lid and seeing mirror for beauty facial", "video_id": "video12784", "sen_id": 247349}, {"caption": "a women is applying make up to her face", "video_id": "video12784", "sen_id": 247350}, {"caption": "a women is applying eye lid liner by looking in to her vanity mirrior", "video_id": "video12784", "sen_id": 247351}, {"caption": "the woman is doing the makeup to her eyes using brush", "video_id": "video12784", "sen_id": 247352}, {"caption": "a woman is doing a home tutorial on makeup application", "video_id": "video12784", "sen_id": 247353}, {"caption": "a woman is showing how she does her make up", "video_id": "video12784", "sen_id": 247354}, {"caption": "a woman is showing eye brow fashion show", "video_id": "video12784", "sen_id": 247355}, {"caption": "a girl is doing make up on the her eyes", "video_id": "video12784", "sen_id": 247356}, {"caption": "a woman explains as she puts make up on her upper eyelid", "video_id": "video12784", "sen_id": 247357}, {"caption": "a woman is doing her makeup on her eyes", "video_id": "video12784", "sen_id": 247358}, {"caption": "a woman is showing how she makes a thing", "video_id": "video12784", "sen_id": 247359}, {"caption": "a man in a red shirt holds a plate of white food as he talks", "video_id": "video10549", "sen_id": 247360}, {"caption": "a man talks about how to cook a dish he has prepared", "video_id": "video10549", "sen_id": 247361}, {"caption": "a man in a red chefs coat is giving cooking instructions", "video_id": "video10549", "sen_id": 247362}, {"caption": "a man chef is standing near a window holding a plate addressing how to steam an appetizer for ten minutes", "video_id": "video10549", "sen_id": 247363}, {"caption": "he is a chef with red shirt and explaining one item", "video_id": "video10549", "sen_id": 247364}, {"caption": "a man in a red chef's jacket is holding a plate and talking about his creating", "video_id": "video10549", "sen_id": 247365}, {"caption": "a man is in a red chefs jacket", "video_id": "video10549", "sen_id": 247366}, {"caption": "a man chef showing the recipe and telling us how to made", "video_id": "video10549", "sen_id": 247367}, {"caption": "the chef in his red attractive chef suit is explaining to us how to cook the dish in the steamer just like we cook idli a famous and healthy south indian breakfast dish", "video_id": "video10549", "sen_id": 247368}, {"caption": "an indian chef tells how to cook a recipe using a steamer", "video_id": "video10549", "sen_id": 247369}, {"caption": "a man is showing a plate of rice and talking about how to cook", "video_id": "video10549", "sen_id": 247370}, {"caption": "a man in red have a plate with food in it on his hand", "video_id": "video10549", "sen_id": 247371}, {"caption": "chef makes a recipe with just in 10 minutes with steamer", "video_id": "video10549", "sen_id": 247372}, {"caption": "an indian man wearing red can be seen talking with an unidentified food on his hand", "video_id": "video10549", "sen_id": 247373}, {"caption": "the man in red shirt is happily explaining how he cooked that dish", "video_id": "video10549", "sen_id": 247374}, {"caption": "the chefs tells the audience how to steam the food to make it soft", "video_id": "video10549", "sen_id": 247375}, {"caption": "a man in a red chef outfit holds a metal dish with a white ingredient in it", "video_id": "video10549", "sen_id": 247376}, {"caption": "a man in red is having a plate in his hands and is speaking", "video_id": "video10549", "sen_id": 247377}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10549", "sen_id": 247378}, {"caption": "the chef held his dish while standing in front of italian colors", "video_id": "video10549", "sen_id": 247379}, {"caption": "a large ocean bay features many hotels and a beach full of people", "video_id": "video11555", "sen_id": 247380}, {"caption": "a beautiful beach is shown in the atmosphere", "video_id": "video11555", "sen_id": 247381}, {"caption": "the tall buildings that sit on the shoreline of west palm beach over look the ocean", "video_id": "video11555", "sen_id": 247382}, {"caption": "a seaside modern city with skyscrapers stands between a mountainous region and an adjoining beach dotted with rows of chairs by a sloped and jutting natural land form", "video_id": "video11555", "sen_id": 247383}, {"caption": "a graphic showing a colorful waterfront with a beach and a lot high rise buildings against a blue sky horizon", "video_id": "video11555", "sen_id": 247384}, {"caption": "nature is looking very good with lot of flowers around and mountain", "video_id": "video11555", "sen_id": 247385}, {"caption": "a panoramic picture of the skyline of a city located beside the beach", "video_id": "video11555", "sen_id": 247386}, {"caption": "a beautiful scenario with blue water with background music", "video_id": "video11555", "sen_id": 247387}, {"caption": "presentation of the beautiful beaches near the city center", "video_id": "video11555", "sen_id": 247388}, {"caption": "the beautiful sands of west palm beach have lots of hotels nearby", "video_id": "video11555", "sen_id": 247389}, {"caption": "there is place contain sea and lot of huge buildings", "video_id": "video11555", "sen_id": 247390}, {"caption": "scenic beach shot from west palm beach with fusion jazz music", "video_id": "video11555", "sen_id": 247391}, {"caption": "west palm beach a city by the sea with sunny sky crystal clear blue water", "video_id": "video11555", "sen_id": 247392}, {"caption": "a water scene and buildings tress beside water displaying on screen", "video_id": "video11555", "sen_id": 247393}, {"caption": "a short video showing west palm beach florida from a helicopter point of view", "video_id": "video11555", "sen_id": 247394}, {"caption": "the shore of west palm beach is shown next to its thriving city", "video_id": "video11555", "sen_id": 247395}, {"caption": "music plays while a still shot of a city on a bay is shown with a small beach in the foreground", "video_id": "video11555", "sen_id": 247396}, {"caption": "a scenic view of the city surrounded by the ocean", "video_id": "video11555", "sen_id": 247397}, {"caption": "west palm beach is a city in and the county seat of palm beach county united states", "video_id": "video11555", "sen_id": 247398}, {"caption": "some bright blue and green water outside", "video_id": "video11555", "sen_id": 247399}, {"caption": "a man mixes dry ingredients onto a hard work surface", "video_id": "video12498", "sen_id": 247400}, {"caption": "a tutorial from lucky penny shop for a recipe", "video_id": "video12498", "sen_id": 247401}, {"caption": "a chef works on a recipe by stirring a little stack of white flour", "video_id": "video12498", "sen_id": 247402}, {"caption": "someone preparing a mixture of flour batter with a silver spoon on the counter", "video_id": "video12498", "sen_id": 247403}, {"caption": "a man talks while trying to make some baked goods with flour", "video_id": "video12498", "sen_id": 247404}, {"caption": "a chef begins a recipe by spreading flour on a stainless steel surface", "video_id": "video12498", "sen_id": 247405}, {"caption": "flour is put in a vessel and little water is added", "video_id": "video12498", "sen_id": 247406}, {"caption": "there is someone making chapati on the table", "video_id": "video12498", "sen_id": 247407}, {"caption": "how to make chapathis a wheat flour is poured on table with spoon mixes salt and other ingredients and mixes up", "video_id": "video12498", "sen_id": 247408}, {"caption": "flour is spread over the spoon and salt is springled on it", "video_id": "video12498", "sen_id": 247409}, {"caption": "a man giving a recipe for some kind of bakery item", "video_id": "video12498", "sen_id": 247410}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12498", "sen_id": 247411}, {"caption": "some flow used to prepare a dough by the cook", "video_id": "video12498", "sen_id": 247412}, {"caption": "a chef spoons flour onto a flat surface and mixes flour and some other dry ingredients together", "video_id": "video12498", "sen_id": 247413}, {"caption": "in kitchen to make indian bread a person making a mix of floorsalt and one other powder", "video_id": "video12498", "sen_id": 247414}, {"caption": "someone is pouring flour on to a metal table", "video_id": "video12498", "sen_id": 247415}, {"caption": "in the kitchen a man making a dish", "video_id": "video12498", "sen_id": 247416}, {"caption": "a man describing and showing how to make a recipe", "video_id": "video12498", "sen_id": 247417}, {"caption": "on a flat surface a flour is placed and it is spread ed using the spoon", "video_id": "video12498", "sen_id": 247418}, {"caption": "with a spoon whole wheat and cornmeal is sprinkled onto a pile of flour", "video_id": "video12498", "sen_id": 247419}, {"caption": "a lady and a horse are shown before a different lady performs a ballet dance in a dark room with a black horse in it", "video_id": "video10976", "sen_id": 247420}, {"caption": "i black women with short black hair is dancing", "video_id": "video10976", "sen_id": 247421}, {"caption": "a woman in white skirt is doing ballet dancing near a black horse", "video_id": "video10976", "sen_id": 247422}, {"caption": "there is a woman dancing on the floor", "video_id": "video10976", "sen_id": 247423}, {"caption": "girls are singing and dancing using gymnastic steps its looking great", "video_id": "video10976", "sen_id": 247424}, {"caption": "the dark haired ballarina is dancing for her black horse on the stage", "video_id": "video10976", "sen_id": 247425}, {"caption": "a woman in white dress is dancing in the land where black horse is seeing her", "video_id": "video10976", "sen_id": 247426}, {"caption": "a lady in a pink skirts dances ballet in front of a black horse", "video_id": "video10976", "sen_id": 247427}, {"caption": "a ballerina is performing next to horse that is looking at her", "video_id": "video10976", "sen_id": 247428}, {"caption": "a lady in white is dancing ballet in an empty room", "video_id": "video10976", "sen_id": 247429}, {"caption": "a women in white dress dance the polo dance in front of horse", "video_id": "video10976", "sen_id": 247430}, {"caption": "a woman dancing in a stage with a horse", "video_id": "video10976", "sen_id": 247431}, {"caption": "a girl making a dance alone in the jungle and a horse is near her", "video_id": "video10976", "sen_id": 247432}, {"caption": "a black woman dances around in a large empty room", "video_id": "video10976", "sen_id": 247433}, {"caption": "a woman in a white dress is dancing around", "video_id": "video10976", "sen_id": 247434}, {"caption": "there is a horse running in to the ground", "video_id": "video10976", "sen_id": 247435}, {"caption": "a woman dancing ballet across a stage closer to a horse", "video_id": "video10976", "sen_id": 247436}, {"caption": "a woman dances in a classical ballerina style in an open and dark forest", "video_id": "video10976", "sen_id": 247437}, {"caption": "some album song is going and a male voic is hearing some where and a women is dancing by lifting her right leg up", "video_id": "video10976", "sen_id": 247438}, {"caption": "a woman is dancing around inside a place", "video_id": "video10976", "sen_id": 247439}, {"caption": "the tutorial of mixing chocolate and cream to make a dessert", "video_id": "video12560", "sen_id": 247440}, {"caption": "a woman pours chocolate and cream in a bowl then melts it in the microwave", "video_id": "video12560", "sen_id": 247441}, {"caption": "a person pours milk and chocolate in a bowl before mixing it to make a dessert", "video_id": "video12560", "sen_id": 247442}, {"caption": "a tutorial for creating a chocolate dessert", "video_id": "video12560", "sen_id": 247443}, {"caption": "a woman is making chocolate mousse by combining dark chocolate and cream warming them in microwave and mixing them with stir", "video_id": "video12560", "sen_id": 247444}, {"caption": "a woman makes a ganache of dark chocolate and cream", "video_id": "video12560", "sen_id": 247445}, {"caption": "a woman is blending the ingredients for chocolate mousse", "video_id": "video12560", "sen_id": 247446}, {"caption": "a woman narrates as she makes ganache in a glass bowl", "video_id": "video12560", "sen_id": 247447}, {"caption": "a lady is puoring chocolate in a bowl and mixing it with cream", "video_id": "video12560", "sen_id": 247448}, {"caption": "a chef talks about the way to melt chocolate in a microwave", "video_id": "video12560", "sen_id": 247449}, {"caption": "a chef talks about her method for melting chocolate in a microwave", "video_id": "video12560", "sen_id": 247450}, {"caption": "a women with an accent is describing what she is mixing in a bowl", "video_id": "video12560", "sen_id": 247451}, {"caption": "there is a woman making a dish with cream", "video_id": "video12560", "sen_id": 247452}, {"caption": "a woman pours ingredients into a bowl melts them and then mixes them", "video_id": "video12560", "sen_id": 247453}, {"caption": "a woman mixes melted chocolate while she instructs", "video_id": "video12560", "sen_id": 247454}, {"caption": "a woman is putting dark chocolate and cream in a bowl", "video_id": "video12560", "sen_id": 247455}, {"caption": "there is a woman making a dish with milk and chocolate", "video_id": "video12560", "sen_id": 247456}, {"caption": "a woman is adding different ingredients in a bowl to make some sort of chocolate based confection", "video_id": "video12560", "sen_id": 247457}, {"caption": "a woman adds chocolate and cream in a bowl then melts and whisks on table", "video_id": "video12560", "sen_id": 247458}, {"caption": "a woman mixing ingredients in a bowl to make chocolate moose", "video_id": "video12560", "sen_id": 247459}, {"caption": "we see three different posters for the movie zodiac", "video_id": "video10884", "sen_id": 247460}, {"caption": "the video shows still shots of the movie zodiac", "video_id": "video10884", "sen_id": 247461}, {"caption": "movie plots and sequels about movies from 2007 and before", "video_id": "video10884", "sen_id": 247462}, {"caption": "the word zodiac is shown in various locations", "video_id": "video10884", "sen_id": 247463}, {"caption": "different posters for a zodiac movie and the years they were put out", "video_id": "video10884", "sen_id": 247464}, {"caption": "different movie posters that say zodiac", "video_id": "video10884", "sen_id": 247465}, {"caption": "its about the zodic advertisement by a woman", "video_id": "video10884", "sen_id": 247466}, {"caption": "an advertisement of zodiac 2007 is being displayed", "video_id": "video10884", "sen_id": 247467}, {"caption": "posters for the movie zodiac set to i love rock and roll by joan jett", "video_id": "video10884", "sen_id": 247468}, {"caption": "music is being played for 11 # zodiac", "video_id": "video10884", "sen_id": 247469}, {"caption": "the song i love rock and roll plays while the screen shows the word zodiac several times", "video_id": "video10884", "sen_id": 247470}, {"caption": "there are some movie posters with new style", "video_id": "video10884", "sen_id": 247471}, {"caption": "11 # zodiac 2007 is the zodiac speaking", "video_id": "video10884", "sen_id": 247472}, {"caption": "a lady has her hands up to a window in therror", "video_id": "video10884", "sen_id": 247473}, {"caption": "covers for horror and suspense movies being shown with music playing", "video_id": "video10884", "sen_id": 247474}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10884", "sen_id": 247475}, {"caption": "a short slideshow presents three different movie posters for the 2007 film zodiac", "video_id": "video10884", "sen_id": 247476}, {"caption": "a few different poster displays for the movie zodiac is shown", "video_id": "video10884", "sen_id": 247477}, {"caption": "shots of art work about the band zodiac are shown while i love rock and roll plays", "video_id": "video10884", "sen_id": 247478}, {"caption": "list of movies being shown on screen", "video_id": "video10884", "sen_id": 247479}, {"caption": "a young girl walks onto her deck and strolls around for a few seconds", "video_id": "video12105", "sen_id": 247480}, {"caption": "a girl walks around on a deck and flips her hair", "video_id": "video12105", "sen_id": 247481}, {"caption": "a young woman on a balcony posing and twirling in an outfit", "video_id": "video12105", "sen_id": 247482}, {"caption": "a young girl models a blue shirt and jean shorts", "video_id": "video12105", "sen_id": 247483}, {"caption": "a young girl walking around on her patio", "video_id": "video12105", "sen_id": 247484}, {"caption": "a girl in a blue top blows a kiss at the camera", "video_id": "video12105", "sen_id": 247485}, {"caption": "in a balcony a girl in blue dress walks around and gives various pose", "video_id": "video12105", "sen_id": 247486}, {"caption": "a girl modeling her out fit outside and blowing kisses", "video_id": "video12105", "sen_id": 247487}, {"caption": "a teen girl wearing jean shorts and a blue top practices her model walk on an outdoor patio", "video_id": "video12105", "sen_id": 247488}, {"caption": "a girl in light blue cloth is dancing in a courtyard", "video_id": "video12105", "sen_id": 247489}, {"caption": "a woman in a blue shirt is walking on a deck throwing kisses", "video_id": "video12105", "sen_id": 247490}, {"caption": "some girl showing off her new top and shorts maybe for sale", "video_id": "video12105", "sen_id": 247491}, {"caption": "a woman demonstrates and flaunts a blue blouse", "video_id": "video12105", "sen_id": 247492}, {"caption": "a young girl in a blue shirt is walking out on a patio and slowly spinning around", "video_id": "video12105", "sen_id": 247493}, {"caption": "the small girl will practice the fashion show cat walk and the performance on her house", "video_id": "video12105", "sen_id": 247494}, {"caption": "a beautiful young girl posing and kissing for the camera", "video_id": "video12105", "sen_id": 247495}, {"caption": "a young girl outside on a sunny day", "video_id": "video12105", "sen_id": 247496}, {"caption": "a lady wearing shorts with a baby blue shirt", "video_id": "video12105", "sen_id": 247497}, {"caption": "trying to do dance practice but returns indoor very lovely", "video_id": "video12105", "sen_id": 247498}, {"caption": "a girl in a blue shirt is walking around", "video_id": "video12105", "sen_id": 247499}, {"caption": "an eye black shoes and a woman in a stars and stripe bathing suit", "video_id": "video12582", "sen_id": 247500}, {"caption": "a clip from a music video that shows a woman", "video_id": "video12582", "sen_id": 247501}, {"caption": "an eyeball opens and the opening credits of a television show are depicted within", "video_id": "video12582", "sen_id": 247502}, {"caption": "a naked woman kneeling in high heels and a silhouette of a man inside a man's head", "video_id": "video12582", "sen_id": 247503}, {"caption": "a woman wearing a united states bikini and dancing", "video_id": "video12582", "sen_id": 247504}, {"caption": "a music video of a man an a women with a short skirt and heels", "video_id": "video12582", "sen_id": 247505}, {"caption": "several images are being shown inside other images", "video_id": "video12582", "sen_id": 247506}, {"caption": "a mascara-covered eye opens and reflects vehicles a pair of spiked high heels is below an industrial road and an oil-drilling complex merges with a man's face and a woman's patriotic body", "video_id": "video12582", "sen_id": 247507}, {"caption": "a girl is opening her beautiful black eyes", "video_id": "video12582", "sen_id": 247508}, {"caption": "compare to various things in the beautiful lady", "video_id": "video12582", "sen_id": 247509}, {"caption": "women open his eyes and everything there in world", "video_id": "video12582", "sen_id": 247510}, {"caption": "an intro to a show on television that is airing live", "video_id": "video12582", "sen_id": 247511}, {"caption": "a woman open her eye and a man comming on that", "video_id": "video12582", "sen_id": 247512}, {"caption": "a song from a famous music album focusing a girl s eye which is opened slowly and attractively", "video_id": "video12582", "sen_id": 247513}, {"caption": "the vision is important for life so useful in saw any life articles", "video_id": "video12582", "sen_id": 247514}, {"caption": "eyes hair of a girl eye browse a still image of music", "video_id": "video12582", "sen_id": 247515}, {"caption": "pretty model in bathing suit posing for the advertisement", "video_id": "video12582", "sen_id": 247516}, {"caption": "a release of a new music video of an singer showing actress and guitar", "video_id": "video12582", "sen_id": 247517}, {"caption": "a eye is opening and some animated mechanism id displayed", "video_id": "video12582", "sen_id": 247518}, {"caption": "an incomprehensible scene is playing itself out", "video_id": "video12582", "sen_id": 247519}, {"caption": "under water video showing fish and seabed with music playing", "video_id": "video11425", "sen_id": 247520}, {"caption": "the sea floor of the ocean in the sea", "video_id": "video11425", "sen_id": 247521}, {"caption": "many small fish swim along the ocean floor", "video_id": "video11425", "sen_id": 247522}, {"caption": "underwater scene including fish and coral music playing is tennis court", "video_id": "video11425", "sen_id": 247523}, {"caption": "many fish are swimming deep below the surface of the ocean", "video_id": "video11425", "sen_id": 247524}, {"caption": "there are some fish floating under the sea", "video_id": "video11425", "sen_id": 247525}, {"caption": "underwater view of coral reefs and small fishes swimming under water", "video_id": "video11425", "sen_id": 247526}, {"caption": "a fishes are swimming in the deep of blue water", "video_id": "video11425", "sen_id": 247527}, {"caption": "a person dives in shallow water off a boat with friends", "video_id": "video11425", "sen_id": 247528}, {"caption": "fish swim in the water around each other and rocks", "video_id": "video11425", "sen_id": 247529}, {"caption": "upbeat pop music plays while you see views of the ocean reef", "video_id": "video11425", "sen_id": 247530}, {"caption": "fish swim near the ocean floor as the sun shines through crystal blue water", "video_id": "video11425", "sen_id": 247531}, {"caption": "a small ocean with fishes with background music", "video_id": "video11425", "sen_id": 247532}, {"caption": "a water scene fish inside water moving in water displaying on screen", "video_id": "video11425", "sen_id": 247533}, {"caption": "some fish are swimming around in the water", "video_id": "video11425", "sen_id": 247534}, {"caption": "the sea with school of fishes near the bottom having corals", "video_id": "video11425", "sen_id": 247535}, {"caption": "lorde is playing in the background while images of the ocean are playing", "video_id": "video11425", "sen_id": 247536}, {"caption": "a person goes under water then a few fish swims on the bottom", "video_id": "video11425", "sen_id": 247537}, {"caption": "a school of fish being recorder underwater in the ocean for a music video", "video_id": "video11425", "sen_id": 247538}, {"caption": "some water is being filmed in a place", "video_id": "video11425", "sen_id": 247539}, {"caption": "a man is walking with a woman outside and romantic music is playing", "video_id": "video12504", "sen_id": 247540}, {"caption": "a man and a woman walking side by side", "video_id": "video12504", "sen_id": 247541}, {"caption": "a man and a woman slowly walking while holding each other", "video_id": "video12504", "sen_id": 247542}, {"caption": "a young asian couple is strolling slowly under a palm tree", "video_id": "video12504", "sen_id": 247543}, {"caption": "a young couple walking next to a tree", "video_id": "video12504", "sen_id": 247544}, {"caption": "there is a woman in rose dressing walking with a man", "video_id": "video12504", "sen_id": 247545}, {"caption": "a young asian boy and girl couple are strolling casually", "video_id": "video12504", "sen_id": 247546}, {"caption": "a boy and girl in love are walking next to palm trees", "video_id": "video12504", "sen_id": 247547}, {"caption": "a young man holds a woman in purple dress walking through park", "video_id": "video12504", "sen_id": 247548}, {"caption": "a man and woman walk together past the trees and bushes", "video_id": "video12504", "sen_id": 247549}, {"caption": "two people lowly walking outside on a very beautiful day with the sun setting in the horizon", "video_id": "video12504", "sen_id": 247550}, {"caption": "the asian couple walks in the field with man wrapping his arm around the woman", "video_id": "video12504", "sen_id": 247551}, {"caption": "a girl and boy walking together through a nice area", "video_id": "video12504", "sen_id": 247552}, {"caption": "a man and woman is walking outside arm in arm", "video_id": "video12504", "sen_id": 247553}, {"caption": "a woman with brown hair is talking about something", "video_id": "video12504", "sen_id": 247554}, {"caption": "a couple walks together in a tropical paradise", "video_id": "video12504", "sen_id": 247555}, {"caption": "a man is walking outside with his arm over another lady", "video_id": "video12504", "sen_id": 247556}, {"caption": "a couple walks throught the park and spends time", "video_id": "video12504", "sen_id": 247557}, {"caption": "a man walks with his arm around a woman next to him", "video_id": "video12504", "sen_id": 247558}, {"caption": "some people in a place are hugging each other", "video_id": "video12504", "sen_id": 247559}, {"caption": "a man talking about and showing roasted potaoes and what looks like a hamburger w lettuce on top", "video_id": "video10567", "sen_id": 247560}, {"caption": "a patty of raw meat is resting on a cutting board and it is garnished", "video_id": "video10567", "sen_id": 247561}, {"caption": "twisting time a soft fresh fancily designed chef look raw fish dish presented with chives chopped veggies french fries or roasted potatoes with delicate & tangy flavor all resting on a chic wooden cutting board", "video_id": "video10567", "sen_id": 247562}, {"caption": "a person describes putting together a meal while displaying it on a wooden cutting board", "video_id": "video10567", "sen_id": 247563}, {"caption": "a man talking about how he is making potatoes", "video_id": "video10567", "sen_id": 247564}, {"caption": "a man is preparing a meal with a side of potatoes", "video_id": "video10567", "sen_id": 247565}, {"caption": "the cook has prepared some kind of meat pattie dish and discusses what to serve it with", "video_id": "video10567", "sen_id": 247566}, {"caption": "a man shows meat shaped in a silver mold and he serves it alongside potatoes", "video_id": "video10567", "sen_id": 247567}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10567", "sen_id": 247568}, {"caption": "a man preparing a dish with meat and potatoes and vegetables", "video_id": "video10567", "sen_id": 247569}, {"caption": "a man made a salad and explains how it will taste better with sweet potatoes", "video_id": "video10567", "sen_id": 247570}, {"caption": "a person cooking all vegetables as a sandwich on a table", "video_id": "video10567", "sen_id": 247571}, {"caption": "a food prepared of vegetables is kept on table and being decorated with leaves", "video_id": "video10567", "sen_id": 247572}, {"caption": "a chef talks about a recipe presentation he is doing on a plank of wood", "video_id": "video10567", "sen_id": 247573}, {"caption": "a chef finishes up cooking a fancy dish showing what sides and garnishes should go with it", "video_id": "video10567", "sen_id": 247574}, {"caption": "a person is making some pudding and he is decorating the pudding with leaves and roasted potato", "video_id": "video10567", "sen_id": 247575}, {"caption": "there is a man talking about a recipe", "video_id": "video10567", "sen_id": 247576}, {"caption": "a beaf salad is prepared and kept on wooden board and boiled potato are kept aside", "video_id": "video10567", "sen_id": 247577}, {"caption": "a vegetables on table inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10567", "sen_id": 247578}, {"caption": "a man is explaining how to make a french meal", "video_id": "video10567", "sen_id": 247579}, {"caption": "a girl and her cat in a bedroom the girl turns on the light and the cat jumps up and turns it off multiple times", "video_id": "video12973", "sen_id": 247580}, {"caption": "a lady tries to turn on a light when she turns around the cat turns it off", "video_id": "video12973", "sen_id": 247581}, {"caption": "the black dress girl make the dance in the room", "video_id": "video12973", "sen_id": 247582}, {"caption": "there is a woman playing with a black cat", "video_id": "video12973", "sen_id": 247583}, {"caption": "cat efficiently steals the show from amateur dancer", "video_id": "video12973", "sen_id": 247584}, {"caption": "a person is standing in a bedroom with a cat and is turning on and off a light a cat turns off the light", "video_id": "video12973", "sen_id": 247585}, {"caption": "a girl in pajamas dances with cat in hallway", "video_id": "video12973", "sen_id": 247586}, {"caption": "a black cat jumps from the floor to the light switch and turns it off repeatedly", "video_id": "video12973", "sen_id": 247587}, {"caption": "music is playing while a woman is gesturing and having to continually turn the lights on because her cat keeps turning the lights off", "video_id": "video12973", "sen_id": 247588}, {"caption": "a lady in pajamas is turning the light on the cat turning the lights off", "video_id": "video12973", "sen_id": 247589}, {"caption": "the woman is standing in the room and playing with the kitten", "video_id": "video12973", "sen_id": 247590}, {"caption": "a young woman plays around with a mischievous cat", "video_id": "video12973", "sen_id": 247591}, {"caption": "a women in black dress is singing happily", "video_id": "video12973", "sen_id": 247592}, {"caption": "a woman is turning the lights on and after a few seconds the cat climb up the wall and reached for the switch and turned the lights off", "video_id": "video12973", "sen_id": 247593}, {"caption": "a girl wears black dress doing some dance movements in her home", "video_id": "video12973", "sen_id": 247594}, {"caption": "young teenager dancing like an ass and being mean to an animal", "video_id": "video12973", "sen_id": 247595}, {"caption": "a woman doing a presentation while a cat makes a joke", "video_id": "video12973", "sen_id": 247596}, {"caption": "a girl in her room turns the light on to do a dance but the cat keeps jumping up to turn the light off", "video_id": "video12973", "sen_id": 247597}, {"caption": "a girl in black dress color cloth standing shaking hand switching on light cat jumping switch off beside displaying on screen", "video_id": "video12973", "sen_id": 247598}, {"caption": "a woman turns a room light on then off and her cat jumps on the wall then she throws it", "video_id": "video12973", "sen_id": 247599}, {"caption": "a man discusses record snowfall and a very large wave wit a surfer on it", "video_id": "video10257", "sen_id": 247600}, {"caption": "some one showing the beautiful snow covered mountains", "video_id": "video10257", "sen_id": 247601}, {"caption": "a man is talking about a record breaking cy-cloneits going to beand how dangerous", "video_id": "video10257", "sen_id": 247602}, {"caption": "a man is talking about a sea water skating", "video_id": "video10257", "sen_id": 247603}, {"caption": "a person is explaining about the tsunami which is happening at the oceans", "video_id": "video10257", "sen_id": 247604}, {"caption": "a review and official record of a cyclone and it s progress on sea", "video_id": "video10257", "sen_id": 247605}, {"caption": "there is a tsunami coming to the shore", "video_id": "video10257", "sen_id": 247606}, {"caption": "water goes more high and went to sea", "video_id": "video10257", "sen_id": 247607}, {"caption": "a person describes the size of a surfing wave as you see the surfer gliding ahead of the huge wave", "video_id": "video10257", "sen_id": 247608}, {"caption": "a person is describing about the natural calamity", "video_id": "video10257", "sen_id": 247609}, {"caption": "a man surfing a massive wave while another man narrates the captured video", "video_id": "video10257", "sen_id": 247610}, {"caption": "a few people stand on a tan building roof by a narrow red windowed structure and look at a mountain-size wave with dripping water", "video_id": "video10257", "sen_id": 247611}, {"caption": "its awesome pic water are coming so fast waves are nice person doing surfing", "video_id": "video10257", "sen_id": 247612}, {"caption": "a weatherman speaking about great waves", "video_id": "video10257", "sen_id": 247613}, {"caption": "a man is surfing around on a beach in the day", "video_id": "video10257", "sen_id": 247614}, {"caption": "a man discussing weather patterns with shots of ocean waves", "video_id": "video10257", "sen_id": 247615}, {"caption": "there are volcano and a big waves in the sea and a person is scatting in the sea", "video_id": "video10257", "sen_id": 247616}, {"caption": "a man is talking about huge waves and if one has made a new record", "video_id": "video10257", "sen_id": 247617}, {"caption": "narrator talks about devestating effects of tsunamis", "video_id": "video10257", "sen_id": 247618}, {"caption": "waves are crashing on an outdoor beach", "video_id": "video10257", "sen_id": 247619}, {"caption": "a cook prepares a meal with a variety of ingredients", "video_id": "video11969", "sen_id": 247620}, {"caption": "brown stew simmering with brown liquid inside of a silver pan", "video_id": "video11969", "sen_id": 247621}, {"caption": "a woman stirs her curry dish on the stove", "video_id": "video11969", "sen_id": 247622}, {"caption": "there is a boiling pot of soup then water is being poured into the pot and then the contents are stirred with a wooden spoon", "video_id": "video11969", "sen_id": 247623}, {"caption": "a woman is adding some water to the curry while preparing in the kitchen", "video_id": "video11969", "sen_id": 247624}, {"caption": "a chef works on a recipe by stirring a pot of meat and vegetables", "video_id": "video11969", "sen_id": 247625}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11969", "sen_id": 247626}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11969", "sen_id": 247627}, {"caption": "a hindi home made stew for eat use", "video_id": "video11969", "sen_id": 247628}, {"caption": "that looks delicious i wish i could try it", "video_id": "video11969", "sen_id": 247629}, {"caption": "food cooking in a pot and water being added to the mixture and then stirred", "video_id": "video11969", "sen_id": 247630}, {"caption": "someone adding water to a stew on a stove while it is bubbling and stirring", "video_id": "video11969", "sen_id": 247631}, {"caption": "someone is stirring a dish being prepared in a vessel and adds some water", "video_id": "video11969", "sen_id": 247632}, {"caption": "a gravy is boiling in the bowl while a chef explains it and pour water to it", "video_id": "video11969", "sen_id": 247633}, {"caption": "a bowl inside kitchen water pouring inside bowl cury to prepare to serve to eat", "video_id": "video11969", "sen_id": 247634}, {"caption": "a pot on the stove with a stew cooking", "video_id": "video11969", "sen_id": 247635}, {"caption": "a woman speaking a language other than english adds and mixes ingredients to a pan of boiling food", "video_id": "video11969", "sen_id": 247636}, {"caption": "a woman is cooking a curry inthe pan", "video_id": "video11969", "sen_id": 247637}, {"caption": "a woman instructing how to make a recipe on a stove while making the recipe", "video_id": "video11969", "sen_id": 247638}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11969", "sen_id": 247639}, {"caption": "a blonde woman sings poolside while wearing jewelry and trusting", "video_id": "video11432", "sen_id": 247640}, {"caption": "lady gaga is singing in a music video and sitting near water", "video_id": "video11432", "sen_id": 247641}, {"caption": "a woman is wearing a leather outfit and sitting by the pool", "video_id": "video11432", "sen_id": 247642}, {"caption": "lady gaga singing poker face next to a swimming pool", "video_id": "video11432", "sen_id": 247643}, {"caption": "a woman in a black outfit is performing a song", "video_id": "video11432", "sen_id": 247644}, {"caption": "a woman in black dressing walking nearby a pool", "video_id": "video11432", "sen_id": 247645}, {"caption": "a woman is dancing around a brightly lit white setting with things like a dalmation while singing poker face by lady gaga", "video_id": "video11432", "sen_id": 247646}, {"caption": "lady gag with a black outfit sings about a man", "video_id": "video11432", "sen_id": 247647}, {"caption": "a lady in black singing a sexy song and dancing", "video_id": "video11432", "sen_id": 247648}, {"caption": "the beautiful girl in black dress is singing and dancing in the swimming pool and stage", "video_id": "video11432", "sen_id": 247649}, {"caption": "a women sings song in english", "video_id": "video11432", "sen_id": 247650}, {"caption": "women with long blonde hair sings and dances around pool in black leather", "video_id": "video11432", "sen_id": 247651}, {"caption": "girl in red dress singing and dancing", "video_id": "video11432", "sen_id": 247652}, {"caption": "lady gaga is dancing while singing to her song", "video_id": "video11432", "sen_id": 247653}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video11432", "sen_id": 247654}, {"caption": "nice song is sung by a lady with queer hair style", "video_id": "video11432", "sen_id": 247655}, {"caption": "a woman with fake blond hair is singing and dancing", "video_id": "video11432", "sen_id": 247656}, {"caption": "a very cute girl singing and also dancing in rocking style", "video_id": "video11432", "sen_id": 247657}, {"caption": "a girl in black color dress wearing cloth dog sitting beside dancing singing displaying on screen", "video_id": "video11432", "sen_id": 247658}, {"caption": "a lady wearing black latex dress having white hair is singing and a big dog is sit along her side", "video_id": "video11432", "sen_id": 247659}, {"caption": "several women are lip syncing a pop song towards men who look on with approval", "video_id": "video12682", "sen_id": 247660}, {"caption": "a group of women and men perform to a lady gaga track", "video_id": "video12682", "sen_id": 247661}, {"caption": "a group of young people that appear to be naked dance and sing", "video_id": "video12682", "sen_id": 247662}, {"caption": "men and women lip syncing to a song while dancing", "video_id": "video12682", "sen_id": 247663}, {"caption": "a young girl with long brown hair singing a song", "video_id": "video12682", "sen_id": 247664}, {"caption": "mean and women lip sync to a dance song", "video_id": "video12682", "sen_id": 247665}, {"caption": "a young blond girl is dancing in a seductive way", "video_id": "video12682", "sen_id": 247666}, {"caption": "a group of girls sing a pop song in front of flashing fluorescent lights", "video_id": "video12682", "sen_id": 247667}, {"caption": "a group of young people that all appear to be naked dance and sing", "video_id": "video12682", "sen_id": 247668}, {"caption": "there is a woman singing with a half nacked boy", "video_id": "video12682", "sen_id": 247669}, {"caption": "people singing and moving around", "video_id": "video12682", "sen_id": 247670}, {"caption": "a group of women singing a song while wearing little clothing", "video_id": "video12682", "sen_id": 247671}, {"caption": "several girls and boys are dancing and singing in front of a spot light", "video_id": "video12682", "sen_id": 247672}, {"caption": "men and women dancing and singing along to a pop song", "video_id": "video12682", "sen_id": 247673}, {"caption": "three different women singing in front of a bright light and different men smiling", "video_id": "video12682", "sen_id": 247674}, {"caption": "two woman lipsynching to lady gaga and givng seductive looks", "video_id": "video12682", "sen_id": 247675}, {"caption": "men and women take turns on split screens seductively sing a together", "video_id": "video12682", "sen_id": 247676}, {"caption": "a woman and a man are dancing for a song", "video_id": "video12682", "sen_id": 247677}, {"caption": "a lady with crazy hair dances with a blue light over her face", "video_id": "video12682", "sen_id": 247678}, {"caption": "boys and girls diplaying various facial expressions according to the words being spoken", "video_id": "video12682", "sen_id": 247679}, {"caption": "a character shoots lots of bad guys in a side-scrolling video game", "video_id": "video11452", "sen_id": 247680}, {"caption": "there is a video game of a character with pink hair jumping and shooting through a two dimensional scenario", "video_id": "video11452", "sen_id": 247681}, {"caption": "a purple-haired character shoots at orange hopping opponents and flying purple enemies in an elegant house with chandeliers by following the staircases railings and platforms", "video_id": "video11452", "sen_id": 247682}, {"caption": "a video game is being played of a character shooting running and jumping", "video_id": "video11452", "sen_id": 247683}, {"caption": "someone is playing a video game and shooting differnt things in the game", "video_id": "video11452", "sen_id": 247684}, {"caption": "a video game character with pink hair is shooting different monsters", "video_id": "video11452", "sen_id": 247685}, {"caption": "the character shoots a weapon and jumps across the screen", "video_id": "video11452", "sen_id": 247686}, {"caption": "a person describes and demonstrates a video game that they are playing", "video_id": "video11452", "sen_id": 247687}, {"caption": "there is a video game of a man is running and shooting", "video_id": "video11452", "sen_id": 247688}, {"caption": "its a video game a girls kills everybody", "video_id": "video11452", "sen_id": 247689}, {"caption": "video shooting game one man shoots and going up wards", "video_id": "video11452", "sen_id": 247690}, {"caption": "footage of a side-scrolling 8bit platform video game", "video_id": "video11452", "sen_id": 247691}, {"caption": "a scene from the halo video game is being filmed", "video_id": "video11452", "sen_id": 247692}, {"caption": "someone is playing a computer video game so nicely", "video_id": "video11452", "sen_id": 247693}, {"caption": "a video game is playing in the screen", "video_id": "video11452", "sen_id": 247694}, {"caption": "some one is playing a video game on a screen", "video_id": "video11452", "sen_id": 247695}, {"caption": "a person is shooting with gun in his hand", "video_id": "video11452", "sen_id": 247696}, {"caption": "video game shooting fire game is play by man makes it", "video_id": "video11452", "sen_id": 247697}, {"caption": "a young man describes and demonstrates a video game that he is playing", "video_id": "video11452", "sen_id": 247698}, {"caption": "an old style first person shooter video game is demonstrated", "video_id": "video11452", "sen_id": 247699}, {"caption": "a home improvement project for a cupboard", "video_id": "video11874", "sen_id": 247700}, {"caption": "diferent angles of a white box with a hinged door project", "video_id": "video11874", "sen_id": 247701}, {"caption": "a man works to repair a small white bathroom cabinet", "video_id": "video11874", "sen_id": 247702}, {"caption": "a person illustrates their poor installation of a hook and latch closure", "video_id": "video11874", "sen_id": 247703}, {"caption": "this clip is showing a video of someone doing a home project", "video_id": "video11874", "sen_id": 247704}, {"caption": "a hand lifts a piece of ridged wooden trim which is placed on top of a hinged and locked white box with wire-mesh screening covering the rectangular opening", "video_id": "video11874", "sen_id": 247705}, {"caption": "graphic dipicting dyi attempts of fixing a indoor home improvement project", "video_id": "video11874", "sen_id": 247706}, {"caption": "pictures show that someone is attempting to secure a door", "video_id": "video11874", "sen_id": 247707}, {"caption": "window panes with unsuccessfully fixed hooks with white color", "video_id": "video11874", "sen_id": 247708}, {"caption": "someone is showing their failed attempts of installing a latch hook lock and then showing a piece of wood", "video_id": "video11874", "sen_id": 247709}, {"caption": "guy holding a white colored wooden piece", "video_id": "video11874", "sen_id": 247710}, {"caption": "a worker is showing their attempts at making a screen door", "video_id": "video11874", "sen_id": 247711}, {"caption": "a man taking a piece of plywoof", "video_id": "video11874", "sen_id": 247712}, {"caption": "a person is trying to do some plumber work in a bathroom", "video_id": "video11874", "sen_id": 247713}, {"caption": "person picking a white colored wood piece", "video_id": "video11874", "sen_id": 247714}, {"caption": "music plays while different hook latches are shown", "video_id": "video11874", "sen_id": 247715}, {"caption": "different shots of white hinges and wooden pieces are shown in close-up", "video_id": "video11874", "sen_id": 247716}, {"caption": "a person is taking some plastic material", "video_id": "video11874", "sen_id": 247717}, {"caption": "a person shows his failed attempts at do it yourself repair he may have tried at his home", "video_id": "video11874", "sen_id": 247718}, {"caption": "a person doing home repairs and the outcomes", "video_id": "video11874", "sen_id": 247719}, {"caption": "a man and a woman set on a motorcycle near a car port", "video_id": "video12117", "sen_id": 247720}, {"caption": "a lady and a gentleman have just finished their ride on their motorcycle", "video_id": "video12117", "sen_id": 247721}, {"caption": "recording a man and a woman on a motorcycle", "video_id": "video12117", "sen_id": 247722}, {"caption": "a man and woman riding a black motorcycle with a black truck in the background", "video_id": "video12117", "sen_id": 247723}, {"caption": "a beautiful house view with two people in bike", "video_id": "video12117", "sen_id": 247724}, {"caption": "two people are starting the two wheeler with block helmet", "video_id": "video12117", "sen_id": 247725}, {"caption": "a boy wearing helmet in blue dress standing and a car beside on road", "video_id": "video12117", "sen_id": 247726}, {"caption": "two people riding on a bike wearing helmet", "video_id": "video12117", "sen_id": 247727}, {"caption": "the two people are arived in the bike in an new home and watching the atmosphere", "video_id": "video12117", "sen_id": 247728}, {"caption": "a car was parking near the steps of a river and two men in a bike are just behind that", "video_id": "video12117", "sen_id": 247729}, {"caption": "couple of people in the helmet get off their bike", "video_id": "video12117", "sen_id": 247730}, {"caption": "two persons wearing helmates and sitting on bikes", "video_id": "video12117", "sen_id": 247731}, {"caption": "two people ride a motorcycle into a parking area near some jungle type area", "video_id": "video12117", "sen_id": 247732}, {"caption": "two friends are going on trip with their amazing black vehicle", "video_id": "video12117", "sen_id": 247733}, {"caption": "a helmeted man and a helmeted woman on a motorcycle standing still", "video_id": "video12117", "sen_id": 247734}, {"caption": "a person is filming a side walk and two guys", "video_id": "video12117", "sen_id": 247735}, {"caption": "there is someone reached in front of a car", "video_id": "video12117", "sen_id": 247736}, {"caption": "a boy and a girl sit in the bike the girl is wearing blue jerkin", "video_id": "video12117", "sen_id": 247737}, {"caption": "a boy in blue dress wearing helmet sitting in bike and car beside parking displaying on screen", "video_id": "video12117", "sen_id": 247738}, {"caption": "a bike is being started and swithced off", "video_id": "video12117", "sen_id": 247739}, {"caption": "man is singing about his dead animal den and where he watches movies", "video_id": "video10685", "sen_id": 247740}, {"caption": "a man sings about movie night while viewing a room full of taxidermied animals", "video_id": "video10685", "sen_id": 247741}, {"caption": "heads and bodies of dead animals are shown all around the room", "video_id": "video10685", "sen_id": 247742}, {"caption": "animal heads and 1 stuffed goat turkey and fox are mounted in a recreation room", "video_id": "video10685", "sen_id": 247743}, {"caption": "man talking about movie night and the dead animals on the walls", "video_id": "video10685", "sen_id": 247744}, {"caption": "a room full of stuffed animals on a wall at a persons home", "video_id": "video10685", "sen_id": 247745}, {"caption": "a guy excitedly talks about movie night in a den full of dead animals that are mounted", "video_id": "video10685", "sen_id": 247746}, {"caption": "a dad is filing movie night in the dead animal den and singing to the stuffed and mounted animals", "video_id": "video10685", "sen_id": 247747}, {"caption": "a father serenades his children in song while stuffed animals are being displayed", "video_id": "video10685", "sen_id": 247748}, {"caption": "a man is talking and the various product in the room", "video_id": "video10685", "sen_id": 247749}, {"caption": "a man makes up a song about all the dead animals", "video_id": "video10685", "sen_id": 247750}, {"caption": "a man is singing as he takes a video of the people and the animals in a room", "video_id": "video10685", "sen_id": 247751}, {"caption": "poeple sleeping in a house with many animal heads on the wall", "video_id": "video10685", "sen_id": 247752}, {"caption": "animal heads decorated on walls", "video_id": "video10685", "sen_id": 247753}, {"caption": "wild life trophies kept - against international law of cites", "video_id": "video10685", "sen_id": 247754}, {"caption": "people sit in a room with many dead animals around", "video_id": "video10685", "sen_id": 247755}, {"caption": "there is a man walking through the room", "video_id": "video10685", "sen_id": 247756}, {"caption": "the person walks through the house and looks at the animals on display", "video_id": "video10685", "sen_id": 247757}, {"caption": "a room with many different dead animal heads mounted to it s four walls", "video_id": "video10685", "sen_id": 247758}, {"caption": "a man is singing about movie night to his family in a room filled with various taxidermied animals", "video_id": "video10685", "sen_id": 247759}, {"caption": "a blond woman is singing in her underwear and crop top while dozens of other people dance around her", "video_id": "video10461", "sen_id": 247760}, {"caption": "a group of dancers both male and female are dressed in white dances on a flower decorated white stage", "video_id": "video10461", "sen_id": 247761}, {"caption": "a white-haired woman lies on a bed of white flowers and a woman sings and dances in a white bikini on a round platform surrounded by dancers wearing white under round red garlands", "video_id": "video10461", "sen_id": 247762}, {"caption": "some techno pop funk music plays as a woman in a white bikini dances on a platform in the center of other dancers dressed in white", "video_id": "video10461", "sen_id": 247763}, {"caption": "a woman in white lies among flowers while a group of dancers in white skimpy outfits are dancing", "video_id": "video10461", "sen_id": 247764}, {"caption": "a woman dressed in a white bikini is singing and dancing around a bunch of men", "video_id": "video10461", "sen_id": 247765}, {"caption": "there is a woman dancing with some people in white dressing", "video_id": "video10461", "sen_id": 247766}, {"caption": "the woman in white dress is singing and dancing while others are supporting her", "video_id": "video10461", "sen_id": 247767}, {"caption": "a lady in white dress is dancing with her group dancers and the place is decorated with white flowers", "video_id": "video10461", "sen_id": 247768}, {"caption": "a choreographed routine in a mostly white room and a singer also dancing in the center", "video_id": "video10461", "sen_id": 247769}, {"caption": "a woman ( lady gaga ) in white is singing together with her group", "video_id": "video10461", "sen_id": 247770}, {"caption": "a woman with white hair sings in the center of other people in white who are dancing", "video_id": "video10461", "sen_id": 247771}, {"caption": "lady gaga and a group of both female and male dancers all clad in white are dancing to in a choreographed manner to one of lady gaga s songs", "video_id": "video10461", "sen_id": 247772}, {"caption": "lady gaga dances and poses in white skimpy outfits with dancers dancing around her", "video_id": "video10461", "sen_id": 247773}, {"caption": "several people wearing white are dancing in a music video", "video_id": "video10461", "sen_id": 247774}, {"caption": "a sexy girl in white bikini shaking her hip and singing", "video_id": "video10461", "sen_id": 247775}, {"caption": "a lot of men and women dressed in white dancing one woman is singing i want to be the girl", "video_id": "video10461", "sen_id": 247776}, {"caption": "women and men gang dancing in the place which is decorated with the flowers", "video_id": "video10461", "sen_id": 247777}, {"caption": "sequence of steps and movements in the staged dance is very exciting", "video_id": "video10461", "sen_id": 247778}, {"caption": "a group of people are dancing in a room", "video_id": "video10461", "sen_id": 247779}, {"caption": "a woman is adding some spices into the bowl and mixing the meat", "video_id": "video11142", "sen_id": 247780}, {"caption": "a chef works on a recipe by stirring some ingredients in a white bowl", "video_id": "video11142", "sen_id": 247781}, {"caption": "woman cooking a dish in her kitchen for someone", "video_id": "video11142", "sen_id": 247782}, {"caption": "the woman is adding finely diced ginger to the meat which will be aromatic", "video_id": "video11142", "sen_id": 247783}, {"caption": "a woman is presenting a food recipe consisting of mixing chopped ingredients together", "video_id": "video11142", "sen_id": 247784}, {"caption": "a young asian women mixes ingredients into a white bowl", "video_id": "video11142", "sen_id": 247785}, {"caption": "an asian woman is explaining how to prepare a certain meal", "video_id": "video11142", "sen_id": 247786}, {"caption": "a young woman with pink lips is making a cooking tutorial", "video_id": "video11142", "sen_id": 247787}, {"caption": "a lady adding ginger and mixing chicken pieces in a bowl", "video_id": "video11142", "sen_id": 247788}, {"caption": "a woman is adding a ingredients in to the bowl", "video_id": "video11142", "sen_id": 247789}, {"caption": "a lady with wearing black dress on a kitchen mixing meat with chopped ginger on a white bowl", "video_id": "video11142", "sen_id": 247790}, {"caption": "home cooking in a kitchen and using ginger in the recipe", "video_id": "video11142", "sen_id": 247791}, {"caption": "in the kitchen a woman in black preparing a dish with ginger", "video_id": "video11142", "sen_id": 247792}, {"caption": "a woman in the kitchen adding ingredients to a bowl", "video_id": "video11142", "sen_id": 247793}, {"caption": "a girl in blue dress inside kitchen mixing dish to prepare to cook to serve to eat displaying on screen", "video_id": "video11142", "sen_id": 247794}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11142", "sen_id": 247795}, {"caption": "women is cleanig chicken and marinating it with spoon in a bowl", "video_id": "video11142", "sen_id": 247796}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video11142", "sen_id": 247797}, {"caption": "a lady adds finely chopped ginger to the fish ingredient", "video_id": "video11142", "sen_id": 247798}, {"caption": "a girl in blue dress inside kitchen mixing in abowl ingredients and string well with hands shown on the screen", "video_id": "video11142", "sen_id": 247799}, {"caption": "a woman in glasses is giving a talk at a desk", "video_id": "video10472", "sen_id": 247800}, {"caption": "a woman in black glasses sits at a school desk and defines the word engineer", "video_id": "video10472", "sen_id": 247801}, {"caption": "a lady with pink overcoat explains the engineering studies", "video_id": "video10472", "sen_id": 247802}, {"caption": "a woman in collared shirt sits at desks in classroom with topics on engineering displayed", "video_id": "video10472", "sen_id": 247803}, {"caption": "a woman in pink is speaking about engineers", "video_id": "video10472", "sen_id": 247804}, {"caption": "a woman talks about what kinds of jobs engineers do", "video_id": "video10472", "sen_id": 247805}, {"caption": "a woman is explaining the duties of various types of engineers", "video_id": "video10472", "sen_id": 247806}, {"caption": "a young woman with dark hair and glasses is talking about engineering", "video_id": "video10472", "sen_id": 247807}, {"caption": "a woman in pink collard shirt discusses role of engineers and different types", "video_id": "video10472", "sen_id": 247808}, {"caption": "an asian woman is giving examples of who an engineer is and what are the types of engineers", "video_id": "video10472", "sen_id": 247809}, {"caption": "a woman in a pink shirt is explaining different kinds of engineers", "video_id": "video10472", "sen_id": 247810}, {"caption": "a young woman discusses what ti takes to be an engineer", "video_id": "video10472", "sen_id": 247811}, {"caption": "a woman sitting in school desks discusses roles and types of engineers", "video_id": "video10472", "sen_id": 247812}, {"caption": "a girl wearing a sweater is talking about what engineers do", "video_id": "video10472", "sen_id": 247813}, {"caption": "a pretty women with nice dress is explaining about something", "video_id": "video10472", "sen_id": 247814}, {"caption": "a woman in a pink shirt with glasses is talking and uses her hands emphatically", "video_id": "video10472", "sen_id": 247815}, {"caption": "an opening screen is shown followed by a woman describing types of engineers", "video_id": "video10472", "sen_id": 247816}, {"caption": "a girl with dark brown hair and glasses is sitting at a desk with a small doll that looks like her", "video_id": "video10472", "sen_id": 247817}, {"caption": "black haired woman in red clothe is talking about engineering", "video_id": "video10472", "sen_id": 247818}, {"caption": "a woman with glasses is sitting down and talking", "video_id": "video10472", "sen_id": 247819}, {"caption": "a man in a black polo shirt talks in front of a white wall", "video_id": "video10514", "sen_id": 247820}, {"caption": "a young man in a black shirt talks about a website then segues into a commercial for audible", "video_id": "video10514", "sen_id": 247821}, {"caption": "a young white male actor wearing all black clothes explains and pitches a sale offer", "video_id": "video10514", "sen_id": 247822}, {"caption": "a gentleman is explaining how to get a free ebook from audiblecom if you sign up using techquickie", "video_id": "video10514", "sen_id": 247823}, {"caption": "a man in a dark shirt advertises audiblecom for audiobooks", "video_id": "video10514", "sen_id": 247824}, {"caption": "a black shirt man talking in a show", "video_id": "video10514", "sen_id": 247825}, {"caption": "a man from audiblecom explaining how signing up for their services would be a benefit to you", "video_id": "video10514", "sen_id": 247826}, {"caption": "a black color dress wearing shirt boy standing and speaking and screen displaying on screen waving hands", "video_id": "video10514", "sen_id": 247827}, {"caption": "a man from tech quickie is promoting audiblecom during a program", "video_id": "video10514", "sen_id": 247828}, {"caption": "a white man with a black shirt talks about awesome community", "video_id": "video10514", "sen_id": 247829}, {"caption": "a boy in black color wearing cloth standing speaking on topic of computer internet displaying on screen", "video_id": "video10514", "sen_id": 247830}, {"caption": "there is a black tshirt man talking in ashow", "video_id": "video10514", "sen_id": 247831}, {"caption": "a man in black shirt passing an information", "video_id": "video10514", "sen_id": 247832}, {"caption": "a man in a black polo shirt enthusiastically expalins something to the camera with this hands in full motion", "video_id": "video10514", "sen_id": 247833}, {"caption": "a man in a black shirt talks about great communities of people", "video_id": "video10514", "sen_id": 247834}, {"caption": "a man on a show is talking about thigns", "video_id": "video10514", "sen_id": 247835}, {"caption": "a man is talking about audible membership and its advantages", "video_id": "video10514", "sen_id": 247836}, {"caption": "a man is standing and talking about the benenfits of an audible membership", "video_id": "video10514", "sen_id": 247837}, {"caption": "a man in a black shirt is talking about audible", "video_id": "video10514", "sen_id": 247838}, {"caption": "a young gentlemen in black pant and black shirt is giving some information", "video_id": "video10514", "sen_id": 247839}, {"caption": "a man talks about a computer amplifier board and efficiency", "video_id": "video12199", "sen_id": 247840}, {"caption": "man showing and describing a class d amplifier", "video_id": "video12199", "sen_id": 247841}, {"caption": "a man is teaching the audience about conductors and amplifiers", "video_id": "video12199", "sen_id": 247842}, {"caption": "video shows internal parts of an electronic device", "video_id": "video12199", "sen_id": 247843}, {"caption": "a circuit board sits on a plastic tray attached to batteries", "video_id": "video12199", "sen_id": 247844}, {"caption": "a person is speaking about some electronic circuit and explains about the amphlipher", "video_id": "video12199", "sen_id": 247845}, {"caption": "a circuit is connected to several batteries through a wire", "video_id": "video12199", "sen_id": 247846}, {"caption": "a man giving details on a class d amplifier", "video_id": "video12199", "sen_id": 247847}, {"caption": "a man is talking and telling about audium semiconductor", "video_id": "video12199", "sen_id": 247848}, {"caption": "man presenting some exercises with micro chips and batteries", "video_id": "video12199", "sen_id": 247849}, {"caption": "there is a man explains about chip in board", "video_id": "video12199", "sen_id": 247850}, {"caption": "a man explaining some type of amplifier", "video_id": "video12199", "sen_id": 247851}, {"caption": "a guy describing the efficiency of an amplifier in depth", "video_id": "video12199", "sen_id": 247852}, {"caption": "a circuit of mother board connected with shells still image of man explayning displaying on screen", "video_id": "video12199", "sen_id": 247853}, {"caption": "a man in a black shirt is speaking", "video_id": "video12199", "sen_id": 247854}, {"caption": "a variety if electronics item is show and its current is measured", "video_id": "video12199", "sen_id": 247855}, {"caption": "this video will not load there is nothing that shows up on the screen", "video_id": "video12199", "sen_id": 247856}, {"caption": "many batteries are connected to a fuse panel", "video_id": "video12199", "sen_id": 247857}, {"caption": "a person describing a computer part and all of it s specifications", "video_id": "video12199", "sen_id": 247858}, {"caption": "a man in a shirt is talking about computers", "video_id": "video12199", "sen_id": 247859}, {"caption": "this shows a man speaking about how much has been spent on a building and what has been done with a station", "video_id": "video10178", "sen_id": 247860}, {"caption": "a male newscaster with a blue shirt is discussing business news", "video_id": "video10178", "sen_id": 247861}, {"caption": "a man talking about money on a news show", "video_id": "video10178", "sen_id": 247862}, {"caption": "a man is discussing that a building was very expensive to construct", "video_id": "video10178", "sen_id": 247863}, {"caption": "a news anchor in a blue striped tie discusses tenants moving into the world trade center", "video_id": "video10178", "sen_id": 247864}, {"caption": "a man on squawk on the street is talking about how tenants recently moved in the wtc 1", "video_id": "video10178", "sen_id": 247865}, {"caption": "a news host discusses spending for a new building in newsroom", "video_id": "video10178", "sen_id": 247866}, {"caption": "in a news studio a man in suit is seated and talking", "video_id": "video10178", "sen_id": 247867}, {"caption": "a man speak to tv programm for visionaries inside the creative mino", "video_id": "video10178", "sen_id": 247868}, {"caption": "a news man in a blue suit and striped tie with a comb over reads a story", "video_id": "video10178", "sen_id": 247869}, {"caption": "a old man in blue color dress speaking sitting with other man beside on topic many person siting and doing computer displaying on screen", "video_id": "video10178", "sen_id": 247870}, {"caption": "a man with a suit and tie is talking on tv", "video_id": "video10178", "sen_id": 247871}, {"caption": "there is a man in black suit discussing a matter with someone", "video_id": "video10178", "sen_id": 247872}, {"caption": "a man is discussing in the television channel", "video_id": "video10178", "sen_id": 247873}, {"caption": "a man is speaking about tenants move into 1 wtc", "video_id": "video10178", "sen_id": 247874}, {"caption": "a discussion on current issued of the state with senior politician of the state", "video_id": "video10178", "sen_id": 247875}, {"caption": "the man sitting with executive look is interviewing someone", "video_id": "video10178", "sen_id": 247876}, {"caption": "a talk show on tv in which a host talked to guest", "video_id": "video10178", "sen_id": 247877}, {"caption": "news anchors sit around the news talking about world news", "video_id": "video10178", "sen_id": 247878}, {"caption": "news anchors are explaining why tenants move into 1 wtc", "video_id": "video10178", "sen_id": 247879}, {"caption": "woman reporter is speaking about financials of a company and an owner of a company", "video_id": "video12916", "sen_id": 247880}, {"caption": "a press conference is shown while a woman talks about the company and its scandal", "video_id": "video12916", "sen_id": 247881}, {"caption": "a group of boardmen speak on a panel", "video_id": "video12916", "sen_id": 247882}, {"caption": "a board of volkswagen members describe how the company will be more transparent", "video_id": "video12916", "sen_id": 247883}, {"caption": "a group of old white guys on a board being interviewed", "video_id": "video12916", "sen_id": 247884}, {"caption": "a blonde man in a black suit is sitting behind a long table with microphones and other men wearing suits in front of a volkswagon logo'd wall", "video_id": "video12916", "sen_id": 247885}, {"caption": "old white man seated at a long table being interviewed", "video_id": "video12916", "sen_id": 247886}, {"caption": "matthias muller is interviewed at a table including four other men in suits", "video_id": "video12916", "sen_id": 247887}, {"caption": "five men in black suit having a meeting inside the office", "video_id": "video12916", "sen_id": 247888}, {"caption": "a white haired man in a fashionable shirt speaks at a news conference", "video_id": "video12916", "sen_id": 247889}, {"caption": "a group of men are sitting at a table", "video_id": "video12916", "sen_id": 247890}, {"caption": "a man in black suit explaining some topic in front of the camera", "video_id": "video12916", "sen_id": 247891}, {"caption": "a woman is talking about how the new ceo matthias muller is going to rebuild the company with maximum transparency", "video_id": "video12916", "sen_id": 247892}, {"caption": "dollars are displayed gentle man are speaking", "video_id": "video12916", "sen_id": 247893}, {"caption": "rupee note where its dropped as hill then many people sitting in conference", "video_id": "video12916", "sen_id": 247894}, {"caption": "a group of people are at a table", "video_id": "video12916", "sen_id": 247895}, {"caption": "woman narrates while a man is shown speaking at press conference", "video_id": "video12916", "sen_id": 247896}, {"caption": "a news announcer talks about volkswagen corporate policies while footage of a press conference is shown", "video_id": "video12916", "sen_id": 247897}, {"caption": "a rupees still image a old man in black dress wearing color cloth many old persons beside sitting and speaking displaying on screen", "video_id": "video12916", "sen_id": 247898}, {"caption": "some people are sitting down at a conference", "video_id": "video12916", "sen_id": 247899}, {"caption": "a young woman is using makeup to give her face a skeleton look", "video_id": "video10832", "sen_id": 247900}, {"caption": "a woman is painting her face to look like a skeleton while she is explaining what she is doing", "video_id": "video10832", "sen_id": 247901}, {"caption": "a young woman demonstrates and describes a makeup technique", "video_id": "video10832", "sen_id": 247902}, {"caption": "a woman applies black makeup a woman makes her face look like a skeleton a person decorates their face a blonde woman paints skeleton lines on her face with black makeup", "video_id": "video10832", "sen_id": 247903}, {"caption": "a young women colouring her face with black pencil", "video_id": "video10832", "sen_id": 247904}, {"caption": "a woman drawing on her face with face paint and explaining what to do", "video_id": "video10832", "sen_id": 247905}, {"caption": "a white woman with blue eyes colors her face with black facepaint", "video_id": "video10832", "sen_id": 247906}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10832", "sen_id": 247907}, {"caption": "a lady drawing in her face by pencil", "video_id": "video10832", "sen_id": 247908}, {"caption": "woman demonstrates how to do some halloween style makeup", "video_id": "video10832", "sen_id": 247909}, {"caption": "a blond woman paints her face to look like a skeleton", "video_id": "video10832", "sen_id": 247910}, {"caption": "lady with black shirt drawing on her face and describing how she is doing it", "video_id": "video10832", "sen_id": 247911}, {"caption": "a woman with blonde hair giving a halloween make-up tutorial", "video_id": "video10832", "sen_id": 247912}, {"caption": "a girl demonstrates some halloween makeup designs", "video_id": "video10832", "sen_id": 247913}, {"caption": "a woman paints black lines on her face making herself look like a skeleton", "video_id": "video10832", "sen_id": 247914}, {"caption": "a woman is putting on very extravagant skull makeup and explaining what she is doing", "video_id": "video10832", "sen_id": 247915}, {"caption": "a lady make up to her face as a ghost with the pencil and brushes", "video_id": "video10832", "sen_id": 247916}, {"caption": "a young woman is applying makeup to her face with black face paint", "video_id": "video10832", "sen_id": 247917}, {"caption": "blonde woman is doing some art on her cute face", "video_id": "video10832", "sen_id": 247918}, {"caption": "a woman performs a halloween makeup tutorial", "video_id": "video10832", "sen_id": 247919}, {"caption": "a man is talking about who he enjoys being and is wearing a black hat glasses black shirt with white collar shirt underneath", "video_id": "video11466", "sen_id": 247920}, {"caption": "a man wearing a black shirt talking about his glasses", "video_id": "video11466", "sen_id": 247921}, {"caption": "a older black man with large glasses and black shirt is talking", "video_id": "video11466", "sen_id": 247922}, {"caption": "this is an african american man wearing a backwards hat with large glasses he is speaking into the camera about who he enjoys being", "video_id": "video11466", "sen_id": 247923}, {"caption": "a black man with glasses is talking on voicechat", "video_id": "video11466", "sen_id": 247924}, {"caption": "a man wearing a black skullcap round-frame eyeglasses white shirt and gray pullover sweater speaks from a kitchen with dark wood cabinets while a blue screen is reflected on his lenses", "video_id": "video11466", "sen_id": 247925}, {"caption": "the man in black dress wearing black cap tell about some thing", "video_id": "video11466", "sen_id": 247926}, {"caption": "a person with black over coat and cap explains something on the web camera", "video_id": "video11466", "sen_id": 247927}, {"caption": "a man in sweater in room of home wears glasses", "video_id": "video11466", "sen_id": 247928}, {"caption": "a man wearing spectacles is talking about his experience on wearing glasses", "video_id": "video11466", "sen_id": 247929}, {"caption": "a person of color in a room giving his opinion about a topic", "video_id": "video11466", "sen_id": 247930}, {"caption": "there sits a person with black cap and round eyeglasses and overcoat and speaks", "video_id": "video11466", "sen_id": 247931}, {"caption": "an african american make in round shape glasses is talking about his glasses", "video_id": "video11466", "sen_id": 247932}, {"caption": "a man wearing glasses and a black hat is describing his glasses", "video_id": "video11466", "sen_id": 247933}, {"caption": "a man sitting in a kitchen talking about his glasses", "video_id": "video11466", "sen_id": 247934}, {"caption": "a black man with glasses is talking about something", "video_id": "video11466", "sen_id": 247935}, {"caption": "a person with big glasses and he is talking about the reason", "video_id": "video11466", "sen_id": 247936}, {"caption": "a guy wearing a baseball cap talks with his glasses on", "video_id": "video11466", "sen_id": 247937}, {"caption": "man with black hat and black shirt talking in front of webcam about how he likes his glasses", "video_id": "video11466", "sen_id": 247938}, {"caption": "a man with glasses is speaking about something", "video_id": "video11466", "sen_id": 247939}, {"caption": "a glass of beer with a head of foam is in a stemmed glass by a pile of grains and across from hops as the process of brewing beer is listed by the sponsoring company", "video_id": "video10354", "sen_id": 247940}, {"caption": "a still photo of a full beer sitting on a table", "video_id": "video10354", "sen_id": 247941}, {"caption": "a glass of alcohol sits on a counter near a green plant", "video_id": "video10354", "sen_id": 247942}, {"caption": "a man is preparing to give instructions for making craft beer", "video_id": "video10354", "sen_id": 247943}, {"caption": "a man displays a kit for making your own beer at home", "video_id": "video10354", "sen_id": 247944}, {"caption": "the introduction of a beer home-brewing instructional video", "video_id": "video10354", "sen_id": 247945}, {"caption": "a british man discusses the basic steps of making some beer", "video_id": "video10354", "sen_id": 247946}, {"caption": "a man is talking about a beer making program", "video_id": "video10354", "sen_id": 247947}, {"caption": "there is explaining the increadiants about a beer", "video_id": "video10354", "sen_id": 247948}, {"caption": "some advertisement is shown with pictures and a person telling about it", "video_id": "video10354", "sen_id": 247949}, {"caption": "preparation cleaning adding ingredients adding yeast fermenttion testing bottling", "video_id": "video10354", "sen_id": 247950}, {"caption": "the voice of a man shows you the ingredients needed to make handcrafted beer", "video_id": "video10354", "sen_id": 247951}, {"caption": "a juice glass in yellow bottles on the table preparation", "video_id": "video10354", "sen_id": 247952}, {"caption": "there is some tips of a making beer", "video_id": "video10354", "sen_id": 247953}, {"caption": "ingredients pop on screen show the prep of draft beer", "video_id": "video10354", "sen_id": 247954}, {"caption": "a person scooping up some beer into the cup", "video_id": "video10354", "sen_id": 247955}, {"caption": "a square cardboard box is open with the flaps level outside the box while a white rod with a thicker section above a red flared disk is lifted out", "video_id": "video10354", "sen_id": 247956}, {"caption": "a british man talks about do-it yourself craft brewing beer as the animations move across the screen", "video_id": "video10354", "sen_id": 247957}, {"caption": "a man goes through the steps that is necessary for creating beer", "video_id": "video10354", "sen_id": 247958}, {"caption": "a person is giving a preparation method for a drinks", "video_id": "video10354", "sen_id": 247959}, {"caption": "a helicopter view shows the race track of the italian grand prix", "video_id": "video10772", "sen_id": 247960}, {"caption": "people are getting ready to race each other on the track", "video_id": "video10772", "sen_id": 247961}, {"caption": "the beginning of the italian grand prix is announced while both an arial view and the starting line are revealed", "video_id": "video10772", "sen_id": 247962}, {"caption": "flying over a long winding track of the italian grand prix", "video_id": "video10772", "sen_id": 247963}, {"caption": "introduction from a broadcast of the italian grand prix in monza sebastian vettel is complemented on yesterday's race", "video_id": "video10772", "sen_id": 247964}, {"caption": "a man is showing an ariel view prior to the start of the italian grand prix race", "video_id": "video10772", "sen_id": 247965}, {"caption": "the road on which a racing is going to start is displayed", "video_id": "video10772", "sen_id": 247966}, {"caption": "a itailian grand prix video which breifly shows a piece of the track and the car", "video_id": "video10772", "sen_id": 247967}, {"caption": "car race tack has been shown from top view nice look", "video_id": "video10772", "sen_id": 247968}, {"caption": "birds eye view of a race car track on a sunny day", "video_id": "video10772", "sen_id": 247969}, {"caption": "a person is showing race track from the bird eye view", "video_id": "video10772", "sen_id": 247970}, {"caption": "an overview of the italian grand prix course is being discussed by the announcer", "video_id": "video10772", "sen_id": 247971}, {"caption": "a birds eye view of a drivers course the race is about to begin", "video_id": "video10772", "sen_id": 247972}, {"caption": "the announcer is talking about how the italian race is about to start it shows a view of the road and then ends with the view of a group of people around cars", "video_id": "video10772", "sen_id": 247973}, {"caption": "a car race has been shown and many persons are watching the car show and the persons are cheering-up the show", "video_id": "video10772", "sen_id": 247974}, {"caption": "some cars are getting ready to drive around", "video_id": "video10772", "sen_id": 247975}, {"caption": "on the track someone getting ready for a race", "video_id": "video10772", "sen_id": 247976}, {"caption": "the camera pans along the car race track as the announcer saywelcome to italian grand prix", "video_id": "video10772", "sen_id": 247977}, {"caption": "an overview of track in the italian grand prix", "video_id": "video10772", "sen_id": 247978}, {"caption": "drivers getting ready for a race in italy for first place", "video_id": "video10772", "sen_id": 247979}, {"caption": "a reporter speaks to the camera as people are preparing food at a night time picnic", "video_id": "video10869", "sen_id": 247980}, {"caption": "a woman standing by a marketplace table talks about how much a vendor can earn", "video_id": "video10869", "sen_id": 247981}, {"caption": "a young african girl talks about a small food business she runs", "video_id": "video10869", "sen_id": 247982}, {"caption": "a woman is talking about food and she is talking very fast", "video_id": "video10869", "sen_id": 247983}, {"caption": "a woman with a heavy accent is talking about a small store front selling food", "video_id": "video10869", "sen_id": 247984}, {"caption": "a black women is selling food items as so many people come in", "video_id": "video10869", "sen_id": 247985}, {"caption": "a men and women is talking with eache other on the streets where food stalls are there", "video_id": "video10869", "sen_id": 247986}, {"caption": "one beautiful and lovely women speak in market", "video_id": "video10869", "sen_id": 247987}, {"caption": "an african reporter talks about the business of street food vending", "video_id": "video10869", "sen_id": 247988}, {"caption": "sexy black brunette talking to the camera", "video_id": "video10869", "sen_id": 247989}, {"caption": "a woman is talking about the specialty of a local street vendor", "video_id": "video10869", "sen_id": 247990}, {"caption": "a black with with a colorful dress speaks at a small food shop with a boy", "video_id": "video10869", "sen_id": 247991}, {"caption": "a woman is talking about a road side business", "video_id": "video10869", "sen_id": 247992}, {"caption": "a woman is being interviewed on the traditional food from her culture", "video_id": "video10869", "sen_id": 247993}, {"caption": "a woman is reporting about an out door market", "video_id": "video10869", "sen_id": 247994}, {"caption": "there is a women explains from the street", "video_id": "video10869", "sen_id": 247995}, {"caption": "the lady anchor is giving the information of the market items on the street", "video_id": "video10869", "sen_id": 247996}, {"caption": "a black woman talks over excerpts showing a small business owner", "video_id": "video10869", "sen_id": 247997}, {"caption": "a women speak about product in a market and people purchase some products", "video_id": "video10869", "sen_id": 247998}, {"caption": "some people are selling meat at an outdoor market", "video_id": "video10869", "sen_id": 247999}, {"caption": "actor is sitting in an interview talking about his life and the movie", "video_id": "video12893", "sen_id": 248000}, {"caption": "leonardo dicaprio doing an interview about a film he was in", "video_id": "video12893", "sen_id": 248001}, {"caption": "leonardo decapprio talking about the movie the beach", "video_id": "video12893", "sen_id": 248002}, {"caption": "an actor is in a studio discussing his latest film", "video_id": "video12893", "sen_id": 248003}, {"caption": "a man is talking in front of a poster", "video_id": "video12893", "sen_id": 248004}, {"caption": "a hollywood actor in black shirt is being interviewed", "video_id": "video12893", "sen_id": 248005}, {"caption": "leo dicaprio is giving an interview regarding how the success of titanic changed his life", "video_id": "video12893", "sen_id": 248006}, {"caption": "leonardo decapri describes how his life was affected by the movie titanic", "video_id": "video12893", "sen_id": 248007}, {"caption": "leonardo di caprio is being interviewed by a reporter about a movie", "video_id": "video12893", "sen_id": 248008}, {"caption": "somebody is interviewing a man with black shirt and he is replying for the questions", "video_id": "video12893", "sen_id": 248009}, {"caption": "there is a black shirt man talking in a interview", "video_id": "video12893", "sen_id": 248010}, {"caption": "a man wearing black color dress talking with another man", "video_id": "video12893", "sen_id": 248011}, {"caption": "leonardo dicaprio is interviewed about when he knew his life wasn t going to be normal anymore", "video_id": "video12893", "sen_id": 248012}, {"caption": "actor leonardo dicaprio gives up the back story of how the movie titanic gave him new opportunities", "video_id": "video12893", "sen_id": 248013}, {"caption": "leonardo decaprio is being interviewed by a man on tv", "video_id": "video12893", "sen_id": 248014}, {"caption": "a man in a black shirt is interviewing leonardo decaprio", "video_id": "video12893", "sen_id": 248015}, {"caption": "a man is interviewing leonardo about how he feels about his life changing", "video_id": "video12893", "sen_id": 248016}, {"caption": "a famous actor is interviewed about his role in a recent movie", "video_id": "video12893", "sen_id": 248017}, {"caption": "actor leonardo dicaprio giving an interview about his success he wields the pros and cons that come with success after his titanic role", "video_id": "video12893", "sen_id": 248018}, {"caption": "a man is being interviewed about a movie", "video_id": "video12893", "sen_id": 248019}, {"caption": "a cartoon with a bunch of talking animals probably winnie the poh", "video_id": "video12165", "sen_id": 248020}, {"caption": "rabbit from winnie the pooh speaks with owl and kanga", "video_id": "video12165", "sen_id": 248021}, {"caption": "some cartoon character are standing together talking to each", "video_id": "video12165", "sen_id": 248022}, {"caption": " and kanga discuss who will go save pooh in an episode of the animated show winnie the pooh", "video_id": "video12165", "sen_id": 248023}, {"caption": " and kanga from winnie the pooh discuss who is going to go get christopher robin", "video_id": "video12165", "sen_id": 248024}, {"caption": "an animated kangaroo and rabbit are having a conversation in the woods", "video_id": "video12165", "sen_id": 248025}, {"caption": "an cartoon is shown for the childrens on the screen", "video_id": "video12165", "sen_id": 248026}, {"caption": "three cartoons havimg a conversation", "video_id": "video12165", "sen_id": 248027}, {"caption": " owl and kangaroo talking with each-other", "video_id": "video12165", "sen_id": 248028}, {"caption": "three animals having great time together outdoors", "video_id": "video12165", "sen_id": 248029}, {"caption": "there is a rabbit with friends in a forest", "video_id": "video12165", "sen_id": 248030}, {"caption": "three cartoon characters talking", "video_id": "video12165", "sen_id": 248031}, {"caption": "few cartoon characters speaking to each other and argument going on", "video_id": "video12165", "sen_id": 248032}, {"caption": "cartoon in which the big eagle like bird and two another animals talking with each other", "video_id": "video12165", "sen_id": 248033}, {"caption": "in a video a rabbitan owl and a jackal conversing to each other", "video_id": "video12165", "sen_id": 248034}, {"caption": " bird and kangaroo is talking to each", "video_id": "video12165", "sen_id": 248035}, {"caption": "three cartoon character talking among themselves about getting christopher robin back", "video_id": "video12165", "sen_id": 248036}, {"caption": "cartoon animals are dancing one fire comes and burns", "video_id": "video12165", "sen_id": 248037}, {"caption": "an owl tries to boss around a rabbit and a kangaroo", "video_id": "video12165", "sen_id": 248038}, {"caption": " a kangaroo an owl and a rabbit having a conversation", "video_id": "video12165", "sen_id": 248039}, {"caption": "soldiers rush through a door as camera men and others holding microphones run with them on a movie set", "video_id": "video11146", "sen_id": 248040}, {"caption": "various crew members and actors in costume move through a movie set as they film a scene", "video_id": "video11146", "sen_id": 248041}, {"caption": "a movie crew films a scene where military members reenter a building", "video_id": "video11146", "sen_id": 248042}, {"caption": "a movie crew films a scene where military members reenter a building", "video_id": "video11146", "sen_id": 248043}, {"caption": "several actors in a military film move through a scene being filmed", "video_id": "video11146", "sen_id": 248044}, {"caption": "a group of people are indulged in fighting here", "video_id": "video11146", "sen_id": 248045}, {"caption": "live shoot of a movie with soldier walking towards the camera and the director shouting action", "video_id": "video11146", "sen_id": 248046}, {"caption": "a holly wood movie shooting group of men acting on it", "video_id": "video11146", "sen_id": 248047}, {"caption": "scenes from the movie set of a war movie as it is filmed", "video_id": "video11146", "sen_id": 248048}, {"caption": "bunch of movie crew member doing a scene of the movie", "video_id": "video11146", "sen_id": 248049}, {"caption": "there is a man hanging camera while shooting", "video_id": "video11146", "sen_id": 248050}, {"caption": "a movie production crew is filming on a set", "video_id": "video11146", "sen_id": 248051}, {"caption": "a film crew works on a scene involving soldiers returning to their base", "video_id": "video11146", "sen_id": 248052}, {"caption": "a man holding a rod and many military man running and coming inside hall", "video_id": "video11146", "sen_id": 248053}, {"caption": "some people are being filmed inside for a movie", "video_id": "video11146", "sen_id": 248054}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11146", "sen_id": 248055}, {"caption": "making of shooting in a movie army mans are there", "video_id": "video11146", "sen_id": 248056}, {"caption": "its a shooting spotthe man holds the camera on the topgroup of people come", "video_id": "video11146", "sen_id": 248057}, {"caption": "a person with black dress is having a big stick in his hand", "video_id": "video11146", "sen_id": 248058}, {"caption": "some people are filming a military themed movie", "video_id": "video11146", "sen_id": 248059}, {"caption": "an asian woman comparing the texture of some dough with an earlobe and doing some preparations with it", "video_id": "video12735", "sen_id": 248060}, {"caption": "a woman in a kitchen wearing and apron and rolling dough on a cutting board", "video_id": "video12735", "sen_id": 248061}, {"caption": "a woman is making a meal in a kitchen", "video_id": "video12735", "sen_id": 248062}, {"caption": "a woman beating cuttng and folding dough in a kitchen", "video_id": "video12735", "sen_id": 248063}, {"caption": "a woman in a blue shirt with apron is working with dough", "video_id": "video12735", "sen_id": 248064}, {"caption": "a young woman is talking about how to make dough for a recipe", "video_id": "video12735", "sen_id": 248065}, {"caption": "a chinese woman in the processs of cooking", "video_id": "video12735", "sen_id": 248066}, {"caption": "women making round shape of flour and cutting it", "video_id": "video12735", "sen_id": 248067}, {"caption": "a lady is rolling out dough on her cutting board", "video_id": "video12735", "sen_id": 248068}, {"caption": "a chinese lady is explaining about a bread stuff", "video_id": "video12735", "sen_id": 248069}, {"caption": "in the kitchen a black hair lady making chapatti", "video_id": "video12735", "sen_id": 248070}, {"caption": "a lady prepares a wheat ball and then flattens it further cuts into two pieces", "video_id": "video12735", "sen_id": 248071}, {"caption": "a lady wears blue dressshe prepared the dough with roller she prepared a chapathi", "video_id": "video12735", "sen_id": 248072}, {"caption": "a girl inside kitchen making dish and cutting with knife to prepare to serve to eat displaying on screen", "video_id": "video12735", "sen_id": 248073}, {"caption": "a woman in a blue apron rolls out an egg-shaped ball of dough", "video_id": "video12735", "sen_id": 248074}, {"caption": "a women rolls the floor to make pizza", "video_id": "video12735", "sen_id": 248075}, {"caption": "one beautiful and lovely women makes recipe with dough", "video_id": "video12735", "sen_id": 248076}, {"caption": "lady prepares the dough its smooth she cuts it into the rectangle", "video_id": "video12735", "sen_id": 248077}, {"caption": "a woman inside kitchen making maida cutting rolling", "video_id": "video12735", "sen_id": 248078}, {"caption": "a women is rolling some chappathis and makin some dish in the kitchen show", "video_id": "video12735", "sen_id": 248079}, {"caption": "two men talk over fast video footage that intends to portray the speed at which a text message is received when it is sent to someone in china", "video_id": "video12466", "sen_id": 248080}, {"caption": "a man talks about how text messages can be sent through different countries", "video_id": "video12466", "sen_id": 248081}, {"caption": "a white middle aged man with a mustache and striped shirt is talking", "video_id": "video12466", "sen_id": 248082}, {"caption": "a man in a library talking in front of the camera", "video_id": "video12466", "sen_id": 248083}, {"caption": "there is a car riding on the street", "video_id": "video12466", "sen_id": 248084}, {"caption": "in a map and some lands man in road timing", "video_id": "video12466", "sen_id": 248085}, {"caption": "a man setting the time and doing something and talking", "video_id": "video12466", "sen_id": 248086}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12466", "sen_id": 248087}, {"caption": "there is white shirt man talking in a room", "video_id": "video12466", "sen_id": 248088}, {"caption": "in the map busy world in mobile and stopwatch", "video_id": "video12466", "sen_id": 248089}, {"caption": "a fish swims in the tank and person talks about it", "video_id": "video12466", "sen_id": 248090}, {"caption": "a man is talking and a street is flashing by", "video_id": "video12466", "sen_id": 248091}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video12466", "sen_id": 248092}, {"caption": "a portrait of sea ship a world map a fast traffic roads mobile stop watch", "video_id": "video12466", "sen_id": 248093}, {"caption": "a old man in checks speaking a mobile and fish boy sitting on bike holding phone", "video_id": "video12466", "sen_id": 248094}, {"caption": "there is a car driving high speed through town", "video_id": "video12466", "sen_id": 248095}, {"caption": "the speed of signal to reach places are dealt with by a man", "video_id": "video12466", "sen_id": 248096}, {"caption": "a man gives an example of how fast a text message goes from the us to china by showing fast blurred pictures", "video_id": "video12466", "sen_id": 248097}, {"caption": "the speaker is talking about chinese technology of time and life", "video_id": "video12466", "sen_id": 248098}, {"caption": "some people are riding motorcycles on the road", "video_id": "video12466", "sen_id": 248099}, {"caption": "a little african american baby boy is being bottle fed", "video_id": "video12618", "sen_id": 248100}, {"caption": "grandmother feeds her grandson and explains to media their side of the story", "video_id": "video12618", "sen_id": 248101}, {"caption": "an african woman is interviewed by a tv reporter while she cares for her grandchildren", "video_id": "video12618", "sen_id": 248102}, {"caption": "a woman holds a baby's head in the crook of one arm and holds a baby bottle with her other hand while the baby drinks the milk and a girl sits beside them in a living room", "video_id": "video12618", "sen_id": 248103}, {"caption": "a news story of a baby boy who was abused", "video_id": "video12618", "sen_id": 248104}, {"caption": "a small african american child is being bottle fed", "video_id": "video12618", "sen_id": 248105}, {"caption": "a black women with two small children is doing a television interview", "video_id": "video12618", "sen_id": 248106}, {"caption": "a woman from fox 13 reports about a grandmother that speaks out on child abuse video", "video_id": "video12618", "sen_id": 248107}, {"caption": "a lady feeding milk to her baby and explains child abuse", "video_id": "video12618", "sen_id": 248108}, {"caption": "a woman is giving a milk in bottle to the child", "video_id": "video12618", "sen_id": 248109}, {"caption": "fox news interviews a grandmother who speaks about her views on abuse", "video_id": "video12618", "sen_id": 248110}, {"caption": "there is a baby drinking milk with a bottle", "video_id": "video12618", "sen_id": 248111}, {"caption": "a woman is feeding a baby and talking to a fox new reporter", "video_id": "video12618", "sen_id": 248112}, {"caption": "a lady feeding a milk to her child in her home", "video_id": "video12618", "sen_id": 248113}, {"caption": "a lady feeding a baby is getting interviewed on the news", "video_id": "video12618", "sen_id": 248114}, {"caption": "a woman is talkign to people on the news", "video_id": "video12618", "sen_id": 248115}, {"caption": "a child abuse story is being shown on the news channel", "video_id": "video12618", "sen_id": 248116}, {"caption": "in the lady feeding the bottle milk in their children in the sofa set their another children siting in near", "video_id": "video12618", "sen_id": 248117}, {"caption": "news reporter introducing an african american woman explaining some family troubles", "video_id": "video12618", "sen_id": 248118}, {"caption": "a woman talks about a violent scene that happened at their house", "video_id": "video12618", "sen_id": 248119}, {"caption": "a woman is showing off a blue sports car in the arena", "video_id": "video10359", "sen_id": 248120}, {"caption": "a brand new car is kept for exhibition in a show room", "video_id": "video10359", "sen_id": 248121}, {"caption": "a blue amazing racing car is being introduced by a lady", "video_id": "video10359", "sen_id": 248122}, {"caption": "a man speaks to a woman at an auto showroom and is shown a supercar", "video_id": "video10359", "sen_id": 248123}, {"caption": "a girl in black dress and blue car explaing about favourite car", "video_id": "video10359", "sen_id": 248124}, {"caption": "its a blue car displayed on a car showroom", "video_id": "video10359", "sen_id": 248125}, {"caption": "a sales girl at a car show room launching a new model by explaining the feature of new car model", "video_id": "video10359", "sen_id": 248126}, {"caption": "a car company introducing the new car and explain car futures", "video_id": "video10359", "sen_id": 248127}, {"caption": "a blue car in show room the lady says that is her favorite car", "video_id": "video10359", "sen_id": 248128}, {"caption": "the woman was showing off the high-end vehicle", "video_id": "video10359", "sen_id": 248129}, {"caption": "car on display with a girl posing for photoshoot", "video_id": "video10359", "sen_id": 248130}, {"caption": "a stylish brand new blue car is standing in the center and a lady in her black dress and wearing an i card is explaining about the specs of the cars", "video_id": "video10359", "sen_id": 248131}, {"caption": "an man in black is standing before a yellow car and a bright blue car is shown by a lady", "video_id": "video10359", "sen_id": 248132}, {"caption": "a woman shows off her favorite part of a new convertible", "video_id": "video10359", "sen_id": 248133}, {"caption": "there were a lot of fancy cars at the expo", "video_id": "video10359", "sen_id": 248134}, {"caption": "some cars are kept for display and a women tells something about it", "video_id": "video10359", "sen_id": 248135}, {"caption": "beautiful new car in showroom one girl tell about its features", "video_id": "video10359", "sen_id": 248136}, {"caption": "girl showing a blue colored sports car and talking about it", "video_id": "video10359", "sen_id": 248137}, {"caption": "a woman assessing a blue sports car at an indoor car convention", "video_id": "video10359", "sen_id": 248138}, {"caption": "a woman with blonde hair is talking in a room", "video_id": "video10359", "sen_id": 248139}, {"caption": "sky news reporters are debating the uk joining the euro currency", "video_id": "video12859", "sen_id": 248140}, {"caption": "three men are sitting around a news desk having a lively conversation", "video_id": "video12859", "sen_id": 248141}, {"caption": "three men in business and ties sit around a modern table setup and discuss money and the economy", "video_id": "video12859", "sen_id": 248142}, {"caption": "three men are talking about europe and the economy", "video_id": "video12859", "sen_id": 248143}, {"caption": "three men discuss britians economy and not joining the euro", "video_id": "video12859", "sen_id": 248144}, {"caption": "three men are talking for a news show for the channel sky news", "video_id": "video12859", "sen_id": 248145}, {"caption": "three men are debating about economy and politics together on television", "video_id": "video12859", "sen_id": 248146}, {"caption": "more people debating about issues that some people think matter", "video_id": "video12859", "sen_id": 248147}, {"caption": "around a newsroom desk two guests wearing suits discuss economy with host", "video_id": "video12859", "sen_id": 248148}, {"caption": "three men sitting around a table debating britain joining the euro", "video_id": "video12859", "sen_id": 248149}, {"caption": "three newsmen talking about the economy in britain", "video_id": "video12859", "sen_id": 248150}, {"caption": "the men in coats are discussing the point on the table", "video_id": "video12859", "sen_id": 248151}, {"caption": "three men sitting at a table having a political debate", "video_id": "video12859", "sen_id": 248152}, {"caption": "three men are having conversation for the sky news", "video_id": "video12859", "sen_id": 248153}, {"caption": "three persons are speaking together in the sky news channel", "video_id": "video12859", "sen_id": 248154}, {"caption": "3 guys sitting around a table having a discussion", "video_id": "video12859", "sen_id": 248155}, {"caption": "three persons discussion on the debate of some topic", "video_id": "video12859", "sen_id": 248156}, {"caption": "thre men sitting around a desk talking about the euro", "video_id": "video12859", "sen_id": 248157}, {"caption": "three people are having conversation in the studio", "video_id": "video12859", "sen_id": 248158}, {"caption": "two men are talking on the tv news", "video_id": "video12859", "sen_id": 248159}, {"caption": "a man flying around in minecraft while looking at a pixel pac man", "video_id": "video12150", "sen_id": 248160}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video12150", "sen_id": 248161}, {"caption": "a yellow character in minecraft continues to munch and munch and munch", "video_id": "video12150", "sen_id": 248162}, {"caption": "an animated game of a yellow ball like monster", "video_id": "video12150", "sen_id": 248163}, {"caption": "an animated yellow lego monster is opening and closing its mouyth on a grassy hillside", "video_id": "video12150", "sen_id": 248164}, {"caption": "yellow monster will be defeated if it was shot in the mouth by gun in the game", "video_id": "video12150", "sen_id": 248165}, {"caption": "there are many cartoon figures playing on ground", "video_id": "video12150", "sen_id": 248166}, {"caption": "a big round yellow monster opening and closing his mouth", "video_id": "video12150", "sen_id": 248167}, {"caption": "some animation visuals and the man saying about that", "video_id": "video12150", "sen_id": 248168}, {"caption": "a man discusses a simulated pacman in the game minecraft", "video_id": "video12150", "sen_id": 248169}, {"caption": "an asian gentleman is giving commentary form what appears to be a video game", "video_id": "video12150", "sen_id": 248170}, {"caption": "player playing video game trying to get more points", "video_id": "video12150", "sen_id": 248171}, {"caption": "there is a yellow bug on the field", "video_id": "video12150", "sen_id": 248172}, {"caption": "an eight bit environment where a large yellow head chomps to commentary", "video_id": "video12150", "sen_id": 248173}, {"caption": "a young man describes and demonstrates a video game that he is playing", "video_id": "video12150", "sen_id": 248174}, {"caption": "a guy is explaining how a minecraft video game is played while showing a video", "video_id": "video12150", "sen_id": 248175}, {"caption": "a person is shooting with gun in his hand", "video_id": "video12150", "sen_id": 248176}, {"caption": "a yellow head with square black-and-white eyes and thick black eyebrows repeatedly opens and closes its red mouth with white block teeth while on top of green grass", "video_id": "video12150", "sen_id": 248177}, {"caption": "a yellow cartoon face with 8 teeths are speaking cute", "video_id": "video12150", "sen_id": 248178}, {"caption": "an animation of a toothy pacman opening and shutting his mouth in what appears to be a video game", "video_id": "video12150", "sen_id": 248179}, {"caption": "chef gordon ramsey is mad putting people down and spewing obscenities", "video_id": "video11779", "sen_id": 248180}, {"caption": "a foul mouthed chef berates a group of people for not meeting his expectations", "video_id": "video11779", "sen_id": 248181}, {"caption": "a compilation of an angry blonde man screaming at people", "video_id": "video11779", "sen_id": 248182}, {"caption": "celebrity chef gordon ramsey is the star of a compilation of profanity", "video_id": "video11779", "sen_id": 248183}, {"caption": "a foul motuhed chef berates people working in his kitchen", "video_id": "video11779", "sen_id": 248184}, {"caption": "watch chef gordon ramsey spend time teaching tutoring and yelling in our upcoming video", "video_id": "video11779", "sen_id": 248185}, {"caption": "there are many noof chefs busy in their routine work", "video_id": "video11779", "sen_id": 248186}, {"caption": "chef gordon ramsey swearing at a lot of other chefs", "video_id": "video11779", "sen_id": 248187}, {"caption": "a man in white clothes is critcizing restaurant workers", "video_id": "video11779", "sen_id": 248188}, {"caption": "different clips of gordon ramsey cussing and insulting other cooks", "video_id": "video11779", "sen_id": 248189}, {"caption": "all chefs are preparing food item on a hotel", "video_id": "video11779", "sen_id": 248190}, {"caption": "chef gordon ramsey throwing around the f-bomb multiple times", "video_id": "video11779", "sen_id": 248191}, {"caption": "the chef is using profanity and throwing and kicking things to express his displeasure", "video_id": "video11779", "sen_id": 248192}, {"caption": "an angry chef shouts at both his cooks and the guests at his restaurant", "video_id": "video11779", "sen_id": 248193}, {"caption": "gordon ramsay delivers his famous insults in clips from hells kitchen", "video_id": "video11779", "sen_id": 248194}, {"caption": "there is a man shouting to his co-workers in the kitchen", "video_id": "video11779", "sen_id": 248195}, {"caption": "the cheff with a pen on the ear is quarolling with others", "video_id": "video11779", "sen_id": 248196}, {"caption": "chefs and food reviewers in a kitchen use profanity against one another on tasting some intolerable garnish preparations", "video_id": "video11779", "sen_id": 248197}, {"caption": "a cooking competition is underway and a chef constantly uses expletives as he watches others cook", "video_id": "video11779", "sen_id": 248198}, {"caption": "in a cooking competition many person in white make the dishes a men in white speaking something", "video_id": "video11779", "sen_id": 248199}, {"caption": "basketball players practice by moving back and forth on the court doing sprints", "video_id": "video10541", "sen_id": 248200}, {"caption": "a group of young men practicing agility work", "video_id": "video10541", "sen_id": 248201}, {"caption": "various men train for basketball on a basketball court with hip hop music playing", "video_id": "video10541", "sen_id": 248202}, {"caption": "a group of young men participate in an organized basketball practice", "video_id": "video10541", "sen_id": 248203}, {"caption": "five or more boys are going from left and right", "video_id": "video10541", "sen_id": 248204}, {"caption": "basketballers perform a tribal dance to hip hop music", "video_id": "video10541", "sen_id": 248205}, {"caption": "people in a basketball court running back and forth with music playing", "video_id": "video10541", "sen_id": 248206}, {"caption": "a group of men performing sprints back and forth on a basketball court", "video_id": "video10541", "sen_id": 248207}, {"caption": "two lines of men perform exercises on a basketball court", "video_id": "video10541", "sen_id": 248208}, {"caption": "men are running drills across the shiny floor or a gym", "video_id": "video10541", "sen_id": 248209}, {"caption": "a basketball team are performing drills drills are completed in order to improve their skill", "video_id": "video10541", "sen_id": 248210}, {"caption": "group of players are doing some exercises on training", "video_id": "video10541", "sen_id": 248211}, {"caption": "men in a gym run back and forth to practice", "video_id": "video10541", "sen_id": 248212}, {"caption": "a group of men are doing running drills in a gym", "video_id": "video10541", "sen_id": 248213}, {"caption": "footage for a promotional video for a high school basketball team", "video_id": "video10541", "sen_id": 248214}, {"caption": "its basket ball ground where the players doing warm up session", "video_id": "video10541", "sen_id": 248215}, {"caption": "basketball practice featuring hip hop music", "video_id": "video10541", "sen_id": 248216}, {"caption": "five guys on basketball court running from side to side of the goal line droping and picking up something", "video_id": "video10541", "sen_id": 248217}, {"caption": "a group of young men on a basketball court are doing running drills for practice", "video_id": "video10541", "sen_id": 248218}, {"caption": "the young guys separated with the group of four membersthey are put a particular action is in two direction", "video_id": "video10541", "sen_id": 248219}, {"caption": "a woman in a blue shirt delivers the news while w yellow ticker tape flashes", "video_id": "video10667", "sen_id": 248220}, {"caption": "a female news anchor is telling a news story about whether large companies should be required to disclose the pay gap between men and women", "video_id": "video10667", "sen_id": 248221}, {"caption": "a woman in blue is reporting on the news", "video_id": "video10667", "sen_id": 248222}, {"caption": "a woman is talking about the difference in pay between men and women", "video_id": "video10667", "sen_id": 248223}, {"caption": "a blonde woman in a blue top broadcasts economic news and discusses the pay gap between male and female employees", "video_id": "video10667", "sen_id": 248224}, {"caption": "there is a women talking from the studio", "video_id": "video10667", "sen_id": 248225}, {"caption": "a woman wearing blue reports on feminism in an office", "video_id": "video10667", "sen_id": 248226}, {"caption": "a news anchor in a blue shirt presents the news live", "video_id": "video10667", "sen_id": 248227}, {"caption": "a women is reading news about the shippi forced published figures about the paid-up-capital and the womens are paid less than the men", "video_id": "video10667", "sen_id": 248228}, {"caption": "a woman in a blue shirt is speaking on tv", "video_id": "video10667", "sen_id": 248229}, {"caption": "a female news reporter in a blue shirt is talking about wether or not big companies should publish figures showing the pay gap between male and female employees", "video_id": "video10667", "sen_id": 248230}, {"caption": "a woman in a blue shirt dictates the news", "video_id": "video10667", "sen_id": 248231}, {"caption": "beautiful woman giving some news about economy", "video_id": "video10667", "sen_id": 248232}, {"caption": "a lady news reader wearing a blue top is reading a news", "video_id": "video10667", "sen_id": 248233}, {"caption": "a woman in a blue shirt is talking on tv", "video_id": "video10667", "sen_id": 248234}, {"caption": "a women in blue dress is telling news report", "video_id": "video10667", "sen_id": 248235}, {"caption": "a news program news reader explaining about something", "video_id": "video10667", "sen_id": 248236}, {"caption": "a television anchor woman talks about the gender pay gap", "video_id": "video10667", "sen_id": 248237}, {"caption": "sexy blonde in blue top talking to the camera in newsroom studio", "video_id": "video10667", "sen_id": 248238}, {"caption": "a woman with long hair is talking on the news", "video_id": "video10667", "sen_id": 248239}, {"caption": "a series of selfie photographs are shown while a song about selfies is playing", "video_id": "video11386", "sen_id": 248240}, {"caption": "different people silly selfie photos fasting going throw a screen", "video_id": "video11386", "sen_id": 248241}, {"caption": "woman talk as selfies are flashed across a screen with people's instagram pictures", "video_id": "video11386", "sen_id": 248242}, {"caption": "a group of young people take selfies of themselves in various locations", "video_id": "video11386", "sen_id": 248243}, {"caption": "several women with long hair and flashing photos of selfies flash across the screen", "video_id": "video11386", "sen_id": 248244}, {"caption": "a young girl talks about taking selfies and she shows a bunch of examples", "video_id": "video11386", "sen_id": 248245}, {"caption": "a beautiful girl is dancing to music with many people around her", "video_id": "video11386", "sen_id": 248246}, {"caption": "a group of friends take selfies in several different places", "video_id": "video11386", "sen_id": 248247}, {"caption": "a different types of male and female celebrities giving poses to camera", "video_id": "video11386", "sen_id": 248248}, {"caption": "different screenshots of people s selfies including celebrities and everyday people", "video_id": "video11386", "sen_id": 248249}, {"caption": "there are some women dating in a partuy", "video_id": "video11386", "sen_id": 248250}, {"caption": "the models are appearing for photos with different gestures and postures", "video_id": "video11386", "sen_id": 248251}, {"caption": "music video for the song #selfie by the chainsmokers", "video_id": "video11386", "sen_id": 248252}, {"caption": "pictures of many different people are being shown", "video_id": "video11386", "sen_id": 248253}, {"caption": "people taking selfies from different perspectives on their computers", "video_id": "video11386", "sen_id": 248254}, {"caption": "there is a woman posing with a specs on the face", "video_id": "video11386", "sen_id": 248255}, {"caption": "club scenes interspersed with images of selfies to electronic music", "video_id": "video11386", "sen_id": 248256}, {"caption": "several young people take selfie s in various locations at different times of day", "video_id": "video11386", "sen_id": 248257}, {"caption": "a women is wearing multi color cap on his head and big spectacles", "video_id": "video11386", "sen_id": 248258}, {"caption": "a compilation of selfie pictures with the song let me take a selfie playing", "video_id": "video11386", "sen_id": 248259}, {"caption": "a lady in a kitchen with a cooking apron on talking about nutmeg and how it is banned in saudi arabia", "video_id": "video11736", "sen_id": 248260}, {"caption": "a woman is showing her ingredients in the kitchen", "video_id": "video11736", "sen_id": 248261}, {"caption": "old woman in a black sweater and white apron talking in a kitchen", "video_id": "video11736", "sen_id": 248262}, {"caption": "a woman in the kitchen speaking about nutmeg while she is cooking", "video_id": "video11736", "sen_id": 248263}, {"caption": "there is a woman with grey hair and an apron talking in a kitchen", "video_id": "video11736", "sen_id": 248264}, {"caption": "a old woman in a kitchen showing some ingredients to prepare some dish", "video_id": "video11736", "sen_id": 248265}, {"caption": "a woman in a kitchen discusses nutmeg particularly how it is banned in saudi arabia", "video_id": "video11736", "sen_id": 248266}, {"caption": "an older woman is discussing cuisine mentioning a banned ingredient in saudi arabia", "video_id": "video11736", "sen_id": 248267}, {"caption": "in a kitchen someone is speaking about her country food and telling the recipe", "video_id": "video11736", "sen_id": 248268}, {"caption": "a woman is explaining how to use nutmeg in cooking", "video_id": "video11736", "sen_id": 248269}, {"caption": "a mature woman talking about a dish in the kitchen", "video_id": "video11736", "sen_id": 248270}, {"caption": "an old woman discussing the banning of the spice nutmeg in saudi arabia", "video_id": "video11736", "sen_id": 248271}, {"caption": "in a kitchen a woman is standing and speaking about different ingredients", "video_id": "video11736", "sen_id": 248272}, {"caption": "a woman in a kitchen preparing a meal", "video_id": "video11736", "sen_id": 248273}, {"caption": "a woman stands in a kitchen and talks about banned spices", "video_id": "video11736", "sen_id": 248274}, {"caption": "a mature woman talking about a food at kitchen", "video_id": "video11736", "sen_id": 248275}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video11736", "sen_id": 248276}, {"caption": "a woman in a tan black and red shirt showing ingredients to be used in a recipe", "video_id": "video11736", "sen_id": 248277}, {"caption": "an old woman is talking about the cooking items", "video_id": "video11736", "sen_id": 248278}, {"caption": "video of an cookery show by an old lad on titlisbusy kitchen", "video_id": "video11736", "sen_id": 248279}, {"caption": "a woman wearing a lime-green jacket holds a large knife and slices off the end of a dark eggplant placed on a cutting board between a bottle and food packages", "video_id": "video10796", "sen_id": 248280}, {"caption": "a woman cuts up an eggplant while telling the audience how to do it", "video_id": "video10796", "sen_id": 248281}, {"caption": "a woman in a green shirt demonstrating how to slice an eggplant", "video_id": "video10796", "sen_id": 248282}, {"caption": "a female chef in a green chefs coat cuts an eggplant", "video_id": "video10796", "sen_id": 248283}, {"caption": "there is a woman in green chopping a vegetable on a cutting board while speaking in a kitchen", "video_id": "video10796", "sen_id": 248284}, {"caption": "a women in green dress is preparing food in kitchen", "video_id": "video10796", "sen_id": 248285}, {"caption": "a woman in a green shirt talks about the ideal ways to cut an eggplant while demonstrating her technique", "video_id": "video10796", "sen_id": 248286}, {"caption": "one women cutting vegetable and makes it to slices", "video_id": "video10796", "sen_id": 248287}, {"caption": "a woman wearing green is slicing an eggplant in a kitchen", "video_id": "video10796", "sen_id": 248288}, {"caption": "a girl inside kitchen cutting with knife preparing some dish to eat", "video_id": "video10796", "sen_id": 248289}, {"caption": "a lady in a green shirt standing at a counter in a kitchen cutting an eggplant", "video_id": "video10796", "sen_id": 248290}, {"caption": "a woman is cutting vegetable with big knife", "video_id": "video10796", "sen_id": 248291}, {"caption": "a lady cutting some vegetable in her kitchen to prepare a dish", "video_id": "video10796", "sen_id": 248292}, {"caption": "a woman is giving a tutorial in a kitchen on how to cut an eggplant while holding one", "video_id": "video10796", "sen_id": 248293}, {"caption": "the young woman in green dress is cutting some vegetable on a cutter with knife", "video_id": "video10796", "sen_id": 248294}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10796", "sen_id": 248295}, {"caption": "a woman with green shirt is cutting vegetable by using large knife", "video_id": "video10796", "sen_id": 248296}, {"caption": "a female chef works on the prep work for a egg plant dish", "video_id": "video10796", "sen_id": 248297}, {"caption": "a woman in a kitchen is using a knife to cut up a vegitable", "video_id": "video10796", "sen_id": 248298}, {"caption": "a women is chopping brinjal on a cuting board", "video_id": "video10796", "sen_id": 248299}, {"caption": "a woman rides a horse and then cuddles with cats and then takes a ride", "video_id": "video12031", "sen_id": 248300}, {"caption": "a woman rides horse plays with kittens swings in a chair and drives a car while chatting with other girls", "video_id": "video12031", "sen_id": 248301}, {"caption": "a woman is swinging on a wooden swing she is also talking to her friends while driving", "video_id": "video12031", "sen_id": 248302}, {"caption": "various scenes with mariah carey while her music plays", "video_id": "video12031", "sen_id": 248303}, {"caption": "a song is being played and girls are driving", "video_id": "video12031", "sen_id": 248304}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video12031", "sen_id": 248305}, {"caption": " rides a horse and drives a car with several of her friends in this video graphic", "video_id": "video12031", "sen_id": 248306}, {"caption": "the beautyful girl is caring their pet and they are driving with their friend all wearing the blue dresess", "video_id": "video12031", "sen_id": 248307}, {"caption": "a women in red striped dress plays with kittens and ride with some girl in a car", "video_id": "video12031", "sen_id": 248308}, {"caption": "mariah carey performs a song in this music video", "video_id": "video12031", "sen_id": 248309}, {"caption": "a lady is playing with her pet and two ladies are traveling in a car on the road", "video_id": "video12031", "sen_id": 248310}, {"caption": "a woman plays with cats and dogs while singing a song about companionship", "video_id": "video12031", "sen_id": 248311}, {"caption": "a lady is riding a horse then laying on a blanket with a dog then holding a cat swinging in a swing and then driving a car", "video_id": "video12031", "sen_id": 248312}, {"caption": "a woman in casual clothing drives in car with friend and rides a horse through water", "video_id": "video12031", "sen_id": 248313}, {"caption": "a lady playing with cute animals while followed by a love song", "video_id": "video12031", "sen_id": 248314}, {"caption": "a pop star is singing in a music video which includes her riding a horse and driving a jeep", "video_id": "video12031", "sen_id": 248315}, {"caption": "a lady is playing with kittens and then three girls drive away on a car", "video_id": "video12031", "sen_id": 248316}, {"caption": "a girl is playing with a cat and some girls are going in the car", "video_id": "video12031", "sen_id": 248317}, {"caption": "a woman is singing and is shown in different outdoor scenes", "video_id": "video12031", "sen_id": 248318}, {"caption": "music video in which a woman appears with two cats and then in a car with 2 girlfriends", "video_id": "video12031", "sen_id": 248319}, {"caption": "a young woman talks about taking her puppy and its poop to the vet", "video_id": "video11753", "sen_id": 248320}, {"caption": "a woman is greeting her fans and audience saying she is going take the pet dog's puff to vet", "video_id": "video11753", "sen_id": 248321}, {"caption": "woman talking about a new puppy and she needs to take a poop sample to the vet", "video_id": "video11753", "sen_id": 248322}, {"caption": "a woman talking to a camera and standing next to her puppy", "video_id": "video11753", "sen_id": 248323}, {"caption": "a girl is speaking inside of her house there is a white puppy on the floor", "video_id": "video11753", "sen_id": 248324}, {"caption": "a woman here doing some actions and a little dog sleeping on the mats", "video_id": "video11753", "sen_id": 248325}, {"caption": "a woman in standing in her kitchen talking about her new puppy", "video_id": "video11753", "sen_id": 248326}, {"caption": "a girl in green tops is talking and seeing a white puppy lying on a mat", "video_id": "video11753", "sen_id": 248327}, {"caption": "beautiful girl talks about the puppy the puppy is in white color", "video_id": "video11753", "sen_id": 248328}, {"caption": "a blonde woman who vlogs gets a new white puppy", "video_id": "video11753", "sen_id": 248329}, {"caption": "there is a women with her dog inside the house", "video_id": "video11753", "sen_id": 248330}, {"caption": "a thin woman with long blond hair starts a videolog about her new puppy and its trip to the vet", "video_id": "video11753", "sen_id": 248331}, {"caption": "a cute girl is kept puppy in the floor", "video_id": "video11753", "sen_id": 248332}, {"caption": "cat and girl party forced in kiss to very affect girl but enjoyed", "video_id": "video11753", "sen_id": 248333}, {"caption": "a women is talking about a dog infront of the kitchen", "video_id": "video11753", "sen_id": 248334}, {"caption": "a women with lang hair is talking to a dog who is sleeping on mat", "video_id": "video11753", "sen_id": 248335}, {"caption": "a woman with long hair looks down at her fluffy white dog on the hooked-wool rug with red bone design", "video_id": "video11753", "sen_id": 248336}, {"caption": "a yong woman does a vlog in which she talks about her new puppy", "video_id": "video11753", "sen_id": 248337}, {"caption": "a blonde girl waves her hand over her head", "video_id": "video11753", "sen_id": 248338}, {"caption": "sexy girl talking about herself and her dog laying on floor", "video_id": "video11753", "sen_id": 248339}, {"caption": "this is a small clip of a movie as the man sits down on the couch in his living room while talking to someones", "video_id": "video12276", "sen_id": 248340}, {"caption": "a man is greeted by his smart home's artificial intelligence system jarvis", "video_id": "video12276", "sen_id": 248341}, {"caption": "a man walks into his home the home is talking to him and turning the lights and fireplace on for the man", "video_id": "video12276", "sen_id": 248342}, {"caption": "man walks into his automated house which he talks to", "video_id": "video12276", "sen_id": 248343}, {"caption": "a man wearing a suit is walking around his house talking", "video_id": "video12276", "sen_id": 248344}, {"caption": "a man walks into a house and is greeted by a computerized voice that gives him info about his time away", "video_id": "video12276", "sen_id": 248345}, {"caption": "two men having a conversation in a dark room", "video_id": "video12276", "sen_id": 248346}, {"caption": "a man walks into his home the home is talking to him and turning the lights and fireplace on for the man", "video_id": "video12276", "sen_id": 248347}, {"caption": "a rich guy is showing around the big house and explaining the purpose of the rooms", "video_id": "video12276", "sen_id": 248348}, {"caption": "the person walks across the stage as the fire place burns", "video_id": "video12276", "sen_id": 248349}, {"caption": "a computer system turns on a houses lights and talks to the home owner", "video_id": "video12276", "sen_id": 248350}, {"caption": "a man in a home just viewing the home and sitting on the sofa", "video_id": "video12276", "sen_id": 248351}, {"caption": "a man is walking around in a dark room", "video_id": "video12276", "sen_id": 248352}, {"caption": "shoot date 061307 one man talking in dark place", "video_id": "video12276", "sen_id": 248353}, {"caption": "outside its raining and a fire is inside the home the man sits in the chair", "video_id": "video12276", "sen_id": 248354}, {"caption": "group of people talking to each other in a room with a fireplace", "video_id": "video12276", "sen_id": 248355}, {"caption": "there is a men talking and looking around the full house", "video_id": "video12276", "sen_id": 248356}, {"caption": "a computer system speaks with the owner of a home and turns on the lights", "video_id": "video12276", "sen_id": 248357}, {"caption": "a man is welcomed as he walks into a house where there is a fire going in the fireplace", "video_id": "video12276", "sen_id": 248358}, {"caption": "a person is walking into the dark room near the fire place", "video_id": "video12276", "sen_id": 248359}, {"caption": "two young women carry a large pad used for track and field events", "video_id": "video12592", "sen_id": 248360}, {"caption": "two young woman carrying a large mat looking at their shoes and retrieving long poles then walking together up a flight of stairs", "video_id": "video12592", "sen_id": 248361}, {"caption": "two women move a thick athletic mat on a track and talk about their dirty shoes", "video_id": "video12592", "sen_id": 248362}, {"caption": "two young girls carrying a large gymnastics mat commenting their sports shoes and complaining about the pain they feel due to their exercising", "video_id": "video12592", "sen_id": 248363}, {"caption": "a two girl are doing various things in the home", "video_id": "video12592", "sen_id": 248364}, {"caption": "two girls carry a huge bed together across the track field", "video_id": "video12592", "sen_id": 248365}, {"caption": "two girls in blue dress color wearing cloth walking holding in hand and shoes in hand sitting and bamboo on top arranging displaying on screen", "video_id": "video12592", "sen_id": 248366}, {"caption": "some girls are at a sports camp and it shows many types of sports that they engage in", "video_id": "video12592", "sen_id": 248367}, {"caption": "two girls move a large mat comment on their dirty shoes chat in a locker room and walk up stairs together", "video_id": "video12592", "sen_id": 248368}, {"caption": "two girls working together", "video_id": "video12592", "sen_id": 248369}, {"caption": "two young girls are playing and also doing physical work to prepare themselves for sports", "video_id": "video12592", "sen_id": 248370}, {"caption": "there are two women carrying a big dunlap", "video_id": "video12592", "sen_id": 248371}, {"caption": "two ladies are fetching a large bed showing shoes taking poles and climbing steps", "video_id": "video12592", "sen_id": 248372}, {"caption": "two girls cleaning up a track and examining their dirty shoes while relaxing", "video_id": "video12592", "sen_id": 248373}, {"caption": "two girls are moving a very large mat across a field", "video_id": "video12592", "sen_id": 248374}, {"caption": "some people are walking up some out door steps", "video_id": "video12592", "sen_id": 248375}, {"caption": "two teenage girls in athletic gear working out together and hanging out", "video_id": "video12592", "sen_id": 248376}, {"caption": "two ladies are lifiting a big thing", "video_id": "video12592", "sen_id": 248377}, {"caption": "two ladies sitting in the dressing room and walking on the stairs", "video_id": "video12592", "sen_id": 248378}, {"caption": "some women are doing exercises in places", "video_id": "video12592", "sen_id": 248379}, {"caption": "a wonan taking selfies with shades on", "video_id": "video10739", "sen_id": 248380}, {"caption": "woman explains how to take a good selfie while a video of her taking several selfies is shown", "video_id": "video10739", "sen_id": 248381}, {"caption": "in a park a woman wearing sunglasses is posing for a self picture", "video_id": "video10739", "sen_id": 248382}, {"caption": "a lady taking more photos", "video_id": "video10739", "sen_id": 248383}, {"caption": "the young girl is watching the phone in the garden", "video_id": "video10739", "sen_id": 248384}, {"caption": "a young woman with long dark hair demonstrates tips on taking selfies", "video_id": "video10739", "sen_id": 248385}, {"caption": "a woman takes selfies outside and explains how to take better selfies", "video_id": "video10739", "sen_id": 248386}, {"caption": "a girl is showing how to take a nice selfie", "video_id": "video10739", "sen_id": 248387}, {"caption": "a lady watching a mobile phone and taking pahotos", "video_id": "video10739", "sen_id": 248388}, {"caption": "a black colored spect wearing sitting in a bench in park taking selfies herself green grass background", "video_id": "video10739", "sen_id": 248389}, {"caption": "brunette woman with sunglasses is taking some selfies", "video_id": "video10739", "sen_id": 248390}, {"caption": "instructional tip #2 tells and shows how to get a great selfie with the correct lighting in bright sunlight with a bright green background", "video_id": "video10739", "sen_id": 248391}, {"caption": "a woman telling you how to take great selfies in the sunlight", "video_id": "video10739", "sen_id": 248392}, {"caption": "a girl clicking her on selfie and giving tips on lighting", "video_id": "video10739", "sen_id": 248393}, {"caption": "a woman in glasses is taking a selfie", "video_id": "video10739", "sen_id": 248394}, {"caption": "a woman who has a long hair is taking selfie of herself", "video_id": "video10739", "sen_id": 248395}, {"caption": "a lady is taking pictures of herself on her smartphone", "video_id": "video10739", "sen_id": 248396}, {"caption": "a cute and beauty girl is taking selfie", "video_id": "video10739", "sen_id": 248397}, {"caption": "sexy brunette taking a selfie on phone", "video_id": "video10739", "sen_id": 248398}, {"caption": "a woman is taking a photo of herself outside", "video_id": "video10739", "sen_id": 248399}, {"caption": "a blue school bus is driving down the road with children going to school while playing the song the wheels on the bus", "video_id": "video11656", "sen_id": 248400}, {"caption": "a animated anthropomorphic bus drives down the street as someone sing the wheel on the bus", "video_id": "video11656", "sen_id": 248401}, {"caption": "blue cartoon bus with eyes and a mouth smiling while carrying passengers", "video_id": "video11656", "sen_id": 248402}, {"caption": "a cartoon bus is full of children and is about to pick up a zebra", "video_id": "video11656", "sen_id": 248403}, {"caption": "a childish-looking bus carries a group of children down a street", "video_id": "video11656", "sen_id": 248404}, {"caption": "a city bus moves slowly down a street in an urban setting", "video_id": "video11656", "sen_id": 248405}, {"caption": "a cartoon of a blue bus with characters in the bus the song is the wheels on the bus", "video_id": "video11656", "sen_id": 248406}, {"caption": "there is a school bus going through the road", "video_id": "video11656", "sen_id": 248407}, {"caption": "an automated clip of a bus with people on it while someone sings about the wheels on the bus", "video_id": "video11656", "sen_id": 248408}, {"caption": "animation of kids on a blue bus with eyes on the front singing the wheels on the bus", "video_id": "video11656", "sen_id": 248409}, {"caption": "the wheels on the bus is playing while a blue bus with eyes goes around town picking up characters in this animation", "video_id": "video11656", "sen_id": 248410}, {"caption": "here the a small rhym for the little baby has been sung", "video_id": "video11656", "sen_id": 248411}, {"caption": "the cartoon character and the bee is playing in their garden", "video_id": "video11656", "sen_id": 248412}, {"caption": "an animated blue bus drives on a street as the camera zooms in on the tires", "video_id": "video11656", "sen_id": 248413}, {"caption": "in the cartoon video a blue colour bus with childrens ride in the road", "video_id": "video11656", "sen_id": 248414}, {"caption": "it was a poem for the small kids singing that wheels of the bus go round in round which was amazing song for the childrens", "video_id": "video11656", "sen_id": 248415}, {"caption": "a blue-colored bus carrying lively cartoon characters halts at a bus stand to pick up one more addition", "video_id": "video11656", "sen_id": 248416}, {"caption": "a cartoon shows a bus full of kids going down the street and preparing to pick up a zebra at a bus stop", "video_id": "video11656", "sen_id": 248417}, {"caption": "a cartoon showing a blue bus with the wheels on the bus go round and round playing", "video_id": "video11656", "sen_id": 248418}, {"caption": "a blue bus made its way down the street", "video_id": "video11656", "sen_id": 248419}, {"caption": "a singer giving a vote of thanks after receiving a standing ovation from her audience", "video_id": "video12902", "sen_id": 248420}, {"caption": "a japanese pop group is concluding a performance for an arena of many people", "video_id": "video12902", "sen_id": 248421}, {"caption": "four girls standing and singing a song in group", "video_id": "video12902", "sen_id": 248422}, {"caption": "womens singing in a big stage near big crowd", "video_id": "video12902", "sen_id": 248423}, {"caption": "a band ans singer performs on a stage in front of a crowd", "video_id": "video12902", "sen_id": 248424}, {"caption": "a group of five persons in blue color performing on a stage where lot of peope gathered and appluding finally one lady thanks the gathering by bowing", "video_id": "video12902", "sen_id": 248425}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video12902", "sen_id": 248426}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12902", "sen_id": 248427}, {"caption": "a music show a lady singer singing the song on the stage", "video_id": "video12902", "sen_id": 248428}, {"caption": "a singer greeting a crowd at a concert in the khmer language", "video_id": "video12902", "sen_id": 248429}, {"caption": "there is a white dressed women singing on the stage", "video_id": "video12902", "sen_id": 248430}, {"caption": "a group of young dancers performing a dance on the stage", "video_id": "video12902", "sen_id": 248431}, {"caption": "a group of young asians perform in front of a large crowd at a concert", "video_id": "video12902", "sen_id": 248432}, {"caption": "a girl in a white dress is singing in front of a huge crowd", "video_id": "video12902", "sen_id": 248433}, {"caption": "a group of people are performing on a stage", "video_id": "video12902", "sen_id": 248434}, {"caption": "there is a women singing on the stage", "video_id": "video12902", "sen_id": 248435}, {"caption": "a group of girls performing in front of cheering fans", "video_id": "video12902", "sen_id": 248436}, {"caption": "dance show in which the performer sings and bow her head to say thank you", "video_id": "video12902", "sen_id": 248437}, {"caption": "the stage performance of the singer with dance", "video_id": "video12902", "sen_id": 248438}, {"caption": "some people on a stage are singing for an audience", "video_id": "video12902", "sen_id": 248439}, {"caption": "the voice of a woman talking as it shows a pan she is cooking onions celery and carrots in ", "video_id": "video12885", "sen_id": 248440}, {"caption": "a woman is adding vegetables to a pan to cook", "video_id": "video12885", "sen_id": 248441}, {"caption": "a woman stirs onions and bean sprouts and carrots in a pan on the stove", "video_id": "video12885", "sen_id": 248442}, {"caption": "someone is adding vegetables to a pan on a stove", "video_id": "video12885", "sen_id": 248443}, {"caption": "in the kitchen vegetables are added to the pan she puts in the carrot and beans", "video_id": "video12885", "sen_id": 248444}, {"caption": "a pan inside kitchen mixing vegetables shaking spoon displaying on screen", "video_id": "video12885", "sen_id": 248445}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12885", "sen_id": 248446}, {"caption": "there is a women cooking food in untensil", "video_id": "video12885", "sen_id": 248447}, {"caption": "one beautiful and lovely women make recipe with veg", "video_id": "video12885", "sen_id": 248448}, {"caption": "a lady frying a potato and carrot and beans in the pan which is on the table", "video_id": "video12885", "sen_id": 248449}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12885", "sen_id": 248450}, {"caption": "in the kitchen a woman making a dish with carrot and beans", "video_id": "video12885", "sen_id": 248451}, {"caption": "a foreign woman discusses her combining of ingredients for a certain dish", "video_id": "video12885", "sen_id": 248452}, {"caption": "an in home chef prepares a recipe by browning some onions", "video_id": "video12885", "sen_id": 248453}, {"caption": "someone is cooking some vegetable recipe adding onion beans and carrot", "video_id": "video12885", "sen_id": 248454}, {"caption": "someone is stirring up different ingredients", "video_id": "video12885", "sen_id": 248455}, {"caption": "there is a women cooking a dish with potato", "video_id": "video12885", "sen_id": 248456}, {"caption": "a woman is cooking cucumber beans and carrot in a kitchen", "video_id": "video12885", "sen_id": 248457}, {"caption": "women mixing vegetables and making a dish", "video_id": "video12885", "sen_id": 248458}, {"caption": "a lady is adding chopped beans and carrot and frying it", "video_id": "video12885", "sen_id": 248459}, {"caption": "two people verse each other on the tennis court", "video_id": "video10322", "sen_id": 248460}, {"caption": "a man in red battles a man in white during a tennis match", "video_id": "video10322", "sen_id": 248461}, {"caption": "a man in red t-shirt is playing badminton match with another person in white t-shirt", "video_id": "video10322", "sen_id": 248462}, {"caption": "there is a red tshirt man playing badminton", "video_id": "video10322", "sen_id": 248463}, {"caption": "two men play a badmitton game in a stadium in front of a large crowd", "video_id": "video10322", "sen_id": 248464}, {"caption": "two players are playing in a badminton event of sports", "video_id": "video10322", "sen_id": 248465}, {"caption": "people gathered to watch tennis game in the play ground", "video_id": "video10322", "sen_id": 248466}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10322", "sen_id": 248467}, {"caption": "two men are playing in a bat mitten game", "video_id": "video10322", "sen_id": 248468}, {"caption": "people watching players playing badminton", "video_id": "video10322", "sen_id": 248469}, {"caption": "a badminton match between chen and lee where chen scores a point to lead 12-10", "video_id": "video10322", "sen_id": 248470}, {"caption": "two persons are playing badmention game", "video_id": "video10322", "sen_id": 248471}, {"caption": "intense music plays while two men play a badminton match", "video_id": "video10322", "sen_id": 248472}, {"caption": "two people are playing a competitive game in front of a crowd", "video_id": "video10322", "sen_id": 248473}, {"caption": "a red and white t shirt player playing batmanton game inside stadium audience watching clapping hands displaying on screen", "video_id": "video10322", "sen_id": 248474}, {"caption": "there are someone playing badminton in a court", "video_id": "video10322", "sen_id": 248475}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10322", "sen_id": 248476}, {"caption": "two players playing badminton very interesting to watch", "video_id": "video10322", "sen_id": 248477}, {"caption": "a crowd watches as two men play professional tennis", "video_id": "video10322", "sen_id": 248478}, {"caption": "the players are playing tennis in the tennis coat", "video_id": "video10322", "sen_id": 248479}, {"caption": "a bunch of people in suits are shown talking", "video_id": "video10991", "sen_id": 248480}, {"caption": "movie trailer is shown of a movie that morgan freeman stars in", "video_id": "video10991", "sen_id": 248481}, {"caption": "a man in a suit and a woman in a suit are talking to each other", "video_id": "video10991", "sen_id": 248482}, {"caption": "a famous actor talks about the various roles he has played throughout his career", "video_id": "video10991", "sen_id": 248483}, {"caption": "morgan freeman narrates a video about himself he appears in various roles including president of the united states civil war soldier and prisoner", "video_id": "video10991", "sen_id": 248484}, {"caption": "prisoner in their cell snapping their hands to music", "video_id": "video10991", "sen_id": 248485}, {"caption": "a group of people start to clap continuously together", "video_id": "video10991", "sen_id": 248486}, {"caption": "morgan freeman introduces a video highlighting portions of his acting career", "video_id": "video10991", "sen_id": 248487}, {"caption": "there is a old man coming to meet someone", "video_id": "video10991", "sen_id": 248488}, {"caption": "a review of videos by actor morgan freeman", "video_id": "video10991", "sen_id": 248489}, {"caption": "an older african man talks about a series of movies he has starred in", "video_id": "video10991", "sen_id": 248490}, {"caption": "there is a suitman enjoying with their friends", "video_id": "video10991", "sen_id": 248491}, {"caption": "preview of a movie coming up at the box office", "video_id": "video10991", "sen_id": 248492}, {"caption": "morgan freeman is talking while an american flag falls in front of the white house and then other movie clips are played", "video_id": "video10991", "sen_id": 248493}, {"caption": "a compilation of morgan freeman s career is being shown", "video_id": "video10991", "sen_id": 248494}, {"caption": "people walking around the room and some is clapping their hands", "video_id": "video10991", "sen_id": 248495}, {"caption": "a woman talking to the acting president of the united states", "video_id": "video10991", "sen_id": 248496}, {"caption": "a man with gray hair wearing a suit is surrounded by other people in business clothes and military uniforms a finger taps on a receiver held in the other hand", "video_id": "video10991", "sen_id": 248497}, {"caption": "several clips of the actor morgan freeman in different movies are played consecutively", "video_id": "video10991", "sen_id": 248498}, {"caption": "a video clip of movie flag from up ward falling girl speaking making a call in mobile old man lighting cigar clapping hand in jail", "video_id": "video10991", "sen_id": 248499}, {"caption": "a person is admitted in the icu and some peoples are gathered around him and taking care of him", "video_id": "video11593", "sen_id": 248500}, {"caption": "a woman is shown on a hospital bed while her two sons wait for news about her condition", "video_id": "video11593", "sen_id": 248501}, {"caption": "people are sleeping in a hospital waiting room as their loved one lies sick in a hospital bed", "video_id": "video11593", "sen_id": 248502}, {"caption": "a woman is in a hospital bed while her two sons wait anxiously in the waiting room", "video_id": "video11593", "sen_id": 248503}, {"caption": "a group of sleepy men dose off on couches in a hospital waiting room", "video_id": "video11593", "sen_id": 248504}, {"caption": "all persons are eating and sleeping in a hospital", "video_id": "video11593", "sen_id": 248505}, {"caption": "two people wait in the hospital by someone who is in very bad shape physically", "video_id": "video11593", "sen_id": 248506}, {"caption": "one man in hospital november 2011 bad condition", "video_id": "video11593", "sen_id": 248507}, {"caption": "a family is sleeping in the waiting room of a hospital", "video_id": "video11593", "sen_id": 248508}, {"caption": "a man is speaking about almost losing a woman to death who is in an intensive care room at a hospital", "video_id": "video11593", "sen_id": 248509}, {"caption": "there is a men walking with the help of a stick in a hospital", "video_id": "video11593", "sen_id": 248510}, {"caption": "the poeple sit in the waiting room as the person lay in the hospital bed", "video_id": "video11593", "sen_id": 248511}, {"caption": "a man is speaking about his brother is in hospitalized", "video_id": "video11593", "sen_id": 248512}, {"caption": "people waiting and sleeping in a hospital waiting room", "video_id": "video11593", "sen_id": 248513}, {"caption": "some people are sitting and talking in a room", "video_id": "video11593", "sen_id": 248514}, {"caption": "a l ady admitted in the emergency room in a serious state", "video_id": "video11593", "sen_id": 248515}, {"caption": " 2011 one man watching tv in home", "video_id": "video11593", "sen_id": 248516}, {"caption": "3 people sits on the sofa they slept the patient is on the bed", "video_id": "video11593", "sen_id": 248517}, {"caption": "a man on sofa sitting and patient lying on the bed displaying on screen", "video_id": "video11593", "sen_id": 248518}, {"caption": "two people in a room are sitting down", "video_id": "video11593", "sen_id": 248519}, {"caption": "a chef shows the various ingredients they are preparing to use in a recipe", "video_id": "video11881", "sen_id": 248520}, {"caption": "ingredients for a dish are here such as spices and eggs", "video_id": "video11881", "sen_id": 248521}, {"caption": "a slideshow showing a bowl of tomatoes celery and other vegetables", "video_id": "video11881", "sen_id": 248522}, {"caption": "some chopped ingredients in little white bowls", "video_id": "video11881", "sen_id": 248523}, {"caption": "music plays in the background as a slideshow shows ingredients with captions as to what they are inside of square white bowls", "video_id": "video11881", "sen_id": 248524}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11881", "sen_id": 248525}, {"caption": "in the white bowl green chillired chilli and few other ingredients are dispalyed in different bowls", "video_id": "video11881", "sen_id": 248526}, {"caption": "spices are being shown in small bowls on a countertop", "video_id": "video11881", "sen_id": 248527}, {"caption": "ingredients for a dish are laid out separately", "video_id": "video11881", "sen_id": 248528}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video11881", "sen_id": 248529}, {"caption": "several bowls are shown in a slide show each of them hold a different cooking ingredient", "video_id": "video11881", "sen_id": 248530}, {"caption": "various ingredients for a particular recipe are being displayed in white bowls", "video_id": "video11881", "sen_id": 248531}, {"caption": "a person is preparing a egg curry with other integrates", "video_id": "video11881", "sen_id": 248532}, {"caption": "an ingredients for cook are displaying in the screen", "video_id": "video11881", "sen_id": 248533}, {"caption": "different ingredients are shown is their own separate bowl", "video_id": "video11881", "sen_id": 248534}, {"caption": "various foods ingredients are shown in a white circular bowl and a square bowl set on a black counter top", "video_id": "video11881", "sen_id": 248535}, {"caption": "in the kitchensomeone preparing a delicious dish", "video_id": "video11881", "sen_id": 248536}, {"caption": "a chef prepares for a recipe by showing all the ingredients needed for the recipe", "video_id": "video11881", "sen_id": 248537}, {"caption": "a cook prepares food in a white bowl on a blue table", "video_id": "video11881", "sen_id": 248538}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video11881", "sen_id": 248539}, {"caption": "a woman who is having a fashion tutorial video", "video_id": "video10158", "sen_id": 248540}, {"caption": "an obese woman is showing how she's putting together an outfit to wear", "video_id": "video10158", "sen_id": 248541}, {"caption": "an overweight woman shows of different clothing options", "video_id": "video10158", "sen_id": 248542}, {"caption": "a woman talks about what she will do with the clothing she has for fashion", "video_id": "video10158", "sen_id": 248543}, {"caption": "a lady fat body having a cloth on her han", "video_id": "video10158", "sen_id": 248544}, {"caption": "chubby lady introducing a few tops and belts to combine as great outfits", "video_id": "video10158", "sen_id": 248545}, {"caption": "a woman sitting in a closet talking about her clothing options", "video_id": "video10158", "sen_id": 248546}, {"caption": "a caucasian woman with long wavy brown hair is wearing a colorful scarf with her yellow shirt while showing a coral blouse and a navy blouse that she plans to wear with a skirt she already owns", "video_id": "video10158", "sen_id": 248547}, {"caption": "a young sitting in a closet surrounded by clothes discussing what clothes selection she will wear", "video_id": "video10158", "sen_id": 248548}, {"caption": "a girl in white dress color cloth sitting speaking discusing design clothes tie displaying on screen", "video_id": "video10158", "sen_id": 248549}, {"caption": "a woman talking about wearing a red shirt with a blue polka dot skirt", "video_id": "video10158", "sen_id": 248550}, {"caption": "a women in a walk in closet reviews clothing she plans on wearing", "video_id": "video10158", "sen_id": 248551}, {"caption": "a lady white colored dressed taking a blue color dress", "video_id": "video10158", "sen_id": 248552}, {"caption": "a woman sits in a closet showing different clothes", "video_id": "video10158", "sen_id": 248553}, {"caption": "a young woman does a vlog about her choice of clothes", "video_id": "video10158", "sen_id": 248554}, {"caption": "a women is showing some different types of tops and tyes in the textile shop", "video_id": "video10158", "sen_id": 248555}, {"caption": "a woman is selling a cloths and telling about products", "video_id": "video10158", "sen_id": 248556}, {"caption": "a woman displays a large pink dress from inside a well stocked closet", "video_id": "video10158", "sen_id": 248557}, {"caption": "a girl is talking about cloths that are cute", "video_id": "video10158", "sen_id": 248558}, {"caption": "a woman is showing a red shirt ina room", "video_id": "video10158", "sen_id": 248559}, {"caption": "a person is putting items in the food processor to puree them", "video_id": "video10281", "sen_id": 248560}, {"caption": "a man purees garlic and olive oil in a food processor", "video_id": "video10281", "sen_id": 248561}, {"caption": "a chef works on a recipe by putting vegetables into a large food processor", "video_id": "video10281", "sen_id": 248562}, {"caption": "a guy in a plaid shirt with a beard is showing how to make some sort of puree with a food processor", "video_id": "video10281", "sen_id": 248563}, {"caption": "a bearded man adds various ingredients into a food processor", "video_id": "video10281", "sen_id": 248564}, {"caption": "a person is adding different ingredients into the mixer and is finely grinding them", "video_id": "video10281", "sen_id": 248565}, {"caption": "a man is adding ingredients into a blender and blending them", "video_id": "video10281", "sen_id": 248566}, {"caption": "an in home chef describes and demonstrates a recipe he is working on", "video_id": "video10281", "sen_id": 248567}, {"caption": "a old man inside kitchen mixing grinding inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video10281", "sen_id": 248568}, {"caption": "a man with black beard is putting some cashews in grinder and grinding it", "video_id": "video10281", "sen_id": 248569}, {"caption": "a person is preparing a mixture of garlic paste on a grinder", "video_id": "video10281", "sen_id": 248570}, {"caption": "a man us putting ingredients into a food processor and blending them into a processor", "video_id": "video10281", "sen_id": 248571}, {"caption": "an in home chef starts a recipe by chopping garlic in a food processor", "video_id": "video10281", "sen_id": 248572}, {"caption": "someone is cooking delicious sauce by grinding garlic and olive oil and straining the puree", "video_id": "video10281", "sen_id": 248573}, {"caption": "a person is putting stuff into a blender", "video_id": "video10281", "sen_id": 248574}, {"caption": "there is a an with check shirt using mixer grinder", "video_id": "video10281", "sen_id": 248575}, {"caption": "a man explain and how is prepare the food", "video_id": "video10281", "sen_id": 248576}, {"caption": "an inhome chef works on a recipe by chopping garlic in a food processor", "video_id": "video10281", "sen_id": 248577}, {"caption": "a man with a beard showing how to put garlic in a food processor to get a fine puree", "video_id": "video10281", "sen_id": 248578}, {"caption": "some food is inside of a blender", "video_id": "video10281", "sen_id": 248579}, {"caption": "a puppy exerts itself really hard trying to secure the attention of its owner by scratching at high pace on his back as well as pulling & nipping at his grey hued jersey apparently unfazed the owner intently continues to attend to his computer work instead finally a disembodied male voice says: maybe it's just a way of getting your attention", "video_id": "video11810", "sen_id": 248580}, {"caption": "a man sitting on the floor and dog playing with him", "video_id": "video11810", "sen_id": 248581}, {"caption": "it was supposed that the dog wanted to spend the time with his master but the master says to leave him and get away", "video_id": "video11810", "sen_id": 248582}, {"caption": "a man is sitting in front of a computer and a dog is scratching his back", "video_id": "video11810", "sen_id": 248583}, {"caption": "one man works in laptop and a dog is funs", "video_id": "video11810", "sen_id": 248584}, {"caption": "a man is working with lap-top and his dog is pulling her shirt and scratching his back to get attention", "video_id": "video11810", "sen_id": 248585}, {"caption": "a man with his dog sitted infront of a laptop", "video_id": "video11810", "sen_id": 248586}, {"caption": "a yellow puppy is scratching the back of the man on the floor", "video_id": "video11810", "sen_id": 248587}, {"caption": "this is really cute someone is restless and trying out all tricks to seek attention but the other person appears to be totally engrossed with work on his laptop", "video_id": "video11810", "sen_id": 248588}, {"caption": "a small brown dog scratches at the sweater of his master", "video_id": "video11810", "sen_id": 248589}, {"caption": "a puppy dog is trying to climb a man s back who is seated on ground working on laptop", "video_id": "video11810", "sen_id": 248590}, {"caption": "there is a dog biting his owner while using laptop", "video_id": "video11810", "sen_id": 248591}, {"caption": "a brown colored dog scratching his legs to her owner who sat on the floor working with computer", "video_id": "video11810", "sen_id": 248592}, {"caption": "a young man looks at his computer while his dog scratches at the back of his shirt", "video_id": "video11810", "sen_id": 248593}, {"caption": "a small dog is trying to climb his owners back and pulling his tshirt", "video_id": "video11810", "sen_id": 248594}, {"caption": "there is a tshirt man using laptop with his dog", "video_id": "video11810", "sen_id": 248595}, {"caption": "a puppy is scratching a sitting man on the floor", "video_id": "video11810", "sen_id": 248596}, {"caption": "one dog is biting a man who works in laptop", "video_id": "video11810", "sen_id": 248597}, {"caption": "the video show a guy playing in the laptop and the dog behing of him", "video_id": "video11810", "sen_id": 248598}, {"caption": "a little dog is scratching a mans back sitting on the floor in front of a laptop", "video_id": "video11810", "sen_id": 248599}, {"caption": "a man describes the various aspects of a computer system he works on", "video_id": "video10854", "sen_id": 248600}, {"caption": "a demonstration for a computer part is shown for disk space", "video_id": "video10854", "sen_id": 248601}, {"caption": "a man describes the features of a video editing software", "video_id": "video10854", "sen_id": 248602}, {"caption": "cuda software is explained with voice overs and screen captures", "video_id": "video10854", "sen_id": 248603}, {"caption": "a man is talking about transporting video files", "video_id": "video10854", "sen_id": 248604}, {"caption": "a man describes his method for transfering video files on a computer", "video_id": "video10854", "sen_id": 248605}, {"caption": "a man discussing features and capabilities for power director 7", "video_id": "video10854", "sen_id": 248606}, {"caption": "a video of the voice of a man advertising on ati stream optimization", "video_id": "video10854", "sen_id": 248607}, {"caption": "a man is discussing a software program on the screen that has a picture of a big cd", "video_id": "video10854", "sen_id": 248608}, {"caption": "a man describes how to use and store the video files on his computer", "video_id": "video10854", "sen_id": 248609}, {"caption": "a graph shows how a program works as a person explains it", "video_id": "video10854", "sen_id": 248610}, {"caption": "a man explains the features of new stream optimizing software", "video_id": "video10854", "sen_id": 248611}, {"caption": "there are some details about ati stream optimization", "video_id": "video10854", "sen_id": 248612}, {"caption": "a graphic showing different ati stream optimizations for computers", "video_id": "video10854", "sen_id": 248613}, {"caption": "its comparison between two applications its use the pie chart to show the progress", "video_id": "video10854", "sen_id": 248614}, {"caption": "a person is explaining how to convert videos into high quality videos", "video_id": "video10854", "sen_id": 248615}, {"caption": "a screen of blue sky and clouds is next to a silver disk with widening colorful reflections in both directions", "video_id": "video10854", "sen_id": 248616}, {"caption": "an advertisement of ati stream optimization and a cd processing page is shown", "video_id": "video10854", "sen_id": 248617}, {"caption": "someone is talking about the videos and mp3 transferring to cd", "video_id": "video10854", "sen_id": 248618}, {"caption": "a user is explaining how to use a computer software", "video_id": "video10854", "sen_id": 248619}, {"caption": "a woman in talking about slicing chicken breast in two saying its easier to to cook this way", "video_id": "video11030", "sen_id": 248620}, {"caption": "a woman preparing chicken breast and discusing the portion size and why she cuts them into two pieces", "video_id": "video11030", "sen_id": 248621}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11030", "sen_id": 248622}, {"caption": "a woman talking about why she cuts meat in half to cook it", "video_id": "video11030", "sen_id": 248623}, {"caption": "a woman talks about a recipe that she is cutting up chicken for", "video_id": "video11030", "sen_id": 248624}, {"caption": "a girl inside kitchen meat cutting with knife on table preparing dish to serve to eat displaying on screen", "video_id": "video11030", "sen_id": 248625}, {"caption": "a woman slicing raw chicken on a cutting board", "video_id": "video11030", "sen_id": 248626}, {"caption": "in the kitchen a woman slicing meet in to small pieces", "video_id": "video11030", "sen_id": 248627}, {"caption": "a pair of hands prepares chicken for cooking a woman s voice offers instructions while jazz piano music plays in the background", "video_id": "video11030", "sen_id": 248628}, {"caption": "in a kitchen a woman cutting meat", "video_id": "video11030", "sen_id": 248629}, {"caption": "a knife and meat cut into pieces inside kitchen to prepare dish ready to serve to eat", "video_id": "video11030", "sen_id": 248630}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11030", "sen_id": 248631}, {"caption": "in the kitchen someone slicing chicken in to the pieces", "video_id": "video11030", "sen_id": 248632}, {"caption": "a lady have a slice of meat and cutting again which is on the table", "video_id": "video11030", "sen_id": 248633}, {"caption": " a woman describing about slicing the meat in two pieces", "video_id": "video11030", "sen_id": 248634}, {"caption": "a woman slicing two chicken breast on a wood cutting board", "video_id": "video11030", "sen_id": 248635}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video11030", "sen_id": 248636}, {"caption": "chicken being peeled off of wax paper then one of the pieces being sliced in half", "video_id": "video11030", "sen_id": 248637}, {"caption": "the paces of meet take and put in a table and cut it", "video_id": "video11030", "sen_id": 248638}, {"caption": "a person is cutting up meat on a table", "video_id": "video11030", "sen_id": 248639}, {"caption": "kids play at an amusement park with the park characters and characters from movies", "video_id": "video11575", "sen_id": 248640}, {"caption": "little boys and little girls are seen playing", "video_id": "video11575", "sen_id": 248641}, {"caption": "several children playing hula hoop eating ice cream and playing with darth vader", "video_id": "video11575", "sen_id": 248642}, {"caption": "a group of young children dressed up as characters", "video_id": "video11575", "sen_id": 248643}, {"caption": "a group of small boys pose holding toy light sabres", "video_id": "video11575", "sen_id": 248644}, {"caption": "children at disneyland playing and interacting with people in costumes", "video_id": "video11575", "sen_id": 248645}, {"caption": "kids are playing together with others around watching them", "video_id": "video11575", "sen_id": 248646}, {"caption": "many different shots of kids at an amusement park having fun are shown", "video_id": "video11575", "sen_id": 248647}, {"caption": "there is no sound in this footage of young children roaming around disneyland interactgin with chraracters and the rides", "video_id": "video11575", "sen_id": 248648}, {"caption": "young children playing at a theme park in costumes", "video_id": "video11575", "sen_id": 248649}, {"caption": "sme kids playing with a hoola hoop and a little boy playing light sabers with darth vader and luke skywalker", "video_id": "video11575", "sen_id": 248650}, {"caption": "there are many children s in a park playing different type of games", "video_id": "video11575", "sen_id": 248651}, {"caption": "kids are playing different games and taking part in halloween parties", "video_id": "video11575", "sen_id": 248652}, {"caption": "a small boy and a man are using light sabers to fight someone dressed like darth vader", "video_id": "video11575", "sen_id": 248653}, {"caption": "various silent clips of children interacting at disney", "video_id": "video11575", "sen_id": 248654}, {"caption": "children play with hoops and walk around a theme park experiencing different events", "video_id": "video11575", "sen_id": 248655}, {"caption": "young children are playing with lightsabers and pretending to fight people dressed as stat wars characters", "video_id": "video11575", "sen_id": 248656}, {"caption": "children play at disneyland and one has a light saber fight with darth vader", "video_id": "video11575", "sen_id": 248657}, {"caption": "at this party batman and some star wars figures have arrived", "video_id": "video11575", "sen_id": 248658}, {"caption": "small children playing with various characters at disney world while wearing different costumes", "video_id": "video11575", "sen_id": 248659}, {"caption": "a woman reacts angrily to missing a serve in a tennis match", "video_id": "video12676", "sen_id": 248660}, {"caption": "a singles match is going on between two women on an outdoor court", "video_id": "video12676", "sen_id": 248661}, {"caption": "two females having a tough game of tennis while an announcer narrates", "video_id": "video12676", "sen_id": 248662}, {"caption": "a woman appears to be very upset about her performance during a tennis competition", "video_id": "video12676", "sen_id": 248663}, {"caption": "a female tenis player wearing white is losing her cool during a tenis match", "video_id": "video12676", "sen_id": 248664}, {"caption": "two tennis players play tennis on a green tennis court while hundreds of spectators look on", "video_id": "video12676", "sen_id": 248665}, {"caption": "women in white is praying god while playing tennis match", "video_id": "video12676", "sen_id": 248666}, {"caption": "woman are playing in a tennis match in front of a crowd", "video_id": "video12676", "sen_id": 248667}, {"caption": "the players were playing tennis in the play ground and one player was praying", "video_id": "video12676", "sen_id": 248668}, {"caption": "two women are playing tennis on field with lots of audience watching them", "video_id": "video12676", "sen_id": 248669}, {"caption": "two persons are playing badminton game at the court", "video_id": "video12676", "sen_id": 248670}, {"caption": "two tennis players in tennis outfits playing a game while one laments a fault", "video_id": "video12676", "sen_id": 248671}, {"caption": "tennis competition is going on in a tennis field", "video_id": "video12676", "sen_id": 248672}, {"caption": "a red and white dress wearing girl playing tennis game inside stadium audience watching", "video_id": "video12676", "sen_id": 248673}, {"caption": "a couple of people are competing in a tennis match", "video_id": "video12676", "sen_id": 248674}, {"caption": "a women with white dress shouting herself on a court", "video_id": "video12676", "sen_id": 248675}, {"caption": "the womans s singles tennis match is on while the audience is enjoying it", "video_id": "video12676", "sen_id": 248676}, {"caption": "the random compilation womens singles tennis playing in", "video_id": "video12676", "sen_id": 248677}, {"caption": "two players playing with white track suit are playing tennis in a court", "video_id": "video12676", "sen_id": 248678}, {"caption": "a couple people are playing tennis on a court", "video_id": "video12676", "sen_id": 248679}, {"caption": "an african man discusses a car that he is getting ready to test drive", "video_id": "video10049", "sen_id": 248680}, {"caption": "a man gets to drive the fast leaf sports car", "video_id": "video10049", "sen_id": 248681}, {"caption": "a man discusses a small sports car that he is getting ready to test drive", "video_id": "video10049", "sen_id": 248682}, {"caption": "a man in a white shirt is talking about a car that he is excited to drive", "video_id": "video10049", "sen_id": 248683}, {"caption": "a man with white shirt he is opened the car car keys he is on hand and their is beautiful home and cars", "video_id": "video10049", "sen_id": 248684}, {"caption": "a man in a white shirt is holding a key by a sport car", "video_id": "video10049", "sen_id": 248685}, {"caption": "a black man is explaining happily about his car", "video_id": "video10049", "sen_id": 248686}, {"caption": "a white shirt man talking nearby a car", "video_id": "video10049", "sen_id": 248687}, {"caption": "a man in white cloth reviewing an excellent looking white car", "video_id": "video10049", "sen_id": 248688}, {"caption": "one man talk about new car inner features drives fast", "video_id": "video10049", "sen_id": 248689}, {"caption": "a black man stands in front of the white car the car door opened on both the sides the man lughs", "video_id": "video10049", "sen_id": 248690}, {"caption": "a man in white shirt talking to someone", "video_id": "video10049", "sen_id": 248691}, {"caption": "a man describing a very nice white bmw car", "video_id": "video10049", "sen_id": 248692}, {"caption": "a man explaining something about his white sports car", "video_id": "video10049", "sen_id": 248693}, {"caption": "a guy is holding keys and talking", "video_id": "video10049", "sen_id": 248694}, {"caption": "a white shirt man talking in front of a car", "video_id": "video10049", "sen_id": 248695}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10049", "sen_id": 248696}, {"caption": "men explaining about the car by sitting in the car and holding the key of that car", "video_id": "video10049", "sen_id": 248697}, {"caption": "an african man discusses a sports car that he is getting ready to test drive", "video_id": "video10049", "sen_id": 248698}, {"caption": "a man in a white shirt is talking outside", "video_id": "video10049", "sen_id": 248699}, {"caption": "a clip of a woman who is falling off a strip pole", "video_id": "video10634", "sen_id": 248700}, {"caption": "girls are dancing very intimately with poles and hoops one girl falls down", "video_id": "video10634", "sen_id": 248701}, {"caption": "there is an outside area followed by a girl climbing up a pole and falling off as another girl continues to dance", "video_id": "video10634", "sen_id": 248702}, {"caption": "a pole dancer climbs to the top and leans back while another dancer performs with a hula hoop when the pole snaps in two causing the pole dancer to fall to the ground", "video_id": "video10634", "sen_id": 248703}, {"caption": "na", "video_id": "video10634", "sen_id": 248704}, {"caption": "a woman climbs up a stripper pole and falls down failing epically", "video_id": "video10634", "sen_id": 248705}, {"caption": "there are two female dancers on a stage and one of them is climbing a pole and falls off", "video_id": "video10634", "sen_id": 248706}, {"caption": "two girls dancing while one girl climbs the pole but broke and she falls", "video_id": "video10634", "sen_id": 248707}, {"caption": "two sexy women on a stage pole dancing in hula hooping", "video_id": "video10634", "sen_id": 248708}, {"caption": "talented dancers are showing their skills although one has climbed a pole and has suddenly fallen", "video_id": "video10634", "sen_id": 248709}, {"caption": "a girl climbs a pole while other girls balances a ring", "video_id": "video10634", "sen_id": 248710}, {"caption": "a woman in white climbs a pole while another woman uses a hula hoop the pole that the woman is climbing eventually breaks", "video_id": "video10634", "sen_id": 248711}, {"caption": "a woman climbing a pole in a show suddenly falls when the pole breaks", "video_id": "video10634", "sen_id": 248712}, {"caption": "a girl wearing very little clothes climbs up a dancer pole and leans back then the pole breaks and she falls", "video_id": "video10634", "sen_id": 248713}, {"caption": "bunch of sexy girls doing circus acts on stage", "video_id": "video10634", "sen_id": 248714}, {"caption": "there is a woman doing some trick on the stage", "video_id": "video10634", "sen_id": 248715}, {"caption": "stripper competition where the stripper climbs pole and falls down", "video_id": "video10634", "sen_id": 248716}, {"caption": "scantily clad women are performing on a stage while twirling hula hoops and one is climbing a metal pole", "video_id": "video10634", "sen_id": 248717}, {"caption": "two strippers are dancing on stage until one falls", "video_id": "video10634", "sen_id": 248718}, {"caption": "a woman on a stage is spinning a light around", "video_id": "video10634", "sen_id": 248719}, {"caption": "a high powered laser is shown for an ad", "video_id": "video12626", "sen_id": 248720}, {"caption": "an animation of a plane is flying off a commentator is explin", "video_id": "video12626", "sen_id": 248721}, {"caption": "abl has figured out how to make it possible to do a shoot down of missiles", "video_id": "video12626", "sen_id": 248722}, {"caption": "a us military plane flies over blue and lavender clouds as a striped green line and solid blue line merge to represent fighting strategy", "video_id": "video12626", "sen_id": 248723}, {"caption": "a computer generated plane flies over a backdrop of clouds with statments related to weapons", "video_id": "video12626", "sen_id": 248724}, {"caption": "an airplane is traveling slowly and following a green line", "video_id": "video12626", "sen_id": 248725}, {"caption": "there is a man talking about beam fire control", "video_id": "video12626", "sen_id": 248726}, {"caption": "explaining tests taken with the high power laser and integration on the ground or air", "video_id": "video12626", "sen_id": 248727}, {"caption": "its beam fire control then aeroplane fly on itits green color", "video_id": "video12626", "sen_id": 248728}, {"caption": "man speaking about the plane and its high power lasers in the air", "video_id": "video12626", "sen_id": 248729}, {"caption": "a narrator describes a new high power laser system that shoots down missiles", "video_id": "video12626", "sen_id": 248730}, {"caption": "a computer graphically designed image depicts an airplane flying in clouds across the screen", "video_id": "video12626", "sen_id": 248731}, {"caption": "a man talking about aircrafts and laser beams", "video_id": "video12626", "sen_id": 248732}, {"caption": "an us airforce flight with the high power laser and beam fire control tested in the ground for the weapon attack in the air", "video_id": "video12626", "sen_id": 248733}, {"caption": "a aeroplane moving in air still picture high weapon system high power missile shooter displaying on screen", "video_id": "video12626", "sen_id": 248734}, {"caption": "on the screen a flight is flying on the sky", "video_id": "video12626", "sen_id": 248735}, {"caption": "a perfomance test from a airplane company ltd", "video_id": "video12626", "sen_id": 248736}, {"caption": "a man is explain about a flight flying", "video_id": "video12626", "sen_id": 248737}, {"caption": "a man is talking about a high powered laser and a graphic is showing an airplane flying", "video_id": "video12626", "sen_id": 248738}, {"caption": "a man talks about a weapons system while an animation demonstrates it", "video_id": "video12626", "sen_id": 248739}, {"caption": "a man stirs a bowl of eggs and adds water salt ground pepper dried shrimps and grated carrots", "video_id": "video10042", "sen_id": 248740}, {"caption": "a man demonstrating how to cook something in a very thick accent", "video_id": "video10042", "sen_id": 248741}, {"caption": "person is beating an egg to prepare a dish", "video_id": "video10042", "sen_id": 248742}, {"caption": "how to cook great food com making of recipe putting eggs", "video_id": "video10042", "sen_id": 248743}, {"caption": "a man mixes ingredients together as he explains his recipe", "video_id": "video10042", "sen_id": 248744}, {"caption": "in a glass bowl yellowish semisolid stuff found and the same was stirred well initially adding water from a glass jug then adding a brown color powder is added then some soli brown pieces added then some carrot like stuff is added", "video_id": "video10042", "sen_id": 248745}, {"caption": "a person puts some ingredients into a bowl to prepare something", "video_id": "video10042", "sen_id": 248746}, {"caption": "a man adds some salt and black pepper powder to a glass bowl stirs it well", "video_id": "video10042", "sen_id": 248747}, {"caption": "one women making recipe with carrot and egg and beat it", "video_id": "video10042", "sen_id": 248748}, {"caption": "a person stirs and add ingredients to a bowl on the counter", "video_id": "video10042", "sen_id": 248749}, {"caption": "a person is preparing a dish with veggies in a kitchen", "video_id": "video10042", "sen_id": 248750}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10042", "sen_id": 248751}, {"caption": "the person mixes the ingredients in the clear bowl", "video_id": "video10042", "sen_id": 248752}, {"caption": "a man describes various steps in preparing a meal", "video_id": "video10042", "sen_id": 248753}, {"caption": "a person is adding water and food to a bowl", "video_id": "video10042", "sen_id": 248754}, {"caption": "someone is mixing up some rice in a bowl", "video_id": "video10042", "sen_id": 248755}, {"caption": "there is a man preparing a special dish", "video_id": "video10042", "sen_id": 248756}, {"caption": " salt and other stuffs and making a food item", "video_id": "video10042", "sen_id": 248757}, {"caption": "an inhome chef works on a batter recipe by whisking in some water", "video_id": "video10042", "sen_id": 248758}, {"caption": "a bowl of cream inside kitchen pouring colours water mixing and string to prepare to serve", "video_id": "video10042", "sen_id": 248759}, {"caption": "girl is playing hop scotch and stops on subskybuj sign", "video_id": "video10931", "sen_id": 248760}, {"caption": "a womans feet spread above some chalk writing on pavement", "video_id": "video10931", "sen_id": 248761}, {"caption": "a lady in flats stands with her legs wide apart near writing in chalk on the cement", "video_id": "video10931", "sen_id": 248762}, {"caption": "a woman plays hop scotch to the word subskrybuj", "video_id": "video10931", "sen_id": 248763}, {"caption": "a girl wearing flats plays hop scotch and stands over a name with a play button", "video_id": "video10931", "sen_id": 248764}, {"caption": "a woman wearing flat shoes a skirt and blouse hops and jumps with feet apart behind a ten-letter word and a symbol of a right-pointing arrow inside a circle which are both written in yellow chalk on the gray ground", "video_id": "video10931", "sen_id": 248765}, {"caption": "a woman is standing on the street with legs apart and on top of a word written in chalk", "video_id": "video10931", "sen_id": 248766}, {"caption": "a woman is standing over an ad on the street", "video_id": "video10931", "sen_id": 248767}, {"caption": "women who wore shoes playing on the road and some signal drawn on the road", "video_id": "video10931", "sen_id": 248768}, {"caption": "a girl on the street does a hop jump to land on a subscribe notation scribbled on the street", "video_id": "video10931", "sen_id": 248769}, {"caption": "a woman is standing on the street legs far apart a word is written on the road using chalk", "video_id": "video10931", "sen_id": 248770}, {"caption": "in a road lettersa are writtem", "video_id": "video10931", "sen_id": 248771}, {"caption": "a girl playing hopscotch and landing on a chalked area that says subscribe in another language", "video_id": "video10931", "sen_id": 248772}, {"caption": "a woman jumps and stands on ground with chalk drawing", "video_id": "video10931", "sen_id": 248773}, {"caption": "a woman with brown shoes standing in front of yellow sidewalk chalk writing", "video_id": "video10931", "sen_id": 248774}, {"caption": "there is a someone drawing on the road", "video_id": "video10931", "sen_id": 248775}, {"caption": "a woman in dark flat shoes is standing above a chalked word on concrete", "video_id": "video10931", "sen_id": 248776}, {"caption": "a woman in business cloths hope scotches up to some text on the pavement", "video_id": "video10931", "sen_id": 248777}, {"caption": "a woman is jumping to writing on the ground", "video_id": "video10931", "sen_id": 248778}, {"caption": "a woman stands on a logo written on the ground in chalk", "video_id": "video10931", "sen_id": 248779}, {"caption": "a man narrates a review of a video game car a video game car has the color and body stylings changed a person describes his opinion of the massacro video game car", "video_id": "video12633", "sen_id": 248780}, {"caption": "there is someone narrarating a car game while showing cars and how you can change the look of them", "video_id": "video12633", "sen_id": 248781}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video12633", "sen_id": 248782}, {"caption": "a man talking about a racing video game", "video_id": "video12633", "sen_id": 248783}, {"caption": "a video game sport car being altered and viewed from different angles", "video_id": "video12633", "sen_id": 248784}, {"caption": "an animated demonstration of a man sitting in and standing next to a car", "video_id": "video12633", "sen_id": 248785}, {"caption": "a man explains the customization of his car with the use of an online program", "video_id": "video12633", "sen_id": 248786}, {"caption": "a narrator speaks about a car he s not particularly fond of", "video_id": "video12633", "sen_id": 248787}, {"caption": "a man describe the new cars in the floor", "video_id": "video12633", "sen_id": 248788}, {"caption": "video game footage of car customization changing paint colour", "video_id": "video12633", "sen_id": 248789}, {"caption": "a man narrates as he plays a car video game", "video_id": "video12633", "sen_id": 248790}, {"caption": "a car in a video game is having its paint color changed", "video_id": "video12633", "sen_id": 248791}, {"caption": "a man showing and describing cars on a video game", "video_id": "video12633", "sen_id": 248792}, {"caption": "massacore car game has been demonstrated along with features", "video_id": "video12633", "sen_id": 248793}, {"caption": "someone is playing a video game with a car", "video_id": "video12633", "sen_id": 248794}, {"caption": "there is a man in white dressing standing nearby a car", "video_id": "video12633", "sen_id": 248795}, {"caption": "a man playing a video game that involves driving a car around", "video_id": "video12633", "sen_id": 248796}, {"caption": "in a car game different styles of car to select and with different features", "video_id": "video12633", "sen_id": 248797}, {"caption": "massacro is a two-door luxury sports car featured in the the high life", "video_id": "video12633", "sen_id": 248798}, {"caption": "a man plays grand theft auto v and customizes his car", "video_id": "video12633", "sen_id": 248799}, {"caption": "little lamas farm one of the lamas is trying to get out of her fence", "video_id": "video12681", "sen_id": 248800}, {"caption": "a young tan alpaca on grassy ground in a roped enclosure separated from the adults learns to go under the lowest rope to escape the pen", "video_id": "video12681", "sen_id": 248801}, {"caption": "a man talks to a small alpaca in a field", "video_id": "video12681", "sen_id": 248802}, {"caption": "a single baby alpaca is roped off before he escapes next to a fence full of alpaca", "video_id": "video12681", "sen_id": 248803}, {"caption": "a man gives instructions to a small llama to leave a gated area", "video_id": "video12681", "sen_id": 248804}, {"caption": "animal in its pen going under the fence", "video_id": "video12681", "sen_id": 248805}, {"caption": "a baby alpaca climbs under the fence to get closer to the camera", "video_id": "video12681", "sen_id": 248806}, {"caption": "all animals are placed on a green grass land", "video_id": "video12681", "sen_id": 248807}, {"caption": "a man explaining something about a different animal", "video_id": "video12681", "sen_id": 248808}, {"caption": "few lambs are in the grass one lamb alone come out its so cute", "video_id": "video12681", "sen_id": 248809}, {"caption": "a little lamb stands outside on its pen looking for a way out", "video_id": "video12681", "sen_id": 248810}, {"caption": "a small lama in a fame it walks and his eyes shows", "video_id": "video12681", "sen_id": 248811}, {"caption": "there is an beautiful animal walking on the grass", "video_id": "video12681", "sen_id": 248812}, {"caption": "an animals are standing in the carriage and some one is playing with it", "video_id": "video12681", "sen_id": 248813}, {"caption": "a man is calling a baby llama and teaching her to come through a fence", "video_id": "video12681", "sen_id": 248814}, {"caption": "a fer animals walking around in the zoo garden", "video_id": "video12681", "sen_id": 248815}, {"caption": "animal is eating raw meat of other animal", "video_id": "video12681", "sen_id": 248816}, {"caption": "a man talks to one of his alpacas and watches her esacpe by going under a fence", "video_id": "video12681", "sen_id": 248817}, {"caption": "a person moves around and watches an animal in acage", "video_id": "video12681", "sen_id": 248818}, {"caption": "different kinds of animals are here and it is a beautiful sight", "video_id": "video12681", "sen_id": 248819}, {"caption": "a group of men sit at a table and talk and laugh as asian characters show up on the screen", "video_id": "video11620", "sen_id": 248820}, {"caption": "a group of 6 men and women sitting around a table at a restaurant eating and laughing", "video_id": "video11620", "sen_id": 248821}, {"caption": "a group of young people share some laughs while eating out at a restaurant", "video_id": "video11620", "sen_id": 248822}, {"caption": "a gathering of young adults having dinner together and having fun", "video_id": "video11620", "sen_id": 248823}, {"caption": "friends are having fun and doing funny things in the dinner table", "video_id": "video11620", "sen_id": 248824}, {"caption": "people are sitting around a dining table and are eating and having fun", "video_id": "video11620", "sen_id": 248825}, {"caption": "six friends are dinning together and having fun of each other", "video_id": "video11620", "sen_id": 248826}, {"caption": "a group of young people laughing and eating around a table", "video_id": "video11620", "sen_id": 248827}, {"caption": "a group of people are sitting and laughing at a table", "video_id": "video11620", "sen_id": 248828}, {"caption": "group of people are having the fun both the guys and girls are eating", "video_id": "video11620", "sen_id": 248829}, {"caption": "they are sitting in a dining table and taking a dinner and also discussing something", "video_id": "video11620", "sen_id": 248830}, {"caption": "a group of people are seated around a rectangular dining table where light is focused eating with chopsticks teasing and touching each other", "video_id": "video11620", "sen_id": 248831}, {"caption": "friends are having their lunch in the hotel", "video_id": "video11620", "sen_id": 248832}, {"caption": "a number of asian people in a restaurant laughing at a joke", "video_id": "video11620", "sen_id": 248833}, {"caption": "a group of guy are laughing and eating together in a place", "video_id": "video11620", "sen_id": 248834}, {"caption": "a crowd of six people sit around a dinner table eating when something startles at least one of them and they create a commotion", "video_id": "video11620", "sen_id": 248835}, {"caption": "asian men joke around during a dinner outing", "video_id": "video11620", "sen_id": 248836}, {"caption": "a bunch of people sit and eat at a restaurant", "video_id": "video11620", "sen_id": 248837}, {"caption": "a many boys infront of tables sitting meals laughing and clapping hands displaying on screen", "video_id": "video11620", "sen_id": 248838}, {"caption": "there was a group of people sitting at a table who were clowning around", "video_id": "video11620", "sen_id": 248839}, {"caption": "a clip showing the beach of a foreign country", "video_id": "video10790", "sen_id": 248840}, {"caption": "a couple of people walking on rocks at the beach and a large antique wheel propped against a tree", "video_id": "video10790", "sen_id": 248841}, {"caption": "there are a few people walking on the beaches or in the woods", "video_id": "video10790", "sen_id": 248842}, {"caption": "a person delivers a wonderfully scenic look from the beach and forest", "video_id": "video10790", "sen_id": 248843}, {"caption": "scenic shots of the surface of an island", "video_id": "video10790", "sen_id": 248844}, {"caption": "a beautiful view of an exotic tropical island lanscape", "video_id": "video10790", "sen_id": 248845}, {"caption": "tropical island get away with rocky beaches and wooded backdrops", "video_id": "video10790", "sen_id": 248846}, {"caption": "there is a man standing in a shore", "video_id": "video10790", "sen_id": 248847}, {"caption": "a rocky beach where two persons stand and a garden with great cart wheel", "video_id": "video10790", "sen_id": 248848}, {"caption": "a beach having stones and the park near by to it", "video_id": "video10790", "sen_id": 248849}, {"caption": "a person is standing next to the beach", "video_id": "video10790", "sen_id": 248850}, {"caption": "a man is watching waves crash on a beach a wooden wheel is seen in the jungle", "video_id": "video10790", "sen_id": 248851}, {"caption": "there is a man standing on the shore in a sunny day", "video_id": "video10790", "sen_id": 248852}, {"caption": "a scene of a beach with the plants growing in hte beach areas", "video_id": "video10790", "sen_id": 248853}, {"caption": "someone is standing on rocks near a beach", "video_id": "video10790", "sen_id": 248854}, {"caption": "this is a video that shows a little bit about nature then goes into showing what looks like old cannons in the caribbean", "video_id": "video10790", "sen_id": 248855}, {"caption": "there is a man standing on the shore", "video_id": "video10790", "sen_id": 248856}, {"caption": "a beech two persons are standing", "video_id": "video10790", "sen_id": 248857}, {"caption": "a quick glance of very tall building surrounded by trees waves on the sea shore with some men walking on the shore", "video_id": "video10790", "sen_id": 248858}, {"caption": "a condo overlooks a beach while further in a dense growth of landscaping hides a wagon wheel and a wooden path", "video_id": "video10790", "sen_id": 248859}, {"caption": "a music video from a south african music group", "video_id": "video10419", "sen_id": 248860}, {"caption": "one man and three women are singing and dancing they have white and red body paint on", "video_id": "video10419", "sen_id": 248861}, {"caption": "a group of friends disguised themselves by painting them with england flag like is dancing for the song they composed", "video_id": "video10419", "sen_id": 248862}, {"caption": "person painted his face and body its in red and white color back of him there are many speakers", "video_id": "video10419", "sen_id": 248863}, {"caption": "a group of people are singing and dancing with a nice make-up", "video_id": "video10419", "sen_id": 248864}, {"caption": "a very strange music video with people with paint all over their bodies", "video_id": "video10419", "sen_id": 248865}, {"caption": "the dancers are singing and dancing with different makeups", "video_id": "video10419", "sen_id": 248866}, {"caption": "several people wearing extremely heavy makeup dance to some rap music about being the best and are painted several different colors", "video_id": "video10419", "sen_id": 248867}, {"caption": "people painted in body paint sing and dance in front of the camera", "video_id": "video10419", "sen_id": 248868}, {"caption": "bunch of people in body paint dancing in front of camera", "video_id": "video10419", "sen_id": 248869}, {"caption": "men and women dancing and singing song in a group", "video_id": "video10419", "sen_id": 248870}, {"caption": "the dance show programm connected with tv", "video_id": "video10419", "sen_id": 248871}, {"caption": "a man and woman in very odd costumes and makeup sing and dance", "video_id": "video10419", "sen_id": 248872}, {"caption": "a man with red face paint is singing and dancing in front of a stack of speakers", "video_id": "video10419", "sen_id": 248873}, {"caption": "a red and white man is in a room", "video_id": "video10419", "sen_id": 248874}, {"caption": "the dancers in strange make up performing to a music", "video_id": "video10419", "sen_id": 248875}, {"caption": "a clip from a music video produced by die antwoord", "video_id": "video10419", "sen_id": 248876}, {"caption": "a strange band of people in wild costumes sing and dance", "video_id": "video10419", "sen_id": 248877}, {"caption": "many people with painted bodies are dancing and singing", "video_id": "video10419", "sen_id": 248878}, {"caption": "a red and white man is next to speakers", "video_id": "video10419", "sen_id": 248879}, {"caption": "a young man models a shirt and pants while some music plays", "video_id": "video11089", "sen_id": 248880}, {"caption": "a man walks about in the street showing off his outfit", "video_id": "video11089", "sen_id": 248881}, {"caption": "a man with a blue shirt is standing in the middle of a road", "video_id": "video11089", "sen_id": 248882}, {"caption": "a man standing in the middle of the street with music playing", "video_id": "video11089", "sen_id": 248883}, {"caption": "a man shows off what he is wearing while in the middle of a street", "video_id": "video11089", "sen_id": 248884}, {"caption": "two guys wearing same dress doing something on the road", "video_id": "video11089", "sen_id": 248885}, {"caption": "two guy with same dress stand on road they wear blue shirt", "video_id": "video11089", "sen_id": 248886}, {"caption": "a man in jeans and a denim top and white sneakers is standing in a suburban street turning side to side thoughtfully", "video_id": "video11089", "sen_id": 248887}, {"caption": "a man in blue dress walking in the middle of the road", "video_id": "video11089", "sen_id": 248888}, {"caption": "a man wearing a light blue shirt dark pants and white shoes is walking in a street", "video_id": "video11089", "sen_id": 248889}, {"caption": "a man in a blue shirt is pacing on a street though his head is mostly off-camera", "video_id": "video11089", "sen_id": 248890}, {"caption": "a boy in blue shirt and black pant is posing for a photo shoot", "video_id": "video11089", "sen_id": 248891}, {"caption": "a man in a blue shirt is walking on a road", "video_id": "video11089", "sen_id": 248892}, {"caption": "the two young man wearaing same colour dress walking on the road", "video_id": "video11089", "sen_id": 248893}, {"caption": "music playing while a man in an oversized blue shirt stands in the middle of the street as if flaunting it", "video_id": "video11089", "sen_id": 248894}, {"caption": "a man in blue shirt is standing in the road", "video_id": "video11089", "sen_id": 248895}, {"caption": "a young man in a blue shirt and white shoes strikes a pose on a deserted street", "video_id": "video11089", "sen_id": 248896}, {"caption": "a man shows off his outfit while posing in the middle of the street", "video_id": "video11089", "sen_id": 248897}, {"caption": "a man wears a loose blue shirt with rolled sleeves tucked outside a pair of ankle-length black pants and white sneakers on a paved road by parked cars", "video_id": "video11089", "sen_id": 248898}, {"caption": "a man in a blue shirt and black pants stands in the middle of the street", "video_id": "video11089", "sen_id": 248899}, {"caption": "tiger cubs are crawling on an orangutang who is their surrogate parent", "video_id": "video12980", "sen_id": 248900}, {"caption": "an orangutang plays with a group of tiger cubs in an zoo enclosure", "video_id": "video12980", "sen_id": 248901}, {"caption": "there is a monkey and small tiger playing in a pen near a tree", "video_id": "video12980", "sen_id": 248902}, {"caption": "a huge gorilla is seen playing with a tiger cub", "video_id": "video12980", "sen_id": 248903}, {"caption": "one monkey and tiger cubs are playing together", "video_id": "video12980", "sen_id": 248904}, {"caption": "an arangutang plays and runs around with baby tigers", "video_id": "video12980", "sen_id": 248905}, {"caption": "monkey in brown with baby tiger carrying up and kissing", "video_id": "video12980", "sen_id": 248906}, {"caption": "there is a monkey playing with tiger at a zoo", "video_id": "video12980", "sen_id": 248907}, {"caption": "an orang outan playing with a tiger cub as like a mother playing with her child", "video_id": "video12980", "sen_id": 248908}, {"caption": "a monkey is playing with a tiger puppy", "video_id": "video12980", "sen_id": 248909}, {"caption": "an arangutang plays with baby tigers in a habitat", "video_id": "video12980", "sen_id": 248910}, {"caption": "a chimbancy playing with babies of a tiger", "video_id": "video12980", "sen_id": 248911}, {"caption": "a monkey and a tiger are playing in the zoo", "video_id": "video12980", "sen_id": 248912}, {"caption": "an orangutan is playing with a tiger cub under a tree", "video_id": "video12980", "sen_id": 248913}, {"caption": "a large orangutan plays with a set of tiger cubs", "video_id": "video12980", "sen_id": 248914}, {"caption": "a tiger and a monkey play together in there zoo encloser", "video_id": "video12980", "sen_id": 248915}, {"caption": "in a zoo small tiger cubs and monkey are playing nicely", "video_id": "video12980", "sen_id": 248916}, {"caption": "in this video clip an orangutan acts as an affectionate surrogate to a litter of tiger cubs", "video_id": "video12980", "sen_id": 248917}, {"caption": "a monkey brown colour and tiger baby kising up", "video_id": "video12980", "sen_id": 248918}, {"caption": "a monkey is playing with a baby tiger outside", "video_id": "video12980", "sen_id": 248919}, {"caption": "a cartoon stick figure man is walking and talking before jumping in the bushes", "video_id": "video11704", "sen_id": 248920}, {"caption": "a cartoon man wearing a green outfit is talking about survival skills and the best place to look", "video_id": "video11704", "sen_id": 248921}, {"caption": "a cartoon character walks on a sidewalk while talking before he jumps in a bush", "video_id": "video11704", "sen_id": 248922}, {"caption": "a stock man cartoon imitates the austrailian guy for nature", "video_id": "video11704", "sen_id": 248923}, {"caption": "a cartoon person in green is speaking and talking in front of a blue house and then jumps into the bushes", "video_id": "video11704", "sen_id": 248924}, {"caption": "a round-headed man with very thin arms wears a green vest over a shirt walks down a town road and heads toward a forested-and-rocky mountain range on a clear day with a few white clouds", "video_id": "video11704", "sen_id": 248925}, {"caption": "a balding humanoid walks into some bushes near a home", "video_id": "video11704", "sen_id": 248926}, {"caption": "a cartoon talking about looking to nature for barbecue survival skills", "video_id": "video11704", "sen_id": 248927}, {"caption": "a cartoon man is talking about survival skills and nature", "video_id": "video11704", "sen_id": 248928}, {"caption": "an australian character makes a break for the nature of the desert", "video_id": "video11704", "sen_id": 248929}, {"caption": "a bald round headed man in green shirt is walking in a green meadow", "video_id": "video11704", "sen_id": 248930}, {"caption": "a cartoon animation is playing with a man talking", "video_id": "video11704", "sen_id": 248931}, {"caption": "there is a man walking and talking in front of a house", "video_id": "video11704", "sen_id": 248932}, {"caption": "an animated character is shown and is speaking about civilization", "video_id": "video11704", "sen_id": 248933}, {"caption": "an animated character is talking about nature", "video_id": "video11704", "sen_id": 248934}, {"caption": "a cartoon man with an australian accent talking about nature survival skills", "video_id": "video11704", "sen_id": 248935}, {"caption": "a cartoon man in a green outfit talks about shrimping", "video_id": "video11704", "sen_id": 248936}, {"caption": "a cartoon man walka and puts his hands on his hips", "video_id": "video11704", "sen_id": 248937}, {"caption": "a cartoon man in a suit is walking along a backdrop of a natural desert behind a blue house", "video_id": "video11704", "sen_id": 248938}, {"caption": "nature can teach you the best survival skills to survive in civilizaton", "video_id": "video11704", "sen_id": 248939}, {"caption": "a woman in a sexy outfit dances and sings in a expansive mansion", "video_id": "video12101", "sen_id": 248940}, {"caption": "a woman walking into a mansion and walking through the mansion in very sexy clothes", "video_id": "video12101", "sen_id": 248941}, {"caption": "music video scenes of a woman in a large house wearing stylish sexy clothes", "video_id": "video12101", "sen_id": 248942}, {"caption": "a woman in lingerie moves around inside a very large estate home", "video_id": "video12101", "sen_id": 248943}, {"caption": "alicia keys and rihanna are shown while music is played then rihanna begins to sing", "video_id": "video12101", "sen_id": 248944}, {"caption": "a woman wearing lingerie moves around the inside of an old mansion", "video_id": "video12101", "sen_id": 248945}, {"caption": "a women in a large house dancing against the wall", "video_id": "video12101", "sen_id": 248946}, {"caption": "a woman wearing a black top and singing", "video_id": "video12101", "sen_id": 248947}, {"caption": "a woman taking her jacket off as she walks in a room and a woman in lingerie moving seductively", "video_id": "video12101", "sen_id": 248948}, {"caption": "a woman walking slowly down the hall while singing", "video_id": "video12101", "sen_id": 248949}, {"caption": "a woman dancing seductively in a music video set in a mansion", "video_id": "video12101", "sen_id": 248950}, {"caption": "the beauty women is ready to display their body beauty", "video_id": "video12101", "sen_id": 248951}, {"caption": "a famous music album with fine melody songs is being shown the heroine is a sexy lady entering into a hot room", "video_id": "video12101", "sen_id": 248952}, {"caption": "a woman in skimpy clothing walks through the hallways of a large manor", "video_id": "video12101", "sen_id": 248953}, {"caption": "a girl in black color dress wearing cloth dancing walking removing jacket singing displaying on screen", "video_id": "video12101", "sen_id": 248954}, {"caption": "a lady wearing black color dress is dancing", "video_id": "video12101", "sen_id": 248955}, {"caption": "the girl is ready to display their body in very attractively she is wearing the black gown", "video_id": "video12101", "sen_id": 248956}, {"caption": "a sultry woman in a black outfit gets out of a car and walks through a mansion while posing suggestively", "video_id": "video12101", "sen_id": 248957}, {"caption": "a sexy lady sings a dance song in her music video", "video_id": "video12101", "sen_id": 248958}, {"caption": "sexy blonde singer dancing and singing in her music album", "video_id": "video12101", "sen_id": 248959}, {"caption": "a woman wearing a dotted top is delivering news", "video_id": "video10751", "sen_id": 248960}, {"caption": "a woman with light brown hair is describing 14 old television shows that are no longer airing", "video_id": "video10751", "sen_id": 248961}, {"caption": "a female reporter report about 14 tv shows were gone too soon", "video_id": "video10751", "sen_id": 248962}, {"caption": "a young woman with red hair talks about the future of tv shows", "video_id": "video10751", "sen_id": 248963}, {"caption": "a female reporter talks about cancelled television series", "video_id": "video10751", "sen_id": 248964}, {"caption": "a tv reporter is describing how a tv show you love could be canceled very quickly", "video_id": "video10751", "sen_id": 248965}, {"caption": "a lady is speaking about a compilation of shows that didnt last long enough", "video_id": "video10751", "sen_id": 248966}, {"caption": "woman talking about 14 tv shows that were cancelled", "video_id": "video10751", "sen_id": 248967}, {"caption": "erin robinson speaking about the shows that were gone too soon", "video_id": "video10751", "sen_id": 248968}, {"caption": "this is an tv show for clevver news channel and one lady comparing", "video_id": "video10751", "sen_id": 248969}, {"caption": "a young women talking about top tv shows of the year", "video_id": "video10751", "sen_id": 248970}, {"caption": "a long brown haired woman telling about the upcoming tv shows in television", "video_id": "video10751", "sen_id": 248971}, {"caption": "a woman is talking about tv shows that were gone too soon", "video_id": "video10751", "sen_id": 248972}, {"caption": "a woman talks about television shows getting canceled while displaying pictures from various tv shows", "video_id": "video10751", "sen_id": 248973}, {"caption": "a woman is reporting on tv shows that get canceled", "video_id": "video10751", "sen_id": 248974}, {"caption": "a female talks about t show news with pictures of shows to the side", "video_id": "video10751", "sen_id": 248975}, {"caption": "in a news channel the beautiful news reader erin robinson is reading the news about the celebrities in tv shows", "video_id": "video10751", "sen_id": 248976}, {"caption": "a entertainment news anchor is talking about tv shows", "video_id": "video10751", "sen_id": 248977}, {"caption": "a girl in ash color dress wearing cloth standing and speaking still images picture photoes on screen displaying on screen", "video_id": "video10751", "sen_id": 248978}, {"caption": "a woman is talking on a tv show", "video_id": "video10751", "sen_id": 248979}, {"caption": "man goes through different apps on the phone and swipes through them as he speaks about them", "video_id": "video10612", "sen_id": 248980}, {"caption": "a person is holding a phone and is scrolling through the applications", "video_id": "video10612", "sen_id": 248981}, {"caption": "a person is showing how to navigate smartphone apps", "video_id": "video10612", "sen_id": 248982}, {"caption": "a man demonstrating how to slide a screen on a cell phone", "video_id": "video10612", "sen_id": 248983}, {"caption": "a man describing features on his smart phone", "video_id": "video10612", "sen_id": 248984}, {"caption": "a man scrolls through the screens of a smart phone", "video_id": "video10612", "sen_id": 248985}, {"caption": "a person is demonstrating how to use a cell phone", "video_id": "video10612", "sen_id": 248986}, {"caption": "a man scrolling and swiping a moblie phone", "video_id": "video10612", "sen_id": 248987}, {"caption": "a man is showing us a cell phone while he reviews it", "video_id": "video10612", "sen_id": 248988}, {"caption": "a man is doing a tutorial on how to use applications on a phone", "video_id": "video10612", "sen_id": 248989}, {"caption": "a person is showing the various features found on a particular cell phone", "video_id": "video10612", "sen_id": 248990}, {"caption": "a person is showing the front screen to a cell phone", "video_id": "video10612", "sen_id": 248991}, {"caption": "a man is speaking and showing different features of a cell phone", "video_id": "video10612", "sen_id": 248992}, {"caption": "a man is talking while holding and scrolling through apps on a cell phone", "video_id": "video10612", "sen_id": 248993}, {"caption": "a man is using an android device viewing mobile apps", "video_id": "video10612", "sen_id": 248994}, {"caption": "there is a man using her touch mobile", "video_id": "video10612", "sen_id": 248995}, {"caption": "a mobile is displayed with various features", "video_id": "video10612", "sen_id": 248996}, {"caption": "someone shows the smart phone and sliding the apps in that", "video_id": "video10612", "sen_id": 248997}, {"caption": "guy doing a review on a google android phone", "video_id": "video10612", "sen_id": 248998}, {"caption": "some guy is playing around with his phone", "video_id": "video10612", "sen_id": 248999}, {"caption": "people are shown milling about below a large white tunnel", "video_id": "video10885", "sen_id": 249000}, {"caption": "people on a news show talking about how muslim countries need to improve their education systems", "video_id": "video10885", "sen_id": 249001}, {"caption": "a newscaster showing a group of men praying together", "video_id": "video10885", "sen_id": 249002}, {"caption": "a lot of people gathered on a field", "video_id": "video10885", "sen_id": 249003}, {"caption": "more people are praying on the ground", "video_id": "video10885", "sen_id": 249004}, {"caption": "large white fans blow air on a large group of people who have gathered on a hot day", "video_id": "video10885", "sen_id": 249005}, {"caption": "a detailed survey about muslims in the world and muslims are doing namas in mosque and in the survery it is estimated that we have one and half billions muslims in the world", "video_id": "video10885", "sen_id": 249006}, {"caption": "a bald man wearing spectacles is talking and many muslim people are gathered in a place", "video_id": "video10885", "sen_id": 249007}, {"caption": "in the hajj people are located in their worship place of allahu at saudi arabia", "video_id": "video10885", "sen_id": 249008}, {"caption": "a large fan or propeller with a crowd below and people gathering", "video_id": "video10885", "sen_id": 249009}, {"caption": "a very large fan blows over a large crowd of muslim people", "video_id": "video10885", "sen_id": 249010}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10885", "sen_id": 249011}, {"caption": "many crowd are there in a hot of city in", "video_id": "video10885", "sen_id": 249012}, {"caption": "some peoples are waching a live show in a event", "video_id": "video10885", "sen_id": 249013}, {"caption": "bald guy in glass talking to the camera", "video_id": "video10885", "sen_id": 249014}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video10885", "sen_id": 249015}, {"caption": "a very large crowd in white clothes walking in a hall", "video_id": "video10885", "sen_id": 249016}, {"caption": "a large mass of people milling around while someone speaks in the background", "video_id": "video10885", "sen_id": 249017}, {"caption": "a large crowd of people in an outdoor area while two men discuss education over the video", "video_id": "video10885", "sen_id": 249018}, {"caption": "a bunch of people are in a crowded place", "video_id": "video10885", "sen_id": 249019}, {"caption": "man speaks about cooking food prepares the egg to the side carrots potatoes and has mince meat as well", "video_id": "video12788", "sen_id": 249020}, {"caption": "a man is preparing to cook a meal featuring two brown eggs chopped carrots and ground beef", "video_id": "video12788", "sen_id": 249021}, {"caption": "the ingredients like eggs carrots sliced mince meat etc are kept on the table and someone is going to make the dish", "video_id": "video12788", "sen_id": 249022}, {"caption": "a chef cooking some meat with two eggs and some beef", "video_id": "video12788", "sen_id": 249023}, {"caption": "a man and a bowl spoon mixing dish vegetables on table inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12788", "sen_id": 249024}, {"caption": "describing the items required like potato carrot couple of eggs", "video_id": "video12788", "sen_id": 249025}, {"caption": "a man is cooking in the kitchen with meat and vegetables", "video_id": "video12788", "sen_id": 249026}, {"caption": "a man shows the ingredients and tools for a recipes", "video_id": "video12788", "sen_id": 249027}, {"caption": "in a kitchen someone is ready with 2 eggs chopped carrots", "video_id": "video12788", "sen_id": 249028}, {"caption": "a chef tells us how to prepare a dish", "video_id": "video12788", "sen_id": 249029}, {"caption": "a man in a kitchen preparing a nigerian food dish", "video_id": "video12788", "sen_id": 249030}, {"caption": "a man is showing us a recipe to cook", "video_id": "video12788", "sen_id": 249031}, {"caption": "a man explaining something about the egg and cut vegetables", "video_id": "video12788", "sen_id": 249032}, {"caption": "a man has two eggs in a bowl and has diced vegitables that he will cook", "video_id": "video12788", "sen_id": 249033}, {"caption": "a man talks about his dish of boiled eggs", "video_id": "video12788", "sen_id": 249034}, {"caption": "a bowl contains two eggs brush etc and chopped vegetables and minced meat are kept on the table to make a dish", "video_id": "video12788", "sen_id": 249035}, {"caption": "a man is showing two eggs and chopped carrots diced to a reasonable size", "video_id": "video12788", "sen_id": 249036}, {"caption": "a guy shows his ingredient that he is using to cook his meal", "video_id": "video12788", "sen_id": 249037}, {"caption": "a man is explaining how to make a dish with various ingredients", "video_id": "video12788", "sen_id": 249038}, {"caption": "some vegetables and meat are on a table", "video_id": "video12788", "sen_id": 249039}, {"caption": "a video news program host asks a guest to comment on someone's opinion on gay rights as it relates to a study", "video_id": "video12609", "sen_id": 249040}, {"caption": "two anchors on sky news are discussing whether gay hate crime is on the rise in rural areas", "video_id": "video12609", "sen_id": 249041}, {"caption": "a guy is talking to another guy about gay hate crimes", "video_id": "video12609", "sen_id": 249042}, {"caption": "there are two mens talking on tv screen together", "video_id": "video12609", "sen_id": 249043}, {"caption": "a old man in black dress sitting and speaking news displaying on the screen", "video_id": "video12609", "sen_id": 249044}, {"caption": "a news reader is having conversation with a guest on their show and the guest is laughing", "video_id": "video12609", "sen_id": 249045}, {"caption": "two men talking with each other in news room", "video_id": "video12609", "sen_id": 249046}, {"caption": "a news caster speaks to another man about gay rights", "video_id": "video12609", "sen_id": 249047}, {"caption": "the news readers are wearing a black suit and pink designed tie and sitting in a really beautiful background", "video_id": "video12609", "sen_id": 249048}, {"caption": "the two men talk about the rights of gay people", "video_id": "video12609", "sen_id": 249049}, {"caption": "there is a suit man talking from the studio", "video_id": "video12609", "sen_id": 249050}, {"caption": "the two men talk to each other on a spit television screen", "video_id": "video12609", "sen_id": 249051}, {"caption": "its the gay hate crime on the rise in rural aprase", "video_id": "video12609", "sen_id": 249052}, {"caption": "the news readers are wearing black suits and sitting in a really beautiful background", "video_id": "video12609", "sen_id": 249053}, {"caption": "some guys are on the news talking about something", "video_id": "video12609", "sen_id": 249054}, {"caption": "two men are involved in a conversation about gay rights", "video_id": "video12609", "sen_id": 249055}, {"caption": "sky news hd gay hate is gay hate crime on the rise in rural areas", "video_id": "video12609", "sen_id": 249056}, {"caption": "two man having conversation about a criminal", "video_id": "video12609", "sen_id": 249057}, {"caption": "a news is about a gay crime on the rise in rural areas", "video_id": "video12609", "sen_id": 249058}, {"caption": "two men are talking about something on tv", "video_id": "video12609", "sen_id": 249059}, {"caption": "a chef shows a cheese dip dish that they have completed and is ready to be eaten", "video_id": "video12804", "sen_id": 249060}, {"caption": "a dip is baked in a bread bowl which enhances its popularity", "video_id": "video12804", "sen_id": 249061}, {"caption": "a man discussing bread-bowl artichoke dip and how everyone loves it", "video_id": "video12804", "sen_id": 249062}, {"caption": "man explains about a meal baked in a bread bowl while an image of the bread bowl is shown", "video_id": "video12804", "sen_id": 249063}, {"caption": "here we have a big bread bowl and a man explaining why they are so convenient", "video_id": "video12804", "sen_id": 249064}, {"caption": "a cheesy mixture is sitting in a bowl made of bread and surrounded by crackers", "video_id": "video12804", "sen_id": 249065}, {"caption": "a bread bowl on a plate with a dip inside and crackers around the bread", "video_id": "video12804", "sen_id": 249066}, {"caption": "a presentation of baked food product in a silivating manner", "video_id": "video12804", "sen_id": 249067}, {"caption": "food is full of cheese looks yummy and tempting to eat very nice to see", "video_id": "video12804", "sen_id": 249068}, {"caption": "a man discusses a type of food that is enclosed inside a bread bowl", "video_id": "video12804", "sen_id": 249069}, {"caption": "a man is talking about a baked casserole dish", "video_id": "video12804", "sen_id": 249070}, {"caption": "a bread dish is embellished and served in the plate", "video_id": "video12804", "sen_id": 249071}, {"caption": "a man explaining about some dish kept on table", "video_id": "video12804", "sen_id": 249072}, {"caption": "a man is talking about dip that s served in a bread bowl", "video_id": "video12804", "sen_id": 249073}, {"caption": "there is a dip that is baked in a bread bowl", "video_id": "video12804", "sen_id": 249074}, {"caption": "there is someone served food for a dinner", "video_id": "video12804", "sen_id": 249075}, {"caption": "a bread dish item is served in a plate", "video_id": "video12804", "sen_id": 249076}, {"caption": "the man tells how interesting this is and how people love baked break in a bowl", "video_id": "video12804", "sen_id": 249077}, {"caption": "a bowl of dish prepared cooked to serve to eat displaying on screen", "video_id": "video12804", "sen_id": 249078}, {"caption": "some food is inside of a brown bowl", "video_id": "video12804", "sen_id": 249079}, {"caption": "a purple graph sits beside a blue graph in front of a gray background", "video_id": "video12568", "sen_id": 249080}, {"caption": "a female is presenting the rates of cancer in us is four times higher than japnese based on the study of america cancer society", "video_id": "video12568", "sen_id": 249081}, {"caption": "a woman describes slides of cancer rates in the us versus other countries", "video_id": "video12568", "sen_id": 249082}, {"caption": "two charts one pink and one blue for us highest rates of cancer", "video_id": "video12568", "sen_id": 249083}, {"caption": "a screen split in two showing two different colored graphs of: us: highest rates of cancer in the world", "video_id": "video12568", "sen_id": 249084}, {"caption": "one screen spit in two showing graphs of the us: highest rates of cancer in the world", "video_id": "video12568", "sen_id": 249085}, {"caption": "a woman speaks about the high rates of cancer in the united states to a backdrop of two charts that shows cancer rates for both men and women in several countries", "video_id": "video12568", "sen_id": 249086}, {"caption": "two graphs shown side by side about cancer rates around the world", "video_id": "video12568", "sen_id": 249087}, {"caption": "statistics is displayed on the highest rates of cancer in the world", "video_id": "video12568", "sen_id": 249088}, {"caption": "a woman gives a presentation on a study that claims the united states has the highest cancer rates of all countries", "video_id": "video12568", "sen_id": 249089}, {"caption": "a woman standing on a stage is discussing a projection display of charts for cancer research", "video_id": "video12568", "sen_id": 249090}, {"caption": "a power point presentation slide is shown with information regarding cancer rates in the world", "video_id": "video12568", "sen_id": 249091}, {"caption": "a woman talks about cancer while displaying two colorful graphs", "video_id": "video12568", "sen_id": 249092}, {"caption": "the person is explaining about the high rates of cancer in the world", "video_id": "video12568", "sen_id": 249093}, {"caption": "a graph is being shown about something to people", "video_id": "video12568", "sen_id": 249094}, {"caption": "a woman is talking about us cancer population report", "video_id": "video12568", "sen_id": 249095}, {"caption": "a woman is on a stage giving a power point presentation about cancer", "video_id": "video12568", "sen_id": 249096}, {"caption": "a power point about getting cancer and bringing it over from other people", "video_id": "video12568", "sen_id": 249097}, {"caption": "a lady is reading statistics on cancer in the world", "video_id": "video12568", "sen_id": 249098}, {"caption": "a woman in a room is showing some graphs", "video_id": "video12568", "sen_id": 249099}, {"caption": "a woman is telling us how to cook chicken breast she has given us all the ingredients on how to cook the chicken", "video_id": "video12501", "sen_id": 249100}, {"caption": "a woman is making a cooking tutorial with chicken breast and other ingredients", "video_id": "video12501", "sen_id": 249101}, {"caption": "the lady talks about marinate the chicken breast with white pepper powder chines cooking oil and soya sauce", "video_id": "video12501", "sen_id": 249102}, {"caption": "a chef is marrinading chicken breasts wth a sauce made from white pepper powder chinese cooking wine and soy sauce", "video_id": "video12501", "sen_id": 249103}, {"caption": "a lady shows the ingredient one by one for the recipe she preparesshe shows chicken breast first she says to marinate the chicken", "video_id": "video12501", "sen_id": 249104}, {"caption": "a cook stirs up some chicken with wine in a pot", "video_id": "video12501", "sen_id": 249105}, {"caption": "a woman adds chicken soy sauce and other ingredients into a battered chicken dish", "video_id": "video12501", "sen_id": 249106}, {"caption": "a woman is showing different ingredient for a recipe on a counter", "video_id": "video12501", "sen_id": 249107}, {"caption": "one beautiful and lovely women make recipe in chicken", "video_id": "video12501", "sen_id": 249108}, {"caption": "a woman presents wet and dry ingredients to prepare a chicken dish", "video_id": "video12501", "sen_id": 249109}, {"caption": "a lady showing how to cook chicken breast in chinese style explaining the ingredients required for the recipe", "video_id": "video12501", "sen_id": 249110}, {"caption": "a woman is demonstrating cooking a chicken recipe and ingredients used", "video_id": "video12501", "sen_id": 249111}, {"caption": "a woman is marinating chicken breast and explaining the recipe", "video_id": "video12501", "sen_id": 249112}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video12501", "sen_id": 249113}, {"caption": "in a kitchen a woman preparing a meal made of chicken", "video_id": "video12501", "sen_id": 249114}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12501", "sen_id": 249115}, {"caption": "there is a women cooking food in untensil", "video_id": "video12501", "sen_id": 249116}, {"caption": "a woman gives a recipe that includes chicken breast", "video_id": "video12501", "sen_id": 249117}, {"caption": "a woman lists ingredients to make a chicken marinade before showing the batter ingredients for the next step", "video_id": "video12501", "sen_id": 249118}, {"caption": "a lady is preparing chicken dish and telling the names of the ingredients", "video_id": "video12501", "sen_id": 249119}, {"caption": "two male tennis players play a match in a large stadium", "video_id": "video10732", "sen_id": 249120}, {"caption": "two tennis players are playing a very competitive match in front of a big audience", "video_id": "video10732", "sen_id": 249121}, {"caption": "in a tennis court two men are playing tennis they are being watched by spectators", "video_id": "video10732", "sen_id": 249122}, {"caption": "two people wearing white shirts are playing tennis in a crowded stadium", "video_id": "video10732", "sen_id": 249123}, {"caption": "a tennis player serving the ball and volleying with another player in front of a large crowd", "video_id": "video10732", "sen_id": 249124}, {"caption": "from a indoor stadium play ground where a single tennis match is on swing with full of spectators", "video_id": "video10732", "sen_id": 249125}, {"caption": "two men play tennis on a court in front of a crowd", "video_id": "video10732", "sen_id": 249126}, {"caption": "two tennis players wearing white shirts are playing a match", "video_id": "video10732", "sen_id": 249127}, {"caption": "people watching two people playing tennis and cheering for them", "video_id": "video10732", "sen_id": 249128}, {"caption": "a man serves the tennis ball to his opponent and they hit it back and forth for a good while until his opponent manages to score on him", "video_id": "video10732", "sen_id": 249129}, {"caption": "there are two men playing tennis on a blue and green court", "video_id": "video10732", "sen_id": 249130}, {"caption": "two men are playing an intense game of tennis in a crowded arena", "video_id": "video10732", "sen_id": 249131}, {"caption": "two people are volleying a tennis ball back and forth in a tennis match for the u", "video_id": "video10732", "sen_id": 249132}, {"caption": "two people at a tennis court playing with people charring", "video_id": "video10732", "sen_id": 249133}, {"caption": "tennis players smack the ball back and forth with each other", "video_id": "video10732", "sen_id": 249134}, {"caption": "two men are playing each other in a tennis match", "video_id": "video10732", "sen_id": 249135}, {"caption": "there is a man smashing tennis ball in a court", "video_id": "video10732", "sen_id": 249136}, {"caption": "two men play tennis in front of a large crowd", "video_id": "video10732", "sen_id": 249137}, {"caption": "two men are playing us open series men s single tennis match and viewers are watching", "video_id": "video10732", "sen_id": 249138}, {"caption": "the video clip shows two men playing tennis in a tournament in black shorts and white t-shirts", "video_id": "video10732", "sen_id": 249139}, {"caption": "a building is shown with a white wispy fog", "video_id": "video12119", "sen_id": 249140}, {"caption": "wisps of air are overlayed on images of a school campus", "video_id": "video12119", "sen_id": 249141}, {"caption": "a disembodied voice is talking about john hopkins university", "video_id": "video12119", "sen_id": 249142}, {"caption": "a man talks about the different campuses of johns hopkins university", "video_id": "video12119", "sen_id": 249143}, {"caption": "an american flag blows in the wind moving around the front of a large building", "video_id": "video12119", "sen_id": 249144}, {"caption": "images of buildings are shown while a narrator talks about johns hopkins university", "video_id": "video12119", "sen_id": 249145}, {"caption": "a white shire wearing man with tie talk some important points", "video_id": "video12119", "sen_id": 249146}, {"caption": "a video is showing a building and the features about it", "video_id": "video12119", "sen_id": 249147}, {"caption": "a student is talking about going to a university over images of his campus", "video_id": "video12119", "sen_id": 249148}, {"caption": "a man is explaining there are more than one johns hopkins institutes", "video_id": "video12119", "sen_id": 249149}, {"caption": "a man discusses john hopkins university and its campuses while photos of one campus are shown", "video_id": "video12119", "sen_id": 249150}, {"caption": "a man lists locations of johns hopkins campus locations while images of buildings are shown", "video_id": "video12119", "sen_id": 249151}, {"caption": "a man narrates about johns hopkins university while images of the university are shown", "video_id": "video12119", "sen_id": 249152}, {"caption": "an american flag on a pole is over trees with blossoms growing in front of a gray building with many corners and windows", "video_id": "video12119", "sen_id": 249153}, {"caption": "a person in white dress color standing speaking building and flag and still image of building displaying on screen", "video_id": "video12119", "sen_id": 249154}, {"caption": "a camera is filming the exterior of a building", "video_id": "video12119", "sen_id": 249155}, {"caption": "a man is describing his experiences in telling people about his attendance to john hopkin s university", "video_id": "video12119", "sen_id": 249156}, {"caption": "a college student is talking about different locations of johns hopkins university", "video_id": "video12119", "sen_id": 249157}, {"caption": "a man is talking about the multiple campus locations of a college", "video_id": "video12119", "sen_id": 249158}, {"caption": "columns line the outside of a building and a flag flaps in the wind", "video_id": "video12119", "sen_id": 249159}, {"caption": "a person is versing someone else in ping pong for a game", "video_id": "video10768", "sen_id": 249160}, {"caption": "a man is playing table tennis and doing a nice job returning the ball", "video_id": "video10768", "sen_id": 249161}, {"caption": "a man in a room playing table tennis with no opponent", "video_id": "video10768", "sen_id": 249162}, {"caption": "a person in blue is playing ping pong", "video_id": "video10768", "sen_id": 249163}, {"caption": "a guy is playing ping-pong against an unseen opponent", "video_id": "video10768", "sen_id": 249164}, {"caption": "a brunette man in a blue uniform returns ping pong volleys in a room with a blue table and red carpeting", "video_id": "video10768", "sen_id": 249165}, {"caption": "there is someone playing table tennis in a indoor court", "video_id": "video10768", "sen_id": 249166}, {"caption": "players playing table tennis", "video_id": "video10768", "sen_id": 249167}, {"caption": "a player in black dress is practising tennis", "video_id": "video10768", "sen_id": 249168}, {"caption": "a boy in blue dress wearing playing tennis game with bat inside stadium displaying on screen", "video_id": "video10768", "sen_id": 249169}, {"caption": "a man is playing ping pong against a wall for practice", "video_id": "video10768", "sen_id": 249170}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video10768", "sen_id": 249171}, {"caption": "one coach talking about how to play tabletennis in a show", "video_id": "video10768", "sen_id": 249172}, {"caption": "a man is playing table tennis with an unknown individual", "video_id": "video10768", "sen_id": 249173}, {"caption": "a man is hitting back ping pong balls", "video_id": "video10768", "sen_id": 249174}, {"caption": "there is a man playing table tennis lonely", "video_id": "video10768", "sen_id": 249175}, {"caption": "a player playing table teniss game", "video_id": "video10768", "sen_id": 249176}, {"caption": "pan play paddleball on a court with floor to ceiling mirrors", "video_id": "video10768", "sen_id": 249177}, {"caption": "two players playing table tennis on blue table at home", "video_id": "video10768", "sen_id": 249178}, {"caption": "some people are playing ping pong on a court", "video_id": "video10768", "sen_id": 249179}, {"caption": "a woman draws a heart on a notepad with music playing", "video_id": "video12355", "sen_id": 249180}, {"caption": "a blonde draws a red heart on a post it while pop music is playing", "video_id": "video12355", "sen_id": 249181}, {"caption": "a blonde woman draws a heart on a post it note", "video_id": "video12355", "sen_id": 249182}, {"caption": "a girl drew a heart on a post it note and holds it up to the camera", "video_id": "video12355", "sen_id": 249183}, {"caption": "a woman with a pen drawing on a sticky note and holding it up", "video_id": "video12355", "sen_id": 249184}, {"caption": "a woman in a green shirt holding up a piece of paper", "video_id": "video12355", "sen_id": 249185}, {"caption": "a young woman showing a pen and on a paper she is drawing a herat shape", "video_id": "video12355", "sen_id": 249186}, {"caption": "the beauty girl draw the love sympol and show the picture", "video_id": "video12355", "sen_id": 249187}, {"caption": "a young woman draws a heart on a piece of paper with a red ink pen", "video_id": "video12355", "sen_id": 249188}, {"caption": "a girl with blonde hair is drawing a picture of a heart on a peice of paper", "video_id": "video12355", "sen_id": 249189}, {"caption": "girl is showing out something written in paper while other person is sitting there", "video_id": "video12355", "sen_id": 249190}, {"caption": "a young woman is at a table marking a yellow sticky note which she lifts to show the heart she drew", "video_id": "video12355", "sen_id": 249191}, {"caption": "a woman uses a pen to draw some notes on a piece of paper", "video_id": "video12355", "sen_id": 249192}, {"caption": "the beautiful girl in black dress is drawing something with a red pen in a book", "video_id": "video12355", "sen_id": 249193}, {"caption": "a teen girl is showing a piece of paper to the camera while music plays", "video_id": "video12355", "sen_id": 249194}, {"caption": "a women is drawing a heart with pen on paper", "video_id": "video12355", "sen_id": 249195}, {"caption": "a girl is sitting and put round on paper withpen", "video_id": "video12355", "sen_id": 249196}, {"caption": "a woman is writing using a pen and she draws heart", "video_id": "video12355", "sen_id": 249197}, {"caption": "young woman drawing a heart on a yellow sticky pad at a desk", "video_id": "video12355", "sen_id": 249198}, {"caption": "the woman uses a pen to draw a red heart on a yellow sticky note", "video_id": "video12355", "sen_id": 249199}, {"caption": "a man miixing a green marinade with a wooden spoon for a main dish", "video_id": "video10452", "sen_id": 249200}, {"caption": "a male voiceover and a wooden in a wooden of oil and herbs explain how to make a marinade", "video_id": "video10452", "sen_id": 249201}, {"caption": "a green sauce mixture is being stired in the bowl", "video_id": "video10452", "sen_id": 249202}, {"caption": "a man is stirring ingredients in a bowl while talking about adding enough oil for the right thickness", "video_id": "video10452", "sen_id": 249203}, {"caption": "a man is stirring some marinade with a spoon", "video_id": "video10452", "sen_id": 249204}, {"caption": "a person mixes up a bowl of pesto", "video_id": "video10452", "sen_id": 249205}, {"caption": "a sauce or marinade is being prepared in a bowl", "video_id": "video10452", "sen_id": 249206}, {"caption": "there is a man making a vegetable dish", "video_id": "video10452", "sen_id": 249207}, {"caption": "a person mixing some green leaves in a mud pot and stiring it well", "video_id": "video10452", "sen_id": 249208}, {"caption": "a person explains and confirms that the amount of oil in the recipe is just right", "video_id": "video10452", "sen_id": 249209}, {"caption": "ingredients are put in a bowl to prepare some food", "video_id": "video10452", "sen_id": 249210}, {"caption": "green color soup are mixed in the container", "video_id": "video10452", "sen_id": 249211}, {"caption": "in a brown colored dish green leaf are cutted into pieces which are stirring with wooden spoon", "video_id": "video10452", "sen_id": 249212}, {"caption": "green ingredients is added its like spinach then its stirred using spatula", "video_id": "video10452", "sen_id": 249213}, {"caption": "some green stuff is inside of a pink bowl", "video_id": "video10452", "sen_id": 249214}, {"caption": "ingredients are put in a vessel to mix it well", "video_id": "video10452", "sen_id": 249215}, {"caption": "the person mixes the food up in the bowl with a spoon", "video_id": "video10452", "sen_id": 249216}, {"caption": "wooden spoon stirring a marinade in a small brown bowl", "video_id": "video10452", "sen_id": 249217}, {"caption": "a wood spoon mixing garlic and oil herb marinade in a wood bowl", "video_id": "video10452", "sen_id": 249218}, {"caption": "someone is mising up some green stuff", "video_id": "video10452", "sen_id": 249219}, {"caption": "man goes though moisture in clouds and air and how much the air holds", "video_id": "video12482", "sen_id": 249220}, {"caption": "three buses are parked next to each other in a parking lot", "video_id": "video12482", "sen_id": 249221}, {"caption": "clouds hover in the blue sky above yellow school buses", "video_id": "video12482", "sen_id": 249222}, {"caption": "a man talks about the air and moisture in the clouds", "video_id": "video12482", "sen_id": 249223}, {"caption": "a man is talking about where moisture comes from while showing clouds and several parked buses", "video_id": "video12482", "sen_id": 249224}, {"caption": "a man is talking about the science of moisture", "video_id": "video12482", "sen_id": 249225}, {"caption": "a man explains what relative humidity is and how it affects the air", "video_id": "video12482", "sen_id": 249226}, {"caption": "there is a sunny day on the street", "video_id": "video12482", "sen_id": 249227}, {"caption": "a man speaks about science over images of the sky ad school buses", "video_id": "video12482", "sen_id": 249228}, {"caption": "someone explaining about vehicle which is parked in the ground and shows clouds", "video_id": "video12482", "sen_id": 249229}, {"caption": "a parking lot is full of school busses on a sunny day", "video_id": "video12482", "sen_id": 249230}, {"caption": "a row of yellow school buses sit by a field of trees surrounded by a blue sky with very few white clouds", "video_id": "video12482", "sen_id": 249231}, {"caption": "a man talks about the science of clouds while showing images of clouds", "video_id": "video12482", "sen_id": 249232}, {"caption": "many buses are stands in the bus stop", "video_id": "video12482", "sen_id": 249233}, {"caption": "several school buses are parked in a parking lot", "video_id": "video12482", "sen_id": 249234}, {"caption": "some white clouds in the sky are above buses", "video_id": "video12482", "sen_id": 249235}, {"caption": "there are lots of buses kept on the bus stand", "video_id": "video12482", "sen_id": 249236}, {"caption": "three yellow school buses are parked side by side in a black lot bordered with green trees in the back and under puffy white clouds under a blue-gray sky", "video_id": "video12482", "sen_id": 249237}, {"caption": "talking about the moisture weather of buses in stand", "video_id": "video12482", "sen_id": 249238}, {"caption": "some yellow school buses are parked outside", "video_id": "video12482", "sen_id": 249239}, {"caption": "a voice over of a guy discussing a driving game with a leader board displayed on screen", "video_id": "video12983", "sen_id": 249240}, {"caption": "a video game player is playing a high speed racing game", "video_id": "video12983", "sen_id": 249241}, {"caption": "pictures shows a score board about a car race", "video_id": "video12983", "sen_id": 249242}, {"caption": "the qualifying results of a race are being displayed in a list", "video_id": "video12983", "sen_id": 249243}, {"caption": "a race car driver lines his car up on the race track for a race", "video_id": "video12983", "sen_id": 249244}, {"caption": "a video animation of video game of cars racing and still screen of players displaying on screen", "video_id": "video12983", "sen_id": 249245}, {"caption": "a person playing a racing video game describing how they are going to progress further into the game", "video_id": "video12983", "sen_id": 249246}, {"caption": "the screen from a racing game post race is shown while the host discusses the game", "video_id": "video12983", "sen_id": 249247}, {"caption": "a man is talking about getting a new set of tires on the race car", "video_id": "video12983", "sen_id": 249248}, {"caption": "a man discussing what his strategy is in a game", "video_id": "video12983", "sen_id": 249249}, {"caption": "a score board for a video game is being shown", "video_id": "video12983", "sen_id": 249250}, {"caption": "someone playing a racing video game is checking his ranking", "video_id": "video12983", "sen_id": 249251}, {"caption": "a boy demonstrates a soccer video game", "video_id": "video12983", "sen_id": 249252}, {"caption": "a male is narrating something on the screen and the screen contains a blue box and a list", "video_id": "video12983", "sen_id": 249253}, {"caption": "the sports cars are moving through the busy streets of the city", "video_id": "video12983", "sen_id": 249254}, {"caption": "a score board from a game is being shown", "video_id": "video12983", "sen_id": 249255}, {"caption": "the man describes his strategy for the game", "video_id": "video12983", "sen_id": 249256}, {"caption": "a man is speaking about a car race", "video_id": "video12983", "sen_id": 249257}, {"caption": "someone is talking about the scores of the players", "video_id": "video12983", "sen_id": 249258}, {"caption": "a person is showing the resuts of the race on the screen", "video_id": "video12983", "sen_id": 249259}, {"caption": "a man is putting wax on his skis using an iron in a dimly lit room", "video_id": "video12248", "sen_id": 249260}, {"caption": "a man in a black knit hat uses his iron to wax his black white and blue skis", "video_id": "video12248", "sen_id": 249261}, {"caption": "a guy waxing his snow skis and talking about getting back out there", "video_id": "video12248", "sen_id": 249262}, {"caption": "a guy working on and preparing a snow ski so he can use it on the mountain for some fun free skiing", "video_id": "video12248", "sen_id": 249263}, {"caption": "a man in a white t-shirt fixing his blue ski s", "video_id": "video12248", "sen_id": 249264}, {"caption": "a man prepares his skis for an upcoming outing", "video_id": "video12248", "sen_id": 249265}, {"caption": "a man waxes his skis while talking in a garage", "video_id": "video12248", "sen_id": 249266}, {"caption": "a man doing something with his iron box in his home", "video_id": "video12248", "sen_id": 249267}, {"caption": "a skiing enthusiast is eagerly waxing and polishing his skis to get ready to get going on the ice", "video_id": "video12248", "sen_id": 249268}, {"caption": "a man talks about skiing as he waxes a ski", "video_id": "video12248", "sen_id": 249269}, {"caption": "a guy in a smith t-shirt and black beanie is waxing the bottom of a colorful ski", "video_id": "video12248", "sen_id": 249270}, {"caption": "a man is using an iron to set the wax into his skis he is finishing", "video_id": "video12248", "sen_id": 249271}, {"caption": "a man is using an iron to smooth out his skis before he prepares to use them for skiing", "video_id": "video12248", "sen_id": 249272}, {"caption": "a man in a black hat ironing a ski and talking about skiing in his hometown a man scraping wax off of a ski", "video_id": "video12248", "sen_id": 249273}, {"caption": "a man heating up a waxed iron and ironing a picture", "video_id": "video12248", "sen_id": 249274}, {"caption": "a man is making a surf board in side", "video_id": "video12248", "sen_id": 249275}, {"caption": "a man in a white shirt making a pair of skies from scratch", "video_id": "video12248", "sen_id": 249276}, {"caption": "a man irons decals on to a board", "video_id": "video12248", "sen_id": 249277}, {"caption": "man in a smith t shirt is waxing a ski using an iron to seal the wax", "video_id": "video12248", "sen_id": 249278}, {"caption": "a person in a room is ironing something", "video_id": "video12248", "sen_id": 249279}, {"caption": "a person brings a miniature chocolate cake with four candles in it over to a miniature cake kit instruction box", "video_id": "video12459", "sen_id": 249280}, {"caption": "a person places a small cupcake down on the table", "video_id": "video12459", "sen_id": 249281}, {"caption": "a woman with an australian accent is describing a mini chocolate cake kit", "video_id": "video12459", "sen_id": 249282}, {"caption": "a man put a very small cake onto a very small table cloth", "video_id": "video12459", "sen_id": 249283}, {"caption": "a woman is talking about making mini cake cupcakes", "video_id": "video12459", "sen_id": 249284}, {"caption": "tutorial on how to make mini cake that tastes good", "video_id": "video12459", "sen_id": 249285}, {"caption": "a woman discussing a cute mini cake kit", "video_id": "video12459", "sen_id": 249286}, {"caption": "the lady prepare a chocolate cake and displays the chocolate cake on a table", "video_id": "video12459", "sen_id": 249287}, {"caption": "a lady talking something about the birthday cake in home", "video_id": "video12459", "sen_id": 249288}, {"caption": "a number of candles on cake plate inside cake candles to light on table displaying on screen", "video_id": "video12459", "sen_id": 249289}, {"caption": "a person is displaying a mini chocolate cake with four candles on a picnic style blanket", "video_id": "video12459", "sen_id": 249290}, {"caption": "a woman describes and mini cake kit showing a mini chocolate cake", "video_id": "video12459", "sen_id": 249291}, {"caption": "a mini cake on a checkered blanket and a mini cake kit box", "video_id": "video12459", "sen_id": 249292}, {"caption": "two miniature cakes sit on a pink napkin in front of a packaged kit while a woman is explaining the kit", "video_id": "video12459", "sen_id": 249293}, {"caption": "there is a mini two layered chocolate cake with four candles this recipe is from scratch and it taste really good", "video_id": "video12459", "sen_id": 249294}, {"caption": "a woman placing a tiny birthday cake in front of its ingredient box", "video_id": "video12459", "sen_id": 249295}, {"caption": "a woman talking about making mini cakes from scratch", "video_id": "video12459", "sen_id": 249296}, {"caption": "a woman gives her intent to demonstrate a homemade version of a popin cookin kit", "video_id": "video12459", "sen_id": 249297}, {"caption": "a lady giving description on how to cook that the mini cake kit", "video_id": "video12459", "sen_id": 249298}, {"caption": "a person is holding a small cake inside", "video_id": "video12459", "sen_id": 249299}, {"caption": "a negative quote about stemexpress employees is read and commented about", "video_id": "video11973", "sen_id": 249300}, {"caption": "a person talks about a quotation on a major news show", "video_id": "video11973", "sen_id": 249301}, {"caption": "a journalist is talking about a person ordering the deaths of stemexpress employees", "video_id": "video11973", "sen_id": 249302}, {"caption": "a reporter discussing the company stemexpress shows a printed comment on the company that advocates harm to its executives", "video_id": "video11973", "sen_id": 249303}, {"caption": "a news broadcast is showing a graphic display of a quote of someone encouraging stemexpress employees be killed", "video_id": "video11973", "sen_id": 249304}, {"caption": "someone is describing text to other people and the words are black on a white background", "video_id": "video11973", "sen_id": 249305}, {"caption": "a presenter for the young turks news program is reading an article from a sacramento newspaper", "video_id": "video11973", "sen_id": 249306}, {"caption": "there are some note about a important matter", "video_id": "video11973", "sen_id": 249307}, {"caption": "a man speaking while showing a talking points memo about killing", "video_id": "video11973", "sen_id": 249308}, {"caption": "a man is reading from the sacramento beetalking points memo", "video_id": "video11973", "sen_id": 249309}, {"caption": "a reporter talking about a quote where orton is urging people to kill stemexpress employees for money", "video_id": "video11973", "sen_id": 249310}, {"caption": "a narrator reads an email from a show s viewer", "video_id": "video11973", "sen_id": 249311}, {"caption": "a news anchor is sitting at a desk and then a quote from the sacramento bee appears on screen", "video_id": "video11973", "sen_id": 249312}, {"caption": "in the young turks comment section of fox nation orton wrote kill stemexpress employees later added someone needs to double tap the (executive) of stemexpress", "video_id": "video11973", "sen_id": 249313}, {"caption": "a news anchor on the young turks describes a comment where someone offers money in exchange for the death of stemexpress employees", "video_id": "video11973", "sen_id": 249314}, {"caption": "the man discusses the a message about killing people he knows", "video_id": "video11973", "sen_id": 249315}, {"caption": "some the young turks comments about the employees", "video_id": "video11973", "sen_id": 249316}, {"caption": "a news reporter talks about a computer post written by a disturbed person", "video_id": "video11973", "sen_id": 249317}, {"caption": "a news story paragraph in black lettering on white background", "video_id": "video11973", "sen_id": 249318}, {"caption": "some white text is on a black back ground", "video_id": "video11973", "sen_id": 249319}, {"caption": "a man motions others towards him hurrying them towards the vehicle while a dinosaur comes up from behind", "video_id": "video10577", "sen_id": 249320}, {"caption": "a woman and a man is being chased by a dinosaur from jurassic park", "video_id": "video10577", "sen_id": 249321}, {"caption": "in a scene in jurassic park jeff goldblum's character tells other people to get quickly on a jeep", "video_id": "video10577", "sen_id": 249322}, {"caption": "a man in the back of a jeep waves for his friends to come and help him", "video_id": "video10577", "sen_id": 249323}, {"caption": "there is a desperate man summoning people over and then people jumping into the jeep with the man as a t-rex approaches", "video_id": "video10577", "sen_id": 249324}, {"caption": "a man in black shirt is driving a car and calling someone", "video_id": "video10577", "sen_id": 249325}, {"caption": " in a dark shirt sits in the back of a jeep waving while two others run to the front and start driving away from a dinosaur", "video_id": "video10577", "sen_id": 249326}, {"caption": "a man is sitting in a red jeep and he is calling out to two other persons to get into the jeep fast and a strange creature emerges from behind", "video_id": "video10577", "sen_id": 249327}, {"caption": "a man sitting in the back of a jeep speaking to 2 people that then get in the jeep as a large dinosaur appears", "video_id": "video10577", "sen_id": 249328}, {"caption": "flashlights dance across the back of the jeep as everyone runs out of the jungle", "video_id": "video10577", "sen_id": 249329}, {"caption": "in the original jurassic park the characters are running from the t-rex in a jeep", "video_id": "video10577", "sen_id": 249330}, {"caption": "a brief clip from a jurassic park film shows three characters barely escaping the impending threat of a dinosaur", "video_id": "video10577", "sen_id": 249331}, {"caption": "a man in a jeep urges the people with him to move faster to avoid a dinosaur", "video_id": "video10577", "sen_id": 249332}, {"caption": "people running away from a dinosaur to a truck", "video_id": "video10577", "sen_id": 249333}, {"caption": "a man midnight sitting in his jeep is asking his friends to come towards him by hand gestures", "video_id": "video10577", "sen_id": 249334}, {"caption": "there is a man inviting someone to come with him", "video_id": "video10577", "sen_id": 249335}, {"caption": "in a hollywood movie jurassic park one man drives car calls another woman", "video_id": "video10577", "sen_id": 249336}, {"caption": "guy in jeep calling two people to rush into the jeep", "video_id": "video10577", "sen_id": 249337}, {"caption": "a red car and a man calling a alady to sit and move in vehical", "video_id": "video10577", "sen_id": 249338}, {"caption": "the man motions for the people to get into the jeep quickly because a dinosaur is chasing them", "video_id": "video10577", "sen_id": 249339}, {"caption": "avril lavigne performs in a skate park in the music video for her song complicated", "video_id": "video11959", "sen_id": 249340}, {"caption": "a women in black dressing singing with a group", "video_id": "video11959", "sen_id": 249341}, {"caption": "a women in black dress is singing a song with a guitar in her hand", "video_id": "video11959", "sen_id": 249342}, {"caption": "the music people enjoy their activity and dancing in the club", "video_id": "video11959", "sen_id": 249343}, {"caption": "one sexy girl singing and dancing in the stage", "video_id": "video11959", "sen_id": 249344}, {"caption": "there is a black dressing woman singing a song from location", "video_id": "video11959", "sen_id": 249345}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video11959", "sen_id": 249346}, {"caption": "a woman holds a fishing rod swings it forward and catches a man on the lip with the fish hook which disgusts and causes pain to onlookers", "video_id": "video11959", "sen_id": 249347}, {"caption": "an album song a girl singing a song and dancing", "video_id": "video11959", "sen_id": 249348}, {"caption": "a girl in black dress singing sitting with stick guitar playing music man in hat still picture displaying on screen", "video_id": "video11959", "sen_id": 249349}, {"caption": "there is a women in black dressing singing a song", "video_id": "video11959", "sen_id": 249350}, {"caption": "a women sings and band with boys plays the music", "video_id": "video11959", "sen_id": 249351}, {"caption": "a silky haired women singing a song and hooks up the man the fishing net", "video_id": "video11959", "sen_id": 249352}, {"caption": "a young girl and her band perform a song on an open air stage", "video_id": "video11959", "sen_id": 249353}, {"caption": "avril lavigne in sexy white top singing and dancing in her music album", "video_id": "video11959", "sen_id": 249354}, {"caption": "there is a women singing with a group", "video_id": "video11959", "sen_id": 249355}, {"caption": "avril levine is singing a song in a music video", "video_id": "video11959", "sen_id": 249356}, {"caption": "one beautiful and sexy girl singing and dancing man watch it", "video_id": "video11959", "sen_id": 249357}, {"caption": "in the show the girl singsmany people plays the guitar the guys does the encouragement", "video_id": "video11959", "sen_id": 249358}, {"caption": "the singer avril lavigne is performing the song complicated for her music video", "video_id": "video11959", "sen_id": 249359}, {"caption": "the alta laguna park's view is shown with descriptions about the location", "video_id": "video11667", "sen_id": 249360}, {"caption": "there is a woman explains about a place", "video_id": "video11667", "sen_id": 249361}, {"caption": "a female talking about alta laguna park where it is located and how its her favorite place to have a picnic and all of the great views that you can see when hiking in this park", "video_id": "video11667", "sen_id": 249362}, {"caption": "railings cut through a dark elevated area under a blueish-gray sky with clouds paths of tan sand surround an oval of dark-green plants under a deep blue sky", "video_id": "video11667", "sen_id": 249363}, {"caption": "a girl is talking about a park that she likes to go to", "video_id": "video11667", "sen_id": 249364}, {"caption": "a narrator talks about a terrific park for a view", "video_id": "video11667", "sen_id": 249365}, {"caption": "a woman talking about alta laguna park and showing the view panoramic", "video_id": "video11667", "sen_id": 249366}, {"caption": "the scenes of alta laguna park are shown", "video_id": "video11667", "sen_id": 249367}, {"caption": "beautiful scenery being described by a crisp female voice", "video_id": "video11667", "sen_id": 249368}, {"caption": "a lady is talking about the view from a mountain", "video_id": "video11667", "sen_id": 249369}, {"caption": "alta laguna park being shown from the top of the park ad the trails that come from it", "video_id": "video11667", "sen_id": 249370}, {"caption": "a female talks about the views and trails of alta laguna park while showing mountains landscape", "video_id": "video11667", "sen_id": 249371}, {"caption": "alta laguna park which is forest and some sand roads in the hill", "video_id": "video11667", "sen_id": 249372}, {"caption": "someone is talking about alta laguna parkit s full of green and mountain", "video_id": "video11667", "sen_id": 249373}, {"caption": "a woman is talking about alta laguna park while the camera pans over different parts of it", "video_id": "video11667", "sen_id": 249374}, {"caption": "a promotional spot on alta laguna park demonstrated as a place of especially well defined heights and elevations", "video_id": "video11667", "sen_id": 249375}, {"caption": "alta park is shown with huge forest like trees and sand roads in between", "video_id": "video11667", "sen_id": 249376}, {"caption": "a narrated advertisment for hiking alta laguna park", "video_id": "video11667", "sen_id": 249377}, {"caption": "a forest grass land trees still mountain image displaying on screen", "video_id": "video11667", "sen_id": 249378}, {"caption": "some clouds are floating in a blue sky", "video_id": "video11667", "sen_id": 249379}, {"caption": "a company website is divided into horizontal blocks with the company logo in the upper left hand corner and key words and instructions dividing the remaining space", "video_id": "video11824", "sen_id": 249380}, {"caption": "a man is speaking about led lights and how his company is integrating them", "video_id": "video11824", "sen_id": 249381}, {"caption": "a company website for led lighting is displayed", "video_id": "video11824", "sen_id": 249382}, {"caption": "a man narrates a new software program and then shows a machine in action", "video_id": "video11824", "sen_id": 249383}, {"caption": "a man is talking about control systems and how they work", "video_id": "video11824", "sen_id": 249384}, {"caption": "a high powered lamp with many lights is glowing brightly", "video_id": "video11824", "sen_id": 249385}, {"caption": "a large street light with many led lights in a square shape", "video_id": "video11824", "sen_id": 249386}, {"caption": "a man speaking about led manufacturers then showing an led street lamp", "video_id": "video11824", "sen_id": 249387}, {"caption": "on a computer monitor displayed street light intelligence and later a view of street light pole is displayed", "video_id": "video11824", "sen_id": 249388}, {"caption": "street light intelligencemany lights are nice to seetoo many ligths", "video_id": "video11824", "sen_id": 249389}, {"caption": "about street light contol system from computerised remotely control room", "video_id": "video11824", "sen_id": 249390}, {"caption": "some electronics devices are being shown", "video_id": "video11824", "sen_id": 249391}, {"caption": "the control system of lighting the streets is shown", "video_id": "video11824", "sen_id": 249392}, {"caption": "a street light manufacturing company explains the features of their led street light", "video_id": "video11824", "sen_id": 249393}, {"caption": "a person is talking about steet light and led light they are going to place and they also working with few more to do", "video_id": "video11824", "sen_id": 249394}, {"caption": "someone is filming a light out side", "video_id": "video11824", "sen_id": 249395}, {"caption": "a man discussing light control systems over a clip of said light", "video_id": "video11824", "sen_id": 249396}, {"caption": "a computer device program with a black background lights with a white box on the bottom", "video_id": "video11824", "sen_id": 249397}, {"caption": "a person is showing street light with new invention", "video_id": "video11824", "sen_id": 249398}, {"caption": "a man talks about his company s new led street light system", "video_id": "video11824", "sen_id": 249399}, {"caption": "a man walks around a car dealership talking about assorted cars", "video_id": "video11058", "sen_id": 249400}, {"caption": "a man discusses the purchase of a luxury automobile", "video_id": "video11058", "sen_id": 249401}, {"caption": "a boy with white tshirt and cap shows the cars kept in the exhibition", "video_id": "video11058", "sen_id": 249402}, {"caption": "a person is explaining about the different cars which is available in the showroom", "video_id": "video11058", "sen_id": 249403}, {"caption": "a guy dressed in white t-shirt with white cap is explaining something about cars where a lot a cars are being parked around him", "video_id": "video11058", "sen_id": 249404}, {"caption": "a man in a white shirt talks about sports cars in a building", "video_id": "video11058", "sen_id": 249405}, {"caption": "a man dressed in white is walking around a showcase for luxurious sports cars and describing them to the audience", "video_id": "video11058", "sen_id": 249406}, {"caption": "a man films himself while he walks through a showroom full of expensive cars", "video_id": "video11058", "sen_id": 249407}, {"caption": "an arabian guy in a white baseball hat and white t-shirt shows off fancy cars", "video_id": "video11058", "sen_id": 249408}, {"caption": "this is a video of a guy showing off cars", "video_id": "video11058", "sen_id": 249409}, {"caption": "a man in a white v-neck t-shirt walks around an exotic car showroom", "video_id": "video11058", "sen_id": 249410}, {"caption": "a man in a white shirt shows cars in a car dealership", "video_id": "video11058", "sen_id": 249411}, {"caption": "a young man walks around his collection of famous sports cars", "video_id": "video11058", "sen_id": 249412}, {"caption": "a guy with white t-shirt and cap takes a selfie video at the car showroom", "video_id": "video11058", "sen_id": 249413}, {"caption": "there is a man in a white shirt and white hat inside of a car dealership looking at high class sports cars", "video_id": "video11058", "sen_id": 249414}, {"caption": "a car showroom with beautiful cars and a guy in white shirt taking about them", "video_id": "video11058", "sen_id": 249415}, {"caption": "a boy in the car showroom shows all the costly and high end cars and explains", "video_id": "video11058", "sen_id": 249416}, {"caption": "luxury sport cars and sedans in a new car showroom", "video_id": "video11058", "sen_id": 249417}, {"caption": "a man is showing us cars that are possible trades for what car they would like to get next", "video_id": "video11058", "sen_id": 249418}, {"caption": "a man in a white hat is walking around and talking", "video_id": "video11058", "sen_id": 249419}, {"caption": "a man rides a motorcycle across a desert landscape", "video_id": "video11742", "sen_id": 249420}, {"caption": "playing video game very interestingly through the desert", "video_id": "video11742", "sen_id": 249421}, {"caption": "a visual of an online video game in which a person wearing headset is giving instructions", "video_id": "video11742", "sen_id": 249422}, {"caption": "a man giving commentary while he drives through the desert on a video game", "video_id": "video11742", "sen_id": 249423}, {"caption": "a screen cast of a bike riding game with voice of players in the background", "video_id": "video11742", "sen_id": 249424}, {"caption": "a narrated video game clip showing two people riding a motorcycle through the desert", "video_id": "video11742", "sen_id": 249425}, {"caption": "there is a man riding the bike in to the desert", "video_id": "video11742", "sen_id": 249426}, {"caption": "a long bike on the desert moving fast and jumping with two men in a video game", "video_id": "video11742", "sen_id": 249427}, {"caption": "an animated cartoon character driving a bike on the dessert", "video_id": "video11742", "sen_id": 249428}, {"caption": "a man is driving a motorcycle at ridiculous speeds across the desert in a video game", "video_id": "video11742", "sen_id": 249429}, {"caption": "there is a man with a headset playing a video game where he is riding in the desert on a motorcycle", "video_id": "video11742", "sen_id": 249430}, {"caption": "a man is directing another man on how to proceed in a video game", "video_id": "video11742", "sen_id": 249431}, {"caption": "a man driving the red colour bike very fastly", "video_id": "video11742", "sen_id": 249432}, {"caption": "a youtuber and his friend riding a motorcycle through the desert", "video_id": "video11742", "sen_id": 249433}, {"caption": "two video game characters on a motorcycle speed around a desert and then hit a building while two young men commentate", "video_id": "video11742", "sen_id": 249434}, {"caption": "a man playing a video game with a face camera in the corner talking about parking in a barn", "video_id": "video11742", "sen_id": 249435}, {"caption": "a video game showing two people riding on a motorcycle through a desert is being played while a small window shows a live recording of one of the two playing the game together", "video_id": "video11742", "sen_id": 249436}, {"caption": "there is a video game of a man driving a motorcycle in a desert looking area", "video_id": "video11742", "sen_id": 249437}, {"caption": "offscreen players joke about mexican food while playing a game where you ride a motorcycle through a desert", "video_id": "video11742", "sen_id": 249438}, {"caption": "a wild high speed ride through the desert", "video_id": "video11742", "sen_id": 249439}, {"caption": "two men in suits argue on live television over their opinions", "video_id": "video10347", "sen_id": 249440}, {"caption": "two men in dark suits have a heated conversation under an umbrella on the street", "video_id": "video10347", "sen_id": 249441}, {"caption": "two news anchors are bickering on camera while clearly one is more fed up than the other", "video_id": "video10347", "sen_id": 249442}, {"caption": "two men are talking and arguing on television", "video_id": "video10347", "sen_id": 249443}, {"caption": "two debating men wearing dark suits argue under a white awning held up by a black pole outside near trees and a building", "video_id": "video10347", "sen_id": 249444}, {"caption": "there is a suit man shouting with someone", "video_id": "video10347", "sen_id": 249445}, {"caption": "two men are chatting and one is found to be becoming more serious", "video_id": "video10347", "sen_id": 249446}, {"caption": "two men on sky news are live from westminster talking about some recent actions that gordon brown has taken", "video_id": "video10347", "sen_id": 249447}, {"caption": "two men in black suits standing on a street corner have an argument", "video_id": "video10347", "sen_id": 249448}, {"caption": "two british gentlemen have a lively spat in the park", "video_id": "video10347", "sen_id": 249449}, {"caption": "a man in a suit and tie is outsdie arguing with another man in a suit and tie", "video_id": "video10347", "sen_id": 249450}, {"caption": "two men in suits are discussing things outside with green trees in the background", "video_id": "video10347", "sen_id": 249451}, {"caption": "people talking and arguing with each other", "video_id": "video10347", "sen_id": 249452}, {"caption": "gordon brown arguing to another guy on sky news", "video_id": "video10347", "sen_id": 249453}, {"caption": "a man on the news is resigning as a labour leader", "video_id": "video10347", "sen_id": 249454}, {"caption": "people in suits talk loudly over one another on the nightly news", "video_id": "video10347", "sen_id": 249455}, {"caption": "two men are arguing during an interview in the uk", "video_id": "video10347", "sen_id": 249456}, {"caption": "two guys in suit arguing on camera", "video_id": "video10347", "sen_id": 249457}, {"caption": "resignation decision of the labor leader has made much fuss among the top laders", "video_id": "video10347", "sen_id": 249458}, {"caption": "these two gentlemen are arguing on live t", "video_id": "video10347", "sen_id": 249459}, {"caption": "a group of runners are racing each other on the track", "video_id": "video11875", "sen_id": 249460}, {"caption": "four men run a race on a track and finish in slow motion", "video_id": "video11875", "sen_id": 249461}, {"caption": "a group of men run together in a race in a large track meet", "video_id": "video11875", "sen_id": 249462}, {"caption": "sprinters compete in a track meet at world class event and are shown crossing the finish line", "video_id": "video11875", "sen_id": 249463}, {"caption": "at a track race the number 4 contestant has just passed the finish line", "video_id": "video11875", "sen_id": 249464}, {"caption": "on the trackthere is a man fighting for victory", "video_id": "video11875", "sen_id": 249465}, {"caption": "the men run really fast on a track", "video_id": "video11875", "sen_id": 249466}, {"caption": "men are running a race on a field in front of a large stadium", "video_id": "video11875", "sen_id": 249467}, {"caption": "a group of players are running down on a race", "video_id": "video11875", "sen_id": 249468}, {"caption": "in all black a runner sprints ahead of his competition", "video_id": "video11875", "sen_id": 249469}, {"caption": "there is a man in black jersey running hard for victory", "video_id": "video11875", "sen_id": 249470}, {"caption": "at the track the hussain bolt is finshing the finishing point in very well", "video_id": "video11875", "sen_id": 249471}, {"caption": "athlete players are in running race and runs fast", "video_id": "video11875", "sen_id": 249472}, {"caption": "players are running in the track to win in the atletic games", "video_id": "video11875", "sen_id": 249473}, {"caption": "athlets are running very fast in an event in the peole are waching", "video_id": "video11875", "sen_id": 249474}, {"caption": "a atheletics are running to olympics on ground", "video_id": "video11875", "sen_id": 249475}, {"caption": "few men are participating in a running race and running", "video_id": "video11875", "sen_id": 249476}, {"caption": "running race one player can runs with very fast as bullet", "video_id": "video11875", "sen_id": 249477}, {"caption": "male runners compete on track in a 200 meter race and winner is seen crossing finish line", "video_id": "video11875", "sen_id": 249478}, {"caption": "a group of men running track during the mens 200 meter race", "video_id": "video11875", "sen_id": 249479}, {"caption": "a father sings a song from the lion king to his infant daughter which makes her cry", "video_id": "video10679", "sen_id": 249480}, {"caption": "a dad singing the lion king to a baby girl who is smiling until dad starts singing then she begins crying so he changes to a story and she starts smiling again", "video_id": "video10679", "sen_id": 249481}, {"caption": "a baby in a purple shirt crying and clapping", "video_id": "video10679", "sen_id": 249482}, {"caption": "a dad talking to his baby and singing songs as the baby cries", "video_id": "video10679", "sen_id": 249483}, {"caption": "a person sings with a baby that starts to cry because of it", "video_id": "video10679", "sen_id": 249484}, {"caption": "a small baby in printed dress is playing", "video_id": "video10679", "sen_id": 249485}, {"caption": "somebody singing babe can make reaction for each songs", "video_id": "video10679", "sen_id": 249486}, {"caption": "a man making baby laugh & cry", "video_id": "video10679", "sen_id": 249487}, {"caption": "one man singing a poem and the baby is crying in first poem in second poem the baby is smiling", "video_id": "video10679", "sen_id": 249488}, {"caption": "the baby cries with the dad sings a song from a movie", "video_id": "video10679", "sen_id": 249489}, {"caption": " with tiny pigtails and wearing a purple and pink flowered outfit reacts to her father s singing by crying or smiling and clapping", "video_id": "video10679", "sen_id": 249490}, {"caption": "a man sings to his baby and makes her cry and laugh", "video_id": "video10679", "sen_id": 249491}, {"caption": "a dad upsets his little baby girl when he asks her to sing a song from the lion king", "video_id": "video10679", "sen_id": 249492}, {"caption": "cute baby clapping hands and talking in front of camera", "video_id": "video10679", "sen_id": 249493}, {"caption": "a baby wearing a purple and pink shirt is sad when her father sings a song and then laughs when he sings another song", "video_id": "video10679", "sen_id": 249494}, {"caption": "this tiny toddler seems to be having mood fluctuations by switching very easily from wailing to clapping and smiling", "video_id": "video10679", "sen_id": 249495}, {"caption": "one man trying to make happy to the kid", "video_id": "video10679", "sen_id": 249496}, {"caption": "the bady is laughing when singing and crying when that ends", "video_id": "video10679", "sen_id": 249497}, {"caption": "a man is singing the lion king to a baby and she begins to cry", "video_id": "video10679", "sen_id": 249498}, {"caption": "a baby starts to cry when a man sings one song and laughs when he sings another", "video_id": "video10679", "sen_id": 249499}, {"caption": "a man wearing a red shirt drives a blue jeep across a rocky road by the side of ridged mountains", "video_id": "video10616", "sen_id": 249500}, {"caption": "a man drives a blue jeep along a rocky mountain road", "video_id": "video10616", "sen_id": 249501}, {"caption": "a cartoon jeep driving over rocks and grass", "video_id": "video10616", "sen_id": 249502}, {"caption": "a man is driving a blue jeep along a rocky road", "video_id": "video10616", "sen_id": 249503}, {"caption": "a man in a red shirt drives a blue car on the dirt", "video_id": "video10616", "sen_id": 249504}, {"caption": "a cartoon of a man in a red shirt driving a blue jeep vehicle", "video_id": "video10616", "sen_id": 249505}, {"caption": "a blue jeep travels fast with a driver in red t-shirt", "video_id": "video10616", "sen_id": 249506}, {"caption": "a cartoon man drives a blue jeep on a mountainside road", "video_id": "video10616", "sen_id": 249507}, {"caption": "a cartoon of a jeep driving over rough ground", "video_id": "video10616", "sen_id": 249508}, {"caption": "a blue truck with a man with a red shirt driving through out the mountains", "video_id": "video10616", "sen_id": 249509}, {"caption": "its a animated jeep driving by a man", "video_id": "video10616", "sen_id": 249510}, {"caption": "a cartoon movie showing someone is driving a jeep with normal speed", "video_id": "video10616", "sen_id": 249511}, {"caption": "a cartoon video with a man wearing a red shirt and is driving a jeep", "video_id": "video10616", "sen_id": 249512}, {"caption": "a cartoon man is driving a jeep beside a mountain", "video_id": "video10616", "sen_id": 249513}, {"caption": "a cartoon man is driving his truck on the mountain", "video_id": "video10616", "sen_id": 249514}, {"caption": "there is a man riding a jeep near by mountain", "video_id": "video10616", "sen_id": 249515}, {"caption": "a person in red tshirt driving the jeep on a road", "video_id": "video10616", "sen_id": 249516}, {"caption": "a blue jeep drives over rough terrain next to a mountain", "video_id": "video10616", "sen_id": 249517}, {"caption": "a jeep rides through the bumpy road", "video_id": "video10616", "sen_id": 249518}, {"caption": "a red jeep is driving on a urban street", "video_id": "video10616", "sen_id": 249519}, {"caption": "a young couple talk about where you can find their recipes on the web", "video_id": "video11933", "sen_id": 249520}, {"caption": "a man and a woman talking about their cooking channels", "video_id": "video11933", "sen_id": 249521}, {"caption": "a man and woman ask viewers to subscribe to their other cooking videos", "video_id": "video11933", "sen_id": 249522}, {"caption": "an oven closing a man talking and showing his cooking page and a woman talking", "video_id": "video11933", "sen_id": 249523}, {"caption": "a guy and girl discuss recipes that they have on their website", "video_id": "video11933", "sen_id": 249524}, {"caption": "two humans are discussing a veggie website and show", "video_id": "video11933", "sen_id": 249525}, {"caption": "a man in white shirt is talking with a woman in the kitchen", "video_id": "video11933", "sen_id": 249526}, {"caption": "a man in the whirte shirt talking about the meal he is taking", "video_id": "video11933", "sen_id": 249527}, {"caption": "a man an a woman are in a kitchen demonstrating their cooking and promoting their webpages", "video_id": "video11933", "sen_id": 249528}, {"caption": "a chef talks about his broad set of recipes available for viewing", "video_id": "video11933", "sen_id": 249529}, {"caption": "a girl and boy in white dress wearing standing speaking eating dish sitting on table displaying on screen", "video_id": "video11933", "sen_id": 249530}, {"caption": "plug excerpt from a food cooking show byron talbott is directing viewers to go to his youtube channel", "video_id": "video11933", "sen_id": 249531}, {"caption": "a man and a lady is talking together", "video_id": "video11933", "sen_id": 249532}, {"caption": "guy with a lady talking about recopies", "video_id": "video11933", "sen_id": 249533}, {"caption": "a man in a white shirt shows different cooking videos he makes", "video_id": "video11933", "sen_id": 249534}, {"caption": "a person is speaking about the food", "video_id": "video11933", "sen_id": 249535}, {"caption": "in this recipe video a man is promoting his cooking channel the woman also has her own channel", "video_id": "video11933", "sen_id": 249536}, {"caption": "the man wearing the white shirt talk to the woman about the food", "video_id": "video11933", "sen_id": 249537}, {"caption": "its oven and a website where there is many dishes looks awesome", "video_id": "video11933", "sen_id": 249538}, {"caption": "guy in white shirt talking to sexy brunette how to cook the recipe", "video_id": "video11933", "sen_id": 249539}, {"caption": "a music video clip with different young people", "video_id": "video11060", "sen_id": 249540}, {"caption": "a woman is singing and then another woman in glasses is shown singing and then there is a young man singing then we see the students beside red lockers singing", "video_id": "video11060", "sen_id": 249541}, {"caption": "a group of kids opening their lockers singing", "video_id": "video11060", "sen_id": 249542}, {"caption": "a girl crying and singing all students doing the same", "video_id": "video11060", "sen_id": 249543}, {"caption": "several different high school students sing lines of a song as they open their lockers", "video_id": "video11060", "sen_id": 249544}, {"caption": "some peoples are singing a song on various places", "video_id": "video11060", "sen_id": 249545}, {"caption": "the melody of the song in chorus along with music is sweet", "video_id": "video11060", "sen_id": 249546}, {"caption": "students at a school are talking into their lockers", "video_id": "video11060", "sen_id": 249547}, {"caption": "two boys and two girls sing while in front of their lockers occasionally harmonizing", "video_id": "video11060", "sen_id": 249548}, {"caption": "several teens sing while opening a locker door", "video_id": "video11060", "sen_id": 249549}, {"caption": "people are singing the same song in continuity one after the other", "video_id": "video11060", "sen_id": 249550}, {"caption": "people at a school all signing to the camera", "video_id": "video11060", "sen_id": 249551}, {"caption": "various teenagers in a school are opening their red lockers and singing forlornly into their locker", "video_id": "video11060", "sen_id": 249552}, {"caption": "student s of a high school sing as a quartet about a painful experience", "video_id": "video11060", "sen_id": 249553}, {"caption": "three people - two females and one male singing in a gym locker room saying that they are hanging their heads in shame as they have decided who they are", "video_id": "video11060", "sen_id": 249554}, {"caption": "students singing in a school hallway while opening lockers", "video_id": "video11060", "sen_id": 249555}, {"caption": "there are teenagers opening their lockers and singing while looking through them they are in a school", "video_id": "video11060", "sen_id": 249556}, {"caption": "song is sung by male and female youngsters", "video_id": "video11060", "sen_id": 249557}, {"caption": "a sing a long about bullying in high school", "video_id": "video11060", "sen_id": 249558}, {"caption": "teenagers are singing at their lockers as they open their lockers as if they are being filmed from the inside", "video_id": "video11060", "sen_id": 249559}, {"caption": "a man is singing and playing guitar at a party with another man dancing beside him", "video_id": "video12757", "sen_id": 249560}, {"caption": "bruno mars sings about being on the cover of forbes magazine", "video_id": "video12757", "sen_id": 249561}, {"caption": "a younger-looking bruno mars and bob singing billionaire", "video_id": "video12757", "sen_id": 249562}, {"caption": "a man is at a party with one friends of his", "video_id": "video12757", "sen_id": 249563}, {"caption": "a man with a hat and a leather jacket sings a song with a ukulele in front of a crowd of dancing people", "video_id": "video12757", "sen_id": 249564}, {"caption": "a young black male with a white hat on is singing at a party", "video_id": "video12757", "sen_id": 249565}, {"caption": "a boy with a cap is singing and dancing with his troup", "video_id": "video12757", "sen_id": 249566}, {"caption": " wearing a brown hat with short brim plays guitar at a terrace party at night under overhead strings of white lights", "video_id": "video12757", "sen_id": 249567}, {"caption": "green bottles are shown in an ice bucket then a man in a fedora and a scarf is seen singing and playing a stringed instrument", "video_id": "video12757", "sen_id": 249568}, {"caption": "people are enjoying themselves as two men sing in the middle", "video_id": "video12757", "sen_id": 249569}, {"caption": "there is a black cap man singing a song", "video_id": "video12757", "sen_id": 249570}, {"caption": "young people drink beer and dance outside at night while bruno mars plays guitar and sings mentioning oprah", "video_id": "video12757", "sen_id": 249571}, {"caption": "a bowl inside many bottles of drinks singing song playing guitar dancing boys and girls displaying on screen", "video_id": "video12757", "sen_id": 249572}, {"caption": "a number of people dancing with some beer in the background", "video_id": "video12757", "sen_id": 249573}, {"caption": "a group of people are celebrating out side", "video_id": "video12757", "sen_id": 249574}, {"caption": "men and women dancing and singing song in a group", "video_id": "video12757", "sen_id": 249575}, {"caption": "two singers are performing in a music video designed to look like a party", "video_id": "video12757", "sen_id": 249576}, {"caption": "a group of people are dancing and singing", "video_id": "video12757", "sen_id": 249577}, {"caption": "a person singing a song and another persons are dancing", "video_id": "video12757", "sen_id": 249578}, {"caption": "some people are singing and dancing at night", "video_id": "video12757", "sen_id": 249579}, {"caption": "a woman sewing an article on a sewing machine explaining how to do it", "video_id": "video10453", "sen_id": 249580}, {"caption": "a woman sewing a purple shirt and talking", "video_id": "video10453", "sen_id": 249581}, {"caption": "a woman is sewing on a sewing machine", "video_id": "video10453", "sen_id": 249582}, {"caption": "a woman is sewing a purple piece of cloth on a machine", "video_id": "video10453", "sen_id": 249583}, {"caption": "a woman is using a sowing machine to sow some fabric", "video_id": "video10453", "sen_id": 249584}, {"caption": "a women checking a sewing machine to ensure the stitch is correct", "video_id": "video10453", "sen_id": 249585}, {"caption": "a person is stitching a dress in a machine", "video_id": "video10453", "sen_id": 249586}, {"caption": "a lady stitching a cloth using a tailoring machine", "video_id": "video10453", "sen_id": 249587}, {"caption": "a lady is stitching the dress using the machine she wear the ring in her finger", "video_id": "video10453", "sen_id": 249588}, {"caption": "a woman wearing a gold ring pushes purple fabric through a white sewing machine", "video_id": "video10453", "sen_id": 249589}, {"caption": "woman is showing her stitching skill with her sewing machine", "video_id": "video10453", "sen_id": 249590}, {"caption": "one women is stiching cloths on swining machine and other ladywith red top is lookig her", "video_id": "video10453", "sen_id": 249591}, {"caption": "a seamstress works on a piece of cloth that she is sewing on a machine", "video_id": "video10453", "sen_id": 249592}, {"caption": "a woman is stitching a clothes in the sewing machine", "video_id": "video10453", "sen_id": 249593}, {"caption": "a women is stitching some beautiful clothes in the tayloring machine", "video_id": "video10453", "sen_id": 249594}, {"caption": "a woman is showing how she makes a thing", "video_id": "video10453", "sen_id": 249595}, {"caption": "a lady is stitching a cloth in sewing machine", "video_id": "video10453", "sen_id": 249596}, {"caption": "a lady is stitching her cloth in a sewing machine", "video_id": "video10453", "sen_id": 249597}, {"caption": "a girl stiching clothes in sewing machine wearing green dress displaying on screen", "video_id": "video10453", "sen_id": 249598}, {"caption": "a women is stitching the cloth is being shown in the video", "video_id": "video10453", "sen_id": 249599}, {"caption": "a man gives a lecture about computer science engineering", "video_id": "video10283", "sen_id": 249600}, {"caption": "we see an illustrated computer and it's peripherals", "video_id": "video10283", "sen_id": 249601}, {"caption": "a person describes a computer system and the components that make it up", "video_id": "video10283", "sen_id": 249602}, {"caption": "a man talks about different functions of a computer", "video_id": "video10283", "sen_id": 249603}, {"caption": "a man is discussing the engineering of computer system", "video_id": "video10283", "sen_id": 249604}, {"caption": "the different parts of a desktop computer are being displayed", "video_id": "video10283", "sen_id": 249605}, {"caption": "a man is introducing a computer and its parts", "video_id": "video10283", "sen_id": 249606}, {"caption": "a computer system is shown with the components labelled", "video_id": "video10283", "sen_id": 249607}, {"caption": "a professor speaks on the use of computers in engineering for both students and those already working in the field", "video_id": "video10283", "sen_id": 249608}, {"caption": "a picture of a computer is displayed as a man talks about computer engineering", "video_id": "video10283", "sen_id": 249609}, {"caption": "a person is explaining about a new computer machine", "video_id": "video10283", "sen_id": 249610}, {"caption": "a gray computer system is composed of rectangular oval and square components in upright and flat positions of plastic and glass casings", "video_id": "video10283", "sen_id": 249611}, {"caption": "guy speaking about the parts of a computer and discussing about them each", "video_id": "video10283", "sen_id": 249612}, {"caption": "a computer on the table still image and explaning about computer students", "video_id": "video10283", "sen_id": 249613}, {"caption": "a person describes about the computer science engineering with a computer picture", "video_id": "video10283", "sen_id": 249614}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10283", "sen_id": 249615}, {"caption": "in system unit screen monitor speaker key boards mouse", "video_id": "video10283", "sen_id": 249616}, {"caption": "presentation of a computer and its all parts", "video_id": "video10283", "sen_id": 249617}, {"caption": "the parts of computer shows monitor speaker and keyboard also there", "video_id": "video10283", "sen_id": 249618}, {"caption": "some parts of a computer are being shown", "video_id": "video10283", "sen_id": 249619}, {"caption": "a male chef discusses a pasta dish that he is preparing in a restaurant kitchen", "video_id": "video12864", "sen_id": 249620}, {"caption": "a man wearing a dark blue t-shirt is in a kitchen and is talking about preparing a wonderful dish", "video_id": "video12864", "sen_id": 249621}, {"caption": "a bald man talks about cooking a dish with vulgar language", "video_id": "video12864", "sen_id": 249622}, {"caption": "an old video of a man named action bronson shows him cooking a meal containing spaghetti", "video_id": "video12864", "sen_id": 249623}, {"caption": "a man talking about preparing some awesome spaghetti", "video_id": "video12864", "sen_id": 249624}, {"caption": "there is a hairless man talking from a kitchen", "video_id": "video12864", "sen_id": 249625}, {"caption": "a new york man is preparing to make some spaghetti and is very excited about it", "video_id": "video12864", "sen_id": 249626}, {"caption": "a man giving a shout out to his viewers and making spaghetti", "video_id": "video12864", "sen_id": 249627}, {"caption": "a man in a kitchen is mentioning about preparing a spaghetti dish with shrimp", "video_id": "video12864", "sen_id": 249628}, {"caption": "a bald chef in a t-shirt and a new york accent talks to his friend behind the camera about his spaghetti that he is making", "video_id": "video12864", "sen_id": 249629}, {"caption": "a fat man in tshirt is talking and taking the noodles from a bowl", "video_id": "video12864", "sen_id": 249630}, {"caption": "a man with a beard and blue shirt touching spaghetti", "video_id": "video12864", "sen_id": 249631}, {"caption": "a cook greeting viewers and showing that he will make a spaghetti dish", "video_id": "video12864", "sen_id": 249632}, {"caption": "it is someone wearing a regular shirt talking about cooking", "video_id": "video12864", "sen_id": 249633}, {"caption": "there is a man wearing a blackshirt cooking spaghetti in a kitchen", "video_id": "video12864", "sen_id": 249634}, {"caption": "a man in a industrial kitchen is talking to the camera", "video_id": "video12864", "sen_id": 249635}, {"caption": "the man in the tshirt talk about the food in the white bowl in the kitchen", "video_id": "video12864", "sen_id": 249636}, {"caption": "a bald bearded man describes the spaghetti he is making and shows his ingredients off", "video_id": "video12864", "sen_id": 249637}, {"caption": "a man uses inappropriate language as he describes the pasta dish he is making", "video_id": "video12864", "sen_id": 249638}, {"caption": "this man is talking about making spaghetti and he seems proud of his cooking skills", "video_id": "video12864", "sen_id": 249639}, {"caption": "a man chases after a woman while a waterfall rains down on them", "video_id": "video12421", "sen_id": 249640}, {"caption": "a man and a woman have a conversation in the rain", "video_id": "video12421", "sen_id": 249641}, {"caption": "a man and a woman are together in the rain", "video_id": "video12421", "sen_id": 249642}, {"caption": "as a lady was walking out in the rain a man rushes towards her and grabbed her", "video_id": "video12421", "sen_id": 249643}, {"caption": "a man in black suit running behind the young woman", "video_id": "video12421", "sen_id": 249644}, {"caption": "a man runs to a woman in the rain and they kiss", "video_id": "video12421", "sen_id": 249645}, {"caption": "a woman walking in the rain followed by a man that grabbed her from behind", "video_id": "video12421", "sen_id": 249646}, {"caption": "a man in a dark suit runs to confront a woman outside in the rain", "video_id": "video12421", "sen_id": 249647}, {"caption": "a woman walks in the rain with a man following her and then they embrace", "video_id": "video12421", "sen_id": 249648}, {"caption": " wearing a shirt collar over a jacket collar recognizes a woman that he runs after and grabs in a garden with trees and a waterfall", "video_id": "video12421", "sen_id": 249649}, {"caption": "a men and women is talking with eache other its a movie trailer", "video_id": "video12421", "sen_id": 249650}, {"caption": "a man is running through the rain to catch a woman", "video_id": "video12421", "sen_id": 249651}, {"caption": "a man and a woman are standing in the rain", "video_id": "video12421", "sen_id": 249652}, {"caption": "a girl going in the rain and the man hugs her from her behind", "video_id": "video12421", "sen_id": 249653}, {"caption": "a man is watching a woman walk away", "video_id": "video12421", "sen_id": 249654}, {"caption": "a man watches and follows a girl walking away from him in the rain and then he begins to take off her clothes", "video_id": "video12421", "sen_id": 249655}, {"caption": "one man runs near women and hugging her", "video_id": "video12421", "sen_id": 249656}, {"caption": "a man and woman argue while standing in a pouring down rain", "video_id": "video12421", "sen_id": 249657}, {"caption": "a woman and man walking through a path outside while it rains on them", "video_id": "video12421", "sen_id": 249658}, {"caption": "some people are walking around in the rain", "video_id": "video12421", "sen_id": 249659}, {"caption": "a group of men set around a large table and talk", "video_id": "video10719", "sen_id": 249660}, {"caption": "people discuss the merits of a baseball player called 'geronimo'", "video_id": "video10719", "sen_id": 249661}, {"caption": "several men are having a conversation about a baseball player called geronimo", "video_id": "video10719", "sen_id": 249662}, {"caption": "a group of men sitting around a table talking about a baseball player", "video_id": "video10719", "sen_id": 249663}, {"caption": "a table full of men talking about sports much like a review type of conversation", "video_id": "video10719", "sen_id": 249664}, {"caption": "several men are around a large table talking to the man in blue about baseball", "video_id": "video10719", "sen_id": 249665}, {"caption": "several men sitting at a table discussing baseball and asking questionsof the younger man in the blue shirt", "video_id": "video10719", "sen_id": 249666}, {"caption": "a group of men in a meeting room sitting around a table having a discussion", "video_id": "video10719", "sen_id": 249667}, {"caption": "a group of men are sitting around a large conference table and discussing baseball players in a scene from moneyball", "video_id": "video10719", "sen_id": 249668}, {"caption": "some men are sitting around a conference table talking to each other", "video_id": "video10719", "sen_id": 249669}, {"caption": "a group of older men sit around a table talking about baseball players", "video_id": "video10719", "sen_id": 249670}, {"caption": "the movie scene includes old men discussing the baseball players", "video_id": "video10719", "sen_id": 249671}, {"caption": "men in casual clothing sit around a table and discuss athletic team players", "video_id": "video10719", "sen_id": 249672}, {"caption": "brad pitt is acting as a baseball scout in a movie", "video_id": "video10719", "sen_id": 249673}, {"caption": "a bunch of men sitting at a table talking about baseball and about how a player hits the baseball", "video_id": "video10719", "sen_id": 249674}, {"caption": "an old man is sitting and talking", "video_id": "video10719", "sen_id": 249675}, {"caption": "group of people sitting in a meeting and discussing", "video_id": "video10719", "sen_id": 249676}, {"caption": "a room full of men are discussing the talents of a baseball player", "video_id": "video10719", "sen_id": 249677}, {"caption": "group of people are sitting and having conversation", "video_id": "video10719", "sen_id": 249678}, {"caption": "a group of old people are talking inside", "video_id": "video10719", "sen_id": 249679}, {"caption": "a group of cars move down a narrow street in a city", "video_id": "video12338", "sen_id": 249680}, {"caption": "a news reporter goes on a rant about the problems in a city", "video_id": "video12338", "sen_id": 249681}, {"caption": "amn irate man talks while standing next to a city street in an urban area", "video_id": "video12338", "sen_id": 249682}, {"caption": "a roadway with cars driving and a man speaking using foul language", "video_id": "video12338", "sen_id": 249683}, {"caption": "a man talking about how know cunt gives a fuck about you while showing a street scene", "video_id": "video12338", "sen_id": 249684}, {"caption": "there is a stylish car moving near by blue dressed women", "video_id": "video12338", "sen_id": 249685}, {"caption": "cars going down a street with a lady in a blue shirt walking on the sidewalk", "video_id": "video12338", "sen_id": 249686}, {"caption": "a cars were moving on the street road", "video_id": "video12338", "sen_id": 249687}, {"caption": "the red car is beautiful and seems to have high speed and moves elegantly on the road", "video_id": "video12338", "sen_id": 249688}, {"caption": "a red car is moving with asilver car behind it and a man in blue t-shirt is wlaking beside", "video_id": "video12338", "sen_id": 249689}, {"caption": "a man talks about solving problems and swears while cars are shown driving down a road", "video_id": "video12338", "sen_id": 249690}, {"caption": "a red color car is driving on a road", "video_id": "video12338", "sen_id": 249691}, {"caption": "few cars moving on the road and a lady in blue carrying a board and walking", "video_id": "video12338", "sen_id": 249692}, {"caption": "a car is moving in the street and a woman is walking", "video_id": "video12338", "sen_id": 249693}, {"caption": "red rent car is driven on the road followed by another car in white color", "video_id": "video12338", "sen_id": 249694}, {"caption": "bunch of cars driving through the street as lady in blue top walks on pavement", "video_id": "video12338", "sen_id": 249695}, {"caption": "a red color car is moving on a street", "video_id": "video12338", "sen_id": 249696}, {"caption": "in a street cam a red car and cream colored car followed red car and short dressed women something with her hands walking on platform", "video_id": "video12338", "sen_id": 249697}, {"caption": "a cars are moving in the street road", "video_id": "video12338", "sen_id": 249698}, {"caption": "a red colour car moving on road boy walking on road beside displaying on screen", "video_id": "video12338", "sen_id": 249699}, {"caption": "a man plans to give a make-over to a barbie doll", "video_id": "video11296", "sen_id": 249700}, {"caption": "a man showing a baby toy in pink dress", "video_id": "video11296", "sen_id": 249701}, {"caption": "a man talks about the fashion in his barbie collection", "video_id": "video11296", "sen_id": 249702}, {"caption": "a toy collector talks about how to adjust a barbie doll", "video_id": "video11296", "sen_id": 249703}, {"caption": "there is a barbie doll in a pink outfit", "video_id": "video11296", "sen_id": 249704}, {"caption": "a person showing a dolly in red colour", "video_id": "video11296", "sen_id": 249705}, {"caption": "a doll wearing pink and blue color dress", "video_id": "video11296", "sen_id": 249706}, {"caption": "barbie princess dress shoes by a girl talks", "video_id": "video11296", "sen_id": 249707}, {"caption": "a man discusses dolls and the clothes that they wear", "video_id": "video11296", "sen_id": 249708}, {"caption": "an affordable barbie doll was purchased for a man s project", "video_id": "video11296", "sen_id": 249709}, {"caption": "there is a small girl playing with barbie dolls", "video_id": "video11296", "sen_id": 249710}, {"caption": "a man is showing a barbie doll in a large plastic box", "video_id": "video11296", "sen_id": 249711}, {"caption": "a man explaining about a cute barbie doll on the showroom", "video_id": "video11296", "sen_id": 249712}, {"caption": "a young man uses a barbie doll to work on a project", "video_id": "video11296", "sen_id": 249713}, {"caption": "a man talking about washing and cutting a barbie s hair", "video_id": "video11296", "sen_id": 249714}, {"caption": "different barbie dolls with elegant dresses is looked by someone", "video_id": "video11296", "sen_id": 249715}, {"caption": "a man is talking about how to start a project he is doing using a barbie", "video_id": "video11296", "sen_id": 249716}, {"caption": "a man is having a parbee girl toy in his hand", "video_id": "video11296", "sen_id": 249717}, {"caption": "barbie in glittering blue and pink dress looks beautiful and attractive", "video_id": "video11296", "sen_id": 249718}, {"caption": "someone is showing a barbie doll toy", "video_id": "video11296", "sen_id": 249719}, {"caption": "a doll set is showcased that includes a bride and bride's maid dresses", "video_id": "video11038", "sen_id": 249720}, {"caption": "a doll wearing a white gown in the midst of other colorful gowns and bags", "video_id": "video11038", "sen_id": 249721}, {"caption": "barbie in a box wearing a white dress and there are other dresses in the box", "video_id": "video11038", "sen_id": 249722}, {"caption": "a barbie doll is talking about bridesmaids dresses", "video_id": "video11038", "sen_id": 249723}, {"caption": "a display of a doll display with several bridesmaids dresses in several different colors", "video_id": "video11038", "sen_id": 249724}, {"caption": "a woman shows a blonde barbie wearing a wedding gown and talks about trying other gowns on her", "video_id": "video11038", "sen_id": 249725}, {"caption": "a lady is excitedly speaking about a barbie doll and all of her dresses", "video_id": "video11038", "sen_id": 249726}, {"caption": "a woman gushes over a wedding barbie set", "video_id": "video11038", "sen_id": 249727}, {"caption": "a barbie doll wearing all white and dresses hanged next to it", "video_id": "video11038", "sen_id": 249728}, {"caption": "blonde woman is being dressed in different dresses", "video_id": "video11038", "sen_id": 249729}, {"caption": "there is a white dressing barbie doll with accessories", "video_id": "video11038", "sen_id": 249730}, {"caption": "an advertisement for a crazy toy and lots of accessories", "video_id": "video11038", "sen_id": 249731}, {"caption": "the shop for baby dress and doll and matching hand bags", "video_id": "video11038", "sen_id": 249732}, {"caption": "a lady is very excited about her barbie doll collection dressing them up for a wedding party", "video_id": "video11038", "sen_id": 249733}, {"caption": "a package containing a doll and numerous accessories", "video_id": "video11038", "sen_id": 249734}, {"caption": "a barbie doll is wearing a pink outfit and the barbie kit consists of outfits with different colors", "video_id": "video11038", "sen_id": 249735}, {"caption": "an annoying girl is featuring wedding barbie doll", "video_id": "video11038", "sen_id": 249736}, {"caption": "an excited girl expresses her joy at the selection of dresses and accessories she got for her barbie doll dress-up", "video_id": "video11038", "sen_id": 249737}, {"caption": "a woman is showing and talking about barbies", "video_id": "video11038", "sen_id": 249738}, {"caption": "the doll set came with a doll and several different outfits", "video_id": "video11038", "sen_id": 249739}, {"caption": "a man laying on the floor with his baby making baby noises with his finger and then the baby copies him", "video_id": "video11163", "sen_id": 249740}, {"caption": "a man teaches his baby how to make silly gestures", "video_id": "video11163", "sen_id": 249741}, {"caption": "a man is playing with his kid lying on the floor", "video_id": "video11163", "sen_id": 249742}, {"caption": "a guy is seen placing his finger over his lips and making a sound and the child when placed finger over its lips imitates his father", "video_id": "video11163", "sen_id": 249743}, {"caption": "a man and his baby play a game while laying on the floor", "video_id": "video11163", "sen_id": 249744}, {"caption": "a father is having fun in teaching her with the help of finger", "video_id": "video11163", "sen_id": 249745}, {"caption": "a small baby playing with its father in a ground", "video_id": "video11163", "sen_id": 249746}, {"caption": " wearing a large bib is trying to imitate his father s sounds when his dad uses his finger to rapidly push down on their lower lips", "video_id": "video11163", "sen_id": 249747}, {"caption": "cute little baby and dad plays happily by making sound in the mouth", "video_id": "video11163", "sen_id": 249748}, {"caption": "dad holding camera is making funny noises with his baby", "video_id": "video11163", "sen_id": 249749}, {"caption": "a man is playing a funny game with is young son", "video_id": "video11163", "sen_id": 249750}, {"caption": "a father put his finger in his son s mouth and make a ba ba ba sound", "video_id": "video11163", "sen_id": 249751}, {"caption": "a dad and his baby are lying on yellow carpeting taking turns making mouth noises with dad s finger", "video_id": "video11163", "sen_id": 249752}, {"caption": "a man is playing with a baby and laughing", "video_id": "video11163", "sen_id": 249753}, {"caption": "a guy is playing with a bay by putting his finger over baby mouth", "video_id": "video11163", "sen_id": 249754}, {"caption": "a man is playing on the floor with a baby wearing a bib", "video_id": "video11163", "sen_id": 249755}, {"caption": "a baby and man playing together", "video_id": "video11163", "sen_id": 249756}, {"caption": "a father and a cute baby taking selfie and father talking something", "video_id": "video11163", "sen_id": 249757}, {"caption": "in this video clip the child is laughing with his father", "video_id": "video11163", "sen_id": 249758}, {"caption": "a man with dark hair is bothering a baby", "video_id": "video11163", "sen_id": 249759}, {"caption": "a group of young people talk to each other while they play a video game", "video_id": "video10511", "sen_id": 249760}, {"caption": "a person with a gun is on a boat in a first person shooter game as commentary is shown at the bottom of the screen", "video_id": "video10511", "sen_id": 249761}, {"caption": "a man sits in front of a gaming screen while he wears vr goggles", "video_id": "video10511", "sen_id": 249762}, {"caption": "a man and woman playing a shooting game online", "video_id": "video10511", "sen_id": 249763}, {"caption": "learn to play like the best in our interactive and fun tutorial on the latest games", "video_id": "video10511", "sen_id": 249764}, {"caption": "there is a man walking with a powerful gun", "video_id": "video10511", "sen_id": 249765}, {"caption": "animated game of shooting and the gun goes to find the enemy", "video_id": "video10511", "sen_id": 249766}, {"caption": "a gunman pointing its gun at various areas looking for people to shoot", "video_id": "video10511", "sen_id": 249767}, {"caption": "people talking about a online game that they are playing", "video_id": "video10511", "sen_id": 249768}, {"caption": "people walk around and shoot each other and say bad words", "video_id": "video10511", "sen_id": 249769}, {"caption": "a woman and two men get into a heated exchange of words while playing and recording a video game", "video_id": "video10511", "sen_id": 249770}, {"caption": "a person playing a call of duty and having a conversation with other gamers", "video_id": "video10511", "sen_id": 249771}, {"caption": "video game live streamers trash talk each other illustrated by animated images and sound effects", "video_id": "video10511", "sen_id": 249772}, {"caption": "people exchange banter while playing video game", "video_id": "video10511", "sen_id": 249773}, {"caption": "player playing video game trying to get more points", "video_id": "video10511", "sen_id": 249774}, {"caption": "one man makes taunts of a couple in a video game the couple is irritated", "video_id": "video10511", "sen_id": 249775}, {"caption": "multiple players are trolling (or griefing) each other (this includes cursing and other strong language) while playing call of duty online", "video_id": "video10511", "sen_id": 249776}, {"caption": "a group of friends play a first person shooter as they talk to eachother", "video_id": "video10511", "sen_id": 249777}, {"caption": "people talk to each other as they play a video game", "video_id": "video10511", "sen_id": 249778}, {"caption": "someone is playing a first person video game", "video_id": "video10511", "sen_id": 249779}, {"caption": "reporter is speaking to two men in an interview on the street", "video_id": "video10384", "sen_id": 249780}, {"caption": "an english man asks an indian or pakistani man about an incident that had occurred", "video_id": "video10384", "sen_id": 249781}, {"caption": "a man is interviewing another man in regards to an incident that killed his cousin", "video_id": "video10384", "sen_id": 249782}, {"caption": "a news reporter talk to some young men on a country road", "video_id": "video10384", "sen_id": 249783}, {"caption": "a western journalist interviews two dark-haired local men about the recent death of one of their friends", "video_id": "video10384", "sen_id": 249784}, {"caption": "a man is interviewing another man about his friend s death", "video_id": "video10384", "sen_id": 249785}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10384", "sen_id": 249786}, {"caption": "one old man and a boy man is talking", "video_id": "video10384", "sen_id": 249787}, {"caption": "a guy talks to two men about current events", "video_id": "video10384", "sen_id": 249788}, {"caption": "a man in a leather jacket explains what he witnessed", "video_id": "video10384", "sen_id": 249789}, {"caption": "a black jacket man talking to a old man", "video_id": "video10384", "sen_id": 249790}, {"caption": "an old man interrogates two young men about an incident they are wintnessed", "video_id": "video10384", "sen_id": 249791}, {"caption": "an old man is talking with other man", "video_id": "video10384", "sen_id": 249792}, {"caption": "a reporter talks to teens about a war crime", "video_id": "video10384", "sen_id": 249793}, {"caption": "a white man is interviewing two young men with jackets on that tell him something they saw with their eyes saying they stayed with him but the details are sketchy", "video_id": "video10384", "sen_id": 249794}, {"caption": "there is a black jacket man talking to a old man", "video_id": "video10384", "sen_id": 249795}, {"caption": "the men stand on the street and talk to each other", "video_id": "video10384", "sen_id": 249796}, {"caption": "guy telling that he saw something to a old guy", "video_id": "video10384", "sen_id": 249797}, {"caption": "a man asking foreign men about them giving proofs about a criminal scene", "video_id": "video10384", "sen_id": 249798}, {"caption": "a journalist is asking questions to a pakistani citizen regarding the tragic death of his cousin", "video_id": "video10384", "sen_id": 249799}, {"caption": "a person holds a bowl full of a brown ingredient", "video_id": "video10406", "sen_id": 249800}, {"caption": "a woman holds and rotates a bowl of koi fish food", "video_id": "video10406", "sen_id": 249801}, {"caption": "some brown stuff in a white bowl being coverd with orange bowl", "video_id": "video10406", "sen_id": 249802}, {"caption": "someone is showing off a bowl of some ground brown stuff and then brings up a colander next to it", "video_id": "video10406", "sen_id": 249803}, {"caption": "person explains about fish food while the fish food is shown on camera", "video_id": "video10406", "sen_id": 249804}, {"caption": "a person touching a bowl of brown fine food", "video_id": "video10406", "sen_id": 249805}, {"caption": "a woman is holding a bowl of coy pond fish food and speaking about it", "video_id": "video10406", "sen_id": 249806}, {"caption": "poi fish food pod pellets in a white bowl are described by a man", "video_id": "video10406", "sen_id": 249807}, {"caption": "there is someone talking about a new recipe", "video_id": "video10406", "sen_id": 249808}, {"caption": "a plate black color sand is poured", "video_id": "video10406", "sen_id": 249809}, {"caption": "a pet owner is providing advice about the viability of koi fish feed pellets", "video_id": "video10406", "sen_id": 249810}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video10406", "sen_id": 249811}, {"caption": "a recipe is being made in a cookery show", "video_id": "video10406", "sen_id": 249812}, {"caption": "a lady is holding a bowl of fish food and explaining what it can be used for", "video_id": "video10406", "sen_id": 249813}, {"caption": "a man shows koi fish food on a white deep dish", "video_id": "video10406", "sen_id": 249814}, {"caption": "some mixture in a bowl and the man take some and put it", "video_id": "video10406", "sen_id": 249815}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10406", "sen_id": 249816}, {"caption": "a person is spinning a bowl with a substance in it they are preparing to cover the substance", "video_id": "video10406", "sen_id": 249817}, {"caption": "a lady is showing what type of food to feed fish", "video_id": "video10406", "sen_id": 249818}, {"caption": "some thing in a big bowl and take another basket", "video_id": "video10406", "sen_id": 249819}, {"caption": "a man plugs in an e-bike", "video_id": "video12919", "sen_id": 249820}, {"caption": "an electric motorcycle is plugged in to the wall to charge", "video_id": "video12919", "sen_id": 249821}, {"caption": "a black motor bike is being charged indoors", "video_id": "video12919", "sen_id": 249822}, {"caption": "man explains how to plug in an electric motorcycle into two different outlets with two different circuit breakers", "video_id": "video12919", "sen_id": 249823}, {"caption": "i white man in a black shirt and jeans walks towards a motor bike", "video_id": "video12919", "sen_id": 249824}, {"caption": "a man in black t-shirt plugging a wire to the switch", "video_id": "video12919", "sen_id": 249825}, {"caption": "a man is plugging up wire by a motorcycle", "video_id": "video12919", "sen_id": 249826}, {"caption": "a man plugging a wire on the cable", "video_id": "video12919", "sen_id": 249827}, {"caption": "motorbike being charged by electrical power in a room", "video_id": "video12919", "sen_id": 249828}, {"caption": "a man talks about charging up his black motorcycle", "video_id": "video12919", "sen_id": 249829}, {"caption": "a man in his house connecting some wire to the plug", "video_id": "video12919", "sen_id": 249830}, {"caption": "a man is plugging the wire of power to the socket of which the other end is connected to a motorcycle", "video_id": "video12919", "sen_id": 249831}, {"caption": "the man is pluging the wire in the switch and then removing it", "video_id": "video12919", "sen_id": 249832}, {"caption": "a bike and boy in black color wearing cloth pluging and bike parking inside displaying on screen", "video_id": "video12919", "sen_id": 249833}, {"caption": "attachments being hooked to a motorcycle and plugged into a wall", "video_id": "video12919", "sen_id": 249834}, {"caption": "a black tshirt man on the floor with his bike", "video_id": "video12919", "sen_id": 249835}, {"caption": "a man in a black shirt and jeans plugging a cord into a wall outlet", "video_id": "video12919", "sen_id": 249836}, {"caption": "a man is talking about how the engine of his motorcycle works", "video_id": "video12919", "sen_id": 249837}, {"caption": "a man in a garage working on a motorcycle", "video_id": "video12919", "sen_id": 249838}, {"caption": "a man is plugging something in to his wall", "video_id": "video12919", "sen_id": 249839}, {"caption": "a man talks over game play footage of a racing video game where a car is parked and being worked on", "video_id": "video10214", "sen_id": 249840}, {"caption": "a animation of a race car being worked on", "video_id": "video10214", "sen_id": 249841}, {"caption": "two video game characters standing on each side of a computer generated race car", "video_id": "video10214", "sen_id": 249842}, {"caption": "a couple of people standing in front of a race car", "video_id": "video10214", "sen_id": 249843}, {"caption": "a video game for formula one race cars", "video_id": "video10214", "sen_id": 249844}, {"caption": "a am om a black and white shirt is standing next to a tire", "video_id": "video10214", "sen_id": 249845}, {"caption": "two persons speaking each other about tyres", "video_id": "video10214", "sen_id": 249846}, {"caption": "two men are standing near broad tyres on test", "video_id": "video10214", "sen_id": 249847}, {"caption": "in a video game virtual people are standing around a vehicle while a commentator is narrating", "video_id": "video10214", "sen_id": 249848}, {"caption": "people stand around a model of a car with a monitor on it", "video_id": "video10214", "sen_id": 249849}, {"caption": "survive singapore game review on f1 2014 with the 2015 mod installed onto it", "video_id": "video10214", "sen_id": 249850}, {"caption": "there is someone in side the workshop", "video_id": "video10214", "sen_id": 249851}, {"caption": "car race begins one car is looking for ready", "video_id": "video10214", "sen_id": 249852}, {"caption": "a person is explaining about the animated pictures and giving about the tyres details", "video_id": "video10214", "sen_id": 249853}, {"caption": "a man in white and black color dress wearing cloth standing beside tyres displaying on screen", "video_id": "video10214", "sen_id": 249854}, {"caption": "there is a men wearing black tshirt and telling about the business", "video_id": "video10214", "sen_id": 249855}, {"caption": "an exploration of something about a product and two men standing near to it", "video_id": "video10214", "sen_id": 249856}, {"caption": "a commentator is talking about a video game and it shows two characters next to a model of a car", "video_id": "video10214", "sen_id": 249857}, {"caption": "this is a tire show in singapore where two salespersons give a good speech about it", "video_id": "video10214", "sen_id": 249858}, {"caption": "a man plays a game called survive singapore f1 2014", "video_id": "video10214", "sen_id": 249859}, {"caption": "a chef describes and demonstrates a recipe by warming oil in a wok", "video_id": "video11196", "sen_id": 249860}, {"caption": "man pouring oil and shrimp into a large metal wok pan", "video_id": "video11196", "sen_id": 249861}, {"caption": "a woman instructs how to cook a dish using a wok", "video_id": "video11196", "sen_id": 249862}, {"caption": "a silver wok has oil being poured into it", "video_id": "video11196", "sen_id": 249863}, {"caption": "a wok in a stove a woman hand in a cooking glove pouring a bit of oil in it", "video_id": "video11196", "sen_id": 249864}, {"caption": "a chef talks about how to start a stir fry recipeby putting oil in a wok", "video_id": "video11196", "sen_id": 249865}, {"caption": "a woman is showing how to make stir fry", "video_id": "video11196", "sen_id": 249866}, {"caption": "in a kitchen someone is cooking with oil in a frying pan", "video_id": "video11196", "sen_id": 249867}, {"caption": "a narrating cook talks about cooking in a wok and using stir fry oil", "video_id": "video11196", "sen_id": 249868}, {"caption": "a chef adds stir fry oil to a large heated wok", "video_id": "video11196", "sen_id": 249869}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11196", "sen_id": 249870}, {"caption": "in a kitchen a woman is adding oil into a hot pan", "video_id": "video11196", "sen_id": 249871}, {"caption": "there is a women cooking food in untensil", "video_id": "video11196", "sen_id": 249872}, {"caption": "a chef prepares to make a stire fry recipe that includes shrimp", "video_id": "video11196", "sen_id": 249873}, {"caption": "the viewer is instructed to remove all the oil from a pan and then add stir-fry oil", "video_id": "video11196", "sen_id": 249874}, {"caption": "a person is preparing to serve food", "video_id": "video11196", "sen_id": 249875}, {"caption": "in the kitchen someone preparing for a recipe", "video_id": "video11196", "sen_id": 249876}, {"caption": "an oil presantation from the woman with and ginger infussion", "video_id": "video11196", "sen_id": 249877}, {"caption": "women adding oil into pan to get flavor for a dish", "video_id": "video11196", "sen_id": 249878}, {"caption": "a woman shows how to stirfry and starts by putting some oil on a stirfry pan", "video_id": "video11196", "sen_id": 249879}, {"caption": "a man in a military uniform opens a case and pulls out a gun", "video_id": "video12092", "sen_id": 249880}, {"caption": "a man in a uniform gathers ammunition as another runs in", "video_id": "video12092", "sen_id": 249881}, {"caption": "a man in a military uniform opens a cabinet and picks up a gun", "video_id": "video12092", "sen_id": 249882}, {"caption": "a militia type general is mad and getting his gun from the cabinet", "video_id": "video12092", "sen_id": 249883}, {"caption": "an indian soldier opens a cabinet and pulls out a gun and some bullets", "video_id": "video12092", "sen_id": 249884}, {"caption": "the soliders are walking around and taking the weapons", "video_id": "video12092", "sen_id": 249885}, {"caption": "police officers are entering a building in a group", "video_id": "video12092", "sen_id": 249886}, {"caption": "a man an in a military uniform finds a weapons stash in a closet", "video_id": "video12092", "sen_id": 249887}, {"caption": "a man opens a cabinet and grabs a gun then another man walks in the room", "video_id": "video12092", "sen_id": 249888}, {"caption": "a man in a military uniform opening a door and picking up a hand gun", "video_id": "video12092", "sen_id": 249889}, {"caption": "there is a police officer checking a room", "video_id": "video12092", "sen_id": 249890}, {"caption": "a man opening a door and taking pistal", "video_id": "video12092", "sen_id": 249891}, {"caption": "a man dressed in military clothing opens a cupboard and removes a gun and some bullets", "video_id": "video12092", "sen_id": 249892}, {"caption": "a man is picking up a gun off of a shelf", "video_id": "video12092", "sen_id": 249893}, {"caption": "a man in a military uniform is looking at a number of different hand guns", "video_id": "video12092", "sen_id": 249894}, {"caption": "there is a police officer walking in to the building", "video_id": "video12092", "sen_id": 249895}, {"caption": "a polieman taking gun and having it on the hand", "video_id": "video12092", "sen_id": 249896}, {"caption": "a police man are having a gun in movie scene", "video_id": "video12092", "sen_id": 249897}, {"caption": "a man opening a chest that has guns in it then another man runs up behind him and says something in a foreign language", "video_id": "video12092", "sen_id": 249898}, {"caption": "bunch of police officers walking in the police station", "video_id": "video12092", "sen_id": 249899}, {"caption": "a home run is hit during a professional baseball game played between new york and boston", "video_id": "video12123", "sen_id": 249900}, {"caption": "a baseball player is running across the field", "video_id": "video12123", "sen_id": 249901}, {"caption": "a song is playing while a baseball game is playing and one of the teams is new york and at the last second a player gives a young child his gloves", "video_id": "video12123", "sen_id": 249902}, {"caption": "a baseball pitcher throws out a pitch and the batter hits a homerun", "video_id": "video12123", "sen_id": 249903}, {"caption": "there is a man throwing the ball to a person with bat", "video_id": "video12123", "sen_id": 249904}, {"caption": "a base ball player hits the ball out to the audience", "video_id": "video12123", "sen_id": 249905}, {"caption": "a baseball player hitting a ball into the stands a fan getting it and the player running around the bases", "video_id": "video12123", "sen_id": 249906}, {"caption": "a player hits a homerun at a baseball game then high-fives a young fan", "video_id": "video12123", "sen_id": 249907}, {"caption": "a baseball game in progress on the fox channel showing players being kind to their fans", "video_id": "video12123", "sen_id": 249908}, {"caption": "a person hits a ball with a baseball bat that is thrown to them and then runs around the bases after hitting a home run", "video_id": "video12123", "sen_id": 249909}, {"caption": "baseball players in white uniforms play with a team in grey uniforms", "video_id": "video12123", "sen_id": 249910}, {"caption": "man hits a home run during a baseball game fans are impressed", "video_id": "video12123", "sen_id": 249911}, {"caption": "a man hits the ball with bat and it reaches into the crowd a person catches the ball and a player gives his gloves to the boy", "video_id": "video12123", "sen_id": 249912}, {"caption": "a lot of people gathered in a staduim where some game is played one person throw a red color ball and another person strike the same and put the bat and run around the ground", "video_id": "video12123", "sen_id": 249913}, {"caption": "some baseball players are doing their best to win", "video_id": "video12123", "sen_id": 249914}, {"caption": "at the cricket ground the players are taking the rehersal the umpire team are enjoy the moment", "video_id": "video12123", "sen_id": 249915}, {"caption": "a two team are playing a base ball", "video_id": "video12123", "sen_id": 249916}, {"caption": "a song is played while derek jeter is shown hitting a home run", "video_id": "video12123", "sen_id": 249917}, {"caption": "baseball player hitting the home run and running to the crowd", "video_id": "video12123", "sen_id": 249918}, {"caption": "a baseball highlight reel shows a batter making a home run", "video_id": "video12123", "sen_id": 249919}, {"caption": "a video showing a bowl being filled with food", "video_id": "video12699", "sen_id": 249920}, {"caption": "a chef works on a recipe by adding ingredients to a large bowl", "video_id": "video12699", "sen_id": 249921}, {"caption": "a female chef mixes ingredients together in a large glass bowl", "video_id": "video12699", "sen_id": 249922}, {"caption": "a person adding apples and tomatoes to a glass bowl", "video_id": "video12699", "sen_id": 249923}, {"caption": "a woman is adding apples and tomatoes to a bowl of lettuce", "video_id": "video12699", "sen_id": 249924}, {"caption": "a woman making chopped apples and tomatoes", "video_id": "video12699", "sen_id": 249925}, {"caption": "a woman is showing how to a recipe", "video_id": "video12699", "sen_id": 249926}, {"caption": "a women in her kitchen mixing apples and tomatoes in a bowl", "video_id": "video12699", "sen_id": 249927}, {"caption": "a lady putting some cut apples on bowl to prepare a dish", "video_id": "video12699", "sen_id": 249928}, {"caption": "a person add small pieces of apple and tomatoes in a bowl", "video_id": "video12699", "sen_id": 249929}, {"caption": "in the kitchen a woman combine sliced fruits in a glass vessel", "video_id": "video12699", "sen_id": 249930}, {"caption": "a lady puts sliced vegetables to a glass bowl on the table", "video_id": "video12699", "sen_id": 249931}, {"caption": "a woman s hand dumping chunks of apples and grape tomatoes into a large glass bowl containing salad", "video_id": "video12699", "sen_id": 249932}, {"caption": "a lady is putting apple pieces into a bowl", "video_id": "video12699", "sen_id": 249933}, {"caption": "a person is doing cooking show and showing the ingredients", "video_id": "video12699", "sen_id": 249934}, {"caption": "in the kitchen a woman explains a veg recipe", "video_id": "video12699", "sen_id": 249935}, {"caption": "a woman prepares a salad while includes apples and grape tomatoes", "video_id": "video12699", "sen_id": 249936}, {"caption": "a woman is putting chopped ingredients into a glass bowl", "video_id": "video12699", "sen_id": 249937}, {"caption": "a girl inside kitchen bowl in hand mixing vegatables to prepare dish cook to serve and eat displaying on screen", "video_id": "video12699", "sen_id": 249938}, {"caption": "a person is putting food in a bowl", "video_id": "video12699", "sen_id": 249939}, {"caption": "a white hamster is in a cage playing with toys", "video_id": "video10876", "sen_id": 249940}, {"caption": "a white hamster is sitting in a nice clean cage", "video_id": "video10876", "sen_id": 249941}, {"caption": "a white hamster is sitting in a clean cage", "video_id": "video10876", "sen_id": 249942}, {"caption": "a voice tutorial done in the voice of a child on how to clean a hamster cage", "video_id": "video10876", "sen_id": 249943}, {"caption": "a young girl explains how to clean a hamster's cage", "video_id": "video10876", "sen_id": 249944}, {"caption": "image of a small white animal followed by images of a cage with items to care for the animal", "video_id": "video10876", "sen_id": 249945}, {"caption": "there is a mouse in a cage looking around", "video_id": "video10876", "sen_id": 249946}, {"caption": "a shot of a hamster cage accompanied by a voiceover about to give instructions on how to clean a hamster cage", "video_id": "video10876", "sen_id": 249947}, {"caption": "a young girl talks about her method of cleaning her hamster s cage", "video_id": "video10876", "sen_id": 249948}, {"caption": "a white rodent is sitting in a cage", "video_id": "video10876", "sen_id": 249949}, {"caption": "there is mouse in a cage and watching", "video_id": "video10876", "sen_id": 249950}, {"caption": "this is instructions for how to clean a blue hamster case with a wire mess top", "video_id": "video10876", "sen_id": 249951}, {"caption": "a hamster cage is full of paper and other toys", "video_id": "video10876", "sen_id": 249952}, {"caption": "a person is showing how hamster lives in a cage", "video_id": "video10876", "sen_id": 249953}, {"caption": "an animal in a cage is being filmed by someone", "video_id": "video10876", "sen_id": 249954}, {"caption": "a small white animal sitting in a cage and a photo of an empty cage is shown", "video_id": "video10876", "sen_id": 249955}, {"caption": "a small animal is inside of a cage", "video_id": "video10876", "sen_id": 249956}, {"caption": "the girl explain how to clean the hamster cage", "video_id": "video10876", "sen_id": 249957}, {"caption": "a young girl discusses her technique for cleaning out a large hamster cage", "video_id": "video10876", "sen_id": 249958}, {"caption": "a hamster cage with many playful pieces inside is about to get cleaned", "video_id": "video10876", "sen_id": 249959}, {"caption": "fat old man in a black suit seated in front of a cathedral outdoors", "video_id": "video10538", "sen_id": 249960}, {"caption": "a clip from a uk news real about elections", "video_id": "video10538", "sen_id": 249961}, {"caption": "a gray haired news anchor with a laptop discusses what news information will be on the news that night", "video_id": "video10538", "sen_id": 249962}, {"caption": "a new man explains what the nightly news will contain later", "video_id": "video10538", "sen_id": 249963}, {"caption": "a british newscaster will give the results who will govern britain for the next five years", "video_id": "video10538", "sen_id": 249964}, {"caption": "many people working on computers in a news room track the latest updates", "video_id": "video10538", "sen_id": 249965}, {"caption": "a news anchor is speaking about news story regarding cell phones and tablet", "video_id": "video10538", "sen_id": 249966}, {"caption": "a old man in blue shirt is explaining something in detail", "video_id": "video10538", "sen_id": 249967}, {"caption": "a tv spot on the standings of the uk election", "video_id": "video10538", "sen_id": 249968}, {"caption": "a person and his tv crew broadcasting about the britain elections", "video_id": "video10538", "sen_id": 249969}, {"caption": "person in black suit is showing the work on the computers", "video_id": "video10538", "sen_id": 249970}, {"caption": "guy in suit and tie talking to the camera", "video_id": "video10538", "sen_id": 249971}, {"caption": "a suit man reading news in front a screen", "video_id": "video10538", "sen_id": 249972}, {"caption": "various shots of people working in a british news network are show", "video_id": "video10538", "sen_id": 249973}, {"caption": "a news anchor in a suit and tie talking", "video_id": "video10538", "sen_id": 249974}, {"caption": "a news anchor dressed very well in suit and tie is relating clips of news information he is very informative and the athletes also look very victorious", "video_id": "video10538", "sen_id": 249975}, {"caption": "a man suggests what devices people can use in order to watch the news cast and keep up with election coverage", "video_id": "video10538", "sen_id": 249976}, {"caption": "the newscaster is informing english audiences that they can track the exit polls for the next prime minister with their iphones or tablets", "video_id": "video10538", "sen_id": 249977}, {"caption": "a man wearing suit and tie discusses exit polls of britain in newsroom", "video_id": "video10538", "sen_id": 249978}, {"caption": "a man describes the ways to track and keep up with the british election results", "video_id": "video10538", "sen_id": 249979}, {"caption": "a close up of a motorcycle shows the different metal parts of the vehicle under the black seat a glistening pickle has bumps on the surface and silver round and tubular motorcycle components shine in a garden", "video_id": "video12391", "sen_id": 249980}, {"caption": "pictures of an early motorcycle a pickle and another motorcycle are featured during a song with coinciding lyrics", "video_id": "video12391", "sen_id": 249981}, {"caption": "a motorcycle and a pickle being displayed while a song plays in the background", "video_id": "video12391", "sen_id": 249982}, {"caption": "a wet pickle and the side of a motorcycle", "video_id": "video12391", "sen_id": 249983}, {"caption": "a motorcycle is parked and then a pickle appears", "video_id": "video12391", "sen_id": 249984}, {"caption": "its a old bike and with huge engine", "video_id": "video12391", "sen_id": 249985}, {"caption": "some pictures of movies slideshows is done which looks nice", "video_id": "video12391", "sen_id": 249986}, {"caption": "a man sings a song about motorcycles and pickles", "video_id": "video12391", "sen_id": 249987}, {"caption": "someone is singing a song about the vechicle", "video_id": "video12391", "sen_id": 249988}, {"caption": "the cucumber seemed out of place while looking at the motorcycle parts", "video_id": "video12391", "sen_id": 249989}, {"caption": "there is a motor cycle with powerful engine", "video_id": "video12391", "sen_id": 249990}, {"caption": "ther is a men who is sing a song in background music and side show is shown on the screen", "video_id": "video12391", "sen_id": 249991}, {"caption": "a close-up of a motorcycle image is shown near a woodsy background", "video_id": "video12391", "sen_id": 249992}, {"caption": "a song about a motorcycle and has a visual reference to a pickle", "video_id": "video12391", "sen_id": 249993}, {"caption": "someone is filming the engine of their motor cycle", "video_id": "video12391", "sen_id": 249994}, {"caption": "video showing he engine of the bike with background music", "video_id": "video12391", "sen_id": 249995}, {"caption": "motorbike s parts and its looks neww with engine and other innerparts", "video_id": "video12391", "sen_id": 249996}, {"caption": "a man is singing a country song about pickles and a motercycle", "video_id": "video12391", "sen_id": 249997}, {"caption": "a engine of modern motorcycle with its different parts", "video_id": "video12391", "sen_id": 249998}, {"caption": "a motor cycle and a cucumber are displaying in the screen", "video_id": "video12391", "sen_id": 249999}, {"caption": "a man and women standing in a kitchen talking about smelling cheese", "video_id": "video10026", "sen_id": 250000}, {"caption": "a man and woman drinking and sniffing cheese in a kitchen", "video_id": "video10026", "sen_id": 250001}, {"caption": "two couples in a kitchen having some food and drink", "video_id": "video10026", "sen_id": 250002}, {"caption": "there is a men and women in a kitchen drinking juice", "video_id": "video10026", "sen_id": 250003}, {"caption": "in a kitchen a man and a woman give drunk kitchen tips", "video_id": "video10026", "sen_id": 250004}, {"caption": "a drunk young man and woman get ready to cook in their drunken states", "video_id": "video10026", "sen_id": 250005}, {"caption": "a girl in parrot color and boy in black and white strip shirt drinking and smeling inside kitchen displaying on screen", "video_id": "video10026", "sen_id": 250006}, {"caption": "two persons speaking each other and drinking", "video_id": "video10026", "sen_id": 250007}, {"caption": "a man and a woman are in a kitchen holding different objects", "video_id": "video10026", "sen_id": 250008}, {"caption": "a boy and girl drink and eat things in the kitchen", "video_id": "video10026", "sen_id": 250009}, {"caption": "a green tshirt woman drinking with a friend", "video_id": "video10026", "sen_id": 250010}, {"caption": "the woman with a green top and a hat talking to the man", "video_id": "video10026", "sen_id": 250011}, {"caption": "one girl and boy talking each other and drinks", "video_id": "video10026", "sen_id": 250012}, {"caption": "a couple hang out and cook in the kitchen together", "video_id": "video10026", "sen_id": 250013}, {"caption": "two people drinking and talking about smelling products before eating them", "video_id": "video10026", "sen_id": 250014}, {"caption": "a girl in green and boy in black drinking something", "video_id": "video10026", "sen_id": 250015}, {"caption": "a man and a woman in a kitchen drinking alcohol and cooking", "video_id": "video10026", "sen_id": 250016}, {"caption": "one man and a women talking in kitchen", "video_id": "video10026", "sen_id": 250017}, {"caption": "a girl and a guy making a cooking show combining them cooking and drinking they instruct on the importance of smelling food before using it", "video_id": "video10026", "sen_id": 250018}, {"caption": "a man and woman are cooking while drinking alcohol", "video_id": "video10026", "sen_id": 250019}, {"caption": "a spaceman is being zoomed in on while the moon is discussed", "video_id": "video12227", "sen_id": 250020}, {"caption": "a man dressed in astronaut gear is discussing the moon", "video_id": "video12227", "sen_id": 250021}, {"caption": "a man narrates video footage of an astronaut at a space station", "video_id": "video12227", "sen_id": 250022}, {"caption": "a man is talking while images of an astronaut are seen", "video_id": "video12227", "sen_id": 250023}, {"caption": "an astronauts face is zoomed in on while he talks about the moon", "video_id": "video12227", "sen_id": 250024}, {"caption": "reflections on the visor of an astronaut in a space walk uniform are examined", "video_id": "video12227", "sen_id": 250025}, {"caption": "an astronaut describes his opinions on the perception of space travel", "video_id": "video12227", "sen_id": 250026}, {"caption": "a astronaut floating near the space station in outer space", "video_id": "video12227", "sen_id": 250027}, {"caption": "an astronaut is flying on the space with the crew", "video_id": "video12227", "sen_id": 250028}, {"caption": "a man discusses a photo of an astronaut and the reflection on his visor", "video_id": "video12227", "sen_id": 250029}, {"caption": "satellite and astronuats on moon is being shown", "video_id": "video12227", "sen_id": 250030}, {"caption": "a man fully covered white color dress in the space", "video_id": "video12227", "sen_id": 250031}, {"caption": "two astronauts are doing a spacewalk while someone narrates", "video_id": "video12227", "sen_id": 250032}, {"caption": "a man is all ready to travel to space", "video_id": "video12227", "sen_id": 250033}, {"caption": "an american astronaut is floating in space near a space station", "video_id": "video12227", "sen_id": 250034}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12227", "sen_id": 250035}, {"caption": "a man in a astronaut space suit is performing a task in space", "video_id": "video12227", "sen_id": 250036}, {"caption": "a group of astronauts discuss a space walk they were doing together", "video_id": "video12227", "sen_id": 250037}, {"caption": "an astronaut floats outside the space station", "video_id": "video12227", "sen_id": 250038}, {"caption": "an astronaut is zoomed in on as a conspiracy theorist talks about it", "video_id": "video12227", "sen_id": 250039}, {"caption": "a man in a suit speaks at the end of a long table lined with green lamps", "video_id": "video12620", "sen_id": 250040}, {"caption": "a man in a suit talking a cross a long table", "video_id": "video12620", "sen_id": 250041}, {"caption": "two men in suits talking about finance", "video_id": "video12620", "sen_id": 250042}, {"caption": "a man talks to another man at the other end of a conference table lines with lamps in a dark room", "video_id": "video12620", "sen_id": 250043}, {"caption": "man stands across a table full of green lamps and talks about a business with another man", "video_id": "video12620", "sen_id": 250044}, {"caption": "a man standing behind a row of lights talking about investments", "video_id": "video12620", "sen_id": 250045}, {"caption": "two men standing at opposite ends of a long table have a discussion", "video_id": "video12620", "sen_id": 250046}, {"caption": "a man talking in between rows of green lamps", "video_id": "video12620", "sen_id": 250047}, {"caption": "a man is inside a room filled with seats and speaking to the camera", "video_id": "video12620", "sen_id": 250048}, {"caption": "a grey haired man talks at the end of a wooden table that has many green and copper colored lamps on it", "video_id": "video12620", "sen_id": 250049}, {"caption": "a man with a suit on is talking in a room full of lamps", "video_id": "video12620", "sen_id": 250050}, {"caption": "a man is speaking about statistical information and data in a dim room", "video_id": "video12620", "sen_id": 250051}, {"caption": "a man in suits stands on the street with the serial of lights", "video_id": "video12620", "sen_id": 250052}, {"caption": "a guy in a suit talks about investments next to green lamps", "video_id": "video12620", "sen_id": 250053}, {"caption": "a gentleman with good speech", "video_id": "video12620", "sen_id": 250054}, {"caption": "a man in a suit and vest is talking to the camera behind a row of green lamps", "video_id": "video12620", "sen_id": 250055}, {"caption": "a person explains about the finances", "video_id": "video12620", "sen_id": 250056}, {"caption": "a man in suit at end of large desk with old fashioned lamps describes statistics and business practice", "video_id": "video12620", "sen_id": 250057}, {"caption": "an older gentleman in a suit talks about investments", "video_id": "video12620", "sen_id": 250058}, {"caption": "there is a man in a suit inside of a dark room along with a row of green lamps in the background", "video_id": "video12620", "sen_id": 250059}, {"caption": "a variety of tech tips are available from a man called linus", "video_id": "video10078", "sen_id": 250060}, {"caption": "three clips are looping on a show called linus techtips", "video_id": "video10078", "sen_id": 250061}, {"caption": "a person showing us the linus tech tips", "video_id": "video10078", "sen_id": 250062}, {"caption": "a picture with about a tech tip website is displayed with electric music playing", "video_id": "video10078", "sen_id": 250063}, {"caption": "a man in a black shirt is doing an ad for a tech websight", "video_id": "video10078", "sen_id": 250064}, {"caption": "a web site s information page who deals with digital device technology tips named linustechtips", "video_id": "video10078", "sen_id": 250065}, {"caption": "a black tshirt man standing in a hall", "video_id": "video10078", "sen_id": 250066}, {"caption": "linus tech tips gaming unboxings & reviews build guides cooling", "video_id": "video10078", "sen_id": 250067}, {"caption": "in this video shown three type of guide lines for gaming build guid and cooling", "video_id": "video10078", "sen_id": 250068}, {"caption": "some techtips is being shown and an advertisement is going on", "video_id": "video10078", "sen_id": 250069}, {"caption": "a black tshirt man talking from the studio", "video_id": "video10078", "sen_id": 250070}, {"caption": "this is multiple activity video like as games", "video_id": "video10078", "sen_id": 250071}, {"caption": "com is playing in the screen", "video_id": "video10078", "sen_id": 250072}, {"caption": "a boy in blue dress wearing standing and equipment still images pictures displaying on screen", "video_id": "video10078", "sen_id": 250073}, {"caption": "guy in black tshirt looking at camera", "video_id": "video10078", "sen_id": 250074}, {"caption": "there is a man repairing his machine inside a room", "video_id": "video10078", "sen_id": 250075}, {"caption": "some website of linus techtips is shown with the subscription options", "video_id": "video10078", "sen_id": 250076}, {"caption": "the video is about the linus tech tipsgaming build guides and cooling", "video_id": "video10078", "sen_id": 250077}, {"caption": "here technical tips are given for gaming linus and cooling absorbents", "video_id": "video10078", "sen_id": 250078}, {"caption": "various linus tech tips are being displayed to click on links to", "video_id": "video10078", "sen_id": 250079}, {"caption": "a male model in several pictures wearing different colored clothes with various different props", "video_id": "video12546", "sen_id": 250080}, {"caption": "a young good looking white male in jeans and a grey shirt", "video_id": "video12546", "sen_id": 250081}, {"caption": "still photos of david beckam are set to music", "video_id": "video12546", "sen_id": 250082}, {"caption": "streaming photos of david beckham in different everyday situations", "video_id": "video12546", "sen_id": 250083}, {"caption": "a man in wears different style in various photographs and is seen in the city", "video_id": "video12546", "sen_id": 250084}, {"caption": "a photo montage of men with a song playing", "video_id": "video12546", "sen_id": 250085}, {"caption": "a man being held by two police officers are walking down the street", "video_id": "video12546", "sen_id": 250086}, {"caption": "a famous man is shown in a set of still images wearing different fashion styles and holding a baby", "video_id": "video12546", "sen_id": 250087}, {"caption": "the one day style activities of a vip david beckham are shooted in a cell phone", "video_id": "video12546", "sen_id": 250088}, {"caption": "there are many pictures of men walking and posing", "video_id": "video12546", "sen_id": 250089}, {"caption": "a famous person poster with bgm", "video_id": "video12546", "sen_id": 250090}, {"caption": "a man is posing in a lot of different positions", "video_id": "video12546", "sen_id": 250091}, {"caption": "a slideshow including many pictures of a man wearing different outfits", "video_id": "video12546", "sen_id": 250092}, {"caption": "images of david beckham accompanied by music", "video_id": "video12546", "sen_id": 250093}, {"caption": "music on various styles and posses of the celebrity", "video_id": "video12546", "sen_id": 250094}, {"caption": "a man in a plaid shirt is walking around outside", "video_id": "video12546", "sen_id": 250095}, {"caption": "multiple photos of david beckham are shown fading from one to the next while music plays in the background", "video_id": "video12546", "sen_id": 250096}, {"caption": "a compilation of photos of a man set to upbeat music", "video_id": "video12546", "sen_id": 250097}, {"caption": "music plays in the background to candid photos of a male celebrity", "video_id": "video12546", "sen_id": 250098}, {"caption": "david beckham appears around the world in many different outfits", "video_id": "video12546", "sen_id": 250099}, {"caption": "a woman in sunglasses modelling various outfits", "video_id": "video11762", "sen_id": 250100}, {"caption": "a woman with long hair is modeling clothes", "video_id": "video11762", "sen_id": 250101}, {"caption": "a woman with nearly waist-length brown hair poses in a gray coat in a city block a black-and-white outfit in a residential neighborhood and a black dress with a vertical print on a seaside cliff", "video_id": "video11762", "sen_id": 250102}, {"caption": "a woman models three different outfits for a fashion look book", "video_id": "video11762", "sen_id": 250103}, {"caption": "a female models several different outfits outside on a beach and in front of a big office building", "video_id": "video11762", "sen_id": 250104}, {"caption": "a girl is being shown with a variety of different clothes on and she is smiling", "video_id": "video11762", "sen_id": 250105}, {"caption": "a woman wearing serval different outfits and theres a woman singing", "video_id": "video11762", "sen_id": 250106}, {"caption": "women in different dresses promoting new trendy cloths", "video_id": "video11762", "sen_id": 250107}, {"caption": "a woman is posing outside in different outfits", "video_id": "video11762", "sen_id": 250108}, {"caption": "an international shopper models her garments in exotic locales", "video_id": "video11762", "sen_id": 250109}, {"caption": "a women in glasses and wearing a brown overcoat is posing", "video_id": "video11762", "sen_id": 250110}, {"caption": "a lady model exploring the new model clothes", "video_id": "video11762", "sen_id": 250111}, {"caption": "young girl with long brown wavy hair in fashionable dress standing by the ocean", "video_id": "video11762", "sen_id": 250112}, {"caption": "a lady wearing a dress is standing on a hill near water", "video_id": "video11762", "sen_id": 250113}, {"caption": "a woman looking at the camera with effect and music", "video_id": "video11762", "sen_id": 250114}, {"caption": "a woman is wearing different fashions in different locales", "video_id": "video11762", "sen_id": 250115}, {"caption": "a cute girl is giving a different poses", "video_id": "video11762", "sen_id": 250116}, {"caption": "some ladies are showing their dresses for an shopping advertisement", "video_id": "video11762", "sen_id": 250117}, {"caption": "beautiful ladies photographed on the beach followed by ellie goulding song", "video_id": "video11762", "sen_id": 250118}, {"caption": "a commercial-like video with 3 different still shots of a woman with wording flashing on the screen about shopping", "video_id": "video11762", "sen_id": 250119}, {"caption": "a child in a crib screams piercingly while a man attempts to placate it into sleep", "video_id": "video10979", "sen_id": 250120}, {"caption": "a baby stands up in his crib at night", "video_id": "video10979", "sen_id": 250121}, {"caption": "a baby screams while standing in a crib in the dark as a man repeatedly asks the baby to go to sleep", "video_id": "video10979", "sen_id": 250122}, {"caption": "baby viewed through night vision camera refuses to go to sleep", "video_id": "video10979", "sen_id": 250123}, {"caption": "a toddler is filmed using night vision inside of his crib and he refuses to go to sleep", "video_id": "video10979", "sen_id": 250124}, {"caption": "baby (with glowing eyes) standing in his crib holding his teddy bear and crying a man is trying to convince him to go back to sleep", "video_id": "video10979", "sen_id": 250125}, {"caption": "a baby stands and cries in his crib in the middle of the night", "video_id": "video10979", "sen_id": 250126}, {"caption": "a baby is throwing a tantrum and his father is urging the baby to go to sleep", "video_id": "video10979", "sen_id": 250127}, {"caption": "a baby stands in a crib crying at its parents", "video_id": "video10979", "sen_id": 250128}, {"caption": "a small kid is standing in a cradle and crying for her mother", "video_id": "video10979", "sen_id": 250129}, {"caption": "a little boy standing on the groung wearing specs", "video_id": "video10979", "sen_id": 250130}, {"caption": "infrared video of a baby standing in a crib screaming at the camera", "video_id": "video10979", "sen_id": 250131}, {"caption": "a baby is with her mother in the hospital crying loudly", "video_id": "video10979", "sen_id": 250132}, {"caption": " with glowing eyes is standing in the corner of his crib loudly crying reaching out for a parent with one hand", "video_id": "video10979", "sen_id": 250133}, {"caption": "a child is standing in the box and crying", "video_id": "video10979", "sen_id": 250134}, {"caption": "here a small baby is crying in the cradle and no one sees it", "video_id": "video10979", "sen_id": 250135}, {"caption": "boy is playing and showing his fingers", "video_id": "video10979", "sen_id": 250136}, {"caption": "a young boy is standing up in his crib yelling very loudly at night", "video_id": "video10979", "sen_id": 250137}, {"caption": "a small child cries out loud rather than going to sleep at night", "video_id": "video10979", "sen_id": 250138}, {"caption": "they used night vision to see the baby standing in the crib", "video_id": "video10979", "sen_id": 250139}, {"caption": "a man advertising an e-mail address website and his youtube channel", "video_id": "video12197", "sen_id": 250140}, {"caption": "video of mrcausey website url and more information about the author", "video_id": "video12197", "sen_id": 250141}, {"caption": "a man is talking about a webite called mrcauseycom", "video_id": "video12197", "sen_id": 250142}, {"caption": "an email address and a youtube channel appear followed by a notice message about the company", "video_id": "video12197", "sen_id": 250143}, {"caption": "a guy talking about a website in his video for his youtube channel", "video_id": "video12197", "sen_id": 250144}, {"caption": "a man identifies all the different ways that you are able to make contact with him", "video_id": "video12197", "sen_id": 250145}, {"caption": "an animation is being show about power point creation", "video_id": "video12197", "sen_id": 250146}, {"caption": "there are some explanations about a youtube channel", "video_id": "video12197", "sen_id": 250147}, {"caption": "a man is speaking while a power point is displayed with contact information", "video_id": "video12197", "sen_id": 250148}, {"caption": "closing segment to mrcausey s video and youtube channel", "video_id": "video12197", "sen_id": 250149}, {"caption": "a persons website on iq studies is being shown", "video_id": "video12197", "sen_id": 250150}, {"caption": "there is an advertisement of a website and its features", "video_id": "video12197", "sen_id": 250151}, {"caption": "a man advertising for powerpoint videos at www", "video_id": "video12197", "sen_id": 250152}, {"caption": "there is a contact information and warning of a authorized organization", "video_id": "video12197", "sen_id": 250153}, {"caption": "its about questions check it outthere are many notice", "video_id": "video12197", "sen_id": 250154}, {"caption": "a video which gives information to get into contact with a man named darrell causey or mr including his email", "video_id": "video12197", "sen_id": 250155}, {"caption": "a notice in white and blue writtings is dispayed", "video_id": "video12197", "sen_id": 250156}, {"caption": "there is an ad about a website to check it out", "video_id": "video12197", "sen_id": 250157}, {"caption": "a narrator explains about mrcauseys as a presentation showing the email address to email mr causey and the website with information", "video_id": "video12197", "sen_id": 250158}, {"caption": "a man explaining how to send him and email as well as the services that he offers", "video_id": "video12197", "sen_id": 250159}, {"caption": "traffic is backed up for miles on a major highway that is running through the countryside", "video_id": "video11758", "sen_id": 250160}, {"caption": "a severe traffic jam with hundreds of cars backed up on the freeway", "video_id": "video11758", "sen_id": 250161}, {"caption": "traffic is backed up in four lanes of a highway located in forested and cultivated land in one direction because of a truck that crashed through a median", "video_id": "video11758", "sen_id": 250162}, {"caption": "there are many vehicles moving on the highway", "video_id": "video11758", "sen_id": 250163}, {"caption": "sky new hd in a big road lot of traffic one side and other side free", "video_id": "video11758", "sen_id": 250164}, {"caption": "there is a wreak on the road and traffic is all backed up", "video_id": "video11758", "sen_id": 250165}, {"caption": "some trucks and cars are in a traffic jam", "video_id": "video11758", "sen_id": 250166}, {"caption": "a wreck on the highway is causing gridlock traffic", "video_id": "video11758", "sen_id": 250167}, {"caption": "an aerial view of a long traffic jam on one side of a highway", "video_id": "video11758", "sen_id": 250168}, {"caption": "the vehicles go away on the road and see the naturals", "video_id": "video11758", "sen_id": 250169}, {"caption": "an areal view of a road both side greenish look a container lorry and dashed with another vehicle and stoped in between the road partision due to which lot of vehicles stranded for long stetch on one side of the road", "video_id": "video11758", "sen_id": 250170}, {"caption": "some vehicles are driving on a road in europe", "video_id": "video11758", "sen_id": 250171}, {"caption": "a highway is backed up for miles with many cars and trucks", "video_id": "video11758", "sen_id": 250172}, {"caption": "a large truck was in an accident as a result there is a very long traffic jam", "video_id": "video11758", "sen_id": 250173}, {"caption": "its an accidentdue to the accident heavy traffic all the buses are on the road", "video_id": "video11758", "sen_id": 250174}, {"caption": "a person is showing huge trafic jam in the highway", "video_id": "video11758", "sen_id": 250175}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video11758", "sen_id": 250176}, {"caption": "a tv channel named sky news hd is showing a long traffic jam road which is situated in between the fertilized land", "video_id": "video11758", "sen_id": 250177}, {"caption": "aerial footage of a large swatch of backed-up traffic on a highway", "video_id": "video11758", "sen_id": 250178}, {"caption": "a highway full of traffic jam on one side and one side is empty shown from aerial biew", "video_id": "video11758", "sen_id": 250179}, {"caption": "a man discusses purchasing a presence on twitter with a host on a video information program", "video_id": "video12811", "sen_id": 250180}, {"caption": "a man in a suit is taking about a twitter page", "video_id": "video12811", "sen_id": 250181}, {"caption": "the man wearing the blazer talk about the market products", "video_id": "video12811", "sen_id": 250182}, {"caption": "a business man on a show talking to an interviewer about business", "video_id": "video12811", "sen_id": 250183}, {"caption": "a guest in suit sits on stool with host in front of tv screen", "video_id": "video12811", "sen_id": 250184}, {"caption": "man in black suit is having a conversation with another man", "video_id": "video12811", "sen_id": 250185}, {"caption": "a man in a gray suit explains data cards and how they are implemented in purchasing items on twitter", "video_id": "video12811", "sen_id": 250186}, {"caption": "a well-dressed man with gray hair discusses twitter with an unseen audience", "video_id": "video12811", "sen_id": 250187}, {"caption": "a guy gives financial advice out dealing with twitter", "video_id": "video12811", "sen_id": 250188}, {"caption": "a man in a grey suit being interviewed on a television show", "video_id": "video12811", "sen_id": 250189}, {"caption": "a man in a suit is sitting and talking to someone", "video_id": "video12811", "sen_id": 250190}, {"caption": "a man in a suit is sitting in front of a flat screen tv displaying a product name marketo", "video_id": "video12811", "sen_id": 250191}, {"caption": "men in black suit speaking with someone in the television", "video_id": "video12811", "sen_id": 250192}, {"caption": "a man in a grey suit with a spotted tie is sitting in a studio", "video_id": "video12811", "sen_id": 250193}, {"caption": "men describing investment strategies concerning the stock market", "video_id": "video12811", "sen_id": 250194}, {"caption": "a man on the tv news is talking to people", "video_id": "video12811", "sen_id": 250195}, {"caption": "a business man in a nice suit talking to an interviewer", "video_id": "video12811", "sen_id": 250196}, {"caption": "a guest in suit and tie talks with host sitting in stools with tvs in background", "video_id": "video12811", "sen_id": 250197}, {"caption": "a grey haired man in a brown suit talks with a tv screen behind him", "video_id": "video12811", "sen_id": 250198}, {"caption": "two men are having a conversation about having or buying a presence on twitter", "video_id": "video12811", "sen_id": 250199}, {"caption": "a blond woman and a bald man sit next to each other while talking", "video_id": "video12267", "sen_id": 250200}, {"caption": "a man talking about animators who love what they do", "video_id": "video12267", "sen_id": 250201}, {"caption": "there is a men and women talking about something", "video_id": "video12267", "sen_id": 250202}, {"caption": "monsters university animation movie poster graces the background of this t", "video_id": "video12267", "sen_id": 250203}, {"caption": "a man and a woman discuss the type of people that work at a particular company", "video_id": "video12267", "sen_id": 250204}, {"caption": "an old man wearing check shirt sitting with old lady speaking with each other displaying on screen", "video_id": "video12267", "sen_id": 250205}, {"caption": "two persons were discussing some matter in front of the camera", "video_id": "video12267", "sen_id": 250206}, {"caption": "two mens are discussing with each other by actions", "video_id": "video12267", "sen_id": 250207}, {"caption": "in a light blue plaid shirt and womanin a grey jacket sitting for an interview in which the man is speaking", "video_id": "video12267", "sen_id": 250208}, {"caption": "a man discusses how to get work at the company pixar", "video_id": "video12267", "sen_id": 250209}, {"caption": "a man and a woman discussing working for pixar", "video_id": "video12267", "sen_id": 250210}, {"caption": "a man in check shirt talking in a studio", "video_id": "video12267", "sen_id": 250211}, {"caption": "a bald headed man and and old woman sitting in front of cartoon park and discussing", "video_id": "video12267", "sen_id": 250212}, {"caption": "women and men sharing something about to in a television show", "video_id": "video12267", "sen_id": 250213}, {"caption": "two members are doing channels show about how to get work at pixar", "video_id": "video12267", "sen_id": 250214}, {"caption": "there is a check shirt man talking from the studio", "video_id": "video12267", "sen_id": 250215}, {"caption": "a bald headed man talks while sitting near an old lady", "video_id": "video12267", "sen_id": 250216}, {"caption": "how to get work at pixar with koi rae & dan seanlon", "video_id": "video12267", "sen_id": 250217}, {"caption": "a man sitting with a woman and talking about pixar and the kind of people that would do it", "video_id": "video12267", "sen_id": 250218}, {"caption": "a man with a bald head is talking about soemthing", "video_id": "video12267", "sen_id": 250219}, {"caption": "a man with one red eye and wearing no shirt looks around a strange place where lighning is showing", "video_id": "video10909", "sen_id": 250220}, {"caption": "a man in an alley standing up shirtless and looking around", "video_id": "video10909", "sen_id": 250221}, {"caption": "in front of a building a man with one red eye appears and looks around him", "video_id": "video10909", "sen_id": 250222}, {"caption": "following a series of electrical currents a shirtless muscular man with a red eye stands in front of a large building at night", "video_id": "video10909", "sen_id": 250223}, {"caption": "a man naked with steam coming from his body turns to reveal a red eye", "video_id": "video10909", "sen_id": 250224}, {"caption": "a man well built is showing up with red eyes and angry face", "video_id": "video10909", "sen_id": 250225}, {"caption": "man with strong muscles rise up to stand looking fierce", "video_id": "video10909", "sen_id": 250226}, {"caption": "a muscled man gets up and looks around", "video_id": "video10909", "sen_id": 250227}, {"caption": "a cloudy weather thundering sound and hero from sitting standing up displaying on the screen", "video_id": "video10909", "sen_id": 250228}, {"caption": "lots of smoke is coming out and a man is standing up", "video_id": "video10909", "sen_id": 250229}, {"caption": "its a person on nude on the streets", "video_id": "video10909", "sen_id": 250230}, {"caption": "a man without a shirt has one red eye and looks around", "video_id": "video10909", "sen_id": 250231}, {"caption": "some one is standing before the tall building and we can see lighting also", "video_id": "video10909", "sen_id": 250232}, {"caption": "a movie clip of clouds and man standing up and clouds thundering scene displaying on screen", "video_id": "video10909", "sen_id": 250233}, {"caption": "the character rose up from the ground and had a red eye", "video_id": "video10909", "sen_id": 250234}, {"caption": "there is a man walking up in front of a place", "video_id": "video10909", "sen_id": 250235}, {"caption": "a large body builder stand in a outdoor square and looks around at the night sky", "video_id": "video10909", "sen_id": 250236}, {"caption": "the terminator superimposed in front of a different background than that of the terminator", "video_id": "video10909", "sen_id": 250237}, {"caption": "in a dark place a man with good health is looking at something", "video_id": "video10909", "sen_id": 250238}, {"caption": "a guy with a red eye is staring at some thing", "video_id": "video10909", "sen_id": 250239}, {"caption": "a person is pouring water in a skillet and is stirring the rice mixture", "video_id": "video10333", "sen_id": 250240}, {"caption": "a woman cooking rice in a pan and stirring the rice with a wooden spoon", "video_id": "video10333", "sen_id": 250241}, {"caption": "a person demonstrating how to cook rice in a pot", "video_id": "video10333", "sen_id": 250242}, {"caption": "a woman cooking food in a big silver pan", "video_id": "video10333", "sen_id": 250243}, {"caption": "a woman prepares a rice dish by adding liquid to a pot", "video_id": "video10333", "sen_id": 250244}, {"caption": "a person is in a kitchen using a wooden spoon to stir the mixture in the skillet", "video_id": "video10333", "sen_id": 250245}, {"caption": "in a kitchen someone is cooking some rice kind of foods", "video_id": "video10333", "sen_id": 250246}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10333", "sen_id": 250247}, {"caption": "making a recipe now add water and mix it well", "video_id": "video10333", "sen_id": 250248}, {"caption": "a grain is mixed with water in a cooking pan for some dish preparation", "video_id": "video10333", "sen_id": 250249}, {"caption": "in a kitchen a girl is preparing the boiled rice", "video_id": "video10333", "sen_id": 250250}, {"caption": "a person cooking rice on a bowl", "video_id": "video10333", "sen_id": 250251}, {"caption": "the food is getting cooked and mixed using wooden spoon in a big pot", "video_id": "video10333", "sen_id": 250252}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video10333", "sen_id": 250253}, {"caption": "a rice dish is being prepared from scratch in a wok", "video_id": "video10333", "sen_id": 250254}, {"caption": "a person is stirring some rice in a pot", "video_id": "video10333", "sen_id": 250255}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10333", "sen_id": 250256}, {"caption": "the cook adds water from a glass container to the edges of rice grains cooking in a wide pot and stirs with a wooden and slotted spoon", "video_id": "video10333", "sen_id": 250257}, {"caption": "an in home chef works on a rice recipe by adding a broth to rice in a large wok", "video_id": "video10333", "sen_id": 250258}, {"caption": "a step by step receipe of an indian dish in desi language", "video_id": "video10333", "sen_id": 250259}, {"caption": "small diced garlic being put into a black pan with oil in it", "video_id": "video11402", "sen_id": 250260}, {"caption": "a man pours cooking oil into a skillet on a stove and adds minced garlic", "video_id": "video11402", "sen_id": 250261}, {"caption": "a man is adding oil and garlic to a hot pan", "video_id": "video11402", "sen_id": 250262}, {"caption": "hand pouring oil into a pan on the stove top which is then followed by the same hand pouring diced garlic into the oil", "video_id": "video11402", "sen_id": 250263}, {"caption": "a man demonstrates how to begin a recipe by heating oil in a pan and adding garlic", "video_id": "video11402", "sen_id": 250264}, {"caption": "ingredients are being added to a warming skillet", "video_id": "video11402", "sen_id": 250265}, {"caption": "some one in a kitchen adding some oil to a pan", "video_id": "video11402", "sen_id": 250266}, {"caption": "a man adds cooking oil and when the cooking oil becomes hot he then adds some garlic to it", "video_id": "video11402", "sen_id": 250267}, {"caption": "a man describes turning a skillet on and adding oil and garlic", "video_id": "video11402", "sen_id": 250268}, {"caption": "a man is giving a detailed recipe that you can follow to cook your own home", "video_id": "video11402", "sen_id": 250269}, {"caption": "a man is showing how to make a recipe with oil", "video_id": "video11402", "sen_id": 250270}, {"caption": "the man is giving the procedure statring by adding the cooking oil the the gurlic", "video_id": "video11402", "sen_id": 250271}, {"caption": "a guy telling the cooking procedures to make a recipe", "video_id": "video11402", "sen_id": 250272}, {"caption": "an inhome chef adds oil to a hot pan on his stove and then starts browning some garlic", "video_id": "video11402", "sen_id": 250273}, {"caption": "a man is cooking food in a skillet on an electric stove", "video_id": "video11402", "sen_id": 250274}, {"caption": "in the kitchen a man cooking with some oil", "video_id": "video11402", "sen_id": 250275}, {"caption": "a man is adding oil and garlic into a skillet on a stove", "video_id": "video11402", "sen_id": 250276}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11402", "sen_id": 250277}, {"caption": "man showing cooking procedure by adding oil and garlic to a pan on the stove", "video_id": "video11402", "sen_id": 250278}, {"caption": "a man adds cooking oil to a skillet and gives it a shake", "video_id": "video11402", "sen_id": 250279}, {"caption": "a professional athlete with a goatee talks about his computer-coding college experiences and another man who worked for a social-media company clears away coding misconceptions", "video_id": "video11505", "sen_id": 250280}, {"caption": "a facebook engineer and an nba all-star sit and talk about coding", "video_id": "video11505", "sen_id": 250281}, {"caption": "a basketball player talks about some computer work he did while in college", "video_id": "video11505", "sen_id": 250282}, {"caption": "chris bosh is in a black shirt talking about intimidation", "video_id": "video11505", "sen_id": 250283}, {"caption": "a man wearing a black shirt is talking about intimidation", "video_id": "video11505", "sen_id": 250284}, {"caption": "an nba all-star discussing how coding is not as intimidating as it seems", "video_id": "video11505", "sen_id": 250285}, {"caption": "some basketball players talking about the sport", "video_id": "video11505", "sen_id": 250286}, {"caption": "a man in a black shirt describes his experience with basketball", "video_id": "video11505", "sen_id": 250287}, {"caption": "some kind of instructional video where a man describing with the help of animation", "video_id": "video11505", "sen_id": 250288}, {"caption": "man in black shirt is talking about the nba games", "video_id": "video11505", "sen_id": 250289}, {"caption": "a gentleman in blue shirt is talking to each other in a talk show", "video_id": "video11505", "sen_id": 250290}, {"caption": "a guy in black speaking another guy in blue shares his experience", "video_id": "video11505", "sen_id": 250291}, {"caption": "a black man in a black t-shirt talks and then another black man in a blue t-shirt talks before using the computer", "video_id": "video11505", "sen_id": 250292}, {"caption": "chris is a person in black dress he has bolt head", "video_id": "video11505", "sen_id": 250293}, {"caption": "two men speaking about problems in social media", "video_id": "video11505", "sen_id": 250294}, {"caption": "the basketball player talks about writing computer code while he was in college", "video_id": "video11505", "sen_id": 250295}, {"caption": "a person is explaining about the running", "video_id": "video11505", "sen_id": 250296}, {"caption": "chris bosh and another man are speaking encouragingly about the process of coding", "video_id": "video11505", "sen_id": 250297}, {"caption": "an interesting speech about their working on typical algorithms and relating program in their projects", "video_id": "video11505", "sen_id": 250298}, {"caption": "a diagram of the human body is being shown", "video_id": "video11505", "sen_id": 250299}, {"caption": "a person is adding some spices to the boiling pot with meat", "video_id": "video12610", "sen_id": 250300}, {"caption": "a woman adds spices to a pot on the stove", "video_id": "video12610", "sen_id": 250301}, {"caption": "a woman is listing the ingredients for the food she is cooking in a silver pot", "video_id": "video12610", "sen_id": 250302}, {"caption": "a woman is making food and describing the ingredients required", "video_id": "video12610", "sen_id": 250303}, {"caption": "a woman is cooking indian food while providing verbal instructions", "video_id": "video12610", "sen_id": 250304}, {"caption": "a woman is putting various kinds of oriental seasoning (red peppers salt msala) powders into the wok that is boiling chicken on stove", "video_id": "video12610", "sen_id": 250305}, {"caption": "a person puts some chilli powder to the already boiling ingredients", "video_id": "video12610", "sen_id": 250306}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12610", "sen_id": 250307}, {"caption": "making a recipe with chicken adding salt garam masala", "video_id": "video12610", "sen_id": 250308}, {"caption": "its a cooking video they add the salt and garam masala to the food", "video_id": "video12610", "sen_id": 250309}, {"caption": "some one in a kitchen adding some ingredients to the vessel to prepare some curry", "video_id": "video12610", "sen_id": 250310}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12610", "sen_id": 250311}, {"caption": "one women make a recipe with chicken garlic garam masala powder", "video_id": "video12610", "sen_id": 250312}, {"caption": "a woman gives instruction in hindi as she cooks in a pot", "video_id": "video12610", "sen_id": 250313}, {"caption": "one women is doing some receipe in a kitchens show", "video_id": "video12610", "sen_id": 250314}, {"caption": "a person cooking all vegetables in small pieces in a bowl", "video_id": "video12610", "sen_id": 250315}, {"caption": "someone cooks dish by adding ingredients to the meat in an aluminium vessel on the stove", "video_id": "video12610", "sen_id": 250316}, {"caption": "a lady explains about a preparation of some dish", "video_id": "video12610", "sen_id": 250317}, {"caption": "a woman is putting ingredients into a sizzling pot", "video_id": "video12610", "sen_id": 250318}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12610", "sen_id": 250319}, {"caption": "a live performance of a woman and band", "video_id": "video12422", "sen_id": 250320}, {"caption": "a woman is singing on stage to piano music while her band stands next to her listening", "video_id": "video12422", "sen_id": 250321}, {"caption": "a woman sings in front of a crowd while a man plays piano", "video_id": "video12422", "sen_id": 250322}, {"caption": "a group of woman singing in front of a small crowd", "video_id": "video12422", "sen_id": 250323}, {"caption": "a woman singing on a microphone on stage in a room", "video_id": "video12422", "sen_id": 250324}, {"caption": "there is a woman singing a song with a mic", "video_id": "video12422", "sen_id": 250325}, {"caption": "they are on the stage dancing but only one person is singng", "video_id": "video12422", "sen_id": 250326}, {"caption": "aovely young woman sings a song while a man plays the piano", "video_id": "video12422", "sen_id": 250327}, {"caption": "a woman in a band singing with a microphone", "video_id": "video12422", "sen_id": 250328}, {"caption": "a woman singing in a band with drums a piano and a guitar", "video_id": "video12422", "sen_id": 250329}, {"caption": "a girl singing a song on the stage with her team", "video_id": "video12422", "sen_id": 250330}, {"caption": "a female singer on stage with other girls singing to an audience", "video_id": "video12422", "sen_id": 250331}, {"caption": "a young woman is singing with music playing in the background", "video_id": "video12422", "sen_id": 250332}, {"caption": "beautiful woman singing song by labryinth followed by her band", "video_id": "video12422", "sen_id": 250333}, {"caption": "sexy blonde singer singing her music album in front of audience", "video_id": "video12422", "sen_id": 250334}, {"caption": "an attractive woman singing on a mic in a chorus", "video_id": "video12422", "sen_id": 250335}, {"caption": "a girl singing a song while a person plays piano", "video_id": "video12422", "sen_id": 250336}, {"caption": "a woman sings with a band in a recording studio", "video_id": "video12422", "sen_id": 250337}, {"caption": "a woman sings while other people play music", "video_id": "video12422", "sen_id": 250338}, {"caption": "a woman sings as people play background music for her in front of a crowd", "video_id": "video12422", "sen_id": 250339}, {"caption": "a picture of a group of men in white shirts walking forward on a street", "video_id": "video12402", "sen_id": 250340}, {"caption": "seven men in white polos walking on the street", "video_id": "video12402", "sen_id": 250341}, {"caption": "music is played in the background while a picture of seven men is shown", "video_id": "video12402", "sen_id": 250342}, {"caption": "there are many young people in uniform who walking on the road", "video_id": "video12402", "sen_id": 250343}, {"caption": "the video is a montage of two photos including one photo of seven people in white shirts and landyerds walking", "video_id": "video12402", "sen_id": 250344}, {"caption": "a photo of a group of people all wearing white is shown while music plays", "video_id": "video12402", "sen_id": 250345}, {"caption": "a group of indian young people in lab coats walk down a street", "video_id": "video12402", "sen_id": 250346}, {"caption": "bunch of people walking in white shirt down the street", "video_id": "video12402", "sen_id": 250347}, {"caption": "a white shirt man walking with his friends", "video_id": "video12402", "sen_id": 250348}, {"caption": "many mans in the photos and looks the image", "video_id": "video12402", "sen_id": 250349}, {"caption": "a group of people with white polos walks across the street", "video_id": "video12402", "sen_id": 250350}, {"caption": "some people in white shirts are walking", "video_id": "video12402", "sen_id": 250351}, {"caption": "there is a gang in front of their school", "video_id": "video12402", "sen_id": 250352}, {"caption": "group of peoples are walking on the road", "video_id": "video12402", "sen_id": 250353}, {"caption": "a bunch of family and friends are wearing the same shirts and caps marching down the middle of the street", "video_id": "video12402", "sen_id": 250354}, {"caption": "some people in white shirts are walking around", "video_id": "video12402", "sen_id": 250355}, {"caption": "there is a group of people with white cap", "video_id": "video12402", "sen_id": 250356}, {"caption": "a still image of a group of people is shown set to music", "video_id": "video12402", "sen_id": 250357}, {"caption": "a picture of a group of young men all wearing white tops and white caps", "video_id": "video12402", "sen_id": 250358}, {"caption": "an album of some photos taking by a group of some young friends", "video_id": "video12402", "sen_id": 250359}, {"caption": "an outside shot of a sunny clear day of an open field with trees green grass and clouds showing", "video_id": "video11852", "sen_id": 250360}, {"caption": "clouds hang in the sky behind some trees and dying grass out in nature", "video_id": "video11852", "sen_id": 250361}, {"caption": "there a tree and clodes", "video_id": "video11852", "sen_id": 250362}, {"caption": "a deep-green meadow with tall grasses and round bushes grows under a blue sky with huge white clouds", "video_id": "video11852", "sen_id": 250363}, {"caption": "birds can be heard singing in the background while you can see bright blue sky white clouds green grass and a few scattered low trees or bushes", "video_id": "video11852", "sen_id": 250364}, {"caption": "a silent video graphic showing a blue sky white clouds trees and a grassy field", "video_id": "video11852", "sen_id": 250365}, {"caption": "a beautiful scene of the nature is covered by water forest etc", "video_id": "video11852", "sen_id": 250366}, {"caption": "this silent venue with white clouds and bird sounds seems so peaceful", "video_id": "video11852", "sen_id": 250367}, {"caption": "an exploration about the nature such as river and sky", "video_id": "video11852", "sen_id": 250368}, {"caption": "a pond with lot of cranes with a forest in the background", "video_id": "video11852", "sen_id": 250369}, {"caption": "a green landscape with big trees is outside", "video_id": "video11852", "sen_id": 250370}, {"caption": "water is flowing and clouds are moving with so much of greenery around", "video_id": "video11852", "sen_id": 250371}, {"caption": "a view of green grass some plants and trees and blue sky with some clouds can be seen", "video_id": "video11852", "sen_id": 250372}, {"caption": "a crane in the river water and see the fish", "video_id": "video11852", "sen_id": 250373}, {"caption": "the forest sean there is a river and a plain place", "video_id": "video11852", "sen_id": 250374}, {"caption": "a scene of an outdoor area is being shown to people", "video_id": "video11852", "sen_id": 250375}, {"caption": "there is a blue sky with white clouds in a morning", "video_id": "video11852", "sen_id": 250376}, {"caption": "beautiful and big river with sound in nature", "video_id": "video11852", "sen_id": 250377}, {"caption": "large cloud in the background of a tree", "video_id": "video11852", "sen_id": 250378}, {"caption": "this picture displays a field with trees grass and a pretty blue sky and white clouds with the sound of the wind blowing in the background", "video_id": "video11852", "sen_id": 250379}, {"caption": "a man in an open black shirt talks in front of a spotlight", "video_id": "video12293", "sen_id": 250380}, {"caption": "a man speaking in front of lots of bright lights", "video_id": "video12293", "sen_id": 250381}, {"caption": "a man wearing black blazer and talk about something in the studio", "video_id": "video12293", "sen_id": 250382}, {"caption": "there is a suit man talking in front of a light", "video_id": "video12293", "sen_id": 250383}, {"caption": "a man in suit front of lights are talking about something", "video_id": "video12293", "sen_id": 250384}, {"caption": "a guy in a jacket is talking and standing", "video_id": "video12293", "sen_id": 250385}, {"caption": "a man in brown shirt is talking to another person", "video_id": "video12293", "sen_id": 250386}, {"caption": "edward norton is wearing a black suit jacket and a black shirt", "video_id": "video12293", "sen_id": 250387}, {"caption": "an actor talking about the world cup and people s reaction to it", "video_id": "video12293", "sen_id": 250388}, {"caption": " edward norton is being interviewed and speaking", "video_id": "video12293", "sen_id": 250389}, {"caption": "a guy in a movie is standing and talking inside", "video_id": "video12293", "sen_id": 250390}, {"caption": "a person explaining a concept in a show", "video_id": "video12293", "sen_id": 250391}, {"caption": "a man in a black jacket is standing in front of bright lights and talking", "video_id": "video12293", "sen_id": 250392}, {"caption": "man in black coat and inner shirt in black color stands in front of light and talks to us", "video_id": "video12293", "sen_id": 250393}, {"caption": "a person commenting about the final world cup", "video_id": "video12293", "sen_id": 250394}, {"caption": "a man with a gray jacket is talking on tv", "video_id": "video12293", "sen_id": 250395}, {"caption": "a person wearing black coat with tie and speaking", "video_id": "video12293", "sen_id": 250396}, {"caption": "a man is talking enthusiastically in a room with bright lighting", "video_id": "video12293", "sen_id": 250397}, {"caption": "a middle aged man talking about celebrating winning the world cup the scene is back lit", "video_id": "video12293", "sen_id": 250398}, {"caption": "guy in black tshirt and coat talking to the camera", "video_id": "video12293", "sen_id": 250399}, {"caption": "a broken white line down the middle of a road yellow circles crossing a road a race driver holding his red helmet in front of a black car a car speeding in different directions and the driver looking down the road and at the camera", "video_id": "video10029", "sen_id": 250400}, {"caption": "a man describes the features of a sports car", "video_id": "video10029", "sen_id": 250401}, {"caption": "a man describing a test drive of a high performance car", "video_id": "video10029", "sen_id": 250402}, {"caption": "a host from top gear is showing a sports car racing", "video_id": "video10029", "sen_id": 250403}, {"caption": "a man in a black shirt and pants talks on a runway", "video_id": "video10029", "sen_id": 250404}, {"caption": "a man drives a sports car and talks about its driving capabilities", "video_id": "video10029", "sen_id": 250405}, {"caption": "a man wearing a jacket standing and watching car race rally", "video_id": "video10029", "sen_id": 250406}, {"caption": "one player talks about the new car mode its very fast", "video_id": "video10029", "sen_id": 250407}, {"caption": "a car racer is ready with his helmet to drive through the roads", "video_id": "video10029", "sen_id": 250408}, {"caption": "a person with black dress and red helmet is going to ride a car", "video_id": "video10029", "sen_id": 250409}, {"caption": "a man is driving a car fast out side", "video_id": "video10029", "sen_id": 250410}, {"caption": "a men explainging car is displayed with its features", "video_id": "video10029", "sen_id": 250411}, {"caption": "guy driving a high speed car in a highway", "video_id": "video10029", "sen_id": 250412}, {"caption": "a roadway is being shown and a car is getting ready to move along that roadway", "video_id": "video10029", "sen_id": 250413}, {"caption": "the sports car goes very fast down the race track", "video_id": "video10029", "sen_id": 250414}, {"caption": "a man with shaggy hair is standing on a road", "video_id": "video10029", "sen_id": 250415}, {"caption": "a man is standing on a large open road way holding a helmet", "video_id": "video10029", "sen_id": 250416}, {"caption": "a road is shown and car race person drives the car in the field very fast", "video_id": "video10029", "sen_id": 250417}, {"caption": "the car is going very fast and the back of the tail of the car is gearing up while the speed of the car is increasing", "video_id": "video10029", "sen_id": 250418}, {"caption": "a guy near a car is talking about it", "video_id": "video10029", "sen_id": 250419}, {"caption": "a woman in a baseball cap and vest introduces us to peanut butter sandwiches with potato chips", "video_id": "video11343", "sen_id": 250420}, {"caption": "a lady is talking talking about a sandwich recipe", "video_id": "video11343", "sen_id": 250421}, {"caption": "a woman in a hat talks about a recipe for a sandwich", "video_id": "video11343", "sen_id": 250422}, {"caption": "a woman in a grey shirt and black vest is holding up a cookbook and discussing a recipe for putting potato chips in peanut butter and jelly sandwiches", "video_id": "video11343", "sen_id": 250423}, {"caption": "a woman talks about a cookbook that she is holding", "video_id": "video11343", "sen_id": 250424}, {"caption": "a woman in a vest with a backwards facing baseball hat shows a photograph of a recipe featuring peanut butter jelly and potato chips", "video_id": "video11343", "sen_id": 250425}, {"caption": "a young blonde woman shows off a book with images of food in it", "video_id": "video11343", "sen_id": 250426}, {"caption": "a lady shows a book points out her hand and speaks something", "video_id": "video11343", "sen_id": 250427}, {"caption": "a woman is telling the recipe pp&j&pc and to put the recipe on her blogs", "video_id": "video11343", "sen_id": 250428}, {"caption": "for proper instructions she opens the page of the book and shows", "video_id": "video11343", "sen_id": 250429}, {"caption": "there is a woman showing a book inside the room", "video_id": "video11343", "sen_id": 250430}, {"caption": "a lady shows the book on which the best variety foods are explained", "video_id": "video11343", "sen_id": 250431}, {"caption": "a woman is telling about a cooking recipe", "video_id": "video11343", "sen_id": 250432}, {"caption": "a woman with vest and ball cap discusses peanut butter sandwich recipe", "video_id": "video11343", "sen_id": 250433}, {"caption": "a woman in a hat showing a cookbook while mocking the simplicity of the pb&j pc recipe", "video_id": "video11343", "sen_id": 250434}, {"caption": "a woman explains how she will be making a peanut butter and jelly sandwich with potato chips", "video_id": "video11343", "sen_id": 250435}, {"caption": "the blonde haired woman holds up the book and sayswe will be cooking a receipt called pb and j", "video_id": "video11343", "sen_id": 250436}, {"caption": "this is a cute story about peanut butter and potato chips as a recipe for a sandwich", "video_id": "video11343", "sen_id": 250437}, {"caption": "a young woman holds a book while she discusses a recipe", "video_id": "video11343", "sen_id": 250438}, {"caption": "a woman is showing a menu for food", "video_id": "video11343", "sen_id": 250439}, {"caption": "a muscular man in red underwear yells in a bathroom while sitting on a stuffed tiger who also yells", "video_id": "video12024", "sen_id": 250440}, {"caption": "a man in red underwear starts out in a field of underarm hair and then the camera pulls out to show him semi hollering as he sits atop a stuffed toy tiger the tiger talks and the man is holding deodorant the video ends on a screen the a clock with the product on it that says 16 hour bo blocker", "video_id": "video12024", "sen_id": 250441}, {"caption": "a man in red shorts is sitting on a talking tiger", "video_id": "video12024", "sen_id": 250442}, {"caption": "a black man in shorts is sitting on a fake tiger while holding up his deodorant", "video_id": "video12024", "sen_id": 250443}, {"caption": "a man wearing red shorts sitting on a stuffed tiger in the bathrooom", "video_id": "video12024", "sen_id": 250444}, {"caption": "a tv ad showing a person sitting on a tiger and shouting", "video_id": "video12024", "sen_id": 250445}, {"caption": "a man in his underwear in a bathroom sitting on a talking tiger", "video_id": "video12024", "sen_id": 250446}, {"caption": "a large african man is on the back of a fake tiger", "video_id": "video12024", "sen_id": 250447}, {"caption": "a man doing a type of advertising for deoderant", "video_id": "video12024", "sen_id": 250448}, {"caption": "black sports player in underwear sitting on a stuffed tiger in an advertisement", "video_id": "video12024", "sen_id": 250449}, {"caption": "a black man in red shorts is posing as if he is sitting on a tiger", "video_id": "video12024", "sen_id": 250450}, {"caption": "the adventure man is on the tiger and enjoying the moment", "video_id": "video12024", "sen_id": 250451}, {"caption": "a large african man sets on the back of a fake tiger while screaming", "video_id": "video12024", "sen_id": 250452}, {"caption": "a man in bathroom sitting on the cartoon tiger", "video_id": "video12024", "sen_id": 250453}, {"caption": "sports athlete doing a commercial riding on a stuffed tiger", "video_id": "video12024", "sen_id": 250454}, {"caption": "a men with red short is holding a can in his hand and sitting on back of a tiger", "video_id": "video12024", "sen_id": 250455}, {"caption": " in red briefs and spraying an aerosol can is riding a talking tiger in a white bathroom", "video_id": "video12024", "sen_id": 250456}, {"caption": "a tiger isn t able to properly harmonize during a commercial", "video_id": "video12024", "sen_id": 250457}, {"caption": "a man in a bathroom holds a body wash while sitting on a tiger", "video_id": "video12024", "sen_id": 250458}, {"caption": "a tiger in a bathroom has a man on it", "video_id": "video12024", "sen_id": 250459}, {"caption": "cook is spreading chocolate with a knife and lifting it gently", "video_id": "video10533", "sen_id": 250460}, {"caption": "a woman is spreading chocolate", "video_id": "video10533", "sen_id": 250461}, {"caption": "a female voice can be heard describing how to melt and work with chocolate", "video_id": "video10533", "sen_id": 250462}, {"caption": "someone is pouring chocolate and then smoothing it with a metal tool", "video_id": "video10533", "sen_id": 250463}, {"caption": "some one slicing the chocolate cream in to pieces", "video_id": "video10533", "sen_id": 250464}, {"caption": "a person pours the chocolate on the paper and rubs it then pulls the designed chocolate", "video_id": "video10533", "sen_id": 250465}, {"caption": "the woman pours chocolate on the mat then lifts the mat", "video_id": "video10533", "sen_id": 250466}, {"caption": "some cream was put on a paper and then it is rubbed finally its taken from the paper", "video_id": "video10533", "sen_id": 250467}, {"caption": "a woman uses several tools to shape chocolate for a design", "video_id": "video10533", "sen_id": 250468}, {"caption": "a women is doing some thing an she is drawing on a paper and spreading choclate on a top of a design of the paeprhe p", "video_id": "video10533", "sen_id": 250469}, {"caption": "a woman shows how to make shapes with chocolate using acetate and a utility knife", "video_id": "video10533", "sen_id": 250470}, {"caption": "some person spreads chocolate with knife over the top", "video_id": "video10533", "sen_id": 250471}, {"caption": "one women makes a chocolate to fine paste and", "video_id": "video10533", "sen_id": 250472}, {"caption": "a woman is deomonstrating the making of a chocolate layer", "video_id": "video10533", "sen_id": 250473}, {"caption": "a woman pouring and spreading chocolate with a spatula on a table", "video_id": "video10533", "sen_id": 250474}, {"caption": "a person is cutting up some chocolate", "video_id": "video10533", "sen_id": 250475}, {"caption": "the person smooths on the melted chocolate on the paper", "video_id": "video10533", "sen_id": 250476}, {"caption": "a lady explaining to prepare a chocolate cream", "video_id": "video10533", "sen_id": 250477}, {"caption": "a person decorates with liquid chocolate using a spatula", "video_id": "video10533", "sen_id": 250478}, {"caption": "video presentation of a recipe for chocolate layers", "video_id": "video10533", "sen_id": 250479}, {"caption": "an elderly man is doing a tutorial on how to cook bacon", "video_id": "video10906", "sen_id": 250480}, {"caption": "a man in googles and an apron demonstrates how to cook bacon", "video_id": "video10906", "sen_id": 250481}, {"caption": "a men is showing and telling how to cook food", "video_id": "video10906", "sen_id": 250482}, {"caption": "good eats alton brown doing recipe with shrimp", "video_id": "video10906", "sen_id": 250483}, {"caption": "a man in goggles and a black apron talks about cooking bacon", "video_id": "video10906", "sen_id": 250484}, {"caption": "a men with spectacles is preparing and taking the dish with cutter", "video_id": "video10906", "sen_id": 250485}, {"caption": "chef alton brown cooking chicken on a pan and talking", "video_id": "video10906", "sen_id": 250486}, {"caption": "achef explains the difficulties of cooking bacon", "video_id": "video10906", "sen_id": 250487}, {"caption": "a man wearing goggles and an apron cooks bacon in a pan", "video_id": "video10906", "sen_id": 250488}, {"caption": "a man wearing goggles cooks some hot burning meat", "video_id": "video10906", "sen_id": 250489}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10906", "sen_id": 250490}, {"caption": "a man in grey shirt in all spirits while preparing food", "video_id": "video10906", "sen_id": 250491}, {"caption": "a person is explaining about cooking of non vegetable", "video_id": "video10906", "sen_id": 250492}, {"caption": "an old man is frying meat in the pan", "video_id": "video10906", "sen_id": 250493}, {"caption": "a person wearing glass and above wearing safety glass in the i and cooking something in a kitchen", "video_id": "video10906", "sen_id": 250494}, {"caption": "a man is creating some food in a kitchen on tv", "video_id": "video10906", "sen_id": 250495}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10906", "sen_id": 250496}, {"caption": "an blad head man wearing glasses cooking food in the kitchen", "video_id": "video10906", "sen_id": 250497}, {"caption": "a chef fries bacon in a large pan while wearing an apron and a pair of goggles", "video_id": "video10906", "sen_id": 250498}, {"caption": "a old man in kitchen frying in pan in blue dress wearing google", "video_id": "video10906", "sen_id": 250499}, {"caption": "a dragon flies pot of a lake then a gummy bear drinks a potion and goes after it", "video_id": "video12416", "sen_id": 250500}, {"caption": "a 2-d animation is showing a dragon a bear and an man with some form of creatures while a woman narrates about the first 2-d animation made", "video_id": "video12416", "sen_id": 250501}, {"caption": "a woman talks about the history of animated kid shows", "video_id": "video12416", "sen_id": 250502}, {"caption": "cartoon of bears fighting monsters during the mid evil period", "video_id": "video12416", "sen_id": 250503}, {"caption": "a cartoon dragon pops up from a lake and a bear drinks from a vial", "video_id": "video12416", "sen_id": 250504}, {"caption": "bears are trying to stay away from goblins and drinking a juice", "video_id": "video12416", "sen_id": 250505}, {"caption": "a narrated history is talking about the beginning of animated television", "video_id": "video12416", "sen_id": 250506}, {"caption": "two young cartoons play with a dragon before doing drugs", "video_id": "video12416", "sen_id": 250507}, {"caption": "this video contain animated small animals and men and all of them fighting each other", "video_id": "video12416", "sen_id": 250508}, {"caption": "a narrator discusses animated disney shows as a cartoon of dragon bears and giants interact", "video_id": "video12416", "sen_id": 250509}, {"caption": "lady speaking about the animated cartoon gummy bears", "video_id": "video12416", "sen_id": 250510}, {"caption": "a woman is explaining the history of animation for a company there are different clips of cartoons in the background", "video_id": "video12416", "sen_id": 250511}, {"caption": "the animals in the cartoon talk to each other", "video_id": "video12416", "sen_id": 250512}, {"caption": "showing the show gummy bears and how it was one of the first animated show of its time", "video_id": "video12416", "sen_id": 250513}, {"caption": "bear creatures watch a dragon emerge from lake and jump high in trees", "video_id": "video12416", "sen_id": 250514}, {"caption": "an animated bear propels through the air up a tree and other animated creatures are shown very imaginatively", "video_id": "video12416", "sen_id": 250515}, {"caption": "two cartoon people standing near the lake while a big dragon comes out", "video_id": "video12416", "sen_id": 250516}, {"caption": "gummy bear characters with a big dragon and giant in purple", "video_id": "video12416", "sen_id": 250517}, {"caption": "a lady is describing the history of an early cartoon", "video_id": "video12416", "sen_id": 250518}, {"caption": "two animated animals playing together and looking at a small lake", "video_id": "video12416", "sen_id": 250519}, {"caption": "a person gives a purple object to another as they stand under an extended gray roof of an orange house with lit magenta lanterns", "video_id": "video10594", "sen_id": 250520}, {"caption": "a man in gray is giving a man in a blue man in gray hood a purple orb", "video_id": "video10594", "sen_id": 250521}, {"caption": "a gray knight gives an artifact he found to a merchant who is wearing yellow", "video_id": "video10594", "sen_id": 250522}, {"caption": "a robot is standing by another robot by a building", "video_id": "video10594", "sen_id": 250523}, {"caption": "a man talking about barely getting out alive", "video_id": "video10594", "sen_id": 250524}, {"caption": "a pixel cartoon animation of someone giving a object", "video_id": "video10594", "sen_id": 250525}, {"caption": "a knight is walking up to a shopkeeper with an item and explaining to him how he retrieved it", "video_id": "video10594", "sen_id": 250526}, {"caption": "animated short using pixelated characters with 1 of them handing the other an object", "video_id": "video10594", "sen_id": 250527}, {"caption": "two eight bit men one in armor and the other in a robe conversing about an engram that one hands to another", "video_id": "video10594", "sen_id": 250528}, {"caption": "a man is playing a video game and telling about it", "video_id": "video10594", "sen_id": 250529}, {"caption": "two pixel robots meet and exchange an ngram that the other robot will decode", "video_id": "video10594", "sen_id": 250530}, {"caption": "this is a animated game referencing to the army and a man voice speaking about his experience to make it out", "video_id": "video10594", "sen_id": 250531}, {"caption": "the video game has lots of flashing colorful lights", "video_id": "video10594", "sen_id": 250532}, {"caption": "nice picture where dolls are drawn with rectangle boxes in different color", "video_id": "video10594", "sen_id": 250533}, {"caption": "player playing video game trying to get more points", "video_id": "video10594", "sen_id": 250534}, {"caption": "there is a man running towards a house", "video_id": "video10594", "sen_id": 250535}, {"caption": "a male charecter running faster", "video_id": "video10594", "sen_id": 250536}, {"caption": "a digital cartoon that found something that needs to be decoded", "video_id": "video10594", "sen_id": 250537}, {"caption": "a pixelated knight character in a videogame presents an anagram stone to a priest", "video_id": "video10594", "sen_id": 250538}, {"caption": "a pixelated character is running around", "video_id": "video10594", "sen_id": 250539}, {"caption": "a dark haired man in a blue shirt claps his hands as he cooks in a kitchen", "video_id": "video10764", "sen_id": 250540}, {"caption": "a man talking about food of some kind", "video_id": "video10764", "sen_id": 250541}, {"caption": "a man holding up different bottles of sauces and talking", "video_id": "video10764", "sen_id": 250542}, {"caption": "a man with black curly hair describes using worcestershire sauce and ketchup to make a tartar", "video_id": "video10764", "sen_id": 250543}, {"caption": "a man in a blue shirt is explaining a recipe using ketchup and worchestire sauce", "video_id": "video10764", "sen_id": 250544}, {"caption": "a person is talking about some receipee he is going to prepare and the ingrediants to be added for the receipee", "video_id": "video10764", "sen_id": 250545}, {"caption": "a blue shirt man talking from the kitchen", "video_id": "video10764", "sen_id": 250546}, {"caption": "a french chef talks about his secret ingredients: worcestershire sauce and american ketchup", "video_id": "video10764", "sen_id": 250547}, {"caption": "a man gives instructions to adding a special ingredient to a dish", "video_id": "video10764", "sen_id": 250548}, {"caption": "a european man emphasizes ironically that in order to give a dish a most fresh taste one must use bottled american condiments", "video_id": "video10764", "sen_id": 250549}, {"caption": "there is a blue shirt man talking with fun", "video_id": "video10764", "sen_id": 250550}, {"caption": "a man in a blue shirt in a kitchen talking", "video_id": "video10764", "sen_id": 250551}, {"caption": "a man wearing a blue dress shirt is describing how to cook a french dish which includes worcestershire sauce and ketchup", "video_id": "video10764", "sen_id": 250552}, {"caption": "a boy in blue color dress hand in ketchup dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10764", "sen_id": 250553}, {"caption": "a man is talking about some ketchup", "video_id": "video10764", "sen_id": 250554}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video10764", "sen_id": 250555}, {"caption": "a chef talks about the ways that he makes recipes have a more french flavor", "video_id": "video10764", "sen_id": 250556}, {"caption": "a man in blue shirt is explaining how to make french tartar", "video_id": "video10764", "sen_id": 250557}, {"caption": "a boy in blue color dress wearing cloth inside kitchen preparing dish to cook to serve and eat", "video_id": "video10764", "sen_id": 250558}, {"caption": "a man with black hair is speaking inside", "video_id": "video10764", "sen_id": 250559}, {"caption": "a young boy sings a song in various locations and various outfits", "video_id": "video12010", "sen_id": 250560}, {"caption": "a young man with glasses lip syncs to a song", "video_id": "video12010", "sen_id": 250561}, {"caption": "a young man wearing glasses lip-syncs to a song", "video_id": "video12010", "sen_id": 250562}, {"caption": "a young man wearing dark glasses sings a song", "video_id": "video12010", "sen_id": 250563}, {"caption": "a young asian man raps and sings", "video_id": "video12010", "sen_id": 250564}, {"caption": "a young boy wearing big glasses is lip singing to a song", "video_id": "video12010", "sen_id": 250565}, {"caption": "a young boy wearing glasses and has brown hair lip sync a song about marriage and a church chapel", "video_id": "video12010", "sen_id": 250566}, {"caption": "a man is singing a song in a music video", "video_id": "video12010", "sen_id": 250567}, {"caption": "a boy with spectacles dubsmasing a english song by watching it", "video_id": "video12010", "sen_id": 250568}, {"caption": "a boy in white and blue color dress wearing cloth glass wearing singing song and laptop in hand sitting displaying on screen", "video_id": "video12010", "sen_id": 250569}, {"caption": "a guy wearing glasses sings a pop song in a music video", "video_id": "video12010", "sen_id": 250570}, {"caption": "a white tshirt gut singing a song lonely", "video_id": "video12010", "sen_id": 250571}, {"caption": "a video of an asian guy singing", "video_id": "video12010", "sen_id": 250572}, {"caption": "a small boy in specks sings about the little chappel", "video_id": "video12010", "sen_id": 250573}, {"caption": "a young boy with shaggy hair wearing glasses lip singing a song by bruno mars and the scenery behind him keeps changing", "video_id": "video12010", "sen_id": 250574}, {"caption": "a small clip of solo song sung by a young boy", "video_id": "video12010", "sen_id": 250575}, {"caption": "one smart boy singing in the screen watching", "video_id": "video12010", "sen_id": 250576}, {"caption": "a young man does a music video cover of a bruno mars song", "video_id": "video12010", "sen_id": 250577}, {"caption": "the young boy in white dress and with glasses is speaking of something", "video_id": "video12010", "sen_id": 250578}, {"caption": "a kid with huge glasses is talking", "video_id": "video12010", "sen_id": 250579}, {"caption": "a group of individuals in sets of two appear to be communicating with each other", "video_id": "video10120", "sen_id": 250580}, {"caption": "a man and woman are sitting in front of a computer talking", "video_id": "video10120", "sen_id": 250581}, {"caption": "an asian boy and a white girl in a grey shirt laughing", "video_id": "video10120", "sen_id": 250582}, {"caption": "four people sit around a table while one of the ladies lifts her left arm into the air", "video_id": "video10120", "sen_id": 250583}, {"caption": "two men and two ladies having an hilarious conversation", "video_id": "video10120", "sen_id": 250584}, {"caption": "three women and three men were talking something in home", "video_id": "video10120", "sen_id": 250585}, {"caption": "couple talking about snapping pictures on a selfie stick", "video_id": "video10120", "sen_id": 250586}, {"caption": "several couples are talking about using a stick they are laughing and imitating how the arms use the stick", "video_id": "video10120", "sen_id": 250587}, {"caption": "couples sit together and talk about funny things", "video_id": "video10120", "sen_id": 250588}, {"caption": "bunch of couples talking to each other in front of camera s", "video_id": "video10120", "sen_id": 250589}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10120", "sen_id": 250590}, {"caption": "a woman sitting in front of laptop and other men and woman making some signs with hands and discussing with each other", "video_id": "video10120", "sen_id": 250591}, {"caption": "six young adults are having fun as they talk about using selfie sticks", "video_id": "video10120", "sen_id": 250592}, {"caption": "three couples are sitting close by and discussing about certain matters", "video_id": "video10120", "sen_id": 250593}, {"caption": "a man and woman are talking next to each other", "video_id": "video10120", "sen_id": 250594}, {"caption": "people seated around the table are speaking to each other", "video_id": "video10120", "sen_id": 250595}, {"caption": "three man talks with three girls in room", "video_id": "video10120", "sen_id": 250596}, {"caption": "some few guys are having a funny group discussion", "video_id": "video10120", "sen_id": 250597}, {"caption": "young people sit at a table and talk about funny things", "video_id": "video10120", "sen_id": 250598}, {"caption": "some people are sitting at a table", "video_id": "video10120", "sen_id": 250599}, {"caption": "man uses a saw and cuts wood to size in this video smoothing the sides", "video_id": "video12066", "sen_id": 250600}, {"caption": "a male voiceover graphic illustrates and explains with hands holding a sander how to use the electrical sander while a white man stands in the background", "video_id": "video12066", "sen_id": 250601}, {"caption": "wood is being notched and carved with a power tool", "video_id": "video12066", "sen_id": 250602}, {"caption": "someone is sanding wood and talking about what he is doing", "video_id": "video12066", "sen_id": 250603}, {"caption": "video of a do it yourself project narrated by a male voice off", "video_id": "video12066", "sen_id": 250604}, {"caption": "someone cutting wood with an electrical wood cutter", "video_id": "video12066", "sen_id": 250605}, {"caption": "an angle grinder is used to knock the edge off of a long rectangular piece of steel", "video_id": "video12066", "sen_id": 250606}, {"caption": "in the laith welding workshop the technician grinding the machine part with the help of grinding machine", "video_id": "video12066", "sen_id": 250607}, {"caption": "a worker uses an angel grinder to smooth the edge of a railing", "video_id": "video12066", "sen_id": 250608}, {"caption": "a person narrates the advertisement which has a clip of wood grinding", "video_id": "video12066", "sen_id": 250609}, {"caption": "there is a man grinding woods with a grinder", "video_id": "video12066", "sen_id": 250610}, {"caption": "a metal cutting matchine is cutting a metal", "video_id": "video12066", "sen_id": 250611}, {"caption": "the carpenter is working with machine in his hand", "video_id": "video12066", "sen_id": 250612}, {"caption": "a grinder rins the length of a peice of wood on a work table with lots of tools", "video_id": "video12066", "sen_id": 250613}, {"caption": "a wood worker is giving direction on sanding a wooden project outside in the woods", "video_id": "video12066", "sen_id": 250614}, {"caption": "there is a man working with a machine", "video_id": "video12066", "sen_id": 250615}, {"caption": "a man slicing a timber by machine", "video_id": "video12066", "sen_id": 250616}, {"caption": "a man doing grinding with a machine on the metal", "video_id": "video12066", "sen_id": 250617}, {"caption": "a person is demonstrating to cut a wood log and another person in a white t shirt is observing it", "video_id": "video12066", "sen_id": 250618}, {"caption": "a guiy is making some things on a table", "video_id": "video12066", "sen_id": 250619}, {"caption": "a man looks far into the distance as he receives a hug", "video_id": "video11984", "sen_id": 250620}, {"caption": "a man embracing another man who looks upset", "video_id": "video11984", "sen_id": 250621}, {"caption": "the man comforts another man as the jazz music plays in the background", "video_id": "video11984", "sen_id": 250622}, {"caption": "a man hugs another man who looks as if he is about to cry", "video_id": "video11984", "sen_id": 250623}, {"caption": "a man is comforting another man who seems to be in distress", "video_id": "video11984", "sen_id": 250624}, {"caption": "a moustached man being comforted by another man while a guitar riff plays", "video_id": "video11984", "sen_id": 250625}, {"caption": "a black haired man with a beard is being comforted by another man with instrumental music playing the man has a tear in his eye", "video_id": "video11984", "sen_id": 250626}, {"caption": "a guy hugging another guy with beard in a black top", "video_id": "video11984", "sen_id": 250627}, {"caption": "a man with a mustache is acting traumatized", "video_id": "video11984", "sen_id": 250628}, {"caption": "a man in light blue shirt consoles another man in black shirt", "video_id": "video11984", "sen_id": 250629}, {"caption": "a man is patting the back of another man who is concerned to comfort him", "video_id": "video11984", "sen_id": 250630}, {"caption": "a man embraces and comforts another man", "video_id": "video11984", "sen_id": 250631}, {"caption": "two friends are together on a sunny day outdoor", "video_id": "video11984", "sen_id": 250632}, {"caption": "there is a man caring his brother on the ground", "video_id": "video11984", "sen_id": 250633}, {"caption": "a man hugs his friend who is in black colour shirt", "video_id": "video11984", "sen_id": 250634}, {"caption": "two men hug outside and cares each other shoulders", "video_id": "video11984", "sen_id": 250635}, {"caption": "a video of movie video scene two person meeting body to body in scene speaking hand on shoulder displaying on screen", "video_id": "video11984", "sen_id": 250636}, {"caption": "an arabic-featured man is making a solemn expression", "video_id": "video11984", "sen_id": 250637}, {"caption": "a crying man is being held in the arms of another and comforted", "video_id": "video11984", "sen_id": 250638}, {"caption": "malayalam movie scene one man consolidating other", "video_id": "video11984", "sen_id": 250639}, {"caption": "a sleeping cartoon woman is awoken by a cartoon girl with a long blond braid", "video_id": "video10245", "sen_id": 250640}, {"caption": "a pinkish graphic with two female characters in bed who sit to talk about something important to them", "video_id": "video10245", "sen_id": 250641}, {"caption": "a blonde haired girl wakes a sleeping red haired girl", "video_id": "video10245", "sen_id": 250642}, {"caption": "a sleeping girl is awoken by another woman", "video_id": "video10245", "sen_id": 250643}, {"caption": "a girl sleeping in bed and another girl ripping the covers off of her", "video_id": "video10245", "sen_id": 250644}, {"caption": "queen elsa is waking up a messy haired sleeping anna", "video_id": "video10245", "sen_id": 250645}, {"caption": "bunch of cartoon characters talking on the screen", "video_id": "video10245", "sen_id": 250646}, {"caption": "two cartoon women in a bedroom one is sleeping and the other is trying to wake her up", "video_id": "video10245", "sen_id": 250647}, {"caption": "a cartoon girl is sleeping in the bed with her hand over her head when another girl pops up to talk to her and wake her up", "video_id": "video10245", "sen_id": 250648}, {"caption": "a girl wakes another and gets her out of bed by removing the covers appears to be a foreign language translation of frozen", "video_id": "video10245", "sen_id": 250649}, {"caption": "a computer animated girl lays in bed while another girl talks to her", "video_id": "video10245", "sen_id": 250650}, {"caption": "a cartoon woman sleeping and her friend or sister wakes her up by pulling the cover off of her", "video_id": "video10245", "sen_id": 250651}, {"caption": "an animation with two women one is sleeping and talking in her sleep while the other is waking her up", "video_id": "video10245", "sen_id": 250652}, {"caption": "it is a dubbed clip of the disney movie frozen", "video_id": "video10245", "sen_id": 250653}, {"caption": "girl pulling the blanket of a women sleeping on bed", "video_id": "video10245", "sen_id": 250654}, {"caption": "one puppet in yellow dress is sleeping and other in blue dress waking her", "video_id": "video10245", "sen_id": 250655}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10245", "sen_id": 250656}, {"caption": "a girl sleeping while queen elsa pops up from the floor waking her", "video_id": "video10245", "sen_id": 250657}, {"caption": "an animated female with blonde hair is talking to another female with red hair in a pink bedroom", "video_id": "video10245", "sen_id": 250658}, {"caption": "animated girl trying to wake up another girl while she is sleeping", "video_id": "video10245", "sen_id": 250659}, {"caption": "assorted athletes are playing competitive games of basketball tennis and other sports", "video_id": "video10728", "sen_id": 250660}, {"caption": "a crowd watches a heated indoor ping pong match a famous tennis player serves the ball during a game young men play basketball under a concrete arch and a professional basketball team play a game", "video_id": "video10728", "sen_id": 250661}, {"caption": "a woman in a blue shirt playing ping pong", "video_id": "video10728", "sen_id": 250662}, {"caption": "scenes of professional athletes playing sports with younger fans", "video_id": "video10728", "sen_id": 250663}, {"caption": "two teams playing a game of basketball with a large audience", "video_id": "video10728", "sen_id": 250664}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10728", "sen_id": 250665}, {"caption": "people are playing various sports such as tennis and basketball against each other", "video_id": "video10728", "sen_id": 250666}, {"caption": "two girls are playing tennis and a group of boys playing a basket ball", "video_id": "video10728", "sen_id": 250667}, {"caption": "a girl in red dress playing tennis and boys playing basket ball", "video_id": "video10728", "sen_id": 250668}, {"caption": "scene from a movie professional players are playing their sports", "video_id": "video10728", "sen_id": 250669}, {"caption": "a dramatic collection of clips of people playing table tennis and basketball", "video_id": "video10728", "sen_id": 250670}, {"caption": "two women were playing a tennis in the ground", "video_id": "video10728", "sen_id": 250671}, {"caption": "people compete in various competitive sports and activities against one another", "video_id": "video10728", "sen_id": 250672}, {"caption": "different players are playing baseballtable tennis and tennis in different courts", "video_id": "video10728", "sen_id": 250673}, {"caption": "a man and a woman play ping pong very fast and then play tennis", "video_id": "video10728", "sen_id": 250674}, {"caption": "two men playing table tennis women are playing tennis and a group of men playing basket ball", "video_id": "video10728", "sen_id": 250675}, {"caption": "a ping pong player ends up on a tennis court playing against a professional tennis player", "video_id": "video10728", "sen_id": 250676}, {"caption": "a group of people are competing in competitions", "video_id": "video10728", "sen_id": 250677}, {"caption": "a man fantasizes about beating serena williams and stealing the basketball", "video_id": "video10728", "sen_id": 250678}, {"caption": "there were a lot of competitive sports being played", "video_id": "video10728", "sen_id": 250679}, {"caption": "a chef shows how they use a blender to complete a recipe", "video_id": "video11156", "sen_id": 250680}, {"caption": "a woman adds water to vegetables in a food processor", "video_id": "video11156", "sen_id": 250681}, {"caption": "a woman adds water to vegetables in a food processor", "video_id": "video11156", "sen_id": 250682}, {"caption": "a woman adds water to a blender and blends the contents", "video_id": "video11156", "sen_id": 250683}, {"caption": "a female cook empties vegetable ingredients from a pot into a blender covers with a plastic lid and blends until the contents turn green", "video_id": "video11156", "sen_id": 250684}, {"caption": "the girl grind some ingredients in the mixer grinder and prepare it for cooking", "video_id": "video11156", "sen_id": 250685}, {"caption": "a woman is adding food to a blender and grinding it into a paste", "video_id": "video11156", "sen_id": 250686}, {"caption": "a woman grinds ingredients into a paste with a food processor", "video_id": "video11156", "sen_id": 250687}, {"caption": "a woman is blending vegetables in a blender", "video_id": "video11156", "sen_id": 250688}, {"caption": "a woman mixing ingredients into a smooth paste", "video_id": "video11156", "sen_id": 250689}, {"caption": "a woman uses a food processor to blend vegetables into a puree", "video_id": "video11156", "sen_id": 250690}, {"caption": "a woman with nice nails is pouring ingredients from a pot into a food processor", "video_id": "video11156", "sen_id": 250691}, {"caption": "a woman places ingredients in a food processor and processes them while she instructs", "video_id": "video11156", "sen_id": 250692}, {"caption": "a woman is grinding vegitables and water together", "video_id": "video11156", "sen_id": 250693}, {"caption": "a person is preparing a meal of food for a show", "video_id": "video11156", "sen_id": 250694}, {"caption": "there is a woman making a quick and tasty dish", "video_id": "video11156", "sen_id": 250695}, {"caption": "a woman in her kitchen mixing up a bunch of green chopped vegetables", "video_id": "video11156", "sen_id": 250696}, {"caption": "a woman adds water to greens and other vegetables in blender and combines", "video_id": "video11156", "sen_id": 250697}, {"caption": "a woman is putting food into a processor and grinding it", "video_id": "video11156", "sen_id": 250698}, {"caption": "a person is using a blender on a stove", "video_id": "video11156", "sen_id": 250699}, {"caption": "president obama is wearing a suit and being filmed throwing flowers", "video_id": "video12356", "sen_id": 250700}, {"caption": "president obama throws flower petals in a ceremony during his state visit to india", "video_id": "video12356", "sen_id": 250701}, {"caption": "there is a man in suit dress spreading flowers to the grave", "video_id": "video12356", "sen_id": 250702}, {"caption": "president obama throwing flower peddles (which a woman holds) during a service", "video_id": "video12356", "sen_id": 250703}, {"caption": "the american president obama attending the seremony", "video_id": "video12356", "sen_id": 250704}, {"caption": "obama came to commentary and kept a garland and sharing his condolence", "video_id": "video12356", "sen_id": 250705}, {"caption": "a ceremony with president obama tossing colorful flower petals into a table display", "video_id": "video12356", "sen_id": 250706}, {"caption": "president obama is shown throwing flowers in a news clip", "video_id": "video12356", "sen_id": 250707}, {"caption": "the president stands with other leaders in ceremony and throws flower pedals onto monument", "video_id": "video12356", "sen_id": 250708}, {"caption": "group of people are in the garden and putting flowers", "video_id": "video12356", "sen_id": 250709}, {"caption": "barack obama participates in a homeage of a person", "video_id": "video12356", "sen_id": 250710}, {"caption": "obama is paying homage to the dead at the grave", "video_id": "video12356", "sen_id": 250711}, {"caption": "obama is paying respect to personhe throws the flower", "video_id": "video12356", "sen_id": 250712}, {"caption": "the president of the united states of america barack obama is wearing a black suit while throwing pink flower petals onto a display", "video_id": "video12356", "sen_id": 250713}, {"caption": "a prime minister standing putting flowers to dead body funeral many persons beside standing displaying on screen", "video_id": "video12356", "sen_id": 250714}, {"caption": "a group of people are standing next to some stuff", "video_id": "video12356", "sen_id": 250715}, {"caption": "president barrack obama attends an indian ritual ceremony", "video_id": "video12356", "sen_id": 250716}, {"caption": "president obama is on an official visit and is seen spreading flower petals at shrine", "video_id": "video12356", "sen_id": 250717}, {"caption": " where he pay homage to the late national leader", "video_id": "video12356", "sen_id": 250718}, {"caption": "some people on a lawn are doing their thing", "video_id": "video12356", "sen_id": 250719}, {"caption": "a woman in a purple shirt is teaching how to make a creamy tomato soup spiced carrot ginger soup and a leek and potato soup", "video_id": "video10868", "sen_id": 250720}, {"caption": "a dish is made and decorated very good", "video_id": "video10868", "sen_id": 250721}, {"caption": "a lady wearing purple color dress putting soup on the table", "video_id": "video10868", "sen_id": 250722}, {"caption": "women in kitchen showing how to prepare tomato and potato soup", "video_id": "video10868", "sen_id": 250723}, {"caption": "a violet color t-shirt wearing lady showing three different types of soups which is served on a white bowl", "video_id": "video10868", "sen_id": 250724}, {"caption": "lady introducing three types of soup-tomato soupginger soup and a potato soup", "video_id": "video10868", "sen_id": 250725}, {"caption": "there is a woman talking about some favorite dishes", "video_id": "video10868", "sen_id": 250726}, {"caption": "a woman with blond hair and wearing a purple top showing different soups", "video_id": "video10868", "sen_id": 250727}, {"caption": "a woman offers to show how to make three types of superbly delicious soups in her kitchen", "video_id": "video10868", "sen_id": 250728}, {"caption": "it is a woman in the kitchen talking about how to cook", "video_id": "video10868", "sen_id": 250729}, {"caption": "a women is talking about the soups she made and it is kept in a cup under the highly decorative mat it looks so creamy", "video_id": "video10868", "sen_id": 250730}, {"caption": "a woman with short hair discussing different kinds of soup", "video_id": "video10868", "sen_id": 250731}, {"caption": "an offscreen woman talks about three soups we see in closeups in white bowls", "video_id": "video10868", "sen_id": 250732}, {"caption": "a lady is talking about making three different types of soup", "video_id": "video10868", "sen_id": 250733}, {"caption": "a woman introduces the three soups she will teach viewers how to make", "video_id": "video10868", "sen_id": 250734}, {"caption": "a variety of kinds of soups are being displayed", "video_id": "video10868", "sen_id": 250735}, {"caption": "a chef talks about a series of soup recipes she is set to prepare", "video_id": "video10868", "sen_id": 250736}, {"caption": "a woman wearing purple color t shirt is telling about some dishes", "video_id": "video10868", "sen_id": 250737}, {"caption": "blonde woman is talking about the decoration of her soup", "video_id": "video10868", "sen_id": 250738}, {"caption": "some soup or something is in a white cup", "video_id": "video10868", "sen_id": 250739}, {"caption": "adele singing when we were young with her band and back up singers in the background", "video_id": "video11654", "sen_id": 250740}, {"caption": "blonde woman in brown dress singing on a stage with a band", "video_id": "video11654", "sen_id": 250741}, {"caption": "adele sings an emotional song at a concert", "video_id": "video11654", "sen_id": 250742}, {"caption": "live performance music video extract", "video_id": "video11654", "sen_id": 250743}, {"caption": "a woman in a black dress is singing a song", "video_id": "video11654", "sen_id": 250744}, {"caption": "a live performance of adele singing the song when we were young", "video_id": "video11654", "sen_id": 250745}, {"caption": "there is a women singing with a mic", "video_id": "video11654", "sen_id": 250746}, {"caption": "adele dressed in a brown dress standing on a stage by a piano sings into her microphone as the backup singers begin to sing as well", "video_id": "video11654", "sen_id": 250747}, {"caption": "adele is singing a song live on stage", "video_id": "video11654", "sen_id": 250748}, {"caption": "a female is singing where two other girls accompany with her as well two other instrument players play the music", "video_id": "video11654", "sen_id": 250749}, {"caption": "adele wears a black outfit and sings into a microphone with her band and backup singers", "video_id": "video11654", "sen_id": 250750}, {"caption": "men and women dancing and singing song in a group", "video_id": "video11654", "sen_id": 250751}, {"caption": "many singers and musicians are performer on stage", "video_id": "video11654", "sen_id": 250752}, {"caption": "adele performs on stage to a tv audience", "video_id": "video11654", "sen_id": 250753}, {"caption": "blonde woman in black dress singing with other members of her band", "video_id": "video11654", "sen_id": 250754}, {"caption": "a blonde woman is singing on stage with a choir", "video_id": "video11654", "sen_id": 250755}, {"caption": "adele performing her hit song when we were young", "video_id": "video11654", "sen_id": 250756}, {"caption": "the white beautiful girl are sing in very well and chores are repeat the song the orchestra team wearing the black dress in very well", "video_id": "video11654", "sen_id": 250757}, {"caption": "adele is singing on stage with a band and backup singers", "video_id": "video11654", "sen_id": 250758}, {"caption": "a woman in brown hair is singing a song in front of mike", "video_id": "video11654", "sen_id": 250759}, {"caption": "a reporter mocks donald trump by calling him trumpenstein with a doctored photo showing", "video_id": "video12780", "sen_id": 250760}, {"caption": "an odd news reporter gives his opinion on a political candidate", "video_id": "video12780", "sen_id": 250761}, {"caption": "a man doing a broadcast about president trump", "video_id": "video12780", "sen_id": 250762}, {"caption": "a man with a blue suit talking about donald trump", "video_id": "video12780", "sen_id": 250763}, {"caption": "news reporter talking about trumpenstein in background interestingly", "video_id": "video12780", "sen_id": 250764}, {"caption": "a crazy news commentator makes fun of other news casters that he feels have opposing views", "video_id": "video12780", "sen_id": 250765}, {"caption": "a blustery host compares donald trump to a re-animated victorian monster", "video_id": "video12780", "sen_id": 250766}, {"caption": "a left wing idiot is crying about trump on tv", "video_id": "video12780", "sen_id": 250767}, {"caption": "a person speaking about a famous person", "video_id": "video12780", "sen_id": 250768}, {"caption": "one man talking about trumpenstein in news stage", "video_id": "video12780", "sen_id": 250769}, {"caption": "a person speaks to the camera for a news segment speaking about donald trump", "video_id": "video12780", "sen_id": 250770}, {"caption": "a man in a jacket is talking about trump", "video_id": "video12780", "sen_id": 250771}, {"caption": "there is a suit man talking from the studio", "video_id": "video12780", "sen_id": 250772}, {"caption": "a man is performing a program in the television", "video_id": "video12780", "sen_id": 250773}, {"caption": "a reporter talking to the camera about a recent news story", "video_id": "video12780", "sen_id": 250774}, {"caption": "a person in studio is reading news and imitating an actor", "video_id": "video12780", "sen_id": 250775}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12780", "sen_id": 250776}, {"caption": "a man is talking about donald trump on the news", "video_id": "video12780", "sen_id": 250777}, {"caption": "a man in a blazer is doing a news report about a movie", "video_id": "video12780", "sen_id": 250778}, {"caption": "guy in coat talking to the camera in the studio", "video_id": "video12780", "sen_id": 250779}, {"caption": "two computer animated paper dolls are selecting various princess outfits", "video_id": "video11193", "sen_id": 250780}, {"caption": "electronic video game music plays as a cursor chooses various objects on a canvas showing doll clothing for two girl doll characters", "video_id": "video11193", "sen_id": 250781}, {"caption": "a barbie game with various fashion clothing pieces is played", "video_id": "video11193", "sen_id": 250782}, {"caption": "a hand courser pointing at different dresses then different shoes", "video_id": "video11193", "sen_id": 250783}, {"caption": "a still images of shoes and dresses design on screen displaying", "video_id": "video11193", "sen_id": 250784}, {"caption": "clothes and shoes are chosen for the two princesses", "video_id": "video11193", "sen_id": 250785}, {"caption": "the international brand barbie doll and its variety brands are displayed in the secssion", "video_id": "video11193", "sen_id": 250786}, {"caption": "a design of cloths and number of shoes displaying still images on screen", "video_id": "video11193", "sen_id": 250787}, {"caption": "a web shop site product page with atractive product images and descriptions", "video_id": "video11193", "sen_id": 250788}, {"caption": "someone is playing a doll dressing game", "video_id": "video11193", "sen_id": 250789}, {"caption": "barbie the princess is made beautiful with different attires", "video_id": "video11193", "sen_id": 250790}, {"caption": "the output display of barbie doll costumes is shown", "video_id": "video11193", "sen_id": 250791}, {"caption": "a pink dresses and a number of shoes still images on screen displaying", "video_id": "video11193", "sen_id": 250792}, {"caption": "a person select barbie princess dress shoes in a website", "video_id": "video11193", "sen_id": 250793}, {"caption": "someone is playing a little girl s video game", "video_id": "video11193", "sen_id": 250794}, {"caption": "a video game for little girl to play dressing barbie with different cloths and accessories", "video_id": "video11193", "sen_id": 250795}, {"caption": "barbie princess dress shoes elsa frozen shoes and dresses", "video_id": "video11193", "sen_id": 250796}, {"caption": "a still images of clothes and shoes design dresses arrow pointing on screen software", "video_id": "video11193", "sen_id": 250797}, {"caption": "in a computer dressing game the player is browsing through princess dress", "video_id": "video11193", "sen_id": 250798}, {"caption": "someone is playing an annoying looking video game", "video_id": "video11193", "sen_id": 250799}, {"caption": "a penguin and a helicopter with people getting out of in a snow storm", "video_id": "video10408", "sen_id": 250800}, {"caption": "the penguin make the dance by seeing the helicopter lay down in the snowfull mountain", "video_id": "video10408", "sen_id": 250801}, {"caption": "a helicopter has landed in a very cold area with its blades spinning very fast", "video_id": "video10408", "sen_id": 250802}, {"caption": "a penguin sees a helicopter in the distance and they are on a snow mountain", "video_id": "video10408", "sen_id": 250803}, {"caption": "the penguin is playing on the snow one helicopter is placed on the snow that place full of snow covering", "video_id": "video10408", "sen_id": 250804}, {"caption": "a search light is on as helicopter prepares to land", "video_id": "video10408", "sen_id": 250805}, {"caption": "in the antartic place the penguin is played on the ice land the helicopter is landing the place", "video_id": "video10408", "sen_id": 250806}, {"caption": "a helicopter landed in the artic region due to the snow a penguine ran off", "video_id": "video10408", "sen_id": 250807}, {"caption": "a penguin walking in the snowy landscape while a huge helicopters lands on the ground", "video_id": "video10408", "sen_id": 250808}, {"caption": "a helicopter is landing in a snow fall mountain in a dark place", "video_id": "video10408", "sen_id": 250809}, {"caption": "a helicopter landing in the arctic featuring a penguin", "video_id": "video10408", "sen_id": 250810}, {"caption": "a clip of movie playing", "video_id": "video10408", "sen_id": 250811}, {"caption": "a helicopter hovering in the fog at night", "video_id": "video10408", "sen_id": 250812}, {"caption": "a helicopter lands in an intense winter storm and a man begins walking through the storm", "video_id": "video10408", "sen_id": 250813}, {"caption": "the penguin walks through the snow storm toward the helicopter", "video_id": "video10408", "sen_id": 250814}, {"caption": "a penguine is on the snow and it is flying", "video_id": "video10408", "sen_id": 250815}, {"caption": "a penguin is squaking in the middle of a snow storm a helicopter is landing", "video_id": "video10408", "sen_id": 250816}, {"caption": "there is a penguin in the middle of a blizzard", "video_id": "video10408", "sen_id": 250817}, {"caption": "a helicopter lands at a snow filled ice mountain", "video_id": "video10408", "sen_id": 250818}, {"caption": "a black helicopter is landing in the snow", "video_id": "video10408", "sen_id": 250819}, {"caption": "a woman stirring some type of food in a pot", "video_id": "video11983", "sen_id": 250820}, {"caption": "a woman is using a stove to heat up broth in a metal pot", "video_id": "video11983", "sen_id": 250821}, {"caption": "there is a woman making a new dish", "video_id": "video11983", "sen_id": 250822}, {"caption": "boiling part of a cooking recipe is being show", "video_id": "video11983", "sen_id": 250823}, {"caption": "a woman prepares a recipe in a silver pot in her home kitchen", "video_id": "video11983", "sen_id": 250824}, {"caption": "it is a woman in the kitchen talking about how to cook", "video_id": "video11983", "sen_id": 250825}, {"caption": "a woman in the kitchen is stirring her soup", "video_id": "video11983", "sen_id": 250826}, {"caption": "there is a woman making soup in a vessel", "video_id": "video11983", "sen_id": 250827}, {"caption": "a woman is stirring a hot soup while holding the pan with the other hand", "video_id": "video11983", "sen_id": 250828}, {"caption": "women stirring a dish boiling on stove", "video_id": "video11983", "sen_id": 250829}, {"caption": "a lady is stirring a bowl of some food in a silver bowl", "video_id": "video11983", "sen_id": 250830}, {"caption": "someone is stirring a put while cooking a soup or broth", "video_id": "video11983", "sen_id": 250831}, {"caption": "a woman stirring around numerous ingredientsin a pot on the stove", "video_id": "video11983", "sen_id": 250832}, {"caption": "in kitchen person prepared soup its boiling then he stirred using spatula or spoom", "video_id": "video11983", "sen_id": 250833}, {"caption": "a woman cooking mahi in a liquid on a stove", "video_id": "video11983", "sen_id": 250834}, {"caption": "some one in a kitchen preparing soup on the gas", "video_id": "video11983", "sen_id": 250835}, {"caption": "a person is stirring a pot with a spoon", "video_id": "video11983", "sen_id": 250836}, {"caption": "a woman talking about soup in a bowl while stirring it", "video_id": "video11983", "sen_id": 250837}, {"caption": "a man stirs a pot of soup with a metal spoon and a pot holder to steady the pot", "video_id": "video11983", "sen_id": 250838}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11983", "sen_id": 250839}, {"caption": "basketball is dropped from a high place and the man watches as it falls to the water", "video_id": "video12540", "sen_id": 250840}, {"caption": "a man drops a basketball off of a very high water retention dam", "video_id": "video12540", "sen_id": 250841}, {"caption": "a man drops a basketball off a bridge into a very deep ravine", "video_id": "video12540", "sen_id": 250842}, {"caption": "a man dropping a asketball off of a large cliff while he spun it ackwards before dropping", "video_id": "video12540", "sen_id": 250843}, {"caption": "a man drops a basketball off of a damn showing the effect spinning has on the distance it travels as it falls", "video_id": "video12540", "sen_id": 250844}, {"caption": "on top of a hill someone throwing a ball into the river", "video_id": "video12540", "sen_id": 250845}, {"caption": "a man drops a basketball off the top of a dam and into a stream below", "video_id": "video12540", "sen_id": 250846}, {"caption": "a man drops a basketball off the side of a huge dam and watches as it plummets into a lake causing ripples", "video_id": "video12540", "sen_id": 250847}, {"caption": "a man drops a basketball from a certain distance and watched it float further away", "video_id": "video12540", "sen_id": 250848}, {"caption": "vow see the depth of the creek how much time is taken for the fall of ball", "video_id": "video12540", "sen_id": 250849}, {"caption": "there is a man doing a trick with basket ball", "video_id": "video12540", "sen_id": 250850}, {"caption": "a man dropping a basketball off of the top of a very tall dam", "video_id": "video12540", "sen_id": 250851}, {"caption": "a man is throwing ball into the slope", "video_id": "video12540", "sen_id": 250852}, {"caption": "a person black color dress wearing cloth standing from up holding red ball in hand dropping in water from top displaying on screen", "video_id": "video12540", "sen_id": 250853}, {"caption": "a waterfall is crashing down into a river", "video_id": "video12540", "sen_id": 250854}, {"caption": "a man flips a basket ball down a dam to show how it will not fall in a straight line", "video_id": "video12540", "sen_id": 250855}, {"caption": "a man has dropped a basketball into a river from a high place", "video_id": "video12540", "sen_id": 250856}, {"caption": "a man dropping a basketball off of the top of a dam", "video_id": "video12540", "sen_id": 250857}, {"caption": "the creek is deep enough that it takes a ball minutes to reach the water flow", "video_id": "video12540", "sen_id": 250858}, {"caption": "some water and rocks are being filmed in nature", "video_id": "video12540", "sen_id": 250859}, {"caption": "a group of men ski on a snow covered hillside", "video_id": "video12658", "sen_id": 250860}, {"caption": "a skier lands on the slopes and begins skiing", "video_id": "video12658", "sen_id": 250861}, {"caption": "person on skis is wearing a camera on him showing just his skies in front of him while he is on the snow", "video_id": "video12658", "sen_id": 250862}, {"caption": "a person is skiing in a heavily snowed area", "video_id": "video12658", "sen_id": 250863}, {"caption": "a number of people are skiing in a very snowy area", "video_id": "video12658", "sen_id": 250864}, {"caption": "there is a man skating with some friends", "video_id": "video12658", "sen_id": 250865}, {"caption": "a skier works his way down the mountain during a blizzard like snow storm", "video_id": "video12658", "sen_id": 250866}, {"caption": "a few people on skis ride a machine to the top of the mountain", "video_id": "video12658", "sen_id": 250867}, {"caption": "the people are skiing on cold winter day", "video_id": "video12658", "sen_id": 250868}, {"caption": "a skier slowly positions his skis at the top of the lift", "video_id": "video12658", "sen_id": 250869}, {"caption": "a first person view of a person skiing down hill in the snow", "video_id": "video12658", "sen_id": 250870}, {"caption": "guys skiing on snow", "video_id": "video12658", "sen_id": 250871}, {"caption": "a skiier captures the beginning of their descent down the slope from a first-person perspective backed by celtic-themed music", "video_id": "video12658", "sen_id": 250872}, {"caption": "a person in black color dress wearing cloth in snow land skating on snow moving slowly displaying on screen", "video_id": "video12658", "sen_id": 250873}, {"caption": "a person is sliding in the ice covered place using two sticks", "video_id": "video12658", "sen_id": 250874}, {"caption": "a group of atletic men are holding ski poles and is about to take off skiing into the snowy mountains full of snow", "video_id": "video12658", "sen_id": 250875}, {"caption": "its skating on snow where the person try to do skate", "video_id": "video12658", "sen_id": 250876}, {"caption": "a person is trying to ski down a snow slope", "video_id": "video12658", "sen_id": 250877}, {"caption": "a snow land and many person doing skating on snow displaying on screen", "video_id": "video12658", "sen_id": 250878}, {"caption": "guy skying down the icy mountain and teaching how to do it", "video_id": "video12658", "sen_id": 250879}, {"caption": "a person works on putting together a motor using various tools and products", "video_id": "video12950", "sen_id": 250880}, {"caption": "a man holds a caulking gun next to a can of spray paint while standing in a workshop", "video_id": "video12950", "sen_id": 250881}, {"caption": "a man works on a mechanical object of some sort", "video_id": "video12950", "sen_id": 250882}, {"caption": "a man works on the components for an engine he is constructing", "video_id": "video12950", "sen_id": 250883}, {"caption": "a man whose face isn't shown is repairing a mechanical part with parts cleaner set beside it", "video_id": "video12950", "sen_id": 250884}, {"caption": "a man is cleaning the machine with a spry", "video_id": "video12950", "sen_id": 250885}, {"caption": "men build a machine the can be used he spray on it", "video_id": "video12950", "sen_id": 250886}, {"caption": "a man clean a machine and red box is kept open on the table he applies a jel to the machine", "video_id": "video12950", "sen_id": 250887}, {"caption": "a man is showing how to repair an engine part", "video_id": "video12950", "sen_id": 250888}, {"caption": "a guy is working on a project in his room", "video_id": "video12950", "sen_id": 250889}, {"caption": "a man servicing a machine with tools urgently", "video_id": "video12950", "sen_id": 250890}, {"caption": "a man is mending a machine and applying lubricants", "video_id": "video12950", "sen_id": 250891}, {"caption": "a person is working on an engine on a bench with brake cleaner and bearing grease next to him", "video_id": "video12950", "sen_id": 250892}, {"caption": "a man repairing the equipment cleaning with cloth", "video_id": "video12950", "sen_id": 250893}, {"caption": "a person is in a garage cleaning a machine", "video_id": "video12950", "sen_id": 250894}, {"caption": "there is a man repairing his machine inside a room", "video_id": "video12950", "sen_id": 250895}, {"caption": "a man spraying wiping and caulking a large grey object", "video_id": "video12950", "sen_id": 250896}, {"caption": "a mechanic spray paints an engine part silver", "video_id": "video12950", "sen_id": 250897}, {"caption": "a man uses spray aerosol cleaner to polish and fix an engine component", "video_id": "video12950", "sen_id": 250898}, {"caption": "a man doing something on a product in work shop", "video_id": "video12950", "sen_id": 250899}, {"caption": "princess peach and mario are versing bowzer in tennis", "video_id": "video11485", "sen_id": 250900}, {"caption": "a replay of a mario tennis video game", "video_id": "video11485", "sen_id": 250901}, {"caption": "cartoon characters play tennis against one another in a video game", "video_id": "video11485", "sen_id": 250902}, {"caption": "popular video game characters engage in a heated tennis battle", "video_id": "video11485", "sen_id": 250903}, {"caption": "a video game with nintendo characters playing tennis on a tennis court", "video_id": "video11485", "sen_id": 250904}, {"caption": "somebody is playing a super mario video game", "video_id": "video11485", "sen_id": 250905}, {"caption": "famous game characters compete in a match of tennis", "video_id": "video11485", "sen_id": 250906}, {"caption": "video game characters facing off in a game of tennis", "video_id": "video11485", "sen_id": 250907}, {"caption": "mario and the princess play tennis on grass court against large monster", "video_id": "video11485", "sen_id": 250908}, {"caption": "mario and the princess playing tennis and winning", "video_id": "video11485", "sen_id": 250909}, {"caption": "gameplay of mario tennis on the wii", "video_id": "video11485", "sen_id": 250910}, {"caption": "two tennis players on lilac circles oppose a turtle monster with spikes on its back playing with a black racket on a green court", "video_id": "video11485", "sen_id": 250911}, {"caption": "mario and his friends play tennis two on two", "video_id": "video11485", "sen_id": 250912}, {"caption": "a game of mario tennis is being played between mario and bowser", "video_id": "video11485", "sen_id": 250913}, {"caption": "a person is playing a colourful video game very nicely", "video_id": "video11485", "sen_id": 250914}, {"caption": "animated characters are playing tennis on a green colored tennis court", "video_id": "video11485", "sen_id": 250915}, {"caption": "its game where boys hit ball then its hit by another animal", "video_id": "video11485", "sen_id": 250916}, {"caption": "super mario plays tennis on the court with his wife peach", "video_id": "video11485", "sen_id": 250917}, {"caption": "mario and another cartoon character playing tennis with a monster", "video_id": "video11485", "sen_id": 250918}, {"caption": "tennis game is played between the players and animal", "video_id": "video11485", "sen_id": 250919}, {"caption": "a young woman and two young men talk about computer science", "video_id": "video12778", "sen_id": 250920}, {"caption": "compuyor science seems to be getting very popular", "video_id": "video12778", "sen_id": 250921}, {"caption": "promotion for a computer technology college named lsu", "video_id": "video12778", "sen_id": 250922}, {"caption": "a women is looking into a microscope and then checking on monitor", "video_id": "video12778", "sen_id": 250923}, {"caption": "lay with the purple dress shows us how to play with the remoteand a person in yellow shirt talks", "video_id": "video12778", "sen_id": 250924}, {"caption": "a women wearing a t-shirt busy in working in a computer", "video_id": "video12778", "sen_id": 250925}, {"caption": "a woman is speaking about what you can do with computer science", "video_id": "video12778", "sen_id": 250926}, {"caption": "a woman is talking about a computer science", "video_id": "video12778", "sen_id": 250927}, {"caption": "a girl doing a robot and explains about it", "video_id": "video12778", "sen_id": 250928}, {"caption": "a women with boy cut hair is working on computer", "video_id": "video12778", "sen_id": 250929}, {"caption": "a young girl doing some work in computer and explaining some matter", "video_id": "video12778", "sen_id": 250930}, {"caption": "a woman with ping t-shirt and some other men are explaining about something", "video_id": "video12778", "sen_id": 250931}, {"caption": "a woman is talking about a computer science technologies", "video_id": "video12778", "sen_id": 250932}, {"caption": "most interesting thing about modern scince is with the help of new technology every thing can be invented by an imagination", "video_id": "video12778", "sen_id": 250933}, {"caption": "a guy with glasses is talking about something", "video_id": "video12778", "sen_id": 250934}, {"caption": "a violet dressing woman talking from her office", "video_id": "video12778", "sen_id": 250935}, {"caption": "two men and a woman talk about how impressive computer science can be", "video_id": "video12778", "sen_id": 250936}, {"caption": "a woman is talking about a computer tecnology", "video_id": "video12778", "sen_id": 250937}, {"caption": "a lady is working on the laptop then standing and talking", "video_id": "video12778", "sen_id": 250938}, {"caption": "a person is using a controller to move a robot", "video_id": "video12778", "sen_id": 250939}, {"caption": "a man in a blue shirt and black pants is cooking", "video_id": "video11132", "sen_id": 250940}, {"caption": "a man is giving a cooking demonstration on an outdoor grill", "video_id": "video11132", "sen_id": 250941}, {"caption": "a man talks about the food items he is cooking outside", "video_id": "video11132", "sen_id": 250942}, {"caption": "a man is cooking food in a skillet", "video_id": "video11132", "sen_id": 250943}, {"caption": "a man in a blue shirt cooks scallops outside on a skillet", "video_id": "video11132", "sen_id": 250944}, {"caption": "a man is placing cooked food on two plates for serving", "video_id": "video11132", "sen_id": 250945}, {"caption": "there is a shirt man making a simple dish", "video_id": "video11132", "sen_id": 250946}, {"caption": "an old man is placing a cooked dish in the serving plate", "video_id": "video11132", "sen_id": 250947}, {"caption": "a man in a blue shirt is scooping food out of a frying pan and placing it into two dishes", "video_id": "video11132", "sen_id": 250948}, {"caption": "a man in a blue shirt is cooking scallops outside then puts them on two plates", "video_id": "video11132", "sen_id": 250949}, {"caption": "there is a blue shirt man making a dish in the kitchen", "video_id": "video11132", "sen_id": 250950}, {"caption": "a man explain and how is prepare the food", "video_id": "video11132", "sen_id": 250951}, {"caption": "a man is cooking something that looks like either scallops and rice he is preparing it on a dish", "video_id": "video11132", "sen_id": 250952}, {"caption": "a man in a silk blue shirt and black pants is giving cooking lessions on a minature grill", "video_id": "video11132", "sen_id": 250953}, {"caption": "a man in a blue shirt finishes cooking and scoops food onto plates", "video_id": "video11132", "sen_id": 250954}, {"caption": "there is a blue shirt man serving some food", "video_id": "video11132", "sen_id": 250955}, {"caption": "a man in a long sleeved blue shirt is demonstrating how to cook something in a pan", "video_id": "video11132", "sen_id": 250956}, {"caption": "a man in a blue shirt preparing plates of food after cooking", "video_id": "video11132", "sen_id": 250957}, {"caption": "a man in a blue long sleeved shirt scrapes food out of a pan that was cooking on a single burner stove", "video_id": "video11132", "sen_id": 250958}, {"caption": "a woman with glasses is scooping some stuff", "video_id": "video11132", "sen_id": 250959}, {"caption": "multiple pictures of a young girl posing like a model", "video_id": "video11346", "sen_id": 250960}, {"caption": "images of young female models are flashed in a montage", "video_id": "video11346", "sen_id": 250961}, {"caption": "a young girl with very blue eyes poses for a picture in a school uniform", "video_id": "video11346", "sen_id": 250962}, {"caption": "several images of young girls flash across the screen to music", "video_id": "video11346", "sen_id": 250963}, {"caption": " blued eyed young girl posing for professional pictures", "video_id": "video11346", "sen_id": 250964}, {"caption": "its all about child s diferent post for the camera", "video_id": "video11346", "sen_id": 250965}, {"caption": "pictures of a teen girl are shown to a background of music", "video_id": "video11346", "sen_id": 250966}, {"caption": "a girl in white hair is giving pose to camera", "video_id": "video11346", "sen_id": 250967}, {"caption": "a teen blonde with blue eyes and loose hair", "video_id": "video11346", "sen_id": 250968}, {"caption": "a young woman with blonde hair that is long gazes at the camera", "video_id": "video11346", "sen_id": 250969}, {"caption": " pretty girls in still pictures", "video_id": "video11346", "sen_id": 250970}, {"caption": "a young girl in various photos looks at the camera", "video_id": "video11346", "sen_id": 250971}, {"caption": "a yoing girls different pictures are shown as a slide", "video_id": "video11346", "sen_id": 250972}, {"caption": "childhood photographs of a girl child are displayed as a collage", "video_id": "video11346", "sen_id": 250973}, {"caption": "a slideshow of a young girl there are many pictures of the young blonde", "video_id": "video11346", "sen_id": 250974}, {"caption": "a young girl in still photo modelling shots", "video_id": "video11346", "sen_id": 250975}, {"caption": "modeling headshots of various young girls are shown", "video_id": "video11346", "sen_id": 250976}, {"caption": "a little girl actress was shown in different pictures", "video_id": "video11346", "sen_id": 250977}, {"caption": "close up views of the face of pretty young girl", "video_id": "video11346", "sen_id": 250978}, {"caption": "the little girl with her different angles of photos", "video_id": "video11346", "sen_id": 250979}, {"caption": "a clip from vet ranch on youtube taking care of a dog", "video_id": "video10202", "sen_id": 250980}, {"caption": "a brown dog with one of his legs in a yellow cast shakes and trembles at the person who trying to befriend it", "video_id": "video10202", "sen_id": 250981}, {"caption": "a woman is checking on a tiny brown chihuahua in a vet's office he has a broken leg set in a yellow cast and is much more responsive than he was yesterday even gave a tail wag which is a good sign", "video_id": "video10202", "sen_id": 250982}, {"caption": "a little dog is at the vertinary hospital been taken care of", "video_id": "video10202", "sen_id": 250983}, {"caption": "a dog that has been injured recently looks scared and timid", "video_id": "video10202", "sen_id": 250984}, {"caption": "people in a house and one of the people was talking and touch a dog with a broken leg", "video_id": "video10202", "sen_id": 250985}, {"caption": "a little puppy is recovering from a broken leg an update on a puppies progress in healing", "video_id": "video10202", "sen_id": 250986}, {"caption": "a dog sitting on the bed with its injured leg", "video_id": "video10202", "sen_id": 250987}, {"caption": "a puppy is in a kennel with a yellow cast on his leg", "video_id": "video10202", "sen_id": 250988}, {"caption": "the dog sits on the white paper with the injured leg as the man pets him", "video_id": "video10202", "sen_id": 250989}, {"caption": "an update video of how an injured puppy is doing and its progress of improvement", "video_id": "video10202", "sen_id": 250990}, {"caption": "people who care for rescue animals are giving updates on the status of various animals", "video_id": "video10202", "sen_id": 250991}, {"caption": "there is a dog is sitting on the bed with his damaged leg", "video_id": "video10202", "sen_id": 250992}, {"caption": "a lady talking to a hurt dog that has his leg wraped up saying he was responsive and he wasn t before", "video_id": "video10202", "sen_id": 250993}, {"caption": "an injured dog rests and plays with its owner", "video_id": "video10202", "sen_id": 250994}, {"caption": "a small dog huddling in the corner of a cage with a broken leg in a cast gets pet by a veterinarian", "video_id": "video10202", "sen_id": 250995}, {"caption": "a small tan puppy dog has a yellow cast on one of its hind legs", "video_id": "video10202", "sen_id": 250996}, {"caption": "a female veterinarian is describing a skittish chihuahua that has been operated on", "video_id": "video10202", "sen_id": 250997}, {"caption": "women treating small puppy leg fracture and kept on a bed", "video_id": "video10202", "sen_id": 250998}, {"caption": "a person is showing injured dog in the table", "video_id": "video10202", "sen_id": 250999}, {"caption": "people are driving a motorcycle and being filmed as they drive", "video_id": "video11182", "sen_id": 251000}, {"caption": "a helmeted motorcyclist and helmeted passenger ride on a paved road past commercial buildings of a small rural town striped markers a row of signs and wooded areas", "video_id": "video11182", "sen_id": 251001}, {"caption": "a person is riding a motorcycle down a tree lined highway", "video_id": "video11182", "sen_id": 251002}, {"caption": "this is two people in all black riding a motorcycle down the road as a person if filming from the front", "video_id": "video11182", "sen_id": 251003}, {"caption": "a person driving a motorcycle and someone sitting behind him", "video_id": "video11182", "sen_id": 251004}, {"caption": "a black motorcycle rides down a winding stretch of road with two passengers before coming to a stop on the shoulder", "video_id": "video11182", "sen_id": 251005}, {"caption": "a person is riding a motorcycle down a road full of trees", "video_id": "video11182", "sen_id": 251006}, {"caption": "a man is riding a bike very fast in an empty road", "video_id": "video11182", "sen_id": 251007}, {"caption": "there is someone riding bike dangerously through public road", "video_id": "video11182", "sen_id": 251008}, {"caption": "a man riding on a two wheeler cycle fastly", "video_id": "video11182", "sen_id": 251009}, {"caption": "the motorcycle rider drives down the road with another person on the back of the bike", "video_id": "video11182", "sen_id": 251010}, {"caption": "a man is riding a motorcycle through a rural and winding area", "video_id": "video11182", "sen_id": 251011}, {"caption": "two people wearing black outfits and helmets are riding slowly on a motorbike around a curve", "video_id": "video11182", "sen_id": 251012}, {"caption": "a man running on a two wheeler faster and fast", "video_id": "video11182", "sen_id": 251013}, {"caption": "a person wearing helmet is riding a bike along roadway", "video_id": "video11182", "sen_id": 251014}, {"caption": "there is a man in black jacket riding a bike", "video_id": "video11182", "sen_id": 251015}, {"caption": "biker rider is riding bike very fast on road and doing stunts", "video_id": "video11182", "sen_id": 251016}, {"caption": "one man driving bike fastly and its like that jet", "video_id": "video11182", "sen_id": 251017}, {"caption": "a bike moving on road wearing helmet and stop at some distance", "video_id": "video11182", "sen_id": 251018}, {"caption": "a man is riding a motorbike on a street outside", "video_id": "video11182", "sen_id": 251019}, {"caption": "a young indian boy grabs a snake by the tail and beats it on the ground", "video_id": "video11910", "sen_id": 251020}, {"caption": "a woman in pink watches while a man in a white loincloth tries to kill a snake by flailing it against the ground", "video_id": "video11910", "sen_id": 251021}, {"caption": "a person is continually beating a snake against the ground", "video_id": "video11910", "sen_id": 251022}, {"caption": "a man in white shorts is slamming a large snake against the ground and then throws it towards the water", "video_id": "video11910", "sen_id": 251023}, {"caption": "a man pulling a long snake out of a tree and beating it on the ground", "video_id": "video11910", "sen_id": 251024}, {"caption": "a man grabs a snake from the tree and tries to kill it by hitting it on the ground", "video_id": "video11910", "sen_id": 251025}, {"caption": "a man is swinging something maybe a snake repeatedly against the ground", "video_id": "video11910", "sen_id": 251026}, {"caption": "a man is killing a snake by catching it and hitting it on ground", "video_id": "video11910", "sen_id": 251027}, {"caption": "the boy bangs the snake on the ground as the people watches", "video_id": "video11910", "sen_id": 251028}, {"caption": "one man hit a big snake in a land and it dies", "video_id": "video11910", "sen_id": 251029}, {"caption": "a man pulls a snake out of a tree and repeatedly slams it onto the ground", "video_id": "video11910", "sen_id": 251030}, {"caption": "a man is swinging a snake to kill it", "video_id": "video11910", "sen_id": 251031}, {"caption": "there is a man hitting snake on the ground", "video_id": "video11910", "sen_id": 251032}, {"caption": "one village man is ready to kil the snake on the river side and the lady is watching", "video_id": "video11910", "sen_id": 251033}, {"caption": "a man pick a snake in his hand and beat it on the ground", "video_id": "video11910", "sen_id": 251034}, {"caption": "a man hitting long snake on ground with white cloth and pink coloured woman", "video_id": "video11910", "sen_id": 251035}, {"caption": "there is a man smashing a snake on the ground", "video_id": "video11910", "sen_id": 251036}, {"caption": "a man dragging a snake from a tree and banging it against the ground in order to kill it the shot is is repeatedly shown in slow motion", "video_id": "video11910", "sen_id": 251037}, {"caption": "a man in dhoti catch a snake and beat it hardly on the ground the snake died", "video_id": "video11910", "sen_id": 251038}, {"caption": "the village boy bravely holds a big snake in his hand and killed it by beating it on the ground", "video_id": "video11910", "sen_id": 251039}, {"caption": "two women walk down a runway and one of them falls", "video_id": "video12300", "sen_id": 251040}, {"caption": "models on walk way working one trips and falls", "video_id": "video12300", "sen_id": 251041}, {"caption": "female models are walking on ramp to show product", "video_id": "video12300", "sen_id": 251042}, {"caption": "a runway model at a fashion show slips and falls while she is heading back stage", "video_id": "video12300", "sen_id": 251043}, {"caption": "performance on selling gardening dress materials in progress a model frequently falls on the ramp giving funny show", "video_id": "video12300", "sen_id": 251044}, {"caption": "a women struggles walking ramp in a fashion show", "video_id": "video12300", "sen_id": 251045}, {"caption": "some womens are doing cat walk in front of big crowd", "video_id": "video12300", "sen_id": 251046}, {"caption": "a woman walking the runway slips and falls down", "video_id": "video12300", "sen_id": 251047}, {"caption": "two women are walking on a fashion runway and one of them falls twice", "video_id": "video12300", "sen_id": 251048}, {"caption": "the woman with the watering can walks on the runway and falls", "video_id": "video12300", "sen_id": 251049}, {"caption": "there is a model falling down while ramp walk", "video_id": "video12300", "sen_id": 251050}, {"caption": "women are going for fashion show", "video_id": "video12300", "sen_id": 251051}, {"caption": "the modles walk very quickly on the run way", "video_id": "video12300", "sen_id": 251052}, {"caption": "a model in a pink dress falls on the floor twice while walking on the runway", "video_id": "video12300", "sen_id": 251053}, {"caption": "a woman is walking around doing some thing", "video_id": "video12300", "sen_id": 251054}, {"caption": "it was a fashion show where one of the lady falls frequently by holding a water can she was unable to walk because of her heels", "video_id": "video12300", "sen_id": 251055}, {"caption": "the model with the pink bottom carrying a kettle trips over and misses her balance", "video_id": "video12300", "sen_id": 251056}, {"caption": " walking on a runway while holding a metal watering can in a pink and white dress loses her balance and falls twice", "video_id": "video12300", "sen_id": 251057}, {"caption": "a fashion model walking on stage and audience walking", "video_id": "video12300", "sen_id": 251058}, {"caption": "some models are walking on a cat walk", "video_id": "video12300", "sen_id": 251059}, {"caption": "a soldier runs under an arched entryway while shooting an enemy and continues attacking with his firearm in different rooms of the house which is made more difficult with barred windows", "video_id": "video12410", "sen_id": 251060}, {"caption": "a character in a first person shooter video game runs through a building shooting a gun", "video_id": "video12410", "sen_id": 251061}, {"caption": "a cartoon man with a gun walking through a building and shooting other men", "video_id": "video12410", "sen_id": 251062}, {"caption": "a person demonstrates a video game that they are playing", "video_id": "video12410", "sen_id": 251063}, {"caption": "a man is walking around a house and shooting people with a gun", "video_id": "video12410", "sen_id": 251064}, {"caption": "a man in black dress holding a gun shooting to other person", "video_id": "video12410", "sen_id": 251065}, {"caption": "a man running and shooting one by one", "video_id": "video12410", "sen_id": 251066}, {"caption": "video game shooting fire game is play by man makes it", "video_id": "video12410", "sen_id": 251067}, {"caption": "someone is playing a multiplayer round of the video game red dead redemption", "video_id": "video12410", "sen_id": 251068}, {"caption": "action game with a lot of shooting and action scenes in a house", "video_id": "video12410", "sen_id": 251069}, {"caption": "there is a man fighting with a gun", "video_id": "video12410", "sen_id": 251070}, {"caption": "a small clip of an animated video game that involves a man entering a building and shooting the men inside", "video_id": "video12410", "sen_id": 251071}, {"caption": "an animated man going to the rooms in house and shooting", "video_id": "video12410", "sen_id": 251072}, {"caption": "a clip of a third person shooter video game", "video_id": "video12410", "sen_id": 251073}, {"caption": "the animated characters are moving with guns and shooting at them", "video_id": "video12410", "sen_id": 251074}, {"caption": "there is a man in black shooting against enemies", "video_id": "video12410", "sen_id": 251075}, {"caption": "somebody is playing this video game called red dead in this the game a guy with the gun is shooting his enemies", "video_id": "video12410", "sen_id": 251076}, {"caption": "a action video game that is grand theft auto and has a lot of violence", "video_id": "video12410", "sen_id": 251077}, {"caption": "in a game the soldier were shooting other man", "video_id": "video12410", "sen_id": 251078}, {"caption": "someone is playing a video game set in the old west", "video_id": "video12410", "sen_id": 251079}, {"caption": "a surfer in an orange shirt rides a wave and leaps into the air then catches a solid landing back on the water", "video_id": "video12857", "sen_id": 251080}, {"caption": "a man does a trick in the ocean using a surfboard and a wave", "video_id": "video12857", "sen_id": 251081}, {"caption": "there is a red tshirt man surfing on the waves", "video_id": "video12857", "sen_id": 251082}, {"caption": "a surfer in an orange shirt catches a gnarly wave in slow motion", "video_id": "video12857", "sen_id": 251083}, {"caption": "a male surfer gets big air in a surf competition even with a bad ankle", "video_id": "video12857", "sen_id": 251084}, {"caption": "a man is surfing in the water flying high doing some tricks", "video_id": "video12857", "sen_id": 251085}, {"caption": "a man in orange t-shirt is enjoying surfing in water alone", "video_id": "video12857", "sen_id": 251086}, {"caption": "the man does a trick on trick on the surf board", "video_id": "video12857", "sen_id": 251087}, {"caption": "a guy in orange dress surf on the waves and jumped over it", "video_id": "video12857", "sen_id": 251088}, {"caption": "a person surfing on a sea enjoying more entertainment of this game", "video_id": "video12857", "sen_id": 251089}, {"caption": "a young man in t-shirt enjoy surfing in the water", "video_id": "video12857", "sen_id": 251090}, {"caption": "a man is surfing while to commentators speak about his actions", "video_id": "video12857", "sen_id": 251091}, {"caption": "a person in orange tshirt surfing in the waves of the beach", "video_id": "video12857", "sen_id": 251092}, {"caption": "a surfer rides through some large waves in the ocean", "video_id": "video12857", "sen_id": 251093}, {"caption": "a person with red t-shirt is surfing", "video_id": "video12857", "sen_id": 251094}, {"caption": "there is a orange tshirt man surfing on the waves", "video_id": "video12857", "sen_id": 251095}, {"caption": "men are commentating while a man is surfing on a large wave", "video_id": "video12857", "sen_id": 251096}, {"caption": "a man is surfing on a large wave and catches big air", "video_id": "video12857", "sen_id": 251097}, {"caption": "a man in a red shirt surfing a huge wave", "video_id": "video12857", "sen_id": 251098}, {"caption": "a surfer gets big air when ramping off of a wave", "video_id": "video12857", "sen_id": 251099}, {"caption": "an animation about photography that includes both male and females participants", "video_id": "video10372", "sen_id": 251100}, {"caption": "two young men are shown talking to each other inbetween library shelves", "video_id": "video10372", "sen_id": 251101}, {"caption": "music plays while showing clips of happy people in an academic setting of books and computers", "video_id": "video10372", "sen_id": 251102}, {"caption": "two persons in a relationship", "video_id": "video10372", "sen_id": 251103}, {"caption": "a camera graphic that first shows two men in a library then in bed then a female hugs one of the men who comes through her door", "video_id": "video10372", "sen_id": 251104}, {"caption": "two men in the library then various other scenes within their life including flashes of social media screens", "video_id": "video10372", "sen_id": 251105}, {"caption": "guys talking in a library and then talking in bed a woman sits in bed with a laptop", "video_id": "video10372", "sen_id": 251106}, {"caption": "a man in yellow t-shirt is talking with another person in lines t-shirt", "video_id": "video10372", "sen_id": 251107}, {"caption": "two men s speaking between the rack and women singing the song and wore black tops", "video_id": "video10372", "sen_id": 251108}, {"caption": "a yellow dress boy inside library holding book girl doing laptop meeting boy each other displaying on screen", "video_id": "video10372", "sen_id": 251109}, {"caption": "a person taking a book from a shelf 2person tanding in a library one person in yellow t shirt another pserson yellow and blue color strips t shirt", "video_id": "video10372", "sen_id": 251110}, {"caption": "some people in a library are talking", "video_id": "video10372", "sen_id": 251111}, {"caption": "a song by adele plays in the background while different people are shown embracing", "video_id": "video10372", "sen_id": 251112}, {"caption": "two boys speak to each other in a library and in bed then a woman hugs a man", "video_id": "video10372", "sen_id": 251113}, {"caption": "a yellow t shirt boy standing with other boy book in hand camera still image girl and boy meeting each other displaying on screen", "video_id": "video10372", "sen_id": 251114}, {"caption": "couple of guys talking inside the library", "video_id": "video10372", "sen_id": 251115}, {"caption": "some people in a school library are talking", "video_id": "video10372", "sen_id": 251116}, {"caption": "a video regarding love between a man in a woman", "video_id": "video10372", "sen_id": 251117}, {"caption": "scenes of different people and couples while an adele song plays", "video_id": "video10372", "sen_id": 251118}, {"caption": "two male college students meet in a library and begin dating", "video_id": "video10372", "sen_id": 251119}, {"caption": "a pig is standing in a field and then turns around", "video_id": "video10509", "sen_id": 251120}, {"caption": "a silly looking vidio game and someone talking", "video_id": "video10509", "sen_id": 251121}, {"caption": "narration on the works of a computer game", "video_id": "video10509", "sen_id": 251122}, {"caption": "a geometric frog cow and pig are on the lawn between the edge of a deeply angled stone-and concrete depression and a blue river beyond the hedges", "video_id": "video10509", "sen_id": 251123}, {"caption": "a man is explaining what he built on the game mine craft", "video_id": "video10509", "sen_id": 251124}, {"caption": "a video of a man with an english accent talking about minecraft while playing minecraft", "video_id": "video10509", "sen_id": 251125}, {"caption": "a man is narrating a video of himself play a game of minecraft", "video_id": "video10509", "sen_id": 251126}, {"caption": "a minecraft player is confused by a cow and then talks to a pig playfully", "video_id": "video10509", "sen_id": 251127}, {"caption": "a man with a british accent shows various animals created in the minecraft video game", "video_id": "video10509", "sen_id": 251128}, {"caption": "a man walks through a video game involving different animals", "video_id": "video10509", "sen_id": 251129}, {"caption": "there is a man walking with a weapon", "video_id": "video10509", "sen_id": 251130}, {"caption": "some animated character moving forward", "video_id": "video10509", "sen_id": 251131}, {"caption": "a main with a british accent navigating through a video game with a character terrance who resembles a pig", "video_id": "video10509", "sen_id": 251132}, {"caption": "guy playing a video game and talking", "video_id": "video10509", "sen_id": 251133}, {"caption": "a man narrating his game of minecraft and talking to his minecraft pig", "video_id": "video10509", "sen_id": 251134}, {"caption": "a screen with characters that is moving around", "video_id": "video10509", "sen_id": 251135}, {"caption": "a person playing minecraft while offering commentary that aims to be informative an light-hearted at the same time", "video_id": "video10509", "sen_id": 251136}, {"caption": "a man with a accent talking about a video game character", "video_id": "video10509", "sen_id": 251137}, {"caption": "a guy playing minecraft and having fun with the game-animals", "video_id": "video10509", "sen_id": 251138}, {"caption": "some minecraft characters are talking to each other", "video_id": "video10509", "sen_id": 251139}, {"caption": "a cook uses a wooden spoon to brown sizzling pieces of flat meat in a silver pan coated with oil placed on top of a stove", "video_id": "video10888", "sen_id": 251140}, {"caption": "meat is being cooked in a pot while being stirred with a wooden spoon", "video_id": "video10888", "sen_id": 251141}, {"caption": "food is being cooked on the stove in a small pot", "video_id": "video10888", "sen_id": 251142}, {"caption": "large cuts of meat stewing in a small metal pot on the stove", "video_id": "video10888", "sen_id": 251143}, {"caption": "some grayish lumps of mystery meat are frying in a pan there is no talking only the occasional stir with a wooden spoon as though the person in charge of this project is ashamed of it", "video_id": "video10888", "sen_id": 251144}, {"caption": "a person stirs meat in a hot pot with a wooden spoon", "video_id": "video10888", "sen_id": 251145}, {"caption": "someone mixing and cooking a dish in a pan on the stove", "video_id": "video10888", "sen_id": 251146}, {"caption": "a person is cooking a substance inside of a silver pot", "video_id": "video10888", "sen_id": 251147}, {"caption": "someone is cooking meat in a pot on a stove and mixing it with a wooden spoon", "video_id": "video10888", "sen_id": 251148}, {"caption": "person cooking meat in a pot on a burner", "video_id": "video10888", "sen_id": 251149}, {"caption": "some type of meat is being cooked in a pan on a stove", "video_id": "video10888", "sen_id": 251150}, {"caption": "the food in the pain is being cooked", "video_id": "video10888", "sen_id": 251151}, {"caption": "a person is using a wooden spoon to move sizzling pieces of glistening meat cooking in oil inside a silver pot", "video_id": "video10888", "sen_id": 251152}, {"caption": "in a kitchen a alumminum pan is shown to have some kind of meat being cooking in it", "video_id": "video10888", "sen_id": 251153}, {"caption": "meat in a pot on a burner cooking someone occasionally stirs it with a wooden spoon", "video_id": "video10888", "sen_id": 251154}, {"caption": "there is someone making a meet dish with a pan", "video_id": "video10888", "sen_id": 251155}, {"caption": "a part parsing cooking aviation in a frying pan and using a wooden spoon to stir it around", "video_id": "video10888", "sen_id": 251156}, {"caption": "a pot of meat is being simmered in a pot and stirred with a wooden spoon", "video_id": "video10888", "sen_id": 251157}, {"caption": "meat being cooked in a stainless steal pot on the stove", "video_id": "video10888", "sen_id": 251158}, {"caption": "food being cooked and stirred over heat on a stove", "video_id": "video10888", "sen_id": 251159}, {"caption": "a person in a laboratory people in a classroom a man looking at a building people standing outside", "video_id": "video12570", "sen_id": 251160}, {"caption": "a man is talking while a buisness commercial plays in the background", "video_id": "video12570", "sen_id": 251161}, {"caption": "a technology video set in a asian country", "video_id": "video12570", "sen_id": 251162}, {"caption": "a man is working on computer and another man is teaching something", "video_id": "video12570", "sen_id": 251163}, {"caption": "there is a man standing in front of a building", "video_id": "video12570", "sen_id": 251164}, {"caption": "an advertisement of qrt semiconductor with clippings", "video_id": "video12570", "sen_id": 251165}, {"caption": "the programm editors and the project conductors are meet", "video_id": "video12570", "sen_id": 251166}, {"caption": "a man looks through a microscope a group of people stand around holding brief cases", "video_id": "video12570", "sen_id": 251167}, {"caption": "a young man working in the office with computer", "video_id": "video12570", "sen_id": 251168}, {"caption": "there is a man working on a computer", "video_id": "video12570", "sen_id": 251169}, {"caption": "the performance of qrt semiconductor is being shown", "video_id": "video12570", "sen_id": 251170}, {"caption": "a variuos pictures are displaying in the screen", "video_id": "video12570", "sen_id": 251171}, {"caption": "men stare at computer monitors and people ready themselves for business involving semiconductors", "video_id": "video12570", "sen_id": 251172}, {"caption": "the people are busy in their routine work", "video_id": "video12570", "sen_id": 251173}, {"caption": "there are different setting shown on the screen", "video_id": "video12570", "sen_id": 251174}, {"caption": "an asian advertisement for grt semiconductor", "video_id": "video12570", "sen_id": 251175}, {"caption": "advertise about the company being shown on the screeen", "video_id": "video12570", "sen_id": 251176}, {"caption": "qrt semi conductor in the lab one man see that logo", "video_id": "video12570", "sen_id": 251177}, {"caption": "men in lab coats work on a set of machines doing experiments", "video_id": "video12570", "sen_id": 251178}, {"caption": "a man is looking at text in a city", "video_id": "video12570", "sen_id": 251179}, {"caption": "the name of a dish is shown and then the dish is shown", "video_id": "video11075", "sen_id": 251180}, {"caption": "ingredients for various forms of italian dishes are highlighted for a recipe", "video_id": "video11075", "sen_id": 251181}, {"caption": "assortment of noodles and vegetables that go into a specific meal combination", "video_id": "video11075", "sen_id": 251182}, {"caption": "a groupo of text and pictures of food going in and out of the view", "video_id": "video11075", "sen_id": 251183}, {"caption": "a video montage of various dishes listed by number", "video_id": "video11075", "sen_id": 251184}, {"caption": "best items like parma ham fettucini alfredo and maple syrup find their places in top 50 tasty list", "video_id": "video11075", "sen_id": 251185}, {"caption": "rotating still photos of two italian and one canadian dish labeld by name and descending order", "video_id": "video11075", "sen_id": 251186}, {"caption": "its a picture of parma ham next is the picture of alfredo its in yellow color and it looks like noodles", "video_id": "video11075", "sen_id": 251187}, {"caption": "a video about different foods of italy and canada", "video_id": "video11075", "sen_id": 251188}, {"caption": "a slideshow of a list of famous dishes and the country that they are from foloowed by the picture of the plate", "video_id": "video11075", "sen_id": 251189}, {"caption": "a top 50 best foods thats been rated around the world", "video_id": "video11075", "sen_id": 251190}, {"caption": "various food products are posed for pictures in a countdown of popular products", "video_id": "video11075", "sen_id": 251191}, {"caption": "photos of varying italian dishes set to whimsical music", "video_id": "video11075", "sen_id": 251192}, {"caption": "the presentation is the beginning of preparation of maple syrup in canada", "video_id": "video11075", "sen_id": 251193}, {"caption": "some food on a table is being shown", "video_id": "video11075", "sen_id": 251194}, {"caption": "pictures of ham appear prior to pictures of pasta appearing", "video_id": "video11075", "sen_id": 251195}, {"caption": "a video about the foods italy foods all looks delicious", "video_id": "video11075", "sen_id": 251196}, {"caption": "a cooked pig on a table a plate of ham on table a bowl of noodles on a table", "video_id": "video11075", "sen_id": 251197}, {"caption": "ham is deliciously cooked and eaten with different items including potato chips", "video_id": "video11075", "sen_id": 251198}, {"caption": "some food on a table is being shown to someone", "video_id": "video11075", "sen_id": 251199}, {"caption": "two males driving down the road and passes another car", "video_id": "video11914", "sen_id": 251200}, {"caption": "two young men on a dune buggy drive along a street in a tropical area", "video_id": "video11914", "sen_id": 251201}, {"caption": "man wearing purple films while driving a dune buggy with another man as a passenger who is wearing red", "video_id": "video11914", "sen_id": 251202}, {"caption": "two men are riding in a fast vehicle one of them is telling us something but everything except the word dangerous is unintelligible", "video_id": "video11914", "sen_id": 251203}, {"caption": "a man is speaking to the camera while driving", "video_id": "video11914", "sen_id": 251204}, {"caption": "two mean are driving a dune buggy on a main road", "video_id": "video11914", "sen_id": 251205}, {"caption": "there is a cooling glass man with friends riding a car", "video_id": "video11914", "sen_id": 251206}, {"caption": "two mans in car and driving very fast", "video_id": "video11914", "sen_id": 251207}, {"caption": "two young asian men drive an atv along a main road in the jungle", "video_id": "video11914", "sen_id": 251208}, {"caption": "a picnic ride in progress through a narrow street the man wearing sun glass is in a jolly mood", "video_id": "video11914", "sen_id": 251209}, {"caption": "a man in purple shirt is moving in jeep with cooling glass", "video_id": "video11914", "sen_id": 251210}, {"caption": "a men is driving car very fast and while driving he is talking", "video_id": "video11914", "sen_id": 251211}, {"caption": "the man films himself and his friend while he drives the buggy", "video_id": "video11914", "sen_id": 251212}, {"caption": "a guy in glasses and a purple shirt drives a go kart through the streets", "video_id": "video11914", "sen_id": 251213}, {"caption": "bunch of guys driving off road and on road with self camera", "video_id": "video11914", "sen_id": 251214}, {"caption": "a person driving and talking on road", "video_id": "video11914", "sen_id": 251215}, {"caption": "a man with sunglasses drives a car on the main road in a rural setting", "video_id": "video11914", "sen_id": 251216}, {"caption": "a two men are travelling in the auto rickshaw", "video_id": "video11914", "sen_id": 251217}, {"caption": "a boy in car wearing glass driving on road fast beside a car moving displaying on screen", "video_id": "video11914", "sen_id": 251218}, {"caption": "couple of guys in tshirt driving down the street talking to camera", "video_id": "video11914", "sen_id": 251219}, {"caption": "the woman gives instructions on mixing vegetables with the rice for the recipe", "video_id": "video11635", "sen_id": 251220}, {"caption": "a woman talks about the steps to take in cooking her recipe", "video_id": "video11635", "sen_id": 251221}, {"caption": "some one in a kitchen added sliced vegetables in a pan and rice in another pan", "video_id": "video11635", "sen_id": 251222}, {"caption": "a picture of two pans of cooked rice and cooked vegetables", "video_id": "video11635", "sen_id": 251223}, {"caption": "a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11635", "sen_id": 251224}, {"caption": "in the kitchen a woman making a dish with rise and vegetables", "video_id": "video11635", "sen_id": 251225}, {"caption": "a woman giving cooking instructions on how to make a recipe", "video_id": "video11635", "sen_id": 251226}, {"caption": "a female chef works on a recipe of vegetables and yellow rice", "video_id": "video11635", "sen_id": 251227}, {"caption": "a woman describing a recipe where you put cooked rice and vegetables together", "video_id": "video11635", "sen_id": 251228}, {"caption": "cooking vegetable fried rice in progress", "video_id": "video11635", "sen_id": 251229}, {"caption": "a woman preparing to mix vegetables from a pan with rice in a red pot", "video_id": "video11635", "sen_id": 251230}, {"caption": "a woman is explaining how to mix different cooked food items to teach people", "video_id": "video11635", "sen_id": 251231}, {"caption": "a chef with a wooden spoon is pointing out a pot of rice and another filled with mixed vegetables", "video_id": "video11635", "sen_id": 251232}, {"caption": "a woman has a pot of rice and a pan of vegetables that she talks about mixing together", "video_id": "video11635", "sen_id": 251233}, {"caption": "a woman explaining how to cook in pan in the kitchen room", "video_id": "video11635", "sen_id": 251234}, {"caption": "a woman is giving cooling instructions to combine the rice and vegetables which are shown on a table in separate pots", "video_id": "video11635", "sen_id": 251235}, {"caption": "a lady with a wooden spoon describes mixing rice and vegitables", "video_id": "video11635", "sen_id": 251236}, {"caption": "a lady shows cooked vegetables and rice which are to be mixed in another pot to prepare the dish", "video_id": "video11635", "sen_id": 251237}, {"caption": "there is a pot of rice and a pot of vegetables that a person is pointing to with a wooden spoon", "video_id": "video11635", "sen_id": 251238}, {"caption": "someone is making food inside of a pot", "video_id": "video11635", "sen_id": 251239}, {"caption": "a hammer is hitting a nail in a wooden block", "video_id": "video12487", "sen_id": 251240}, {"caption": "a person hammers a nail into a wooden pole and a bunch of molten hot metal rods are spun out from each other", "video_id": "video12487", "sen_id": 251241}, {"caption": "a hammer is hitting a nail in a wooden block", "video_id": "video12487", "sen_id": 251242}, {"caption": "a hammer is hitting a nail in a wooden block discussion of how metals can bend without breaking", "video_id": "video12487", "sen_id": 251243}, {"caption": "a man drives a nail into the end grain of a small post", "video_id": "video12487", "sen_id": 251244}, {"caption": "a man is talking about electrons and maliability", "video_id": "video12487", "sen_id": 251245}, {"caption": "a man i talking about electrons and metals with atomic bonds malleability", "video_id": "video12487", "sen_id": 251246}, {"caption": "a hammer is hitting a nail in a wooden block", "video_id": "video12487", "sen_id": 251247}, {"caption": "some one doing some work on a wooden piece", "video_id": "video12487", "sen_id": 251248}, {"caption": "an explanation of the property of electrons and one example being mentioned was malleability", "video_id": "video12487", "sen_id": 251249}, {"caption": "a man hits a hammer on a nail to demonstrate bending electrons", "video_id": "video12487", "sen_id": 251250}, {"caption": "a nail be hammered into wood while the mailability of metals is talked about ending with red hot metal being twisted", "video_id": "video12487", "sen_id": 251251}, {"caption": "the man doing his routine work in front of the camera", "video_id": "video12487", "sen_id": 251252}, {"caption": "a hammer rises and falls striking a nail that is piercing into a slab of wood", "video_id": "video12487", "sen_id": 251253}, {"caption": "guy nailing nail into wood and molding it", "video_id": "video12487", "sen_id": 251254}, {"caption": "a guy speaking about the metal ability not to break", "video_id": "video12487", "sen_id": 251255}, {"caption": "a man talks about a video about intricate metal working", "video_id": "video12487", "sen_id": 251256}, {"caption": "a man discussing the property of malleability in metals with some instances of metal being stressed", "video_id": "video12487", "sen_id": 251257}, {"caption": "a person hammers a nail in a wood and a machine shapes an iron", "video_id": "video12487", "sen_id": 251258}, {"caption": "a man talking about malleability the ability of metals to be bent without breaking", "video_id": "video12487", "sen_id": 251259}, {"caption": "a man with no shirt running down a road", "video_id": "video10757", "sen_id": 251260}, {"caption": "a man is running down a road towards the camera while the cameraman counts down his time", "video_id": "video10757", "sen_id": 251261}, {"caption": "a figure is appearing in the long distance starting as a dot a running figure and finally a running guy into the finish line where anther guy is doing the timer", "video_id": "video10757", "sen_id": 251262}, {"caption": "a man running down a road towards the camera", "video_id": "video10757", "sen_id": 251263}, {"caption": "a runner is shown in the far distance next to some trees", "video_id": "video10757", "sen_id": 251264}, {"caption": "a person jogs quickly along an adandoned country road", "video_id": "video10757", "sen_id": 251265}, {"caption": "a person in shorts goes for jogging quite fast in an empty road", "video_id": "video10757", "sen_id": 251266}, {"caption": "a men is wearing a suit and telling a sports news on bbc news", "video_id": "video10757", "sen_id": 251267}, {"caption": "in the forest are road ways one of man runs the side", "video_id": "video10757", "sen_id": 251268}, {"caption": "a muscled man is running on a the road with green field with the both side of the road", "video_id": "video10757", "sen_id": 251269}, {"caption": "a guy is running outside on a road", "video_id": "video10757", "sen_id": 251270}, {"caption": "a person runs on a rural forested road on a sunny day", "video_id": "video10757", "sen_id": 251271}, {"caption": "a man is running very fast on the road", "video_id": "video10757", "sen_id": 251272}, {"caption": "in the forest area a person in gray trouser with shoe running in the road side", "video_id": "video10757", "sen_id": 251273}, {"caption": "someone is running on a road outside", "video_id": "video10757", "sen_id": 251274}, {"caption": "there is a man running through the road", "video_id": "video10757", "sen_id": 251275}, {"caption": "in a forest road many trees are surrounded and one man running", "video_id": "video10757", "sen_id": 251276}, {"caption": "road near the grass many people are playing the side a person come running", "video_id": "video10757", "sen_id": 251277}, {"caption": "a man running a marathon race and reaching the finishing line", "video_id": "video10757", "sen_id": 251278}, {"caption": "the exterior of a place is being recorded outside", "video_id": "video10757", "sen_id": 251279}, {"caption": "a man driving stick in a car and shifting gears", "video_id": "video12567", "sen_id": 251280}, {"caption": "a person is teaching how to ride a car", "video_id": "video12567", "sen_id": 251281}, {"caption": "a person with black dressing put gear one by one in car while is driving", "video_id": "video12567", "sen_id": 251282}, {"caption": "a man is driving a car and explain about it", "video_id": "video12567", "sen_id": 251283}, {"caption": "man in the driver seat of a car shifting gears with hand on steering wheel", "video_id": "video12567", "sen_id": 251284}, {"caption": "a young man is driving a car putting it in the various gears as he drives", "video_id": "video12567", "sen_id": 251285}, {"caption": "there is a man in black dressing driving a car", "video_id": "video12567", "sen_id": 251286}, {"caption": "a man has shifted gears and is driving faster down the road in the car", "video_id": "video12567", "sen_id": 251287}, {"caption": "a man is sitting in the car and explain about a car", "video_id": "video12567", "sen_id": 251288}, {"caption": "a mans shifts pedals through gears sitting in car driving down the road", "video_id": "video12567", "sen_id": 251289}, {"caption": "someone demonstrating gear shifting in a car by doing it and counting the timing out loud", "video_id": "video12567", "sen_id": 251290}, {"caption": "there is a man starting her bike with first gear", "video_id": "video12567", "sen_id": 251291}, {"caption": "a man is driving a car and explaining what gears he is shifting", "video_id": "video12567", "sen_id": 251292}, {"caption": "a man is driving a car going from first to second gear repeatedly", "video_id": "video12567", "sen_id": 251293}, {"caption": "man is in his car and testing its functions", "video_id": "video12567", "sen_id": 251294}, {"caption": "a caucasian male is teaching narrating his actions of changing gears in a car", "video_id": "video12567", "sen_id": 251295}, {"caption": "a man wearing all black clothes is driving a stick shift vehicle down the road", "video_id": "video12567", "sen_id": 251296}, {"caption": "man in training gear explai ing how to shift gears in the vehicle as he is driving the vehicle", "video_id": "video12567", "sen_id": 251297}, {"caption": "person is driving car he change the gearhe drives slow", "video_id": "video12567", "sen_id": 251298}, {"caption": "person is sitting in his car and driving it carefully", "video_id": "video12567", "sen_id": 251299}, {"caption": "early history about american revolution colonization republicanism", "video_id": "video10919", "sen_id": 251300}, {"caption": "john green talking about the seven years war in the colonies", "video_id": "video10919", "sen_id": 251301}, {"caption": "a man with bad hair lectures about an event in american history", "video_id": "video10919", "sen_id": 251302}, {"caption": "a man talking about the end of the seven years war", "video_id": "video10919", "sen_id": 251303}, {"caption": "learning about history does not have to stop your summer fun come learn with us", "video_id": "video10919", "sen_id": 251304}, {"caption": "republicanism which in the colonies meant that only property owning citizens had virtue began at the end of the 7 years war", "video_id": "video10919", "sen_id": 251305}, {"caption": "a man in blue t-shirt is excitedly saying something", "video_id": "video10919", "sen_id": 251306}, {"caption": "a handsome young man in blue tshirt with globe and laptop is talking", "video_id": "video10919", "sen_id": 251307}, {"caption": "a man is talking about a government of a british", "video_id": "video10919", "sen_id": 251308}, {"caption": "the young man in blue dress explains about something very elaborately", "video_id": "video10919", "sen_id": 251309}, {"caption": "a guy with glasses is talking about something", "video_id": "video10919", "sen_id": 251310}, {"caption": "a person speaking on show", "video_id": "video10919", "sen_id": 251311}, {"caption": "the blue tshirt wearing men giving a class us to the medival period", "video_id": "video10919", "sen_id": 251312}, {"caption": "a man gives a lecture on the seven years war", "video_id": "video10919", "sen_id": 251313}, {"caption": "a guy explains early political thought with a globe and a chalkboard", "video_id": "video10919", "sen_id": 251314}, {"caption": "a man with glasses is speaking about something", "video_id": "video10919", "sen_id": 251315}, {"caption": "a man in blue t-shirt talking from a studio", "video_id": "video10919", "sen_id": 251316}, {"caption": "a man in a blue shirt sitting next to a globe is talking", "video_id": "video10919", "sen_id": 251317}, {"caption": "a blue dress wearing man wearing glass speaking sitting on chair beside globe", "video_id": "video10919", "sen_id": 251318}, {"caption": "a man in a blue shirt and glasses talks about republicanism", "video_id": "video10919", "sen_id": 251319}, {"caption": "a man in a hat and suit jacket dances alongside a bus as passengers board it", "video_id": "video12108", "sen_id": 251320}, {"caption": "a man in a suit dancing on the street", "video_id": "video12108", "sen_id": 251321}, {"caption": "man coming out of a bus dances while three children board the bus and then it leaves", "video_id": "video12108", "sen_id": 251322}, {"caption": "a man wearing a hat and dancing by a bus", "video_id": "video12108", "sen_id": 251323}, {"caption": "a man is singing a upbeat song about buses", "video_id": "video12108", "sen_id": 251324}, {"caption": "there is a cap man dancing on the ground", "video_id": "video12108", "sen_id": 251325}, {"caption": "a man in a hat and suit jacket dances next to a bus as kids enter the bus", "video_id": "video12108", "sen_id": 251326}, {"caption": "a man get out from vehicle and singing a song", "video_id": "video12108", "sen_id": 251327}, {"caption": "a guy dances like michael jackson by his old car", "video_id": "video12108", "sen_id": 251328}, {"caption": "a man in a hat sings and dances in the city", "video_id": "video12108", "sen_id": 251329}, {"caption": "there is a little girl watching a dance on the street", "video_id": "video12108", "sen_id": 251330}, {"caption": "a man in a gray suit and hat jumps off sings and dances by the side of a silver bus while children board", "video_id": "video12108", "sen_id": 251331}, {"caption": "a man in a leisure suit dances while singing a song about the double dutch bus in a 70 s disco video", "video_id": "video12108", "sen_id": 251332}, {"caption": "a man in gray suit jacket and pants and a light blue shirt sings about a double dutch bus as children get on and it drives away", "video_id": "video12108", "sen_id": 251333}, {"caption": "a music video for the song double dutch bus while the bus picks up people and drives down the street", "video_id": "video12108", "sen_id": 251334}, {"caption": "a man is getting off a bus and he is dancing", "video_id": "video12108", "sen_id": 251335}, {"caption": "a small child then a man getting off a bus and dancing", "video_id": "video12108", "sen_id": 251336}, {"caption": "guy in had jumps from a bus and dancing on street", "video_id": "video12108", "sen_id": 251337}, {"caption": "funny guy with a hat dancing next to a bus and welcoming the kids into it", "video_id": "video12108", "sen_id": 251338}, {"caption": "a man is dancing in road side in front of children", "video_id": "video12108", "sen_id": 251339}, {"caption": "a text ad for a 6-hour seminar on being a notary", "video_id": "video11264", "sen_id": 251340}, {"caption": "this is an advertisement for an online notary public course", "video_id": "video11264", "sen_id": 251341}, {"caption": "a man is selling an online seminar to prepare for a notary examination", "video_id": "video11264", "sen_id": 251342}, {"caption": "an advertisement for a 6 hour notary exam", "video_id": "video11264", "sen_id": 251343}, {"caption": "man explaining the guarantee that comes with a live seminar purchase", "video_id": "video11264", "sen_id": 251344}, {"caption": "explaination of seminar features and benefits", "video_id": "video11264", "sen_id": 251345}, {"caption": "there is a suit man enjoying with a old man", "video_id": "video11264", "sen_id": 251346}, {"caption": "a man is offering a deal for notary classes: purchase the live 6-hour seminar with the online classes and you will be guaranteed to pass the exam", "video_id": "video11264", "sen_id": 251347}, {"caption": "text is shown on screen while a narrator gives information about a live seminar", "video_id": "video11264", "sen_id": 251348}, {"caption": "it is a slideshow with an man talking over it", "video_id": "video11264", "sen_id": 251349}, {"caption": "a guy guarantees that one would pass the examination if they attend the live 6 hour seminar", "video_id": "video11264", "sen_id": 251350}, {"caption": "this is an audio speech describing about a 6 hour seminar which guarantees you will pass any exam", "video_id": "video11264", "sen_id": 251351}, {"caption": "the words only the live 6-hour seminar comes witha pass the exam guarantee", "video_id": "video11264", "sen_id": 251352}, {"caption": "a man is talking about taking the live seminar and exam", "video_id": "video11264", "sen_id": 251353}, {"caption": "an advertisement for a live 6-hour seminar for a notary class", "video_id": "video11264", "sen_id": 251354}, {"caption": "some one taking a seminar of passing the exam", "video_id": "video11264", "sen_id": 251355}, {"caption": "a man speaking about an online course that comes with a pass the exam guarantee", "video_id": "video11264", "sen_id": 251356}, {"caption": "words about a live seminar and a man speaking explaining the seminar and cost", "video_id": "video11264", "sen_id": 251357}, {"caption": "a man is giving details on a six hour seminar that he provides", "video_id": "video11264", "sen_id": 251358}, {"caption": "advertise about the seminar being shown on the screeen", "video_id": "video11264", "sen_id": 251359}, {"caption": "a news anchor asks a man about success in foreign markets", "video_id": "video10088", "sen_id": 251360}, {"caption": "a woman in a blue shirt talking on a news station", "video_id": "video10088", "sen_id": 251361}, {"caption": "a woman has her layered black hair framing her face which is enhanced with with gray eyeshadow and brick-red lipstick she wears a blue dress as she nods in agreement and responds to her news guest", "video_id": "video10088", "sen_id": 251362}, {"caption": "a women in blue dress interviewing a man in black dress", "video_id": "video10088", "sen_id": 251363}, {"caption": "a woman in a blue shirt asks a man a question about texas", "video_id": "video10088", "sen_id": 251364}, {"caption": "women asking a man a question of forensic markets", "video_id": "video10088", "sen_id": 251365}, {"caption": "an woman in a blue shirt is interviewing a man in glasses they are discussing a foreign markets seminar the man is holding the day after the interview", "video_id": "video10088", "sen_id": 251366}, {"caption": "two persons are speaking each other on a news cahnnel", "video_id": "video10088", "sen_id": 251367}, {"caption": "a new woman is sitting and interviewing a man on a show", "video_id": "video10088", "sen_id": 251368}, {"caption": "oriental reporter wearing blue talking on a bloomberg news channel to a man", "video_id": "video10088", "sen_id": 251369}, {"caption": "during a news interview a woman asks a man but struggles with confidence and using correct english", "video_id": "video10088", "sen_id": 251370}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10088", "sen_id": 251371}, {"caption": "girl in dark blue dress have dark black hair white skin talks in television", "video_id": "video10088", "sen_id": 251372}, {"caption": "on a television show a blue t-shirt wear lady asking question to other person", "video_id": "video10088", "sen_id": 251373}, {"caption": "sexy brunette asian in blue top taking interview in news room", "video_id": "video10088", "sen_id": 251374}, {"caption": "an asian lady with blue top talks about how to make success in the market which has a seminar tomorrow", "video_id": "video10088", "sen_id": 251375}, {"caption": "a woman in a blue shirt asking questions to a man in a black jacket and black glasses", "video_id": "video10088", "sen_id": 251376}, {"caption": "a woman with long balck hair and a blue shirt gives an interview", "video_id": "video10088", "sen_id": 251377}, {"caption": "a woman in a blue shirt is asking questions to a man", "video_id": "video10088", "sen_id": 251378}, {"caption": "in a tv channel a women in blue dress with mike taking interview with another person in black", "video_id": "video10088", "sen_id": 251379}, {"caption": "one man goes off on a tangent to another man in a mental hospital", "video_id": "video10857", "sen_id": 251380}, {"caption": "one man is speaking somewhat incoherently to another who looks at him confused", "video_id": "video10857", "sen_id": 251381}, {"caption": "a man who has mental issues explains his problems to another man", "video_id": "video10857", "sen_id": 251382}, {"caption": "a man is explaining why you shouldn't play games in this facility and providing guidance to another gentleman", "video_id": "video10857", "sen_id": 251383}, {"caption": "there is a man with jacket talking to someone", "video_id": "video10857", "sen_id": 251384}, {"caption": "a crazy man in a mental institute is asking what drugs another patient is taking while the other patient is only looking for a phone to make a call", "video_id": "video10857", "sen_id": 251385}, {"caption": "a man in a tan shirt rants crazily to another man in a white bathrobe", "video_id": "video10857", "sen_id": 251386}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10857", "sen_id": 251387}, {"caption": "a man in a brown shirt talks to a bald man in a white bath robe about games and what drugs that the man in the bath robe is being given", "video_id": "video10857", "sen_id": 251388}, {"caption": "a video clip of movie a boy catching head and speaking and old man in white dress face scratch with blade on face", "video_id": "video10857", "sen_id": 251389}, {"caption": "the man in the brown shirt pretends to hit the other man before talking to the man int he white shirt", "video_id": "video10857", "sen_id": 251390}, {"caption": "a man is explain to another about hitting", "video_id": "video10857", "sen_id": 251391}, {"caption": "a person in white dress talks to another guy standing in the room with the walls in white color", "video_id": "video10857", "sen_id": 251392}, {"caption": "a movie scene with bruce willis and brad pitt in an insane asylum", "video_id": "video10857", "sen_id": 251393}, {"caption": "a guy is talking to a bald man", "video_id": "video10857", "sen_id": 251394}, {"caption": "two man are talking and walkin", "video_id": "video10857", "sen_id": 251395}, {"caption": "a man is speaking to another person and some are there", "video_id": "video10857", "sen_id": 251396}, {"caption": "brad pitt leads bruce willis around the hall of an insane asylum in a scene from 12 monkeys", "video_id": "video10857", "sen_id": 251397}, {"caption": "bruce willis and brad pitt acting as patients in a mental hospital", "video_id": "video10857", "sen_id": 251398}, {"caption": "a man is talking to a guy in a white robe", "video_id": "video10857", "sen_id": 251399}, {"caption": "a group of people sit on a panel and in business attire", "video_id": "video12641", "sen_id": 251400}, {"caption": "news commentators state labour held st albans in a british election", "video_id": "video12641", "sen_id": 251401}, {"caption": "a man wearing a white shirt and a brown tie is talking to someone", "video_id": "video12641", "sen_id": 251402}, {"caption": "a middle aged white male with a white shirt and red tie is being interviewed", "video_id": "video12641", "sen_id": 251403}, {"caption": "a man in a red tie and white shirt is being interviewed on a broadcast", "video_id": "video12641", "sen_id": 251404}, {"caption": "a man in white shirt reading some issue in the news channe", "video_id": "video12641", "sen_id": 251405}, {"caption": "a group of people sitting at a news desk", "video_id": "video12641", "sen_id": 251406}, {"caption": "a professor is speaking to the audience regarding many topics", "video_id": "video12641", "sen_id": 251407}, {"caption": "guy in formal wear talking to a tv interviewer", "video_id": "video12641", "sen_id": 251408}, {"caption": "a man in white dress color cloth sitting beside many persons speaking on topic discusing displaying on screen", "video_id": "video12641", "sen_id": 251409}, {"caption": "there is a man in white shirt speaking in meeting", "video_id": "video12641", "sen_id": 251410}, {"caption": "a team of panel member in a studio discusess about 2001 general election", "video_id": "video12641", "sen_id": 251411}, {"caption": "few people on the round table and a person in white shirt speaks", "video_id": "video12641", "sen_id": 251412}, {"caption": "man in white dress and brown tie talks his skin is white color", "video_id": "video12641", "sen_id": 251413}, {"caption": "two men are talking but only one is on screen he is wearing a white shirt and tie and has glasses", "video_id": "video12641", "sen_id": 251414}, {"caption": "there is a man with white dressing speaking in a show", "video_id": "video12641", "sen_id": 251415}, {"caption": "a man is sitting and talking to other people on a news show", "video_id": "video12641", "sen_id": 251416}, {"caption": "a man is talking in the television show", "video_id": "video12641", "sen_id": 251417}, {"caption": "a man in a white shirt is talking to an interviewer on the news", "video_id": "video12641", "sen_id": 251418}, {"caption": "a man in glasses talks to a table of people about numbers", "video_id": "video12641", "sen_id": 251419}, {"caption": "a woman in a large gym tries to jump over a hurdle but falls", "video_id": "video11059", "sen_id": 251420}, {"caption": "a girl in red is jumping", "video_id": "video11059", "sen_id": 251421}, {"caption": "a women in red top is practising jump as others watch her", "video_id": "video11059", "sen_id": 251422}, {"caption": "sports women practising for long jump championship and two times fell down", "video_id": "video11059", "sen_id": 251423}, {"caption": "a young girl attempts to jump over a hurdle and falls on her second try", "video_id": "video11059", "sen_id": 251424}, {"caption": "several athletes jump over hurdles in a gym", "video_id": "video11059", "sen_id": 251425}, {"caption": "lot of womens are taking training high jump a red t shirt wearing young girl tried first but failed and tried second time she fell down", "video_id": "video11059", "sen_id": 251426}, {"caption": "a women jumps over the hurdle and practising in indoor stadium", "video_id": "video11059", "sen_id": 251427}, {"caption": "womens and mens practicing for high jump competition", "video_id": "video11059", "sen_id": 251428}, {"caption": "people in a warehouse trying to jump hurtils", "video_id": "video11059", "sen_id": 251429}, {"caption": "a girl fals down trying to jump a hurl", "video_id": "video11059", "sen_id": 251430}, {"caption": "the girl in the red top had trouble clearing the hurdle", "video_id": "video11059", "sen_id": 251431}, {"caption": "lots are women are practising long jump and many of them falls down while doing practice", "video_id": "video11059", "sen_id": 251432}, {"caption": "humans practice jumping hurdles inside of a gymnasium", "video_id": "video11059", "sen_id": 251433}, {"caption": "so many girls are practicing long jump game", "video_id": "video11059", "sen_id": 251434}, {"caption": "the athletes are playing and the viewers are taking pictures in their mobile phones", "video_id": "video11059", "sen_id": 251435}, {"caption": "people are playing inside of a building and doing exercises", "video_id": "video11059", "sen_id": 251436}, {"caption": "a woman wearing red and black is stopped by a gym hurdle during two attempts while people wince", "video_id": "video11059", "sen_id": 251437}, {"caption": "video shows people competing in a cross-fit competition", "video_id": "video11059", "sen_id": 251438}, {"caption": "the players are wearing different uniforms and playing different games", "video_id": "video11059", "sen_id": 251439}, {"caption": "a man walks into a bar approaching another man who is already seated", "video_id": "video10592", "sen_id": 251440}, {"caption": "a man is entering conference room attended by many people", "video_id": "video10592", "sen_id": 251441}, {"caption": "its a hollywood film trailer", "video_id": "video10592", "sen_id": 251442}, {"caption": "to be displayed on the screen us president mr barak hussian obama", "video_id": "video10592", "sen_id": 251443}, {"caption": "a man is walking down a hallway in a bar", "video_id": "video10592", "sen_id": 251444}, {"caption": "an evening party is conducted and people are watching ttelevision", "video_id": "video10592", "sen_id": 251445}, {"caption": "man walks to a meeting hall filled with members", "video_id": "video10592", "sen_id": 251446}, {"caption": "there is a man walking to the bar", "video_id": "video10592", "sen_id": 251447}, {"caption": "a president is shown on a television screen and a man walks down a dark hall to a bar counter where a seated man turns to look at him", "video_id": "video10592", "sen_id": 251448}, {"caption": "a man walks into a bar to meet another man who has been waiting on him", "video_id": "video10592", "sen_id": 251449}, {"caption": "a person is walking into the bar toward a bald guy with glasses", "video_id": "video10592", "sen_id": 251450}, {"caption": "all persons are communicating each other", "video_id": "video10592", "sen_id": 251451}, {"caption": "one man goes to restaurant one old man seeing him", "video_id": "video10592", "sen_id": 251452}, {"caption": "a person is entering in a bar and another person looks at him", "video_id": "video10592", "sen_id": 251453}, {"caption": "a man walks slowly into a bar toward another man sitting at the bar", "video_id": "video10592", "sen_id": 251454}, {"caption": "all persons watching tv on a hotel", "video_id": "video10592", "sen_id": 251455}, {"caption": "a man walks down a dark hallway into a bar to talk to another man", "video_id": "video10592", "sen_id": 251456}, {"caption": "a man is walking and another man is sitting", "video_id": "video10592", "sen_id": 251457}, {"caption": "a man walking many peoples sitting on table and still image of prime minister on screen", "video_id": "video10592", "sen_id": 251458}, {"caption": "a man is walking around a bar hall way", "video_id": "video10592", "sen_id": 251459}, {"caption": "a woman begins to demonstrate a unique way of making bracelets", "video_id": "video12035", "sen_id": 251460}, {"caption": "a girl shows how to weave together a rubber band bracelet", "video_id": "video12035", "sen_id": 251461}, {"caption": "a woman demonstrating how to put rubber bands on a plastic form", "video_id": "video12035", "sen_id": 251462}, {"caption": "a graphic showing a pair of hands a plastic loom and colorful rubber bands being placed on the loom while a voiceover explains the process", "video_id": "video12035", "sen_id": 251463}, {"caption": "a woman is setting up her rubber band loom to begin a project", "video_id": "video12035", "sen_id": 251464}, {"caption": "a woman twists a white rubber band over clear plastic pegs", "video_id": "video12035", "sen_id": 251465}, {"caption": "a person doing craft with some art supplies", "video_id": "video12035", "sen_id": 251466}, {"caption": "a woman is showing a loom and the bands that go with it", "video_id": "video12035", "sen_id": 251467}, {"caption": "what is this instrument what kind of use", "video_id": "video12035", "sen_id": 251468}, {"caption": "a girl is making things with tiny rubberbands", "video_id": "video12035", "sen_id": 251469}, {"caption": "all females are taking nail polishes", "video_id": "video12035", "sen_id": 251470}, {"caption": "a women sings song in english", "video_id": "video12035", "sen_id": 251471}, {"caption": "a woman is showing how to use a small plastic loom with bands", "video_id": "video12035", "sen_id": 251472}, {"caption": "a girl shows how to make a bracelet using multicolored elastic bands", "video_id": "video12035", "sen_id": 251473}, {"caption": "a craftsman shows how to set up a horizontal hand loom for weaving cloth", "video_id": "video12035", "sen_id": 251474}, {"caption": "there is a woman playing with some tubes", "video_id": "video12035", "sen_id": 251475}, {"caption": "some small bottles placed on a table", "video_id": "video12035", "sen_id": 251476}, {"caption": "a huge allignment of clear plastic pieces a lady is placing rubber bands over it", "video_id": "video12035", "sen_id": 251477}, {"caption": "we see a tool used for making bracelets and a woman instructs while using the tool", "video_id": "video12035", "sen_id": 251478}, {"caption": "a woman giving instructions on making bracelets", "video_id": "video12035", "sen_id": 251479}, {"caption": "a female spinning in circles while wearing a dress", "video_id": "video11122", "sen_id": 251480}, {"caption": "a woman in a dancing costumes twirls around repeatedly in the middle of a large room", "video_id": "video11122", "sen_id": 251481}, {"caption": "people in colorful costumes dance in a ballroom in a warped lens", "video_id": "video11122", "sen_id": 251482}, {"caption": "a party has been arranged and buffet meals are there and hosts are seeing dance program in which a red color dress lady dancing", "video_id": "video11122", "sen_id": 251483}, {"caption": "indian girl in traditional dress dances to the tune of indian music", "video_id": "video11122", "sen_id": 251484}, {"caption": "one women dancing fast and beautifully in party", "video_id": "video11122", "sen_id": 251485}, {"caption": "a girl in red dress dancing and girl in blue dress standing beside", "video_id": "video11122", "sen_id": 251486}, {"caption": "a women in red dress is dancing with others watching her", "video_id": "video11122", "sen_id": 251487}, {"caption": "women in large dresses spin around a ballroom", "video_id": "video11122", "sen_id": 251488}, {"caption": "a girl is dancing in the function hall", "video_id": "video11122", "sen_id": 251489}, {"caption": "some people in colorful dresses are dancing", "video_id": "video11122", "sen_id": 251490}, {"caption": "a women in red dressing dancing on the floor", "video_id": "video11122", "sen_id": 251491}, {"caption": "a woman in a red dress with blue border dances from side to side and then spins while her skirt lifts and twirls over a wide white floor in a large room with other people", "video_id": "video11122", "sen_id": 251492}, {"caption": "a women is dancing in the party", "video_id": "video11122", "sen_id": 251493}, {"caption": "the room looked like a sceen from oriental outer space", "video_id": "video11122", "sen_id": 251494}, {"caption": "some people in colorful outfits are in a room", "video_id": "video11122", "sen_id": 251495}, {"caption": "some men and womens dancing and singing", "video_id": "video11122", "sen_id": 251496}, {"caption": "in a star hotel night party a red color dressed girl is dancing well to the music", "video_id": "video11122", "sen_id": 251497}, {"caption": "a woman in a bright colored dress spins wildly in a dance", "video_id": "video11122", "sen_id": 251498}, {"caption": "a woman is dancing around in a big dress", "video_id": "video11122", "sen_id": 251499}, {"caption": "a music video with mariah carey and justin beibar", "video_id": "video10342", "sen_id": 251500}, {"caption": "a woman wearing a red dress dancing on a wall", "video_id": "video10342", "sen_id": 251501}, {"caption": "mariah carey is singing all i want for christmas is you standing by a christmas tree in a short redwhite dress and santa hat", "video_id": "video10342", "sen_id": 251502}, {"caption": "an older woman in santa themed lingerie dances and sings", "video_id": "video10342", "sen_id": 251503}, {"caption": "two singers one male and one female sings christmas songs while dancing near and through chrimas trees", "video_id": "video10342", "sen_id": 251504}, {"caption": "mariah carey dressed in a skimpy santa claus skirts sings while justin bieber dances", "video_id": "video10342", "sen_id": 251505}, {"caption": "mariah carey is wearing a santa dress and justin beiber is dancing", "video_id": "video10342", "sen_id": 251506}, {"caption": "mariah carey sings christmas songs to onlookers in front of christmas trees", "video_id": "video10342", "sen_id": 251507}, {"caption": "maria carey and justin bieber sing in a christmas song amid seasonal decorations", "video_id": "video10342", "sen_id": 251508}, {"caption": "mariah carey is singing a christmas song with justin bieber while wearing a santa clause suit", "video_id": "video10342", "sen_id": 251509}, {"caption": "a woman is dressed in a sexy santa suit and singing while a young man is dancing in a mall", "video_id": "video10342", "sen_id": 251510}, {"caption": "a woman in a santa claus suit is singing", "video_id": "video10342", "sen_id": 251511}, {"caption": "the lady singing a chrismass song while putting on the red chrismass dresss", "video_id": "video10342", "sen_id": 251512}, {"caption": "mariah carey and justin bieber in a christmas themed music video", "video_id": "video10342", "sen_id": 251513}, {"caption": "miriah carey singing all i want for christmas in a video", "video_id": "video10342", "sen_id": 251514}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video10342", "sen_id": 251515}, {"caption": "men and women dancing and singing song in a group", "video_id": "video10342", "sen_id": 251516}, {"caption": "a girl singins asong and dancing for it", "video_id": "video10342", "sen_id": 251517}, {"caption": "a young girl in the christmas season outfit singing and a young man doing his shopping feels the mood to dance with the music", "video_id": "video10342", "sen_id": 251518}, {"caption": "mariah carey and justin bieber are shown while mariah sings a christmas carol", "video_id": "video10342", "sen_id": 251519}, {"caption": "a chef works on a recipe by stirring a large pot of meat and gravy", "video_id": "video11114", "sen_id": 251520}, {"caption": "chunks of beef simmering in a brown mushroom gravy in a cast iron pan", "video_id": "video11114", "sen_id": 251521}, {"caption": "a man stirs his mushroom and beef gravy on the stove with a wooden spoon", "video_id": "video11114", "sen_id": 251522}, {"caption": "a man stirs his mushroom and beef gravy on the stove with a wooden spoon", "video_id": "video11114", "sen_id": 251523}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video11114", "sen_id": 251524}, {"caption": "the wolfe pit man makes a greavy with some meats", "video_id": "video11114", "sen_id": 251525}, {"caption": "woman mixing the ingredients and cooking the meat", "video_id": "video11114", "sen_id": 251526}, {"caption": "a person is stirring some boiling meat", "video_id": "video11114", "sen_id": 251527}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11114", "sen_id": 251528}, {"caption": "in a big container meals prepared by a man", "video_id": "video11114", "sen_id": 251529}, {"caption": "a person is stirring the cooked wolfie pit", "video_id": "video11114", "sen_id": 251530}, {"caption": "a bowl and mixing dish preparing meat inside kitchen to serve eat", "video_id": "video11114", "sen_id": 251531}, {"caption": "some strew is boiling inside of a black pot", "video_id": "video11114", "sen_id": 251532}, {"caption": "a man is explaining how to make a dish of beef and noodles", "video_id": "video11114", "sen_id": 251533}, {"caption": "a recipe for beef and noodles in a brown sauce", "video_id": "video11114", "sen_id": 251534}, {"caption": "a bowl with spoon mixing shaking putting oil and meat shaking inside kitchen to prepare to eat", "video_id": "video11114", "sen_id": 251535}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11114", "sen_id": 251536}, {"caption": "someone is cooking beef and noodles in a cast iron pan", "video_id": "video11114", "sen_id": 251537}, {"caption": "a person is stirring food that is in a iron pan on a stove", "video_id": "video11114", "sen_id": 251538}, {"caption": "a person is doing some mushroom kurma and some non-veg receipe in the kitchen show", "video_id": "video11114", "sen_id": 251539}, {"caption": "a woman is finishing up a beautiful fruits refreshment dish that looks colorful tasty and suitable for any occasions", "video_id": "video11475", "sen_id": 251540}, {"caption": "many slices of fruit are cut up on the table in an arrangement", "video_id": "video11475", "sen_id": 251541}, {"caption": "a tray of fruit is being described as the perfect for different types of brunches", "video_id": "video11475", "sen_id": 251542}, {"caption": "a party platter of cheese fruit and flowers is sitting on a table", "video_id": "video11475", "sen_id": 251543}, {"caption": "a woman decorates a fruit display with flowers", "video_id": "video11475", "sen_id": 251544}, {"caption": "a plate of fruit displayed in a very beautiful way with flowers", "video_id": "video11475", "sen_id": 251545}, {"caption": "a woman is talking and showing nicely cut up fruits", "video_id": "video11475", "sen_id": 251546}, {"caption": "a woman describing the things a fruit tray can be used for", "video_id": "video11475", "sen_id": 251547}, {"caption": "a friuts on tables kitchen to serve and eat displaying on screen", "video_id": "video11475", "sen_id": 251548}, {"caption": "this video show the flowers and fruits and the women explain it", "video_id": "video11475", "sen_id": 251549}, {"caption": "there is cut fruits is decorating around flowers and it keeping on a table", "video_id": "video11475", "sen_id": 251550}, {"caption": "a woman discusses a large fruit tray that she has just constructed", "video_id": "video11475", "sen_id": 251551}, {"caption": "fruit is on a large plate and flowers decorate around it", "video_id": "video11475", "sen_id": 251552}, {"caption": "a woman is displaying bwutifully put together fesh fruit trays with uniformly placed pineapple grapes honeydew melon cantaloupe and watermelon also yhere are flowers also throughout tne the fruit tray", "video_id": "video11475", "sen_id": 251553}, {"caption": "a woman in a kitchen is preparing a fruit spread consisting of pineapple and cantaloupe", "video_id": "video11475", "sen_id": 251554}, {"caption": "a woman is speaking and displaying a large colorful fruit tray", "video_id": "video11475", "sen_id": 251555}, {"caption": "amazing fruit decoration its nice and attractiveits so colorful", "video_id": "video11475", "sen_id": 251556}, {"caption": "there are multiple clips showing off a tray full of assorted fruits and berries as well as flowers", "video_id": "video11475", "sen_id": 251557}, {"caption": "a colorful tray of fruit and flowers is masterfully laid out", "video_id": "video11475", "sen_id": 251558}, {"caption": "someone is making some food on a table", "video_id": "video11475", "sen_id": 251559}, {"caption": "two men one running on a track field explain a high jump exercise where the runner does a high jump over a pole", "video_id": "video12634", "sen_id": 251560}, {"caption": "a man describes the running technique of a young high jumper", "video_id": "video12634", "sen_id": 251561}, {"caption": "a man describes the proper technique for a high jump as another man demonstrates it in slow motion", "video_id": "video12634", "sen_id": 251562}, {"caption": "a man stands on a red outdoor sport surface and watches while another man approaches and then jumps over a high-jump bar in slow motion", "video_id": "video12634", "sen_id": 251563}, {"caption": "a video showing a athelete running down smoothly to do a high jump", "video_id": "video12634", "sen_id": 251564}, {"caption": "a boy is running fast on ground to perform high jump", "video_id": "video12634", "sen_id": 251565}, {"caption": "an athlete runs along a track and prepares for a high jump", "video_id": "video12634", "sen_id": 251566}, {"caption": "a sports men doing trainnig for high jump in a ground and one person watching how he was jumping", "video_id": "video12634", "sen_id": 251567}, {"caption": "a man in blue shorts runs at full speed for high jump in an empty stadium", "video_id": "video12634", "sen_id": 251568}, {"caption": "a male is completing a high jump while a man explains it", "video_id": "video12634", "sen_id": 251569}, {"caption": "a man with white shirt runs and starts with nice approach and he jumps the hurdle without hitting it", "video_id": "video12634", "sen_id": 251570}, {"caption": "training for track and field high jump events nearly watched by a coach", "video_id": "video12634", "sen_id": 251571}, {"caption": "a man doing some practice in field for highjump", "video_id": "video12634", "sen_id": 251572}, {"caption": "a narrator speaks over a slow motion video of a man performing the high jump", "video_id": "video12634", "sen_id": 251573}, {"caption": "a high jumper demonstrates his craft for his coach in an instructional video", "video_id": "video12634", "sen_id": 251574}, {"caption": "in slow motion an athlete in dark shorts dashes on a field track jumps backwards over a hurdle and lands on a soft padded mat", "video_id": "video12634", "sen_id": 251575}, {"caption": "a man narrates as an athlete jumps over a pole", "video_id": "video12634", "sen_id": 251576}, {"caption": "a young man watches as a male athlete runs toward and clears a crossbar for a high jump", "video_id": "video12634", "sen_id": 251577}, {"caption": "a coach instructs kids on completing a jump for a sporting event", "video_id": "video12634", "sen_id": 251578}, {"caption": "athlete showing his high jump skill in the stadium", "video_id": "video12634", "sen_id": 251579}, {"caption": "a woman is modeling different clothing there are about three different scenes in which she models three different outfits", "video_id": "video10504", "sen_id": 251580}, {"caption": "a young woman in a dark blue night gown poses for a fashion shoot", "video_id": "video10504", "sen_id": 251581}, {"caption": "images of plus sized models are shown interspersed with text", "video_id": "video10504", "sen_id": 251582}, {"caption": "different women's fashion garments are examined from dresses to lingerie", "video_id": "video10504", "sen_id": 251583}, {"caption": "different pictures of models are shown one after another", "video_id": "video10504", "sen_id": 251584}, {"caption": "awesome ladies with excellent looks are shown with music", "video_id": "video10504", "sen_id": 251585}, {"caption": "models posing on the screen for their plus size image", "video_id": "video10504", "sen_id": 251586}, {"caption": "a beautiful women in white shirt and jean is posing for photograph", "video_id": "video10504", "sen_id": 251587}, {"caption": "different still pictures of a women are flashed while music plays", "video_id": "video10504", "sen_id": 251588}, {"caption": "sexy brunette models photo shown on screen", "video_id": "video10504", "sen_id": 251589}, {"caption": "a white shirt women walking on the street", "video_id": "video10504", "sen_id": 251590}, {"caption": "the women model night gowns on a stage", "video_id": "video10504", "sen_id": 251591}, {"caption": "a songs are playing and posters of girls are displaying", "video_id": "video10504", "sen_id": 251592}, {"caption": "a fashion show is being going in the place and the models are going ramp walk in the show", "video_id": "video10504", "sen_id": 251593}, {"caption": "a woman in a blue dress is standing around", "video_id": "video10504", "sen_id": 251594}, {"caption": "a poster of fashion shows done by women", "video_id": "video10504", "sen_id": 251595}, {"caption": "the beautyful girl and their body part displayed in variety pose", "video_id": "video10504", "sen_id": 251596}, {"caption": "a young woman poses for pictures in various outfits and several different locations", "video_id": "video10504", "sen_id": 251597}, {"caption": "a model posing herself with many modern dress", "video_id": "video10504", "sen_id": 251598}, {"caption": "a woman with a blue dress is tanding around", "video_id": "video10504", "sen_id": 251599}, {"caption": "a group of young men walk the runway at a major fashion show", "video_id": "video11572", "sen_id": 251600}, {"caption": "a men's fashion show with models demonstrating new clothing styles walking down the catwalk", "video_id": "video11572", "sen_id": 251601}, {"caption": "male models on the runway wearing white hats", "video_id": "video11572", "sen_id": 251602}, {"caption": "a catwalk of models in different clothes walking", "video_id": "video11572", "sen_id": 251603}, {"caption": "various guys walk down intersecting catwalks wearing newly designed clothes", "video_id": "video11572", "sen_id": 251604}, {"caption": "male models walking down a and crossing over on a runway", "video_id": "video11572", "sen_id": 251605}, {"caption": "male fashion models walk down a long white runway in front of a large audience", "video_id": "video11572", "sen_id": 251606}, {"caption": "a group of models are walking in a fashion show in front of a crowd", "video_id": "video11572", "sen_id": 251607}, {"caption": "fashion boys walk in fashion show crowd watching it", "video_id": "video11572", "sen_id": 251608}, {"caption": "various male models are walking down the ramp for a fashion show in attractive clothes", "video_id": "video11572", "sen_id": 251609}, {"caption": "male models runway fashion show presentation", "video_id": "video11572", "sen_id": 251610}, {"caption": "all persons are walking a fashion show", "video_id": "video11572", "sen_id": 251611}, {"caption": "male models walking on a catwalk at a fashion show", "video_id": "video11572", "sen_id": 251612}, {"caption": "men model high fashion clothes during a runway fashion show", "video_id": "video11572", "sen_id": 251613}, {"caption": "different men walking down runways with fashionable outfits on", "video_id": "video11572", "sen_id": 251614}, {"caption": "some models are walking on a cat walk", "video_id": "video11572", "sen_id": 251615}, {"caption": "male models walking the catwalk at a fashion show", "video_id": "video11572", "sen_id": 251616}, {"caption": "several male models in varying outfits walk down a lit runway", "video_id": "video11572", "sen_id": 251617}, {"caption": "a fashion show for men is taking place and many of them wearing designer suits and ramp walking is going on", "video_id": "video11572", "sen_id": 251618}, {"caption": "models walk down the runway in a fashion show", "video_id": "video11572", "sen_id": 251619}, {"caption": "a woman stands in a kitchen explaining how to cook a dish", "video_id": "video10376", "sen_id": 251620}, {"caption": "a woman in traditional indian clothing teaching how to cook root vegetables in the kitchen", "video_id": "video10376", "sen_id": 251621}, {"caption": "a woman with a green dot on her forehead is adding green vegetables to a pot", "video_id": "video10376", "sen_id": 251622}, {"caption": "a woman demonstrates the process of cooking a dish in a foreign language", "video_id": "video10376", "sen_id": 251623}, {"caption": "a woman in green describes how she is cooking food", "video_id": "video10376", "sen_id": 251624}, {"caption": "a woman is preparing a food on kitchen room", "video_id": "video10376", "sen_id": 251625}, {"caption": "womens are cooking in the kitchen on gas", "video_id": "video10376", "sen_id": 251626}, {"caption": "an indian woman telling about the curry and mixing the sliced vegetables into dish which is on stove", "video_id": "video10376", "sen_id": 251627}, {"caption": "a woman in saree and telling a ingredient for cook", "video_id": "video10376", "sen_id": 251628}, {"caption": "a woman in green saree is explaining about an indian dish and how to cook it", "video_id": "video10376", "sen_id": 251629}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10376", "sen_id": 251630}, {"caption": "a lady explaining how to prepare the food she is preparing", "video_id": "video10376", "sen_id": 251631}, {"caption": "one beautiful and lovely women make a recipe", "video_id": "video10376", "sen_id": 251632}, {"caption": "a woman in a green dress cooks and intructs", "video_id": "video10376", "sen_id": 251633}, {"caption": "indian lady speaking about cooking indian traditional meal", "video_id": "video10376", "sen_id": 251634}, {"caption": "in the kitchen a woman talking about a vegetable dish", "video_id": "video10376", "sen_id": 251635}, {"caption": "a person is cooking and adding some good nurish in that", "video_id": "video10376", "sen_id": 251636}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video10376", "sen_id": 251637}, {"caption": "an indian woman in an aqua-marine sari prepares a vegetable dish in a kitchen", "video_id": "video10376", "sen_id": 251638}, {"caption": "a person is doing a cooking show and showing various ingredients", "video_id": "video10376", "sen_id": 251639}, {"caption": "a car races down a palm tree lined street", "video_id": "video12447", "sen_id": 251640}, {"caption": "a driver accelerates down a palm tree lined road while stating that the car seems louder since it was taken in for service", "video_id": "video12447", "sen_id": 251641}, {"caption": "a men explainging car is displayed with its features", "video_id": "video12447", "sen_id": 251642}, {"caption": "some one riding a vehicle on the road side", "video_id": "video12447", "sen_id": 251643}, {"caption": "two people in a car discuss about their car ride and the day they have had", "video_id": "video12447", "sen_id": 251644}, {"caption": "man driving his car very fast near the palm trees", "video_id": "video12447", "sen_id": 251645}, {"caption": "a man is testing his new exhaust system for his car", "video_id": "video12447", "sen_id": 251646}, {"caption": "a car is being driven in a commercial area with palm trees the car has been serviced and now", "video_id": "video12447", "sen_id": 251647}, {"caption": "a man tests his car s speed on the streets of a tropical location after a recent tuneup", "video_id": "video12447", "sen_id": 251648}, {"caption": "a car is driven fastly on the main road and travelled long", "video_id": "video12447", "sen_id": 251649}, {"caption": "people having a discussion in moving car", "video_id": "video12447", "sen_id": 251650}, {"caption": "a person driving a car on a empty road", "video_id": "video12447", "sen_id": 251651}, {"caption": "a man s dash cam shows him revving his car down a road", "video_id": "video12447", "sen_id": 251652}, {"caption": "a dashcam depicts someone driving a high-performance car about town", "video_id": "video12447", "sen_id": 251653}, {"caption": "sports car racing through streets in a tropical place", "video_id": "video12447", "sen_id": 251654}, {"caption": "there is a car riding in to the street", "video_id": "video12447", "sen_id": 251655}, {"caption": "a dashboard view of someone driving a car through city streets lined with palm trees", "video_id": "video12447", "sen_id": 251656}, {"caption": "person driving car fast in a highway", "video_id": "video12447", "sen_id": 251657}, {"caption": "a car is moving very fast down the road", "video_id": "video12447", "sen_id": 251658}, {"caption": "driving through the tree lined streets you can hear the vehicle going through gears", "video_id": "video12447", "sen_id": 251659}, {"caption": "a man cooks chicken and gravy on the stove he adds spices and mixes the dish", "video_id": "video12765", "sen_id": 251660}, {"caption": "a person cooking a dish for a cooking show", "video_id": "video12765", "sen_id": 251661}, {"caption": "chicken with gravy is being prepared and leaves are added and stirred with a wooden spoon", "video_id": "video12765", "sen_id": 251662}, {"caption": "a man in a red shirt cooking chicken in a pot on a stove", "video_id": "video12765", "sen_id": 251663}, {"caption": "a chef wearing red dress preparing a dish", "video_id": "video12765", "sen_id": 251664}, {"caption": "a person cooking the meat and stir the sauce using wooden blender", "video_id": "video12765", "sen_id": 251665}, {"caption": "a person is cooking a chicken curry on a pan", "video_id": "video12765", "sen_id": 251666}, {"caption": "a chef explaining on what is happening to the food when he is cooking", "video_id": "video12765", "sen_id": 251667}, {"caption": " in a red shirt uses a wooden spoon to stir in chopped green herbs to cubes of meat in a bubbling brown sauce cooking in a black skillet", "video_id": "video12765", "sen_id": 251668}, {"caption": "vah-chef is cooking an indian dish with gravy adding mint and coriander", "video_id": "video12765", "sen_id": 251669}, {"caption": "the man stirs the chicken in the saucepan then adds parsley to it", "video_id": "video12765", "sen_id": 251670}, {"caption": "tawa chicken pieces are boiled", "video_id": "video12765", "sen_id": 251671}, {"caption": "a man in a red shirt is adding ingrediants to a pot with boiling chicken", "video_id": "video12765", "sen_id": 251672}, {"caption": "a boy inside kitchen mixing with spoon preparing dish cooking to serve to eat displaying on screen", "video_id": "video12765", "sen_id": 251673}, {"caption": "someone is frying up some food in a pan", "video_id": "video12765", "sen_id": 251674}, {"caption": "a delicious chicken curry is being prepared by someone and coriander leaves are added", "video_id": "video12765", "sen_id": 251675}, {"caption": "a man in a red chef jacket adding ingredients into a pot that is on the stove", "video_id": "video12765", "sen_id": 251676}, {"caption": "a man provideing commentary while cooking while stirring the ingredients", "video_id": "video12765", "sen_id": 251677}, {"caption": "a man with an indian accent wearing a red chef jacket is adding herbs to a saute pan as he makes a stew in a saute pan on the stove", "video_id": "video12765", "sen_id": 251678}, {"caption": "someone is stirring food inside of a pot", "video_id": "video12765", "sen_id": 251679}, {"caption": "a man in a plaid shirt is riding in a small open air cart with 3 other men while cars pass by them", "video_id": "video10553", "sen_id": 251680}, {"caption": "a group of people ride in an open air cart along a rural road", "video_id": "video10553", "sen_id": 251681}, {"caption": "a man in a plaid shirt is driving a cart with two passengers", "video_id": "video10553", "sen_id": 251682}, {"caption": "a man is driving an auto rickshaw which has no doors", "video_id": "video10553", "sen_id": 251683}, {"caption": "the video shows people seated on a moving truck", "video_id": "video10553", "sen_id": 251684}, {"caption": "a young man drives other people through the countryside in some kind of shuttle vehicle", "video_id": "video10553", "sen_id": 251685}, {"caption": "indian men ride in an open air cab through a country side area", "video_id": "video10553", "sen_id": 251686}, {"caption": "a group of people ride in a car on a windy road", "video_id": "video10553", "sen_id": 251687}, {"caption": "there is a man traveling in a vehicel", "video_id": "video10553", "sen_id": 251688}, {"caption": "a group of men taking a ride and talking among each other", "video_id": "video10553", "sen_id": 251689}, {"caption": "a men are traveling in the auto rickshaw", "video_id": "video10553", "sen_id": 251690}, {"caption": "some people rides on a bus and looks around", "video_id": "video10553", "sen_id": 251691}, {"caption": "people ride on a windy road in a rickety car", "video_id": "video10553", "sen_id": 251692}, {"caption": "there is a man traveling in aopen vehicle", "video_id": "video10553", "sen_id": 251693}, {"caption": "a man is driving other people in an odd vehicle", "video_id": "video10553", "sen_id": 251694}, {"caption": "several men are riding in an open air taxi type of vehicle", "video_id": "video10553", "sen_id": 251695}, {"caption": "a man in a trolley looking off to the side of the road", "video_id": "video10553", "sen_id": 251696}, {"caption": "the autorikshwaw men carying their passenger in their vehicule on the road", "video_id": "video10553", "sen_id": 251697}, {"caption": "a man is driving a bus full of people through mountianous terrain", "video_id": "video10553", "sen_id": 251698}, {"caption": "travelers in an autorikshaw a three wheeler", "video_id": "video10553", "sen_id": 251699}, {"caption": "a crowd of people chat noisily while riding the bus", "video_id": "video11951", "sen_id": 251700}, {"caption": "a group of people are on a crowded city bus together", "video_id": "video11951", "sen_id": 251701}, {"caption": "several people are packed into a bus and this young boy is speaking to an elderly woman in a hijab", "video_id": "video11951", "sen_id": 251702}, {"caption": "there is a baby travelling with a crowd", "video_id": "video11951", "sen_id": 251703}, {"caption": "a woman on a bus complains and yells a lot at all of the people on a bus", "video_id": "video11951", "sen_id": 251704}, {"caption": "in a bus many peoples are makes noise in", "video_id": "video11951", "sen_id": 251705}, {"caption": "a bus inside many peoples travelling sitting and a baby sleeping in pink dress", "video_id": "video11951", "sen_id": 251706}, {"caption": "some people are riding inside of a bus", "video_id": "video11951", "sen_id": 251707}, {"caption": "there is a child with cap sitting on a chair", "video_id": "video11951", "sen_id": 251708}, {"caption": "on the bus the passangers are very affraid about the situation", "video_id": "video11951", "sen_id": 251709}, {"caption": "a cute small baby in pink dress is sitting in the running train", "video_id": "video11951", "sen_id": 251710}, {"caption": "a small kid many people a round siting and travelling on road", "video_id": "video11951", "sen_id": 251711}, {"caption": "some people in a bus are traveling some where", "video_id": "video11951", "sen_id": 251712}, {"caption": " wearing a striped hat by the window looks up at adults who are speaking and responding to each other on a crowded bus", "video_id": "video11951", "sen_id": 251713}, {"caption": "passengers inside a bus having conversation and lots of noise when they are talking", "video_id": "video11951", "sen_id": 251714}, {"caption": "many people like menwomen and children are travelling in luxury bus", "video_id": "video11951", "sen_id": 251715}, {"caption": "people travelling in a bus with a baby is kept on one seat of the bus", "video_id": "video11951", "sen_id": 251716}, {"caption": "the young girls sitting in the chair at the bus and more people travelling in the bus", "video_id": "video11951", "sen_id": 251717}, {"caption": "in a bus there was rush and they were arguing and d", "video_id": "video11951", "sen_id": 251718}, {"caption": "some people are riding around inside of a bus", "video_id": "video11951", "sen_id": 251719}, {"caption": "an actor and an actress discuss playing a movie scene they were in", "video_id": "video10021", "sen_id": 251720}, {"caption": "edward norton and liv tyler discuss a recent collaboration", "video_id": "video10021", "sen_id": 251721}, {"caption": "an actor describes the different difficulties he had with acting in a particular movie", "video_id": "video10021", "sen_id": 251722}, {"caption": "a man in a black shirt responds to some questions asked by an interviewer", "video_id": "video10021", "sen_id": 251723}, {"caption": "a brown haired actor talks to an interviewer in front of a red background", "video_id": "video10021", "sen_id": 251724}, {"caption": "a famous actor speaks to a woman about his role in a movie", "video_id": "video10021", "sen_id": 251725}, {"caption": "man in black shirt is talking to a women in white dress", "video_id": "video10021", "sen_id": 251726}, {"caption": "we can see an ongoing show named unscripted here we can see a lady and a guy are discussing about a person", "video_id": "video10021", "sen_id": 251727}, {"caption": "a man in black is speaking to a woman in white who also speaks back to him", "video_id": "video10021", "sen_id": 251728}, {"caption": "a woman is interviewing with edward norton", "video_id": "video10021", "sen_id": 251729}, {"caption": "movie actor s are giving interviews regarding their new upcoming movie", "video_id": "video10021", "sen_id": 251730}, {"caption": "a men in black and women in white is talking with eache other", "video_id": "video10021", "sen_id": 251731}, {"caption": "men in black dress telling something about to women who in white dress", "video_id": "video10021", "sen_id": 251732}, {"caption": "a man and girl in white dress speaking each other", "video_id": "video10021", "sen_id": 251733}, {"caption": "ed norton answered questions submitted by the viewing audience", "video_id": "video10021", "sen_id": 251734}, {"caption": "an actor is giving a interview on screen with women", "video_id": "video10021", "sen_id": 251735}, {"caption": "an actor giving interview of his upcoming movie release", "video_id": "video10021", "sen_id": 251736}, {"caption": "a man is interviewing a woman about something that happened", "video_id": "video10021", "sen_id": 251737}, {"caption": "a young man in black dress is talking to a girl near him in a talk show", "video_id": "video10021", "sen_id": 251738}, {"caption": "edward norton is talking about something on tv", "video_id": "video10021", "sen_id": 251739}, {"caption": "a man is wearing a white shirt with a black vest and glasses he is talking to the camera", "video_id": "video10277", "sen_id": 251740}, {"caption": "a man wearing a vest and tie talking about ruining pop culture", "video_id": "video10277", "sen_id": 251741}, {"caption": "daniel o'brien from crackedcom expresses his views on pop culture", "video_id": "video10277", "sen_id": 251742}, {"caption": "a man behind a desk is talking about pop culture", "video_id": "video10277", "sen_id": 251743}, {"caption": "a man speaks at his desk in a goofy manner", "video_id": "video10277", "sen_id": 251744}, {"caption": "a pop culture commentator discusses his show while sitting at a desk decorated with movie nick-nacks", "video_id": "video10277", "sen_id": 251745}, {"caption": "daniel o brien introduces and describes the tv show obsessive pop culture disorder", "video_id": "video10277", "sen_id": 251746}, {"caption": "there is a man talking nearby a spider-man toy", "video_id": "video10277", "sen_id": 251747}, {"caption": "obsessive pop culture disorder with daniel o brien on the", "video_id": "video10277", "sen_id": 251748}, {"caption": "daniel o brien is talking about a show he is hosting where he ruins pop culture references and tv shows", "video_id": "video10277", "sen_id": 251749}, {"caption": "a man is sitting at a desk and is talking about different movies and music", "video_id": "video10277", "sen_id": 251750}, {"caption": "a person explaining on a live show", "video_id": "video10277", "sen_id": 251751}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10277", "sen_id": 251752}, {"caption": "a man wearing black dress explaining about something", "video_id": "video10277", "sen_id": 251753}, {"caption": "a guy in speck speaks interesting thing with his spider man toy nearby", "video_id": "video10277", "sen_id": 251754}, {"caption": "a internet commentator sitting a desk talking about popular culture", "video_id": "video10277", "sen_id": 251755}, {"caption": "a young man describes a new show obsessive pop culture disorder", "video_id": "video10277", "sen_id": 251756}, {"caption": "a man wearing specs talking about something to media", "video_id": "video10277", "sen_id": 251757}, {"caption": "a man wearing a vest and a tie sits at a desk and talks about movies", "video_id": "video10277", "sen_id": 251758}, {"caption": "a man introduces the first episode of a new television show", "video_id": "video10277", "sen_id": 251759}, {"caption": "a field with yellow flowers with green leaves", "video_id": "video12171", "sen_id": 251760}, {"caption": "there are group of yellow colour flowers in the garden", "video_id": "video12171", "sen_id": 251761}, {"caption": "the beautiful yellow flowers are seen in the garden", "video_id": "video12171", "sen_id": 251762}, {"caption": "a beautiful view of gladis family of yellow flower in their plat pots", "video_id": "video12171", "sen_id": 251763}, {"caption": "person is presenting the amazing yellow flowers in the nature", "video_id": "video12171", "sen_id": 251764}, {"caption": "a person showing bunch of flowers on the screen", "video_id": "video12171", "sen_id": 251765}, {"caption": "there are some yellow flowers in the garden", "video_id": "video12171", "sen_id": 251766}, {"caption": "the yellow flowers are seen in the garden", "video_id": "video12171", "sen_id": 251767}, {"caption": "a think array of yellow flowered plants are viewed in jungle environment", "video_id": "video12171", "sen_id": 251768}, {"caption": "orchid flowers bloom fantastically to a long day period with out fading", "video_id": "video12171", "sen_id": 251769}, {"caption": "some flowers are on the ground out side", "video_id": "video12171", "sen_id": 251770}, {"caption": "a large collection of yellow flowers is panned over slowly", "video_id": "video12171", "sen_id": 251771}, {"caption": "pointed green leaves lean over jagged gray rocks and narrow stems support vertical rows of yellow flowers above spear-shaped leaves", "video_id": "video12171", "sen_id": 251772}, {"caption": "some natural garden video whereas yellow colour flowers are admiring", "video_id": "video12171", "sen_id": 251773}, {"caption": "a person is filming wildlife and flowers", "video_id": "video12171", "sen_id": 251774}, {"caption": "some yellow flowers are being shown outside", "video_id": "video12171", "sen_id": 251775}, {"caption": "a set of yellow flowers is being panned over as they are growing in the wild", "video_id": "video12171", "sen_id": 251776}, {"caption": "a garden full of yellow flowers is in bloom", "video_id": "video12171", "sen_id": 251777}, {"caption": "showing plants and flowers while music plays in the background", "video_id": "video12171", "sen_id": 251778}, {"caption": "a person is showing bunch of different flowers to the camera", "video_id": "video12171", "sen_id": 251779}, {"caption": "a fish who is being talked about by a narrator", "video_id": "video10539", "sen_id": 251780}, {"caption": "a fish swims inside of an aquarium near some green plants", "video_id": "video10539", "sen_id": 251781}, {"caption": "a long brown fish moves slowly through a patch of water weeds", "video_id": "video10539", "sen_id": 251782}, {"caption": "a basheer fish is swimming in front of the camera while a narrorator describes it being from africa", "video_id": "video10539", "sen_id": 251783}, {"caption": "a rare grey fish is swimming and looking for something", "video_id": "video10539", "sen_id": 251784}, {"caption": "a gray fish swims through the water and under a green water plant", "video_id": "video10539", "sen_id": 251785}, {"caption": " originally found in africa is swimming", "video_id": "video10539", "sen_id": 251786}, {"caption": "a fish in shape of snake looking up for any food", "video_id": "video10539", "sen_id": 251787}, {"caption": "the white fish is swimming in the aquarium", "video_id": "video10539", "sen_id": 251788}, {"caption": "fish swimming in the tank together and showing its fins", "video_id": "video10539", "sen_id": 251789}, {"caption": "a fish is moving around in search of food in water", "video_id": "video10539", "sen_id": 251790}, {"caption": "a fish is swimming on the water", "video_id": "video10539", "sen_id": 251791}, {"caption": "a fish has a white underside oval-curved mouth and elongated body and is looking upwards in front of horizontally curved leaves that are green and ridged", "video_id": "video10539", "sen_id": 251792}, {"caption": "a fish swims in a tank while music is played and a man talks about what type of fish it is", "video_id": "video10539", "sen_id": 251793}, {"caption": "a fish is swimming in some water", "video_id": "video10539", "sen_id": 251794}, {"caption": "a fish swimming in the water looks very pretty", "video_id": "video10539", "sen_id": 251795}, {"caption": "a man describes a fish swimming in water with plants that resides in africa", "video_id": "video10539", "sen_id": 251796}, {"caption": "a man describes an odd looking fish he has in his aquarium", "video_id": "video10539", "sen_id": 251797}, {"caption": "a fish lazily swims around in an aquarium", "video_id": "video10539", "sen_id": 251798}, {"caption": "some gold fish are swimming around in the water", "video_id": "video10539", "sen_id": 251799}, {"caption": "a woman explains that spices are naturally extra-flavored", "video_id": "video10041", "sen_id": 251800}, {"caption": "a woman talks as she mixes several food items to make a meal", "video_id": "video10041", "sen_id": 251801}, {"caption": "a woman demonstrates the arrangement of food and drink on a table", "video_id": "video10041", "sen_id": 251802}, {"caption": "a chef holds a small white container over other bowls and a rectangular plate of food placed on a wooden cutting board and a counter", "video_id": "video10041", "sen_id": 251803}, {"caption": "a woman making a natural food items in a kitchen", "video_id": "video10041", "sen_id": 251804}, {"caption": "a beautiful lady in white dress is teaching a new recipe with many ingredients to someone", "video_id": "video10041", "sen_id": 251805}, {"caption": "a chef in her kitchen explaining the ingredients of some dish", "video_id": "video10041", "sen_id": 251806}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10041", "sen_id": 251807}, {"caption": "a cook is standing next to rows of large and small bowls of ingredients placed on a wood cutting board on a gray counter", "video_id": "video10041", "sen_id": 251808}, {"caption": "a chef pours liquid into her recipe from a cup", "video_id": "video10041", "sen_id": 251809}, {"caption": "a woman in a white double-breasted chefs tunic explains that the flavors of the dishes in front of her are subtle and natural", "video_id": "video10041", "sen_id": 251810}, {"caption": "a chef is arranging some dish on the table", "video_id": "video10041", "sen_id": 251811}, {"caption": "there are many ingredients set out side by side on a kitchen counter", "video_id": "video10041", "sen_id": 251812}, {"caption": "making of recipe some sauces and more ingredients in table", "video_id": "video10041", "sen_id": 251813}, {"caption": "a chef going over different types of food and sauces in bowls", "video_id": "video10041", "sen_id": 251814}, {"caption": "one lady taking about some home remady she using some yellow colored and green colored ingridients", "video_id": "video10041", "sen_id": 251815}, {"caption": "a lady chef is giving a recipe for a dish", "video_id": "video10041", "sen_id": 251816}, {"caption": "a woman wearing an apron cooks in a kitchen with multiple white bowls filled with colorful ingredients", "video_id": "video10041", "sen_id": 251817}, {"caption": "a woman discusses using natural flavors in her cooking", "video_id": "video10041", "sen_id": 251818}, {"caption": "a girl inside kitchen and many ingredient on table ready to coock for preparation", "video_id": "video10041", "sen_id": 251819}, {"caption": "a woman chops red raw pieces of steak", "video_id": "video12295", "sen_id": 251820}, {"caption": "a woman cutting meat into nice slices with a knife while cooking", "video_id": "video12295", "sen_id": 251821}, {"caption": " someone is slicing a piece of meet", "video_id": "video12295", "sen_id": 251822}, {"caption": "a person slices some meat up on the counter", "video_id": "video12295", "sen_id": 251823}, {"caption": "a lady is explains to the cook how to cut the meat sizes", "video_id": "video12295", "sen_id": 251824}, {"caption": "a person doing a cooking show and slicing the meat", "video_id": "video12295", "sen_id": 251825}, {"caption": "a guy cuts meat in the table to prepare food", "video_id": "video12295", "sen_id": 251826}, {"caption": "a women is cutting meat with knife on a cutting board", "video_id": "video12295", "sen_id": 251827}, {"caption": "a chef cuts the port meat into a thin slice with the knife", "video_id": "video12295", "sen_id": 251828}, {"caption": "in kitchen table a female slicing a big cooking material to small pieces with a knife", "video_id": "video12295", "sen_id": 251829}, {"caption": "the woman cuts the beef brisket into small pieces before she cooks it", "video_id": "video12295", "sen_id": 251830}, {"caption": "a person is cutting meat to prepare food", "video_id": "video12295", "sen_id": 251831}, {"caption": "one women cutting meat into thin pieces with sharp knife", "video_id": "video12295", "sen_id": 251832}, {"caption": "a cook chops meat into slices for a meal", "video_id": "video12295", "sen_id": 251833}, {"caption": "a red colored mutton is placed on white colored board and a girl is cutting mutton with sharp knife", "video_id": "video12295", "sen_id": 251834}, {"caption": "a person is using a knife to cut meat", "video_id": "video12295", "sen_id": 251835}, {"caption": "some one in a kitchen cutting food item with a knife very carefully", "video_id": "video12295", "sen_id": 251836}, {"caption": "an in home chef cuts steak and talks about how to cook the thin sliced steak", "video_id": "video12295", "sen_id": 251837}, {"caption": "a woman is cutting meat in peices for a recipe", "video_id": "video12295", "sen_id": 251838}, {"caption": "someone cutting a cold large slab of steak meat into small strips with a chef knife on a cutting board and a mat", "video_id": "video12295", "sen_id": 251839}, {"caption": "a person displays and describes the container garden they have on a balcony", "video_id": "video10849", "sen_id": 251840}, {"caption": "the plants are beautifully arranged in the garden", "video_id": "video10849", "sen_id": 251841}, {"caption": "there is a home garden on the floor", "video_id": "video10849", "sen_id": 251842}, {"caption": "several different potted plants are outside on a balcony", "video_id": "video10849", "sen_id": 251843}, {"caption": "various potted plants on different outdoor patios soaking in the sunshine", "video_id": "video10849", "sen_id": 251844}, {"caption": "a person is showing bunch plants at home", "video_id": "video10849", "sen_id": 251845}, {"caption": "calming music is playing while different plants in a garden are displayed", "video_id": "video10849", "sen_id": 251846}, {"caption": "there is a men planting plants in the pot in the garden", "video_id": "video10849", "sen_id": 251847}, {"caption": "two different balcony gardens are presented one garden consists of a mere four plants the other has numerous plants", "video_id": "video10849", "sen_id": 251848}, {"caption": "so many green plants are kept in pots and bags in the ground and in the terrace", "video_id": "video10849", "sen_id": 251849}, {"caption": "four plants in various sized vases sit on a glass tabletop", "video_id": "video10849", "sen_id": 251850}, {"caption": "all plants are located on pots on the outside of the house", "video_id": "video10849", "sen_id": 251851}, {"caption": "video shows narserybed with some plantations", "video_id": "video10849", "sen_id": 251852}, {"caption": "a row of small potted plants sits on a glass table on a patio and a patio is nearly covered with plants in white pots of varying heights and shapes", "video_id": "video10849", "sen_id": 251853}, {"caption": "a variety of plants are being displayed in pots on a balcony", "video_id": "video10849", "sen_id": 251854}, {"caption": "all trees are planted on the pots", "video_id": "video10849", "sen_id": 251855}, {"caption": "plats are kept on a plate", "video_id": "video10849", "sen_id": 251856}, {"caption": "an exploration about the home grown plants in the pot", "video_id": "video10849", "sen_id": 251857}, {"caption": "a view of crotons and plants on the terrace of a building are shown here", "video_id": "video10849", "sen_id": 251858}, {"caption": "some plants are sitting on an outdoor area", "video_id": "video10849", "sen_id": 251859}, {"caption": "a woman is mixing tomato sauce syrup and hot pepper paste to make special souce on the pan", "video_id": "video11869", "sen_id": 251860}, {"caption": "a woman is combining spices and sauces in a pan on a stovetop", "video_id": "video11869", "sen_id": 251861}, {"caption": "a woman measures three ingredients adds them to a hot skillet and stirs them", "video_id": "video11869", "sen_id": 251862}, {"caption": "a women is making a recipe in the kitchen", "video_id": "video11869", "sen_id": 251863}, {"caption": "a young lady in the kitchen prepareng a meal", "video_id": "video11869", "sen_id": 251864}, {"caption": "a woman is cooking a spice food in the kadai", "video_id": "video11869", "sen_id": 251865}, {"caption": "a woman is puring ingredients into a pan and mixing them together", "video_id": "video11869", "sen_id": 251866}, {"caption": "a women in a kitchen pouring tomato sauce to the pan", "video_id": "video11869", "sen_id": 251867}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11869", "sen_id": 251868}, {"caption": "a woman is cooking and adding ingredients in a skillet", "video_id": "video11869", "sen_id": 251869}, {"caption": "a woman is cooking a spice full dish", "video_id": "video11869", "sen_id": 251870}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11869", "sen_id": 251871}, {"caption": "a women in her kitchen mixing some ingredients in a pan", "video_id": "video11869", "sen_id": 251872}, {"caption": "there is a women cooking food in untensil", "video_id": "video11869", "sen_id": 251873}, {"caption": "a woman demonstrating how to prepare a recipe condiments", "video_id": "video11869", "sen_id": 251874}, {"caption": "women in a kitchen cooking a dish by mixing sauce", "video_id": "video11869", "sen_id": 251875}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video11869", "sen_id": 251876}, {"caption": "a women pours some ketchup into frying pan", "video_id": "video11869", "sen_id": 251877}, {"caption": "a woman adds sauce and other ingredients to the pan and stirs it with wooden spoon", "video_id": "video11869", "sen_id": 251878}, {"caption": "a woman adds ketchup and other ingredients to to a frying pan in preparation of dish", "video_id": "video11869", "sen_id": 251879}, {"caption": "an advertisement and a male voiceover explain about a red sauce in a pot on a stove in a foreign language", "video_id": "video11621", "sen_id": 251880}, {"caption": "a man is cooking down a sauce which includes tomatoes and spices", "video_id": "video11621", "sen_id": 251881}, {"caption": "a man takes the lid off a pot and starts to stir the orange liquid inside", "video_id": "video11621", "sen_id": 251882}, {"caption": "male prepares and stirs the red soup dish", "video_id": "video11621", "sen_id": 251883}, {"caption": "some orange liquid being stirred as it boils in a pot", "video_id": "video11621", "sen_id": 251884}, {"caption": "in a kitchen someone is making tomato basil soup", "video_id": "video11621", "sen_id": 251885}, {"caption": "a person preparing a food item on a bowel", "video_id": "video11621", "sen_id": 251886}, {"caption": "someone is stirring a pan of food on the stove with an orange spatula", "video_id": "video11621", "sen_id": 251887}, {"caption": "an orange soup is being simmered in a sauce pan while a man is adding extra ingredients to it", "video_id": "video11621", "sen_id": 251888}, {"caption": "a person is making some masala gravy in the kithcen corner show", "video_id": "video11621", "sen_id": 251889}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video11621", "sen_id": 251890}, {"caption": "in the kitchen a man making a curry", "video_id": "video11621", "sen_id": 251891}, {"caption": "a man is preparing a gravy in the pan", "video_id": "video11621", "sen_id": 251892}, {"caption": "an orange sauce boiling in a sauce pan and being stirred with an orange plastic spoon", "video_id": "video11621", "sen_id": 251893}, {"caption": "a chef preparing a red colored gravy for a curry", "video_id": "video11621", "sen_id": 251894}, {"caption": "some one in a kitchen preparing a gravy in a big vessel", "video_id": "video11621", "sen_id": 251895}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11621", "sen_id": 251896}, {"caption": "a orange sauce sizzles in a pot on the stove", "video_id": "video11621", "sen_id": 251897}, {"caption": "a man is stirring a pot of food that is boiling", "video_id": "video11621", "sen_id": 251898}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11621", "sen_id": 251899}, {"caption": "the man looks mad and is screaming into the tv", "video_id": "video10891", "sen_id": 251900}, {"caption": "a man in a brown shirt stands in front of a large window", "video_id": "video10891", "sen_id": 251901}, {"caption": "a man wearing a brown shirt appears to be in distress", "video_id": "video10891", "sen_id": 251902}, {"caption": "a man sitting in front of a crowd of people and is upset", "video_id": "video10891", "sen_id": 251903}, {"caption": "a man with a beard sings while standing in front of a window", "video_id": "video10891", "sen_id": 251904}, {"caption": "a man in brown is panting in front of a window", "video_id": "video10891", "sen_id": 251905}, {"caption": "a man standing and breathing heavilyy", "video_id": "video10891", "sen_id": 251906}, {"caption": "a man looking very angry with his face and talking something", "video_id": "video10891", "sen_id": 251907}, {"caption": "a hindu man speaks emotionally with a group of women watching", "video_id": "video10891", "sen_id": 251908}, {"caption": "a man in collared shirt cry s while discussing sad event", "video_id": "video10891", "sen_id": 251909}, {"caption": "a man talks to someone in a film clip", "video_id": "video10891", "sen_id": 251910}, {"caption": "a man with dark hair and a moustache is singing with a window behind him", "video_id": "video10891", "sen_id": 251911}, {"caption": "the south inda tamil movie citizen the actor ajith is crying to reveal the claimax scene", "video_id": "video10891", "sen_id": 251912}, {"caption": "a tamil movie scene is playing on screen", "video_id": "video10891", "sen_id": 251913}, {"caption": "a man in a brown shirt is crying and talking to a row of women", "video_id": "video10891", "sen_id": 251914}, {"caption": "a fearful man talks to the camera during and interview", "video_id": "video10891", "sen_id": 251915}, {"caption": "a man stuttering and talking emotionally in a foreign language", "video_id": "video10891", "sen_id": 251916}, {"caption": "a man stands in front of a window while speaking passionately to a crowd", "video_id": "video10891", "sen_id": 251917}, {"caption": "a man with brown hair and a beard is acting on stage or in a movie", "video_id": "video10891", "sen_id": 251918}, {"caption": "man with beard standing in front of window heard utter some sort of sad story", "video_id": "video10891", "sen_id": 251919}, {"caption": "video game footage of a car racing game in challenge mode", "video_id": "video10910", "sen_id": 251920}, {"caption": "a mouse cursor slowly moves over a map", "video_id": "video10910", "sen_id": 251921}, {"caption": "a car driving on dirt and a map with a moving cursor", "video_id": "video10910", "sen_id": 251922}, {"caption": "a car driving on dirt turns into a map with a cursor following a trail", "video_id": "video10910", "sen_id": 251923}, {"caption": "someone is giving walk-through in the car race video game using the map", "video_id": "video10910", "sen_id": 251924}, {"caption": "two men discuss how they will play a driving simulation game", "video_id": "video10910", "sen_id": 251925}, {"caption": "a location of map direction showing car moving displaying on screen", "video_id": "video10910", "sen_id": 251926}, {"caption": "there is a car riding calm and smooth", "video_id": "video10910", "sen_id": 251927}, {"caption": "car is moving ahead and being spotted using software", "video_id": "video10910", "sen_id": 251928}, {"caption": "two men discuss destinations to travel to within a video game as we see the game onscreen", "video_id": "video10910", "sen_id": 251929}, {"caption": "video game map displaying checkpoints and challenges in pink and blue dots", "video_id": "video10910", "sen_id": 251930}, {"caption": "a white car is moving at a great speed and maps and location are also seen", "video_id": "video10910", "sen_id": 251931}, {"caption": "a man challenges the others to travel in a game", "video_id": "video10910", "sen_id": 251932}, {"caption": "video game car game is play by man makes it", "video_id": "video10910", "sen_id": 251933}, {"caption": "a guide map of france to guide a tourist", "video_id": "video10910", "sen_id": 251934}, {"caption": "someone is playing a video game on pc", "video_id": "video10910", "sen_id": 251935}, {"caption": "a car is driving on a computer screen", "video_id": "video10910", "sen_id": 251936}, {"caption": "a person is showing a map in a videogame", "video_id": "video10910", "sen_id": 251937}, {"caption": "some friends discussing and planning about a fast track challenge in a driving trek", "video_id": "video10910", "sen_id": 251938}, {"caption": "two men play horizon and challenge each other", "video_id": "video10910", "sen_id": 251939}, {"caption": "a three year old little boy pretending that he is a cowboy", "video_id": "video10959", "sen_id": 251940}, {"caption": "a small kid is playing as other kid in yellow t-shirt looks like exercising", "video_id": "video10959", "sen_id": 251941}, {"caption": "a young boy is wearing a cowboy hat and standing by a dark sofa", "video_id": "video10959", "sen_id": 251942}, {"caption": "a child wearing a cap and playing in the home", "video_id": "video10959", "sen_id": 251943}, {"caption": "a little boy plays with his toys wearing a cowboy hat", "video_id": "video10959", "sen_id": 251944}, {"caption": "a little boy is a green shirt and cowboy hat talks to an adult", "video_id": "video10959", "sen_id": 251945}, {"caption": "a kid is playing with his toys and talking to that", "video_id": "video10959", "sen_id": 251946}, {"caption": "home video recordings of a toddler boy wearing a cowboy hat", "video_id": "video10959", "sen_id": 251947}, {"caption": "two kids are playing and intreacting with some one", "video_id": "video10959", "sen_id": 251948}, {"caption": "a small kid is talking to its parents and they are enjoying it so much", "video_id": "video10959", "sen_id": 251949}, {"caption": "a kid in a hat is being filmed 14 years ago", "video_id": "video10959", "sen_id": 251950}, {"caption": "a child in a cowboy hat plays in his living room", "video_id": "video10959", "sen_id": 251951}, {"caption": "a small kid playing and interacting with the person behind the camara", "video_id": "video10959", "sen_id": 251952}, {"caption": "the small kid is having fun in the living room", "video_id": "video10959", "sen_id": 251953}, {"caption": "a kid in a hat is standing in a room", "video_id": "video10959", "sen_id": 251954}, {"caption": "a boy in a home video in a cowboy hat answers how old he is when a woman asks him", "video_id": "video10959", "sen_id": 251955}, {"caption": "a baby in a cowboy hat playing with a toy figurine of woody from toy story", "video_id": "video10959", "sen_id": 251956}, {"caption": "a baby wearing a hat talks to his mom about his 3rd birthday", "video_id": "video10959", "sen_id": 251957}, {"caption": "the kid is wonderful with the hat on his head answer to the question of the lady", "video_id": "video10959", "sen_id": 251958}, {"caption": "a kid with a hat is standing in side", "video_id": "video10959", "sen_id": 251959}, {"caption": "a female reporter voices over a night scene of a raid in belgium", "video_id": "video12087", "sen_id": 251960}, {"caption": "footage on the bbc news of raids happening in belgium", "video_id": "video12087", "sen_id": 251961}, {"caption": "a breaking news story of a fire in an apartment is developing", "video_id": "video12087", "sen_id": 251962}, {"caption": "a raid is taking place in the country of belgium", "video_id": "video12087", "sen_id": 251963}, {"caption": "there is breaking news in belgium that there is a raid and a bomb disposal team at the scene", "video_id": "video12087", "sen_id": 251964}, {"caption": "stay tuned as we bring you the latest news of the attack in belgium", "video_id": "video12087", "sen_id": 251965}, {"caption": "a video about a raid in belgium with a woman s voice behind", "video_id": "video12087", "sen_id": 251966}, {"caption": "a news channel is broadcasting pictures of a raid in belgium", "video_id": "video12087", "sen_id": 251967}, {"caption": "gunshots heard from a house in belgium while the whole street is in darkness", "video_id": "video12087", "sen_id": 251968}, {"caption": "a terrorist attack is being filmed at night", "video_id": "video12087", "sen_id": 251969}, {"caption": "there is a women talking from the street", "video_id": "video12087", "sen_id": 251970}, {"caption": "sky new breaking news gelgium raids bomb disposal unit", "video_id": "video12087", "sen_id": 251971}, {"caption": "a news short on attacks being conducted in belgium", "video_id": "video12087", "sen_id": 251972}, {"caption": "a house on fire with people screaming outside in the background", "video_id": "video12087", "sen_id": 251973}, {"caption": "some cops are killing terrorists in a place", "video_id": "video12087", "sen_id": 251974}, {"caption": "a breaking news story that is filmed at night", "video_id": "video12087", "sen_id": 251975}, {"caption": "a tv channel is playing a breaking news", "video_id": "video12087", "sen_id": 251976}, {"caption": "breaking news depicts belgium raids in europe", "video_id": "video12087", "sen_id": 251977}, {"caption": "footage from a news channel as gunshots and other chaos can be heard in the background", "video_id": "video12087", "sen_id": 251978}, {"caption": "the news is showing some cops doing things", "video_id": "video12087", "sen_id": 251979}, {"caption": "people skiing do intense tricks down a ski slope", "video_id": "video11718", "sen_id": 251980}, {"caption": "a compilation of people skiing down a snowy mountain it is a sunny day", "video_id": "video11718", "sen_id": 251981}, {"caption": "there is a man doing some tricks on the skateboard with friends", "video_id": "video11718", "sen_id": 251982}, {"caption": "person performing some tricks on the snow", "video_id": "video11718", "sen_id": 251983}, {"caption": "snowboarders are doing tricks on a huge ice slope", "video_id": "video11718", "sen_id": 251984}, {"caption": "snow skier with green pants and bright yellow and black jacket is seen he has on a white helmet and is seen doing a stunt where he does a back flip after a few feet of gliding", "video_id": "video11718", "sen_id": 251985}, {"caption": "guy skying on the icy mountain and showing his skills", "video_id": "video11718", "sen_id": 251986}, {"caption": "there is a man doing some tricks on the skateboard", "video_id": "video11718", "sen_id": 251987}, {"caption": "several people on skis are doing flips and tricks down a snow covered covered hill", "video_id": "video11718", "sen_id": 251988}, {"caption": "one man skating in the snow mountain very fastly", "video_id": "video11718", "sen_id": 251989}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video11718", "sen_id": 251990}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video11718", "sen_id": 251991}, {"caption": "a man running on the snow", "video_id": "video11718", "sen_id": 251992}, {"caption": "a skier in a bright yellow jacket performs tricks on a mountain", "video_id": "video11718", "sen_id": 251993}, {"caption": "a group of people are skiing on a slope", "video_id": "video11718", "sen_id": 251994}, {"caption": "a skiier does flips and tricks on the slopes", "video_id": "video11718", "sen_id": 251995}, {"caption": "a man sketting on the snow using the skies", "video_id": "video11718", "sen_id": 251996}, {"caption": "a person is skiing down a hill and doing several tricks", "video_id": "video11718", "sen_id": 251997}, {"caption": "snow skating its amazing the man in yellow dress does the skating super", "video_id": "video11718", "sen_id": 251998}, {"caption": "people ski down the mountain and do cool aerial flips", "video_id": "video11718", "sen_id": 251999}, {"caption": "women in a boutique describe other women that they're viewing from their laptop", "video_id": "video11029", "sen_id": 252000}, {"caption": "two women sitting by a table having an informal meeting", "video_id": "video11029", "sen_id": 252001}, {"caption": "a woman talks about fashion while looking at a computer", "video_id": "video11029", "sen_id": 252002}, {"caption": "two nicely dressed women discussing the fashion of their contestants", "video_id": "video11029", "sen_id": 252003}, {"caption": "two women sit in a boutique and discuss other women's outfits that they're viewing on a tablet", "video_id": "video11029", "sen_id": 252004}, {"caption": "there is a women in pink dress sitting and doing something on mobile phone", "video_id": "video11029", "sen_id": 252005}, {"caption": "two woman sitting at a table are talking about style", "video_id": "video11029", "sen_id": 252006}, {"caption": "in a dress shoptwo ladies sits on the chair and talks behind them there are set of dress in the hanger", "video_id": "video11029", "sen_id": 252007}, {"caption": "two ladies were talking about the some thing in the tab", "video_id": "video11029", "sen_id": 252008}, {"caption": "sexy brunette talking about fashion and clothes", "video_id": "video11029", "sen_id": 252009}, {"caption": "a cute lady is talking to another one with curly hair", "video_id": "video11029", "sen_id": 252010}, {"caption": "one beautiful women watching tablet behind her many dress", "video_id": "video11029", "sen_id": 252011}, {"caption": "two women discuss the fashion of another woman they are viewing on a tablet", "video_id": "video11029", "sen_id": 252012}, {"caption": "a woman with a tablet is talking about something to another woman", "video_id": "video11029", "sen_id": 252013}, {"caption": "a couple of women are sitting and talking", "video_id": "video11029", "sen_id": 252014}, {"caption": "a woman with brown hair talks about clothes to a woman with curly black hair", "video_id": "video11029", "sen_id": 252015}, {"caption": "two women speaking in home and relaxing funs", "video_id": "video11029", "sen_id": 252016}, {"caption": "two ladies discussing fashion while looking on tablet at another contestant", "video_id": "video11029", "sen_id": 252017}, {"caption": "two girls one is curly haired very modern and other is very simplediscussing about they view an image on a tablet", "video_id": "video11029", "sen_id": 252018}, {"caption": "two women are sitting down and talking", "video_id": "video11029", "sen_id": 252019}, {"caption": "woman in a black bikini walking up to a man sitting by a pool", "video_id": "video11606", "sen_id": 252020}, {"caption": "money and other valuable items are at the focus of the screen while multiple gambling cheating methods are shown", "video_id": "video11606", "sen_id": 252021}, {"caption": "music is playing while different clips of a will smith movies are shown", "video_id": "video11606", "sen_id": 252022}, {"caption": "a man is singing a song and a people are walking", "video_id": "video11606", "sen_id": 252023}, {"caption": "people are counting the money then they keep those money in the bag", "video_id": "video11606", "sen_id": 252024}, {"caption": "a clip from a movie starring will smith where there is a lot of money", "video_id": "video11606", "sen_id": 252025}, {"caption": "its a hollywood film trailer action movie", "video_id": "video11606", "sen_id": 252026}, {"caption": "on the gambling and the hotel the beautiful girls are prsenting in the room", "video_id": "video11606", "sen_id": 252027}, {"caption": "a group of people work at different methods to cheat casinos out of money", "video_id": "video11606", "sen_id": 252028}, {"caption": "a man driving and singing in a beach", "video_id": "video11606", "sen_id": 252029}, {"caption": "butch of people stealing in a movie and showing their skills to do more", "video_id": "video11606", "sen_id": 252030}, {"caption": "there is a suit man walking with his woman", "video_id": "video11606", "sen_id": 252031}, {"caption": "in a hollywood movie one man talks to another", "video_id": "video11606", "sen_id": 252032}, {"caption": "some people are playing cards a man is walking with a girl and a man drives a car", "video_id": "video11606", "sen_id": 252033}, {"caption": "a man is singing while some people do various things", "video_id": "video11606", "sen_id": 252034}, {"caption": "wills smith goes to the casino with his lady friend", "video_id": "video11606", "sen_id": 252035}, {"caption": "in a hollywood movie one man talks to another woman", "video_id": "video11606", "sen_id": 252036}, {"caption": "a group of people work on various methods to cheat at gambling", "video_id": "video11606", "sen_id": 252037}, {"caption": "a song is playing in background and so many people are rounding and doing their works", "video_id": "video11606", "sen_id": 252038}, {"caption": "a man is talking and more peoples are in the road", "video_id": "video11606", "sen_id": 252039}, {"caption": "a woman wearing a glittered bathing suit and a glitter wig dancing around", "video_id": "video10547", "sen_id": 252040}, {"caption": "a woman with a silver wig is singing and dancing on stage", "video_id": "video10547", "sen_id": 252041}, {"caption": "a models posing to the camera in different angels", "video_id": "video10547", "sen_id": 252042}, {"caption": "there is a woman singing a song with loud music", "video_id": "video10547", "sen_id": 252043}, {"caption": "a woman is posing in a bikini while music plays", "video_id": "video10547", "sen_id": 252044}, {"caption": "woman wearing sunglasses and a silver wig posing in a dark room and singing show me your teeth", "video_id": "video10547", "sen_id": 252045}, {"caption": "a women in black glass is dancing and singing", "video_id": "video10547", "sen_id": 252046}, {"caption": "a woman with glittery lips asks to see someone s teeth", "video_id": "video10547", "sen_id": 252047}, {"caption": "an album song a girl with eyeglasses singing a song", "video_id": "video10547", "sen_id": 252048}, {"caption": "sexy blonde singer dancing and singing in her music video", "video_id": "video10547", "sen_id": 252049}, {"caption": "a women in heavy make up and dark glases is singing", "video_id": "video10547", "sen_id": 252050}, {"caption": "a lady with curious costumes is dancing and playing", "video_id": "video10547", "sen_id": 252051}, {"caption": "a woman with glamours dress singing in the stage", "video_id": "video10547", "sen_id": 252052}, {"caption": "a beauty cute girl is dancing for a music", "video_id": "video10547", "sen_id": 252053}, {"caption": "a woman in a wig is singing a song about something", "video_id": "video10547", "sen_id": 252054}, {"caption": "there is a hot women singing loudly with perfect voice", "video_id": "video10547", "sen_id": 252055}, {"caption": "a girl white color dressed singing and dancing", "video_id": "video10547", "sen_id": 252056}, {"caption": "a woman with a tinsel wig is singing and dancing", "video_id": "video10547", "sen_id": 252057}, {"caption": "a lady with a wig and white bikini dances next to a stage curtain", "video_id": "video10547", "sen_id": 252058}, {"caption": "a woman is dancing and singing a song", "video_id": "video10547", "sen_id": 252059}, {"caption": "an indian man in a yellow tie speaks to an interviewer on a news program", "video_id": "video11966", "sen_id": 252060}, {"caption": "a woman interviewing a man about affairs in south africa", "video_id": "video11966", "sen_id": 252061}, {"caption": "a man is sitting and speaking to a woman on news cast", "video_id": "video11966", "sen_id": 252062}, {"caption": "a news reader interviewing a man in the news program", "video_id": "video11966", "sen_id": 252063}, {"caption": "a woman interviews a man wearing a yellow tie and glasses", "video_id": "video11966", "sen_id": 252064}, {"caption": "some interview is going on about the economic development of the country", "video_id": "video11966", "sen_id": 252065}, {"caption": "a man in black suit is talking to a women", "video_id": "video11966", "sen_id": 252066}, {"caption": "a news reporter asks an analyst a question about political progress in a country", "video_id": "video11966", "sen_id": 252067}, {"caption": "a woman is interviewing a man on a television show", "video_id": "video11966", "sen_id": 252068}, {"caption": "guy in glasses wearing suit and tie is talking pretty brunette on tv", "video_id": "video11966", "sen_id": 252069}, {"caption": "there is a suit man talking from the studio", "video_id": "video11966", "sen_id": 252070}, {"caption": "bbc one man is talking about something", "video_id": "video11966", "sen_id": 252071}, {"caption": "a person with the black coat witht the yellow tie is speaking to some person", "video_id": "video11966", "sen_id": 252072}, {"caption": "two people discuss a recent conflict in south africa", "video_id": "video11966", "sen_id": 252073}, {"caption": "a guy in a suit is talking to another person", "video_id": "video11966", "sen_id": 252074}, {"caption": "there is a men and women talking with each other in news room", "video_id": "video11966", "sen_id": 252075}, {"caption": "bbc one man talk to reporter very calmly", "video_id": "video11966", "sen_id": 252076}, {"caption": "a bbc show with a woman talking to a man about a conflict she said ended four years ago", "video_id": "video11966", "sen_id": 252077}, {"caption": "a person is telling about the reconcilition commission of south africa", "video_id": "video11966", "sen_id": 252078}, {"caption": "a man in a suit and tie is talking on tv", "video_id": "video11966", "sen_id": 252079}, {"caption": "a man in a red shirt is playing table tennis with a man in a black shirt", "video_id": "video12901", "sen_id": 252080}, {"caption": "two men play ping pong in an arena", "video_id": "video12901", "sen_id": 252081}, {"caption": "a man in black dress is playing table tennis match with another person", "video_id": "video12901", "sen_id": 252082}, {"caption": "two players are engaged in a terrific rally in table tennis", "video_id": "video12901", "sen_id": 252083}, {"caption": "the two players are playing big rally of table tennis", "video_id": "video12901", "sen_id": 252084}, {"caption": "a two boys in red t shirt and blue t shirt wearing playing table tennis game inside stadium audience watching", "video_id": "video12901", "sen_id": 252085}, {"caption": "ping pong players in black and red tshirt playing against each other in a match", "video_id": "video12901", "sen_id": 252086}, {"caption": "an lively interesting table tennis match makes the spectators wild", "video_id": "video12901", "sen_id": 252087}, {"caption": "the players are playing table tennis match in the stadium", "video_id": "video12901", "sen_id": 252088}, {"caption": "two players in red and blue uniforms are playing table tennis and the audience enjoy it", "video_id": "video12901", "sen_id": 252089}, {"caption": "some people are playing ping pong", "video_id": "video12901", "sen_id": 252090}, {"caption": "the boys are playing table tennis in indoor stadium", "video_id": "video12901", "sen_id": 252091}, {"caption": "people are playing a tennis table match and people are cheering", "video_id": "video12901", "sen_id": 252092}, {"caption": "two men play ping pong at a high level in front of a large crowd", "video_id": "video12901", "sen_id": 252093}, {"caption": "players of two teams are playing table tennis very interestingly with a great applause from the spectators", "video_id": "video12901", "sen_id": 252094}, {"caption": "some people are playing ping pong on a court", "video_id": "video12901", "sen_id": 252095}, {"caption": "there are some basketball players practising basketball on court", "video_id": "video12901", "sen_id": 252096}, {"caption": "the table tennis peoples are playing in tennis court in very well with the help of music", "video_id": "video12901", "sen_id": 252097}, {"caption": "its a table tennis game between the players they play awesome the table is in blue color", "video_id": "video12901", "sen_id": 252098}, {"caption": "a two players are playing table tennis in a court", "video_id": "video12901", "sen_id": 252099}, {"caption": "a man discusses and describes the countryside that he is traveling through", "video_id": "video11321", "sen_id": 252100}, {"caption": "two men in a vehicle are driving on the road across the desert", "video_id": "video11321", "sen_id": 252101}, {"caption": "two men traveling in a black suv are driving down a highway past beautiful rocky terrain", "video_id": "video11321", "sen_id": 252102}, {"caption": "a car drives through the desert on a warm sunny day", "video_id": "video11321", "sen_id": 252103}, {"caption": "out in the desert men exploring the beautiful outdoors", "video_id": "video11321", "sen_id": 252104}, {"caption": "two photographers drive around in a desert landscape and describe it s suitability for background shots", "video_id": "video11321", "sen_id": 252105}, {"caption": "two friends are chasing landscapes from the seats of a car while documenting their way of doing so", "video_id": "video11321", "sen_id": 252106}, {"caption": "a black suv with two men talking inside driving down a road in the desert", "video_id": "video11321", "sen_id": 252107}, {"caption": "a car rides down the road a truck is parked near a mountainside then two people talks and car rides down the road again", "video_id": "video11321", "sen_id": 252108}, {"caption": "men on the travel channel are discussing beautiful landscapes and how frustrating it is that they cannot capture all of the beauty on camera", "video_id": "video11321", "sen_id": 252109}, {"caption": "two men are driving in a black truck through arid land", "video_id": "video11321", "sen_id": 252110}, {"caption": "the men ride in the black jeep on the road pass near the mountains", "video_id": "video11321", "sen_id": 252111}, {"caption": "men in an suv discuss that photographing landscapes never creates an accurate translation of what you see", "video_id": "video11321", "sen_id": 252112}, {"caption": "a guy drives a black truck in the desert road", "video_id": "video11321", "sen_id": 252113}, {"caption": "two men in a car talking about taking pictures of landscapes", "video_id": "video11321", "sen_id": 252114}, {"caption": "two men are riding in a car and talking about ideal landscapes", "video_id": "video11321", "sen_id": 252115}, {"caption": "a black car is driving on the road and two guys are taking pictures of the landscape", "video_id": "video11321", "sen_id": 252116}, {"caption": "a man talks anout a car photos and landscapes", "video_id": "video11321", "sen_id": 252117}, {"caption": "two men drive through a dessert and take pictures of the landscape", "video_id": "video11321", "sen_id": 252118}, {"caption": "a car on the road is driving around", "video_id": "video11321", "sen_id": 252119}, {"caption": "a game character shooting up and destroying a room", "video_id": "video11776", "sen_id": 252120}, {"caption": "man explains about a game while images of the video game are being shown on screen", "video_id": "video11776", "sen_id": 252121}, {"caption": "a preview of a video game and a man talking about it", "video_id": "video11776", "sen_id": 252122}, {"caption": "a man is speaking about news of the videogame overwatch", "video_id": "video11776", "sen_id": 252123}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video11776", "sen_id": 252124}, {"caption": "there is a robot fighting against someone in a palace", "video_id": "video11776", "sen_id": 252125}, {"caption": "british flag flying and the cartoon hits on the gun and shoots someone", "video_id": "video11776", "sen_id": 252126}, {"caption": "a game enthusiast and critic explains about a brand new game being launched by the presenters", "video_id": "video11776", "sen_id": 252127}, {"caption": "description about a brand new ipad series and gaming techniques", "video_id": "video11776", "sen_id": 252128}, {"caption": "a brand-new game by blizzard is being announced", "video_id": "video11776", "sen_id": 252129}, {"caption": "a large robot is attacking another character and a turret in a computer game", "video_id": "video11776", "sen_id": 252130}, {"caption": "a large monster attacks a smaller monster inside a lit circle", "video_id": "video11776", "sen_id": 252131}, {"caption": "the british flag waving and winston fighting with guns", "video_id": "video11776", "sen_id": 252132}, {"caption": "a man playing a new video game and describing what it is", "video_id": "video11776", "sen_id": 252133}, {"caption": "a demon attacks an ninja in a room another monsters prepares to attack while its assailed by a machine gun", "video_id": "video11776", "sen_id": 252134}, {"caption": "a man is giving his opinion of a first person shooter video game", "video_id": "video11776", "sen_id": 252135}, {"caption": "a man is describing a brand new game introduced by blizzard while you are watching a clip of the game", "video_id": "video11776", "sen_id": 252136}, {"caption": "a man is speaking about a brand new game", "video_id": "video11776", "sen_id": 252137}, {"caption": "the big red devil is fighting with other opponents", "video_id": "video11776", "sen_id": 252138}, {"caption": "a person is playing a video game and discussing it", "video_id": "video11776", "sen_id": 252139}, {"caption": "a man sits at his television explaining something about the show the leftovers", "video_id": "video11884", "sen_id": 252140}, {"caption": "a bearded young man gestures to a flat screen tv while speaking a foreign language", "video_id": "video11884", "sen_id": 252141}, {"caption": "there is a man in black dressing talking in front of a screen", "video_id": "video11884", "sen_id": 252142}, {"caption": "the man is talking while seated with the television infront of him", "video_id": "video11884", "sen_id": 252143}, {"caption": "a man in a blue shirt is describing a movie playing on his computer monitor", "video_id": "video11884", "sen_id": 252144}, {"caption": "a bearded man talking in german while sitting in a room with at tv and three posters", "video_id": "video11884", "sen_id": 252145}, {"caption": "a man in t-shirt watching television and saying something", "video_id": "video11884", "sen_id": 252146}, {"caption": "there is a tshirt man talking in front of a monitor", "video_id": "video11884", "sen_id": 252147}, {"caption": "a man is sitting into a seat and pointing to a video on the television", "video_id": "video11884", "sen_id": 252148}, {"caption": "commenting on a film by a viewing man while the film is running in the tv", "video_id": "video11884", "sen_id": 252149}, {"caption": "a man with beard is saying something looking at the tv screen", "video_id": "video11884", "sen_id": 252150}, {"caption": "a man with a beard sit in front of his tv and talks about his best movies", "video_id": "video11884", "sen_id": 252151}, {"caption": "one black dressed vip is describing about the new comer: the left overs (2014) the movie is going on in the led tv mounted on the wall", "video_id": "video11884", "sen_id": 252152}, {"caption": "a man with a thick beard tells a story while he gestures often with his left hand", "video_id": "video11884", "sen_id": 252153}, {"caption": "bearded guy in grey tshirt talking to the camera", "video_id": "video11884", "sen_id": 252154}, {"caption": "a person showing us on tv and expaning", "video_id": "video11884", "sen_id": 252155}, {"caption": "a man seated next to screan", "video_id": "video11884", "sen_id": 252156}, {"caption": "new comer: the left overs 2014 a man in monitor", "video_id": "video11884", "sen_id": 252157}, {"caption": "a man is sitting in a chair and talking while a tv plays behind him", "video_id": "video11884", "sen_id": 252158}, {"caption": "a man with a beard is sitting at his desk", "video_id": "video11884", "sen_id": 252159}, {"caption": "a girl talking about her pet hampster running in the wheel", "video_id": "video10201", "sen_id": 252160}, {"caption": "three hamsters running around in a cage one is on the spinning wheel", "video_id": "video10201", "sen_id": 252161}, {"caption": "a girl is showing us some rodents running around with one of them running in a wheel", "video_id": "video10201", "sen_id": 252162}, {"caption": "looking at an empty cage with pet bedding then panning right to see two small hamsters one of which is running on a wheel", "video_id": "video10201", "sen_id": 252163}, {"caption": "a hamster running in a wheel and some other hamster around it", "video_id": "video10201", "sen_id": 252164}, {"caption": "two hamsters run in their exercise wheel and play in cedar chips under a plastic pink igloo", "video_id": "video10201", "sen_id": 252165}, {"caption": "hamsters are running around inside the hamster wheel and tank", "video_id": "video10201", "sen_id": 252166}, {"caption": "a little kid is recording their hamsters playing on the hamster wheel", "video_id": "video10201", "sen_id": 252167}, {"caption": "a girl talks and two rodents walk around with cedar clippings around them", "video_id": "video10201", "sen_id": 252168}, {"caption": "a video of hamsters playing in their cage", "video_id": "video10201", "sen_id": 252169}, {"caption": "hamsters running in and around a hamster wheel", "video_id": "video10201", "sen_id": 252170}, {"caption": "three baby hamsters in a cage with a blue colored hamster wheel in use", "video_id": "video10201", "sen_id": 252171}, {"caption": "two rats rotating in blue coated both they eat so many things", "video_id": "video10201", "sen_id": 252172}, {"caption": "a hamster running on a hamster wheel while other hamsters play around it", "video_id": "video10201", "sen_id": 252173}, {"caption": "some rodents are in a cage and running", "video_id": "video10201", "sen_id": 252174}, {"caption": "a young person is filming and describing her hamsters interacting in a cage and running on a hamster wheel", "video_id": "video10201", "sen_id": 252175}, {"caption": "a lady explaining about the rats doing something funny near the food storage", "video_id": "video10201", "sen_id": 252176}, {"caption": "a child is showing the hamsters running around", "video_id": "video10201", "sen_id": 252177}, {"caption": "a hamster is seen running on a blue and white wheel while a female voice narrates in the background two other hamsters are seen running near the blue wheel where the previous hamster was running", "video_id": "video10201", "sen_id": 252178}, {"caption": "a girl shows off her hamster cage", "video_id": "video10201", "sen_id": 252179}, {"caption": "a man describes and demonstrates a car he is test driving", "video_id": "video11368", "sen_id": 252180}, {"caption": "a car speeds down the road while the driver exudes excitement over driving", "video_id": "video11368", "sen_id": 252181}, {"caption": "several black luxury cars race the road alongside an ocean side cliff", "video_id": "video11368", "sen_id": 252182}, {"caption": "few higher end model cars going on the hill station roads in high speed", "video_id": "video11368", "sen_id": 252183}, {"caption": "several cars race down a track alongside a cliff", "video_id": "video11368", "sen_id": 252184}, {"caption": "cars go zoming by on the thin road", "video_id": "video11368", "sen_id": 252185}, {"caption": "there is a check shirt man riding a car", "video_id": "video11368", "sen_id": 252186}, {"caption": "a driver is moving fast while passing cars or following single file on the center of a mountain road with a low partition between a rocky slope and a deep drop", "video_id": "video11368", "sen_id": 252187}, {"caption": "race car drivers drive exotic cars down a mountain side road", "video_id": "video11368", "sen_id": 252188}, {"caption": "a mercidez benz car is flying high in the air and the person is riding very fast and in pride also", "video_id": "video11368", "sen_id": 252189}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video11368", "sen_id": 252190}, {"caption": " in a blue-and-white plaid shirt and jeans has both hands on a black steering wheel and his mouth open as greenery and tan road pass by in a blur out the driver s window", "video_id": "video11368", "sen_id": 252191}, {"caption": "a fast mercedes is racing down a highway alongside other extremely fast cars", "video_id": "video11368", "sen_id": 252192}, {"caption": "several black cars are speeding down a road", "video_id": "video11368", "sen_id": 252193}, {"caption": "bunch of cars in the racing track trying to win the race", "video_id": "video11368", "sen_id": 252194}, {"caption": "three cars running fastly on a high way", "video_id": "video11368", "sen_id": 252195}, {"caption": "bbc one man in car talking about something big road", "video_id": "video11368", "sen_id": 252196}, {"caption": "two black cars are racing on a clear road", "video_id": "video11368", "sen_id": 252197}, {"caption": "a car moving on road fast beside cars moving an old man in checks shirt wearing driving fast displaying on screen", "video_id": "video11368", "sen_id": 252198}, {"caption": "some one is driving on a mountain road", "video_id": "video11368", "sen_id": 252199}, {"caption": "many pictures of beautiful women with different colored hair set to spanish music", "video_id": "video11687", "sen_id": 252200}, {"caption": "a woman wearing a tight black dress takes a selfie using her smart phone", "video_id": "video11687", "sen_id": 252201}, {"caption": "a girl wearing black holding a white phone towards a mirror and taking a picture", "video_id": "video11687", "sen_id": 252202}, {"caption": "a young woman with long hair taking sexy selfies", "video_id": "video11687", "sen_id": 252203}, {"caption": "a woman with blonde hair and red lipstick smiling", "video_id": "video11687", "sen_id": 252204}, {"caption": "there is a woman with brown hair taking selfie", "video_id": "video11687", "sen_id": 252205}, {"caption": "several different models and women in poses showing off their beauty", "video_id": "video11687", "sen_id": 252206}, {"caption": "a woman wears outfits in home including black blouse and tshirt", "video_id": "video11687", "sen_id": 252207}, {"caption": "song playing while several selfies of beautiful women cycle through", "video_id": "video11687", "sen_id": 252208}, {"caption": "a girl s modeling image galleries presentation with different styles", "video_id": "video11687", "sen_id": 252209}, {"caption": "a woman is taking different selfie pictures in different poses", "video_id": "video11687", "sen_id": 252210}, {"caption": "hot chicks set to a montage video and song", "video_id": "video11687", "sen_id": 252211}, {"caption": "a song is being played and a girl is posing", "video_id": "video11687", "sen_id": 252212}, {"caption": "music plays while a slideshow of a blonde woman and three brunette women is shown", "video_id": "video11687", "sen_id": 252213}, {"caption": "a woman with brown hair is standing around", "video_id": "video11687", "sen_id": 252214}, {"caption": "some cute ladies appear with different looks of hair style", "video_id": "video11687", "sen_id": 252215}, {"caption": "the various styles and looks of the photo slideshow is shown", "video_id": "video11687", "sen_id": 252216}, {"caption": "music is playing while pictures of women are shown", "video_id": "video11687", "sen_id": 252217}, {"caption": "a series of beautful women fade in and out of black", "video_id": "video11687", "sen_id": 252218}, {"caption": "a woman with curly hair is talking about something", "video_id": "video11687", "sen_id": 252219}, {"caption": "two badmitton players are involved in a match in a large indoor stadium", "video_id": "video11281", "sen_id": 252220}, {"caption": "a man in a red jersey playing competition badminton against a man in a black jersey", "video_id": "video11281", "sen_id": 252221}, {"caption": "a man in black and a man in red battle against each other in tennis", "video_id": "video11281", "sen_id": 252222}, {"caption": "two people are playing shuttle badminton with large crowd watching it", "video_id": "video11281", "sen_id": 252223}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video11281", "sen_id": 252224}, {"caption": "a man with red color shirt is playing shuttle cock with other man", "video_id": "video11281", "sen_id": 252225}, {"caption": "a red and black colour dress player playing game inside batmanton a stadium audience watching", "video_id": "video11281", "sen_id": 252226}, {"caption": "two tennis players one with red suit and the other with black suit are playing interestingly", "video_id": "video11281", "sen_id": 252227}, {"caption": "two persons are playing badmention game", "video_id": "video11281", "sen_id": 252228}, {"caption": "two badminton players play a game surrounded by people inside", "video_id": "video11281", "sen_id": 252229}, {"caption": "one man wearing black and one man in red play badminton while the crowd cheers", "video_id": "video11281", "sen_id": 252230}, {"caption": "two chinese tennis players one in red and the other in black play on an indoor court", "video_id": "video11281", "sen_id": 252231}, {"caption": "a player playing badminton falls on the court while trying to hit the shuttle", "video_id": "video11281", "sen_id": 252232}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video11281", "sen_id": 252233}, {"caption": "the tennis people are playing in the court very well", "video_id": "video11281", "sen_id": 252234}, {"caption": "two men are playing a tennis match for a championship game", "video_id": "video11281", "sen_id": 252235}, {"caption": "a tennis tournament is being shown in the video", "video_id": "video11281", "sen_id": 252236}, {"caption": "badminton players are competing in a court inside", "video_id": "video11281", "sen_id": 252237}, {"caption": "here the two players are having their tennikoit match where one of the player has loss his point by missing the cock", "video_id": "video11281", "sen_id": 252238}, {"caption": "table tennis tournament is played by the players", "video_id": "video11281", "sen_id": 252239}, {"caption": "tupac shukur being engaged to quincy jones daughter", "video_id": "video11231", "sen_id": 252240}, {"caption": "young black man wearing a black hat gold chain and striped jersey", "video_id": "video11231", "sen_id": 252241}, {"caption": "a man standing next to an older man and female resting her head on his shoulder", "video_id": "video11231", "sen_id": 252242}, {"caption": "a man talks about the life of a famous rap star", "video_id": "video11231", "sen_id": 252243}, {"caption": "a man with a thin moustache and chin beard wears a cap backwards a pin-striped baseball uniform with black trim border and a gold necklace while looking directly at the camera", "video_id": "video11231", "sen_id": 252244}, {"caption": "take a moment to look back with us at the life and tragic early passing of tupac", "video_id": "video11231", "sen_id": 252245}, {"caption": "a interview about tupac and his relationship with quincy jones", "video_id": "video11231", "sen_id": 252246}, {"caption": "a man wearing a hat and then a split screen of two men and a woman lying her head on a man", "video_id": "video11231", "sen_id": 252247}, {"caption": "photos of a young african american man with different people", "video_id": "video11231", "sen_id": 252248}, {"caption": "the news reporter telling about the celebrities and viewing the photos of the celebrities", "video_id": "video11231", "sen_id": 252249}, {"caption": "there is a man with a chain smiling on the floor", "video_id": "video11231", "sen_id": 252250}, {"caption": "a man narrates a video about hostility between tupac shakur and quincy jones", "video_id": "video11231", "sen_id": 252251}, {"caption": "a man is talking and various photos are playing", "video_id": "video11231", "sen_id": 252252}, {"caption": "a man is talking about tupak being engaged to quincy jones daughter", "video_id": "video11231", "sen_id": 252253}, {"caption": "discussion of a sexual affair being a rapper and a music director", "video_id": "video11231", "sen_id": 252254}, {"caption": "there is a man with cap smiling on the floor", "video_id": "video11231", "sen_id": 252255}, {"caption": "pictures of tupac shakur and quincy jones are shown while a man theorizes about why tupac was killed", "video_id": "video11231", "sen_id": 252256}, {"caption": "various images of tupoc are shown while a narrator speaks", "video_id": "video11231", "sen_id": 252257}, {"caption": "music artist tupac and quincy jones pictures side by side a image of tupac with a woman", "video_id": "video11231", "sen_id": 252258}, {"caption": "tu pac shaqur was engaged to quincy jones daughter but was asked by quincy jones wanted tu pac to have sex with him", "video_id": "video11231", "sen_id": 252259}, {"caption": "a woman uses a blender and adds ingredients including coconut milk and honey as she comments and gives recipe instructions", "video_id": "video11511", "sen_id": 252260}, {"caption": "a woman adds honey and coconut milk to watermelon puree in a food processor", "video_id": "video11511", "sen_id": 252261}, {"caption": "someone in a blue shirt is blending ingredients in a blender", "video_id": "video11511", "sen_id": 252262}, {"caption": "a woman is pouring items into a puree inside of a blender", "video_id": "video11511", "sen_id": 252263}, {"caption": "a woman is adding ingredients to a blender while her dogs watch", "video_id": "video11511", "sen_id": 252264}, {"caption": "someone is adding coconut milk into the blender that contains red water melon juice on the kitchen counter while two huskies are watching", "video_id": "video11511", "sen_id": 252265}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11511", "sen_id": 252266}, {"caption": "a chef combines ingredients in a blender with pink liquid in it", "video_id": "video11511", "sen_id": 252267}, {"caption": "a women adding honey and milk in mixer jar and explaining the procedure", "video_id": "video11511", "sen_id": 252268}, {"caption": "a lady is making joose with mixing honey and lemon in joose", "video_id": "video11511", "sen_id": 252269}, {"caption": "a lady wearing blue t-shirt is preparing a juice with honey and coconut milk", "video_id": "video11511", "sen_id": 252270}, {"caption": "woman takes the lid of mixer out and adds honey and coconut milk to the juice in the jar", "video_id": "video11511", "sen_id": 252271}, {"caption": "the person adds ingredients to the large blender", "video_id": "video11511", "sen_id": 252272}, {"caption": "one women make a recipe in tomato adding coconut milk", "video_id": "video11511", "sen_id": 252273}, {"caption": "preparation process of ice cream is done by the lady wearing blue jacket the cream is ready for freezing", "video_id": "video11511", "sen_id": 252274}, {"caption": "a lady adds one cup of coconut water and some honey to the juice", "video_id": "video11511", "sen_id": 252275}, {"caption": "a woman is adding ingredients to a blender while dogs watch", "video_id": "video11511", "sen_id": 252276}, {"caption": "a lady is adding coconut milk to the juice mixer in a jar", "video_id": "video11511", "sen_id": 252277}, {"caption": "a women is making water melon juice by adding honey and coconut milk in the juice", "video_id": "video11511", "sen_id": 252278}, {"caption": "a person is pouring some milk into a blender", "video_id": "video11511", "sen_id": 252279}, {"caption": "a man describes and demonstrates a video game that he is playing", "video_id": "video11739", "sen_id": 252280}, {"caption": "white and purple race car driving on a track in a video game", "video_id": "video11739", "sen_id": 252281}, {"caption": "a man narrates how to correctly race in a video game", "video_id": "video11739", "sen_id": 252282}, {"caption": "a gray racecar travels on a paved track past green trees casting a shadow on the road the car makes a right turn and then a left turn and the car passes a brick building while approaching a white shed", "video_id": "video11739", "sen_id": 252283}, {"caption": "a man is paying and talking about a video game", "video_id": "video11739", "sen_id": 252284}, {"caption": "a race car is speeding through a track being driven by someone with blue gloves on", "video_id": "video11739", "sen_id": 252285}, {"caption": "a video game of a sports car is being raced on a track", "video_id": "video11739", "sen_id": 252286}, {"caption": "car race begins one car is looking for ready to win", "video_id": "video11739", "sen_id": 252287}, {"caption": "a animation video game of car race the car runs fast", "video_id": "video11739", "sen_id": 252288}, {"caption": "a racing car moving fast on the track with commentary on the background", "video_id": "video11739", "sen_id": 252289}, {"caption": "a racing car moving through the track in a sunny day", "video_id": "video11739", "sen_id": 252290}, {"caption": "a man speaks while navigating a car in a video game", "video_id": "video11739", "sen_id": 252291}, {"caption": "car race timing with the ranking of scores", "video_id": "video11739", "sen_id": 252292}, {"caption": "its a car video game the car turns right it has black wheel", "video_id": "video11739", "sen_id": 252293}, {"caption": "a race car is driving around on a track", "video_id": "video11739", "sen_id": 252294}, {"caption": "car is running very very fast on road", "video_id": "video11739", "sen_id": 252295}, {"caption": "a tutorial giving tips on a race car driving game", "video_id": "video11739", "sen_id": 252296}, {"caption": "a car is moving fast in the animation film", "video_id": "video11739", "sen_id": 252297}, {"caption": "a person with sea-green color hands is driving a race car on a long road", "video_id": "video11739", "sen_id": 252298}, {"caption": "a race car is quickly driving on a track", "video_id": "video11739", "sen_id": 252299}, {"caption": "a man describes the results of a math problem that he has been working on", "video_id": "video11484", "sen_id": 252300}, {"caption": "a graph of crossed lines at the bottom and a graph of a cuved line", "video_id": "video11484", "sen_id": 252301}, {"caption": "a man in a suit discusses the curves on two graphs", "video_id": "video11484", "sen_id": 252302}, {"caption": "a man in a sports coat discusses the comparison between two graphs", "video_id": "video11484", "sen_id": 252303}, {"caption": "a man explaining two graphs and marginal benefit", "video_id": "video11484", "sen_id": 252304}, {"caption": "a picture of two seperate graphs sitting side by side", "video_id": "video11484", "sen_id": 252305}, {"caption": "a man shows two graphs on a blue screen", "video_id": "video11484", "sen_id": 252306}, {"caption": "a man explains two graphs that are side by side", "video_id": "video11484", "sen_id": 252307}, {"caption": "a blue screen with two graphs that are being compared", "video_id": "video11484", "sen_id": 252308}, {"caption": "a man is speaking in front of two mathematical graphs", "video_id": "video11484", "sen_id": 252309}, {"caption": "a man is talking about the different graphs", "video_id": "video11484", "sen_id": 252310}, {"caption": "a man in a suit is standing next to a large display screen with graphs on them indicating increases and decreases in units over time", "video_id": "video11484", "sen_id": 252311}, {"caption": "a man in a black jacket explains two graphs one with two intersecting curves and one with a single inverted u-shaped curve", "video_id": "video11484", "sen_id": 252312}, {"caption": "economics expert asks us to consider two graphs", "video_id": "video11484", "sen_id": 252313}, {"caption": "a professor shows two graphs one with two curves which cross and the other a parabola pointing down", "video_id": "video11484", "sen_id": 252314}, {"caption": "a man describes the difference in two graphs", "video_id": "video11484", "sen_id": 252315}, {"caption": "a person sitting down and talking", "video_id": "video11484", "sen_id": 252316}, {"caption": "a line graph shows the progress of a products sales", "video_id": "video11484", "sen_id": 252317}, {"caption": "a person is explaining the graphs being displayed on the screen", "video_id": "video11484", "sen_id": 252318}, {"caption": "a gentleman with black dress is explaining about two different graphs", "video_id": "video11484", "sen_id": 252319}, {"caption": "a young child in jeans and a blue jacket hits a plastic ball off of a tee", "video_id": "video12413", "sen_id": 252320}, {"caption": "a small boy swinging a plastic bat", "video_id": "video12413", "sen_id": 252321}, {"caption": "a little boy hitting a tee ball with one of his parents", "video_id": "video12413", "sen_id": 252322}, {"caption": "a little boy has success hitting a ball off a tee with his left side dominant", "video_id": "video12413", "sen_id": 252323}, {"caption": "a mother showing a baby bot how to hit a ball with a bat", "video_id": "video12413", "sen_id": 252324}, {"caption": "a parent hands a young boy a baseball bat and he hits a ball off of a baseball tee", "video_id": "video12413", "sen_id": 252325}, {"caption": "there is a kid hitting hard on a ball", "video_id": "video12413", "sen_id": 252326}, {"caption": "a mother and child practice batting with a yellow bat white ball red pole and blue base in a patio covered in large gray squares", "video_id": "video12413", "sen_id": 252327}, {"caption": "a mother is giving base ball bat to the boy", "video_id": "video12413", "sen_id": 252328}, {"caption": "a little boy swings a bat and hts the ball with his baseball toy", "video_id": "video12413", "sen_id": 252329}, {"caption": "a guy and a kid are outside playing around", "video_id": "video12413", "sen_id": 252330}, {"caption": "an adult tries to teach a very young boy to use a bat to hit a ball perched on a pedestal", "video_id": "video12413", "sen_id": 252331}, {"caption": "an little boy hitting the ball with bat", "video_id": "video12413", "sen_id": 252332}, {"caption": "a young boy hits a whiffle ball off of a tee in his yard", "video_id": "video12413", "sen_id": 252333}, {"caption": "the mother trains his son on base ball to hit the ball on the stump with right hand boy very easily hits with his left hand", "video_id": "video12413", "sen_id": 252334}, {"caption": "a little kid is swinging a yellow base ball bat", "video_id": "video12413", "sen_id": 252335}, {"caption": "the father and baby playing the cricket suddenly the baby is attck all the toys", "video_id": "video12413", "sen_id": 252336}, {"caption": "a child is playing with a stick and hitting everything", "video_id": "video12413", "sen_id": 252337}, {"caption": "a child and his mother play with a wiffle ball bat", "video_id": "video12413", "sen_id": 252338}, {"caption": "the cute little baby is playing with a yellow bat and hitting on the red stump", "video_id": "video12413", "sen_id": 252339}, {"caption": "a tutorial on how to cut fabric a certain way", "video_id": "video12496", "sen_id": 252340}, {"caption": "a woman takes measurements on a piece of fabric and then cuts the fabric", "video_id": "video12496", "sen_id": 252341}, {"caption": "measuring out a fabric to insert a straight cut line", "video_id": "video12496", "sen_id": 252342}, {"caption": "a woman measuring a purple fabric and then cutting through it", "video_id": "video12496", "sen_id": 252343}, {"caption": "a video graphic with a female voiceover and hands that illustrate and tell the viewing audience how to cut the burgundy fabric", "video_id": "video12496", "sen_id": 252344}, {"caption": "a women measuring the red cloth with a tape in her hand", "video_id": "video12496", "sen_id": 252345}, {"caption": "a woman is measuring and cutting a piece of red cloth", "video_id": "video12496", "sen_id": 252346}, {"caption": "a woman showing how to measure and cut fabric", "video_id": "video12496", "sen_id": 252347}, {"caption": "a woman measures a large piece of red fabric she describes how best to measure and cut the fabric before doing so herself", "video_id": "video12496", "sen_id": 252348}, {"caption": "there is a woman measuring a piece of fabric using measuring tape and cutting the red fabric", "video_id": "video12496", "sen_id": 252349}, {"caption": "a woman measures red fabric before cutting it along a line she created", "video_id": "video12496", "sen_id": 252350}, {"caption": "a person measuring a cloth and cut into pieces by using scissor may be a tailor", "video_id": "video12496", "sen_id": 252351}, {"caption": "a woman measuing and cutting a piece of red fabric", "video_id": "video12496", "sen_id": 252352}, {"caption": "a girl is measuring a piece of fabric laying on the floor", "video_id": "video12496", "sen_id": 252353}, {"caption": "a person measures the red color cloth and cut the marking are by scissor", "video_id": "video12496", "sen_id": 252354}, {"caption": "a woman measures a piece of red fabric then slices the fabric", "video_id": "video12496", "sen_id": 252355}, {"caption": "someone measuring the cloths by using scale and cutting the cloth on mark", "video_id": "video12496", "sen_id": 252356}, {"caption": "a woman measures a large piece of red cloth to be cut with a scissors", "video_id": "video12496", "sen_id": 252357}, {"caption": "red fabric on wood floor is measured then cut by a woman", "video_id": "video12496", "sen_id": 252358}, {"caption": "a woman is working on a red cloth", "video_id": "video12496", "sen_id": 252359}, {"caption": "young women in fashionable clothing are seen modeling classy skirts", "video_id": "video12407", "sen_id": 252360}, {"caption": "woman models fashion looks including a floral pattern skirt", "video_id": "video12407", "sen_id": 252361}, {"caption": "a slideshow of some fashion tips using stripes", "video_id": "video12407", "sen_id": 252362}, {"caption": "a picture of a young man wearing a floral dress is shown", "video_id": "video12407", "sen_id": 252363}, {"caption": "an asian woman in a black shirt and floral skirt", "video_id": "video12407", "sen_id": 252364}, {"caption": "two girls are being shown with the same fashion styles", "video_id": "video12407", "sen_id": 252365}, {"caption": "a beautiful girl in different kind of skirts on the screen", "video_id": "video12407", "sen_id": 252366}, {"caption": "the video shows a young woman modeling a floral skirt", "video_id": "video12407", "sen_id": 252367}, {"caption": "a model wearing and showing off the skirt which is printed flowers in it two examples of the model wearing it with different tops is shown here to make it look more attractive", "video_id": "video12407", "sen_id": 252368}, {"caption": "there s a young woman in black top and floral skirt and then a young lady in black and white sleeveless top and floral skirt", "video_id": "video12407", "sen_id": 252369}, {"caption": "a pretty woman wearing and black and pink dress", "video_id": "video12407", "sen_id": 252370}, {"caption": "there is a beautiful women in a hot dress", "video_id": "video12407", "sen_id": 252371}, {"caption": "there is a girl with black top", "video_id": "video12407", "sen_id": 252372}, {"caption": "beautiful girl another example with floral skirt stripes are", "video_id": "video12407", "sen_id": 252373}, {"caption": "pretty models posing for the camera and showing the latest designer skirts", "video_id": "video12407", "sen_id": 252374}, {"caption": "there is a black top women inside the room", "video_id": "video12407", "sen_id": 252375}, {"caption": "beautiful womens are wearing the floral skirt for advertisement", "video_id": "video12407", "sen_id": 252376}, {"caption": "a young woman is standing in the advertisement poster", "video_id": "video12407", "sen_id": 252377}, {"caption": "a floral skirt is exhibited by a model posing next to a shopping cart", "video_id": "video12407", "sen_id": 252378}, {"caption": "sexy brunette with her fashionable outfit picture being shown on screen", "video_id": "video12407", "sen_id": 252379}, {"caption": "a famous actor is interviewed about his career", "video_id": "video11153", "sen_id": 252380}, {"caption": "a black man with grey hair is being interviewed", "video_id": "video11153", "sen_id": 252381}, {"caption": "a news host wearing a black suit listens during an interview with a wiry-haired actor wearing a gray outfit on a set with a black background", "video_id": "video11153", "sen_id": 252382}, {"caption": "a man wearing a grey suit talking during an interview", "video_id": "video11153", "sen_id": 252383}, {"caption": "a man in a grey suit is peaking to another man", "video_id": "video11153", "sen_id": 252384}, {"caption": "two men in black suites having a conversation in a room", "video_id": "video11153", "sen_id": 252385}, {"caption": "there is a suit man talking in a interview", "video_id": "video11153", "sen_id": 252386}, {"caption": "the actor morgan freeman is being interviewed by charlie rose", "video_id": "video11153", "sen_id": 252387}, {"caption": "morgan freeman talking about how someone thinks of themselves as a failure instead of a big success", "video_id": "video11153", "sen_id": 252388}, {"caption": "a old man sitting with other man beside speaking discusing on topic displaying on screen", "video_id": "video11153", "sen_id": 252389}, {"caption": "a interview is going on between famous actor on the show", "video_id": "video11153", "sen_id": 252390}, {"caption": "the actor morgan freeman is being interviewed on television by charlie rose and is talking about a certain character he played in a movie", "video_id": "video11153", "sen_id": 252391}, {"caption": "morgan freeman discusses his film role with an interviewer", "video_id": "video11153", "sen_id": 252392}, {"caption": "morgan freeman-the famous actor having interview for television", "video_id": "video11153", "sen_id": 252393}, {"caption": "morgan freeman in a silver grew suit is describing another artist in an interview", "video_id": "video11153", "sen_id": 252394}, {"caption": "a famous american actor is being interviewed by charlie rose", "video_id": "video11153", "sen_id": 252395}, {"caption": "an old man is talking and doing some actions", "video_id": "video11153", "sen_id": 252396}, {"caption": "conversation between the old guy and the middle aged man they talk silentlt", "video_id": "video11153", "sen_id": 252397}, {"caption": "morgan freeman is an actor and old man giving interview to channel", "video_id": "video11153", "sen_id": 252398}, {"caption": "a person is being interviewed by a tv personnel and the person is saying about some enquiries to the media persons", "video_id": "video11153", "sen_id": 252399}, {"caption": "a man in a leather jacket is holding a passport", "video_id": "video10681", "sen_id": 252400}, {"caption": "a man and a woman are doing a cooking demonstration that is being recorded a man comes up and speaks to them he speaks about a book and his jacket while another man comes up and speaks to him also", "video_id": "video10681", "sen_id": 252401}, {"caption": "a man standing behind a light giving an opinion to some chefs", "video_id": "video10681", "sen_id": 252402}, {"caption": "a group of friends talking to each other", "video_id": "video10681", "sen_id": 252403}, {"caption": "a man in a grey shirt is standing at a table and talking about his passport", "video_id": "video10681", "sen_id": 252404}, {"caption": "a man in a brown leather jacket is holding a passport and talking", "video_id": "video10681", "sen_id": 252405}, {"caption": "a man in leather jacket comes to the dining table and says that his jacket was exchanged", "video_id": "video10681", "sen_id": 252406}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10681", "sen_id": 252407}, {"caption": "a man in a brown leather jacket is talking and a man and a woman are laughing", "video_id": "video10681", "sen_id": 252408}, {"caption": "a man is describing how he found a passport and jacket on the street", "video_id": "video10681", "sen_id": 252409}, {"caption": "a man in a brown leather jacket brings back a passport he found on the street to the owner", "video_id": "video10681", "sen_id": 252410}, {"caption": "a man putting on someones jacket and holding a passport which does not belong to him", "video_id": "video10681", "sen_id": 252411}, {"caption": "an old man is talking to people on a film set", "video_id": "video10681", "sen_id": 252412}, {"caption": "two chefs work on a tv type show in an apartment with very large windows", "video_id": "video10681", "sen_id": 252413}, {"caption": "a man informing a group that he found one of their passports and jackets on the street", "video_id": "video10681", "sen_id": 252414}, {"caption": "a man in jacket talking to his friends", "video_id": "video10681", "sen_id": 252415}, {"caption": "a man wearing brown color coat laughing and talking", "video_id": "video10681", "sen_id": 252416}, {"caption": "women standing in the kitchen and men holding his passport telling about his jacket to others", "video_id": "video10681", "sen_id": 252417}, {"caption": "guy showing passport and jacket to a group of people", "video_id": "video10681", "sen_id": 252418}, {"caption": "the cooking area there is a man with passport some others are there", "video_id": "video10681", "sen_id": 252419}, {"caption": "two people playing each other in tennis", "video_id": "video12078", "sen_id": 252420}, {"caption": "two badminton players participate in a game in a large indoor stadium", "video_id": "video12078", "sen_id": 252421}, {"caption": "a man in a yellow shirt and a man with yellow shoes are playing a tennis match", "video_id": "video12078", "sen_id": 252422}, {"caption": "two men playing tennis in front of a crowd", "video_id": "video12078", "sen_id": 252423}, {"caption": "two male tennis players battle a tennis match on a green court while many spectators watch and respond to the game", "video_id": "video12078", "sen_id": 252424}, {"caption": "two men are playing tennis on a green court with a crowd of spectators watching from the stands a sponsors name of yonex is visible on the court and 6 people observe the game from the sidelines the men are actively engaged in the match as they run back and forth on the court with the ball rapidly going from one side of the net to the other", "video_id": "video12078", "sen_id": 252425}, {"caption": "two males are playing badminton against each other on a green court the competitor on the top is wearing yellow and the competitor on the bottom is wearing blue", "video_id": "video12078", "sen_id": 252426}, {"caption": "two people are playing tennis on a large green court", "video_id": "video12078", "sen_id": 252427}, {"caption": "a tennis tournament is taking place between a man and yellow and a man in purple", "video_id": "video12078", "sen_id": 252428}, {"caption": "two men play against each other in a game of tennis", "video_id": "video12078", "sen_id": 252429}, {"caption": "two players are playing badminton match in the gym", "video_id": "video12078", "sen_id": 252430}, {"caption": "two master tennis players are locked in an intense stalemate", "video_id": "video12078", "sen_id": 252431}, {"caption": "badminton players hitting the cock with out loosing a point", "video_id": "video12078", "sen_id": 252432}, {"caption": "two tennis players play a match on the tennis courts on tv", "video_id": "video12078", "sen_id": 252433}, {"caption": "two people are playing against each other in tennis", "video_id": "video12078", "sen_id": 252434}, {"caption": "a yellow and blue color dress players playing game inside stadium batmanton game audience watching clapping hands displaying on screen", "video_id": "video12078", "sen_id": 252435}, {"caption": "tennis game where player in yellow dress plays against player in black dress", "video_id": "video12078", "sen_id": 252436}, {"caption": "two men are on a tennis court playing tennis and spectators are watching", "video_id": "video12078", "sen_id": 252437}, {"caption": "two men play tennis against each other in match", "video_id": "video12078", "sen_id": 252438}, {"caption": "2 badminton players in an official match to win the championship", "video_id": "video12078", "sen_id": 252439}, {"caption": "a man talks about applying principles of chemistry and physics to real life", "video_id": "video12437", "sen_id": 252440}, {"caption": "a man in a pink shirt is talking about chemistry and physics", "video_id": "video12437", "sen_id": 252441}, {"caption": "a series of interviews with professionals aboutscience", "video_id": "video12437", "sen_id": 252442}, {"caption": "scientists describe how the scientific process yields new technologies", "video_id": "video12437", "sen_id": 252443}, {"caption": "a man in a pink shirt is talking about chemistry and physics and a man in is being shown working in a laboratory", "video_id": "video12437", "sen_id": 252444}, {"caption": "some professors are discussing the sciences in their areas of expertise", "video_id": "video12437", "sen_id": 252445}, {"caption": "a group of scientists talking about science and technology", "video_id": "video12437", "sen_id": 252446}, {"caption": "a man educating people on where the good technology comes from", "video_id": "video12437", "sen_id": 252447}, {"caption": "a professor in red dress explains the teaching professions and one more person explains too", "video_id": "video12437", "sen_id": 252448}, {"caption": "professors talking about new technologies that come from science", "video_id": "video12437", "sen_id": 252449}, {"caption": "a man in red t-shirt and wearing spectacles is talking to another person", "video_id": "video12437", "sen_id": 252450}, {"caption": "a man wearing redcolor dress talking with another man", "video_id": "video12437", "sen_id": 252451}, {"caption": "a person in red colored dress explains about materials science and a man doing tests in lab", "video_id": "video12437", "sen_id": 252452}, {"caption": "men are giving interviews about their engineering jobs", "video_id": "video12437", "sen_id": 252453}, {"caption": "different professors talking about new technologies ad new science", "video_id": "video12437", "sen_id": 252454}, {"caption": "some professors were discussing some topic in front of the camera", "video_id": "video12437", "sen_id": 252455}, {"caption": "indian scientist explains the ethos of modern science", "video_id": "video12437", "sen_id": 252456}, {"caption": "a professor and scientist talks about applying science to making the world better", "video_id": "video12437", "sen_id": 252457}, {"caption": "man in red shirt is talking about his experiences", "video_id": "video12437", "sen_id": 252458}, {"caption": "professor carlo pantano and professor venkatraman gopalan talking about new science", "video_id": "video12437", "sen_id": 252459}, {"caption": "men ride in a boat and in a pickup truck driving through a dense forest", "video_id": "video12484", "sen_id": 252460}, {"caption": "a car driving by a person on a forest", "video_id": "video12484", "sen_id": 252461}, {"caption": "man driving in truck in forest area and watching", "video_id": "video12484", "sen_id": 252462}, {"caption": "a man drives a truck in a jungle where a road runs through rubber trees", "video_id": "video12484", "sen_id": 252463}, {"caption": "a news person interviewing a man about the holding camps that are among the rubber trees", "video_id": "video12484", "sen_id": 252464}, {"caption": "a person driving the car in a forest area road", "video_id": "video12484", "sen_id": 252465}, {"caption": "a man in a white truck is driving on a path through a heavily wooded area on the way to his village", "video_id": "video12484", "sen_id": 252466}, {"caption": "one man driving in forest with another man and stops truck", "video_id": "video12484", "sen_id": 252467}, {"caption": "some men ride down a dirt trail in a jeep", "video_id": "video12484", "sen_id": 252468}, {"caption": "on a boat a man wearing an orange vest is fishing while a middle aged man is kneeling and looking at the camera", "video_id": "video12484", "sen_id": 252469}, {"caption": "two persons speaking each other and traveling on the forest", "video_id": "video12484", "sen_id": 252470}, {"caption": "two men are seen on a boat travelling some where and then we can see a car steering through the woods", "video_id": "video12484", "sen_id": 252471}, {"caption": "a guy driving his car in the forest side with his friend", "video_id": "video12484", "sen_id": 252472}, {"caption": "two men fish together on a small row boat", "video_id": "video12484", "sen_id": 252473}, {"caption": "the men drive the truck on the dirt path to a holding camp", "video_id": "video12484", "sen_id": 252474}, {"caption": "there is some one riding a car with friend", "video_id": "video12484", "sen_id": 252475}, {"caption": "a documentary-style clip describing the rubber trees and the abuse of their environment", "video_id": "video12484", "sen_id": 252476}, {"caption": "a man driving a truck through a heavy wooded area on a dirt road", "video_id": "video12484", "sen_id": 252477}, {"caption": "the white car is very beautiful and compliments with the green trees on the road", "video_id": "video12484", "sen_id": 252478}, {"caption": "some people are driving a car in the forest", "video_id": "video12484", "sen_id": 252479}, {"caption": "a woman describes the characteristics of a pair of goldfish she has in a blue bowl", "video_id": "video11371", "sen_id": 252480}, {"caption": "two small fish swimming in a small blue bowl", "video_id": "video11371", "sen_id": 252481}, {"caption": "the fish swim around in the blue bowl filled with water", "video_id": "video11371", "sen_id": 252482}, {"caption": "we see two black and white fish in a blue bowl of water", "video_id": "video11371", "sen_id": 252483}, {"caption": "a woman describes two fish that are swimming in a blue bowl", "video_id": "video11371", "sen_id": 252484}, {"caption": "two fish swimming in a small bowl of water while a woman talks about them not being cold water fish", "video_id": "video11371", "sen_id": 252485}, {"caption": "there are two black fish in the water", "video_id": "video11371", "sen_id": 252486}, {"caption": "a pair of large-eyed black-and-white fish with triangular fins and sheer tails swim in a blue bowl on cement ground with water spots", "video_id": "video11371", "sen_id": 252487}, {"caption": "a woman talks about a special set of aquarium fish that she owns", "video_id": "video11371", "sen_id": 252488}, {"caption": "two fish swimming in blue bowl on the ground", "video_id": "video11371", "sen_id": 252489}, {"caption": "two fish moving in blue color water bowl and a women speak about it", "video_id": "video11371", "sen_id": 252490}, {"caption": "two fish are swimming in blue bowl while a woman described them", "video_id": "video11371", "sen_id": 252491}, {"caption": "two fish are in a blue bowl on a counter", "video_id": "video11371", "sen_id": 252492}, {"caption": "a young woman talks about two tropical fish she has in a small blue bowl", "video_id": "video11371", "sen_id": 252493}, {"caption": "little turtles swim inside a blue bowl with water", "video_id": "video11371", "sen_id": 252494}, {"caption": "a woman talks about aquarium fish that are swimming in a bowl", "video_id": "video11371", "sen_id": 252495}, {"caption": "a woman speaks while the camera is focused on two fish in a blue bowl", "video_id": "video11371", "sen_id": 252496}, {"caption": "two fish swim in a blue bucket filled with water", "video_id": "video11371", "sen_id": 252497}, {"caption": "two fish swim in a blue bowl while an offscreen woman talks about fish care", "video_id": "video11371", "sen_id": 252498}, {"caption": "a blue kiddy pool with black fish swimming around", "video_id": "video11371", "sen_id": 252499}, {"caption": "a person silently demonstrates how to make small cherry pies", "video_id": "video10222", "sen_id": 252500}, {"caption": "someone cutting up dumplings and spreading red jelly on crackers", "video_id": "video10222", "sen_id": 252501}, {"caption": "someone is cutting up small asian candy and mixing it together", "video_id": "video10222", "sen_id": 252502}, {"caption": "a person uses miniature utensils to prepare miniature snacks", "video_id": "video10222", "sen_id": 252503}, {"caption": "someone slicess butter and spread jam on two round crackers on a plate", "video_id": "video10222", "sen_id": 252504}, {"caption": "someone is putting tomato sauce on a flat biscuit in a kitchen", "video_id": "video10222", "sen_id": 252505}, {"caption": "a person is chopping bananas on the plate and filling pastries", "video_id": "video10222", "sen_id": 252506}, {"caption": "cutting up japanese candy and making small pizzas", "video_id": "video10222", "sen_id": 252507}, {"caption": "a man cuts up doughy ball and adds sauce to small pastries on plate", "video_id": "video10222", "sen_id": 252508}, {"caption": "someone is adding red sauce to two round patties on a square plate", "video_id": "video10222", "sen_id": 252509}, {"caption": "there is someone making a dish with fruit jam", "video_id": "video10222", "sen_id": 252510}, {"caption": "a person is filling a raw pastry to be prepared later", "video_id": "video10222", "sen_id": 252511}, {"caption": "a person is slicing a cooked dish in the ladle", "video_id": "video10222", "sen_id": 252512}, {"caption": "a person is applying jelly onto two crackers", "video_id": "video10222", "sen_id": 252513}, {"caption": "a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10222", "sen_id": 252514}, {"caption": "a food graphic illustrating how to put together jelly pancakes on a white plate", "video_id": "video10222", "sen_id": 252515}, {"caption": "a potato is sliced and the jam is put on to stuff a chapathi", "video_id": "video10222", "sen_id": 252516}, {"caption": "a demonstration of a cherry pie preparation using sample ingredients to make you get used to it", "video_id": "video10222", "sen_id": 252517}, {"caption": "a person cuts butter then brushes jelly onto a flat pastry", "video_id": "video10222", "sen_id": 252518}, {"caption": "a person is making two cherry pies from scratch on a white plate", "video_id": "video10222", "sen_id": 252519}, {"caption": "guy giving instructions on doing tricks on a bike", "video_id": "video12832", "sen_id": 252520}, {"caption": "a man on a bicycle in a park on the pavement", "video_id": "video12832", "sen_id": 252521}, {"caption": "a man doing tricks on his bicycle in a skate park", "video_id": "video12832", "sen_id": 252522}, {"caption": "a young man demonstrates how to do a bike trick", "video_id": "video12832", "sen_id": 252523}, {"caption": "a bicyclist wearing a helmet discusses how to do some tricks", "video_id": "video12832", "sen_id": 252524}, {"caption": "a man is trying to do some stunts in a cycle", "video_id": "video12832", "sen_id": 252525}, {"caption": "the cyclist is doing and showing the stunts on the road", "video_id": "video12832", "sen_id": 252526}, {"caption": "a person riding a bmx describes how to manual while he provides a visual example", "video_id": "video12832", "sen_id": 252527}, {"caption": "man is riding his bike and showing some skills", "video_id": "video12832", "sen_id": 252528}, {"caption": "a guy in a flannel shirt has a small trick bike that he rides down a red ramp", "video_id": "video12832", "sen_id": 252529}, {"caption": "there is a check shirt man doing some tricks with his cycle", "video_id": "video12832", "sen_id": 252530}, {"caption": "a man describes how to ride a bike with one wheel off the ground", "video_id": "video12832", "sen_id": 252531}, {"caption": "a man wearing helmet is showing a bycycle stunt on a stage", "video_id": "video12832", "sen_id": 252532}, {"caption": "find out how to stunts on a bycycle", "video_id": "video12832", "sen_id": 252533}, {"caption": "a man wearing protective gear demonstrating how to manual on a bicycle", "video_id": "video12832", "sen_id": 252534}, {"caption": "a young man goes down a ramp in a skate park then shows how to do a wheelie on a bike", "video_id": "video12832", "sen_id": 252535}, {"caption": "a man is having a children bicycle and telling about it", "video_id": "video12832", "sen_id": 252536}, {"caption": "a man is teaching how to do tricks on a bike", "video_id": "video12832", "sen_id": 252537}, {"caption": "a man in a button down shirt and jeans is outside showing different procedures for riding a bike to perform tricks and high end maneuvers", "video_id": "video12832", "sen_id": 252538}, {"caption": "there is a man in a white flannel on a bmx bicycle in a park", "video_id": "video12832", "sen_id": 252539}, {"caption": "two women do a cooking demonstration cooking chicken on the stove", "video_id": "video11468", "sen_id": 252540}, {"caption": "two women in a kitchen cook chicken in a pan while one of them gives directions", "video_id": "video11468", "sen_id": 252541}, {"caption": "two women in white dress are preparing food in kitchen", "video_id": "video11468", "sen_id": 252542}, {"caption": "it was a kitchen show where the one of the lady is heating a pan with a oil putting in it and later she is adding a a chicken pieces", "video_id": "video11468", "sen_id": 252543}, {"caption": "the south indian women telling how to make the best chicken didhes in the world", "video_id": "video11468", "sen_id": 252544}, {"caption": "chicken pieces are placed in the hot oil in a pan", "video_id": "video11468", "sen_id": 252545}, {"caption": "someone is putting chicken pieces in oil and in the end prepares an excellent dish", "video_id": "video11468", "sen_id": 252546}, {"caption": "two women in white t-shirt are cooking food in kitchen", "video_id": "video11468", "sen_id": 252547}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11468", "sen_id": 252548}, {"caption": "a woman is using tongs to add pieces of pink chicken into an oiled pan which is grey inside and green outside", "video_id": "video11468", "sen_id": 252549}, {"caption": "two women fry chicken pieces in a pan of hot oil", "video_id": "video11468", "sen_id": 252550}, {"caption": "two girls wearing white and black dresses discuss about cooking chicken in a television show", "video_id": "video11468", "sen_id": 252551}, {"caption": "two lady is preparing a chicken dish on the pan", "video_id": "video11468", "sen_id": 252552}, {"caption": "two girls stands and chops of meat are being put in frying pan with boiling oil", "video_id": "video11468", "sen_id": 252553}, {"caption": "show me the currycom make recipe with chicken and fry it", "video_id": "video11468", "sen_id": 252554}, {"caption": "two woman are pouring oil in cooking pan and adding chicken to get fry", "video_id": "video11468", "sen_id": 252555}, {"caption": "a person is placing chunks of meat on to a hot oiled cooking pan", "video_id": "video11468", "sen_id": 252556}, {"caption": "a lady fries the chicken in oil in a green pan", "video_id": "video11468", "sen_id": 252557}, {"caption": "two indian women prepare a chicken dish in the kitchen in their home", "video_id": "video11468", "sen_id": 252558}, {"caption": " preparation of chicken curry is being demonstrated by placing cleaned chicken pieces in to a hot pan", "video_id": "video11468", "sen_id": 252559}, {"caption": "an advertisement for the trade it college program", "video_id": "video12272", "sen_id": 252560}, {"caption": "there are many job opportunities available in the it career field including it researchers database managers computer engineers and computer support specialists", "video_id": "video12272", "sen_id": 252561}, {"caption": "a black and white computer screen with the words jobs on the right side", "video_id": "video12272", "sen_id": 252562}, {"caption": "an ad for computer related jobs in the it field", "video_id": "video12272", "sen_id": 252563}, {"caption": "some one showing the advertisement of job opportunities", "video_id": "video12272", "sen_id": 252564}, {"caption": "an ad for it jobs for people looking for a career", "video_id": "video12272", "sen_id": 252565}, {"caption": "a jobs hub video for future it professional career and of it researchers", "video_id": "video12272", "sen_id": 252566}, {"caption": "television display of a warning concerning the support of computers", "video_id": "video12272", "sen_id": 252567}, {"caption": "an video presentation of it institution providing job opportunities for youth", "video_id": "video12272", "sen_id": 252568}, {"caption": "a commercial with a slideshow showing i jobs and careers", "video_id": "video12272", "sen_id": 252569}, {"caption": "a words are displaying in the scene", "video_id": "video12272", "sen_id": 252570}, {"caption": "slideshow of images with text relating to the wide variety of jobs available for an it professional", "video_id": "video12272", "sen_id": 252571}, {"caption": "the advertisement is aboutacareer with most job opportunities", "video_id": "video12272", "sen_id": 252572}, {"caption": "slideshow of some information about jobs in the information technology field", "video_id": "video12272", "sen_id": 252573}, {"caption": "a box resembling a television set displaying jobs for people who need them", "video_id": "video12272", "sen_id": 252574}, {"caption": "a informational about computer engineering and technology", "video_id": "video12272", "sen_id": 252575}, {"caption": "some sentences are appearing on a black and white screen", "video_id": "video12272", "sen_id": 252576}, {"caption": "it as researcher provides job for many people", "video_id": "video12272", "sen_id": 252577}, {"caption": "a short video clip of show various job listed on a screen", "video_id": "video12272", "sen_id": 252578}, {"caption": "someone describes the various job opportunities in it", "video_id": "video12272", "sen_id": 252579}, {"caption": "a car is driving at night showing different views from a camera", "video_id": "video10282", "sen_id": 252580}, {"caption": "a man drives along a country road after dark by using his headlights", "video_id": "video10282", "sen_id": 252581}, {"caption": "a video showing nigh driving with light reducing technology in the car", "video_id": "video10282", "sen_id": 252582}, {"caption": "a vehicle driving down a two lane highway in the dark with headlights on while other vehicles pass going the opposite direction", "video_id": "video10282", "sen_id": 252583}, {"caption": "in a road car is going fastly camera view", "video_id": "video10282", "sen_id": 252584}, {"caption": "a car is driving down a long dark road at night", "video_id": "video10282", "sen_id": 252585}, {"caption": "in night time in the plain road with divide markers and side edges marked with white color", "video_id": "video10282", "sen_id": 252586}, {"caption": "a vehicle is moving fast in a empty road during night time", "video_id": "video10282", "sen_id": 252587}, {"caption": "a car is driving down a road at night with its lights on", "video_id": "video10282", "sen_id": 252588}, {"caption": "a vehicle is moving on the road on night time", "video_id": "video10282", "sen_id": 252589}, {"caption": "a car driving on a road at night with other cars passing it and a guardrail on either side", "video_id": "video10282", "sen_id": 252590}, {"caption": "a car is driving on a road at night", "video_id": "video10282", "sen_id": 252591}, {"caption": "a vehicle is moving fast in the night time", "video_id": "video10282", "sen_id": 252592}, {"caption": "the car travels down the road on very dark night", "video_id": "video10282", "sen_id": 252593}, {"caption": "a car moves along a road in the dark as the car s headlights switch to match the conditions", "video_id": "video10282", "sen_id": 252594}, {"caption": "someone is driving around on a road at night", "video_id": "video10282", "sen_id": 252595}, {"caption": "a car is driving down the street on a bridge", "video_id": "video10282", "sen_id": 252596}, {"caption": "at the night time the driving people shoot the camera view in very nice", "video_id": "video10282", "sen_id": 252597}, {"caption": "dashcam footage of driving at night with technology assistance", "video_id": "video10282", "sen_id": 252598}, {"caption": "a person is driving at night with lights on with auto camera", "video_id": "video10282", "sen_id": 252599}, {"caption": "man talking about a bus wreck that involved several passengers", "video_id": "video12598", "sen_id": 252600}, {"caption": "a man wearing a red shirt is talking to someone off screen", "video_id": "video12598", "sen_id": 252601}, {"caption": "a man giving an intervie in a red shirt he has red hair", "video_id": "video12598", "sen_id": 252602}, {"caption": "a man with a red collared shirt is interviewed on a bus crash", "video_id": "video12598", "sen_id": 252603}, {"caption": "a blond man explains a bus accident to an interviewer after a brief image of the passengers is shown", "video_id": "video12598", "sen_id": 252604}, {"caption": "a white man talks about being in the traumatic experience of a bus crash", "video_id": "video12598", "sen_id": 252605}, {"caption": "a man answers questions regarding what happened to passengers involved in a bus crash", "video_id": "video12598", "sen_id": 252606}, {"caption": "there is a interview of people who injured in the bus accident", "video_id": "video12598", "sen_id": 252607}, {"caption": "there is a men in brown talking seriously", "video_id": "video12598", "sen_id": 252608}, {"caption": "adam scott injured in bus crash talking about", "video_id": "video12598", "sen_id": 252609}, {"caption": "a man discusses a dangerous incident in a bus crash where passengers were injured", "video_id": "video12598", "sen_id": 252610}, {"caption": "guy talking about the bus crash to the reporters", "video_id": "video12598", "sen_id": 252611}, {"caption": "there is a man in red t-shirt talking to someone", "video_id": "video12598", "sen_id": 252612}, {"caption": "man injured in bus crash relates his trauma to a reporter", "video_id": "video12598", "sen_id": 252613}, {"caption": "a man answering for the questions asked by another man", "video_id": "video12598", "sen_id": 252614}, {"caption": "a man with a red shirt sits and talks to someone", "video_id": "video12598", "sen_id": 252615}, {"caption": "a man is talking about being in a bus crash", "video_id": "video12598", "sen_id": 252616}, {"caption": "there is a red t-shirt man talking from his room", "video_id": "video12598", "sen_id": 252617}, {"caption": "a blond man wearing a burgundy shirt talks to an interviewer", "video_id": "video12598", "sen_id": 252618}, {"caption": "an old man in brown dress sitting and many sitting in a bus displaying on the screen", "video_id": "video12598", "sen_id": 252619}, {"caption": "two men in pink shirts talk to each other", "video_id": "video11986", "sen_id": 252620}, {"caption": "two men with dark hair and wearing red t-shirts sit close together and discuss something in a room with a mural on the wall", "video_id": "video11986", "sen_id": 252621}, {"caption": "two young men are sitting talking about movies and jaws in particular", "video_id": "video11986", "sen_id": 252622}, {"caption": "a guy in a red shirt is talking to another guy in a red shirt", "video_id": "video11986", "sen_id": 252623}, {"caption": "2 men in red shirts are talking about a movie", "video_id": "video11986", "sen_id": 252624}, {"caption": "two men are discussing the influence and relativity of the movie jaws in detail", "video_id": "video11986", "sen_id": 252625}, {"caption": "there is a red tshirt man talking with a man", "video_id": "video11986", "sen_id": 252626}, {"caption": "two men in tight red shirts discuss the movie jaws in front of a painting with the ghost busters logo", "video_id": "video11986", "sen_id": 252627}, {"caption": "two men in red shirts discuss how some movies influence others particularly in the case of jaws", "video_id": "video11986", "sen_id": 252628}, {"caption": "two men wearing red tshirts talk about movies", "video_id": "video11986", "sen_id": 252629}, {"caption": "two men wearing red shirts describe the pop culture surrounding the movie jaws", "video_id": "video11986", "sen_id": 252630}, {"caption": "two guys in red tshirt is reviewing a movies", "video_id": "video11986", "sen_id": 252631}, {"caption": "two guys wearing red dress discussing about something", "video_id": "video11986", "sen_id": 252632}, {"caption": "two men wearing red tshirts are having a conversation", "video_id": "video11986", "sen_id": 252633}, {"caption": "two men talking to the camera during a tv show", "video_id": "video11986", "sen_id": 252634}, {"caption": "there are two man in red talking about the movie the acted", "video_id": "video11986", "sen_id": 252635}, {"caption": "two young guys in red tshirt talking to each other", "video_id": "video11986", "sen_id": 252636}, {"caption": "a two men are in red color shirt are talking about a movie", "video_id": "video11986", "sen_id": 252637}, {"caption": "two boys in red dresses and other guy beside sitting and speaking about movie dispalying on screen", "video_id": "video11986", "sen_id": 252638}, {"caption": "a person speaking about something to the interviewer", "video_id": "video11986", "sen_id": 252639}, {"caption": "people on a news show discuss whether political cartoons should be censored", "video_id": "video12219", "sen_id": 252640}, {"caption": "a women in an orange shirt and man in a suit talk live to three people", "video_id": "video12219", "sen_id": 252641}, {"caption": "all persons are talking each other on tv news channel", "video_id": "video12219", "sen_id": 252642}, {"caption": "three people are talking on a news tv show", "video_id": "video12219", "sen_id": 252643}, {"caption": "some people are discussing about some news in live news channel", "video_id": "video12219", "sen_id": 252644}, {"caption": "there are five different people talking in a debate on live television", "video_id": "video12219", "sen_id": 252645}, {"caption": "three reporters waiting to report an incident and one started to report it", "video_id": "video12219", "sen_id": 252646}, {"caption": "a discussion is conducted by a male and female anchor between three persons on screen", "video_id": "video12219", "sen_id": 252647}, {"caption": "a lady and boy standing speaking and television screen displaying on screen with displaying images", "video_id": "video12219", "sen_id": 252648}, {"caption": "bunch of people in video conference talking to the newsroom studio", "video_id": "video12219", "sen_id": 252649}, {"caption": "the man talking on television is expressing his views on a topic while others look on", "video_id": "video12219", "sen_id": 252650}, {"caption": "the man and woman stand on stage and talk to the people on the stage", "video_id": "video12219", "sen_id": 252651}, {"caption": "a news cast is being shown talking about criticism if islam in europe", "video_id": "video12219", "sen_id": 252652}, {"caption": "here is a hot conversation about media publishing satirical cartoons", "video_id": "video12219", "sen_id": 252653}, {"caption": "a group of people on tv are talking about something", "video_id": "video12219", "sen_id": 252654}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video12219", "sen_id": 252655}, {"caption": "a woman asks her male co-host to stop speaking on a television-studio stage where three guests in three large individual screens are placed side by side", "video_id": "video12219", "sen_id": 252656}, {"caption": "its a news channel in which the people are discussing with 3 people", "video_id": "video12219", "sen_id": 252657}, {"caption": "the news reporters and celebrities are there talking eachother", "video_id": "video12219", "sen_id": 252658}, {"caption": "four people on the news are discussing a topic", "video_id": "video12219", "sen_id": 252659}, {"caption": "two teams of men compete against each other in tennis", "video_id": "video11794", "sen_id": 252660}, {"caption": "there are someone playing badminton in a court", "video_id": "video11794", "sen_id": 252661}, {"caption": "four players are playing tennise", "video_id": "video11794", "sen_id": 252662}, {"caption": "four player tennis match between south korea and another country", "video_id": "video11794", "sen_id": 252663}, {"caption": "two men teams play a fast-paced game of badminton in front of a crowd", "video_id": "video11794", "sen_id": 252664}, {"caption": "a tennis match is going on between four guys in red and yellow", "video_id": "video11794", "sen_id": 252665}, {"caption": "there is someone playing badminton on the court", "video_id": "video11794", "sen_id": 252666}, {"caption": "a doubles badmitton match point between a purple shirted team and a yellow one", "video_id": "video11794", "sen_id": 252667}, {"caption": "four players were playing the match on the stadium", "video_id": "video11794", "sen_id": 252668}, {"caption": "it is a game being played back and forth on a field", "video_id": "video11794", "sen_id": 252669}, {"caption": "two teams play doubles tennis and the team wearing red shirts scores a point", "video_id": "video11794", "sen_id": 252670}, {"caption": "an indoor badminton match of doubles where team korea wins the point", "video_id": "video11794", "sen_id": 252671}, {"caption": "a double team tennis match is underway with all men players", "video_id": "video11794", "sen_id": 252672}, {"caption": "a red dress wearing color cloth and yellow color players playing batmanton game in stadium audience watching displaying on screen", "video_id": "video11794", "sen_id": 252673}, {"caption": "a badminton game in which one side wore pink dress and opposition with yellow dresswhere one of the person in in the yellow dress hit towards net", "video_id": "video11794", "sen_id": 252674}, {"caption": "men s doubles badminton progressing and one team finish on the net", "video_id": "video11794", "sen_id": 252675}, {"caption": "the badminton rally between the pink jersey and orange jersey players is going on", "video_id": "video11794", "sen_id": 252676}, {"caption": "a fast action doubles badminton match ends with a superbly time smash", "video_id": "video11794", "sen_id": 252677}, {"caption": "in a two-player tennis matchguys with pink t-shirt won the round beating the guys with yellow t-shirt", "video_id": "video11794", "sen_id": 252678}, {"caption": "some people in pink shirts are interacting", "video_id": "video11794", "sen_id": 252679}, {"caption": "two teams of soccer players are involved in a funny crash during a match", "video_id": "video12813", "sen_id": 252680}, {"caption": "a pair of soccer players are involved in a crash as they move for the ball", "video_id": "video12813", "sen_id": 252681}, {"caption": "a young boy wearing a blue shirt running into a boy wearing a yellow shirt", "video_id": "video12813", "sen_id": 252682}, {"caption": "a team of soccer players in blue are playing in a game", "video_id": "video12813", "sen_id": 252683}, {"caption": "two soccer players are involved in a collision during a match", "video_id": "video12813", "sen_id": 252684}, {"caption": "in a playground school boys are playing football", "video_id": "video12813", "sen_id": 252685}, {"caption": "food ball while the player falls on the goaly a running made all players fall and finally a man tied rope with a kid pulls the kid", "video_id": "video12813", "sen_id": 252686}, {"caption": "there is a video showing three different bloopers of people playing in the two different kinds of football that there are", "video_id": "video12813", "sen_id": 252687}, {"caption": "various clips of people messing up at sporing activities", "video_id": "video12813", "sen_id": 252688}, {"caption": "boys playing football in blue dress kicking goal keeper little boys running man running and pulling rope falling down displaying on screen", "video_id": "video12813", "sen_id": 252689}, {"caption": "images of sports fails children falling down and blundering in soccer and track", "video_id": "video12813", "sen_id": 252690}, {"caption": "young people are playing games outdoors and having fun", "video_id": "video12813", "sen_id": 252691}, {"caption": "young people are involved in blooper type activities while participating in sporting events", "video_id": "video12813", "sen_id": 252692}, {"caption": "a football match and other games are going on a play ground in the name of football vs football fail army", "video_id": "video12813", "sen_id": 252693}, {"caption": "football players are involved in numerous funny accidents", "video_id": "video12813", "sen_id": 252694}, {"caption": "soccer players tripping over each other followed by football players tripping over each other and then a football player accidentally dragging another player across the field", "video_id": "video12813", "sen_id": 252695}, {"caption": "a kid on a break away in soccer and kicking the goalie in the head", "video_id": "video12813", "sen_id": 252696}, {"caption": "a soocer fail a football fail and a rope pull fail", "video_id": "video12813", "sen_id": 252697}, {"caption": "group of rugby players rushing out and falling on the field", "video_id": "video12813", "sen_id": 252698}, {"caption": "there is a soccer game where the referee gets hit accidentally by a player a young football team attempt to run through a banner and they all trip", "video_id": "video12813", "sen_id": 252699}, {"caption": "a nurse in blue scrubs holds a man's head", "video_id": "video12483", "sen_id": 252700}, {"caption": "a woman is trying to save a guys life in a clip from a abc show", "video_id": "video12483", "sen_id": 252701}, {"caption": "a woman adjusts the juxtaposition of a dead body while another is visibly sickened", "video_id": "video12483", "sen_id": 252702}, {"caption": "two women are sitting on a floor while a man lies on the floor", "video_id": "video12483", "sen_id": 252703}, {"caption": "a scene from grey s anatomy where a man is on the floor wearing an oxygen mask", "video_id": "video12483", "sen_id": 252704}, {"caption": "a person is under a critical condition due to breathing problem where the two ladies giving first aide to save him", "video_id": "video12483", "sen_id": 252705}, {"caption": "its conversation between two girls man with ventilator on nose lie on her lap", "video_id": "video12483", "sen_id": 252706}, {"caption": "there is a fat woman with other waiting in the hospital", "video_id": "video12483", "sen_id": 252707}, {"caption": "a woman is tending to a young man who has an oxygen mask over his mouth", "video_id": "video12483", "sen_id": 252708}, {"caption": "a child and a woman looking down upon an injured man", "video_id": "video12483", "sen_id": 252709}, {"caption": "a woman in pink sweatshirt sis against wall and is joined by nurse while they comfort injured man", "video_id": "video12483", "sen_id": 252710}, {"caption": "there is a woman in rose dressing sitting nearby a man", "video_id": "video12483", "sen_id": 252711}, {"caption": "two women are taking care of an ill man", "video_id": "video12483", "sen_id": 252712}, {"caption": "a colored woman sits next to a white woman and moves a bloody man", "video_id": "video12483", "sen_id": 252713}, {"caption": "a woman comforts a sick man", "video_id": "video12483", "sen_id": 252714}, {"caption": "a scared lady sits on the ground and another one stands near to her sits and takes the wounded man in the lap", "video_id": "video12483", "sen_id": 252715}, {"caption": "two women are helping a man who is sick and wearing a respirator", "video_id": "video12483", "sen_id": 252716}, {"caption": "a grey s anatomy scene is playing where miranda has a patient on the floor in a facemask", "video_id": "video12483", "sen_id": 252717}, {"caption": "two women are having conversation in the room", "video_id": "video12483", "sen_id": 252718}, {"caption": "some women are sitting down with a man", "video_id": "video12483", "sen_id": 252719}, {"caption": "a blender is opened and liquid is poured through a strainer", "video_id": "video11544", "sen_id": 252720}, {"caption": "someone blending a red liquid then straining it into a pan", "video_id": "video11544", "sen_id": 252721}, {"caption": "video of a recipe being prepared with just music playing a recipe of a smoothie being strained into a stove top pan", "video_id": "video11544", "sen_id": 252722}, {"caption": "one hand holds a clear blender container while the other hand lifts off the gray lid then both hands swirl the red mixture inside", "video_id": "video11544", "sen_id": 252723}, {"caption": "a woman is preparing a smoothie with a blender and strainer", "video_id": "video11544", "sen_id": 252724}, {"caption": "a female chef with green fingernails is making a red strawberry or crandberry sauce mixture inside a wire strainer", "video_id": "video11544", "sen_id": 252725}, {"caption": "there is someone making a dish with mixer grinder", "video_id": "video11544", "sen_id": 252726}, {"caption": "lady poring a mixture from blender and straining it to a pot on stove", "video_id": "video11544", "sen_id": 252727}, {"caption": "a woman s hands demonstrate how to use cooking tools such a blender and a colander", "video_id": "video11544", "sen_id": 252728}, {"caption": "a cooking demonstration of something red that was in a blender and is moved to being strained", "video_id": "video11544", "sen_id": 252729}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video11544", "sen_id": 252730}, {"caption": "there is someone making a fruit dish with mixer", "video_id": "video11544", "sen_id": 252731}, {"caption": "a lady filtering a sauce", "video_id": "video11544", "sen_id": 252732}, {"caption": "a person preparing some dish in the kitchen", "video_id": "video11544", "sen_id": 252733}, {"caption": "a young girl uses a blender to prepare an ingredient for a recipe", "video_id": "video11544", "sen_id": 252734}, {"caption": "there is a person preparing a smoothie or fruit juice", "video_id": "video11544", "sen_id": 252735}, {"caption": "there is someone making a simple dish", "video_id": "video11544", "sen_id": 252736}, {"caption": "a woman with green nails is pouring some liquid she blended through a sieve into a pot", "video_id": "video11544", "sen_id": 252737}, {"caption": "a woman is straining some type of berry mixture through a sieve", "video_id": "video11544", "sen_id": 252738}, {"caption": "food being processed in a blender and then put through a sieve on a pan", "video_id": "video11544", "sen_id": 252739}, {"caption": "a guy is enthusiastically talking about a golf game", "video_id": "video12837", "sen_id": 252740}, {"caption": "a man talks about his coaches on his golf team", "video_id": "video12837", "sen_id": 252741}, {"caption": "a young man is talking at a golf course", "video_id": "video12837", "sen_id": 252742}, {"caption": "an athlete talks about great things to come on his team", "video_id": "video12837", "sen_id": 252743}, {"caption": "a guy with short hair is crediting the coaching staff for his success in career in pole vault", "video_id": "video12837", "sen_id": 252744}, {"caption": "the person in the video is discussing their time on a sports team", "video_id": "video12837", "sen_id": 252745}, {"caption": "a young man who is on a track team talks about the future of the team", "video_id": "video12837", "sen_id": 252746}, {"caption": "a man in a white tank top speaks about his enjoyment of an experience", "video_id": "video12837", "sen_id": 252747}, {"caption": "a young man with short hair discusses college level team sport of some sort", "video_id": "video12837", "sen_id": 252748}, {"caption": "a golfer discusses his past year with his current coaching staff", "video_id": "video12837", "sen_id": 252749}, {"caption": "a player sharing his experience about the coaching team", "video_id": "video12837", "sen_id": 252750}, {"caption": "guy in white tshirt talking to the camera", "video_id": "video12837", "sen_id": 252751}, {"caption": "a man is saying something standing on the ground", "video_id": "video12837", "sen_id": 252752}, {"caption": "a man is talking in the ground", "video_id": "video12837", "sen_id": 252753}, {"caption": "guy in white tshirt talking to the camera as old guy tries to play golf", "video_id": "video12837", "sen_id": 252754}, {"caption": "a nice looking young man talking about golf", "video_id": "video12837", "sen_id": 252755}, {"caption": "the man talks as the other man in a hat and shorts stands in the grass", "video_id": "video12837", "sen_id": 252756}, {"caption": "an athlete gives his opinion on how the season is going", "video_id": "video12837", "sen_id": 252757}, {"caption": "a guy in a white tank gets ready to take off", "video_id": "video12837", "sen_id": 252758}, {"caption": "a guy is talking and an old man wearing hat is having golf stick in his hand standing on field", "video_id": "video12837", "sen_id": 252759}, {"caption": "a guy in blue shorts and a white t-shirt makes numerous excuses while playing tennis", "video_id": "video11992", "sen_id": 252760}, {"caption": "male tennis player in blue shorts and white top demonstrating techniques", "video_id": "video11992", "sen_id": 252761}, {"caption": "a guy is playing tenis while making excuses for not being good at it", "video_id": "video11992", "sen_id": 252762}, {"caption": "two players playing tennis one of expressed that the floor is slippery not suitable for playing", "video_id": "video11992", "sen_id": 252763}, {"caption": "there is a tennis player hitting hard on the ball", "video_id": "video11992", "sen_id": 252764}, {"caption": "a man with blue trouser and white t-shirt training tennis on a tennis court", "video_id": "video11992", "sen_id": 252765}, {"caption": "a man in white t-shirt and blue shorts is practising tennis with another man", "video_id": "video11992", "sen_id": 252766}, {"caption": "two people are playing table tennis and one player is telling about the ground which is slippery", "video_id": "video11992", "sen_id": 252767}, {"caption": " in white t-shirt and blue shorts is playing tennis on a clay court with a chain link fence bordered by grass and other fences", "video_id": "video11992", "sen_id": 252768}, {"caption": "cranky tennis player on a slippery tennis court in the rain", "video_id": "video11992", "sen_id": 252769}, {"caption": "two people in white t-shirt and blue shorts are playing tennis", "video_id": "video11992", "sen_id": 252770}, {"caption": "the boys are playing tennis on the court", "video_id": "video11992", "sen_id": 252771}, {"caption": "two men on a tennis court hit a ball back and forth", "video_id": "video11992", "sen_id": 252772}, {"caption": "a tennis practise session is taking place in the ground", "video_id": "video11992", "sen_id": 252773}, {"caption": "a man is pacing around a tennis court", "video_id": "video11992", "sen_id": 252774}, {"caption": "there is a man in white tshirt practicing tennins", "video_id": "video11992", "sen_id": 252775}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video11992", "sen_id": 252776}, {"caption": "a tennis game is practiced alon by a guy with white tshirt", "video_id": "video11992", "sen_id": 252777}, {"caption": "a single player with white t-shirt and blue trousers is playing tennis in a court", "video_id": "video11992", "sen_id": 252778}, {"caption": "a man is standing on an orange tennis court", "video_id": "video11992", "sen_id": 252779}, {"caption": "a news anchor dressed in blue sitting on a chair talking about a situation in india", "video_id": "video11041", "sen_id": 252780}, {"caption": "a news anchor is talking to someone on video screen", "video_id": "video11041", "sen_id": 252781}, {"caption": "a woman wearing a blue shirt is talking on bbc news about various topics", "video_id": "video11041", "sen_id": 252782}, {"caption": "a female news reporter discusses people s reactions to a traumatic event", "video_id": "video11041", "sen_id": 252783}, {"caption": "a news anchor in clue dress holds papers with updates and greets man on tv screen", "video_id": "video11041", "sen_id": 252784}, {"caption": "a female news reader is telling news about rape in india", "video_id": "video11041", "sen_id": 252785}, {"caption": "there is a brown hair woman talking with a paper", "video_id": "video11041", "sen_id": 252786}, {"caption": "a lady in the news channel explains about the latest news and speaks to one man in the video conferencing", "video_id": "video11041", "sen_id": 252787}, {"caption": "bbc news reporter talking about an incident in india", "video_id": "video11041", "sen_id": 252788}, {"caption": "a woman tv host is interviewing people and there is a big screen", "video_id": "video11041", "sen_id": 252789}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video11041", "sen_id": 252790}, {"caption": "a female news anchor wtih a blue dress and blode hair is sitting in a chair talking in a studio", "video_id": "video11041", "sen_id": 252791}, {"caption": "a woman is reading the news and introducing a reporter", "video_id": "video11041", "sen_id": 252792}, {"caption": "a woman on the news sitting in an oddly relaxed fashion", "video_id": "video11041", "sen_id": 252793}, {"caption": "a lady news anchor wearing blue is on bbc news", "video_id": "video11041", "sen_id": 252794}, {"caption": "a man and a woman on the news are speaking", "video_id": "video11041", "sen_id": 252795}, {"caption": "a reporter lady of bbc is talking with shots from the location", "video_id": "video11041", "sen_id": 252796}, {"caption": "bbc broadcaster talking about a rape case in mumbai", "video_id": "video11041", "sen_id": 252797}, {"caption": "a female news host sits in chair behind desk with reporter on tv screen", "video_id": "video11041", "sen_id": 252798}, {"caption": "a bbc reporter in their news program on television", "video_id": "video11041", "sen_id": 252799}, {"caption": "the man in the image is showing guacamole on the spoon", "video_id": "video11760", "sen_id": 252800}, {"caption": "a chef is demonstrating how to combine wasabi paste with mayonnaise", "video_id": "video11760", "sen_id": 252801}, {"caption": "a woman is preparing a food item noodels", "video_id": "video11760", "sen_id": 252802}, {"caption": "a man squeeses out a green paste on a spoon then puts it in a blue bowl then he adds some white sauce and stirs it up", "video_id": "video11760", "sen_id": 252803}, {"caption": "an old man pouring sauce into a container", "video_id": "video11760", "sen_id": 252804}, {"caption": "gorfon ramsay showing how to make a mayonnaise based sauce", "video_id": "video11760", "sen_id": 252805}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11760", "sen_id": 252806}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11760", "sen_id": 252807}, {"caption": "a man is mixing different ingredients together in a small bowl", "video_id": "video11760", "sen_id": 252808}, {"caption": "a guy puts avocado together in a bowl and mixes it into a recipe", "video_id": "video11760", "sen_id": 252809}, {"caption": "a man in the kitchen mixes a sauce in a cup", "video_id": "video11760", "sen_id": 252810}, {"caption": "in the kitchen a man in a tshirt making a dish", "video_id": "video11760", "sen_id": 252811}, {"caption": "a man is showing some food recipe using some sauces", "video_id": "video11760", "sen_id": 252812}, {"caption": "chef ramsey stirs a sauce on a bowl", "video_id": "video11760", "sen_id": 252813}, {"caption": "a man puts a thumbnail size of food on his spoon and mixes it into the bowl", "video_id": "video11760", "sen_id": 252814}, {"caption": " gordan ramsey is putting mayonnaise into a bowl and mixing it", "video_id": "video11760", "sen_id": 252815}, {"caption": "a man taking a remedy from spoon and mixed into a container", "video_id": "video11760", "sen_id": 252816}, {"caption": " wearing a gray shirt squeezes a small tube of green paste onto a silver spoon which he pushes off into a blue cup and mixes with a dressing", "video_id": "video11760", "sen_id": 252817}, {"caption": "in a kitchen a chef mixes together wasabi and mayonnaise", "video_id": "video11760", "sen_id": 252818}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video11760", "sen_id": 252819}, {"caption": "an in-home chef discusses a recipe he is preparing in his kitchen", "video_id": "video10006", "sen_id": 252820}, {"caption": "a man adds salt to his red sauce simmering on the stove", "video_id": "video10006", "sen_id": 252821}, {"caption": "a dark-haired man adds white seasoning to tomato sauce simmering in a pot in a green-and-white kitchen and then measures out corn starch into a small bowl", "video_id": "video10006", "sen_id": 252822}, {"caption": "a man in a black shirt cooks in the kitchen", "video_id": "video10006", "sen_id": 252823}, {"caption": "a man adds salt to his red sauce in a pan on the stove", "video_id": "video10006", "sen_id": 252824}, {"caption": "a chef is explaining about the list of ingredients required to cook a recipe", "video_id": "video10006", "sen_id": 252825}, {"caption": "chilli garlic crab chef make with it some of", "video_id": "video10006", "sen_id": 252826}, {"caption": "a man with a buttoned shirt adds spices to a red sauce", "video_id": "video10006", "sen_id": 252827}, {"caption": "master chef sanjeev kappor is showing a recipe with various ingredients", "video_id": "video10006", "sen_id": 252828}, {"caption": "a man teaching how to cook a dish chilli garlic crab in a cooking show", "video_id": "video10006", "sen_id": 252829}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10006", "sen_id": 252830}, {"caption": "a man demonstrates how to make chilie garlic crab", "video_id": "video10006", "sen_id": 252831}, {"caption": "a man makes a chili garlic and crab soup in pot while adding ingridients for the camera", "video_id": "video10006", "sen_id": 252832}, {"caption": "a man in a black shirt prepares a dish in a kitchen", "video_id": "video10006", "sen_id": 252833}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10006", "sen_id": 252834}, {"caption": "chef sanjeev kapoor shows us how to make chilli garlic crab", "video_id": "video10006", "sen_id": 252835}, {"caption": "a man in a black shirt making a chili garlic crab dish", "video_id": "video10006", "sen_id": 252836}, {"caption": "a man is cooking with cornstarch in a kitchen", "video_id": "video10006", "sen_id": 252837}, {"caption": "a man is appearing to making something called chili garlic grab and is adding cornstarch to it", "video_id": "video10006", "sen_id": 252838}, {"caption": "a person in a black shirt is making food", "video_id": "video10006", "sen_id": 252839}, {"caption": "old men in suits standing around each other posing for a photo", "video_id": "video10534", "sen_id": 252840}, {"caption": "black and white footage of very early disney cartoons", "video_id": "video10534", "sen_id": 252841}, {"caption": "a man is narrating multiple old movies and tv shows and discussing the life of walt disney", "video_id": "video10534", "sen_id": 252842}, {"caption": "a guy talks about an old black and white cartoon from the olden days", "video_id": "video10534", "sen_id": 252843}, {"caption": "take a trip back to past and see the crews that worked in hollywood in the 1940's", "video_id": "video10534", "sen_id": 252844}, {"caption": "old black and white photos are used to talk about old disney shows", "video_id": "video10534", "sen_id": 252845}, {"caption": "people wearing grey suits are all standing in a line and posing", "video_id": "video10534", "sen_id": 252846}, {"caption": "there is someone standing in front of a building", "video_id": "video10534", "sen_id": 252847}, {"caption": "a team of members assembled in an one place by celebrating a party", "video_id": "video10534", "sen_id": 252848}, {"caption": "several men in suits are standing together taking a picture", "video_id": "video10534", "sen_id": 252849}, {"caption": "a cartoon dolls shows mickey mouse and persons still picture images displaying on screen", "video_id": "video10534", "sen_id": 252850}, {"caption": "all persons are talking each other in olden days", "video_id": "video10534", "sen_id": 252851}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10534", "sen_id": 252852}, {"caption": "alice the toreador by walt disney an alice comedy", "video_id": "video10534", "sen_id": 252853}, {"caption": "there is a group of people and telling about one man", "video_id": "video10534", "sen_id": 252854}, {"caption": "an cartoon images still pictures playing displaying on screen", "video_id": "video10534", "sen_id": 252855}, {"caption": "its a 3d filmgroup of members with child photo", "video_id": "video10534", "sen_id": 252856}, {"caption": "vintage footage of walt disney and his various cartoons", "video_id": "video10534", "sen_id": 252857}, {"caption": "guy speaking about the oswald cartoon an its producers", "video_id": "video10534", "sen_id": 252858}, {"caption": "a man is talking about an old black and white cartoon", "video_id": "video10534", "sen_id": 252859}, {"caption": "a man in a black sock cap talks to a reporter about the conditions of his life", "video_id": "video12914", "sen_id": 252860}, {"caption": "a man with brown shirt is giving some report to news reporter", "video_id": "video12914", "sen_id": 252861}, {"caption": "a man speaking in arabic wearing a hat and being interviewed with a microphone", "video_id": "video12914", "sen_id": 252862}, {"caption": "a man sits near a tree and outdoor kitchen and talks with reporter", "video_id": "video12914", "sen_id": 252863}, {"caption": "man talking outside in the shade and wearing a blue hat", "video_id": "video12914", "sen_id": 252864}, {"caption": "a person with blue colour cap is talking about something", "video_id": "video12914", "sen_id": 252865}, {"caption": "an oldman is explaining about water in hindi language", "video_id": "video12914", "sen_id": 252866}, {"caption": "the man wearing the hat talks into the microphone", "video_id": "video12914", "sen_id": 252867}, {"caption": "older person is giving an interview for the tv", "video_id": "video12914", "sen_id": 252868}, {"caption": "a old man is answering for the questions asked by the interviewer", "video_id": "video12914", "sen_id": 252869}, {"caption": "a man giving an interview in a middle eastern language as middle eastern music plays in the background", "video_id": "video12914", "sen_id": 252870}, {"caption": "old guy with cap talking to a person", "video_id": "video12914", "sen_id": 252871}, {"caption": "a man with a white beard wearing a blue hat a light green shirt and light colored shirt talks to someone holding a microphone", "video_id": "video12914", "sen_id": 252872}, {"caption": "a man in a sweater and nike cap is sitting outside next to a tree branch speaking into a microphone", "video_id": "video12914", "sen_id": 252873}, {"caption": "a guy in a beanie is talking on tv", "video_id": "video12914", "sen_id": 252874}, {"caption": "a man wearing a black hat giving an interview in a middle eastern language", "video_id": "video12914", "sen_id": 252875}, {"caption": "a man speaking a foreign language being interviewed by someone", "video_id": "video12914", "sen_id": 252876}, {"caption": "a man with a hat on talks in an interview while music plays", "video_id": "video12914", "sen_id": 252877}, {"caption": "an old man on the street explains what happens as the sun sets", "video_id": "video12914", "sen_id": 252878}, {"caption": "a man with a beard and a hat is talking", "video_id": "video12914", "sen_id": 252879}, {"caption": "a young woman shows how she does hair and make-up", "video_id": "video11110", "sen_id": 252880}, {"caption": "a woman alone with an orange backdrop plays with her hair in different ways; she makes several facial expressions and blows a kiss with both hands", "video_id": "video11110", "sen_id": 252881}, {"caption": "a women in white dress is posing for photograph", "video_id": "video11110", "sen_id": 252882}, {"caption": "a woman is smiling posing and blowing kisses to the camera", "video_id": "video11110", "sen_id": 252883}, {"caption": "a lady shaking her head left and right and kissed", "video_id": "video11110", "sen_id": 252884}, {"caption": "a woman is simpering and playing with her hair while looking at the camera", "video_id": "video11110", "sen_id": 252885}, {"caption": "a girl is messing the hair in different way and look with the sexy look", "video_id": "video11110", "sen_id": 252886}, {"caption": "there is a red lip girl from a studio", "video_id": "video11110", "sen_id": 252887}, {"caption": "an attractive women with blonde highlights plays with her hair and poses for the camera", "video_id": "video11110", "sen_id": 252888}, {"caption": "a woman with red lipstick in a white shirt playing with her hair and make hand gestures", "video_id": "video11110", "sen_id": 252889}, {"caption": "a woman that is smiling blowing kisses having fun", "video_id": "video11110", "sen_id": 252890}, {"caption": "a pretty woman with red lips is running her fingers through her hair and blowing kisses", "video_id": "video11110", "sen_id": 252891}, {"caption": "there is a woman in white dressing giving flying kiss to all", "video_id": "video11110", "sen_id": 252892}, {"caption": "a woman is smiling and playing with her hair", "video_id": "video11110", "sen_id": 252893}, {"caption": "a person running their hands through their hair and then blowing a kiss in the air", "video_id": "video11110", "sen_id": 252894}, {"caption": "a woman is playing with her hair and smiling", "video_id": "video11110", "sen_id": 252895}, {"caption": "a woman is doing different poses for a camera", "video_id": "video11110", "sen_id": 252896}, {"caption": "a woman with long bold hair nnd pink lipstick is pausing for the camera", "video_id": "video11110", "sen_id": 252897}, {"caption": "one beautiful and lovely women makeup in her hair", "video_id": "video11110", "sen_id": 252898}, {"caption": "a lady fiddles with her hair with a white suit", "video_id": "video11110", "sen_id": 252899}, {"caption": "a woman from ancient egypt talks to a roman man", "video_id": "video10495", "sen_id": 252900}, {"caption": "woman talks to man about her children being safe and man assures her they are safe", "video_id": "video10495", "sen_id": 252901}, {"caption": "an up-to-date movie being played roman style", "video_id": "video10495", "sen_id": 252902}, {"caption": "an egyptian woman is speaking to a roman soldier", "video_id": "video10495", "sen_id": 252903}, {"caption": "a clip of cleopatra speaking in movie", "video_id": "video10495", "sen_id": 252904}, {"caption": "a woman with braided hair talking to a man", "video_id": "video10495", "sen_id": 252905}, {"caption": "a man and woman talking each other in a film", "video_id": "video10495", "sen_id": 252906}, {"caption": "a beautiful woman (possibly cleopatra) talks about her family s safety with a man (possibly marc antony) in a historical drama", "video_id": "video10495", "sen_id": 252907}, {"caption": "a man and a woman talk about the safety of the woman s children", "video_id": "video10495", "sen_id": 252908}, {"caption": "a girl and a boy in white dresses speaking in video clip displaying on screen", "video_id": "video10495", "sen_id": 252909}, {"caption": "a women with attractive eyes talking to a man", "video_id": "video10495", "sen_id": 252910}, {"caption": "a woman in dramatic makeup is talking to man in white flowing clothes", "video_id": "video10495", "sen_id": 252911}, {"caption": "in a hollywood movie one man talks to another woman", "video_id": "video10495", "sen_id": 252912}, {"caption": "a lady with the plotted and superb hair style talks to the person", "video_id": "video10495", "sen_id": 252913}, {"caption": "one lady talking with one man she is looking like priences", "video_id": "video10495", "sen_id": 252914}, {"caption": "there is a man talking to his girlfriend", "video_id": "video10495", "sen_id": 252915}, {"caption": "to show the beautiful girl and the men in the living room the girl hair and eye are very attractive", "video_id": "video10495", "sen_id": 252916}, {"caption": "one beautiful and lovely women speak to man", "video_id": "video10495", "sen_id": 252917}, {"caption": "a princess talks to the person she has beautiful hair style the eye make up is awesome", "video_id": "video10495", "sen_id": 252918}, {"caption": "a woman with makeup is talking to a man", "video_id": "video10495", "sen_id": 252919}, {"caption": "an inhome chef works on a recipe by stirring ingredients in a large white pot", "video_id": "video11564", "sen_id": 252920}, {"caption": "a woman turning food in a pot and adding garlic to the food in the pot", "video_id": "video11564", "sen_id": 252921}, {"caption": "the perfectly browned onion is enhanced with garlic cloves sauteed until you smell the garlic", "video_id": "video11564", "sen_id": 252922}, {"caption": "a woman stirs a pot full of brown cooking onions while adding garlic", "video_id": "video11564", "sen_id": 252923}, {"caption": "a woman stirring up food in a pot with a giant spoon", "video_id": "video11564", "sen_id": 252924}, {"caption": "there is a woman cooking a dish in the kitchen", "video_id": "video11564", "sen_id": 252925}, {"caption": "insects are added in a tawa and mixed deeply by a lady", "video_id": "video11564", "sen_id": 252926}, {"caption": "a lady mixing something in the bowl for prepare a dish", "video_id": "video11564", "sen_id": 252927}, {"caption": "a woman is cooking a pot of onions then adds minced garlic and sautes", "video_id": "video11564", "sen_id": 252928}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11564", "sen_id": 252929}, {"caption": "a lady is demonstrating a recipe with noodles onions and garlic", "video_id": "video11564", "sen_id": 252930}, {"caption": "few onion and other vegetables were put in the bowl and fried", "video_id": "video11564", "sen_id": 252931}, {"caption": "someone stirs noodles in a darkened white pot", "video_id": "video11564", "sen_id": 252932}, {"caption": "a girl bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11564", "sen_id": 252933}, {"caption": "a person fries the onion in beaker using spoon", "video_id": "video11564", "sen_id": 252934}, {"caption": "a lady prepareing food in a large white bowl", "video_id": "video11564", "sen_id": 252935}, {"caption": "someone stirring onions that are frying in a pot with a metal spoon", "video_id": "video11564", "sen_id": 252936}, {"caption": "in a kitchen someone is cooking with onions exactly brownish and added some garlic into it", "video_id": "video11564", "sen_id": 252937}, {"caption": "a lady frying onion and garlic in a big white bowl", "video_id": "video11564", "sen_id": 252938}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11564", "sen_id": 252939}, {"caption": "an actor reading through lines on a film's movie set", "video_id": "video11178", "sen_id": 252940}, {"caption": "leonardo dicaprio talking to the director of a movie", "video_id": "video11178", "sen_id": 252941}, {"caption": "there is a person and is readin film news", "video_id": "video11178", "sen_id": 252942}, {"caption": "a team of film technicians are assembled in a particular locationwhere the young man looking handsome may be he is the hero", "video_id": "video11178", "sen_id": 252943}, {"caption": "a man giving a presentation about what has happened in someones life and how they got the job they have", "video_id": "video11178", "sen_id": 252944}, {"caption": "leonardo dicaprio wearing a red hat speaking to a director", "video_id": "video11178", "sen_id": 252945}, {"caption": "a man with a green overcoat wearing a red hat talks to an elderly man with glasses on a city corner", "video_id": "video11178", "sen_id": 252946}, {"caption": "a movie is being shot at a location with directors and actors posing for shoot", "video_id": "video11178", "sen_id": 252947}, {"caption": "leonardo di caprio a famous actor is working on shooting a movie with his director", "video_id": "video11178", "sen_id": 252948}, {"caption": "two men talk and nod while referencing a peice of paper", "video_id": "video11178", "sen_id": 252949}, {"caption": "the men are all wearing white and black dresses and one of them is talking to a man in white dress", "video_id": "video11178", "sen_id": 252950}, {"caption": "a person with brown colour cap is talking with few people", "video_id": "video11178", "sen_id": 252951}, {"caption": "three men having some conversation while standing at the street", "video_id": "video11178", "sen_id": 252952}, {"caption": "a man explains about a actor and his movie review", "video_id": "video11178", "sen_id": 252953}, {"caption": "actors and camera men stand at the set of a movie", "video_id": "video11178", "sen_id": 252954}, {"caption": "leonardo dicaprio and martin scorsese finally work together", "video_id": "video11178", "sen_id": 252955}, {"caption": "a man is talking about an actor and a movie director", "video_id": "video11178", "sen_id": 252956}, {"caption": "a video about leonardo dicaprio working with martin scorsese in 2002 for the movie gangs of new york", "video_id": "video11178", "sen_id": 252957}, {"caption": "a movie tailor was explaining by the another person", "video_id": "video11178", "sen_id": 252958}, {"caption": "martin scorsese blesses a young leonardo dicaprio with his invaluable perspective", "video_id": "video11178", "sen_id": 252959}, {"caption": "a man is speaking about a very old rare collectible car", "video_id": "video10144", "sen_id": 252960}, {"caption": "a man with a british accent describes a vehicle that he appreciates", "video_id": "video10144", "sen_id": 252961}, {"caption": "a man is talking about a spectacular sedan being parked with black color", "video_id": "video10144", "sen_id": 252962}, {"caption": "the man in coat is talking and pointing towards the car near him", "video_id": "video10144", "sen_id": 252963}, {"caption": "a man discusses how certain cars are built and shows us an old camaro", "video_id": "video10144", "sen_id": 252964}, {"caption": "a man is using his hands to describe choices between cars and what his plans for them are", "video_id": "video10144", "sen_id": 252965}, {"caption": "a young man explaining some topic in front of the camera", "video_id": "video10144", "sen_id": 252966}, {"caption": "a man in a black jacket and blue jeans is talking about cars", "video_id": "video10144", "sen_id": 252967}, {"caption": "a person explains about a thing standing near the green car", "video_id": "video10144", "sen_id": 252968}, {"caption": "a man from top gear telling his plans for a car", "video_id": "video10144", "sen_id": 252969}, {"caption": "a person wearing black jacket and jean describes about the car", "video_id": "video10144", "sen_id": 252970}, {"caption": "a man with long bushy hair and a black jacket it in a garage near a small green car", "video_id": "video10144", "sen_id": 252971}, {"caption": "tv show host explains the most obvious benefits of a given sport car he is about to try out", "video_id": "video10144", "sen_id": 252972}, {"caption": "a man discusses custom auto builds from older vehicles", "video_id": "video10144", "sen_id": 252973}, {"caption": "a man is talking about a black car he bought", "video_id": "video10144", "sen_id": 252974}, {"caption": "a man in a black jacket is in a garage talking about vehicles", "video_id": "video10144", "sen_id": 252975}, {"caption": "a man is speaking to the camera about many different vehicles", "video_id": "video10144", "sen_id": 252976}, {"caption": "a top gear presenter discusses the car he bought to remove the chassis from", "video_id": "video10144", "sen_id": 252977}, {"caption": "richard hammond talks about car choices and the car he chose for the episode", "video_id": "video10144", "sen_id": 252978}, {"caption": "a man with wild hair is talking about something", "video_id": "video10144", "sen_id": 252979}, {"caption": "a man in a white shirt and a woman in a white shirt and a light blue jacket being interviewed in a city setting", "video_id": "video12526", "sen_id": 252980}, {"caption": "a lady interviews a man and pregnant woman on the street in an eastern european city", "video_id": "video12526", "sen_id": 252981}, {"caption": "a pregnant woman and man are being interviewed in french", "video_id": "video12526", "sen_id": 252982}, {"caption": "a foreign language is spoken by a woman that interviews some people on the street", "video_id": "video12526", "sen_id": 252983}, {"caption": "a woman with red hair is holding a microphone and interviewing a woman in a blue jacket and a man in a white t-shirt", "video_id": "video12526", "sen_id": 252984}, {"caption": "a woman interviews a pregnant woman and her husband on a busy city street", "video_id": "video12526", "sen_id": 252985}, {"caption": "a man in white t-shirt talking from the street", "video_id": "video12526", "sen_id": 252986}, {"caption": "a women is interviewing people on the street in a different accent from english", "video_id": "video12526", "sen_id": 252987}, {"caption": "the pregnant woman is standing at the street with a man", "video_id": "video12526", "sen_id": 252988}, {"caption": "a reporter talks to a young couple on the street on a sunny day", "video_id": "video12526", "sen_id": 252989}, {"caption": "there is a man with cooling glass talking with his girlfriend", "video_id": "video12526", "sen_id": 252990}, {"caption": "there are mnay mens walking on the street", "video_id": "video12526", "sen_id": 252991}, {"caption": "two men wearing white shirts are trying to speak another man and removing their shirts", "video_id": "video12526", "sen_id": 252992}, {"caption": "a lady holding a mike in hand asking some thing from a man", "video_id": "video12526", "sen_id": 252993}, {"caption": "a guy and a lady are talking with another person through mike", "video_id": "video12526", "sen_id": 252994}, {"caption": "there is a man with white dressing talking with a girl friend", "video_id": "video12526", "sen_id": 252995}, {"caption": "a interview of people on the street asking questions to a man and woman", "video_id": "video12526", "sen_id": 252996}, {"caption": "a man and his pregnant girlfriend are interview on a street", "video_id": "video12526", "sen_id": 252997}, {"caption": "a girl and boy standing and other girl holding mic in her hand speaking standing discusing on street road displaying on screen", "video_id": "video12526", "sen_id": 252998}, {"caption": "a couple is being interviewed in a busy town square", "video_id": "video12526", "sen_id": 252999}, {"caption": "a cat is wearing a pirate costume", "video_id": "video10880", "sen_id": 253000}, {"caption": "a small cat dressed like a pirate and walking on the floor", "video_id": "video10880", "sen_id": 253001}, {"caption": "a tabby cat dressed up in a pirate costume with a hook hand", "video_id": "video10880", "sen_id": 253002}, {"caption": "a cat dressing in a sailor outfit walking on hardwood floors", "video_id": "video10880", "sen_id": 253003}, {"caption": "a tan cat is wearing a pirate costume", "video_id": "video10880", "sen_id": 253004}, {"caption": "a cat is dressed up like a patriot walking in a room with wood floors and white cabinets", "video_id": "video10880", "sen_id": 253005}, {"caption": "a car is decorated by wearing dress and cap and it is walking", "video_id": "video10880", "sen_id": 253006}, {"caption": "one cute cat is wearing human dress in", "video_id": "video10880", "sen_id": 253007}, {"caption": "a cute cat is wearing cowboy dress inside the house which is very beautiful", "video_id": "video10880", "sen_id": 253008}, {"caption": "a cat in a pirate costume is walking around", "video_id": "video10880", "sen_id": 253009}, {"caption": "a cat wore pant shirt and cap and walking in a hall", "video_id": "video10880", "sen_id": 253010}, {"caption": "a cat acting like a character in pirates of carribean", "video_id": "video10880", "sen_id": 253011}, {"caption": "there is a cat which is dressed up in costume and walking", "video_id": "video10880", "sen_id": 253012}, {"caption": "cat can be dressed like mens dress and walking", "video_id": "video10880", "sen_id": 253013}, {"caption": "a cute cat is dressed like a pirates with the cute cap stating the same gives a elegant walk", "video_id": "video10880", "sen_id": 253014}, {"caption": "a person is showing cat in pirate outfit sitting on the floor", "video_id": "video10880", "sen_id": 253015}, {"caption": "a cat is dressed up in a pirate costume and it is trying to walk on two legs", "video_id": "video10880", "sen_id": 253016}, {"caption": "cute cat dress like pirates and it walks so cute", "video_id": "video10880", "sen_id": 253017}, {"caption": "a little cat walks around with shoes in the kitchen", "video_id": "video10880", "sen_id": 253018}, {"caption": "a cat dressed as a pirate is being filmed by someone", "video_id": "video10880", "sen_id": 253019}, {"caption": "various small toys and dolls crash into a pool of water", "video_id": "video12305", "sen_id": 253020}, {"caption": "an intro video to the graham norton show", "video_id": "video12305", "sen_id": 253021}, {"caption": "its a animated video about the graham norton show", "video_id": "video12305", "sen_id": 253022}, {"caption": "a tv show introduction clip to the graham norton show", "video_id": "video12305", "sen_id": 253023}, {"caption": "figure toys splash into water followed by a star rising into a starlit sky as part of an advertisement for the graham norton show", "video_id": "video12305", "sen_id": 253024}, {"caption": "the opening credits and video for the graham norton show", "video_id": "video12305", "sen_id": 253025}, {"caption": "opening credits for the graham norton show include laptop a robot and a star", "video_id": "video12305", "sen_id": 253026}, {"caption": "the introduction of a television program shows various objects plunging into and coming out of water", "video_id": "video12305", "sen_id": 253027}, {"caption": " and toys are dropped into water before a logo for a television show is displayed", "video_id": "video12305", "sen_id": 253028}, {"caption": "a variety of objects fall in the water then a yellow star rises out of the water", "video_id": "video12305", "sen_id": 253029}, {"caption": "this is the beginning of the graham norton show which shows random props such as like computer screens and dolls", "video_id": "video12305", "sen_id": 253030}, {"caption": "there is a gold color star in a purple color sky where it shining with sparkles", "video_id": "video12305", "sen_id": 253031}, {"caption": "various random object drop into water in the introduction of a tv show", "video_id": "video12305", "sen_id": 253032}, {"caption": "a music video uses wooden dolls and a robotic action figure to get their metaphorical message across", "video_id": "video12305", "sen_id": 253033}, {"caption": "a picture falling into water a doll coming out of the water and then moving in the air", "video_id": "video12305", "sen_id": 253034}, {"caption": "a introduction to the graham norton show that features toy robots and figurines dropped into water", "video_id": "video12305", "sen_id": 253035}, {"caption": "several toys are floating around on screen then a star pops up that says the graham norton show", "video_id": "video12305", "sen_id": 253036}, {"caption": "the graham norton show on tv", "video_id": "video12305", "sen_id": 253037}, {"caption": " and myriad other objects fall into water in the opening sequence for the graham norton show", "video_id": "video12305", "sen_id": 253038}, {"caption": "dolls and various toys are plunged into the water in the graham norton show intro", "video_id": "video12305", "sen_id": 253039}, {"caption": "a woman in red plays badminton with on in a dark uniform", "video_id": "video10130", "sen_id": 253040}, {"caption": "two players are playing badminton match watched by the crowd", "video_id": "video10130", "sen_id": 253041}, {"caption": "two tennis players are involved in match in indoor stadium", "video_id": "video10130", "sen_id": 253042}, {"caption": "a tennis player in pink serves the ball to another player", "video_id": "video10130", "sen_id": 253043}, {"caption": "ladies go at it and battle on the tennis courts", "video_id": "video10130", "sen_id": 253044}, {"caption": "a running tennis play from tennis ground where both refree judging the game and audience enjoying it", "video_id": "video10130", "sen_id": 253045}, {"caption": "there is a women in pink dress smashing in a badminton game", "video_id": "video10130", "sen_id": 253046}, {"caption": "two players are playing long tennis on court in indoor stadium", "video_id": "video10130", "sen_id": 253047}, {"caption": "a shuttle match is played between two girls", "video_id": "video10130", "sen_id": 253048}, {"caption": "two women play a tennis match in front of large crowd", "video_id": "video10130", "sen_id": 253049}, {"caption": "there is someone playing badminton in a green court", "video_id": "video10130", "sen_id": 253050}, {"caption": "the two ladies playin the tenice in the field", "video_id": "video10130", "sen_id": 253051}, {"caption": "two women players are playing a tennis match", "video_id": "video10130", "sen_id": 253052}, {"caption": "two women having a tennis tournament", "video_id": "video10130", "sen_id": 253053}, {"caption": "badminton player in black and red top playing against each other in a match", "video_id": "video10130", "sen_id": 253054}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10130", "sen_id": 253055}, {"caption": "two women play badmitton in a large stadium in front of a big crowd", "video_id": "video10130", "sen_id": 253056}, {"caption": "two players on the court hitting a ball back and forth on a tennis court", "video_id": "video10130", "sen_id": 253057}, {"caption": "a red colour t shirt dress girls playing batmanton tennis game inside stadium audience watching", "video_id": "video10130", "sen_id": 253058}, {"caption": "some people are playing badminton on a court", "video_id": "video10130", "sen_id": 253059}, {"caption": "a man driving a car and pushing a giant soccer ball into a goal", "video_id": "video12652", "sen_id": 253060}, {"caption": "cars driving around a track playing soccer with an over sized soccer ball", "video_id": "video12652", "sen_id": 253061}, {"caption": "a man driving a car into a big soccer ball", "video_id": "video12652", "sen_id": 253062}, {"caption": "england plays portland in a game of soccer played with cars", "video_id": "video12652", "sen_id": 253063}, {"caption": "a number of men play soccer with vans and a large soccer ball", "video_id": "video12652", "sen_id": 253064}, {"caption": "two green vehicles push a large soccer ball down a track when a white car blocks the ball from going into the goal", "video_id": "video12652", "sen_id": 253065}, {"caption": "there are many people driving a car and they playing with big ball on the road", "video_id": "video12652", "sen_id": 253066}, {"caption": "several different racers in small cars for australian and british teams including one car which is pushing a giant soccer ball", "video_id": "video12652", "sen_id": 253067}, {"caption": "many men driving cars are attempting to ram a soccer ball into a goal", "video_id": "video12652", "sen_id": 253068}, {"caption": "several men are playing soccer while driving cars for their country", "video_id": "video12652", "sen_id": 253069}, {"caption": "cars in different colors to simulate team colors are driving a man sized soccer ball into a net in front of an audience in bleachers", "video_id": "video12652", "sen_id": 253070}, {"caption": "there is a man hitting a ball with car", "video_id": "video12652", "sen_id": 253071}, {"caption": "a man is driving a car into a giant soccer ball trying to drive it into a net", "video_id": "video12652", "sen_id": 253072}, {"caption": "people in cars racing", "video_id": "video12652", "sen_id": 253073}, {"caption": "a green car labeled australia is pushing an oversized soccer ball toward a goal only to be stopped by a white car labeled england", "video_id": "video12652", "sen_id": 253074}, {"caption": "drivers on a track are playing soccer with their cars as if them were players", "video_id": "video12652", "sen_id": 253075}, {"caption": "some drivers are playing a version of soccer that is played in cars", "video_id": "video12652", "sen_id": 253076}, {"caption": "an audience is watching a soccer match involving cars", "video_id": "video12652", "sen_id": 253077}, {"caption": "cars play a game of soccer in an episode of top gear uk", "video_id": "video12652", "sen_id": 253078}, {"caption": "a man in a green hat is driving a car", "video_id": "video12652", "sen_id": 253079}, {"caption": "a half nude woman is posing on a bed", "video_id": "video11702", "sen_id": 253080}, {"caption": "a woman in skimpy blue shirt and white panties", "video_id": "video11702", "sen_id": 253081}, {"caption": "a woman is in a bedroom posing on a white bed wearing a low cut top and underwear", "video_id": "video11702", "sen_id": 253082}, {"caption": "a scantily clad woman shows off her body on a white bed", "video_id": "video11702", "sen_id": 253083}, {"caption": "model girl appears to be doing a photo shoot", "video_id": "video11702", "sen_id": 253084}, {"caption": "a woman wearing a tank top and panties is showing off her body", "video_id": "video11702", "sen_id": 253085}, {"caption": "sensual shots of a random woman marketing her bodily goods in lingerie", "video_id": "video11702", "sen_id": 253086}, {"caption": "a female model shows off in slow motion to simple electronic dance music", "video_id": "video11702", "sen_id": 253087}, {"caption": "young blonde woman in blue crop top and a thong posing sexually on a white bed featuring her butt", "video_id": "video11702", "sen_id": 253088}, {"caption": "a female is modeling in minimal clothing out doors and on indoor bed", "video_id": "video11702", "sen_id": 253089}, {"caption": "there is a hot girl showing different action", "video_id": "video11702", "sen_id": 253090}, {"caption": "ladies are posing in a very sexy way for the camera", "video_id": "video11702", "sen_id": 253091}, {"caption": "a sexy lady model giving glamour pose to the camera", "video_id": "video11702", "sen_id": 253092}, {"caption": "blond sexy women laying in bed wearing blue shirt and thong underwear", "video_id": "video11702", "sen_id": 253093}, {"caption": "posing of the beauty for various sex arousing posses", "video_id": "video11702", "sen_id": 253094}, {"caption": "a partially nude model shows off her body for the camera in front of a window", "video_id": "video11702", "sen_id": 253095}, {"caption": "a white woman laying around in her bed half naked", "video_id": "video11702", "sen_id": 253096}, {"caption": "a sexy model with very little clothing is profiled in a bed by herself", "video_id": "video11702", "sen_id": 253097}, {"caption": "a woman with blonde hair rolling around a bed in nothing but a shirt and thong panties", "video_id": "video11702", "sen_id": 253098}, {"caption": "a woman in a cut off top and a thong is posing seductively on a bed", "video_id": "video11702", "sen_id": 253099}, {"caption": "two white lamas are standing around and occasionally eating", "video_id": "video11107", "sen_id": 253100}, {"caption": "two big sheep eating next to each other", "video_id": "video11107", "sen_id": 253101}, {"caption": "some fluffy white lamas eating by a barn and looking around", "video_id": "video11107", "sen_id": 253102}, {"caption": "two white animals are eating hay in a pen", "video_id": "video11107", "sen_id": 253103}, {"caption": "two lamas are standing near a building next to a fence", "video_id": "video11107", "sen_id": 253104}, {"caption": "there are two sheep standing next to a barn shop eating grass", "video_id": "video11107", "sen_id": 253105}, {"caption": "two white lamas are eating in their pin in a zoo", "video_id": "video11107", "sen_id": 253106}, {"caption": "grass are dried then two lambs are placed they stand together", "video_id": "video11107", "sen_id": 253107}, {"caption": "beautiful two lamas standing in the zoo and looking at the guests", "video_id": "video11107", "sen_id": 253108}, {"caption": "animals stand by a building and one of them eats", "video_id": "video11107", "sen_id": 253109}, {"caption": "there are two animals eating grass in a cage", "video_id": "video11107", "sen_id": 253110}, {"caption": "the animals stand next to one another near the building", "video_id": "video11107", "sen_id": 253111}, {"caption": "farm animals eat together in a closed area", "video_id": "video11107", "sen_id": 253112}, {"caption": "a goat white color standing eating inside compound displaying on screen", "video_id": "video11107", "sen_id": 253113}, {"caption": "some animals are standing in a stall", "video_id": "video11107", "sen_id": 253114}, {"caption": "there are two white animals eating together the grass", "video_id": "video11107", "sen_id": 253115}, {"caption": "two lamas are eating while music plays in the background", "video_id": "video11107", "sen_id": 253116}, {"caption": "two adorable young white llamas stand in a fenced in enclosure", "video_id": "video11107", "sen_id": 253117}, {"caption": "two white llamas quietly graze between the red hose and a wooden fence", "video_id": "video11107", "sen_id": 253118}, {"caption": "some animals in a stall are eating food", "video_id": "video11107", "sen_id": 253119}, {"caption": "men with pig masks in a car chasing two bicyclists", "video_id": "video12962", "sen_id": 253120}, {"caption": "two people on bicycles are running away from a monster driving a car", "video_id": "video12962", "sen_id": 253121}, {"caption": "rock music plays as people in pig masks drive in a car chasing two other men on red bicycles", "video_id": "video12962", "sen_id": 253122}, {"caption": "a man in a yellow car wearing a pig mask is shown chasing two people on bicycles", "video_id": "video12962", "sen_id": 253123}, {"caption": "a man in a scary pig mask is driving a car after a couple of boys on bicycles", "video_id": "video12962", "sen_id": 253124}, {"caption": "2 men on bikes being chased by 2 men in a car wearing masks", "video_id": "video12962", "sen_id": 253125}, {"caption": "an animated cartoon is shown for the childrens on the screen", "video_id": "video12962", "sen_id": 253126}, {"caption": "some people in masks are driving in a car", "video_id": "video12962", "sen_id": 253127}, {"caption": "a man is flying with bicycle overtake the car", "video_id": "video12962", "sen_id": 253128}, {"caption": "a car driving with mask upon face and boys wearing helmet ryding bycycle wheeling cycle music displaying", "video_id": "video12962", "sen_id": 253129}, {"caption": "two man wearing mask is driving a car chasing a boy riding a cycle", "video_id": "video12962", "sen_id": 253130}, {"caption": "some person is wearing a mask and driving", "video_id": "video12962", "sen_id": 253131}, {"caption": "men in car chasing motorcycle riders on the road", "video_id": "video12962", "sen_id": 253132}, {"caption": "one man cycling behind him two to follow in car", "video_id": "video12962", "sen_id": 253133}, {"caption": "two masked men use their car to chase two cyclists while simultaneously throwing money out the windows", "video_id": "video12962", "sen_id": 253134}, {"caption": "kids riding bycycle in the middle of the road", "video_id": "video12962", "sen_id": 253135}, {"caption": "two man going on a car two little boys are riding on a cycle before them", "video_id": "video12962", "sen_id": 253136}, {"caption": "two man cycling in road equally good and fast", "video_id": "video12962", "sen_id": 253137}, {"caption": "bunch of guys in mask making the get away on car", "video_id": "video12962", "sen_id": 253138}, {"caption": "some guys in costumes are driving in a car", "video_id": "video12962", "sen_id": 253139}, {"caption": "a guy is talking about winning something special", "video_id": "video12401", "sen_id": 253140}, {"caption": "a young man with pink hair moves around the inside of a building", "video_id": "video12401", "sen_id": 253141}, {"caption": "a man with purple hair is acting goofy and challenging people to fight him", "video_id": "video12401", "sen_id": 253142}, {"caption": "a man with purple hair with an australian accent talks about how he hopes to win a competition", "video_id": "video12401", "sen_id": 253143}, {"caption": "a man with purple hair is talking into the camera", "video_id": "video12401", "sen_id": 253144}, {"caption": "a goofy looking man discusses how he s preparing for some kind of compeitition", "video_id": "video12401", "sen_id": 253145}, {"caption": "a man with purple hair says he is going to beat a girl chantel in trials", "video_id": "video12401", "sen_id": 253146}, {"caption": "a man with purple hair is talking in a crowded room", "video_id": "video12401", "sen_id": 253147}, {"caption": "an odd man with pink hair tells how he is going to be someone in a competition", "video_id": "video12401", "sen_id": 253148}, {"caption": "a man with purple hair is talking to the camera", "video_id": "video12401", "sen_id": 253149}, {"caption": "a man discussing something with the camera with people in the background", "video_id": "video12401", "sen_id": 253150}, {"caption": "an animated caucasian man with fuchsia hair in his mid-twenties talks directly to the camera", "video_id": "video12401", "sen_id": 253151}, {"caption": "a man with purple hair talking about fighting someone", "video_id": "video12401", "sen_id": 253152}, {"caption": "a young man with pink hair trash talks his event competition", "video_id": "video12401", "sen_id": 253153}, {"caption": "a man with pink hair films himself talking about how he is going to win a competition", "video_id": "video12401", "sen_id": 253154}, {"caption": "a hyped-up young man speaks into the camera", "video_id": "video12401", "sen_id": 253155}, {"caption": "the man boosting his self esteem against a rival", "video_id": "video12401", "sen_id": 253156}, {"caption": "a man is talking some thing and also other persons there", "video_id": "video12401", "sen_id": 253157}, {"caption": "a young man with purple spiked hair talks about winning", "video_id": "video12401", "sen_id": 253158}, {"caption": "a man with purple hair is talkig to people", "video_id": "video12401", "sen_id": 253159}, {"caption": "a man and woman are fighting other people", "video_id": "video11611", "sen_id": 253160}, {"caption": "there is a women hitting hard on a stomach", "video_id": "video11611", "sen_id": 253161}, {"caption": "a young highly trained woman at odds with a group of men", "video_id": "video11611", "sen_id": 253162}, {"caption": "a woman is being shown in a trailer beating someone up", "video_id": "video11611", "sen_id": 253163}, {"caption": "there is fire outside and a young man and woman are fighting each other", "video_id": "video11611", "sen_id": 253164}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video11611", "sen_id": 253165}, {"caption": "the james bond hero is attacking the antihero in very well", "video_id": "video11611", "sen_id": 253166}, {"caption": "a secret agent woman has a kung fu fight with a man and kicks him in to a wall", "video_id": "video11611", "sen_id": 253167}, {"caption": "a lady is fighting with another person and a person seated in a car", "video_id": "video11611", "sen_id": 253168}, {"caption": "a women is fighting and kicking hard to a man in a movie trailer", "video_id": "video11611", "sen_id": 253169}, {"caption": "there is a men and women fighting in a movie", "video_id": "video11611", "sen_id": 253170}, {"caption": "the man and the woman are making fights with other people", "video_id": "video11611", "sen_id": 253171}, {"caption": "a woman who is some sort of secret agent fights her way through several situations", "video_id": "video11611", "sen_id": 253172}, {"caption": "a boy and girl fighting on scene girl and boy speaking displaying on screen", "video_id": "video11611", "sen_id": 253173}, {"caption": "a man and woman are doing things together", "video_id": "video11611", "sen_id": 253174}, {"caption": "a man and a woman walk away from a fire calmly then battle each other dramatically", "video_id": "video11611", "sen_id": 253175}, {"caption": "one man and women fights to another man in a movie", "video_id": "video11611", "sen_id": 253176}, {"caption": "several scenes from a movie about a female special agent", "video_id": "video11611", "sen_id": 253177}, {"caption": "a boy and girl in scene walking and fighting man sitting in car video clip", "video_id": "video11611", "sen_id": 253178}, {"caption": "people are walking around on a movie set", "video_id": "video11611", "sen_id": 253179}, {"caption": "two men fight followed by a dog like animal and a bird like on which changes into a man", "video_id": "video10811", "sen_id": 253180}, {"caption": "two guys fighting each other with weapons and wearing gold", "video_id": "video10811", "sen_id": 253181}, {"caption": " then sprout wings and fight more viciously", "video_id": "video10811", "sen_id": 253182}, {"caption": "the man fights the beasts and then falls to the floor", "video_id": "video10811", "sen_id": 253183}, {"caption": "an animated characters were fighting each other on the building", "video_id": "video10811", "sen_id": 253184}, {"caption": "a man turns into a phoenix and then gets beat down and turns back into a human", "video_id": "video10811", "sen_id": 253185}, {"caption": "a warrior is in a battle for his life against a winged animal", "video_id": "video10811", "sen_id": 253186}, {"caption": "two men are fighting and one knocks the other over then a monster bursts through objects it cuts to another monster growing wings and flying into the sky", "video_id": "video10811", "sen_id": 253187}, {"caption": "a dramatic fight between two gladiators that turn in to beasts as they interact", "video_id": "video10811", "sen_id": 253188}, {"caption": "a beast with large golden wings has brought a man to his doom", "video_id": "video10811", "sen_id": 253189}, {"caption": "two men are fighting hand to hand when a creature with wings appears and the man is defeated", "video_id": "video10811", "sen_id": 253190}, {"caption": "a man in a gold shirt is lying down", "video_id": "video10811", "sen_id": 253191}, {"caption": "a winged man throws another man across a stadium", "video_id": "video10811", "sen_id": 253192}, {"caption": "a large group of mythical beasts fight in a large marble temple", "video_id": "video10811", "sen_id": 253193}, {"caption": "a movie trailer for a movie about ancient greece", "video_id": "video10811", "sen_id": 253194}, {"caption": "two different clans of gods clash with each other", "video_id": "video10811", "sen_id": 253195}, {"caption": "people with supernatural powers are fighting by each other", "video_id": "video10811", "sen_id": 253196}, {"caption": "two men turn into egyptian gods and begin to fight", "video_id": "video10811", "sen_id": 253197}, {"caption": "some greek god type characters engage in battle in a temple", "video_id": "video10811", "sen_id": 253198}, {"caption": "mythological creatures with superhuman powers engage each other in mortal combat", "video_id": "video10811", "sen_id": 253199}, {"caption": "an asian man wearing glasses and eating noodles with chopstix", "video_id": "video12288", "sen_id": 253200}, {"caption": "a man is enjoying a bowl of spicy ramen soup he thanks his audience for watching him", "video_id": "video12288", "sen_id": 253201}, {"caption": "a older white man in a blue shirt eating noodles", "video_id": "video12288", "sen_id": 253202}, {"caption": "a man in a gray shirt uses chopsticks to eat noodles", "video_id": "video12288", "sen_id": 253203}, {"caption": "a man is eating freshly cooked noodles and talking about it", "video_id": "video12288", "sen_id": 253204}, {"caption": "a person taste tests his finished meal creation", "video_id": "video12288", "sen_id": 253205}, {"caption": "an older asian man with a mustache is eating a meal he made with wooden chopsticks and is commenting on how spicy it is", "video_id": "video12288", "sen_id": 253206}, {"caption": "a man eating cold spicy noodles with chopsticks", "video_id": "video12288", "sen_id": 253207}, {"caption": "a balding man with black eyebrows and glasses is tasting food in the kitchen", "video_id": "video12288", "sen_id": 253208}, {"caption": "a man in a kitchen is trying a noodle dish", "video_id": "video12288", "sen_id": 253209}, {"caption": "a man in kitchen tasting noodles and explaining the method", "video_id": "video12288", "sen_id": 253210}, {"caption": "a man is eating some food at a table", "video_id": "video12288", "sen_id": 253211}, {"caption": "a man eating ramen and talking to the camera", "video_id": "video12288", "sen_id": 253212}, {"caption": "a man is eating noodles with chop sticks", "video_id": "video12288", "sen_id": 253213}, {"caption": "a old man in blue color dress inside kitchen dish eating prepared speaking displaying on screen", "video_id": "video12288", "sen_id": 253214}, {"caption": "an old man is eating noodles very tasty and spicy", "video_id": "video12288", "sen_id": 253215}, {"caption": "a man eats a bowl of cold spicy noodles", "video_id": "video12288", "sen_id": 253216}, {"caption": "a man in a gray shirt eating noodles", "video_id": "video12288", "sen_id": 253217}, {"caption": "a man tastes some noodles he has made in his kitchen", "video_id": "video12288", "sen_id": 253218}, {"caption": "man eats noodles with chopsticks and describes them as spicy and cold", "video_id": "video12288", "sen_id": 253219}, {"caption": "top gear cars driving through a shopping mall", "video_id": "video12316", "sen_id": 253220}, {"caption": "a man driving a car in south west london", "video_id": "video12316", "sen_id": 253221}, {"caption": "a british looking man in a black shirt and jeans is driving a car", "video_id": "video12316", "sen_id": 253222}, {"caption": "a man drives a car through a mall while describing its features", "video_id": "video12316", "sen_id": 253223}, {"caption": "a group of people racing in a mall", "video_id": "video12316", "sen_id": 253224}, {"caption": "there is a man riding a stylish car", "video_id": "video12316", "sen_id": 253225}, {"caption": "there are cars moving on roads very fast and one men is driving the car", "video_id": "video12316", "sen_id": 253226}, {"caption": "one man driving car fastly and its like that jet", "video_id": "video12316", "sen_id": 253227}, {"caption": "a man drives a yellow car very fastly inside a show roomhe wear wrist watch", "video_id": "video12316", "sen_id": 253228}, {"caption": "a green colour car moving fast driver in black dress riding fast", "video_id": "video12316", "sen_id": 253229}, {"caption": "there is a stylish car on the street", "video_id": "video12316", "sen_id": 253230}, {"caption": "the man drives the lime green car really fast", "video_id": "video12316", "sen_id": 253231}, {"caption": "a man is riding a car very fast and talking", "video_id": "video12316", "sen_id": 253232}, {"caption": "a yellow car and black car are driving inside an indoor mall", "video_id": "video12316", "sen_id": 253233}, {"caption": "number of cars are chasing one another in a big shopping mall", "video_id": "video12316", "sen_id": 253234}, {"caption": "2 cars driving through a shopping center", "video_id": "video12316", "sen_id": 253235}, {"caption": "a car company is describing all the features of their new car in the test drive", "video_id": "video12316", "sen_id": 253236}, {"caption": "a black sports car races through a shopping mall in a stunt situation", "video_id": "video12316", "sen_id": 253237}, {"caption": "the man is a driving a car through a shopping mall while being chased by a corvette", "video_id": "video12316", "sen_id": 253238}, {"caption": "a black car is driving through a shopping mall", "video_id": "video12316", "sen_id": 253239}, {"caption": "two men talk about the technique for throwing a shot put", "video_id": "video11517", "sen_id": 253240}, {"caption": "there is a red tshirt man talking from the ground", "video_id": "video11517", "sen_id": 253241}, {"caption": "their is a guy with a red shirt talking about what he is doing the field their is a lot of grass in the field", "video_id": "video11517", "sen_id": 253242}, {"caption": "a pair of young men talk about the form they use when throwing a shot put", "video_id": "video11517", "sen_id": 253243}, {"caption": "a man in a red t-shirt is standing in a field of green grass", "video_id": "video11517", "sen_id": 253244}, {"caption": "there is a young man in a red shirt in a field standing on a shot put platform", "video_id": "video11517", "sen_id": 253245}, {"caption": "a man wearing a red shirt explains what he is getting ready to do in the video to his viewing audience", "video_id": "video11517", "sen_id": 253246}, {"caption": "a man is standing in a field talking about how he needs to improve his form", "video_id": "video11517", "sen_id": 253247}, {"caption": "guy in red tshirt standing on carpet", "video_id": "video11517", "sen_id": 253248}, {"caption": "a young male athlete is discussing his shot put training", "video_id": "video11517", "sen_id": 253249}, {"caption": "there is a young man wearing a red shirt on a field of grass talking about a sport", "video_id": "video11517", "sen_id": 253250}, {"caption": "a guy in red talks about shot put while standing out in a field", "video_id": "video11517", "sen_id": 253251}, {"caption": "person standing with hands in pockets talking and moving around", "video_id": "video11517", "sen_id": 253252}, {"caption": "a boy in red dress wearing color cloth inside stadium standing speaking displaying on screen", "video_id": "video11517", "sen_id": 253253}, {"caption": "there is a young man with a red shirt on a grassland", "video_id": "video11517", "sen_id": 253254}, {"caption": "a man explaining how he plans to practice his shot put form", "video_id": "video11517", "sen_id": 253255}, {"caption": "the red shirt player is replying to a question in the play field lively", "video_id": "video11517", "sen_id": 253256}, {"caption": "a man wearing red shirt is standing in the field", "video_id": "video11517", "sen_id": 253257}, {"caption": "a man in a red shirt stands in a field and talks about throwing the shot-put", "video_id": "video11517", "sen_id": 253258}, {"caption": "a man in a red shirt is standing in a field", "video_id": "video11517", "sen_id": 253259}, {"caption": "a woman demonstrating a sewing technique on a sewing machine", "video_id": "video11906", "sen_id": 253260}, {"caption": "two women discuss crafts while one of the women sews on a machine", "video_id": "video11906", "sen_id": 253261}, {"caption": "two women are chatting while one is sewing on a sewing machine", "video_id": "video11906", "sen_id": 253262}, {"caption": "a woman in a green shirt seated and working at a sewing machine next to a woman in a red sweater", "video_id": "video11906", "sen_id": 253263}, {"caption": "two women having discussion about craft work with sewing machine", "video_id": "video11906", "sen_id": 253264}, {"caption": "two pretty woman s are stitching with the help of sewing machine", "video_id": "video11906", "sen_id": 253265}, {"caption": "one women is stiching cloths on swining machine and other ladywith red top is lookig her", "video_id": "video11906", "sen_id": 253266}, {"caption": "a woman is talking to another while working on a sewing machine", "video_id": "video11906", "sen_id": 253267}, {"caption": "two women discuss a sewing techniue and work on a craft together", "video_id": "video11906", "sen_id": 253268}, {"caption": "the beautiful woman in red jacket is teaching craft to a young girl in green dress", "video_id": "video11906", "sen_id": 253269}, {"caption": "blonde woman watches the brunette as she sews the clothes on sewing machine", "video_id": "video11906", "sen_id": 253270}, {"caption": "a lady in green stitching a dress in sewing machine and another lady in red and green sitting near and talking to her", "video_id": "video11906", "sen_id": 253271}, {"caption": "two women work with a sewing machine on the crafts channel", "video_id": "video11906", "sen_id": 253272}, {"caption": "two girls are discussing about tailoring and one is explaining to another", "video_id": "video11906", "sen_id": 253273}, {"caption": "a lady in green dress is showing how to stitch on sewing machine to lady in red dress", "video_id": "video11906", "sen_id": 253274}, {"caption": "a woman shows another woman how to sew something with a sewing machine", "video_id": "video11906", "sen_id": 253275}, {"caption": "a woman is speaking to another woman while using a sewing machine", "video_id": "video11906", "sen_id": 253276}, {"caption": "two women on an arts and crafts show one woman is stitching on a sewing machine", "video_id": "video11906", "sen_id": 253277}, {"caption": "two lady in this video one lady demonstrating how to craft a dress nicely", "video_id": "video11906", "sen_id": 253278}, {"caption": "two womens are discussing about tailring one with red over coat with green inner looks on another with green shirt stitching on a sweing machine", "video_id": "video11906", "sen_id": 253279}, {"caption": "a lady is explaining a recepie for what appears to be delicious looking meal that can make 4 servings", "video_id": "video11673", "sen_id": 253280}, {"caption": "a mature woman in saree making a dish", "video_id": "video11673", "sen_id": 253281}, {"caption": "a woman dressed in a tunic talks while explaining how to cook food", "video_id": "video11673", "sen_id": 253282}, {"caption": "a chef in a red sari greets us and talks in a foreign language introducing a dish that serves four", "video_id": "video11673", "sen_id": 253283}, {"caption": "a woman talks about her asian recipe and the dish is shown", "video_id": "video11673", "sen_id": 253284}, {"caption": "cooking class in tv show in hindi - she explains the ingredients", "video_id": "video11673", "sen_id": 253285}, {"caption": "there is a woman in saree making a dish in the kitchen", "video_id": "video11673", "sen_id": 253286}, {"caption": "an old lady standing in saree in the kitchen and going to make a thai dish with ingredients on the table", "video_id": "video11673", "sen_id": 253287}, {"caption": "a cookery program is being shown the lady chef is wearing red saree and blouse she spokes in hindi and preparing some food item", "video_id": "video11673", "sen_id": 253288}, {"caption": "mature woman is describing how the make traditional food", "video_id": "video11673", "sen_id": 253289}, {"caption": "a female is going to make a thai recipe chop-chop in her home kitchen", "video_id": "video11673", "sen_id": 253290}, {"caption": "a woman with a red and white outfit is cooking in the kitchen", "video_id": "video11673", "sen_id": 253291}, {"caption": "a lady red colored dress is preparing noodles", "video_id": "video11673", "sen_id": 253292}, {"caption": "a woman with a red cloth over her shoulder is speaking food is seen on a plate", "video_id": "video11673", "sen_id": 253293}, {"caption": "an old woman is wearing saree is going to prepare recipe and talking about it", "video_id": "video11673", "sen_id": 253294}, {"caption": "a woman in a kitchen cooking a dish that serves four", "video_id": "video11673", "sen_id": 253295}, {"caption": "a woman in a red sari shows off her finished dish and begins to show how to create it", "video_id": "video11673", "sen_id": 253296}, {"caption": "an elderly indian woman calmly speaks in a lightly colored kitchen as she begins to cook", "video_id": "video11673", "sen_id": 253297}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video11673", "sen_id": 253298}, {"caption": "the lady explain about the cooking method the things are placed on the table she show the things with the explanation", "video_id": "video11673", "sen_id": 253299}, {"caption": "a young woman carries her small baby as she walks around her home", "video_id": "video10433", "sen_id": 253300}, {"caption": "there is a woman walking with her baby", "video_id": "video10433", "sen_id": 253301}, {"caption": "a woman walking around her house with her baby talking about she wants to get more christmas decorations", "video_id": "video10433", "sen_id": 253302}, {"caption": "a woman is walking around with her baby and talking about her home", "video_id": "video10433", "sen_id": 253303}, {"caption": "a woman walks around the house while carrying her baby", "video_id": "video10433", "sen_id": 253304}, {"caption": "a woman holding a baby in a carrier against her chest", "video_id": "video10433", "sen_id": 253305}, {"caption": "there is a woman walking with her little baby", "video_id": "video10433", "sen_id": 253306}, {"caption": "a woman holding a little kid on her chest telling about his kid", "video_id": "video10433", "sen_id": 253307}, {"caption": "a mother carries her baby and walks inside the house and it sleeps so good", "video_id": "video10433", "sen_id": 253308}, {"caption": "a mom pats her baby on the head while it sleeps on her chest", "video_id": "video10433", "sen_id": 253309}, {"caption": "there is a woman holding and careesing a baby inside a nice family home", "video_id": "video10433", "sen_id": 253310}, {"caption": "a woman carrying a baby is walking and talking", "video_id": "video10433", "sen_id": 253311}, {"caption": "a woman films herself as she carries her baby around her house", "video_id": "video10433", "sen_id": 253312}, {"caption": "a young woman talks about her house and holds a darling baby", "video_id": "video10433", "sen_id": 253313}, {"caption": "a woman holding a baby walks through her house and talks about it", "video_id": "video10433", "sen_id": 253314}, {"caption": "a woman with a baby walks through her house talking about the christmas decorations she has put up", "video_id": "video10433", "sen_id": 253315}, {"caption": "a woman walks through a house while cradling a baby in a blanket and talking to the camera about her plans", "video_id": "video10433", "sen_id": 253316}, {"caption": "a woman carrying a baby in a baby carrier which she wears says she is trying to clean up and she has a few christmas decorations up", "video_id": "video10433", "sen_id": 253317}, {"caption": "a blond woman with green eyes carries a baby and walks around the house talking", "video_id": "video10433", "sen_id": 253318}, {"caption": "the woman was holding and carressinng her baby", "video_id": "video10433", "sen_id": 253319}, {"caption": "three guys sitting on a couch and talking", "video_id": "video10800", "sen_id": 253320}, {"caption": "three young men sit on a couch in a colorful room on a talk show", "video_id": "video10800", "sen_id": 253321}, {"caption": "there is a man with specs smiling from a studio", "video_id": "video10800", "sen_id": 253322}, {"caption": "male host of television program introduces two men one who is a youtuber and the other an actor", "video_id": "video10800", "sen_id": 253323}, {"caption": "three men sits on the couch and talk with their drinks on the table", "video_id": "video10800", "sen_id": 253324}, {"caption": "a tv show host is interviewing two men sitting on a couch", "video_id": "video10800", "sen_id": 253325}, {"caption": "there is a tshirt man talking from a studio", "video_id": "video10800", "sen_id": 253326}, {"caption": "a host from drama kings t show is introducing an audience two guests comedians tre melvin and allan mcleod", "video_id": "video10800", "sen_id": 253327}, {"caption": "three men are sitting and talking on the show drama king", "video_id": "video10800", "sen_id": 253328}, {"caption": "a talk show hosts talks with his guests", "video_id": "video10800", "sen_id": 253329}, {"caption": "3 are sitting down on couches one man is the speaking while the other 2 appear to be guest on the show", "video_id": "video10800", "sen_id": 253330}, {"caption": "a man doing an interview show with two actors for a tv show", "video_id": "video10800", "sen_id": 253331}, {"caption": "tre melvin and allan mcleod being introduced on drama king", "video_id": "video10800", "sen_id": 253332}, {"caption": "it is a group of people talking on a couch", "video_id": "video10800", "sen_id": 253333}, {"caption": "the three people sit on the couch drinking martinis and talking", "video_id": "video10800", "sen_id": 253334}, {"caption": "kingsley introduces his guests tre melvin and allan mcleod on the show drama king while they sit on a brown sofa in front of a yellow table", "video_id": "video10800", "sen_id": 253335}, {"caption": "a man talking about the guests on his show", "video_id": "video10800", "sen_id": 253336}, {"caption": "a talk show discussing some pop culture events in a very joyful environment", "video_id": "video10800", "sen_id": 253337}, {"caption": "a man is interviewing two other men on a tv show", "video_id": "video10800", "sen_id": 253338}, {"caption": "some people in a room are talking", "video_id": "video10800", "sen_id": 253339}, {"caption": "on a computer screen data for a company is shown", "video_id": "video12994", "sen_id": 253340}, {"caption": "a website page with text and a cursor moving over information", "video_id": "video12994", "sen_id": 253341}, {"caption": "various screens with text are shown as a man talks and clicks on different part of the screen", "video_id": "video12994", "sen_id": 253342}, {"caption": "someone is on a webpage or program called tally", "video_id": "video12994", "sen_id": 253343}, {"caption": "a person is explaining and showing what to click on a computer program", "video_id": "video12994", "sen_id": 253344}, {"caption": "a computer screen is shown with different files", "video_id": "video12994", "sen_id": 253345}, {"caption": "a person is showing software in the computer", "video_id": "video12994", "sen_id": 253346}, {"caption": "the man typing in the computer and explain about that program", "video_id": "video12994", "sen_id": 253347}, {"caption": "a man talks while scrolling through images on a screen", "video_id": "video12994", "sen_id": 253348}, {"caption": "a man showing step by step instructions on how to get into different computer screens", "video_id": "video12994", "sen_id": 253349}, {"caption": "man is talking about a program in his computer", "video_id": "video12994", "sen_id": 253350}, {"caption": "there is someone operating a accounting software", "video_id": "video12994", "sen_id": 253351}, {"caption": "a man shows how to use and enter things in a computer program", "video_id": "video12994", "sen_id": 253352}, {"caption": "man showing and explaining how to fill in blank forms on a computer screen", "video_id": "video12994", "sen_id": 253353}, {"caption": "a software displaying on screen tally package and mouse pointing towards screen displaying on screen", "video_id": "video12994", "sen_id": 253354}, {"caption": "some words are written on a screen thing", "video_id": "video12994", "sen_id": 253355}, {"caption": "there is someone working with a accounting software", "video_id": "video12994", "sen_id": 253356}, {"caption": "more data are displayed in the computer screen", "video_id": "video12994", "sen_id": 253357}, {"caption": "someon is using a computer program while instructing us on its use", "video_id": "video12994", "sen_id": 253358}, {"caption": "a software displaying on screen and mouse pointing towards screen tally package displaying on screen", "video_id": "video12994", "sen_id": 253359}, {"caption": "a woman wearing a white shirt and singing", "video_id": "video10338", "sen_id": 253360}, {"caption": "one woman in a pink wig is rapping and another woman with red hair and white outfit is singing in the background", "video_id": "video10338", "sen_id": 253361}, {"caption": "a women with long curly hair is singing a song and dancing on it", "video_id": "video10338", "sen_id": 253362}, {"caption": "a post plane crash scene with two women singing rihanna and minaj", "video_id": "video10338", "sen_id": 253363}, {"caption": "a pair of african women sing and dance in the middle of what looks like a crashed plane", "video_id": "video10338", "sen_id": 253364}, {"caption": "nikki minaj and rihanna sing over the wreckage of an airplane", "video_id": "video10338", "sen_id": 253365}, {"caption": "a woman is singing and dancing on a video", "video_id": "video10338", "sen_id": 253366}, {"caption": "nicki minaj is rapping while rihanna sings in the wreckage of a plane", "video_id": "video10338", "sen_id": 253367}, {"caption": "a woman is singing in a disaster area", "video_id": "video10338", "sen_id": 253368}, {"caption": "a lady acts for a song in a unique place", "video_id": "video10338", "sen_id": 253369}, {"caption": "a pop singers is singing up some songs and enjoying their music in the show", "video_id": "video10338", "sen_id": 253370}, {"caption": "there is a women singing inside a garage", "video_id": "video10338", "sen_id": 253371}, {"caption": "a lady singing and dancing on herself", "video_id": "video10338", "sen_id": 253372}, {"caption": "a lady pop singer singing the song on the stage", "video_id": "video10338", "sen_id": 253373}, {"caption": "a women with long hair stands together amongst a destructive area singing", "video_id": "video10338", "sen_id": 253374}, {"caption": "sexy singer rihana singing and dancing in her music video", "video_id": "video10338", "sen_id": 253375}, {"caption": "two ladies are singing a song each other", "video_id": "video10338", "sen_id": 253376}, {"caption": "a girl is singing a song for an album", "video_id": "video10338", "sen_id": 253377}, {"caption": "nicki minaj is a music artist singing music video", "video_id": "video10338", "sen_id": 253378}, {"caption": "a scene on a space ship is being shown", "video_id": "video10338", "sen_id": 253379}, {"caption": "a woman in a red shirt stands in a kitchen and talks about beef wellington", "video_id": "video12452", "sen_id": 253380}, {"caption": "an old woman in a long sleeve red shirt gets ready to make beef wellington", "video_id": "video12452", "sen_id": 253381}, {"caption": "woman holds up a pair of boots and explains that while cooking they are not necessary", "video_id": "video12452", "sen_id": 253382}, {"caption": "a woman in red is speaking in a kitchen and then holds up wellie boots", "video_id": "video12452", "sen_id": 253383}, {"caption": "a lady holding up some worn out boots", "video_id": "video12452", "sen_id": 253384}, {"caption": "in a kitchen a lady in a red shirt is talking about beef wellington while holding rain boots", "video_id": "video12452", "sen_id": 253385}, {"caption": "a woman standing by the cabinet holding a pair of boots", "video_id": "video12452", "sen_id": 253386}, {"caption": "the old lady speak well she is a muslim or not", "video_id": "video12452", "sen_id": 253387}, {"caption": "a woman in a burgundy shirt talks about beef wellington and holds up rain boots she advises that lack of need for the boots to make beef wellington", "video_id": "video12452", "sen_id": 253388}, {"caption": "woman in red dress is talking about the meal in the kitchen", "video_id": "video12452", "sen_id": 253389}, {"caption": "a women in red dress explaining some topic in front of the camera", "video_id": "video12452", "sen_id": 253390}, {"caption": "an old woman is talking about beef wellington in her kitchen", "video_id": "video12452", "sen_id": 253391}, {"caption": "an old is speaking and having a long shoe in her hand", "video_id": "video12452", "sen_id": 253392}, {"caption": "a woman in a red sirt with a piar of rian boots", "video_id": "video12452", "sen_id": 253393}, {"caption": "woman wearing a red shirt starts talking about beef wellington and holds up a pair of boots for some reason", "video_id": "video12452", "sen_id": 253394}, {"caption": "there is an old lady talking and showing a long shoes", "video_id": "video12452", "sen_id": 253395}, {"caption": "a woman in red is speaking about beef wellington while showing rubber boots saying you will not need those", "video_id": "video12452", "sen_id": 253396}, {"caption": "a woman in a red shirt introduces a tutorial for cooking beef wellington", "video_id": "video12452", "sen_id": 253397}, {"caption": "a woman is in the kitchen and talking about beef dinner", "video_id": "video12452", "sen_id": 253398}, {"caption": "a woman with red shirt is holding some boots", "video_id": "video12452", "sen_id": 253399}, {"caption": "a video game character shoots and jumps and sets off explosions", "video_id": "video10052", "sen_id": 253400}, {"caption": "hero is shooting the enemies using grenade launcher and shotguns in the role playing game", "video_id": "video10052", "sen_id": 253401}, {"caption": "goblins blowing up each other with weapons and turning into weapons", "video_id": "video10052", "sen_id": 253402}, {"caption": "a shooting games is going on where the gun goes around to shoot the enemy", "video_id": "video10052", "sen_id": 253403}, {"caption": "a man holding the gun and hits the enemey", "video_id": "video10052", "sen_id": 253404}, {"caption": "gameplay footage of a first person shooter is shown on screen", "video_id": "video10052", "sen_id": 253405}, {"caption": "animated video game characters run and shoot other video game characters", "video_id": "video10052", "sen_id": 253406}, {"caption": "yellow weapons with black attachments are aimed at targets in open building passageways when a swirling black weapon strikes figures and explodes", "video_id": "video10052", "sen_id": 253407}, {"caption": "a cartoonish character in a game is shooting various enemies", "video_id": "video10052", "sen_id": 253408}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video10052", "sen_id": 253409}, {"caption": "two people run off from a place and others chase them and start firing at them", "video_id": "video10052", "sen_id": 253410}, {"caption": "a person is playing a video game and having fun", "video_id": "video10052", "sen_id": 253411}, {"caption": "game play from a children s fps is shown while music plays", "video_id": "video10052", "sen_id": 253412}, {"caption": "a video game of shotting different things and destroying things", "video_id": "video10052", "sen_id": 253413}, {"caption": "a person is playing some kind of video game", "video_id": "video10052", "sen_id": 253414}, {"caption": "there is a animal running away from gun", "video_id": "video10052", "sen_id": 253415}, {"caption": "the video game portrayed appears to be very fast paced with many different firepower options", "video_id": "video10052", "sen_id": 253416}, {"caption": "a operon demonstrates a multi player video game that they are playing", "video_id": "video10052", "sen_id": 253417}, {"caption": "a video game character uses a cartoonish gun to shoot other video game characters", "video_id": "video10052", "sen_id": 253418}, {"caption": "a person is playing some new video game", "video_id": "video10052", "sen_id": 253419}, {"caption": "gordon ramsay talking about cooking pasta while showing how to cook", "video_id": "video11803", "sen_id": 253420}, {"caption": "chef gordon ramsay showing how to cook a recipie on tv", "video_id": "video11803", "sen_id": 253421}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11803", "sen_id": 253422}, {"caption": "side by side screens show vegetables being chopped cheese scattered as a topping pasta swirling nuts roasting and a simmering meal in a pot", "video_id": "video11803", "sen_id": 253423}, {"caption": "a person is explaining about different dishes for subscription", "video_id": "video11803", "sen_id": 253424}, {"caption": "cooking tips are being shown here in this video", "video_id": "video11803", "sen_id": 253425}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video11803", "sen_id": 253426}, {"caption": "making of recipe cuts some vegetable add some pastas", "video_id": "video11803", "sen_id": 253427}, {"caption": "a cooking clip by gordon ramsay showing and explaining how to prepare a meal using pasta fennel seeds and other ingredients", "video_id": "video11803", "sen_id": 253428}, {"caption": "chef gordon ramsay is giving directions to make a pasta dish", "video_id": "video11803", "sen_id": 253429}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video11803", "sen_id": 253430}, {"caption": "chef gordon ramsay narrates a recipe while showing it being prepared", "video_id": "video11803", "sen_id": 253431}, {"caption": "a chef explains the procedure to cook with a pan and cumin seeds and ginger paste", "video_id": "video11803", "sen_id": 253432}, {"caption": "a man is cooking a flatbread and pasta recipe", "video_id": "video11803", "sen_id": 253433}, {"caption": "a man in a black shirt is making some food", "video_id": "video11803", "sen_id": 253434}, {"caption": "a cheif is telling and showing how to cook food", "video_id": "video11803", "sen_id": 253435}, {"caption": "a man is describing how to complete a recipe", "video_id": "video11803", "sen_id": 253436}, {"caption": "a chef gives a step by step resopy for a dish", "video_id": "video11803", "sen_id": 253437}, {"caption": "someone is cutting vegetablesboiling noodles and in the end prepares an excellent dish", "video_id": "video11803", "sen_id": 253438}, {"caption": "someone is making food while being filmed on tv", "video_id": "video11803", "sen_id": 253439}, {"caption": "a bowl of noodles a bowl of sushi and several seasonings in little glass bowls are on a counter", "video_id": "video12806", "sen_id": 253440}, {"caption": "a woman demonstrates a recipe tutorial in a slavic language", "video_id": "video12806", "sen_id": 253441}, {"caption": "a woman is preparing a meal with multiple ingredients", "video_id": "video12806", "sen_id": 253442}, {"caption": "a chef prepares to make a dish by gathering several bowl of ingredients", "video_id": "video12806", "sen_id": 253443}, {"caption": "someone displaying different food items and ingredients for a meal", "video_id": "video12806", "sen_id": 253444}, {"caption": "a woman describes in a foreign language the cooking recipe of a certain dish", "video_id": "video12806", "sen_id": 253445}, {"caption": "in the kitchen someone making a dish with carrot", "video_id": "video12806", "sen_id": 253446}, {"caption": "a woman massages cabbage with her bare hands on a counter top with several other bowls of toppings", "video_id": "video12806", "sen_id": 253447}, {"caption": "a woman showing prepared ingredients for a dish", "video_id": "video12806", "sen_id": 253448}, {"caption": "a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12806", "sen_id": 253449}, {"caption": "a person has lined up their ingredients to cook a meal in their kitchen", "video_id": "video12806", "sen_id": 253450}, {"caption": "a woman has six small bowls and two large bowls of ingredients", "video_id": "video12806", "sen_id": 253451}, {"caption": "ingredients for a vegetable recipe are arranged in separate bowls according to its quantity", "video_id": "video12806", "sen_id": 253452}, {"caption": "a woman is explaining about the cooking of the food item", "video_id": "video12806", "sen_id": 253453}, {"caption": "a girl and bowl mixing dish inside kitchen to prepared to serve to eat displaying on screen", "video_id": "video12806", "sen_id": 253454}, {"caption": "a girl have kept more ingredients on the kitchen slab", "video_id": "video12806", "sen_id": 253455}, {"caption": "a woman garnishes bowls of vegetables with white items", "video_id": "video12806", "sen_id": 253456}, {"caption": "there are various ingredients on a table and a woman is describing them in a foreign language", "video_id": "video12806", "sen_id": 253457}, {"caption": "a woman describes the dish she has prepared", "video_id": "video12806", "sen_id": 253458}, {"caption": "in a kitchen a person explains the cook items to be cooked", "video_id": "video12806", "sen_id": 253459}, {"caption": "the person discusses the movements of tarzann in his movies", "video_id": "video11399", "sen_id": 253460}, {"caption": "a cartoon of tarzan showing moves like skater tony hawk", "video_id": "video11399", "sen_id": 253461}, {"caption": "a man ridding a skateboard and ramping up in the air", "video_id": "video11399", "sen_id": 253462}, {"caption": "a man is talking about the animated movie tarzan and how the animation works", "video_id": "video11399", "sen_id": 253463}, {"caption": "a graphic showing a male cartoon character flying and jumping through trees and a voiceover compares him to a famous skateboarder", "video_id": "video11399", "sen_id": 253464}, {"caption": "there is a man flying through the trees", "video_id": "video11399", "sen_id": 253465}, {"caption": "a voice over talks about how the animators of the disney movie tarzan were influenced by tony hawk", "video_id": "video11399", "sen_id": 253466}, {"caption": "animators styled tarzan sliding on the trees after tony hawk on his skateboard", "video_id": "video11399", "sen_id": 253467}, {"caption": "a person is explaining the animation process as a cartoon tarzan slides and climbs through trees the same way a professional skateboarder skims curved surfaces", "video_id": "video11399", "sen_id": 253468}, {"caption": "a woman describes how tarzan is animated based on skateboarder tony hawk", "video_id": "video11399", "sen_id": 253469}, {"caption": "a narration on the similarity movements between tarzan and a skateboarder", "video_id": "video11399", "sen_id": 253470}, {"caption": "the tarzan character slides down tree branches in a jungle", "video_id": "video11399", "sen_id": 253471}, {"caption": "a man is talking about the movie tarzan", "video_id": "video11399", "sen_id": 253472}, {"caption": "describes ancient history of skate board from link with tarzan and jungle book", "video_id": "video11399", "sen_id": 253473}, {"caption": "a scene in the disney animated movie tarzan is followed by a picture of a skateboarder", "video_id": "video11399", "sen_id": 253474}, {"caption": "explanation of how animators use a skateboarders moves to implement in a tarzan animated movie", "video_id": "video11399", "sen_id": 253475}, {"caption": "a woman is talking about a skate boart", "video_id": "video11399", "sen_id": 253476}, {"caption": "man is running so fast and showing amazing tricks", "video_id": "video11399", "sen_id": 253477}, {"caption": "a woman talks about how the movie tarzan was animated", "video_id": "video11399", "sen_id": 253478}, {"caption": "a man in a helmet is skate boarding", "video_id": "video11399", "sen_id": 253479}, {"caption": "the music plays as the person puts salt onto the meat", "video_id": "video10523", "sen_id": 253480}, {"caption": "a chef is cooking in a frying pan adding various ingredients", "video_id": "video10523", "sen_id": 253481}, {"caption": "a person is preparing a food item with red colour", "video_id": "video10523", "sen_id": 253482}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10523", "sen_id": 253483}, {"caption": "salt is added to the hot pan contains the onion and tomato gravy and strirring it", "video_id": "video10523", "sen_id": 253484}, {"caption": "a person cook in kitchen using tomato ketchup", "video_id": "video10523", "sen_id": 253485}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10523", "sen_id": 253486}, {"caption": "a chef add a table spoon of tomato paste and two spoon of salt for taste in the mince meat", "video_id": "video10523", "sen_id": 253487}, {"caption": "music is playing while a meal is being cooked in a frying pan with ingredients being listed", "video_id": "video10523", "sen_id": 253488}, {"caption": "a pan inside kitchen mixing masala string with spoon ready to prepare to serve to eat", "video_id": "video10523", "sen_id": 253489}, {"caption": "some food is being cooked up in a pot", "video_id": "video10523", "sen_id": 253490}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10523", "sen_id": 253491}, {"caption": "someone is frying tomoto ketchup tastely", "video_id": "video10523", "sen_id": 253492}, {"caption": "a person adds various ingredients to a pan and stirs it while cooking", "video_id": "video10523", "sen_id": 253493}, {"caption": "from kitchen some body preparing a paste on fry pan for cooking with adding ingredients to it", "video_id": "video10523", "sen_id": 253494}, {"caption": "someone is stirring up food in a pan", "video_id": "video10523", "sen_id": 253495}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video10523", "sen_id": 253496}, {"caption": "making a recipe now add 1 tsp taucheo 3 tbsp sugar", "video_id": "video10523", "sen_id": 253497}, {"caption": "a person is putting salt and other food in a pan", "video_id": "video10523", "sen_id": 253498}, {"caption": "a person adds several ingredients to a hot skillet", "video_id": "video10523", "sen_id": 253499}, {"caption": "rollie eggmaster commercial that cooks eggs like a pan", "video_id": "video12162", "sen_id": 253500}, {"caption": "this video is an add for the rollie eggmaster this product seems to take eggs and cook them toaster style", "video_id": "video12162", "sen_id": 253501}, {"caption": "a person putting eggs in a glass and food on a plate", "video_id": "video12162", "sen_id": 253502}, {"caption": "a person cracks an egg into a black-and-white canister placed on a white kitchen counter and pulls out a tubular cooked egg on a stick", "video_id": "video12162", "sen_id": 253503}, {"caption": "there is an ad for making rollie eggs and how convenient it is", "video_id": "video12162", "sen_id": 253504}, {"caption": "a women in her kitchen preparing some item from eggs", "video_id": "video12162", "sen_id": 253505}, {"caption": "a mobile is displayed with various features", "video_id": "video12162", "sen_id": 253506}, {"caption": "a person is explaining about preparation of some food process", "video_id": "video12162", "sen_id": 253507}, {"caption": "a machine that cooks eggs quickly and easily is demonstrated by people in their homes", "video_id": "video12162", "sen_id": 253508}, {"caption": "someone explains how to prepare the egg rollie using the rollie egg master in minutes", "video_id": "video12162", "sen_id": 253509}, {"caption": "a women in blue dressing serving the food for her children", "video_id": "video12162", "sen_id": 253510}, {"caption": "a girl blue colored dress putting vegetables on a plate", "video_id": "video12162", "sen_id": 253511}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video12162", "sen_id": 253512}, {"caption": "a presentation of a rollie eggmaster a device that cooks eggs instantly and easily", "video_id": "video12162", "sen_id": 253513}, {"caption": "a blue color dress wearing beside two kids delecious meals eating fruits displaying on screen", "video_id": "video12162", "sen_id": 253514}, {"caption": "in the kitchen a woman making a egg dish", "video_id": "video12162", "sen_id": 253515}, {"caption": "the person prepares fruit for the girl to eat", "video_id": "video12162", "sen_id": 253516}, {"caption": "a person in grey cracks an egg into a machine", "video_id": "video12162", "sen_id": 253517}, {"caption": "a lady puts fresh fruit on a white plate", "video_id": "video12162", "sen_id": 253518}, {"caption": "an teleshopping advertisement is being going on about pop up rollie egg masssster", "video_id": "video12162", "sen_id": 253519}, {"caption": "men are speaking and speaking in indian one man is very nervous", "video_id": "video11469", "sen_id": 253520}, {"caption": "a couple of older indian men with mustaches walk outside a village", "video_id": "video11469", "sen_id": 253521}, {"caption": "two men walk slowly down a street carrying a black toupee", "video_id": "video11469", "sen_id": 253522}, {"caption": "a man in a collared blue shirt is talking to people", "video_id": "video11469", "sen_id": 253523}, {"caption": "two older asian men are walking and talking together", "video_id": "video11469", "sen_id": 253524}, {"caption": "two indian men are walking down the street having a conversation with one man very carefully holding a large hair band", "video_id": "video11469", "sen_id": 253525}, {"caption": "a person keeps a thing in his hand and going away with this in a tamil movie", "video_id": "video11469", "sen_id": 253526}, {"caption": "one man carrying hair to an auction and another man scolds him for leaving", "video_id": "video11469", "sen_id": 253527}, {"caption": "a man berates another as they walk by a third man waving his arm for attention", "video_id": "video11469", "sen_id": 253528}, {"caption": "tow indian men have an animated conversation while they walk through an open market area", "video_id": "video11469", "sen_id": 253529}, {"caption": "a man is making fun of his friend and they are walking inside a carnival", "video_id": "video11469", "sen_id": 253530}, {"caption": "two men are walking through the streets of india one carrying hair bands when they encounter a man selling goods outside a shop", "video_id": "video11469", "sen_id": 253531}, {"caption": "two men are very upset at each other they are angrily hitting one another", "video_id": "video11469", "sen_id": 253532}, {"caption": "a group of people having a conversation in malyalam indian language", "video_id": "video11469", "sen_id": 253533}, {"caption": "two people are having conversation about something", "video_id": "video11469", "sen_id": 253534}, {"caption": "some people in india are sitting in a room", "video_id": "video11469", "sen_id": 253535}, {"caption": "a man coming with a bunch of hair and flower of jasmine", "video_id": "video11469", "sen_id": 253536}, {"caption": "this is a comedy scene from a tamil film the comedian walking along the street is given a ladies duplicate hair by cheating", "video_id": "video11469", "sen_id": 253537}, {"caption": "two men in light colored casual clothing walk down a busy street in marketplace when advertiser is startled", "video_id": "video11469", "sen_id": 253538}, {"caption": "extract a bollywood movie where two men are walking in a bazaar", "video_id": "video11469", "sen_id": 253539}, {"caption": "a man discussing a movie a boy with ice on his face is on the screen", "video_id": "video11650", "sen_id": 253540}, {"caption": "director steven spielberg narrates a scene from the movie artificial intelligence the spot shows an advanced robot waking up an older robot while spielberg declares that contrary to popular belief he did not wreck stanley kubrick's movie because the disliked scene was already in the treatment", "video_id": "video11650", "sen_id": 253541}, {"caption": "a young man in a room face to face with an alien", "video_id": "video11650", "sen_id": 253542}, {"caption": "a small boy with frost on his face stands in front of an alien", "video_id": "video11650", "sen_id": 253543}, {"caption": "vidoo showing a clip of a movie showing aliens", "video_id": "video11650", "sen_id": 253544}, {"caption": "the boy is standing with his eyes closed", "video_id": "video11650", "sen_id": 253545}, {"caption": "a movie scene is going on and a ma explain about movie", "video_id": "video11650", "sen_id": 253546}, {"caption": "its a kid with a colour on his face", "video_id": "video11650", "sen_id": 253547}, {"caption": "a man speaks over a clip from ai: artificial intelligence about the making of the movie", "video_id": "video11650", "sen_id": 253548}, {"caption": "a scene from a movie show aliens reading a young boy s thought and memories", "video_id": "video11650", "sen_id": 253549}, {"caption": "a blonde kid stands with his eyes closed scared of a monster", "video_id": "video11650", "sen_id": 253550}, {"caption": "a boy is being surrounded by some tall aliens", "video_id": "video11650", "sen_id": 253551}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video11650", "sen_id": 253552}, {"caption": "a man discussing various directors treatment s on a film", "video_id": "video11650", "sen_id": 253553}, {"caption": "a boy with his eyes closed being touched in the forehead by an alien", "video_id": "video11650", "sen_id": 253554}, {"caption": "one maniquene maker is explaning the making of the maniquene", "video_id": "video11650", "sen_id": 253555}, {"caption": "one boys close up to face other man in opposite side on mirror", "video_id": "video11650", "sen_id": 253556}, {"caption": "clips of the movie ai are discussed as an aliens arrive to see the boy frozen", "video_id": "video11650", "sen_id": 253557}, {"caption": "a boy was standing in a snow place with closed eyes", "video_id": "video11650", "sen_id": 253558}, {"caption": "a kid is standing around surrounded by aliens", "video_id": "video11650", "sen_id": 253559}, {"caption": "women walking across the screen and a woman sitting in a chair", "video_id": "video12622", "sen_id": 253560}, {"caption": "a young indian woman talks about planning a surprise party", "video_id": "video12622", "sen_id": 253561}, {"caption": "large indian women wearing casual clothing and demonstrating their makeup", "video_id": "video12622", "sen_id": 253562}, {"caption": "an indian woman is describing a suprise party on a show called gorgeous you while she sits on a purple chair", "video_id": "video12622", "sen_id": 253563}, {"caption": "the intro to a talk show with a female host is shown", "video_id": "video12622", "sen_id": 253564}, {"caption": "a women in pink t-shirt greets another women in dotted t-shirt", "video_id": "video12622", "sen_id": 253565}, {"caption": "anchors divya and sneha talks on a gorgeous you program in care world channel", "video_id": "video12622", "sen_id": 253566}, {"caption": "pop music plays in the background as a black and pink foreground is froliced upon by two ostensibly indian women with a sultry voice declaring the title of the show to be gorgeous you and one of the hosts talking about the content of the upcoming show", "video_id": "video12622", "sen_id": 253567}, {"caption": "an intro to a show called gorgeous you plays and then a woman tell the topics for the episode", "video_id": "video12622", "sen_id": 253568}, {"caption": "a woman in makeup and jewelry is introducing a beauty show for women", "video_id": "video12622", "sen_id": 253569}, {"caption": "bunch of photographs of sexy brunette being shown on the screen", "video_id": "video12622", "sen_id": 253570}, {"caption": "a lady is sitting and talking", "video_id": "video12622", "sen_id": 253571}, {"caption": "middle eastern women model for an ad for gorgeous you", "video_id": "video12622", "sen_id": 253572}, {"caption": "a woman smiles and hands flowers to acquaintance", "video_id": "video12622", "sen_id": 253573}, {"caption": "girl in flowery dress talking in a foreign language at beginning of episode", "video_id": "video12622", "sen_id": 253574}, {"caption": "a woman wears red jewels down the center of her turned head as she smiles with red lips and makeup-defined eyes", "video_id": "video12622", "sen_id": 253575}, {"caption": "the opening credits for a tv show feature two women offering lifestyle advice", "video_id": "video12622", "sen_id": 253576}, {"caption": "indian women are advertising how to be gorgeous and accept you for you", "video_id": "video12622", "sen_id": 253577}, {"caption": "a video of beautiful women advertising an product on tv", "video_id": "video12622", "sen_id": 253578}, {"caption": "some pink text is on a purple background", "video_id": "video12622", "sen_id": 253579}, {"caption": "a man in black is giving a presentation for people on math", "video_id": "video11552", "sen_id": 253580}, {"caption": "a man wearing a black t-shirt and glasses is talking about integers", "video_id": "video11552", "sen_id": 253581}, {"caption": "a person is teaching about some product composition on whiteboard", "video_id": "video11552", "sen_id": 253582}, {"caption": "one lecturer talks about number of part in computer", "video_id": "video11552", "sen_id": 253583}, {"caption": "an old man is taking class about something", "video_id": "video11552", "sen_id": 253584}, {"caption": "old guy in glasses giving presentation on big screen tv", "video_id": "video11552", "sen_id": 253585}, {"caption": "the professor used an electronic white board to display some problems for the class", "video_id": "video11552", "sen_id": 253586}, {"caption": "the professor talks about application with technique to solve some problems thru multimedia programme", "video_id": "video11552", "sen_id": 253587}, {"caption": "a grey haired man dressed in black is teaching with a board at his side", "video_id": "video11552", "sen_id": 253588}, {"caption": "a gray haired man is talking about something on a screen", "video_id": "video11552", "sen_id": 253589}, {"caption": "a teacher explains of maths with using smartclass", "video_id": "video11552", "sen_id": 253590}, {"caption": "a man gives a demonstration on stage in front of an audience", "video_id": "video11552", "sen_id": 253591}, {"caption": "a man in brown with white hair uses a whiteboard to explain his teaching", "video_id": "video11552", "sen_id": 253592}, {"caption": "a man with black shirt and white hair is teaching about some techniques", "video_id": "video11552", "sen_id": 253593}, {"caption": "a man is talking near in the board", "video_id": "video11552", "sen_id": 253594}, {"caption": "analytic combinatorics combinatorial parameters and mgfs", "video_id": "video11552", "sen_id": 253595}, {"caption": "a man in a green shirt explains a process on a white board", "video_id": "video11552", "sen_id": 253596}, {"caption": "professor is explaining about a problem in a maths lab", "video_id": "video11552", "sen_id": 253597}, {"caption": "a man in a black shirt is standing in front of a smart board explaining a mathematical solution", "video_id": "video11552", "sen_id": 253598}, {"caption": "a man teaching about something which displays on the television", "video_id": "video11552", "sen_id": 253599}, {"caption": "a man in a blue outift does some stretching before exercising", "video_id": "video11434", "sen_id": 253600}, {"caption": "an athlete stretching and getting ready for a workout", "video_id": "video11434", "sen_id": 253601}, {"caption": "a man wearing a blue shirt and doing pushups", "video_id": "video11434", "sen_id": 253602}, {"caption": "a male college student wearing a blue shirt and dark pants warms up by stretching and doing push-ups", "video_id": "video11434", "sen_id": 253603}, {"caption": "a man works out on a dirt path on a sunny day", "video_id": "video11434", "sen_id": 253604}, {"caption": "a man in blue does warm up exercise as a narrator tells us about him", "video_id": "video11434", "sen_id": 253605}, {"caption": "a man in a blue shirt and ear buds is doing pushups on the ground", "video_id": "video11434", "sen_id": 253606}, {"caption": "a guy in blue t-shirt is stretching and doing exercise outdoors", "video_id": "video11434", "sen_id": 253607}, {"caption": "a man stretches as a voice describes the man s life", "video_id": "video11434", "sen_id": 253608}, {"caption": "an promo of an athilet giving his warm up with his music player", "video_id": "video11434", "sen_id": 253609}, {"caption": "guy in blue tshirt stretching his legs at the park", "video_id": "video11434", "sen_id": 253610}, {"caption": "a man with earphones in is stretching and exercising", "video_id": "video11434", "sen_id": 253611}, {"caption": "ie islamic event man stretching exercise and listening music", "video_id": "video11434", "sen_id": 253612}, {"caption": "a man wearing blue sports adidas t-shirt can be seen warming up and stretching", "video_id": "video11434", "sen_id": 253613}, {"caption": "the young man in the blue tracksuit illustrates exercises methodically", "video_id": "video11434", "sen_id": 253614}, {"caption": "a guy in a blue shirt is doing push ups on the ground", "video_id": "video11434", "sen_id": 253615}, {"caption": "the clip shows an advertisement for islamic event before showing a university student working out", "video_id": "video11434", "sen_id": 253616}, {"caption": "ie islamicevent man stretching exercise with headset in ear", "video_id": "video11434", "sen_id": 253617}, {"caption": "a cgi video shows different particles fusing into a logo the video then cuts to a runner preparing to run", "video_id": "video11434", "sen_id": 253618}, {"caption": "the opening of islamic event featuring robbie a twenty-four year old university student and aspiring athlete", "video_id": "video11434", "sen_id": 253619}, {"caption": "recipe of a liquid food", "video_id": "video12731", "sen_id": 253620}, {"caption": "a woman is making broth from vegetables", "video_id": "video12731", "sen_id": 253621}, {"caption": "a woman cooking vegetables and explaining how to do it", "video_id": "video12731", "sen_id": 253622}, {"caption": "there is vegetable soup in pot on a cutting board and someone is separating the vegetables from the broth the person puts the vegetables in a bowl and the broth in a measuring cup", "video_id": "video12731", "sen_id": 253623}, {"caption": "an american lady cook describes how to move vegetables from a large stock pot and strain the stock of fine particulate", "video_id": "video12731", "sen_id": 253624}, {"caption": "some vegetables being ladled out of a pot of stock stock being poured in a measuring glass", "video_id": "video12731", "sen_id": 253625}, {"caption": "there is a woman making a vegetable dish", "video_id": "video12731", "sen_id": 253626}, {"caption": "a woman removing larger chunks from a soup into a clear bowl and then straining the stock", "video_id": "video12731", "sen_id": 253627}, {"caption": "a lady taking some boiled vegetables from the pan", "video_id": "video12731", "sen_id": 253628}, {"caption": "a woman uses a metal sieve to lift the larger vegetables from her pot", "video_id": "video12731", "sen_id": 253629}, {"caption": "woman putting soup into a bowl straight from the pot", "video_id": "video12731", "sen_id": 253630}, {"caption": "cook demonstrating how to make vegetable stock", "video_id": "video12731", "sen_id": 253631}, {"caption": "a chef works on a vegetable broth by removing the large chunks of vegetable", "video_id": "video12731", "sen_id": 253632}, {"caption": "a woman wearing a green shirt lifts cooked vegetables out of a large stock pot and pours the stock into a measuring cup", "video_id": "video12731", "sen_id": 253633}, {"caption": "a woman makes delicious and nutritious homemade stock", "video_id": "video12731", "sen_id": 253634}, {"caption": "vegetables are strained and removed from a pot of stock", "video_id": "video12731", "sen_id": 253635}, {"caption": "a lady is removing food ingredients from a pot and pouring the broth in another bowl", "video_id": "video12731", "sen_id": 253636}, {"caption": "a chef pours soup into a big glass bowl", "video_id": "video12731", "sen_id": 253637}, {"caption": "a girl in green dress inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video12731", "sen_id": 253638}, {"caption": "a woman pulls out chunks of food out of broth", "video_id": "video12731", "sen_id": 253639}, {"caption": "a group of people in a meeting room sit around a long table and talk", "video_id": "video12411", "sen_id": 253640}, {"caption": "a group of people talk about storyboard ideas for their show", "video_id": "video12411", "sen_id": 253641}, {"caption": "men are discussing the production of a show and who will play in the show", "video_id": "video12411", "sen_id": 253642}, {"caption": "a group of business people talking to each other at a big table", "video_id": "video12411", "sen_id": 253643}, {"caption": "a group of people making decisions about talent", "video_id": "video12411", "sen_id": 253644}, {"caption": "all persons are talking each other on a conference hall", "video_id": "video12411", "sen_id": 253645}, {"caption": "a group of people discuss rhianna role in an upcoming show", "video_id": "video12411", "sen_id": 253646}, {"caption": "the men are on a meeting debating on some sort of thing", "video_id": "video12411", "sen_id": 253647}, {"caption": "group of people discussing about something in a board meeting", "video_id": "video12411", "sen_id": 253648}, {"caption": "producers and writers sit at a conference discussing status updates and brainstorming ideas for the new season", "video_id": "video12411", "sen_id": 253649}, {"caption": "there are some people attending a meeting", "video_id": "video12411", "sen_id": 253650}, {"caption": "many people are sitting and talking with each others in a conference hall", "video_id": "video12411", "sen_id": 253651}, {"caption": "a group of people sitting at a table giving ideas towards a show", "video_id": "video12411", "sen_id": 253652}, {"caption": "a group around a desk discuss methods of developing their tv show", "video_id": "video12411", "sen_id": 253653}, {"caption": "a group of people are working on putting a show together", "video_id": "video12411", "sen_id": 253654}, {"caption": "there is a black t-shirt man with co-workers", "video_id": "video12411", "sen_id": 253655}, {"caption": "a group of people discussing on when should they have the show", "video_id": "video12411", "sen_id": 253656}, {"caption": "there are a few people speaking at meeting around a large conference table", "video_id": "video12411", "sen_id": 253657}, {"caption": "many peoples sitting on table discusing and writing in paper displaying on screen", "video_id": "video12411", "sen_id": 253658}, {"caption": "some people in a conference room are talking", "video_id": "video12411", "sen_id": 253659}, {"caption": "a large crowd of people are on a beach in a tropical location as music plays", "video_id": "video11947", "sen_id": 253660}, {"caption": "people are enjoying their day on a crowded beach", "video_id": "video11947", "sen_id": 253661}, {"caption": "a blue beach populated by crowds of people", "video_id": "video11947", "sen_id": 253662}, {"caption": "a large crowd gathered near a sea shore", "video_id": "video11947", "sen_id": 253663}, {"caption": "people gathered on the beach while music plays", "video_id": "video11947", "sen_id": 253664}, {"caption": "a lot of people are swimming while others are walking and sitting on the beach", "video_id": "video11947", "sen_id": 253665}, {"caption": "photographs of people enjoying the day on the beach", "video_id": "video11947", "sen_id": 253666}, {"caption": "many people on the beach are dressed in swimming attire", "video_id": "video11947", "sen_id": 253667}, {"caption": "its sea shore where many people enjoying by playing in water", "video_id": "video11947", "sen_id": 253668}, {"caption": "bunch of people in beach having fun", "video_id": "video11947", "sen_id": 253669}, {"caption": "there are some people walking in to the beach", "video_id": "video11947", "sen_id": 253670}, {"caption": "more peoples are taking bath in the beech", "video_id": "video11947", "sen_id": 253671}, {"caption": "people gathered on the beach and enjoying on the sea shore", "video_id": "video11947", "sen_id": 253672}, {"caption": "at the so many people are enjoying by seeing the water in the ocean", "video_id": "video11947", "sen_id": 253673}, {"caption": "hundreds of people visiting the beach", "video_id": "video11947", "sen_id": 253674}, {"caption": "there are some people walking in to the shore", "video_id": "video11947", "sen_id": 253675}, {"caption": "a crowd of people mill about on a very busy beach", "video_id": "video11947", "sen_id": 253676}, {"caption": "there is a pier followed by numerous people standing on the beach and in surf near a building development", "video_id": "video11947", "sen_id": 253677}, {"caption": "a crowded beach is shown with music being played", "video_id": "video11947", "sen_id": 253678}, {"caption": "many people on a beach with different tubes for the water and people swimming in the photo", "video_id": "video11947", "sen_id": 253679}, {"caption": "using a food processor to make a powder", "video_id": "video11641", "sen_id": 253680}, {"caption": "a woman microwaves and crushes small petals into a fine powder", "video_id": "video11641", "sen_id": 253681}, {"caption": "a woman explaining how the food must rest for 10-15 minutes then making a powder", "video_id": "video11641", "sen_id": 253682}, {"caption": "a woman instructs while she makes a powder with a food processor", "video_id": "video11641", "sen_id": 253683}, {"caption": "a person is preparing some red colour dish in a bowl", "video_id": "video11641", "sen_id": 253684}, {"caption": "the ingredients are taken in a mixture and mixed by someone and takes the powder in a bowl", "video_id": "video11641", "sen_id": 253685}, {"caption": "a woman explaining how to use a microwave and food processor to make a certain food into a powder", "video_id": "video11641", "sen_id": 253686}, {"caption": "a woman takes brown stuff to cook it in the microwave then she puts it in the food processor to make the particles finer", "video_id": "video11641", "sen_id": 253687}, {"caption": "a woman is cooking something that is crispy which is puts into a food processor to make it more powdery", "video_id": "video11641", "sen_id": 253688}, {"caption": "a blender is showing some stuff in a thing", "video_id": "video11641", "sen_id": 253689}, {"caption": "piece of vegetables are mixed by a lady", "video_id": "video11641", "sen_id": 253690}, {"caption": "a woman is playing in meat product and using a food processor while explaining her actions", "video_id": "video11641", "sen_id": 253691}, {"caption": "a women shows how to prepare a red pruduct using a food processor", "video_id": "video11641", "sen_id": 253692}, {"caption": "a chef in a kitchen with a blender teaching a recipe for dried fruit", "video_id": "video11641", "sen_id": 253693}, {"caption": "a person is mixing up red food in a bowl", "video_id": "video11641", "sen_id": 253694}, {"caption": "sliced vegetables taken by someone and mixing", "video_id": "video11641", "sen_id": 253695}, {"caption": "this person is showing how to crush something into a fine powder through the use of multiple processes", "video_id": "video11641", "sen_id": 253696}, {"caption": "some lady is telling how to grind and mixing of a spice", "video_id": "video11641", "sen_id": 253697}, {"caption": "there is a woman blending some food in a blender and mixing it with a spoon in a small white bowl", "video_id": "video11641", "sen_id": 253698}, {"caption": "a person is using a blender on a stove", "video_id": "video11641", "sen_id": 253699}, {"caption": "rhianna in a green dress singing at night", "video_id": "video12998", "sen_id": 253700}, {"caption": "a woman in a green dress dances to music", "video_id": "video12998", "sen_id": 253701}, {"caption": "the modern girl make the dance for the music", "video_id": "video12998", "sen_id": 253702}, {"caption": "rhianna is wearing a very skimpy green outfit and singing and dancing to one of her songs", "video_id": "video12998", "sen_id": 253703}, {"caption": "the artist is singing in her green dress", "video_id": "video12998", "sen_id": 253704}, {"caption": "ciera dancing in a green dress in her music video sos", "video_id": "video12998", "sen_id": 253705}, {"caption": "a woman in a green dress sings and dances in a provocative manner", "video_id": "video12998", "sen_id": 253706}, {"caption": "an african brown haired woman wearing a green dress is showing lots of skin that looks like it was waxed and her hair was well ironed", "video_id": "video12998", "sen_id": 253707}, {"caption": "a celebrity dances casually in a green dress at night in from of some palms", "video_id": "video12998", "sen_id": 253708}, {"caption": "a women in green color glamour dress dancing for the pop song", "video_id": "video12998", "sen_id": 253709}, {"caption": "there is a hot modal in green dressing dancing at night", "video_id": "video12998", "sen_id": 253710}, {"caption": "a celebrity singer and dancer is performing for the camera", "video_id": "video12998", "sen_id": 253711}, {"caption": "rhianna is dressed in a green outfit and dances", "video_id": "video12998", "sen_id": 253712}, {"caption": "a video of rihanna in the clip she is dressed in a green parted dress and singing into the camera", "video_id": "video12998", "sen_id": 253713}, {"caption": "this is rihanna dancing and singing in a music video", "video_id": "video12998", "sen_id": 253714}, {"caption": "there is a woman with hot eyes dancing on the floor", "video_id": "video12998", "sen_id": 253715}, {"caption": " wearing a green dress is singing and dancing in a music video", "video_id": "video12998", "sen_id": 253716}, {"caption": "sexy lady with green dress looks shiny", "video_id": "video12998", "sen_id": 253717}, {"caption": "a pretty young woman sings and wears a green dress", "video_id": "video12998", "sen_id": 253718}, {"caption": "a woman in a green dress is singing a song", "video_id": "video12998", "sen_id": 253719}, {"caption": "a woman walking out of an orange car and getting into a blue car in a garage", "video_id": "video10311", "sen_id": 253720}, {"caption": "a guy talks about the video game that he's playing and gives tips", "video_id": "video10311", "sen_id": 253721}, {"caption": "a character walks around orange and blue sports cars in garage", "video_id": "video10311", "sen_id": 253722}, {"caption": "a woman was around two cars then gets into the blue one", "video_id": "video10311", "sen_id": 253723}, {"caption": "a person is explaining about a video in which a lady is selecting a blue car", "video_id": "video10311", "sen_id": 253724}, {"caption": "a kid giving a tutorial on how to play a video game where you purchase cars", "video_id": "video10311", "sen_id": 253725}, {"caption": "a lady image going and entering in to the car", "video_id": "video10311", "sen_id": 253726}, {"caption": "a woman walks around sports cars in garage and hops in blue car", "video_id": "video10311", "sen_id": 253727}, {"caption": "a video animation of video scene game cartoon girl moving in garage and sitting inside car displaying on screen", "video_id": "video10311", "sen_id": 253728}, {"caption": "a woman walks around two cars in a garage with a man s voice explaining the game", "video_id": "video10311", "sen_id": 253729}, {"caption": "a man talks about the racing car game he is playing as he plays", "video_id": "video10311", "sen_id": 253730}, {"caption": "an animated demo sequence on the web showing various models of the cars while the presenter explains the options", "video_id": "video10311", "sen_id": 253731}, {"caption": "a woman is walking around a orange and blue car", "video_id": "video10311", "sen_id": 253732}, {"caption": "a man discusses how to get a free sports car in a game", "video_id": "video10311", "sen_id": 253733}, {"caption": "a man gives a tutorial on how to acquire a car in a video game", "video_id": "video10311", "sen_id": 253734}, {"caption": "a woman walking into a garage and a man telling about a car on the left and once she excepts this she will get a free sports car", "video_id": "video10311", "sen_id": 253735}, {"caption": "a woman walking around an orange car to get into a blue car in a garage", "video_id": "video10311", "sen_id": 253736}, {"caption": "a man demonstrates some gameplay of a car videogame", "video_id": "video10311", "sen_id": 253737}, {"caption": "between the cars she feels that some body is lying but understand that it was a mirage", "video_id": "video10311", "sen_id": 253738}, {"caption": "someone is playing grand theft auto five", "video_id": "video10311", "sen_id": 253739}, {"caption": "a man removes the lid from a mason jar and pours cream in the jar", "video_id": "video10624", "sen_id": 253740}, {"caption": "a sliced potato sits on a cutting board and a person pours heavy cream into a small mason jar", "video_id": "video10624", "sen_id": 253741}, {"caption": "a man gives instructions to pour heavy cream into a small mason jar", "video_id": "video10624", "sen_id": 253742}, {"caption": "in the kitchena man pouring milk to the jar", "video_id": "video10624", "sen_id": 253743}, {"caption": "a small jar is filled with heavy cream and shaken for 15 to 20 minutes", "video_id": "video10624", "sen_id": 253744}, {"caption": "a man opens the glass jar opens cap and pours heavy cream and closes its cap", "video_id": "video10624", "sen_id": 253745}, {"caption": "its on the black surface a cute little bottle with the sand is closed using the lid", "video_id": "video10624", "sen_id": 253746}, {"caption": "a person opens the lid of container and pours fresh cream into it", "video_id": "video10624", "sen_id": 253747}, {"caption": "there is a man open a jar on a table", "video_id": "video10624", "sen_id": 253748}, {"caption": "a small glass bowl some sauce pored and coberd", "video_id": "video10624", "sen_id": 253749}, {"caption": "heavy cream = about 36% butterfat man talk about it", "video_id": "video10624", "sen_id": 253750}, {"caption": "man taking a mason jar and filling it up with heavy cream and then closing the jar with a silver lid", "video_id": "video10624", "sen_id": 253751}, {"caption": "the top of a mason jar is removed heavy cream is poured in two thirds of the way the lid is replaced on the jar", "video_id": "video10624", "sen_id": 253752}, {"caption": "there is a person opening a bottle and putting cream in it and closing it", "video_id": "video10624", "sen_id": 253753}, {"caption": "a hand unscrews the lif for a mason jar and pours scream into it", "video_id": "video10624", "sen_id": 253754}, {"caption": "one man prepares food in the heavy cream 36%", "video_id": "video10624", "sen_id": 253755}, {"caption": "a man takes a one cup jar pours the cream and shakes the jar", "video_id": "video10624", "sen_id": 253756}, {"caption": "round pats of butter lean against each other and form a row a small glass container has a raised design", "video_id": "video10624", "sen_id": 253757}, {"caption": "a man is doing some thing with a butter cream", "video_id": "video10624", "sen_id": 253758}, {"caption": "somebody poured cream into a small mason jar that was sitting on a countertop", "video_id": "video10624", "sen_id": 253759}, {"caption": "a man in orange and black ski gear is taking a run down the ski hill and explaining to to stop", "video_id": "video12186", "sen_id": 253760}, {"caption": "a man describes his method for stopping on a set of skis", "video_id": "video12186", "sen_id": 253761}, {"caption": "a man in orange shirt is off to skying with others", "video_id": "video12186", "sen_id": 253762}, {"caption": "a boy is wearing sketing costumes and he is doing sketing on ice on a big snow mountain", "video_id": "video12186", "sen_id": 253763}, {"caption": "a man is skating in the ice land", "video_id": "video12186", "sen_id": 253764}, {"caption": "a man in an orange jacket is snow skiing and working on learning to stop", "video_id": "video12186", "sen_id": 253765}, {"caption": "guy skying down the icy mountain and teaching how to do it", "video_id": "video12186", "sen_id": 253766}, {"caption": "a young man wearing a jacket skiing in the snows", "video_id": "video12186", "sen_id": 253767}, {"caption": "a man with an orange jacket instructs on how to ski in the snow", "video_id": "video12186", "sen_id": 253768}, {"caption": "a man goes on the snowskate with the skate board and gloves with him", "video_id": "video12186", "sen_id": 253769}, {"caption": "a young man in red and black dress is surfing in the snow", "video_id": "video12186", "sen_id": 253770}, {"caption": "a guy with an orange jacket is using skiis", "video_id": "video12186", "sen_id": 253771}, {"caption": "on a sunny day someone is skating with friends", "video_id": "video12186", "sen_id": 253772}, {"caption": "a person wearing brown jacket doing ice skating in ice and explains how to skate in ince", "video_id": "video12186", "sen_id": 253773}, {"caption": "a man in an orange jacket is teaching how to skii in the snow", "video_id": "video12186", "sen_id": 253774}, {"caption": "a snow rider riding in the snow and he stand", "video_id": "video12186", "sen_id": 253775}, {"caption": "on a sunny daya man with red jacket moving on a skateboard", "video_id": "video12186", "sen_id": 253776}, {"caption": "one man skating in the snow mountain very fastly", "video_id": "video12186", "sen_id": 253777}, {"caption": "scating on the snow and giving some comments", "video_id": "video12186", "sen_id": 253778}, {"caption": "bunch of guys skying down the icy hill", "video_id": "video12186", "sen_id": 253779}, {"caption": "kids sit on the floor before a person pours a sauce on a bowl of food and the live octopus in the bowl starts kicking and squirming", "video_id": "video11285", "sen_id": 253780}, {"caption": "a group of kids speak while someone pours soy sauces over a live octopus", "video_id": "video11285", "sen_id": 253781}, {"caption": "a child pouring liquid on a live squid and making the squid move around in a bowl", "video_id": "video11285", "sen_id": 253782}, {"caption": "children watch as a woman pours sauce onto a prepared squid dish causing the tentacles to move around giving the appearance that the squid is dancing", "video_id": "video11285", "sen_id": 253783}, {"caption": "a woman is pouring sauce on a squid in a bowl", "video_id": "video11285", "sen_id": 253784}, {"caption": "a live octopus is on a pile of food in a bowl", "video_id": "video11285", "sen_id": 253785}, {"caption": "a group of kids are sitting on the floor and someone is pouring liquid on a moving creature", "video_id": "video11285", "sen_id": 253786}, {"caption": "a person is pouring a liquid on a squid that is alive", "video_id": "video11285", "sen_id": 253787}, {"caption": "kids react to a video of a dancing squid", "video_id": "video11285", "sen_id": 253788}, {"caption": "a squid in a bowl moves when liquid is poured on it", "video_id": "video11285", "sen_id": 253789}, {"caption": "a group of children and a octopus in a bowl where one of the children pouring cream on octopus", "video_id": "video11285", "sen_id": 253790}, {"caption": "star fish is kept on the plate and it is coming out", "video_id": "video11285", "sen_id": 253791}, {"caption": "few kids playing they put a sauce on the live octobus and it shakes the head", "video_id": "video11285", "sen_id": 253792}, {"caption": "four kids pour a sauce on a dancing squid in a bowl", "video_id": "video11285", "sen_id": 253793}, {"caption": "a squid is squirming in a bowl when liquid is poured on it", "video_id": "video11285", "sen_id": 253794}, {"caption": "the person pours a liquid over a freshly killed squid to make it move", "video_id": "video11285", "sen_id": 253795}, {"caption": "a hand pours a dark liquid from a teapot over a small white octopus with brown tentacles which makes the legs curl and straighten while it is sitting on top of food in a white bowl", "video_id": "video11285", "sen_id": 253796}, {"caption": "a gruesome demonstration of a person pouring hot sauce over a live octopus in a recipe", "video_id": "video11285", "sen_id": 253797}, {"caption": "an octopus starts moving his hands in a plate full of food", "video_id": "video11285", "sen_id": 253798}, {"caption": "a person is making food in a bowl", "video_id": "video11285", "sen_id": 253799}, {"caption": "actor tom hanks sits at a dinner table and talks to a woman", "video_id": "video12112", "sen_id": 253800}, {"caption": "two persons are discussing something while having their dinner", "video_id": "video12112", "sen_id": 253801}, {"caption": "tom hanks speaks to a woman in a slightly argumentative manner", "video_id": "video12112", "sen_id": 253802}, {"caption": "a man and woman are having a discussion over dinner", "video_id": "video12112", "sen_id": 253803}, {"caption": "a family well dressed family is sitting at their dinner table", "video_id": "video12112", "sen_id": 253804}, {"caption": "in a scene from a film tom hanks and other actors playing family members play out their roles", "video_id": "video12112", "sen_id": 253805}, {"caption": "a scene in a movie where the whole family sits together to have dinner", "video_id": "video12112", "sen_id": 253806}, {"caption": "a family sitting down dinner arguing about a specific topic the video has tom hanks", "video_id": "video12112", "sen_id": 253807}, {"caption": "a movie clip a old man in white dress and lady in blue dress sitting beside table meals served to eat displaying on screen", "video_id": "video12112", "sen_id": 253808}, {"caption": "a family was having dinner together and they war talking about something", "video_id": "video12112", "sen_id": 253809}, {"caption": "in a dinner table a guy is supporting a russian spy in the conversation with his wife", "video_id": "video12112", "sen_id": 253810}, {"caption": "people having a conversation", "video_id": "video12112", "sen_id": 253811}, {"caption": "a conversation between a woman and a man infront of dining table", "video_id": "video12112", "sen_id": 253812}, {"caption": "a old man in white dress wearing cloth and lady in blue sitting beside on chairs meals on table speaking displaying on screen", "video_id": "video12112", "sen_id": 253813}, {"caption": "tom hanks in suit and tie talking to the sexy blonde in the dinner table", "video_id": "video12112", "sen_id": 253814}, {"caption": "two persons speaking each other on a dinning table", "video_id": "video12112", "sen_id": 253815}, {"caption": "a lady wearing blu color dress is talking", "video_id": "video12112", "sen_id": 253816}, {"caption": "a family members are sitting in the dining table", "video_id": "video12112", "sen_id": 253817}, {"caption": "a father brings up a very sensitive topic at the family dinner table", "video_id": "video12112", "sen_id": 253818}, {"caption": "some people at a table are discussing things", "video_id": "video12112", "sen_id": 253819}, {"caption": "a man talks over a montage and list of steven spielberg movie", "video_id": "video11238", "sen_id": 253820}, {"caption": "there is a car moving in to the park", "video_id": "video11238", "sen_id": 253821}, {"caption": "a man riding on the horse", "video_id": "video11238", "sen_id": 253822}, {"caption": "a person talking about someone who has made movies while listing them on the screen", "video_id": "video11238", "sen_id": 253823}, {"caption": "narrator discusses top ten steven spielberg films on listing show", "video_id": "video11238", "sen_id": 253824}, {"caption": "a man talking about the success of steven spielberg movies", "video_id": "video11238", "sen_id": 253825}, {"caption": "a person is looking at a group of different film clips", "video_id": "video11238", "sen_id": 253826}, {"caption": "a montage of steven spielberg movies plays while a man discusses them", "video_id": "video11238", "sen_id": 253827}, {"caption": "someone is speaking about different movies while previews of them play", "video_id": "video11238", "sen_id": 253828}, {"caption": "a man talks about various famous films made", "video_id": "video11238", "sen_id": 253829}, {"caption": "a narrator shows clips from several different steven spielberg films while he describes how much money each one made at the box iffice", "video_id": "video11238", "sen_id": 253830}, {"caption": "various movie trailers of classic movies are shown as well as the gross values that each made", "video_id": "video11238", "sen_id": 253831}, {"caption": "a man is talking about money maker movies", "video_id": "video11238", "sen_id": 253832}, {"caption": "a news is being reported regarding the director of the movies like jurassic park jaws an more", "video_id": "video11238", "sen_id": 253833}, {"caption": "some people are acting in some movies", "video_id": "video11238", "sen_id": 253834}, {"caption": "a man speaking about different movies and their budgets", "video_id": "video11238", "sen_id": 253835}, {"caption": "jurassic park and other amazing movies shown along with the money they made", "video_id": "video11238", "sen_id": 253836}, {"caption": "man speaking about how jurrasic park movie was made", "video_id": "video11238", "sen_id": 253837}, {"caption": "discussion of top earning movies that were made by the same director", "video_id": "video11238", "sen_id": 253838}, {"caption": "a narrator talks about stephen spielberg movies", "video_id": "video11238", "sen_id": 253839}, {"caption": "a smiling lady prepares for work as a stewardess and types on a keyboard", "video_id": "video10613", "sen_id": 253840}, {"caption": "a female flight attendant gets dressed and ready for her day", "video_id": "video10613", "sen_id": 253841}, {"caption": "a young woman in a hallway tying a scarf around her neck opening a door and typing on a typewriter", "video_id": "video10613", "sen_id": 253842}, {"caption": "a smiling woman is adjusting a gold pin on her black attire then adjusts her green scarf and she proceeds to walk and open the wooden double doors the woman's hands are typing on a computer keyboard", "video_id": "video10613", "sen_id": 253843}, {"caption": "a woman stands alone in front of a mirror as she adjusts a set of wings on her lapel and puts on a green scarf around her neck she then opens a window and begins to type at a keyboard", "video_id": "video10613", "sen_id": 253844}, {"caption": "an asian woman gets dressed to be a flight attendant on an airline", "video_id": "video10613", "sen_id": 253845}, {"caption": "a woman is wearing her company badge and typing something in the keyboard", "video_id": "video10613", "sen_id": 253846}, {"caption": "there is a woman dressing inside the room", "video_id": "video10613", "sen_id": 253847}, {"caption": "a woman in a black outfit is talking about different emotions and how they can be expressed", "video_id": "video10613", "sen_id": 253848}, {"caption": "a flight attendant is speaking to the audience in a language other than english about the airline she works for", "video_id": "video10613", "sen_id": 253849}, {"caption": "a woman with pink nails adjusts her gold wing shaped pen before tying a yellow scarf around her throat", "video_id": "video10613", "sen_id": 253850}, {"caption": "a woman dressed in black with a yellow scarf and red fingernails is adjusting a pin on her shirt", "video_id": "video10613", "sen_id": 253851}, {"caption": "a stewardess is applying the company logo on her dress then a woman is using a typewriter", "video_id": "video10613", "sen_id": 253852}, {"caption": "a woman wearing black prepares her uniform in a large house", "video_id": "video10613", "sen_id": 253853}, {"caption": "a woman prepares for the day before heading to work", "video_id": "video10613", "sen_id": 253854}, {"caption": "a women in black dress is just fixing her clothes in her room", "video_id": "video10613", "sen_id": 253855}, {"caption": "a woman buttons up her blazer adjusts her pin and ties a green scarf to her neck", "video_id": "video10613", "sen_id": 253856}, {"caption": "a lady wearing a black nike outfit opening two doors", "video_id": "video10613", "sen_id": 253857}, {"caption": "a woman wearing a black suit talks in a foreign language while she gets ready and opens a door to reveal nice scenery outside", "video_id": "video10613", "sen_id": 253858}, {"caption": "a girl in black is wearing a scarf and typing words", "video_id": "video10613", "sen_id": 253859}, {"caption": "two pieces ofwhat looks like meat are cooking on a frying pan while a man talks about cooking them", "video_id": "video10555", "sen_id": 253860}, {"caption": "a women in her kitchen frying some food in a pan", "video_id": "video10555", "sen_id": 253861}, {"caption": "a man is showing how to make a recipe with some sort of meat in a frying pan with oil", "video_id": "video10555", "sen_id": 253862}, {"caption": "two pieces of meat frying in a pan until they re caramelized", "video_id": "video10555", "sen_id": 253863}, {"caption": "meat is frying in a frying pan while a cook is getting ready to make sauce", "video_id": "video10555", "sen_id": 253864}, {"caption": "a person is preparing a meal of food for a show", "video_id": "video10555", "sen_id": 253865}, {"caption": "a man is fried a dish in the oil in the pan", "video_id": "video10555", "sen_id": 253866}, {"caption": "person in the kitchen cooking chicken in a frying pan and talking", "video_id": "video10555", "sen_id": 253867}, {"caption": "two pieces of meat cook in a pan and the narrator picks one up", "video_id": "video10555", "sen_id": 253868}, {"caption": "a guy preparing pieces of meat in the frying pan", "video_id": "video10555", "sen_id": 253869}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10555", "sen_id": 253870}, {"caption": "an inhome chef fries up two pieces of meat and gets ready to prepare a sauce", "video_id": "video10555", "sen_id": 253871}, {"caption": "a person is frying the ginger in the oil on the stove", "video_id": "video10555", "sen_id": 253872}, {"caption": "someone is frying pieces of meat in a small frying pan sitting on a stove in a kitchen", "video_id": "video10555", "sen_id": 253873}, {"caption": "some food is being cooked on a black pan", "video_id": "video10555", "sen_id": 253874}, {"caption": "a man is cooking some type of meat in a skillet on a stove", "video_id": "video10555", "sen_id": 253875}, {"caption": "some one is explaining about fish cooking with explanation", "video_id": "video10555", "sen_id": 253876}, {"caption": "a chef is cooking fish and is frying it in oil", "video_id": "video10555", "sen_id": 253877}, {"caption": "a gentleman cooking fish in a frying pan describing the task he is doing", "video_id": "video10555", "sen_id": 253878}, {"caption": "someone is frying up some food in a pan", "video_id": "video10555", "sen_id": 253879}, {"caption": "in a tennis court the player is bringing camera man to take a shot of the mark to prove his point", "video_id": "video12012", "sen_id": 253880}, {"caption": "a tennis player points out a scuff mark on the line where the ball hit", "video_id": "video12012", "sen_id": 253881}, {"caption": "a tennis player is showing a cameraman lines on the court", "video_id": "video12012", "sen_id": 253882}, {"caption": "the player in the green shirt is taking the camera man to go look at where the whit line has disappeared", "video_id": "video12012", "sen_id": 253883}, {"caption": "a tennis match showing the disagreements on a match on where the tennis ball landed", "video_id": "video12012", "sen_id": 253884}, {"caption": "tennis player bringing camera man over to film ball mark on foul line", "video_id": "video12012", "sen_id": 253885}, {"caption": "one man in grey leads another man and shows the white line on the ground", "video_id": "video12012", "sen_id": 253886}, {"caption": "a man walks cameraman to end of court to show him mark of ball", "video_id": "video12012", "sen_id": 253887}, {"caption": "a tennis player is being escorted off the court", "video_id": "video12012", "sen_id": 253888}, {"caption": "some officials doing line measurements for a tennis match", "video_id": "video12012", "sen_id": 253889}, {"caption": "a sports player is standing in an empty stadium talking to a man with a film recorder", "video_id": "video12012", "sen_id": 253890}, {"caption": "a tennis player walks off of a red clay court with a camera man by his side", "video_id": "video12012", "sen_id": 253891}, {"caption": "a man is showing a white line on the court in a game", "video_id": "video12012", "sen_id": 253892}, {"caption": "a man in blue shoes showing the dirt on a white line of a tennis court", "video_id": "video12012", "sen_id": 253893}, {"caption": "tennis players walks the cameraman to the spot where he is convinced the ball landed", "video_id": "video12012", "sen_id": 253894}, {"caption": "a player waling with camera and showing the line in which the foot print shows", "video_id": "video12012", "sen_id": 253895}, {"caption": "on a tennis court a player brings camera man to a line to show him something", "video_id": "video12012", "sen_id": 253896}, {"caption": "a tennis player is bring the camera man to the line on the court", "video_id": "video12012", "sen_id": 253897}, {"caption": "a tennis player with blue shoes points to a white line on the orange clay court", "video_id": "video12012", "sen_id": 253898}, {"caption": "on a tennis field a player points at the ground", "video_id": "video12012", "sen_id": 253899}, {"caption": "a nurse demonstrates how to clean a piece of medical equipment", "video_id": "video10327", "sen_id": 253900}, {"caption": "a woman in a blue shirt is showing how to sanitize a stethoscope with an alcohol swab", "video_id": "video10327", "sen_id": 253901}, {"caption": "a nurse in blue scrubs discusses how to correctly clean a stethoscope starting with each ear piece and then the diaphragm", "video_id": "video10327", "sen_id": 253902}, {"caption": "a woman in blue scrubs is demonstrating cleaning of a stethoscope", "video_id": "video10327", "sen_id": 253903}, {"caption": "a doctor is in blue dress and also a patient in the bedwhere the doctor cleaning the stethoscope", "video_id": "video10327", "sen_id": 253904}, {"caption": "a woman in blue nursing scrubs wipes earpieces of stethoscope with patient lying beside", "video_id": "video10327", "sen_id": 253905}, {"caption": "in a bedroom a woman in blue scrubs is preparing a stethoscope to use on a patient in the bed next to her", "video_id": "video10327", "sen_id": 253906}, {"caption": "a woman in blue nursing scrubs is standing over a man in bed while cleaning a stethoscope", "video_id": "video10327", "sen_id": 253907}, {"caption": "a nurse cleans a stethoscope with an alcohol pad", "video_id": "video10327", "sen_id": 253908}, {"caption": "a woman opening an alcohol swab and wiping off stethoscope ear pieces", "video_id": "video10327", "sen_id": 253909}, {"caption": "a women in nurse scrubs uses alcohol swab to clean earpieces of stethoscope", "video_id": "video10327", "sen_id": 253910}, {"caption": "nurse explains how to examine a patient lying on the bed", "video_id": "video10327", "sen_id": 253911}, {"caption": "a woman doctor shows how to clean a stethoscope properly", "video_id": "video10327", "sen_id": 253912}, {"caption": "a woman is having stethoscope in her hand and cleaning it", "video_id": "video10327", "sen_id": 253913}, {"caption": "a woman in blue cleans a doctor s stethoscope", "video_id": "video10327", "sen_id": 253914}, {"caption": "a person is holding a stethoscope in a room", "video_id": "video10327", "sen_id": 253915}, {"caption": "a medical professional is showing how to properly clean a stethoscope", "video_id": "video10327", "sen_id": 253916}, {"caption": "a woman giving instructions on how to properly clean a therascope while demonstrating it", "video_id": "video10327", "sen_id": 253917}, {"caption": "a nurse is cleaning a stethoscope with an alcohol swab", "video_id": "video10327", "sen_id": 253918}, {"caption": "a person is messing around with some kind of object", "video_id": "video10327", "sen_id": 253919}, {"caption": "voice of a man is heard speaking vulgar language then laughter is heard from a lady while the picture on the screen appears to be a computer game", "video_id": "video10266", "sen_id": 253920}, {"caption": "people swearing and laughing while playing a video game", "video_id": "video10266", "sen_id": 253921}, {"caption": "a man spews and displays profanity on a screen showing an animated city", "video_id": "video10266", "sen_id": 253922}, {"caption": "there is a men in black suit telling news in news room", "video_id": "video10266", "sen_id": 253923}, {"caption": "a voice chat over a call of duty screencast with some laughter", "video_id": "video10266", "sen_id": 253924}, {"caption": "a call of duty player is making jokes in the chatroom", "video_id": "video10266", "sen_id": 253925}, {"caption": "a man is talking slang while playing his video game", "video_id": "video10266", "sen_id": 253926}, {"caption": "there are some information about a gaming site", "video_id": "video10266", "sen_id": 253927}, {"caption": "in a screen there is some letter are displayed", "video_id": "video10266", "sen_id": 253928}, {"caption": "a man is talking and a woman is laughing and graphics are displayed", "video_id": "video10266", "sen_id": 253929}, {"caption": "different people are talking while they are playing a video game", "video_id": "video10266", "sen_id": 253930}, {"caption": "more images and screen are displayed", "video_id": "video10266", "sen_id": 253931}, {"caption": "yo finally we got sweet ass in hea", "video_id": "video10266", "sen_id": 253932}, {"caption": "two people converse over a video game interface", "video_id": "video10266", "sen_id": 253933}, {"caption": "a very racist man is describing a video screen and sounds like he is entertaining the girl with him", "video_id": "video10266", "sen_id": 253934}, {"caption": "problem with video the small video screen states invalid source i have a print screen shot available if you like", "video_id": "video10266", "sen_id": 253935}, {"caption": "vulgar words are being displayed with a video game in the background", "video_id": "video10266", "sen_id": 253936}, {"caption": "a man is speaking and a woman is laughing", "video_id": "video10266", "sen_id": 253937}, {"caption": "a conversation is taking place between a african-american man and women and the women giggles at the mans words", "video_id": "video10266", "sen_id": 253938}, {"caption": "some one is mad while playing a game", "video_id": "video10266", "sen_id": 253939}, {"caption": "rhianna starts singing while wearing her underwear", "video_id": "video11908", "sen_id": 253940}, {"caption": "a woman singing in a rood while touching a bed", "video_id": "video11908", "sen_id": 253941}, {"caption": "a woman in white lingerie touching a bed spread", "video_id": "video11908", "sen_id": 253942}, {"caption": "a women in white top is posing for photograph", "video_id": "video11908", "sen_id": 253943}, {"caption": "a lady worn sexy white color dress laughing", "video_id": "video11908", "sen_id": 253944}, {"caption": "a beautiful highly sexy young lady with see through transparent white dress is standing near a chair and singing with sexy look", "video_id": "video11908", "sen_id": 253945}, {"caption": "beyonce weaing lingerie and dusting a table while her song plays and she sings along", "video_id": "video11908", "sen_id": 253946}, {"caption": "a woman wearing lingerie in the bedroom is singing", "video_id": "video11908", "sen_id": 253947}, {"caption": "beyonce in white lingerie singing for a music video", "video_id": "video11908", "sen_id": 253948}, {"caption": "a singer highlights her new figure singing the most famous line of her recent hit", "video_id": "video11908", "sen_id": 253949}, {"caption": "a lady in white dress singing a song", "video_id": "video11908", "sen_id": 253950}, {"caption": "a lady singing while on the house", "video_id": "video11908", "sen_id": 253951}, {"caption": "a woman in sheer lingerie is advertising the product she is wearing", "video_id": "video11908", "sen_id": 253952}, {"caption": "a singer singing a song while wearing reveling lingerie in a room with white furniture", "video_id": "video11908", "sen_id": 253953}, {"caption": "a beautiful woman in white lingere singing", "video_id": "video11908", "sen_id": 253954}, {"caption": "there is a woman in a hot dress singing in a room", "video_id": "video11908", "sen_id": 253955}, {"caption": "the lady is singing while putting on a costume", "video_id": "video11908", "sen_id": 253956}, {"caption": "a girl in lingerie near the bed and sings a song giving glamour moves", "video_id": "video11908", "sen_id": 253957}, {"caption": "a woman dressed only in lingerie sings while moving about a bedroom", "video_id": "video11908", "sen_id": 253958}, {"caption": "a woman in lingerie sings while surrounded by white furniture", "video_id": "video11908", "sen_id": 253959}, {"caption": "a man in white is holding a tennis racket walking away from the base line and then there is an animation of a tennis ball being hit outside of the line", "video_id": "video11459", "sen_id": 253960}, {"caption": "a cgi enhanced replay of an international tennis match out call demonstrates the ball out of bounds", "video_id": "video11459", "sen_id": 253961}, {"caption": "a man in a white shirt carrying a tennis racket dries himself on a white towel", "video_id": "video11459", "sen_id": 253962}, {"caption": "a helper in the tennis playground is offering a towel to a tennis player", "video_id": "video11459", "sen_id": 253963}, {"caption": "a ballboy handing a tennis player a towel while the last move is reviewed", "video_id": "video11459", "sen_id": 253964}, {"caption": "official review of a tennis tournament to finalize whether the ball was in right position", "video_id": "video11459", "sen_id": 253965}, {"caption": "an animation of a tennis ball is playing", "video_id": "video11459", "sen_id": 253966}, {"caption": "the ball bat mint on playing taking rest in break period", "video_id": "video11459", "sen_id": 253967}, {"caption": "a man in a pink shirt is handed a white towel after a tennis call", "video_id": "video11459", "sen_id": 253968}, {"caption": "a commentator explains with the help of a review tool a shot played by a tennis player on the courts", "video_id": "video11459", "sen_id": 253969}, {"caption": "a tennis player holding a racket walks off the professional court to towel himself while the announcer is explaining the last hit", "video_id": "video11459", "sen_id": 253970}, {"caption": "the man wearing the white shirt hits the ball over the net", "video_id": "video11459", "sen_id": 253971}, {"caption": "a tennis player wipes his brow with a towel while an animated replay of his last serve is shown", "video_id": "video11459", "sen_id": 253972}, {"caption": "a tennis player accepts a towel to wipe his face then the shot is shown in replay for review", "video_id": "video11459", "sen_id": 253973}, {"caption": "an announcer speaks about an ongoing tennis game", "video_id": "video11459", "sen_id": 253974}, {"caption": "a sportscaster reviews what happened during a tennis match", "video_id": "video11459", "sen_id": 253975}, {"caption": "the tennis player is using the towel after playing the shot", "video_id": "video11459", "sen_id": 253976}, {"caption": "tennis match in spanish official review on tv", "video_id": "video11459", "sen_id": 253977}, {"caption": "a tennis shot reviewed with a special tennis animation", "video_id": "video11459", "sen_id": 253978}, {"caption": "a man is handing a towel to a tennis player on a tennis court", "video_id": "video11459", "sen_id": 253979}, {"caption": "a girl uses makeup to look like disgust from inside out", "video_id": "video11769", "sen_id": 253980}, {"caption": "a little girl putting on green face paint", "video_id": "video11769", "sen_id": 253981}, {"caption": "a girl in green face paint is doing costume makeup in front of a small white mirror", "video_id": "video11769", "sen_id": 253982}, {"caption": "a young girl wearing a blue lacy shirt with green face paint applying something to her eyebrows", "video_id": "video11769", "sen_id": 253983}, {"caption": "a young girl is presenting make up techniques", "video_id": "video11769", "sen_id": 253984}, {"caption": "a women in green dress is applying make up to her face", "video_id": "video11769", "sen_id": 253985}, {"caption": "a girl with her face painted green moves on to paint her eyebrows", "video_id": "video11769", "sen_id": 253986}, {"caption": "a young girl is putting costume makeup on and explaining how she is doing it", "video_id": "video11769", "sen_id": 253987}, {"caption": "a young girl holding a paint brush while sitting next to a mirror", "video_id": "video11769", "sen_id": 253988}, {"caption": "a little girl wearing green is showing how she paints her face green", "video_id": "video11769", "sen_id": 253989}, {"caption": "there is a woman with green face sitting in front of a mirror", "video_id": "video11769", "sen_id": 253990}, {"caption": "a young girl with a green face at a table with a mirror and a variety of makeup applies more green to her eyebrows", "video_id": "video11769", "sen_id": 253991}, {"caption": "a young girl with a green painted face getting ready to paint her eyebrows", "video_id": "video11769", "sen_id": 253992}, {"caption": "a young girl offers a makeup tutorial for eyebrows as she continues to paint her face", "video_id": "video11769", "sen_id": 253993}, {"caption": "a young girl putting face paint on her eyebrows after already putting paint on her face", "video_id": "video11769", "sen_id": 253994}, {"caption": "there is a woman with green face talking from her room", "video_id": "video11769", "sen_id": 253995}, {"caption": "the girl with the green face puts on the makup in the mirror", "video_id": "video11769", "sen_id": 253996}, {"caption": "a small girl applying some green color makeup on her face", "video_id": "video11769", "sen_id": 253997}, {"caption": "a young teen applies the final touches to a green base of face paint", "video_id": "video11769", "sen_id": 253998}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11769", "sen_id": 253999}, {"caption": "a family sitting on a couch with some dogs and talking", "video_id": "video10197", "sen_id": 254000}, {"caption": "people are talking about their families while they sit on a couch", "video_id": "video10197", "sen_id": 254001}, {"caption": "an indian family introducing each of their family members in a household setting", "video_id": "video10197", "sen_id": 254002}, {"caption": "a celebrity family giving a nice interview with joyfullyand the interaction of each one is really good", "video_id": "video10197", "sen_id": 254003}, {"caption": "a whole series of indian people introduce their families and talk about them", "video_id": "video10197", "sen_id": 254004}, {"caption": "beautiful people showing and introducing the members of their families", "video_id": "video10197", "sen_id": 254005}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10197", "sen_id": 254006}, {"caption": "a man and woman sit on a tan sofa a father and son are on a white loveseat three generations are on a brown couch", "video_id": "video10197", "sen_id": 254007}, {"caption": "many man and womens are talks about the", "video_id": "video10197", "sen_id": 254008}, {"caption": "several clips of couples sitting on a couch", "video_id": "video10197", "sen_id": 254009}, {"caption": "a couple is having a conversation on a beige couch with striped through pillows", "video_id": "video10197", "sen_id": 254010}, {"caption": "several groups of people are sitting on couches and talking to the camera", "video_id": "video10197", "sen_id": 254011}, {"caption": "a group of family talking about something in their home", "video_id": "video10197", "sen_id": 254012}, {"caption": "a person talking to the camera while smiling and pointing to the person sitting next to them", "video_id": "video10197", "sen_id": 254013}, {"caption": "the people in the video are introducing their family", "video_id": "video10197", "sen_id": 254014}, {"caption": "a lady man taking together and sitting on a sofa", "video_id": "video10197", "sen_id": 254015}, {"caption": "different families are shown with one member introducing the others in a friendly sometimes joking", "video_id": "video10197", "sen_id": 254016}, {"caption": "being proud of your family is great and it s also the most important part of each one of us", "video_id": "video10197", "sen_id": 254017}, {"caption": "different people with different location doing introduce their family", "video_id": "video10197", "sen_id": 254018}, {"caption": "some people in india are sitting on couches", "video_id": "video10197", "sen_id": 254019}, {"caption": "a bowl containing food and a spoon is set on a platter on a wooden table", "video_id": "video11751", "sen_id": 254020}, {"caption": "a woman is talking about the soup pictured in the video that she just made", "video_id": "video11751", "sen_id": 254021}, {"caption": "someone describes how to melt cheese in soup", "video_id": "video11751", "sen_id": 254022}, {"caption": "a woman finishing a soup in the oven and inviting everyone to her website", "video_id": "video11751", "sen_id": 254023}, {"caption": "there are four food dishes in white bowls on black plates", "video_id": "video11751", "sen_id": 254024}, {"caption": "a woman explain the innovative method of one special dish", "video_id": "video11751", "sen_id": 254025}, {"caption": "a lady is giving tips and topics regarding a food dish", "video_id": "video11751", "sen_id": 254026}, {"caption": "a woman is describing a presumably cheap way to make soup yourself that has a lot of flavor", "video_id": "video11751", "sen_id": 254027}, {"caption": "a woman is talking about cooking a soup", "video_id": "video11751", "sen_id": 254028}, {"caption": "a woman talks about the finished product of a dish she has prepared", "video_id": "video11751", "sen_id": 254029}, {"caption": "a white bowl contains a food item into which a spoon is put", "video_id": "video11751", "sen_id": 254030}, {"caption": "a black plate with a white bowl containing soup and a spoon", "video_id": "video11751", "sen_id": 254031}, {"caption": "a lady displays a dish she has prepared and explains about the soup and some suggestions about it", "video_id": "video11751", "sen_id": 254032}, {"caption": "a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11751", "sen_id": 254033}, {"caption": "someone talking about a soup they just made", "video_id": "video11751", "sen_id": 254034}, {"caption": "a small bowl some food is there with spoon", "video_id": "video11751", "sen_id": 254035}, {"caption": "a white bowl of soup with a spoon sitting on a black plate", "video_id": "video11751", "sen_id": 254036}, {"caption": "how to cook some delicious bean dip and put it in a bowl", "video_id": "video11751", "sen_id": 254037}, {"caption": "a soup is being prepared in a while bowl with a silver spoon", "video_id": "video11751", "sen_id": 254038}, {"caption": "some soup is inside of a white bowl", "video_id": "video11751", "sen_id": 254039}, {"caption": "a baby is sitting on the bed and tries to pet a black cat the black cat paws at the babies nose", "video_id": "video12440", "sen_id": 254040}, {"caption": "a black cat walks across a baby and then touches and snuggles the baby", "video_id": "video12440", "sen_id": 254041}, {"caption": "a black cat jumps up onto a bed and cuddles a toddler girl", "video_id": "video12440", "sen_id": 254042}, {"caption": "a black cat cuddles with a young toddler", "video_id": "video12440", "sen_id": 254043}, {"caption": "a cute baby and a black cat doing something funny in the home", "video_id": "video12440", "sen_id": 254044}, {"caption": "black cat and the cute little baby on the bed the cat play with baby and the baby laugh", "video_id": "video12440", "sen_id": 254045}, {"caption": "a cat crawling on and pawing at a baby sitting on a bed", "video_id": "video12440", "sen_id": 254046}, {"caption": "a baby girl sitting on a bed is interacting with a black cat", "video_id": "video12440", "sen_id": 254047}, {"caption": "a cute small baby and a black cat doing something funny in home", "video_id": "video12440", "sen_id": 254048}, {"caption": "small baby sitting and having fun with the black cat", "video_id": "video12440", "sen_id": 254049}, {"caption": "a baby girl sitting on a bed while a black cat rubs on her", "video_id": "video12440", "sen_id": 254050}, {"caption": "a young child is playing with a rather large black cat", "video_id": "video12440", "sen_id": 254051}, {"caption": "an adult black cat walks across a white bed crosses over toys rubs its head on the toddler s arm", "video_id": "video12440", "sen_id": 254052}, {"caption": "a child is playing with a black cat", "video_id": "video12440", "sen_id": 254053}, {"caption": "a blue cat color and white dress baby sitting on bed in front of cat dolls beside displaying on screen", "video_id": "video12440", "sen_id": 254054}, {"caption": "baby playing with the black cat on the bed", "video_id": "video12440", "sen_id": 254055}, {"caption": "one baby play with the black cat in", "video_id": "video12440", "sen_id": 254056}, {"caption": "a cat interacts with a baby on a bed in a silent video", "video_id": "video12440", "sen_id": 254057}, {"caption": "a black cat is pampering a cute small baby dressed in white sitting on a bed with toys", "video_id": "video12440", "sen_id": 254058}, {"caption": "a cat is standing on a bed near a baby", "video_id": "video12440", "sen_id": 254059}, {"caption": "a young couple watches a rugby match from the comfort of their couch", "video_id": "video11266", "sen_id": 254060}, {"caption": "a woman in a green top sitting with a man watching soccer", "video_id": "video11266", "sen_id": 254061}, {"caption": "a man and a woman happily sit next to each other as they watch soccer and enjoy each other s company", "video_id": "video11266", "sen_id": 254062}, {"caption": "a guy and girl watching a game on the tv while they video themselves with music playing", "video_id": "video11266", "sen_id": 254063}, {"caption": "a man and lady sitting watching television and speaking dancing football game displaying on screen", "video_id": "video11266", "sen_id": 254064}, {"caption": "a couple watching the football match in tv and shows theis dance expression", "video_id": "video11266", "sen_id": 254065}, {"caption": "a man and woman sitting on a couch with a clip of in the bottom corner of a soccer game the couple appear to be discussing certain parts of the game and players", "video_id": "video11266", "sen_id": 254066}, {"caption": "a bearded man and a woman sitting on a couch watch a soccer match which is shown in an inset", "video_id": "video11266", "sen_id": 254067}, {"caption": "boy and girl dancing speaking watching television sport game football on tv displaying on screen", "video_id": "video11266", "sen_id": 254068}, {"caption": "a man and a woman are watching a sports game", "video_id": "video11266", "sen_id": 254069}, {"caption": "there is a man sitting nearby his girlfriend", "video_id": "video11266", "sen_id": 254070}, {"caption": "a man and a womanare speaking in the home and watching a tv", "video_id": "video11266", "sen_id": 254071}, {"caption": "two people are watching a soccer game that is shown on screen", "video_id": "video11266", "sen_id": 254072}, {"caption": "a man in grey t-shirt and a woman in cyan top listening to music and watching soccer", "video_id": "video11266", "sen_id": 254073}, {"caption": "a man and woman are watching rugby", "video_id": "video11266", "sen_id": 254074}, {"caption": "a couple watches and discuss a football game while music plays loudly in the background", "video_id": "video11266", "sen_id": 254075}, {"caption": "a man and a woman are seated on a couch and a soccer game is being played in the corner inset screen", "video_id": "video11266", "sen_id": 254076}, {"caption": "a couple watching great points of rugby matches", "video_id": "video11266", "sen_id": 254077}, {"caption": "a couple watches a rugby match and comments while pop music plays in the background", "video_id": "video11266", "sen_id": 254078}, {"caption": "an american couple watching a rugby game with music in the background", "video_id": "video11266", "sen_id": 254079}, {"caption": "cooks make hong kong waffles in a restaurant", "video_id": "video10316", "sen_id": 254080}, {"caption": "a person making hong kong waffles from scratch", "video_id": "video10316", "sen_id": 254081}, {"caption": "a female cook makes hong kong waffles in a small griddle for a customer who pays her with paper money", "video_id": "video10316", "sen_id": 254082}, {"caption": "home made video of street kitchen in honk hong", "video_id": "video10316", "sen_id": 254083}, {"caption": "many voices speaking in an asian language are heard in the background as a screen with hong kong waffles appears and fades to show someone pouring batter into a machine then someone pays the clerk who gives change", "video_id": "video10316", "sen_id": 254084}, {"caption": "a young woman behind a counter cluttered with containers and utensils pours a yellow batter from a pitcher into a waffle-maker machine spins it upside down takes payment and gives change", "video_id": "video10316", "sen_id": 254085}, {"caption": "a women is busy preparing food in kitchen", "video_id": "video10316", "sen_id": 254086}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10316", "sen_id": 254087}, {"caption": "a hong kong woman cooking in the kitchen", "video_id": "video10316", "sen_id": 254088}, {"caption": "a girl inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video10316", "sen_id": 254089}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10316", "sen_id": 254090}, {"caption": "there is a woman cooking food and also mixing ingredients preparing waffles", "video_id": "video10316", "sen_id": 254091}, {"caption": "at the hotel the chefs are making the honkong waffies in very gently", "video_id": "video10316", "sen_id": 254092}, {"caption": "a woman pours batter into a waffle maker in a cafe setting", "video_id": "video10316", "sen_id": 254093}, {"caption": "a woman is taking money and handing items out at a food stand", "video_id": "video10316", "sen_id": 254094}, {"caption": "in the kitchen a woman washing a pan with water", "video_id": "video10316", "sen_id": 254095}, {"caption": "hong kong waffles two woman sales some things", "video_id": "video10316", "sen_id": 254096}, {"caption": "hong kong waffles preparing recipe in the kitchen", "video_id": "video10316", "sen_id": 254097}, {"caption": "a person pours waffle batter into a waffle maker then closes it to cook it", "video_id": "video10316", "sen_id": 254098}, {"caption": "a woman with an apron is making some food", "video_id": "video10316", "sen_id": 254099}, {"caption": "a teen girl sits in her room discussing movies", "video_id": "video10426", "sen_id": 254100}, {"caption": "there is a cute woman talking from a hall", "video_id": "video10426", "sen_id": 254101}, {"caption": "a girl in her room with windows behind her talkingb about movies and dating", "video_id": "video10426", "sen_id": 254102}, {"caption": "a young girl sits in bedroom in front of window showing different clips", "video_id": "video10426", "sen_id": 254103}, {"caption": "a girl giving a motivational speech with music playing in the background", "video_id": "video10426", "sen_id": 254104}, {"caption": "a girl talks about the movie 13 going on 30 commenting as life always improves", "video_id": "video10426", "sen_id": 254105}, {"caption": "a girl with brown hair talking about movies in her bedroom", "video_id": "video10426", "sen_id": 254106}, {"caption": "a girl in her room discusses her favorite movie 13 going on 30", "video_id": "video10426", "sen_id": 254107}, {"caption": "a girl is speaking about 13 going on 30", "video_id": "video10426", "sen_id": 254108}, {"caption": "a beautiful young teen girl is saying about 13 going 30", "video_id": "video10426", "sen_id": 254109}, {"caption": "a lady expressing her opinion on various things", "video_id": "video10426", "sen_id": 254110}, {"caption": "a young girl discusses the message behind the move 13 going on 30", "video_id": "video10426", "sen_id": 254111}, {"caption": "a girl talking about something in her home", "video_id": "video10426", "sen_id": 254112}, {"caption": "a lady bright skin long hair is describing about a lady with a title 13 going 30", "video_id": "video10426", "sen_id": 254113}, {"caption": "a young girl is talking about a movie she likes", "video_id": "video10426", "sen_id": 254114}, {"caption": "a girl in a room is talking to the camera", "video_id": "video10426", "sen_id": 254115}, {"caption": "a lady is talking and rounding her finger", "video_id": "video10426", "sen_id": 254116}, {"caption": "a young girl describes how she is trying to tread water", "video_id": "video10426", "sen_id": 254117}, {"caption": "brunette woman is in her room and talking about something", "video_id": "video10426", "sen_id": 254118}, {"caption": "a young girl sits inside her bedroom and gives words of encouragement to others", "video_id": "video10426", "sen_id": 254119}, {"caption": "a young woman describes a technique she uses to apply eye make-up", "video_id": "video12218", "sen_id": 254120}, {"caption": "a woman wearing makeup is smiling and blinking slowly", "video_id": "video12218", "sen_id": 254121}, {"caption": "a woman blinks while talking about her newfound love of wearing eyeliner", "video_id": "video12218", "sen_id": 254122}, {"caption": "a woman talks about eyeliner and directs viewers to the comment section if they want to know more about this particular eye liner technique", "video_id": "video12218", "sen_id": 254123}, {"caption": "there is a women applying makeup by herself", "video_id": "video12218", "sen_id": 254124}, {"caption": "a girl showing her eyes and she loves the eyeliner", "video_id": "video12218", "sen_id": 254125}, {"caption": "a girl with a eyeshadow and eyeliner on blinking and smiling", "video_id": "video12218", "sen_id": 254126}, {"caption": "a close up of a lady describing on how to get a certain eyeliner look", "video_id": "video12218", "sen_id": 254127}, {"caption": "a woman asking for feed back on a particular eye liner look", "video_id": "video12218", "sen_id": 254128}, {"caption": "beautiful woman with green eyes smiling after her make up is done", "video_id": "video12218", "sen_id": 254129}, {"caption": "a woman is talking about of good her eyeliner look is", "video_id": "video12218", "sen_id": 254130}, {"caption": "a woman is giving tips on how to use eyeliner", "video_id": "video12218", "sen_id": 254131}, {"caption": "a very beautiful lady with awesome eyes smiling", "video_id": "video12218", "sen_id": 254132}, {"caption": "a close up shot of a woman s face beautifully made up as she blinks and smiles", "video_id": "video12218", "sen_id": 254133}, {"caption": "a woman is applied eyeliner and showing it by closing eyes and open and smiling", "video_id": "video12218", "sen_id": 254134}, {"caption": "a woman talking about how she wears eyeliner makeup", "video_id": "video12218", "sen_id": 254135}, {"caption": "a woman is showing make up on eye brows", "video_id": "video12218", "sen_id": 254136}, {"caption": "a woman is talking while showing a makeup application on her face", "video_id": "video12218", "sen_id": 254137}, {"caption": "a young lady has a close-up of her face to show her eyeliner", "video_id": "video12218", "sen_id": 254138}, {"caption": "i rarely wear eyeliner but i really love this look", "video_id": "video12218", "sen_id": 254139}, {"caption": "women is shown placing onions into a bowl then this woman is shown with a man explaining why he cut the onions long to make ceviche", "video_id": "video11867", "sen_id": 254140}, {"caption": "a woman wearing a pink button up shirt in a kitchen places onions in a bowl and talks with a man in a black shirt", "video_id": "video11867", "sen_id": 254141}, {"caption": "a woman carefully putting chopped onions into a bowl", "video_id": "video11867", "sen_id": 254142}, {"caption": "a woman transfers sliced and diced onions to a bowl", "video_id": "video11867", "sen_id": 254143}, {"caption": "make the perfect meal by learning how to prep and chop onions to cook a yummy meal", "video_id": "video11867", "sen_id": 254144}, {"caption": "a man and woman on a cooking shoe prepare food and talk", "video_id": "video11867", "sen_id": 254145}, {"caption": "in the kitchen a woman in pink talking about a recipe", "video_id": "video11867", "sen_id": 254146}, {"caption": "person preparing some food spices", "video_id": "video11867", "sen_id": 254147}, {"caption": "a girl and guy cutting the vegetables in the kitchen", "video_id": "video11867", "sen_id": 254148}, {"caption": "a girl and boy inside kitchen cutting vegetables preparing dish to serve to eat displaying on screen", "video_id": "video11867", "sen_id": 254149}, {"caption": "a man and woman are talking inside", "video_id": "video11867", "sen_id": 254150}, {"caption": "there is a women and men cooking food in untensil", "video_id": "video11867", "sen_id": 254151}, {"caption": "a woman in pink is putting chopped onions in a talking to a man in black", "video_id": "video11867", "sen_id": 254152}, {"caption": "a lady wearing a pink shirt is carefully putting chopped onion in a bowl", "video_id": "video11867", "sen_id": 254153}, {"caption": "a woman and a man are putting chopped and long pieces of onions into a bowl", "video_id": "video11867", "sen_id": 254154}, {"caption": "a woman and a man chopping onions and chopping long onions", "video_id": "video11867", "sen_id": 254155}, {"caption": "one man and women making recipe in kitchen", "video_id": "video11867", "sen_id": 254156}, {"caption": "onions being added to a dish of chopped onions then a man explaining to a woman why he added them to the dish", "video_id": "video11867", "sen_id": 254157}, {"caption": "the woman chops up onions and places them in a square white bowl", "video_id": "video11867", "sen_id": 254158}, {"caption": "a woman dices red onion and a man adds long onions to her pile", "video_id": "video11867", "sen_id": 254159}, {"caption": "there is a fabric being shown for a wedding dress", "video_id": "video11044", "sen_id": 254160}, {"caption": "a woman is discussing how beautiful an applique trim is on a white gown", "video_id": "video11044", "sen_id": 254161}, {"caption": "a woman is describing the beautiful applique lace trim on a white dress", "video_id": "video11044", "sen_id": 254162}, {"caption": "a woman handling white material with embroidery and lacing going through the material", "video_id": "video11044", "sen_id": 254163}, {"caption": "a young woman is talking about the tail (train) appliques and details on her new white wedding dress", "video_id": "video11044", "sen_id": 254164}, {"caption": "a woman is talking about how pretty her dress is", "video_id": "video11044", "sen_id": 254165}, {"caption": "a womans hands are showing off a very detailed section on a white garment", "video_id": "video11044", "sen_id": 254166}, {"caption": "a woman shows us a white dress while she tells us about it", "video_id": "video11044", "sen_id": 254167}, {"caption": "a woman is showing appliques on a wedding dress and describing how beautiful they are", "video_id": "video11044", "sen_id": 254168}, {"caption": "a girl in white dress color cloth speaking discusing on topic of dresses of design clothes white displaying on screen", "video_id": "video11044", "sen_id": 254169}, {"caption": "a woman describes the details on a white dress", "video_id": "video11044", "sen_id": 254170}, {"caption": "a woman is talking about the beautiful detail on a dress", "video_id": "video11044", "sen_id": 254171}, {"caption": "a woman shows how she is going to mend a torn wedding gown", "video_id": "video11044", "sen_id": 254172}, {"caption": "a person shows a white fabric with self embroided designs in it", "video_id": "video11044", "sen_id": 254173}, {"caption": "a person is looking at a white colour dress with nice embroidering", "video_id": "video11044", "sen_id": 254174}, {"caption": "a womans hands showing the detail of a white dress", "video_id": "video11044", "sen_id": 254175}, {"caption": "a girl discusses the style and trim of her dress", "video_id": "video11044", "sen_id": 254176}, {"caption": "a woman shows white cloth of white floral trimmed dress in bedroom", "video_id": "video11044", "sen_id": 254177}, {"caption": "a lady with blue painted nails speaking about how she is excited about a white dress", "video_id": "video11044", "sen_id": 254178}, {"caption": "a person is showing a white sheet inside", "video_id": "video11044", "sen_id": 254179}, {"caption": "a rugby player working the ball down the field", "video_id": "video10708", "sen_id": 254180}, {"caption": "two teams are traveling down the field playing soccer agains each other", "video_id": "video10708", "sen_id": 254181}, {"caption": "a male talking while playing a soccer video game", "video_id": "video10708", "sen_id": 254182}, {"caption": "an animated game of football is being played", "video_id": "video10708", "sen_id": 254183}, {"caption": "a man is playing a soccer video game while narrating", "video_id": "video10708", "sen_id": 254184}, {"caption": "a game is played by many players in the play ground", "video_id": "video10708", "sen_id": 254185}, {"caption": "animated football video game is played by two teams", "video_id": "video10708", "sen_id": 254186}, {"caption": "player playing rugby game in a video and discussing", "video_id": "video10708", "sen_id": 254187}, {"caption": "a soccer player kicks the ball to another player", "video_id": "video10708", "sen_id": 254188}, {"caption": "two teams are playing together in ground", "video_id": "video10708", "sen_id": 254189}, {"caption": "its a animated video showing football game", "video_id": "video10708", "sen_id": 254190}, {"caption": "there are two players playing football and there is a person who is telling comentry of the match", "video_id": "video10708", "sen_id": 254191}, {"caption": "in video game two teams playing football very interestingly", "video_id": "video10708", "sen_id": 254192}, {"caption": "soccer players celebrate after scoring a goal", "video_id": "video10708", "sen_id": 254193}, {"caption": "players playing video game and trying to score a goal", "video_id": "video10708", "sen_id": 254194}, {"caption": "there is a rugby player working hard for getting points", "video_id": "video10708", "sen_id": 254195}, {"caption": "electronic-game figures surround a gliding figure on a lit brown ring on top of a lined green field", "video_id": "video10708", "sen_id": 254196}, {"caption": "a young man discusses and demonstrates the methods he uses for playing a video game", "video_id": "video10708", "sen_id": 254197}, {"caption": "soccer players run up and down the field", "video_id": "video10708", "sen_id": 254198}, {"caption": "someone is filming themself playing a soccer video game", "video_id": "video10708", "sen_id": 254199}, {"caption": "a gary blue sports car sets inside a large garage", "video_id": "video12817", "sen_id": 254200}, {"caption": "sa", "video_id": "video12817", "sen_id": 254201}, {"caption": "there was a demonstration of new audi car in the market", "video_id": "video12817", "sen_id": 254202}, {"caption": "an animated clip of a sports car is scene from different viewpoints", "video_id": "video12817", "sen_id": 254203}, {"caption": "a gray convertible sports car is shown parked inside a large indoor garage", "video_id": "video12817", "sen_id": 254204}, {"caption": "a car show room shows the car and its features inside and outside of the car", "video_id": "video12817", "sen_id": 254205}, {"caption": "a blue audi being viewed from many angles in a video game", "video_id": "video12817", "sen_id": 254206}, {"caption": "a robotic car is designed and moving on floor", "video_id": "video12817", "sen_id": 254207}, {"caption": "a blue convertible with recessed sides is displayed in a grey showroom from different exterior angles then from the driver s viewpoint at the steering wheel", "video_id": "video12817", "sen_id": 254208}, {"caption": "a graphic design program shows components of the audi r8 gt spyder", "video_id": "video12817", "sen_id": 254209}, {"caption": "man recording his blue audi car in his garage", "video_id": "video12817", "sen_id": 254210}, {"caption": "a virtual showing of the audi r8 gt spyder car s interior design", "video_id": "video12817", "sen_id": 254211}, {"caption": "a game mode of a blue convertible car audi r8 gt spyder is shown from outside as well as inside", "video_id": "video12817", "sen_id": 254212}, {"caption": "an audi r8 gt spyder s exterior and interior are shown in detail with close-ups", "video_id": "video12817", "sen_id": 254213}, {"caption": "a person is taking an interactive look at the interior of an audi r8 gt spyder", "video_id": "video12817", "sen_id": 254214}, {"caption": "this is a super luxury car and somebody is telling is merits", "video_id": "video12817", "sen_id": 254215}, {"caption": "a car blue color are rounded and looked", "video_id": "video12817", "sen_id": 254216}, {"caption": "audi r8 gt spyder service rims colour back play", "video_id": "video12817", "sen_id": 254217}, {"caption": "a blue sports car outside and insides are being viewed", "video_id": "video12817", "sen_id": 254218}, {"caption": "graphic introduction video about audi car model audi r8 gt spyder", "video_id": "video12817", "sen_id": 254219}, {"caption": "woman's voice is heard saying enjoy after this a six year old boy can be heard hitting on a lady while the screen shows a video game being played", "video_id": "video10905", "sen_id": 254220}, {"caption": "a picture of a girl is shown followed by a 65 year old picking up a girl while a shooter video game is being shown", "video_id": "video10905", "sen_id": 254221}, {"caption": "a girl and a boy are playing a video game live streaming and talking to each other", "video_id": "video10905", "sen_id": 254222}, {"caption": "a screen has the word shirieneq on it then showing a game of war with two girls talking about a date", "video_id": "video10905", "sen_id": 254223}, {"caption": "a kid is playing video games while trying to hit on girls", "video_id": "video10905", "sen_id": 254224}, {"caption": "two players speak to each other while a character moves around the playing field with his rifle", "video_id": "video10905", "sen_id": 254225}, {"caption": "some one holding a camera shooting a incident", "video_id": "video10905", "sen_id": 254226}, {"caption": "a person with a machine gun going from area to area", "video_id": "video10905", "sen_id": 254227}, {"caption": "the camera moves fast through the video game", "video_id": "video10905", "sen_id": 254228}, {"caption": "two ladies discuss about a game on a demo sequence as to how it works", "video_id": "video10905", "sen_id": 254229}, {"caption": "a video game is played and two peole are having an informal conversation", "video_id": "video10905", "sen_id": 254230}, {"caption": "some one shooting a video of the house and asking for phone number", "video_id": "video10905", "sen_id": 254231}, {"caption": "subtitles pop up on the screen as video of a first person shooter game is played", "video_id": "video10905", "sen_id": 254232}, {"caption": "the video game runs through the different adventures aiming to shoot", "video_id": "video10905", "sen_id": 254233}, {"caption": "a person is playing a first person shooter video game", "video_id": "video10905", "sen_id": 254234}, {"caption": "the game gunner runs through the scene looking to shoot someone while the young boy is asking the older woman her number or address while she laughs and states she is too old for him", "video_id": "video10905", "sen_id": 254235}, {"caption": "there is a man holding a gun to attack", "video_id": "video10905", "sen_id": 254236}, {"caption": "the camera is after the place where the sound is coming from", "video_id": "video10905", "sen_id": 254237}, {"caption": "a caption explains the video and then we see footage from a first person shooter video game and audio of a young boy talking to a woman and trying to get her phone number", "video_id": "video10905", "sen_id": 254238}, {"caption": "these kids are playing videos games together and sounding very happy", "video_id": "video10905", "sen_id": 254239}, {"caption": "a group of young men get ready to enter a very rough ocean", "video_id": "video11584", "sen_id": 254240}, {"caption": "two friends show off their equipment and surfing skills", "video_id": "video11584", "sen_id": 254241}, {"caption": "several men are at the beach preparing to water ski", "video_id": "video11584", "sen_id": 254242}, {"caption": "two men in wet suits are talking about a jetski", "video_id": "video11584", "sen_id": 254243}, {"caption": "a group of young men work together to launch a seadoo water craft into the ocean", "video_id": "video11584", "sen_id": 254244}, {"caption": "a person on the beach tying a belt around a jet ski and talking to his friend", "video_id": "video11584", "sen_id": 254245}, {"caption": "a group of young men are preparing to ride a sea doo in the ocean", "video_id": "video11584", "sen_id": 254246}, {"caption": "men in a motorcycle are right by the ocean on a beach and put on helmets", "video_id": "video11584", "sen_id": 254247}, {"caption": "two guys talking near a beach about skiing", "video_id": "video11584", "sen_id": 254248}, {"caption": "a group of men wheeling a jetski to the beach talking about their plans and giving each other cheers and high fives", "video_id": "video11584", "sen_id": 254249}, {"caption": "all persons are playing at beach", "video_id": "video11584", "sen_id": 254250}, {"caption": "a group of men at a beach getting ready to ride a jet ski", "video_id": "video11584", "sen_id": 254251}, {"caption": "a big wave comes in the seaa person in purple dress thinking to have a ride in the sea", "video_id": "video11584", "sen_id": 254252}, {"caption": "bunch of guys in the beach trying to surf the ocean", "video_id": "video11584", "sen_id": 254253}, {"caption": "a person is running around on a beach", "video_id": "video11584", "sen_id": 254254}, {"caption": "there is someone going to ride in the sea", "video_id": "video11584", "sen_id": 254255}, {"caption": "two men are at the shore standing beside a strapped water scooter one man throws a helmet at the other man s head", "video_id": "video11584", "sen_id": 254256}, {"caption": "several men prepare their jet ski for use by the ocean", "video_id": "video11584", "sen_id": 254257}, {"caption": "the men are preparing to ride a wave runner in the ocean", "video_id": "video11584", "sen_id": 254258}, {"caption": "some people are pushing a jet ski into the water", "video_id": "video11584", "sen_id": 254259}, {"caption": "young couples spend time together in various situations and locations", "video_id": "video12505", "sen_id": 254260}, {"caption": "there is a woman dating with a man", "video_id": "video12505", "sen_id": 254261}, {"caption": "group of girls hugs and holds their boy friends hand", "video_id": "video12505", "sen_id": 254262}, {"caption": "various couples hold each and hug while walking or sitting", "video_id": "video12505", "sen_id": 254263}, {"caption": "groups of different couples of men and woman embracing each other while music plays in the background", "video_id": "video12505", "sen_id": 254264}, {"caption": "there is a woman with cap dating with a man", "video_id": "video12505", "sen_id": 254265}, {"caption": "several couples are being affectionate with each other as the coldplay song fix you plays in the background", "video_id": "video12505", "sen_id": 254266}, {"caption": "male and female couples shown affection toward one another", "video_id": "video12505", "sen_id": 254267}, {"caption": "there are couples in different scenes showing emotion affection towards one another", "video_id": "video12505", "sen_id": 254268}, {"caption": "several couples share tender moments as somber music plays in the background", "video_id": "video12505", "sen_id": 254269}, {"caption": "various couples embrace and look at one another as a man sings", "video_id": "video12505", "sen_id": 254270}, {"caption": "romantic scenes with couples holding each other and kissing", "video_id": "video12505", "sen_id": 254271}, {"caption": "various couples smile lovingly hold hands walk slowly and kiss", "video_id": "video12505", "sen_id": 254272}, {"caption": "several couples are each leaning on each other with expressions of needing or being grateful for support", "video_id": "video12505", "sen_id": 254273}, {"caption": "a man is standing very close to a girl", "video_id": "video12505", "sen_id": 254274}, {"caption": "an affectionate couple holding hands leaning on eachother and walking down a hospital", "video_id": "video12505", "sen_id": 254275}, {"caption": "in the love scence of the various people like as lovergrand mother etc", "video_id": "video12505", "sen_id": 254276}, {"caption": "a man lays his head on a womans shoulder a woman lays her head on a mans shoulder", "video_id": "video12505", "sen_id": 254277}, {"caption": "there are very loving couples showing each other affection and love", "video_id": "video12505", "sen_id": 254278}, {"caption": "a woman and her lover face hardships together", "video_id": "video12505", "sen_id": 254279}, {"caption": "woman explains how to cook a meal she is preparing in a fry pan while image is shown of the fry pan and some white paste being put inside it", "video_id": "video11334", "sen_id": 254280}, {"caption": "a woman is showing how to fry something white in a skillet with oil", "video_id": "video11334", "sen_id": 254281}, {"caption": "a woman presents dumps onion base on a frying pan with heated oil", "video_id": "video11334", "sen_id": 254282}, {"caption": "someone is cooking food in a pan using a wooden spoon", "video_id": "video11334", "sen_id": 254283}, {"caption": "a woman with an indian accent dumps onion paste into a pan with oil", "video_id": "video11334", "sen_id": 254284}, {"caption": "the woman heats oil in the pan then places the food in it to cook", "video_id": "video11334", "sen_id": 254285}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video11334", "sen_id": 254286}, {"caption": "a woman in the kitchen adds oil in a pan then she adds the paste and stirs", "video_id": "video11334", "sen_id": 254287}, {"caption": "there is a woman that puts onion pace in an oiled pan", "video_id": "video11334", "sen_id": 254288}, {"caption": "a pan spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11334", "sen_id": 254289}, {"caption": "someone is mixing up some rice in a bowl", "video_id": "video11334", "sen_id": 254290}, {"caption": "this video is showing how to fry batter in a skillet", "video_id": "video11334", "sen_id": 254291}, {"caption": "in a a bowl something are poured", "video_id": "video11334", "sen_id": 254292}, {"caption": "cooked with lid then a white paste is added on pan with oil", "video_id": "video11334", "sen_id": 254293}, {"caption": "a woman is giving instruction on adding ingredients to a pan of hot oil for frying", "video_id": "video11334", "sen_id": 254294}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11334", "sen_id": 254295}, {"caption": "a woman drops ingredients into a pan and fries them", "video_id": "video11334", "sen_id": 254296}, {"caption": "oil boiling in the frying pan while some white mixture is put on it and fried", "video_id": "video11334", "sen_id": 254297}, {"caption": "a deliscious looking meal is cooked in a kitchen", "video_id": "video11334", "sen_id": 254298}, {"caption": "a light red color food stuff is kept in a glass covered pan an empty pan is kept on a stove with oil and a semi solid dough is poured in it and shake with a sptulla", "video_id": "video11334", "sen_id": 254299}, {"caption": "small boy in yellow onesie feeding the head of a horse", "video_id": "video10874", "sen_id": 254300}, {"caption": "some children give tea to an animated horse's head", "video_id": "video10874", "sen_id": 254301}, {"caption": "a cartoon horses head talking to a little boy and girls", "video_id": "video10874", "sen_id": 254302}, {"caption": "various cartoon characters get read with the head of a horse that drinks coffee", "video_id": "video10874", "sen_id": 254303}, {"caption": "a horse's head is getting a beauty treatment and some tea", "video_id": "video10874", "sen_id": 254304}, {"caption": "there is a yellow dressing man walking on the floor", "video_id": "video10874", "sen_id": 254305}, {"caption": "a cartoon horse is give coffee by an equally cartoon child", "video_id": "video10874", "sen_id": 254306}, {"caption": "a girl with double plait combing a hair for the donkey while a boy is brushing the donkey s teeth in the animated video", "video_id": "video10874", "sen_id": 254307}, {"caption": "a headless horse drinks and drips coffee onto the floor", "video_id": "video10874", "sen_id": 254308}, {"caption": "some children feed tea to a talking horse s head", "video_id": "video10874", "sen_id": 254309}, {"caption": "a cartoon depicting a horse drinking beddie bye tea while several other characters observe the tea spilling out of the horse onto the floor", "video_id": "video10874", "sen_id": 254310}, {"caption": "a blue horse is being cared for by three children", "video_id": "video10874", "sen_id": 254311}, {"caption": "a horse head is getting brushed by a little girl", "video_id": "video10874", "sen_id": 254312}, {"caption": "a cartoon in bule color drinks some liquid", "video_id": "video10874", "sen_id": 254313}, {"caption": "some cartoon characters are in a room", "video_id": "video10874", "sen_id": 254314}, {"caption": "kids in a bedroom offer tea to a talking horse", "video_id": "video10874", "sen_id": 254315}, {"caption": "funny cartoon characters pamper a blue cartoon horse s head the man feeds horse s head tea", "video_id": "video10874", "sen_id": 254316}, {"caption": "three cartoons are grooming a talking horse head together", "video_id": "video10874", "sen_id": 254317}, {"caption": "a clip from a cartoon show where a horse s head drinks a beverage", "video_id": "video10874", "sen_id": 254318}, {"caption": "some cartoon characters are moving around an area", "video_id": "video10874", "sen_id": 254319}, {"caption": "a man steers a boat in new york during the september 11th terrorist attacks", "video_id": "video10756", "sen_id": 254320}, {"caption": "a ferry captain speaks about the events of september 11 2001", "video_id": "video10756", "sen_id": 254321}, {"caption": "a captain of a ship is describing transportation shutdowns after a disaster (possibly 911)", "video_id": "video10756", "sen_id": 254322}, {"caption": "talking to the captain of boats and showing the docks", "video_id": "video10756", "sen_id": 254323}, {"caption": "a captain of a boat is talking about an important event", "video_id": "video10756", "sen_id": 254324}, {"caption": "a boat captain speaks about how ocean travel was restricted during a very urgent time period", "video_id": "video10756", "sen_id": 254325}, {"caption": "its a boat on a sea driving by a person", "video_id": "video10756", "sen_id": 254326}, {"caption": "a boat on the river captain white color dressed explained", "video_id": "video10756", "sen_id": 254327}, {"caption": "an captain driving the ship on the sea", "video_id": "video10756", "sen_id": 254328}, {"caption": "big white ship is driven by a capitan in the ocean", "video_id": "video10756", "sen_id": 254329}, {"caption": "a man in a navy outfit is talking about a terror attack", "video_id": "video10756", "sen_id": 254330}, {"caption": "there is a caption talking about his ride", "video_id": "video10756", "sen_id": 254331}, {"caption": "a man in a boat uses the boat on a large body of water", "video_id": "video10756", "sen_id": 254332}, {"caption": "kirk slater captain ny talks about something in ship", "video_id": "video10756", "sen_id": 254333}, {"caption": "a ship on the sea the captain is there and there is a sky view", "video_id": "video10756", "sen_id": 254334}, {"caption": "a captain is riding a ship in the river", "video_id": "video10756", "sen_id": 254335}, {"caption": "a middle aged male that is wearing a white shirt is discussing the results of a disaster that had taken place in manhattan", "video_id": "video10756", "sen_id": 254336}, {"caption": "the captain of the boat talks about the day of 911", "video_id": "video10756", "sen_id": 254337}, {"caption": "a captain is riding a ship and he says about the blast that occured", "video_id": "video10756", "sen_id": 254338}, {"caption": "the top of a town is being filmed from high above", "video_id": "video10756", "sen_id": 254339}, {"caption": "a woman in short black pants stands next to a horse in a stable", "video_id": "video11808", "sen_id": 254340}, {"caption": "some people are there and one lady feeding the horse", "video_id": "video11808", "sen_id": 254341}, {"caption": "people are attempting to feed something to a horse in a barn", "video_id": "video11808", "sen_id": 254342}, {"caption": "lady dressed in riding clothes offers her horse something to eat", "video_id": "video11808", "sen_id": 254343}, {"caption": "two girls and a horse are standing in a indoor space", "video_id": "video11808", "sen_id": 254344}, {"caption": "couple of sexy brunette getting their photo taken with the horse", "video_id": "video11808", "sen_id": 254345}, {"caption": "there is someone playing with their horse and laughing", "video_id": "video11808", "sen_id": 254346}, {"caption": "the woman wearing the white shirt stands next to the horse", "video_id": "video11808", "sen_id": 254347}, {"caption": "a girl laughing loudly after watching a girl gives the feed to the horse", "video_id": "video11808", "sen_id": 254348}, {"caption": "a person standing next to a horse feeding it out of a bowl", "video_id": "video11808", "sen_id": 254349}, {"caption": "the woman in the white shirt feeds the brown horse off the plate", "video_id": "video11808", "sen_id": 254350}, {"caption": "a small girl in pink is standing side of a horse", "video_id": "video11808", "sen_id": 254351}, {"caption": "the two women are talking while one horse is standing near them", "video_id": "video11808", "sen_id": 254352}, {"caption": "a group of young girls laugh as they try and feed their horse", "video_id": "video11808", "sen_id": 254353}, {"caption": "a female is holding food plate for horse to eat it", "video_id": "video11808", "sen_id": 254354}, {"caption": "a woman in a white shirt is standing near a horse", "video_id": "video11808", "sen_id": 254355}, {"caption": "a women is standing and feeding food for horse", "video_id": "video11808", "sen_id": 254356}, {"caption": "women are laughing in a barn where a dark-brown horse is standing by a rider in a white top and black pants", "video_id": "video11808", "sen_id": 254357}, {"caption": "two young women laugh at their horses reaction to some food", "video_id": "video11808", "sen_id": 254358}, {"caption": "two womens are feeding a large brown horse", "video_id": "video11808", "sen_id": 254359}, {"caption": "several disney movies are shown while music is playing in the background", "video_id": "video11483", "sen_id": 254360}, {"caption": "a song plays as older and newer disney cartoon movie scenes play", "video_id": "video11483", "sen_id": 254361}, {"caption": "its a animated video about the alladiun show", "video_id": "video11483", "sen_id": 254362}, {"caption": "classic animated disney couples sharing sweet moments including aladdin and jasmine the dalmations and snow white and her prince", "video_id": "video11483", "sen_id": 254363}, {"caption": "a man and woman are singing while different cartoon clips play of couples", "video_id": "video11483", "sen_id": 254364}, {"caption": "a montage of several disney romnace sceens", "video_id": "video11483", "sen_id": 254365}, {"caption": "disney film scene compilation with music in background", "video_id": "video11483", "sen_id": 254366}, {"caption": "there is a king flying with a woman", "video_id": "video11483", "sen_id": 254367}, {"caption": "animated disney couples are acting loving while a love song is playing", "video_id": "video11483", "sen_id": 254368}, {"caption": "disney characters are displayed on screen while a romantic duet is sung", "video_id": "video11483", "sen_id": 254369}, {"caption": "a prince dressed with white turban and white cloth girl in light blue are dreaming while together at night and girl ran away to the house in the morning", "video_id": "video11483", "sen_id": 254370}, {"caption": "a very cute boy and a girl are running along with a group of brids", "video_id": "video11483", "sen_id": 254371}, {"caption": "a cartoon scene plays from several various disney movies", "video_id": "video11483", "sen_id": 254372}, {"caption": "a musical montage from alladin 101 dalmations and snow white", "video_id": "video11483", "sen_id": 254373}, {"caption": "in a cartoon a boy and girl are romance each other", "video_id": "video11483", "sen_id": 254374}, {"caption": "a couple sings as an old couple and two dogs show affection", "video_id": "video11483", "sen_id": 254375}, {"caption": "snow white is interacting and running away in animated clip of snow white", "video_id": "video11483", "sen_id": 254376}, {"caption": "husband and wife touch noses and hug each other on a couch", "video_id": "video11483", "sen_id": 254377}, {"caption": "two people are singing and cartoon animation clips from different popular disney movies are being shown along with the song", "video_id": "video11483", "sen_id": 254378}, {"caption": "some cartoon characters are moving around an area", "video_id": "video11483", "sen_id": 254379}, {"caption": "a girl that looks like a boy drinks wine in a kitchen", "video_id": "video11970", "sen_id": 254380}, {"caption": "a woman is trying to cook while getting drunk on white wine", "video_id": "video11970", "sen_id": 254381}, {"caption": "a woman in a kitchen drinking wine and cooking", "video_id": "video11970", "sen_id": 254382}, {"caption": "a blonde woman with short hair is drinking wine and then adding green vegetables to a pot", "video_id": "video11970", "sen_id": 254383}, {"caption": "a blonde woman tries to cook while getting drunk on white wine", "video_id": "video11970", "sen_id": 254384}, {"caption": "a woman cooks while getting drunk on white wine", "video_id": "video11970", "sen_id": 254385}, {"caption": "a woman in a red button up shirt is holding a glass of wine talking to the camera and then is seen behind the counter adding things to a pot of food and stirring", "video_id": "video11970", "sen_id": 254386}, {"caption": "there is a women in red top preparing food in the kitchen", "video_id": "video11970", "sen_id": 254387}, {"caption": "one women drinking liquor and punching leaves and foods", "video_id": "video11970", "sen_id": 254388}, {"caption": "a lady in red shirt is drinking a drink and preparing some foods", "video_id": "video11970", "sen_id": 254389}, {"caption": "someone is brewing wine with many kinds of leaves with wooden spatula in a wooden pot", "video_id": "video11970", "sen_id": 254390}, {"caption": "a women in red dressing talking from a kitchen", "video_id": "video11970", "sen_id": 254391}, {"caption": "one women makes a recepie finnaly garnishes with greens", "video_id": "video11970", "sen_id": 254392}, {"caption": "a woman drinks a glass of wine and slurs her words as she talks and attempts to cook", "video_id": "video11970", "sen_id": 254393}, {"caption": "a woman in red shirt holding a glass of drink and drinking from it while cooking", "video_id": "video11970", "sen_id": 254394}, {"caption": "there is a woman in red dress drinking and cooking", "video_id": "video11970", "sen_id": 254395}, {"caption": "a woman with short blonde hair cooks very unprofesionally while drinking lots of wine", "video_id": "video11970", "sen_id": 254396}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video11970", "sen_id": 254397}, {"caption": "a cook prepares some food in a blue kitchen", "video_id": "video11970", "sen_id": 254398}, {"caption": "a person is making food in a kitchen room", "video_id": "video11970", "sen_id": 254399}, {"caption": "a man in a black shirt sprints on a track", "video_id": "video11649", "sen_id": 254400}, {"caption": "a man running on a running track wearing a black sweater", "video_id": "video11649", "sen_id": 254401}, {"caption": "a white man in black running shorts and a grey shirt sprints on a track", "video_id": "video11649", "sen_id": 254402}, {"caption": "a man wearing a black shirt running on a track field", "video_id": "video11649", "sen_id": 254403}, {"caption": "a man is running down a track and back during his workout", "video_id": "video11649", "sen_id": 254404}, {"caption": "an athlete jogging on a track at a park", "video_id": "video11649", "sen_id": 254405}, {"caption": "there is a black tshirt man running on the track", "video_id": "video11649", "sen_id": 254406}, {"caption": "young man running sprints on a track several times", "video_id": "video11649", "sen_id": 254407}, {"caption": "one man is running up and down a race track and talking about sprinting", "video_id": "video11649", "sen_id": 254408}, {"caption": "a young man in blue shirt and shorts is sprinting down a track doing his workout", "video_id": "video11649", "sen_id": 254409}, {"caption": "a man in black dress practising for running race competition", "video_id": "video11649", "sen_id": 254410}, {"caption": "a man in shorts and a black long sleeve shirt is sprinting down a track", "video_id": "video11649", "sen_id": 254411}, {"caption": "a man in a black jacket sprinting up and down a red track", "video_id": "video11649", "sen_id": 254412}, {"caption": "a guy with a black top running on the running track", "video_id": "video11649", "sen_id": 254413}, {"caption": "a man in a track jacket runs away from the camera and then back and takes his jacket off", "video_id": "video11649", "sen_id": 254414}, {"caption": "a man in black t-shirt and black shorts is running in a track", "video_id": "video11649", "sen_id": 254415}, {"caption": "a man in black dress is running to and fro in a track and removes his shirt and continues", "video_id": "video11649", "sen_id": 254416}, {"caption": "a man is talking and running up and down a track", "video_id": "video11649", "sen_id": 254417}, {"caption": "a boy in a black t shirt wearing cloth running inside ground speaking and practicing and removing t shirt displaying on screen", "video_id": "video11649", "sen_id": 254418}, {"caption": "some sprinters are running against each other", "video_id": "video11649", "sen_id": 254419}, {"caption": "a man spinning around a ninja turtle action figure", "video_id": "video11497", "sen_id": 254420}, {"caption": "a man films the back of a package that contains an action figure and is describing it for the viewer", "video_id": "video11497", "sen_id": 254421}, {"caption": "a man is looking at a ninja turtles action figure's package", "video_id": "video11497", "sen_id": 254422}, {"caption": "a merchant showcasing a new teenage mutant ninja turtles pack", "video_id": "video11497", "sen_id": 254423}, {"caption": "the man is describing 11 inch teen aged mutant ninja turtles as he displays the vibrant packing", "video_id": "video11497", "sen_id": 254424}, {"caption": "a man shows the packaging of a turtle action figure", "video_id": "video11497", "sen_id": 254425}, {"caption": "a person is showing a playing dolls", "video_id": "video11497", "sen_id": 254426}, {"caption": "a hand turns a toy package around showing four green quadrants each with a turtle in different warrior costume holding a sword", "video_id": "video11497", "sen_id": 254427}, {"caption": "many doll with multiple color dress background is in green color", "video_id": "video11497", "sen_id": 254428}, {"caption": "a man looking the back of a package for a teenage mutant ninja turtles action figure", "video_id": "video11497", "sen_id": 254429}, {"caption": "there are some beautiful toys on the table", "video_id": "video11497", "sen_id": 254430}, {"caption": "the back of a ninja turtles package is displayed as a man talks about it", "video_id": "video11497", "sen_id": 254431}, {"caption": "a man reviews a new in the box ninja turtle action figure", "video_id": "video11497", "sen_id": 254432}, {"caption": "it is a man talking about action figures from a show", "video_id": "video11497", "sen_id": 254433}, {"caption": "a man reviewing the package for a teenage mutant ninja turtles toy", "video_id": "video11497", "sen_id": 254434}, {"caption": "there is a man opening a box of toys", "video_id": "video11497", "sen_id": 254435}, {"caption": "a man shows us ninja turtle toys while discussing them", "video_id": "video11497", "sen_id": 254436}, {"caption": "a review of a ninja turtle action figure toy still in the box", "video_id": "video11497", "sen_id": 254437}, {"caption": "a report on the 11-inch teenage mutant ninja turtle action figures showing what looks like the back of the package and pictures of all four turtles", "video_id": "video11497", "sen_id": 254438}, {"caption": "the man turns the toy package around to look at the back", "video_id": "video11497", "sen_id": 254439}, {"caption": "a man drives cautiously on compacted slippery snow", "video_id": "video12228", "sen_id": 254440}, {"caption": "there is a car moving on the snow", "video_id": "video12228", "sen_id": 254441}, {"caption": "a dark car with bright headlights shows the snow on the road a young man holds onto the driver s side of the car while holding a long pole as the car moves forward", "video_id": "video12228", "sen_id": 254442}, {"caption": "a car is moving in the rural road at night", "video_id": "video12228", "sen_id": 254443}, {"caption": "a car with lights on is moving over a snow filled road", "video_id": "video12228", "sen_id": 254444}, {"caption": "there is a car moving with a headlight", "video_id": "video12228", "sen_id": 254445}, {"caption": "there is a car moving slowly on the road at night", "video_id": "video12228", "sen_id": 254446}, {"caption": "in dark night a black colored car lights are on a person standing beside of the car holding stick", "video_id": "video12228", "sen_id": 254447}, {"caption": "a man discusses trying to drive down icy road and he holds on outside of vehicle alongside", "video_id": "video12228", "sen_id": 254448}, {"caption": "a person is driving car and showing its features in icy road", "video_id": "video12228", "sen_id": 254449}, {"caption": "there is a car with bright head lights inbuilt", "video_id": "video12228", "sen_id": 254450}, {"caption": "a man is talking while showing the difficulties of driving in the snow", "video_id": "video12228", "sen_id": 254451}, {"caption": "one car in night time and pulls snow in road", "video_id": "video12228", "sen_id": 254452}, {"caption": "a guy drives through the forest with his door open", "video_id": "video12228", "sen_id": 254453}, {"caption": "a black van is driving around in the snow", "video_id": "video12228", "sen_id": 254454}, {"caption": "a man is narrating his experience driving through they snow with a van", "video_id": "video12228", "sen_id": 254455}, {"caption": "a dark car is being driven at night with the headlights shining on top of a snowy road while a person holds onto the car and is pulled forward while also holding a pole", "video_id": "video12228", "sen_id": 254456}, {"caption": "one man riding car in the night time very slowly", "video_id": "video12228", "sen_id": 254457}, {"caption": "a car moving on road and rope pulling pulling displaying on screen", "video_id": "video12228", "sen_id": 254458}, {"caption": "a car is driving in the snow at night", "video_id": "video12228", "sen_id": 254459}, {"caption": "two women wearing sunglasses are driving through the desert and listening the the car stereo while on a road trip to california", "video_id": "video12067", "sen_id": 254460}, {"caption": "a couple of girls driving and giggling while listening to music", "video_id": "video12067", "sen_id": 254461}, {"caption": "two women riding in a car and talking and laughing", "video_id": "video12067", "sen_id": 254462}, {"caption": "a woman wearing a hat drives a car down a road with a blonde haired passenger", "video_id": "video12067", "sen_id": 254463}, {"caption": "a woman wearing a hat drives away on the highway to california", "video_id": "video12067", "sen_id": 254464}, {"caption": "a woman in a hat and sunglasses driving a car with her friend in the passenger seat", "video_id": "video12067", "sen_id": 254465}, {"caption": "a girl in blue t-shirt and she is having a hat is driving the car on the road with her friend", "video_id": "video12067", "sen_id": 254466}, {"caption": "a young woman is driving her car and playing loud music", "video_id": "video12067", "sen_id": 254467}, {"caption": "a women is driving car very fast and while driving he is talking", "video_id": "video12067", "sen_id": 254468}, {"caption": "two ladies in the car are driving to california the lady driving the car is heard saying that this is first time she is driving and then she turns on the music and the other lady tells how to increase the volume and they both laugh playfully and they also enjoying the song", "video_id": "video12067", "sen_id": 254469}, {"caption": "a woman is driving a car and talking with co passenger", "video_id": "video12067", "sen_id": 254470}, {"caption": "a lady is driving first time and some of their friends are enjoying music and having fun in the car", "video_id": "video12067", "sen_id": 254471}, {"caption": "a women with cap riding a car with friends", "video_id": "video12067", "sen_id": 254472}, {"caption": "two women who wore sun glass travelling in the car and singing the song", "video_id": "video12067", "sen_id": 254473}, {"caption": "a young girl drives a car and talks to her friend while messing with the radio", "video_id": "video12067", "sen_id": 254474}, {"caption": "a women wearing cap is sitting in a cafe and then driving a car", "video_id": "video12067", "sen_id": 254475}, {"caption": "a lady filming herself on a holiday tour", "video_id": "video12067", "sen_id": 254476}, {"caption": "one women driving car fast and sing and dancing", "video_id": "video12067", "sen_id": 254477}, {"caption": "two girls sing and talk while they ride in their car on a highway", "video_id": "video12067", "sen_id": 254478}, {"caption": "the woman had blonde hair and wore a hat and sunglasses", "video_id": "video12067", "sen_id": 254479}, {"caption": "prince edward and kate walk baby charlotte out of the hospital", "video_id": "video11339", "sen_id": 254480}, {"caption": "prince william and kate walk baby charlotte out of the hospital", "video_id": "video11339", "sen_id": 254481}, {"caption": "the newborn royal being brought out of the hospital by it s mom and dad", "video_id": "video11339", "sen_id": 254482}, {"caption": "prince william and his wife show off ther newborn baby", "video_id": "video11339", "sen_id": 254483}, {"caption": "the birth of prince george as his proud parents are taking him home from the hospital", "video_id": "video11339", "sen_id": 254484}, {"caption": "the british royal family and new baby walk out of a hospital", "video_id": "video11339", "sen_id": 254485}, {"caption": "a young women holding a small baby coming out from the house", "video_id": "video11339", "sen_id": 254486}, {"caption": "a man and woman are exiting a building while the woman holds a very young baby", "video_id": "video11339", "sen_id": 254487}, {"caption": "a news reporter giving a news update of the prince s newest baby", "video_id": "video11339", "sen_id": 254488}, {"caption": "a man and a woman are walking out of a building holding a baby", "video_id": "video11339", "sen_id": 254489}, {"caption": "a couple coming out of a hospital with a baby", "video_id": "video11339", "sen_id": 254490}, {"caption": "a news report shows the british royal family showing their newly born baby to the public while cameras flash and the british reporter voice-over speaks of historical birth precedence at the hospital", "video_id": "video11339", "sen_id": 254491}, {"caption": "the royal couple are seen leaving someplace with their baby in the woman s hands", "video_id": "video11339", "sen_id": 254492}, {"caption": " duchess of cambridge walks out of st mary s hospital carrying her second child", "video_id": "video11339", "sen_id": 254493}, {"caption": "a man and a woman are walking with a baby", "video_id": "video11339", "sen_id": 254494}, {"caption": "the duke and duchess walk out of the hospital with their newborn child", "video_id": "video11339", "sen_id": 254495}, {"caption": "a smiling woman walks out of a building with her partner carrying a baby", "video_id": "video11339", "sen_id": 254496}, {"caption": "a man and woman coming out from the hospital with their child", "video_id": "video11339", "sen_id": 254497}, {"caption": "a women is walking out with her husband carrying a baby and expressing her happiness to every one", "video_id": "video11339", "sen_id": 254498}, {"caption": "a man and a woman with a baby are outside", "video_id": "video11339", "sen_id": 254499}, {"caption": "credits rolling on an orange background with music", "video_id": "video11353", "sen_id": 254500}, {"caption": "a red screen at the end of a video that is showing the ending credits", "video_id": "video11353", "sen_id": 254501}, {"caption": "a red screen has text scrolling across it giving credits for a video on japanese street fashion", "video_id": "video11353", "sen_id": 254502}, {"caption": "a red screen is playing music while scrolling japanese street fashion music by an cafe photos from photobucket put together by eye0patch thanks for watching :d", "video_id": "video11353", "sen_id": 254503}, {"caption": "a red screen with white credits rolls to music", "video_id": "video11353", "sen_id": 254504}, {"caption": "the title of japanese street fashion is shown on the screen", "video_id": "video11353", "sen_id": 254505}, {"caption": "an ending clip of a show called japanese street fashion showing names of music and photography", "video_id": "video11353", "sen_id": 254506}, {"caption": "its a japanese street fashion show", "video_id": "video11353", "sen_id": 254507}, {"caption": "white lettering appears appears over a red background briefly", "video_id": "video11353", "sen_id": 254508}, {"caption": "this is plain video i think this fashion show", "video_id": "video11353", "sen_id": 254509}, {"caption": "some white captions are running on a red color screen", "video_id": "video11353", "sen_id": 254510}, {"caption": "showing some names at the end of a programe", "video_id": "video11353", "sen_id": 254511}, {"caption": "the words go up the screen with a red background", "video_id": "video11353", "sen_id": 254512}, {"caption": "japanese street fashion music by an cafe photos", "video_id": "video11353", "sen_id": 254513}, {"caption": "a slide shows white letters scrolling up a red screen", "video_id": "video11353", "sen_id": 254514}, {"caption": "some white text is scrolling on a red screen", "video_id": "video11353", "sen_id": 254515}, {"caption": "there are some notes about japanese fashion", "video_id": "video11353", "sen_id": 254516}, {"caption": "a red screen with word scrolling upwards is playing to music", "video_id": "video11353", "sen_id": 254517}, {"caption": "a word are screening about a japanese fashion", "video_id": "video11353", "sen_id": 254518}, {"caption": "japanese street fashion is seen here and the red color also looks good", "video_id": "video11353", "sen_id": 254519}, {"caption": "a man named steve harris narrates and advertises a video he provides on a few websites", "video_id": "video10194", "sen_id": 254520}, {"caption": "someone in white dress is sleeping in the bed with trees around", "video_id": "video10194", "sen_id": 254521}, {"caption": "more letter are in the screen", "video_id": "video10194", "sen_id": 254522}, {"caption": "the man explains about various videos he uploads on his site for downloads", "video_id": "video10194", "sen_id": 254523}, {"caption": "a man is talking about making bread in a breadmaker", "video_id": "video10194", "sen_id": 254524}, {"caption": "it is a presentation video contains some pictures and slides and a man gives voice to the background", "video_id": "video10194", "sen_id": 254525}, {"caption": "information on how to find the video being spoken of is written in yellow on a purple background", "video_id": "video10194", "sen_id": 254526}, {"caption": "a man is talking about the duration he can complete on a bread maker", "video_id": "video10194", "sen_id": 254527}, {"caption": "yellow numbers then letters appear with a purple background", "video_id": "video10194", "sen_id": 254528}, {"caption": "a man is talking about the video he has just finished", "video_id": "video10194", "sen_id": 254529}, {"caption": "a male voice is advertising for his website", "video_id": "video10194", "sen_id": 254530}, {"caption": "some one sleeping outside under the tree alone", "video_id": "video10194", "sen_id": 254531}, {"caption": "the numbers are countdown like a promoation video of new book publication", "video_id": "video10194", "sen_id": 254532}, {"caption": "the numbers ninety-five and fifty-five appear on a purple background", "video_id": "video10194", "sen_id": 254533}, {"caption": "some yellow text is on a blue screen", "video_id": "video10194", "sen_id": 254534}, {"caption": "a male speaker discusses his knowledge of bread makers", "video_id": "video10194", "sen_id": 254535}, {"caption": "just a list of numbers that have to do with minutes and a bread maker", "video_id": "video10194", "sen_id": 254536}, {"caption": "a man is talking about the video and where you can get it", "video_id": "video10194", "sen_id": 254537}, {"caption": "two ladies are sleeping in a location seems to be a garden 95 and 55 and shown then three webaddress are shown fro downling a vedio for pcmac etc", "video_id": "video10194", "sen_id": 254538}, {"caption": "some yellow text is on a purple and white screen", "video_id": "video10194", "sen_id": 254539}, {"caption": "a male in glasses waving his hands and shaking his head", "video_id": "video10997", "sen_id": 254540}, {"caption": "a white man in a plaid shirt and nerd glasses in speaking", "video_id": "video10997", "sen_id": 254541}, {"caption": "a man with glasses is talking about how 80 years olds have watched their population on eart triple", "video_id": "video10997", "sen_id": 254542}, {"caption": "there is a man with specs talking something", "video_id": "video10997", "sen_id": 254543}, {"caption": "young man wearing glasses giving a lecture on population control", "video_id": "video10997", "sen_id": 254544}, {"caption": "a man in glasses talking about population growth while wearing a plaid shirt", "video_id": "video10997", "sen_id": 254545}, {"caption": "a person is talking about population growth and how long it happens and why", "video_id": "video10997", "sen_id": 254546}, {"caption": "a man with glasses and a blue plaid shirt is disappointed by how long something can go on", "video_id": "video10997", "sen_id": 254547}, {"caption": "a young man speaking about old age and population growth", "video_id": "video10997", "sen_id": 254548}, {"caption": "man in navy shirt talking about his study based on facts", "video_id": "video10997", "sen_id": 254549}, {"caption": "a skinny man with strawberry blonde hair dressed in a plaid button up shirt complaining about the population", "video_id": "video10997", "sen_id": 254550}, {"caption": "a man in lines t-shirt and spectacles is saying something", "video_id": "video10997", "sen_id": 254551}, {"caption": "a man is talking with specs", "video_id": "video10997", "sen_id": 254552}, {"caption": "a man in blue stripped shirt explain about the population groth and its effect", "video_id": "video10997", "sen_id": 254553}, {"caption": "the man with check shirt standing and saying something", "video_id": "video10997", "sen_id": 254554}, {"caption": "a man in glasses discusses population increase over time", "video_id": "video10997", "sen_id": 254555}, {"caption": "a check shirt man talking from a studio", "video_id": "video10997", "sen_id": 254556}, {"caption": "a boy with specs explains about a graph on how the business moves", "video_id": "video10997", "sen_id": 254557}, {"caption": "person in cheeked shirt with the specs and brown hair talks", "video_id": "video10997", "sen_id": 254558}, {"caption": "a person is talking about the population of a country and why this is happening and how long it will continues is the topic", "video_id": "video10997", "sen_id": 254559}, {"caption": "a lady waliking in a fashion show in purple underware and a blue hat", "video_id": "video11754", "sen_id": 254560}, {"caption": "a model in a hap comes towards us walking down a runway in a purple bra and underwear", "video_id": "video11754", "sen_id": 254561}, {"caption": "segment of a fashion show with a lady in purple lingerie in the focus", "video_id": "video11754", "sen_id": 254562}, {"caption": "some models walking down the runway showing off lingerie", "video_id": "video11754", "sen_id": 254563}, {"caption": "a lady is modeling lingerie down a runway", "video_id": "video11754", "sen_id": 254564}, {"caption": "a tall thin woman in purple underwear and a fedora hat walking down a runway", "video_id": "video11754", "sen_id": 254565}, {"caption": "there is a woman walking on the ramp with hot appearance", "video_id": "video11754", "sen_id": 254566}, {"caption": "lingerie fashion show a girl walks with the lingerie", "video_id": "video11754", "sen_id": 254567}, {"caption": "a female model is walking on ramp in bikni and wearing a heat", "video_id": "video11754", "sen_id": 254568}, {"caption": "a woman in two piece with cap is cat walking in fashion show stage", "video_id": "video11754", "sen_id": 254569}, {"caption": "a woman in lingerie is walking down a runway", "video_id": "video11754", "sen_id": 254570}, {"caption": "a female model wearing a bra and a hat is walking down the runway", "video_id": "video11754", "sen_id": 254571}, {"caption": "a model walking down a runway in lingerie and a top hat she s surrounded by a crowd watching her", "video_id": "video11754", "sen_id": 254572}, {"caption": "a model is walking ramp in lingerie at a fashion show and lots of spectators looking at her", "video_id": "video11754", "sen_id": 254573}, {"caption": "a woman in black lingerie and a hat is walking a cat walk at a modeling show as the audience around the stage photographs her", "video_id": "video11754", "sen_id": 254574}, {"caption": "some models are walking on a cat walk", "video_id": "video11754", "sen_id": 254575}, {"caption": "a woman dressed in lingerie and a hat walks down a runway to pose at the end", "video_id": "video11754", "sen_id": 254576}, {"caption": "a lady ramp walked on a stage in bikini dress in front of viewers", "video_id": "video11754", "sen_id": 254577}, {"caption": "a lady in undergarment and hat is walking in a fashion show", "video_id": "video11754", "sen_id": 254578}, {"caption": "a woman in black lingerie and a hat is walking a catwalk at a fashion show being photographed by the audience", "video_id": "video11754", "sen_id": 254579}, {"caption": "a man is installing a device by aligning the dimples", "video_id": "video12665", "sen_id": 254580}, {"caption": "a narrator is showing how to install a 110th insert", "video_id": "video12665", "sen_id": 254581}, {"caption": "a man demonstrates the installation and connection of a technological device", "video_id": "video12665", "sen_id": 254582}, {"caption": "a man shows different inserts that can attach to the negative adapter for viewing negatives of film strips", "video_id": "video12665", "sen_id": 254583}, {"caption": "a man demonstrates the use of a technical device", "video_id": "video12665", "sen_id": 254584}, {"caption": "a man is demonstrating how to assemble something", "video_id": "video12665", "sen_id": 254585}, {"caption": "a person is explaining about different plastic parts", "video_id": "video12665", "sen_id": 254586}, {"caption": "man instructing how to install the 110 insert", "video_id": "video12665", "sen_id": 254587}, {"caption": "a person with his hands opens and an articles fixes another item to it", "video_id": "video12665", "sen_id": 254588}, {"caption": "man is presenting his black tools that he bought", "video_id": "video12665", "sen_id": 254589}, {"caption": "man discussing how to set up an adapter for a black item that gets inserted into a yellow box", "video_id": "video12665", "sen_id": 254590}, {"caption": "a man demonstrating how to install a one ten insert", "video_id": "video12665", "sen_id": 254591}, {"caption": "a man is fixing some plastic materials", "video_id": "video12665", "sen_id": 254592}, {"caption": "on yellow box the person connects the black material using hand", "video_id": "video12665", "sen_id": 254593}, {"caption": "a person is talking about the adaptar and the liner which the adaptar is going to set", "video_id": "video12665", "sen_id": 254594}, {"caption": "a narrator illustrates how to put an adapter together", "video_id": "video12665", "sen_id": 254595}, {"caption": "a plastic pieces is assembled and the procedure is shown", "video_id": "video12665", "sen_id": 254596}, {"caption": "a man opens a black adapter and installs an insert", "video_id": "video12665", "sen_id": 254597}, {"caption": "a person handling parts and showing how to instal an insert", "video_id": "video12665", "sen_id": 254598}, {"caption": "a person is assembling a small thing", "video_id": "video12665", "sen_id": 254599}, {"caption": "a man talking the zippo lighter and lighting it", "video_id": "video10141", "sen_id": 254600}, {"caption": "a man describes the construction techniques used to put together a lighter", "video_id": "video10141", "sen_id": 254601}, {"caption": "this is a commercial displaying zippo lighters and the components on the lighter", "video_id": "video10141", "sen_id": 254602}, {"caption": "a man talks about the various parts of a zippo lighter", "video_id": "video10141", "sen_id": 254603}, {"caption": "a demonstration of the features of zippo lighters", "video_id": "video10141", "sen_id": 254604}, {"caption": "a cigarette graphic that explains how to tell an authentic type of lighter", "video_id": "video10141", "sen_id": 254605}, {"caption": "some one showing a instrument called zippo in front of the camera", "video_id": "video10141", "sen_id": 254606}, {"caption": "a person describes about lighter which is black in color", "video_id": "video10141", "sen_id": 254607}, {"caption": "lighter zippo hole pattern flint wheel wick fuel chamber", "video_id": "video10141", "sen_id": 254608}, {"caption": "the description about a lighter the performance also shows here", "video_id": "video10141", "sen_id": 254609}, {"caption": "there is a lighter with multiple functions inbuilt", "video_id": "video10141", "sen_id": 254610}, {"caption": "a person is showing how the lighter works and its mechanism", "video_id": "video10141", "sen_id": 254611}, {"caption": "a man describing a zippo lighter and how to identify genuine zippo lighters", "video_id": "video10141", "sen_id": 254612}, {"caption": "a man demonstrates and describes the features of a zippo lighter", "video_id": "video10141", "sen_id": 254613}, {"caption": "a person is showing the mechanism of the lighter", "video_id": "video10141", "sen_id": 254614}, {"caption": "some various objects are being shown on a table", "video_id": "video10141", "sen_id": 254615}, {"caption": "a man is explaing about a zippo lighter and detail explanation about its parts", "video_id": "video10141", "sen_id": 254616}, {"caption": "closeups of zippo lighters being used followed by a still showing all of the different parts of a zippo", "video_id": "video10141", "sen_id": 254617}, {"caption": "two rectangle bars joined its in silver and gold color its has many unique features such as flint wheel", "video_id": "video10141", "sen_id": 254618}, {"caption": "some lighters are kept on table and their features are shared", "video_id": "video10141", "sen_id": 254619}, {"caption": "a person prepares a awesome meal of food to enjoy", "video_id": "video11898", "sen_id": 254620}, {"caption": "someone making a soup in a large pan with a wooden spoon", "video_id": "video11898", "sen_id": 254621}, {"caption": "a chef works on a recipe by quickly stirring ingredients in a silver pan", "video_id": "video11898", "sen_id": 254622}, {"caption": "a man is cooking a roux stirring the mixture in a stove on a pot", "video_id": "video11898", "sen_id": 254623}, {"caption": "a man is talking about something he is stirring", "video_id": "video11898", "sen_id": 254624}, {"caption": "there is a man making a dish in a vessel", "video_id": "video11898", "sen_id": 254625}, {"caption": "a man whisking a yellow sauce in a pot and then stirring with a wooden stirrer", "video_id": "video11898", "sen_id": 254626}, {"caption": "someone is stirring a pot on a stove and talking about it", "video_id": "video11898", "sen_id": 254627}, {"caption": "a cook stir liquids in a large pot while he explains the steps in making a roux", "video_id": "video11898", "sen_id": 254628}, {"caption": "a man stirring a liquid in a pot on the stove", "video_id": "video11898", "sen_id": 254629}, {"caption": "there is a man making a yellow color dish", "video_id": "video11898", "sen_id": 254630}, {"caption": "a man stirs a liquid in a pot and describes why he doesn t add vegetables early", "video_id": "video11898", "sen_id": 254631}, {"caption": "a man is cooking in pot without vegetables so it doesn t interfere with making the rue", "video_id": "video11898", "sen_id": 254632}, {"caption": "there is no video clip", "video_id": "video11898", "sen_id": 254633}, {"caption": "a person cook in kitchen and explain how to prepare", "video_id": "video11898", "sen_id": 254634}, {"caption": "there is a man making yellow color dish in the kitchen", "video_id": "video11898", "sen_id": 254635}, {"caption": "a man stirs a roux with a whisk and a wooden spoon", "video_id": "video11898", "sen_id": 254636}, {"caption": "a man stirring something in the bowl to prepare a dish", "video_id": "video11898", "sen_id": 254637}, {"caption": "it is cooking something in a put using a wooden spoon", "video_id": "video11898", "sen_id": 254638}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11898", "sen_id": 254639}, {"caption": "a man in a blue shirt is heating noodles with a blow dryer", "video_id": "video12344", "sen_id": 254640}, {"caption": "a person is cooking a noodels on a bowel", "video_id": "video12344", "sen_id": 254641}, {"caption": "a man in a blue shirt is using a power tool on some stringy material", "video_id": "video12344", "sen_id": 254642}, {"caption": "a man blow dries an unspecified item to make it more flexible", "video_id": "video12344", "sen_id": 254643}, {"caption": "a man in a blue shirt blow drying a white mass of something stringy", "video_id": "video12344", "sen_id": 254644}, {"caption": "a man discusses how flexible some kind of place setting is", "video_id": "video12344", "sen_id": 254645}, {"caption": "there is a using a machine inside the room", "video_id": "video12344", "sen_id": 254646}, {"caption": "the man blow dries the white craft project", "video_id": "video12344", "sen_id": 254647}, {"caption": "a man in a blue shirt talks about heating up material", "video_id": "video12344", "sen_id": 254648}, {"caption": "a man is heating up something to become more flexiable", "video_id": "video12344", "sen_id": 254649}, {"caption": "a man demonstrates how to make a craft", "video_id": "video12344", "sen_id": 254650}, {"caption": "a man taking a blow dryer to some white plastic to melt it and make it more flexible", "video_id": "video12344", "sen_id": 254651}, {"caption": "a man demonstrating how to make a material more flexible by heating it up with a dryer", "video_id": "video12344", "sen_id": 254652}, {"caption": "a man holding some old spaghetti that he is heating with a heat gun", "video_id": "video12344", "sen_id": 254653}, {"caption": "a man talking about an item being more flexible and bendable by using heat from a hair dryer", "video_id": "video12344", "sen_id": 254654}, {"caption": "the man is working in betwen shelfs with books", "video_id": "video12344", "sen_id": 254655}, {"caption": "a man wearing blue dress doing something in home", "video_id": "video12344", "sen_id": 254656}, {"caption": "a man taking some food material in his hand and draying its with a drayer", "video_id": "video12344", "sen_id": 254657}, {"caption": "in a study a man in blue heats a nest of plastic to make it flexible", "video_id": "video12344", "sen_id": 254658}, {"caption": "a man with a blue shirt is holding some things", "video_id": "video12344", "sen_id": 254659}, {"caption": "a mock up of a glacial iceberg and some real life brown icebergs", "video_id": "video10122", "sen_id": 254660}, {"caption": "glassier around water and the water body rich with the melting of it", "video_id": "video10122", "sen_id": 254661}, {"caption": "this video has asian music in the background while showing an iceberg and a large body of water", "video_id": "video10122", "sen_id": 254662}, {"caption": "images of icebergs and arctic water scenes are shown while music plays", "video_id": "video10122", "sen_id": 254663}, {"caption": "a modal of a tall white ice burg surrounded by blue water then a rock in blue waters", "video_id": "video10122", "sen_id": 254664}, {"caption": "a short depition of an artic setting with soothing music playing in the background", "video_id": "video10122", "sen_id": 254665}, {"caption": "glaciers begun to melt down at a fast speed and thus causing global warming", "video_id": "video10122", "sen_id": 254666}, {"caption": "soft music plays while the camera pans around a semi-circular glacial and then over icy waters toward a rocky", "video_id": "video10122", "sen_id": 254667}, {"caption": "an iceberg floats along in a calm stretch of ocean", "video_id": "video10122", "sen_id": 254668}, {"caption": "nature displays its ability to play artist when wind sculptures ice and snow under arctic conditions", "video_id": "video10122", "sen_id": 254669}, {"caption": "snow is on the water", "video_id": "video10122", "sen_id": 254670}, {"caption": "glaciers are shown as a 3d image real glaciers are displayed", "video_id": "video10122", "sen_id": 254671}, {"caption": "its ice cube around it water so nice and fantastic to see full blue water", "video_id": "video10122", "sen_id": 254672}, {"caption": "nature presents its own ice sculptures when wind cuts snow into terraced layers", "video_id": "video10122", "sen_id": 254673}, {"caption": "ware with snow and rocks in a continental place", "video_id": "video10122", "sen_id": 254674}, {"caption": "the white ice berg is floating in front of a black background the glimmer glass water is reflecting the rocky and snowy landscape", "video_id": "video10122", "sen_id": 254675}, {"caption": "views of glacial structures cold waters and rock formations are shown to the tune of japanese music", "video_id": "video10122", "sen_id": 254676}, {"caption": "wonderful sight seeing its like ice cubes in center of sea", "video_id": "video10122", "sen_id": 254677}, {"caption": "an ocean frozen and several mountains in the distance", "video_id": "video10122", "sen_id": 254678}, {"caption": "the camera is flying over some ice and water", "video_id": "video10122", "sen_id": 254679}, {"caption": "there are several photos of baby animals and their parents and at the end is a red panda", "video_id": "video10596", "sen_id": 254680}, {"caption": "it shows a series of still photos of mother animals with their babies", "video_id": "video10596", "sen_id": 254681}, {"caption": "all animals are shown on this like pics", "video_id": "video10596", "sen_id": 254682}, {"caption": "a dog with puppies and duck with its small ducks and few more animals with its kids", "video_id": "video10596", "sen_id": 254683}, {"caption": "animal mothers are interact with their young in very cute ways", "video_id": "video10596", "sen_id": 254684}, {"caption": "a tiger with its cuba dog with puppyrabbit with its children are all seen here", "video_id": "video10596", "sen_id": 254685}, {"caption": "there are some animals with their kids", "video_id": "video10596", "sen_id": 254686}, {"caption": "photos of animals lieing down", "video_id": "video10596", "sen_id": 254687}, {"caption": "pictures of momma animals taking care of their babies", "video_id": "video10596", "sen_id": 254688}, {"caption": "mother animals hang out with their young in various locations", "video_id": "video10596", "sen_id": 254689}, {"caption": "mother animal and birds with their babies enjoying a fearless loveful world from dog and rabit to tiger etc", "video_id": "video10596", "sen_id": 254690}, {"caption": "there is a dog with children playing on the ground", "video_id": "video10596", "sen_id": 254691}, {"caption": "the video shows pictures of wirld and domestic animals being displayed on the screen", "video_id": "video10596", "sen_id": 254692}, {"caption": "animals with their family looks nice to the", "video_id": "video10596", "sen_id": 254693}, {"caption": "a white polar bear and her cub a dog with her puppies and many different animals with their babies", "video_id": "video10596", "sen_id": 254694}, {"caption": "a person is showing butch of photos of animals with their babies", "video_id": "video10596", "sen_id": 254695}, {"caption": "mums and babies animals with fur presented in affectionate attitude", "video_id": "video10596", "sen_id": 254696}, {"caption": "mother nature is filled with species of animals whose mothers and fathers nurture their offspring with love and devotion", "video_id": "video10596", "sen_id": 254697}, {"caption": "expression of love and feeling of warmth of different animals", "video_id": "video10596", "sen_id": 254698}, {"caption": "the beauty of the animal with their kids the scene will explain the affection of the mother with their kids", "video_id": "video10596", "sen_id": 254699}, {"caption": "a pot of water that is being salted generously and brought to a boil", "video_id": "video10039", "sen_id": 254700}, {"caption": "preperation of maccaroni salad and how much salt to use to boil water", "video_id": "video10039", "sen_id": 254701}, {"caption": "a man talks about how to cook pasta by showing a big pot of water which is salted and let boil", "video_id": "video10039", "sen_id": 254702}, {"caption": "a man is boiling water and adding macroni", "video_id": "video10039", "sen_id": 254703}, {"caption": "a big pot of water is kept on high heat", "video_id": "video10039", "sen_id": 254704}, {"caption": "a man is adding salt and pasta to the boiling water in a large stainless steel pot", "video_id": "video10039", "sen_id": 254705}, {"caption": "in a kitchen someone is making pasta and macaroni salad", "video_id": "video10039", "sen_id": 254706}, {"caption": "person boiling some water in a sufuria to prepare some meal", "video_id": "video10039", "sen_id": 254707}, {"caption": "its water in vessel then is placed on stove after that it started to boil", "video_id": "video10039", "sen_id": 254708}, {"caption": "salt is poured into a pot of water in preparation for boiling some pasta", "video_id": "video10039", "sen_id": 254709}, {"caption": " a steel pot on a stove put salt and stirl it properly", "video_id": "video10039", "sen_id": 254710}, {"caption": "a man is shown pouring a generous amount of salt into a pot of water as he describes the proper way to salt your water for pasta", "video_id": "video10039", "sen_id": 254711}, {"caption": "a person is heating the water in the pan and adding the salt and some powder", "video_id": "video10039", "sen_id": 254712}, {"caption": "a man is showing how to cook pasta", "video_id": "video10039", "sen_id": 254713}, {"caption": "some water is boiling in a silver pan", "video_id": "video10039", "sen_id": 254714}, {"caption": "water is kept in a vessel to boil and ingredients are added", "video_id": "video10039", "sen_id": 254715}, {"caption": "water is boiling in the bowl some powder is put into it and now it boils more", "video_id": "video10039", "sen_id": 254716}, {"caption": "in a hot water pot some pouring some salt and food material for cooking", "video_id": "video10039", "sen_id": 254717}, {"caption": "a bowl water mixing pouder dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video10039", "sen_id": 254718}, {"caption": "a male chef adds water and salt to a pot to cook pasta", "video_id": "video10039", "sen_id": 254719}, {"caption": "a chef describes when to turn grilling ribs", "video_id": "video10159", "sen_id": 254720}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video10159", "sen_id": 254721}, {"caption": "a chef is preparing a dish with the grill", "video_id": "video10159", "sen_id": 254722}, {"caption": "on grill machine many food is cooked at same time", "video_id": "video10159", "sen_id": 254723}, {"caption": "an open barbeque pit with lamb racks and steaks as a man flips the food to evenly cook them", "video_id": "video10159", "sen_id": 254724}, {"caption": "there is a man making a dish with pork meet", "video_id": "video10159", "sen_id": 254725}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video10159", "sen_id": 254726}, {"caption": "a man is toasting a food items in the toaster", "video_id": "video10159", "sen_id": 254727}, {"caption": "a meat bun is baked on the oven and grilled and garnished", "video_id": "video10159", "sen_id": 254728}, {"caption": "on a grill a man is demonstrating how to flip a rack of ribs properly without them falling apart", "video_id": "video10159", "sen_id": 254729}, {"caption": "there is a man preparing a meet dish", "video_id": "video10159", "sen_id": 254730}, {"caption": "the person grill the meat on the barbecue pit", "video_id": "video10159", "sen_id": 254731}, {"caption": "a man demonstrates his technique for use an outdoor grill to cook meat", "video_id": "video10159", "sen_id": 254732}, {"caption": "a man is turning different meats over on his grill", "video_id": "video10159", "sen_id": 254733}, {"caption": "a man grilling steak on one level of a grill and ribs on the other level", "video_id": "video10159", "sen_id": 254734}, {"caption": "a man person is grilling food on the grill", "video_id": "video10159", "sen_id": 254735}, {"caption": "few bun and chicken was kept in the toaster and the person flips it to other side", "video_id": "video10159", "sen_id": 254736}, {"caption": "guy turning a meat getting cooked on a pan", "video_id": "video10159", "sen_id": 254737}, {"caption": "someone bbq s meat in the grill on a sunny day", "video_id": "video10159", "sen_id": 254738}, {"caption": "a person is grilling meat on a bbq", "video_id": "video10159", "sen_id": 254739}, {"caption": "cars rushed through a parking lot trying to avoid getting destroyed by a collapsing building", "video_id": "video10231", "sen_id": 254740}, {"caption": "shooting a movie scene where cars are speeding through a parking garage which is collapsing behind them", "video_id": "video10231", "sen_id": 254741}, {"caption": "stunt cars and camera cars race inside a parking garage while filming a movie", "video_id": "video10231", "sen_id": 254742}, {"caption": "the cars are moving and the gun shooting is happened in that place", "video_id": "video10231", "sen_id": 254743}, {"caption": "a movie scene is being filmed depicting two cars racing out of a multi-level parking lot followed by an explosion", "video_id": "video10231", "sen_id": 254744}, {"caption": "cars are moving on a road and there is explosion behind", "video_id": "video10231", "sen_id": 254745}, {"caption": "cars are driving quickly as the parking garage collapses", "video_id": "video10231", "sen_id": 254746}, {"caption": "a stunt for a movie where there are charges going off behind cars driving in a parking deck", "video_id": "video10231", "sen_id": 254747}, {"caption": "there is a car moving under the bridge", "video_id": "video10231", "sen_id": 254748}, {"caption": "two cars are racing each other through destruction in an underground parking garage", "video_id": "video10231", "sen_id": 254749}, {"caption": "in a parking garage a movie company films a meticulously timed action scene with speeding cars barely escaping the collapse of the level above", "video_id": "video10231", "sen_id": 254750}, {"caption": "cars perform a stunt in which they drive away from explosions", "video_id": "video10231", "sen_id": 254751}, {"caption": "a stunt car is driving through a parking garage with explosives", "video_id": "video10231", "sen_id": 254752}, {"caption": "cars speed through a parking garage as it collapses behind them", "video_id": "video10231", "sen_id": 254753}, {"caption": "filming of vehicle stunts is performed underneath a parking structure", "video_id": "video10231", "sen_id": 254754}, {"caption": "cars diving through a multi story parking garage", "video_id": "video10231", "sen_id": 254755}, {"caption": "cars drive through parking garage that has smoky explosions happening in the ceiling", "video_id": "video10231", "sen_id": 254756}, {"caption": "some cars with smoke are on a road", "video_id": "video10231", "sen_id": 254757}, {"caption": "two cars are running very fast while roofing shatter down one by one behind car when car is running", "video_id": "video10231", "sen_id": 254758}, {"caption": "an suv and two other cars race through a garage escaping as the roof collapses", "video_id": "video10231", "sen_id": 254759}, {"caption": "two men sing in front of an orchestra", "video_id": "video11588", "sen_id": 254760}, {"caption": "singers showing their singing performance on the stage show", "video_id": "video11588", "sen_id": 254761}, {"caption": "there is a suit man singing with his friend", "video_id": "video11588", "sen_id": 254762}, {"caption": "a singer singing a song on the stage along with other singer in white color over coat", "video_id": "video11588", "sen_id": 254763}, {"caption": "a couple of african men sing in front of an orchestra", "video_id": "video11588", "sen_id": 254764}, {"caption": "two male singers are singing on stage while orchestra playing the music", "video_id": "video11588", "sen_id": 254765}, {"caption": "a fat man singing on the stage with a friend", "video_id": "video11588", "sen_id": 254766}, {"caption": "there are some boys sing on stage for a big concert", "video_id": "video11588", "sen_id": 254767}, {"caption": "the singing program and singers singing the song", "video_id": "video11588", "sen_id": 254768}, {"caption": "a event going on a stage with pointed spot lights and a group of performers as well as musical instruments", "video_id": "video11588", "sen_id": 254769}, {"caption": "a person in blackblue dress singing a pop song with mike in front of audience", "video_id": "video11588", "sen_id": 254770}, {"caption": "there is a big man singing on the floor", "video_id": "video11588", "sen_id": 254771}, {"caption": "a croner guides his orchestra as two singers sing to the music", "video_id": "video11588", "sen_id": 254772}, {"caption": "two men singing while a conductor conducts an orchestra behind them", "video_id": "video11588", "sen_id": 254773}, {"caption": "a music show is going in a stage", "video_id": "video11588", "sen_id": 254774}, {"caption": "there is a man singing on the stage", "video_id": "video11588", "sen_id": 254775}, {"caption": "a group of men are singing on stage with an orchestra", "video_id": "video11588", "sen_id": 254776}, {"caption": "two men perform at a concert with an orchestra", "video_id": "video11588", "sen_id": 254777}, {"caption": "two black men are singing accompanied by an synphony orchestra", "video_id": "video11588", "sen_id": 254778}, {"caption": "some people on a stage are entertainting people", "video_id": "video11588", "sen_id": 254779}, {"caption": "a race car driver with a yellow helmet driving a white car", "video_id": "video11224", "sen_id": 254780}, {"caption": "a white colour racing car is on the track with a driver on it", "video_id": "video11224", "sen_id": 254781}, {"caption": "a white racecar travels around a track at top speed", "video_id": "video11224", "sen_id": 254782}, {"caption": "a white race car is seen with a background song being played", "video_id": "video11224", "sen_id": 254783}, {"caption": "an av about mclaren ron dennis who is the owners of the lamborghini", "video_id": "video11224", "sen_id": 254784}, {"caption": "a white colour car on the screen displaying on screen", "video_id": "video11224", "sen_id": 254785}, {"caption": "a picture of a white formula one car with the driver in it and ready for take off", "video_id": "video11224", "sen_id": 254786}, {"caption": "a race car is displaying in the screen", "video_id": "video11224", "sen_id": 254787}, {"caption": "music plays as a white race car is pictured being driven on a track", "video_id": "video11224", "sen_id": 254788}, {"caption": "a person with a pretty white car along with a nice yellow helmet", "video_id": "video11224", "sen_id": 254789}, {"caption": "there is a car race going on a sunny day", "video_id": "video11224", "sen_id": 254790}, {"caption": "during the 93 season mclaren s ron dennis reached an agreement with bob lutz of chrysler", "video_id": "video11224", "sen_id": 254791}, {"caption": "a video shows a still picture of a race car while a rock song plays in the background", "video_id": "video11224", "sen_id": 254792}, {"caption": "a man is driving a sports car down a road", "video_id": "video11224", "sen_id": 254793}, {"caption": "a man in a car is driving around very fast", "video_id": "video11224", "sen_id": 254794}, {"caption": "a white racecar is shown in a photo as it speeds round the track", "video_id": "video11224", "sen_id": 254795}, {"caption": "this a a white race car with a driver wearing a white helmet", "video_id": "video11224", "sen_id": 254796}, {"caption": "several different images of a car are shown with different facts about it", "video_id": "video11224", "sen_id": 254797}, {"caption": "a band singing showing a man in a go cart on a computer screen", "video_id": "video11224", "sen_id": 254798}, {"caption": "a white race car is driving on a track", "video_id": "video11224", "sen_id": 254799}, {"caption": "a man wearing glasses talking about psychopathy and sociopathy", "video_id": "video11440", "sen_id": 254800}, {"caption": "a man in a brown suit talking about mental disorders", "video_id": "video11440", "sen_id": 254801}, {"caption": "a person with suit sitting in a chair and explaining psychopathy & sociopathy surrounding good photography's on the wall", "video_id": "video11440", "sen_id": 254802}, {"caption": "this movie discusses psychopathy and sociopathy", "video_id": "video11440", "sen_id": 254803}, {"caption": "a man in a suit says that mentally affected diseases are difficult to diagnose", "video_id": "video11440", "sen_id": 254804}, {"caption": "one man talks about psychopathy & soiopathy in the", "video_id": "video11440", "sen_id": 254805}, {"caption": "a doctor is explain regarding a sever disorder person about psychopathy & sociopathy", "video_id": "video11440", "sen_id": 254806}, {"caption": "a man is talking about psychopathy for people", "video_id": "video11440", "sen_id": 254807}, {"caption": "a man with spectacles and wearing abrown coat is saying soemthing", "video_id": "video11440", "sen_id": 254808}, {"caption": "a men in dark brown suit is sitting and talking", "video_id": "video11440", "sen_id": 254809}, {"caption": "a man in a brown suit coat lectures on mental disorders", "video_id": "video11440", "sen_id": 254810}, {"caption": "a lean gentle man with formal dress and spectacles is advising about psychopathy and sociopathy", "video_id": "video11440", "sen_id": 254811}, {"caption": "some white text is on a brown screen", "video_id": "video11440", "sen_id": 254812}, {"caption": "a person is explaining about psychopathy and sociopathy", "video_id": "video11440", "sen_id": 254813}, {"caption": "a man wearing spectacles is sitting and lecturing about psychopathy and sociopathy", "video_id": "video11440", "sen_id": 254814}, {"caption": "guy in glass with suit talking to the camera", "video_id": "video11440", "sen_id": 254815}, {"caption": "a suit man talking in front of some pictures", "video_id": "video11440", "sen_id": 254816}, {"caption": "men in brown suit explaining about psychopathy in a show", "video_id": "video11440", "sen_id": 254817}, {"caption": "guy in suit and glasses talking about psychopathy & sociopathy", "video_id": "video11440", "sen_id": 254818}, {"caption": "guy in glasses wearing coat ion tshirt is talking to the camera", "video_id": "video11440", "sen_id": 254819}, {"caption": "a man showing off and describes a black porsche made of legos", "video_id": "video10853", "sen_id": 254820}, {"caption": "a man is explaining about the toy car", "video_id": "video10853", "sen_id": 254821}, {"caption": "a man is describing a black lego car with a driver", "video_id": "video10853", "sen_id": 254822}, {"caption": "a black lego town porsche is being displayed and described in front of a green and blue background", "video_id": "video10853", "sen_id": 254823}, {"caption": "a person is playing with trucks and cars toys", "video_id": "video10853", "sen_id": 254824}, {"caption": "a man shows lego car with figurine inside that resembles real car", "video_id": "video10853", "sen_id": 254825}, {"caption": "a man is talking about the lego sport car", "video_id": "video10853", "sen_id": 254826}, {"caption": "a man describing a sporty porsche lego car and proving specifications", "video_id": "video10853", "sen_id": 254827}, {"caption": "a man is talking about a toy car and there is a toy man sitting inside that toy car", "video_id": "video10853", "sen_id": 254828}, {"caption": "a person is speaking and sporting black toy car placing in green and blue pad", "video_id": "video10853", "sen_id": 254829}, {"caption": "a man shows off his lego car calling it a lego porsche", "video_id": "video10853", "sen_id": 254830}, {"caption": "there is a car toy with driver inside", "video_id": "video10853", "sen_id": 254831}, {"caption": "man displaying lego town porshce that has been built", "video_id": "video10853", "sen_id": 254832}, {"caption": "a person is explaining about how to play with some kids toys", "video_id": "video10853", "sen_id": 254833}, {"caption": "someone is showing a model of car and explaining about its shape and size", "video_id": "video10853", "sen_id": 254834}, {"caption": "a person is playing with a lego car", "video_id": "video10853", "sen_id": 254835}, {"caption": "a man shows off a sporty toy car that is black and red", "video_id": "video10853", "sen_id": 254836}, {"caption": "a lego character in a porche on green lego flooring", "video_id": "video10853", "sen_id": 254837}, {"caption": "a man plays with a toy builder man and car", "video_id": "video10853", "sen_id": 254838}, {"caption": "a lego man sits in a black and red car on a green lego board", "video_id": "video10853", "sen_id": 254839}, {"caption": "a man getting ready for a sporting event on the track", "video_id": "video11442", "sen_id": 254840}, {"caption": "a number of caucasian boys are in a video montage of them looking tough before a goofy race", "video_id": "video11442", "sen_id": 254841}, {"caption": "a boy is on the playground warming up before a big competition", "video_id": "video11442", "sen_id": 254842}, {"caption": "a man is preparing for sports and working out", "video_id": "video11442", "sen_id": 254843}, {"caption": "a person in white shirt wear the hair bandafter the seconds the person start the gane", "video_id": "video11442", "sen_id": 254844}, {"caption": "athlete showing his skills in the stadium before the race", "video_id": "video11442", "sen_id": 254845}, {"caption": "a man in black t-shirt is watching something as other guy gets reday", "video_id": "video11442", "sen_id": 254846}, {"caption": "an athlete wraps a sweatband around his head and exercises on a track", "video_id": "video11442", "sen_id": 254847}, {"caption": "a group of young men put sweat bands on their heads and wrists in preparation for a race", "video_id": "video11442", "sen_id": 254848}, {"caption": "guy with head band and black tshirt getting ready for the race", "video_id": "video11442", "sen_id": 254849}, {"caption": "a young man is performing for the camera as he exercises", "video_id": "video11442", "sen_id": 254850}, {"caption": "a couple of young men warming up to run track", "video_id": "video11442", "sen_id": 254851}, {"caption": "two young men put sweat bands on their heads and their wrists", "video_id": "video11442", "sen_id": 254852}, {"caption": "different players are playing different games in the big ground", "video_id": "video11442", "sen_id": 254853}, {"caption": "a guy with a white shirt is standing around outside", "video_id": "video11442", "sen_id": 254854}, {"caption": "there are some boys dancing and enjoying on the track", "video_id": "video11442", "sen_id": 254855}, {"caption": "one lap of the track countdown starts boys ready", "video_id": "video11442", "sen_id": 254856}, {"caption": "young men put on headbands and wrist bands while they prepare to exercise", "video_id": "video11442", "sen_id": 254857}, {"caption": "a person is getting ready for one lap of the track and he is also doing warm-up for the session", "video_id": "video11442", "sen_id": 254858}, {"caption": "some people are riding objects on a track", "video_id": "video11442", "sen_id": 254859}, {"caption": "a white plate has two similary sized pieces of meat on it which are grabbed off of the plate and handled then set on a wooden counter", "video_id": "video11275", "sen_id": 254860}, {"caption": "a man with tattooed hands is cleaning pigeon breasts in preparation to cook them", "video_id": "video11275", "sen_id": 254861}, {"caption": "a man explains how to prepare pigeon breasts for a recipe", "video_id": "video11275", "sen_id": 254862}, {"caption": "a british cook demonstrates how and why to remove fat from pigeon breasts", "video_id": "video11275", "sen_id": 254863}, {"caption": "a man talks about some of the small meat pieces he is cooking", "video_id": "video11275", "sen_id": 254864}, {"caption": "a person with tattoos and jewelry on their hands is trimming pieces of meat on a cutting board", "video_id": "video11275", "sen_id": 254865}, {"caption": "a man prepares pigeon breast on a plate to cook", "video_id": "video11275", "sen_id": 254866}, {"caption": "a man is cooking what looks and described as pigeon breasts he rips the fat off the breast", "video_id": "video11275", "sen_id": 254867}, {"caption": "a man and meat in plate on table dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11275", "sen_id": 254868}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11275", "sen_id": 254869}, {"caption": "a man demonstratin preparation of pidgeon breasts", "video_id": "video11275", "sen_id": 254870}, {"caption": "a tatooed male is preparing food on a plate while providing commentary", "video_id": "video11275", "sen_id": 254871}, {"caption": "a man with star tattoos on his hands is preparing pigeon breasts on a wooden cutting board", "video_id": "video11275", "sen_id": 254872}, {"caption": "man showing the proper way to prepare a dish of chicken breasts", "video_id": "video11275", "sen_id": 254873}, {"caption": "a white man with tattoos on his hands is showing a recipe", "video_id": "video11275", "sen_id": 254874}, {"caption": "in a tv cookery program a non-veg food is being prepared the pieces of mutton is taken from a white plate", "video_id": "video11275", "sen_id": 254875}, {"caption": "a person is explaining about the cooking of the food item", "video_id": "video11275", "sen_id": 254876}, {"caption": "a man with star tattoos on both hands is explaining how to cook some breast meat", "video_id": "video11275", "sen_id": 254877}, {"caption": "a person is preparing a dish on a dining table", "video_id": "video11275", "sen_id": 254878}, {"caption": "a person is pointing at some stuff", "video_id": "video11275", "sen_id": 254879}, {"caption": "jimmy fallon waving his finger around while talking", "video_id": "video10189", "sen_id": 254880}, {"caption": "a puppy with a sign then a man in a suit standing in front of a blue curtain", "video_id": "video10189", "sen_id": 254881}, {"caption": "jimmy falon is talking to his audience about dogs", "video_id": "video10189", "sen_id": 254882}, {"caption": "jimmy fallon is introducing a segment called puppy predictors", "video_id": "video10189", "sen_id": 254883}, {"caption": "jimmy fallon introduces his puppy predictors segment for the kentucky derby", "video_id": "video10189", "sen_id": 254884}, {"caption": "jimmy fallon is giving the 2015 puppy predictions for the kentucky derby", "video_id": "video10189", "sen_id": 254885}, {"caption": "there is a suit man anchoring a show on the stage", "video_id": "video10189", "sen_id": 254886}, {"caption": "the blackblazer suit wearing men telling the puppy show in their back ground is blue colour", "video_id": "video10189", "sen_id": 254887}, {"caption": "jimmy fallon talks about the puppy kentucky derby race", "video_id": "video10189", "sen_id": 254888}, {"caption": "jimmy falon introduces a video clip where puppies will race as they imitate kentucky derby contenstants", "video_id": "video10189", "sen_id": 254889}, {"caption": "a person standing on the stage talking to an audience", "video_id": "video10189", "sen_id": 254890}, {"caption": "a man in blazer with blue screen background speaks about puppy", "video_id": "video10189", "sen_id": 254891}, {"caption": "a late night talk show host has a game for puppies to play", "video_id": "video10189", "sen_id": 254892}, {"caption": "jimmy fallon doing a puppy predictions segment for the kentucky derby", "video_id": "video10189", "sen_id": 254893}, {"caption": "there is a white man speaking on tv talking about puppys", "video_id": "video10189", "sen_id": 254894}, {"caption": "a man introduces a game to an audience he is greeted with applause", "video_id": "video10189", "sen_id": 254895}, {"caption": "a man is speaking in the stage of a show", "video_id": "video10189", "sen_id": 254896}, {"caption": "a man in a suit talks about puppies that predict the super bowl outcome", "video_id": "video10189", "sen_id": 254897}, {"caption": "a person is talking about puppy predictors 2015 kentucky derby edition and he is saying that he is having 16 puppies each representing one at the tap 16 horses competing", "video_id": "video10189", "sen_id": 254898}, {"caption": "a host is anchoring a tv show wearing jacket", "video_id": "video10189", "sen_id": 254899}, {"caption": "a man show how to put a pan of water into an oven", "video_id": "video12701", "sen_id": 254900}, {"caption": "a chef discusses a method for cooking a dish in a hot moist oven", "video_id": "video12701", "sen_id": 254901}, {"caption": "a man placing some water in a vessel in the oven", "video_id": "video12701", "sen_id": 254902}, {"caption": "a man places a pan full of water into a preheated oven", "video_id": "video12701", "sen_id": 254903}, {"caption": "guy placing a pan of water on bottom rack of a oven", "video_id": "video12701", "sen_id": 254904}, {"caption": "some bread is about to be cooked inside", "video_id": "video12701", "sen_id": 254905}, {"caption": "there is a man placing pan of water on bottom rack", "video_id": "video12701", "sen_id": 254906}, {"caption": "water on the container is boiled on the grill", "video_id": "video12701", "sen_id": 254907}, {"caption": "a man explianing how to bake something that looks like bread", "video_id": "video12701", "sen_id": 254908}, {"caption": "someone is putting water in a pan on micro oven to heat on 550 f", "video_id": "video12701", "sen_id": 254909}, {"caption": "some bread is cooking inside of a person s oven", "video_id": "video12701", "sen_id": 254910}, {"caption": "there is someone place pan of water on bottom rack", "video_id": "video12701", "sen_id": 254911}, {"caption": "a hand pushes a white pan filled with water onto the oven floor below two racks and above a red flame", "video_id": "video12701", "sen_id": 254912}, {"caption": "person is talking about his meal which is going to be done", "video_id": "video12701", "sen_id": 254913}, {"caption": "after preheating the oven to 550 degrees a man places a pan full of water on a rack in the oven", "video_id": "video12701", "sen_id": 254914}, {"caption": "a man preheats the oven to 550 and adds a pan of water to the bottom rack", "video_id": "video12701", "sen_id": 254915}, {"caption": "a man in a kitchen giving instructions for how to bake baguette breads", "video_id": "video12701", "sen_id": 254916}, {"caption": "a chef describes a method for baking bread in an oven", "video_id": "video12701", "sen_id": 254917}, {"caption": "person is talking about the preparing of some food", "video_id": "video12701", "sen_id": 254918}, {"caption": "a white tray is inside of a grill", "video_id": "video12701", "sen_id": 254919}, {"caption": "a man is trying to teach a parrot how to fly", "video_id": "video11841", "sen_id": 254920}, {"caption": "a man with a striped discusses how to tech your parrot how to fly", "video_id": "video11841", "sen_id": 254921}, {"caption": "a man in lines t-shirt is saying something with a bird sitting near by", "video_id": "video11841", "sen_id": 254922}, {"caption": "a man talking about how to teach your parrot to fly", "video_id": "video11841", "sen_id": 254923}, {"caption": "a homemade video presentation of a young man teaching the viewer how they can teach their parrot to fly", "video_id": "video11841", "sen_id": 254924}, {"caption": "a boy standing and speaking and parrot sitting beside on rod displaying on screen", "video_id": "video11841", "sen_id": 254925}, {"caption": "a person with a green color parrot on his hand", "video_id": "video11841", "sen_id": 254926}, {"caption": "the person talking on how to teach your parrot to fly", "video_id": "video11841", "sen_id": 254927}, {"caption": "a man in a striped shirt with a parrot on a perch", "video_id": "video11841", "sen_id": 254928}, {"caption": "a man wearing glasses and a striped shirt is next to a green parrot sitting on a perch", "video_id": "video11841", "sen_id": 254929}, {"caption": "a man in a shirt and glasses talks about birds", "video_id": "video11841", "sen_id": 254930}, {"caption": "a tshirt man talking in front of the parrot", "video_id": "video11841", "sen_id": 254931}, {"caption": "a green color parrot standing on the stand and a man wearing spects tells about the parrot", "video_id": "video11841", "sen_id": 254932}, {"caption": "a man is demonstrating how to teach a parrot to fly", "video_id": "video11841", "sen_id": 254933}, {"caption": "parrot coming closer and looking at the guy in glasses with striped tshirt", "video_id": "video11841", "sen_id": 254934}, {"caption": "there is a tshirt man talking with asparrow", "video_id": "video11841", "sen_id": 254935}, {"caption": "the man in t-shirt is talking while the parrot is sitting near to him", "video_id": "video11841", "sen_id": 254936}, {"caption": "an animal trainer is talking about teaching a parrot how to fly as it repeatedly squawks endlessly", "video_id": "video11841", "sen_id": 254937}, {"caption": "a man talks about teaching a parrot to fly while a green parrot next to him screeches", "video_id": "video11841", "sen_id": 254938}, {"caption": "a person speaking about something in a show with parrot animation", "video_id": "video11841", "sen_id": 254939}, {"caption": "a woman is demonstrating how to remove the meat out of the bone in the drumb of chicken by holding the bone and pushing the meat down", "video_id": "video12468", "sen_id": 254940}, {"caption": "a woman is giving cooking instruction while demonstrating something with a piece of chicken", "video_id": "video12468", "sen_id": 254941}, {"caption": "a man squeezes some meat to prepare some special food", "video_id": "video12468", "sen_id": 254942}, {"caption": "a woman is demonstrating how to get the meat off of a chicken leg", "video_id": "video12468", "sen_id": 254943}, {"caption": "a woman is showing how to handle and process meat safely and efficiently in the kitchen", "video_id": "video12468", "sen_id": 254944}, {"caption": "a piece of chicken placed on one hand and pressing the meat down with other hand", "video_id": "video12468", "sen_id": 254945}, {"caption": "a meat and knife inside kitchen pressing meat and ready to prepare to serve to eat", "video_id": "video12468", "sen_id": 254946}, {"caption": "instructions on getting all the meat off of a chicken leg", "video_id": "video12468", "sen_id": 254947}, {"caption": "a lady explain and how is prepare the food", "video_id": "video12468", "sen_id": 254948}, {"caption": "a person is trying to chop meat through hands", "video_id": "video12468", "sen_id": 254949}, {"caption": "a girl teaching how to properly take the meat off of a chicken", "video_id": "video12468", "sen_id": 254950}, {"caption": "a woman is pressing the meat of a chicken leg down the bone during a cooking demonstration", "video_id": "video12468", "sen_id": 254951}, {"caption": "the person prepares the chicken to be cook", "video_id": "video12468", "sen_id": 254952}, {"caption": "they are crushing the leg piece chicken to prepare the chicken 65", "video_id": "video12468", "sen_id": 254953}, {"caption": "someone is pressing the chicken leg piece in their palm", "video_id": "video12468", "sen_id": 254954}, {"caption": "a person is making some food in their hands", "video_id": "video12468", "sen_id": 254955}, {"caption": "a women showing how to take all the meat off a bone in one clean try", "video_id": "video12468", "sen_id": 254956}, {"caption": "a person is explaining about cooking process of chicken by holding a chicken piece in his hand", "video_id": "video12468", "sen_id": 254957}, {"caption": "a woman is shaping chicken in her hands in preparation for cooking", "video_id": "video12468", "sen_id": 254958}, {"caption": "a girl inside kitchen meat cutting knife preparing dish to serve to eat displaying on screen", "video_id": "video12468", "sen_id": 254959}, {"caption": "a woman adds noodles to the vegetables frying in a pan on the stove", "video_id": "video11424", "sen_id": 254960}, {"caption": "a woman is speaking to the camera teaching the audience how to make a dish with pasta in it", "video_id": "video11424", "sen_id": 254961}, {"caption": "a pan on a stove with vegetables and then a dish is shown full of noodles", "video_id": "video11424", "sen_id": 254962}, {"caption": "a video graphic showing how to prepare food in a silver pan with a female foreign language voiceover", "video_id": "video11424", "sen_id": 254963}, {"caption": "a woman prepares to cook a plate of noodles with an assortment of vegetables", "video_id": "video11424", "sen_id": 254964}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video11424", "sen_id": 254965}, {"caption": "noodles with vegetable slices is being prepared in a metal vessel", "video_id": "video11424", "sen_id": 254966}, {"caption": "someone is cooking food in the big pot while adding ingredients to it", "video_id": "video11424", "sen_id": 254967}, {"caption": "several ingrediants in a pan being prepared for a pasta recipe", "video_id": "video11424", "sen_id": 254968}, {"caption": "a person is cooking stir fry on the stove using a wok and showing noodles on a plate", "video_id": "video11424", "sen_id": 254969}, {"caption": "there is a woman making a dish in the pan", "video_id": "video11424", "sen_id": 254970}, {"caption": "a pan of food being cooked and they are about to add noodles into it", "video_id": "video11424", "sen_id": 254971}, {"caption": "carrot and other vegetables gravy prepared now the noodles are to be added", "video_id": "video11424", "sen_id": 254972}, {"caption": "the foreign woman reveals a metallic plate holding up a pile of noodles", "video_id": "video11424", "sen_id": 254973}, {"caption": "an indian chef prepares a recipe with vegetables and noodles", "video_id": "video11424", "sen_id": 254974}, {"caption": "a woman cooking a healthy stir fry with noodles about to be added to the pot", "video_id": "video11424", "sen_id": 254975}, {"caption": "a vegetable dish cooks in a metal bowl on a stove as a woman speaks in spanish in the background", "video_id": "video11424", "sen_id": 254976}, {"caption": "few carrot and other vegetables boiled by frying now noodles is ready to mix", "video_id": "video11424", "sen_id": 254977}, {"caption": "a woman stirs orange and green vegetables with noodles", "video_id": "video11424", "sen_id": 254978}, {"caption": "in pan where several ingredients are added that is vegetables finally noodles are added to it", "video_id": "video11424", "sen_id": 254979}, {"caption": "men in ship start doing countdown for a load drop", "video_id": "video10864", "sen_id": 254980}, {"caption": "clips of different still life objects and some moving parts", "video_id": "video10864", "sen_id": 254981}, {"caption": "there is a map with some important explanations", "video_id": "video10864", "sen_id": 254982}, {"caption": "world map is shown with cartoon and states", "video_id": "video10864", "sen_id": 254983}, {"caption": "view a map and space news how it is", "video_id": "video10864", "sen_id": 254984}, {"caption": "four parts of the video its something look like the sand", "video_id": "video10864", "sen_id": 254985}, {"caption": "a map of the world and some camera images", "video_id": "video10864", "sen_id": 254986}, {"caption": "there is something impressing matters goin on", "video_id": "video10864", "sen_id": 254987}, {"caption": "someone is counting down for the launching of satellite", "video_id": "video10864", "sen_id": 254988}, {"caption": "a lady explaining about something in the media", "video_id": "video10864", "sen_id": 254989}, {"caption": "a person is counting from 10 to 1 as scene of rocket launching is running on screen", "video_id": "video10864", "sen_id": 254990}, {"caption": "a map of the world is being shown above", "video_id": "video10864", "sen_id": 254991}, {"caption": "four different screens are being displayed as a man counts down", "video_id": "video10864", "sen_id": 254992}, {"caption": "during a countdown a screen divided into four parts shows curved spheres ending with a segmented vehicle in the atmosphere", "video_id": "video10864", "sen_id": 254993}, {"caption": "a man is saying a count down for a rocket launch", "video_id": "video10864", "sen_id": 254994}, {"caption": "geographical location of a canal is shown river is passing", "video_id": "video10864", "sen_id": 254995}, {"caption": "there are screen splits into four and coundown starts", "video_id": "video10864", "sen_id": 254996}, {"caption": "guy starts countdown for the launching of a spacecraft", "video_id": "video10864", "sen_id": 254997}, {"caption": "a map of the ocean and some camera views", "video_id": "video10864", "sen_id": 254998}, {"caption": "some screens are showing scenes of earth", "video_id": "video10864", "sen_id": 254999}, {"caption": "i pretty blond girl flirting in a bar with a white male in a grey shirt", "video_id": "video10340", "sen_id": 255000}, {"caption": "a music video with people partying in a club", "video_id": "video10340", "sen_id": 255001}, {"caption": "pop stars and rappers are drinking at a bar", "video_id": "video10340", "sen_id": 255002}, {"caption": "a blonde woman having drinks with a guy in a bar", "video_id": "video10340", "sen_id": 255003}, {"caption": "britney spears and eminem are shown in a music video clip", "video_id": "video10340", "sen_id": 255004}, {"caption": "a man in a blue shirt and a white skull cap walking through a night club", "video_id": "video10340", "sen_id": 255005}, {"caption": "a music video with britney spears smiling in a club and rapper eminem wearing a white head wrap dancing with a woman", "video_id": "video10340", "sen_id": 255006}, {"caption": "brittney spears is smiling and flirting with eminem", "video_id": "video10340", "sen_id": 255007}, {"caption": "britney spears and eminem are doing a music video together", "video_id": "video10340", "sen_id": 255008}, {"caption": "two ladies are dancing with a man in pop album", "video_id": "video10340", "sen_id": 255009}, {"caption": "a lady is smiling and dancing with a man", "video_id": "video10340", "sen_id": 255010}, {"caption": "people are mingling and one woman looks like brittany spears", "video_id": "video10340", "sen_id": 255011}, {"caption": "eminem interacts with a couple of gorgeous blonde women", "video_id": "video10340", "sen_id": 255012}, {"caption": "a music video with a rapper slim shady with some ladies", "video_id": "video10340", "sen_id": 255013}, {"caption": "this is a small clip of pop song", "video_id": "video10340", "sen_id": 255014}, {"caption": "women are drinking and having a good time a guy wants to hook up with the girl", "video_id": "video10340", "sen_id": 255015}, {"caption": "a woman in a black dress in friend sit laughing at a bar and hold hands with man", "video_id": "video10340", "sen_id": 255016}, {"caption": "there is a lot of people dancing a drinking and it seems to be part of one of a music video", "video_id": "video10340", "sen_id": 255017}, {"caption": "rapper eminem is in a club with two girls in black around him", "video_id": "video10340", "sen_id": 255018}, {"caption": "some people in a room are having some fun", "video_id": "video10340", "sen_id": 255019}, {"caption": "a man with an australian accent describes and demonstrates making a pasta dish", "video_id": "video12890", "sen_id": 255020}, {"caption": "she prepared the pasta and she served in to a bowl after garnishingshe had that pasta", "video_id": "video12890", "sen_id": 255021}, {"caption": "video showing pasta being mixed in cream sauce", "video_id": "video12890", "sen_id": 255022}, {"caption": "a man going through the steps of putting a pasta meal together", "video_id": "video12890", "sen_id": 255023}, {"caption": "a man is mixing together the finished ingredients for a pasta dish", "video_id": "video12890", "sen_id": 255024}, {"caption": "a man stirs together cooked pasta with other added ingredients and then showcases it for the camera", "video_id": "video12890", "sen_id": 255025}, {"caption": "a person placed cooked ingredients on a table and then adds pasta to it mixes it well and then tastes it", "video_id": "video12890", "sen_id": 255026}, {"caption": "a person is making a pasta dish and tasting it", "video_id": "video12890", "sen_id": 255027}, {"caption": "a man demonstrates in a kitchen how to make a pasta dish", "video_id": "video12890", "sen_id": 255028}, {"caption": "a man prepares a pasta dish adding it to a sauce and sprinkling it with cheese and chives", "video_id": "video12890", "sen_id": 255029}, {"caption": "in a black apron the man dumps a lot of pasta into his skillet", "video_id": "video12890", "sen_id": 255030}, {"caption": "in the kitchen a man making a breakfast", "video_id": "video12890", "sen_id": 255031}, {"caption": "a fry pan is having a gravy the kellogs was put into it then taken in a bowl to serve", "video_id": "video12890", "sen_id": 255032}, {"caption": "a person is cooking the pasta food item and mixing with some ingredients", "video_id": "video12890", "sen_id": 255033}, {"caption": "a man is demonstrating how to cook a pasta dish", "video_id": "video12890", "sen_id": 255034}, {"caption": "a man pours pasta into a white sauce and dresses it with garnish", "video_id": "video12890", "sen_id": 255035}, {"caption": "a man uses a spoon to put a pack of pasta into a pot once cooked mix it well and add in cheese for flavor", "video_id": "video12890", "sen_id": 255036}, {"caption": "a man is stirring pasta in meat and eating it in a bowl", "video_id": "video12890", "sen_id": 255037}, {"caption": "a man is showing a pasta dish he has made", "video_id": "video12890", "sen_id": 255038}, {"caption": "in a kitchen someone is preparing a dish using the ingredients like cheese and pasta", "video_id": "video12890", "sen_id": 255039}, {"caption": "a white luxury sports car pulling in to a garage and a man talking about them", "video_id": "video11197", "sen_id": 255040}, {"caption": "a white sports car pulling into a garage followed by a man in a black shirt talking about cars", "video_id": "video11197", "sen_id": 255041}, {"caption": "a man parks his most expensive white ferrari car in his parking lot", "video_id": "video11197", "sen_id": 255042}, {"caption": "white ferrari car is parked inside a garage and a person explains about that and also shows a red ferrari", "video_id": "video11197", "sen_id": 255043}, {"caption": "a white lamborghini is shown driving into a garage with a man talking about it", "video_id": "video11197", "sen_id": 255044}, {"caption": "a white car is coming and a man telling about the car and how much he loves it", "video_id": "video11197", "sen_id": 255045}, {"caption": "there is a stylish car on the street", "video_id": "video11197", "sen_id": 255046}, {"caption": "a big white color car coming slowly and a guy talking about that", "video_id": "video11197", "sen_id": 255047}, {"caption": "a white car with lights coming in and a man himself shoots the video and explains about the cars", "video_id": "video11197", "sen_id": 255048}, {"caption": "a fancy white sports car is guided into a parking spot", "video_id": "video11197", "sen_id": 255049}, {"caption": "a lamborghini car is entering into garage and a guy is talking about the car", "video_id": "video11197", "sen_id": 255050}, {"caption": "a men explainging car is displayed with its features", "video_id": "video11197", "sen_id": 255051}, {"caption": "a man wearing black color dressed talking", "video_id": "video11197", "sen_id": 255052}, {"caption": "one man talks about a new model car", "video_id": "video11197", "sen_id": 255053}, {"caption": "a white car was awesome a boy takes a self video by standing in front of the red car", "video_id": "video11197", "sen_id": 255054}, {"caption": "a guy in a beard is showing a red car", "video_id": "video11197", "sen_id": 255055}, {"caption": "a large white awesome looking car enters and a young man appreciates the car", "video_id": "video11197", "sen_id": 255056}, {"caption": "a white car drives into a garage slowly", "video_id": "video11197", "sen_id": 255057}, {"caption": "a man is talking about his beautiful car", "video_id": "video11197", "sen_id": 255058}, {"caption": "a man driving the car and he saying that he loves car", "video_id": "video11197", "sen_id": 255059}, {"caption": "a man addresses a crowd regarding video games", "video_id": "video11721", "sen_id": 255060}, {"caption": "a crowd is cheering followed by a man speaking to them", "video_id": "video11721", "sen_id": 255061}, {"caption": "a man on stage with musicians with instruments", "video_id": "video11721", "sen_id": 255062}, {"caption": "a man addresses a crowd regarding video games", "video_id": "video11721", "sen_id": 255063}, {"caption": "a person is on a stage and is giving a lecture to a large audience", "video_id": "video11721", "sen_id": 255064}, {"caption": "there is a man walking and talking on the stage", "video_id": "video11721", "sen_id": 255065}, {"caption": "music event on the stage also showing live in few screens", "video_id": "video11721", "sen_id": 255066}, {"caption": "a man stands on stage of video game event with screens behind and large audience", "video_id": "video11721", "sen_id": 255067}, {"caption": "a man is giving his program in a stage in the presence of fully crowded audience", "video_id": "video11721", "sen_id": 255068}, {"caption": "a man talks on stage while the audience applauds and laughs", "video_id": "video11721", "sen_id": 255069}, {"caption": "there is a man walking on the stage", "video_id": "video11721", "sen_id": 255070}, {"caption": "a conference for video games it appears with a bunch of nerds", "video_id": "video11721", "sen_id": 255071}, {"caption": "in a musical live show all the orchestra members are ready to play", "video_id": "video11721", "sen_id": 255072}, {"caption": "group of people are watching the singe who is performing a song", "video_id": "video11721", "sen_id": 255073}, {"caption": "a person in the stage start speaking infront of all", "video_id": "video11721", "sen_id": 255074}, {"caption": "a man is walking back and forth on a stage in front of a large audience and birght lighting", "video_id": "video11721", "sen_id": 255075}, {"caption": "man on stage with large tv screens behind him talking about the video game organizations making a difference", "video_id": "video11721", "sen_id": 255076}, {"caption": "a man talks to a big audience in a stage comprising of many people", "video_id": "video11721", "sen_id": 255077}, {"caption": "the singer is singing great song and rising the atmosphere", "video_id": "video11721", "sen_id": 255078}, {"caption": "a band is playing a concert for their fans", "video_id": "video11721", "sen_id": 255079}, {"caption": "man throws a football and does a victory dance", "video_id": "video10147", "sen_id": 255080}, {"caption": "a man standing on a football field throws a football and hits the goal post before doing a victory dance", "video_id": "video10147", "sen_id": 255081}, {"caption": "a stout man throwing the rugby ball and dances on the meadow", "video_id": "video10147", "sen_id": 255082}, {"caption": "a man in blue shirt is dancing in the play groud", "video_id": "video10147", "sen_id": 255083}, {"caption": "a football player named jason marshall tosses a football and then does a dance", "video_id": "video10147", "sen_id": 255084}, {"caption": "a boy blue dress color wearing cloth inside ground throwing ball and dancing displaying on screen", "video_id": "video10147", "sen_id": 255085}, {"caption": "a man in blue t-shirt is saying something and dancing in ground", "video_id": "video10147", "sen_id": 255086}, {"caption": "a white person with violet dressing and having a handball is speaking and throwing to netafterthat he is dancing in grassland", "video_id": "video10147", "sen_id": 255087}, {"caption": "a man is having a ball in his hand and through it", "video_id": "video10147", "sen_id": 255088}, {"caption": "a man throws a ball a great distance through the goalposts and then dances", "video_id": "video10147", "sen_id": 255089}, {"caption": "a muscular guy in blue throws a rugby ball and then dances to hip-hop music on a rugby field on a nice sunny day", "video_id": "video10147", "sen_id": 255090}, {"caption": "there is a man dancing on the grass", "video_id": "video10147", "sen_id": 255091}, {"caption": "the blue tshirt wearing men on the grassland telling the hand ball play", "video_id": "video10147", "sen_id": 255092}, {"caption": "a man in blue and a knee brace throwing a ball into the goal and then dancing", "video_id": "video10147", "sen_id": 255093}, {"caption": "a man is throwing a football then he starts to dance", "video_id": "video10147", "sen_id": 255094}, {"caption": "a guy on a field is dancing around", "video_id": "video10147", "sen_id": 255095}, {"caption": "a guy named jason marshall is wearing a blue shirt and decides to throw a football threw a field goal and starts dancing to rap music", "video_id": "video10147", "sen_id": 255096}, {"caption": "a blue tshirt player throws the rugby ball to the pole and then enjoying that by dancing", "video_id": "video10147", "sen_id": 255097}, {"caption": "trainer with ball in hand teaches how to throw ball then he dance in the play ground", "video_id": "video10147", "sen_id": 255098}, {"caption": "a man showcases his football throwing accuracy by bouncing the ball off one of the beams in the goalpost and then begins to dance", "video_id": "video10147", "sen_id": 255099}, {"caption": "a doll pushes a pink van in order to save a deer", "video_id": "video12843", "sen_id": 255100}, {"caption": "a woman acts out a scene using toy dolls", "video_id": "video12843", "sen_id": 255101}, {"caption": "a male barbie doll notices he ran a deer over with his van", "video_id": "video12843", "sen_id": 255102}, {"caption": "a ken doll pushes his van off of a deer he just hit", "video_id": "video12843", "sen_id": 255103}, {"caption": "ken doll shoves toy van to save barbie doll", "video_id": "video12843", "sen_id": 255104}, {"caption": "there is a male and female doll driving in a car and then the male doll walks over to their camper and pushes it off of an animal", "video_id": "video12843", "sen_id": 255105}, {"caption": "a plastic man with a plastic vehicle backed over a plastic deer in a make believe accident using all toys", "video_id": "video12843", "sen_id": 255106}, {"caption": "a man pushing a jeep forward and a horse fallen down on the ground", "video_id": "video12843", "sen_id": 255107}, {"caption": "a lady is playing with dolls and acting with them", "video_id": "video12843", "sen_id": 255108}, {"caption": "a young girl plays with dolls and small plastic animals", "video_id": "video12843", "sen_id": 255109}, {"caption": "a lady is acting out a scene with plastic toys", "video_id": "video12843", "sen_id": 255110}, {"caption": "a ken doll is pushing a toy truck that is white", "video_id": "video12843", "sen_id": 255111}, {"caption": "a woman is narrating a toy male barbie doll and a van", "video_id": "video12843", "sen_id": 255112}, {"caption": "an animated cartoon characters doing something funny", "video_id": "video12843", "sen_id": 255113}, {"caption": "its small pink van where a person makes it straight which falls on horse", "video_id": "video12843", "sen_id": 255114}, {"caption": "a girl demonstrates a make believe story with a model truck plastic ken doll and a plastic reindeer doll", "video_id": "video12843", "sen_id": 255115}, {"caption": "a girl playing with a male doll in front of a plastic rv", "video_id": "video12843", "sen_id": 255116}, {"caption": "a male doll gets out of a toy vehicle and moves the vehicle off of a toy reindeer", "video_id": "video12843", "sen_id": 255117}, {"caption": "a woman s voice is narrating a scene with a ken doll and barbie mobile outside on a lawn", "video_id": "video12843", "sen_id": 255118}, {"caption": "someone plays a funny but sad scene with dolls", "video_id": "video12843", "sen_id": 255119}, {"caption": "a group of men are jogging through a heavily wooded area", "video_id": "video10305", "sen_id": 255120}, {"caption": "a man in a heavily wooded area running a race and climbing ropes", "video_id": "video10305", "sen_id": 255121}, {"caption": "a man in a green shirt is running and climbing over a net", "video_id": "video10305", "sen_id": 255122}, {"caption": "people are running on flat ground with patches of long green grass and a man wearing a brown-and-blue kerchief on his head leads the way through tall vegetation", "video_id": "video10305", "sen_id": 255123}, {"caption": "this was interesting showing how things work out just fine", "video_id": "video10305", "sen_id": 255124}, {"caption": "a person cuts grass together by a wooden wall", "video_id": "video10305", "sen_id": 255125}, {"caption": "bunch of guys running in the woods as training program", "video_id": "video10305", "sen_id": 255126}, {"caption": "there is a green tshirt man running on the grass", "video_id": "video10305", "sen_id": 255127}, {"caption": "men run through an obstacle course in a wooded area", "video_id": "video10305", "sen_id": 255128}, {"caption": "a men are running in the road of forest area", "video_id": "video10305", "sen_id": 255129}, {"caption": "an outdoors man runs outside in the woods with a group", "video_id": "video10305", "sen_id": 255130}, {"caption": "bunch of guys traing through the woods toward the uphill", "video_id": "video10305", "sen_id": 255131}, {"caption": "two men were going running in the deep forest", "video_id": "video10305", "sen_id": 255132}, {"caption": "a group of men run along a trail that cuts through a heavily wooded area", "video_id": "video10305", "sen_id": 255133}, {"caption": "a blue dress boy yellow dress boy inside forest running and climbing in net and waving hand displaying on screen", "video_id": "video10305", "sen_id": 255134}, {"caption": "the men run along the dirt path then climb the ropes in the forest as part of the race", "video_id": "video10305", "sen_id": 255135}, {"caption": "people jogging in the forest", "video_id": "video10305", "sen_id": 255136}, {"caption": "a group of men race on a wilderness trail climbing over natural and man-made obstacles", "video_id": "video10305", "sen_id": 255137}, {"caption": "two men run along a wooded path in some rainy and muddy conditions", "video_id": "video10305", "sen_id": 255138}, {"caption": "the man jumped and ran on a forest others are there", "video_id": "video10305", "sen_id": 255139}, {"caption": "a man talks over a cartoon depiction about how cells on ones body can fight off invaders", "video_id": "video11324", "sen_id": 255140}, {"caption": "blue and pink dots encircle a group of smaller light blue dots to simulate how white blood cells attack micropes in the immune system", "video_id": "video11324", "sen_id": 255141}, {"caption": "a display of viruses and a narrator explaining how to destroy them", "video_id": "video11324", "sen_id": 255142}, {"caption": "many amoebas are spreading apart in the animated cartoon", "video_id": "video11324", "sen_id": 255143}, {"caption": "a man is explain about a molecules with recorded video", "video_id": "video11324", "sen_id": 255144}, {"caption": "a man describes the role and responsibilities of antibodies in the body", "video_id": "video11324", "sen_id": 255145}, {"caption": "an animated diagram shows the human body s immune system", "video_id": "video11324", "sen_id": 255146}, {"caption": "an animation of microbes fighting invasions of varying colors", "video_id": "video11324", "sen_id": 255147}, {"caption": "some graphics of bacteria which is recorded on the camera", "video_id": "video11324", "sen_id": 255148}, {"caption": "a microbiologist uses a recording and monitoring tool to record the progress of his research", "video_id": "video11324", "sen_id": 255149}, {"caption": "an animation showing and describing how antibodies work", "video_id": "video11324", "sen_id": 255150}, {"caption": "fighting microbes using a recorder to get information about them", "video_id": "video11324", "sen_id": 255151}, {"caption": "t-cells and b-cells fight in this animation showing biology at work", "video_id": "video11324", "sen_id": 255152}, {"caption": "its molecules shape letters bu circles are free to move", "video_id": "video11324", "sen_id": 255153}, {"caption": "some green balls are multiplying and having fun", "video_id": "video11324", "sen_id": 255154}, {"caption": "a computer animation of cell activity and microbes", "video_id": "video11324", "sen_id": 255155}, {"caption": "white blood cells and the immune system are explained in detail here", "video_id": "video11324", "sen_id": 255156}, {"caption": "an illustration of what microbes look like and how to fight them", "video_id": "video11324", "sen_id": 255157}, {"caption": "a scientist is explaining how the microbes attack the healthy cells", "video_id": "video11324", "sen_id": 255158}, {"caption": "some green dots are bouncing around on a thing", "video_id": "video11324", "sen_id": 255159}, {"caption": "a old women in a light blue shirt with glasses is standing in a doorway", "video_id": "video12039", "sen_id": 255160}, {"caption": "a women wearing spectacles and a blue colour t-shirt is watching other guys", "video_id": "video12039", "sen_id": 255161}, {"caption": "a man is taking bags from his mother while talking to her", "video_id": "video12039", "sen_id": 255162}, {"caption": "a man is taking a garbage bag from an older woman", "video_id": "video12039", "sen_id": 255163}, {"caption": "a young man has an design buzzed into his hair and jokes with his mom", "video_id": "video12039", "sen_id": 255164}, {"caption": "a boy in black dress speaking with less hairs on head an old lady on door standing with plastic bag in hand laughing displaying on screen", "video_id": "video12039", "sen_id": 255165}, {"caption": "there is a tshirt man talking to his mother", "video_id": "video12039", "sen_id": 255166}, {"caption": "a man with a shaved side of his head talking about his idea then talking to an elderly woman", "video_id": "video12039", "sen_id": 255167}, {"caption": "an old lady entering into room who in different hair style", "video_id": "video12039", "sen_id": 255168}, {"caption": "a boy in black dress wearing an old woman blue dress carrying plastic bags in hands displaying on screen", "video_id": "video12039", "sen_id": 255169}, {"caption": "ther is a boy introducing his grand mother who is standing on the door", "video_id": "video12039", "sen_id": 255170}, {"caption": "the man is talking with women in blue t-shirt and is taking the luggage from her", "video_id": "video12039", "sen_id": 255171}, {"caption": "one man talking very fast with a old women", "video_id": "video12039", "sen_id": 255172}, {"caption": "an old lady in blue t-shirt and wearing spects is laughing", "video_id": "video12039", "sen_id": 255173}, {"caption": "a man is describing about the family members", "video_id": "video12039", "sen_id": 255174}, {"caption": "there is a welcoming an old women on door", "video_id": "video12039", "sen_id": 255175}, {"caption": "a man with a mohawk hairdo with round designs on the sides of his head turns to see his mother", "video_id": "video12039", "sen_id": 255176}, {"caption": "a man with a crazy hairdo helps his grandmother carry a box and bag of trash", "video_id": "video12039", "sen_id": 255177}, {"caption": "a few people in the home are chatting and arranging the goods", "video_id": "video12039", "sen_id": 255178}, {"caption": "a woman with glasses is smiling and sitting", "video_id": "video12039", "sen_id": 255179}, {"caption": "a woman in a pink shirt is applying makeup with a brush to her face", "video_id": "video10248", "sen_id": 255180}, {"caption": "there is a women touching make up in front of a mirror", "video_id": "video10248", "sen_id": 255181}, {"caption": "a woman puts on foundation with a make-up brush in the bathroom", "video_id": "video10248", "sen_id": 255182}, {"caption": "a woman applies makeup to her face with a large brush", "video_id": "video10248", "sen_id": 255183}, {"caption": "a girl in pink dress doing some makeup on her face and saying", "video_id": "video10248", "sen_id": 255184}, {"caption": "a beautiful lady spreading some foundation on her face a foundation brush", "video_id": "video10248", "sen_id": 255185}, {"caption": "a woman explains how to apply facial powder", "video_id": "video10248", "sen_id": 255186}, {"caption": "a woman is applying makeup and explaining how she does it", "video_id": "video10248", "sen_id": 255187}, {"caption": "the lady uses the brush to do the make up on her face she use black brush", "video_id": "video10248", "sen_id": 255188}, {"caption": "a girl makeup her face in pink dress wearing brushing her face with cream for facial beauty displaying on screen", "video_id": "video10248", "sen_id": 255189}, {"caption": "a woman is doing her makeup for viewer s benefit", "video_id": "video10248", "sen_id": 255190}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video10248", "sen_id": 255191}, {"caption": "one beautiful and lovely women makeup in face", "video_id": "video10248", "sen_id": 255192}, {"caption": "a pink color dressed lady doing make up on her face with black brush", "video_id": "video10248", "sen_id": 255193}, {"caption": "a beautician is explains how to brush the face", "video_id": "video10248", "sen_id": 255194}, {"caption": "a woman is showing how to do her makeup", "video_id": "video10248", "sen_id": 255195}, {"caption": "a lady make up her face with brush", "video_id": "video10248", "sen_id": 255196}, {"caption": "one beautiful cute women makeup on his face", "video_id": "video10248", "sen_id": 255197}, {"caption": "a woman applies makeup on her face with a brush", "video_id": "video10248", "sen_id": 255198}, {"caption": "a women is speaking about the make-up with blush", "video_id": "video10248", "sen_id": 255199}, {"caption": "a cat playing with a toy spider and somebody is watching", "video_id": "video11103", "sen_id": 255200}, {"caption": "a black toy spider is running towards a cat and a dog is barking", "video_id": "video11103", "sen_id": 255201}, {"caption": "remote controlled mechanical spider zoning in on kitten", "video_id": "video11103", "sen_id": 255202}, {"caption": "there is a large black toy spider approaching a cat who is backing away from it slowly", "video_id": "video11103", "sen_id": 255203}, {"caption": "black spider on floor it slowly reaches the cat on floor then moves back", "video_id": "video11103", "sen_id": 255204}, {"caption": "a robotic spider is being controlled and scares away a white cat", "video_id": "video11103", "sen_id": 255205}, {"caption": "the spider try to attack the cat in the kitchen", "video_id": "video11103", "sen_id": 255206}, {"caption": " remote controlled spider is directed toward a scared kitten", "video_id": "video11103", "sen_id": 255207}, {"caption": "a large fake spider crawls across the ground going up to a kitten who backs away", "video_id": "video11103", "sen_id": 255208}, {"caption": "without knowing that it is toy spirder the cat is afraid", "video_id": "video11103", "sen_id": 255209}, {"caption": "there is a spider moving on the floor", "video_id": "video11103", "sen_id": 255210}, {"caption": "a robotic triantula moving forward towards a kitten the kitten then shys away from the triantula backing up to go under the table", "video_id": "video11103", "sen_id": 255211}, {"caption": "a toy remote control spider is used to scare a small cat", "video_id": "video11103", "sen_id": 255212}, {"caption": "a gigantic tarantula creeps up to a house in a village and begins terrorizing the family cat", "video_id": "video11103", "sen_id": 255213}, {"caption": "there is a fake spider walking up to a kitten trying to scare it", "video_id": "video11103", "sen_id": 255214}, {"caption": "a clip featuring various kinds of animals and insects is displayed", "video_id": "video11103", "sen_id": 255215}, {"caption": "a huge toy spider is set out to terrorize a kitten", "video_id": "video11103", "sen_id": 255216}, {"caption": "a person uses a large remote control spider to freak out other animals", "video_id": "video11103", "sen_id": 255217}, {"caption": "a toy spider on the ground crawling towards people", "video_id": "video11103", "sen_id": 255218}, {"caption": "a fake spider is walking outside", "video_id": "video11103", "sen_id": 255219}, {"caption": "a young woman dressed in black and standing on a stage", "video_id": "video12033", "sen_id": 255220}, {"caption": "a woman dressed in black and walking up and down the stage", "video_id": "video12033", "sen_id": 255221}, {"caption": "the woman dances as the chair spins around her", "video_id": "video12033", "sen_id": 255222}, {"caption": "a female is singing a song on a stage", "video_id": "video12033", "sen_id": 255223}, {"caption": "a woman singing on the stage and dancing in a chair", "video_id": "video12033", "sen_id": 255224}, {"caption": "one sexy girl singing and dancing inside the room", "video_id": "video12033", "sen_id": 255225}, {"caption": "a woman in black dances and sings then kicks a chair", "video_id": "video12033", "sen_id": 255226}, {"caption": "brintey spears dances on the stage at a rave in green", "video_id": "video12033", "sen_id": 255227}, {"caption": "a brown hair women dancing in the darkness", "video_id": "video12033", "sen_id": 255228}, {"caption": "women dancing and singing song in a group", "video_id": "video12033", "sen_id": 255229}, {"caption": "an album song a girl singing a song and dancing", "video_id": "video12033", "sen_id": 255230}, {"caption": "a pop musician dances on and around chair while singing", "video_id": "video12033", "sen_id": 255231}, {"caption": "there is a brown hair woman singing and dancing", "video_id": "video12033", "sen_id": 255232}, {"caption": "britney spears dressed in a black top black pants singing and dancing on top of a chair", "video_id": "video12033", "sen_id": 255233}, {"caption": "a woman is singing and dancing in the show", "video_id": "video12033", "sen_id": 255234}, {"caption": "britney spears dancing in a chair and cheerfully singing", "video_id": "video12033", "sen_id": 255235}, {"caption": "there is hot women dancing and singing", "video_id": "video12033", "sen_id": 255236}, {"caption": "the woman dances and then kicks the chair", "video_id": "video12033", "sen_id": 255237}, {"caption": "an attractive blond headed woamn sings and dances using a metal chair", "video_id": "video12033", "sen_id": 255238}, {"caption": "a lady wearing all black dances on a dark stage", "video_id": "video12033", "sen_id": 255239}, {"caption": "a woman explains a recipe before plating it on a white dinner plate for viewers on a cooking show", "video_id": "video11974", "sen_id": 255240}, {"caption": "a woman in the kitchen is discussing how to cook a dish", "video_id": "video11974", "sen_id": 255241}, {"caption": "in kitchen woman describes how to make breading for chicken nuggets", "video_id": "video11974", "sen_id": 255242}, {"caption": "in a kitchen a woman is explaining on how to make a dish", "video_id": "video11974", "sen_id": 255243}, {"caption": "a woman in a patterned shirt pours corn flakes onto a plate", "video_id": "video11974", "sen_id": 255244}, {"caption": "an indian woman is explaining how to make a recipe involving corn flakes in a well lighted kitchen", "video_id": "video11974", "sen_id": 255245}, {"caption": "a lady is making a dish with corn flakes by giving step to step discription", "video_id": "video11974", "sen_id": 255246}, {"caption": "a woman is preparing a meal on a cooking program", "video_id": "video11974", "sen_id": 255247}, {"caption": "a women in her kitchen explaining about some recipees", "video_id": "video11974", "sen_id": 255248}, {"caption": "a woman teaching how to cook a dish", "video_id": "video11974", "sen_id": 255249}, {"caption": "in a kitchen a lady is making a dish with corn flakes by giving step to step discription", "video_id": "video11974", "sen_id": 255250}, {"caption": "a woman in a kitchen is making some food", "video_id": "video11974", "sen_id": 255251}, {"caption": "in the kitchen a woman making dish with chicken", "video_id": "video11974", "sen_id": 255252}, {"caption": "a lady standing in the kitchen and takes white plate and puts some flakes into it", "video_id": "video11974", "sen_id": 255253}, {"caption": "a woman is preparing a meal on in a kitchen", "video_id": "video11974", "sen_id": 255254}, {"caption": "various cups with ingredients are arranged on a table along with bowl of corn flakes in kitchen", "video_id": "video11974", "sen_id": 255255}, {"caption": "there is a woman making a taste dish", "video_id": "video11974", "sen_id": 255256}, {"caption": "a woman is in a kitchen talking about how to make a certain meal", "video_id": "video11974", "sen_id": 255257}, {"caption": "a woman in black and white is making a non-vegetarian item with corn flakes", "video_id": "video11974", "sen_id": 255258}, {"caption": "a woman prepares crispy chicken nuggets in her kitchen", "video_id": "video11974", "sen_id": 255259}, {"caption": "a small child talking on the phone", "video_id": "video11001", "sen_id": 255260}, {"caption": "a young baby whose language is not understandable yet is talking on a cell phone", "video_id": "video11001", "sen_id": 255261}, {"caption": "a baby talks in gibberish into a smart phone on a couch", "video_id": "video11001", "sen_id": 255262}, {"caption": "a small child is on a cell phone talking gibberish to someone", "video_id": "video11001", "sen_id": 255263}, {"caption": "a baby girl babbles on a cell phone", "video_id": "video11001", "sen_id": 255264}, {"caption": "a baby girl is sitting in a chair and talking on the phone", "video_id": "video11001", "sen_id": 255265}, {"caption": "a kid speaking to someone through an android phone", "video_id": "video11001", "sen_id": 255266}, {"caption": "a toddler speaks in gibberish to a man on a cellphone", "video_id": "video11001", "sen_id": 255267}, {"caption": "a baby speaks gibberish on a cell phone", "video_id": "video11001", "sen_id": 255268}, {"caption": "a toddler girl talking nonsense on a cell phone", "video_id": "video11001", "sen_id": 255269}, {"caption": "a baby is talking in mobile with her papa", "video_id": "video11001", "sen_id": 255270}, {"caption": "a baby girl babblying on a fake phone", "video_id": "video11001", "sen_id": 255271}, {"caption": "a pretty baby with a purple and white dress talks on a cell phone while riding in a car", "video_id": "video11001", "sen_id": 255272}, {"caption": "the baby girl sits in the seat and talks on the phone", "video_id": "video11001", "sen_id": 255273}, {"caption": "a young child talks on cell phone to man on other end", "video_id": "video11001", "sen_id": 255274}, {"caption": "a baby with a phone is being filmed inside", "video_id": "video11001", "sen_id": 255275}, {"caption": "there is a kid talking with a mobile phone", "video_id": "video11001", "sen_id": 255276}, {"caption": "a baby is talking with mobile phone", "video_id": "video11001", "sen_id": 255277}, {"caption": "the small girl in pink dress is talking on phone while sitting on the sofa", "video_id": "video11001", "sen_id": 255278}, {"caption": "a baby sits in a car talking on a cell phone", "video_id": "video11001", "sen_id": 255279}, {"caption": "a man named john green sits in an office and talks about history", "video_id": "video10007", "sen_id": 255280}, {"caption": "a man in grey colour suit explaining about some subject", "video_id": "video10007", "sen_id": 255281}, {"caption": "there are two mens talking on tv screen together", "video_id": "video10007", "sen_id": 255282}, {"caption": "a man with glasses and a green tshirt talks about islam", "video_id": "video10007", "sen_id": 255283}, {"caption": "a man laughsa globe and a tree and books are placed behind him", "video_id": "video10007", "sen_id": 255284}, {"caption": "the man wore a short-sleeved shirt and a pair of glasses", "video_id": "video10007", "sen_id": 255285}, {"caption": "a man in t-shirt explaining something in front of the camera", "video_id": "video10007", "sen_id": 255286}, {"caption": "a man in tshirts and with eyeglasses is talking", "video_id": "video10007", "sen_id": 255287}, {"caption": " in glasses switching outfits talks about talking about israel", "video_id": "video10007", "sen_id": 255288}, {"caption": "a man wearing reading glasses sitting in a study room is giving lecture", "video_id": "video10007", "sen_id": 255289}, {"caption": "a man in a gray shirt is sitting and talking", "video_id": "video10007", "sen_id": 255290}, {"caption": "there is a t-shirt man talking from the studio", "video_id": "video10007", "sen_id": 255291}, {"caption": "a smart young guy is in grey tshirt talking over the present political scenario", "video_id": "video10007", "sen_id": 255292}, {"caption": "one man talks about something in a stage", "video_id": "video10007", "sen_id": 255293}, {"caption": "a man in t shirt wearing glass speaking sitting beside the globe", "video_id": "video10007", "sen_id": 255294}, {"caption": "a man with glasses is speaking about something", "video_id": "video10007", "sen_id": 255295}, {"caption": "a man is talking to a pretend audience about world history while sitting next to a globe", "video_id": "video10007", "sen_id": 255296}, {"caption": "a man wearing black t shirt talking with another man", "video_id": "video10007", "sen_id": 255297}, {"caption": "a man gives a lecture on the history of isreal and palestine", "video_id": "video10007", "sen_id": 255298}, {"caption": "a man is sharing information on history of palestine", "video_id": "video10007", "sen_id": 255299}, {"caption": "a couple of different men teach groups of children about different engineering techniques", "video_id": "video11277", "sen_id": 255300}, {"caption": "a man giving a demonstration in a room filled with people", "video_id": "video11277", "sen_id": 255301}, {"caption": "many mens are discussing with each other by actions", "video_id": "video11277", "sen_id": 255302}, {"caption": "a man is holding a microphone standing in the audience", "video_id": "video11277", "sen_id": 255303}, {"caption": "man speaking about kids building towers of paper", "video_id": "video11277", "sen_id": 255304}, {"caption": "guy in coat talking to bunch of kids to build stuff", "video_id": "video11277", "sen_id": 255305}, {"caption": "there is a black suit man standing in a meeting", "video_id": "video11277", "sen_id": 255306}, {"caption": "an interactive work shop session kid s discover simple engineering techniques can produce some pretty cool results", "video_id": "video11277", "sen_id": 255307}, {"caption": "jim cocito speaking in mic near a crowd", "video_id": "video11277", "sen_id": 255308}, {"caption": "an old man with mike is talking something with others", "video_id": "video11277", "sen_id": 255309}, {"caption": "a guy with a short neck is talking to people", "video_id": "video11277", "sen_id": 255310}, {"caption": "there is a man in a shirt talking to some kids", "video_id": "video11277", "sen_id": 255311}, {"caption": "a man black color dressed watching tv and peoples are in front of camera", "video_id": "video11277", "sen_id": 255312}, {"caption": "some one is talking important matter in front of group of people seriously", "video_id": "video11277", "sen_id": 255313}, {"caption": "a big man speaks into the microphone and kids try their own engineering projects", "video_id": "video11277", "sen_id": 255314}, {"caption": "some kids are watching a tv in a room", "video_id": "video11277", "sen_id": 255315}, {"caption": "a men is talking with mic in his hand", "video_id": "video11277", "sen_id": 255316}, {"caption": "a man is standing and facing a group of seated people in a brown room with vertical and horizontal designs children work together on a carpeted floor with newsprint and tape to build things", "video_id": "video11277", "sen_id": 255317}, {"caption": "a man gives a speech to a big group of people", "video_id": "video11277", "sen_id": 255318}, {"caption": "children are preferring to do something", "video_id": "video11277", "sen_id": 255319}, {"caption": "eugene is showing the audience what the finished product of talapia is going to look on his cooking show", "video_id": "video10405", "sen_id": 255320}, {"caption": "a plate of tilapia veracruz sits on a white plate while a man sprinkles lime juice over it", "video_id": "video10405", "sen_id": 255321}, {"caption": "a plate with food on it and a fork as a man sprinkles lime on it", "video_id": "video10405", "sen_id": 255322}, {"caption": "a cooking show intro explaining which dish is going to be covered", "video_id": "video10405", "sen_id": 255323}, {"caption": "eugene shows us how to make a tasty talapia fish meal", "video_id": "video10405", "sen_id": 255324}, {"caption": "a man prepares to show how to make a delicious dish", "video_id": "video10405", "sen_id": 255325}, {"caption": "there is a man serving a dish on the table", "video_id": "video10405", "sen_id": 255326}, {"caption": "a man decorating the prepared food kept on table", "video_id": "video10405", "sen_id": 255327}, {"caption": "a plate of food with a man squeezing a lime over it", "video_id": "video10405", "sen_id": 255328}, {"caption": "a man squeezes lime over tilapia vera cruz and says he is going to demonstrate how to make it", "video_id": "video10405", "sen_id": 255329}, {"caption": "a person is showing some food on a plate", "video_id": "video10405", "sen_id": 255330}, {"caption": "a man is talking about making talapia during his cooking show", "video_id": "video10405", "sen_id": 255331}, {"caption": "a man squirts lemon over a fish dish he made", "video_id": "video10405", "sen_id": 255332}, {"caption": "a man putting a fork on a white plate with food on it", "video_id": "video10405", "sen_id": 255333}, {"caption": "man is in the kitchen and he is decorating the meal", "video_id": "video10405", "sen_id": 255334}, {"caption": "some food on a plate is being filmed for tv", "video_id": "video10405", "sen_id": 255335}, {"caption": "a spicy meal on a plate with lemon wedges being squeezed in for that tangy taste", "video_id": "video10405", "sen_id": 255336}, {"caption": "a person squeezing lime onto of a dish of food", "video_id": "video10405", "sen_id": 255337}, {"caption": "a man talks about what he will be cooking today as he displays a plate of food", "video_id": "video10405", "sen_id": 255338}, {"caption": "eugene thanks people for watching his show and introduces today s dish", "video_id": "video10405", "sen_id": 255339}, {"caption": "skiing down a snowy slope wearing a red jacket", "video_id": "video11823", "sen_id": 255340}, {"caption": "there is a video of a man skiing down a snowy mountain", "video_id": "video11823", "sen_id": 255341}, {"caption": "there is a man skating on a sunny day", "video_id": "video11823", "sen_id": 255342}, {"caption": "a person wearing a red jacket skating down the hill", "video_id": "video11823", "sen_id": 255343}, {"caption": "one man skating in the snow mountain very fastly", "video_id": "video11823", "sen_id": 255344}, {"caption": "bunch of people skying down the snowy mountain", "video_id": "video11823", "sen_id": 255345}, {"caption": "people having fun and speeding down hill on skis in the snow all while doing tricks", "video_id": "video11823", "sen_id": 255346}, {"caption": "there is a red t-shirt man enjoying snow riding", "video_id": "video11823", "sen_id": 255347}, {"caption": "a man running on a mist wearing red color dress", "video_id": "video11823", "sen_id": 255348}, {"caption": "the close up of persons skis as they ski down a mountain", "video_id": "video11823", "sen_id": 255349}, {"caption": "there are many people who skiing in the snow covered mountains", "video_id": "video11823", "sen_id": 255350}, {"caption": "a men is doing skerting on snow mountain", "video_id": "video11823", "sen_id": 255351}, {"caption": "a person in red coat and black truses is shown skiing on snow while some music plays on", "video_id": "video11823", "sen_id": 255352}, {"caption": "a man is sketing in ice on a mountain", "video_id": "video11823", "sen_id": 255353}, {"caption": "a man in a red jacket is skiing down the slopes", "video_id": "video11823", "sen_id": 255354}, {"caption": "there is a man doing some tricks on a skate board", "video_id": "video11823", "sen_id": 255355}, {"caption": "men is doing ice skating and falling from top mountain", "video_id": "video11823", "sen_id": 255356}, {"caption": "someone is skiing down a large snow covered hill fast", "video_id": "video11823", "sen_id": 255357}, {"caption": "a person wearing red dress is skiing in hilly areas", "video_id": "video11823", "sen_id": 255358}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video11823", "sen_id": 255359}, {"caption": "one guy is texting on a cell phone and the another guy walks by looks back at him as he passes and flips him off and throws rock at the other and the other guy never notices and gets into car", "video_id": "video12755", "sen_id": 255360}, {"caption": "a man waiting for the car and the car is come to pickup him", "video_id": "video12755", "sen_id": 255361}, {"caption": "two men in plaid button up shirts with rolled sleeves pass each other and exchange words in a foreign language", "video_id": "video12755", "sen_id": 255362}, {"caption": "men crossing the other person and throwing stone on him and he getting into the car", "video_id": "video12755", "sen_id": 255363}, {"caption": "a man walking around town playing on his phone", "video_id": "video12755", "sen_id": 255364}, {"caption": "two men in various places across third world city", "video_id": "video12755", "sen_id": 255365}, {"caption": "two boys are crossing each other one of them is busy using a mobile the other boy throws a stone on him which he ignores", "video_id": "video12755", "sen_id": 255366}, {"caption": "two man are going together", "video_id": "video12755", "sen_id": 255367}, {"caption": "a man is texting while walking not aware of things around him", "video_id": "video12755", "sen_id": 255368}, {"caption": "two men are walking past each other dirt sidewalk and one throws dirt at another then one gets picked up by a white car", "video_id": "video12755", "sen_id": 255369}, {"caption": "two young fellows walking in opposite directions and one do not mind the other", "video_id": "video12755", "sen_id": 255370}, {"caption": "a man is paying close attention to his phone and one man walking by throws a stone at him then a person in a white car pulls up and beeps at him and he approaches the car", "video_id": "video12755", "sen_id": 255371}, {"caption": "two men in white shirts walking past each other and then getting in a car", "video_id": "video12755", "sen_id": 255372}, {"caption": "an indian man walks along a path looking at his phone while he walks", "video_id": "video12755", "sen_id": 255373}, {"caption": "a man texting on his phone waits for his ride", "video_id": "video12755", "sen_id": 255374}, {"caption": "there is a white shirt man walking towards a building", "video_id": "video12755", "sen_id": 255375}, {"caption": "two people pass each other then later a man gets into a car", "video_id": "video12755", "sen_id": 255376}, {"caption": "man walks another man crosses him one man uses mobile phone he said what is this", "video_id": "video12755", "sen_id": 255377}, {"caption": "a video movie scene person walking throwing stone car coming and picking him displaying on screen", "video_id": "video12755", "sen_id": 255378}, {"caption": "a man in a white car is out side a place", "video_id": "video12755", "sen_id": 255379}, {"caption": "a woman chopping a white radish and cucumber", "video_id": "video12904", "sen_id": 255380}, {"caption": "a person chops an onion and a cucumber into small slices on a wooden cutting board", "video_id": "video12904", "sen_id": 255381}, {"caption": "a man cutting the vegetables and explain how is easy cutting", "video_id": "video12904", "sen_id": 255382}, {"caption": "in a kitchen someone is slicing a vegetables carefully with other vegetables on the desk", "video_id": "video12904", "sen_id": 255383}, {"caption": "a girl inside kitchen cutting cucumber into pieces vegetables to prepare dish to serve to cook displaying on screen", "video_id": "video12904", "sen_id": 255384}, {"caption": "some one in a kitchen slicing some vegetables carefully", "video_id": "video12904", "sen_id": 255385}, {"caption": "person cutting objects into small pieces", "video_id": "video12904", "sen_id": 255386}, {"caption": "a woman shops vegetable as she gives instruction on making a dish", "video_id": "video12904", "sen_id": 255387}, {"caption": "man slicing the vegetables on big brown desk", "video_id": "video12904", "sen_id": 255388}, {"caption": "vegetables are cut very carefully and neatly with a knife and a wooden plank", "video_id": "video12904", "sen_id": 255389}, {"caption": "in the kitchen a woman slicing some vegetables", "video_id": "video12904", "sen_id": 255390}, {"caption": "a lady slicing vegetables into small peices", "video_id": "video12904", "sen_id": 255391}, {"caption": "a person is cutting the vegetalble on the wooden material at kithchen", "video_id": "video12904", "sen_id": 255392}, {"caption": "someone is cutting radish in knife on chopping board", "video_id": "video12904", "sen_id": 255393}, {"caption": "a person is cutting a cucumber on a cutting board", "video_id": "video12904", "sen_id": 255394}, {"caption": "a men is cutting vegetables with knife on a wooden board", "video_id": "video12904", "sen_id": 255395}, {"caption": "a lady cutting some vegetable in her kitchen to prepare a dish", "video_id": "video12904", "sen_id": 255396}, {"caption": "a man in a kitchen cutting up several different items", "video_id": "video12904", "sen_id": 255397}, {"caption": "a woman is slicing radishes and cucumbers on a wooden cutting board", "video_id": "video12904", "sen_id": 255398}, {"caption": "someone with a knife is chopping up food", "video_id": "video12904", "sen_id": 255399}, {"caption": "two motorcycles are speeding down the highway while one of them pops a wheelie", "video_id": "video11827", "sen_id": 255400}, {"caption": "a man drives his motor bike in the wheelie position for an extended period of time", "video_id": "video11827", "sen_id": 255401}, {"caption": "a man in green and motorcycle helmet is doing a wheelie while standing on his legs on top of a motorcycle", "video_id": "video11827", "sen_id": 255402}, {"caption": "a motorcycle rider performs a wheelie on a public road", "video_id": "video11827", "sen_id": 255403}, {"caption": "a guy is doing a wheelie on his motorcycle", "video_id": "video11827", "sen_id": 255404}, {"caption": "two persons are riding motor bike with students on the road", "video_id": "video11827", "sen_id": 255405}, {"caption": "a person is doing a motorcycle stunt in the middle of a road", "video_id": "video11827", "sen_id": 255406}, {"caption": "a man wearing helmet riding his bike on a road with front tyre is up and riding the bike with single tyre", "video_id": "video11827", "sen_id": 255407}, {"caption": "two bikers are racing on the road and one of the biker is wheeling on the bike", "video_id": "video11827", "sen_id": 255408}, {"caption": "a man is doing wheeling the bike on road", "video_id": "video11827", "sen_id": 255409}, {"caption": "there is a man riding bike with a helmet", "video_id": "video11827", "sen_id": 255410}, {"caption": "a man with a motorcycle ride it dangerously on a real street", "video_id": "video11827", "sen_id": 255411}, {"caption": "one motorcycle rider is riding a wheelie down the highway while standing on top of the seat and another motorcycle rider rides down the highway beside the person riding the wheelie", "video_id": "video11827", "sen_id": 255412}, {"caption": "a bike race is going on the road and one man driving with standing position", "video_id": "video11827", "sen_id": 255413}, {"caption": "a guy is doing tricks on his motor cycle", "video_id": "video11827", "sen_id": 255414}, {"caption": "there is a man standing and riding bike risky", "video_id": "video11827", "sen_id": 255415}, {"caption": "a motorcyclists pops the front of their bike up on the road", "video_id": "video11827", "sen_id": 255416}, {"caption": "a person on a motorcycle doing a wheelie down the freeway", "video_id": "video11827", "sen_id": 255417}, {"caption": "a man is driving a bike in single wheel by standing on the bike and another is driving with him", "video_id": "video11827", "sen_id": 255418}, {"caption": "a guy on a motorcycle is riding the streets", "video_id": "video11827", "sen_id": 255419}, {"caption": "a man watching people hug then a man hiding and various people looking up and men talking", "video_id": "video12971", "sen_id": 255420}, {"caption": "a old man wearing a spectacle talking to a young boy", "video_id": "video12971", "sen_id": 255421}, {"caption": "the older man wearing the eye glasses interact with many people", "video_id": "video12971", "sen_id": 255422}, {"caption": "a man looks out a train window to sees a woman in a printed blue skirt embrace a man in a tan coat on the platform", "video_id": "video12971", "sen_id": 255423}, {"caption": "a ontage of shots from various scenes throughout the film cloud atlas", "video_id": "video12971", "sen_id": 255424}, {"caption": "an old man reminisces about the love of his life to another man a younger man that man is tom hanks", "video_id": "video12971", "sen_id": 255425}, {"caption": "there is a mature woman romancing with a man", "video_id": "video12971", "sen_id": 255426}, {"caption": "a old man seeing the lady hugs someone else", "video_id": "video12971", "sen_id": 255427}, {"caption": "the old man looking smart express something sentimentally and he others are watch it seriously", "video_id": "video12971", "sen_id": 255428}, {"caption": "a man watches a couple hug and spies on a woman then a man speaks to another man at a table", "video_id": "video12971", "sen_id": 255429}, {"caption": "different kinds of animals are here and it is a beautiful sight", "video_id": "video12971", "sen_id": 255430}, {"caption": "a woman is embracing a man while a man on a train watch", "video_id": "video12971", "sen_id": 255431}, {"caption": "a old man sees a couple hugging and few more scenes of a movie", "video_id": "video12971", "sen_id": 255432}, {"caption": "a gentleman speaking about the love of his life", "video_id": "video12971", "sen_id": 255433}, {"caption": "a man watches another man hug a woman", "video_id": "video12971", "sen_id": 255434}, {"caption": "a segment from a trailer of a romantic tom hanks movie", "video_id": "video12971", "sen_id": 255435}, {"caption": "a man and woman hugging followed by people talking", "video_id": "video12971", "sen_id": 255436}, {"caption": "movie trailer staring tom hanks halle berry and susan sarandon", "video_id": "video12971", "sen_id": 255437}, {"caption": "a man talking about what might have happened to the love of his life", "video_id": "video12971", "sen_id": 255438}, {"caption": "an elderly man asks what happened to the love of his life and tom hanks and hali berry appear", "video_id": "video12971", "sen_id": 255439}, {"caption": "boiling noodle in a frying pan get tomatoes added to it and stirred", "video_id": "video11111", "sen_id": 255440}, {"caption": "a chef explaining the ingredients to add to the noodles", "video_id": "video11111", "sen_id": 255441}, {"caption": "a woman is making a spicy noodle dish", "video_id": "video11111", "sen_id": 255442}, {"caption": "some noodles or sprouts are simmering in a pot while someone adds tomatoes and other ingredients into the mix", "video_id": "video11111", "sen_id": 255443}, {"caption": "a woman adds ingredients to a boiling pot of noodles", "video_id": "video11111", "sen_id": 255444}, {"caption": "noodles and assorted ingredients being cooked inside a silver pan", "video_id": "video11111", "sen_id": 255445}, {"caption": "there is a woman making a tasty dish in the kitchen", "video_id": "video11111", "sen_id": 255446}, {"caption": "a woman is adding ingredients into a pot while she talks", "video_id": "video11111", "sen_id": 255447}, {"caption": "someone is pouring different ingredients into a pot in order to cook a dish", "video_id": "video11111", "sen_id": 255448}, {"caption": "a woman speaking as she adds things to a boiling pot of food", "video_id": "video11111", "sen_id": 255449}, {"caption": "there is a woman cooking noodles and tomatoes in a pot with boiling water", "video_id": "video11111", "sen_id": 255450}, {"caption": "a woman is adding tomatoes and red chili to boiling noodles", "video_id": "video11111", "sen_id": 255451}, {"caption": "a woman is cooking noodles in a kitchen", "video_id": "video11111", "sen_id": 255452}, {"caption": "a lady who is cooking what looks to be yummy spaghetti", "video_id": "video11111", "sen_id": 255453}, {"caption": "yummy looking dish with noodles and tomatoes being stirred by the cook", "video_id": "video11111", "sen_id": 255454}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11111", "sen_id": 255455}, {"caption": "a woman adds additional ingredients to a cooking pot of noodles", "video_id": "video11111", "sen_id": 255456}, {"caption": "a woman preparing an indian dish in a large metal pot while she adds spices and tomatoes to the onions", "video_id": "video11111", "sen_id": 255457}, {"caption": "a pan sizzling hot with what looks like noodles gets tomatoes added then a variety of 3 seasonings that were already measured out on a plate", "video_id": "video11111", "sen_id": 255458}, {"caption": "a tomato is cut into the pieces and boiled along woth the noodles and a garam masala is added to it", "video_id": "video11111", "sen_id": 255459}, {"caption": "a big dog and a small dog barking at a statue", "video_id": "video12675", "sen_id": 255460}, {"caption": "all dogs are walking on a room", "video_id": "video12675", "sen_id": 255461}, {"caption": "a slender brown dog a fluffy white dog and a small tan dog approach a brown inflated animal in a minimalist home and are intimidated", "video_id": "video12675", "sen_id": 255462}, {"caption": "many dogs roaming around and barking on a dog sculpture", "video_id": "video12675", "sen_id": 255463}, {"caption": "dogs in the house are feeling apprehensive watching the clay statue of an animal and keep barking", "video_id": "video12675", "sen_id": 255464}, {"caption": "a monkey is playing the full house on sofa", "video_id": "video12675", "sen_id": 255465}, {"caption": "two dogs nervously react to a prop shaped exactly like a domestic pet", "video_id": "video12675", "sen_id": 255466}, {"caption": "a dogs are make sound by seeing with a statue dog", "video_id": "video12675", "sen_id": 255467}, {"caption": "three dogs walk down wall and are wary of a toy dog", "video_id": "video12675", "sen_id": 255468}, {"caption": "inside a very clean and neat house there were two dogs", "video_id": "video12675", "sen_id": 255469}, {"caption": "three other dog are being intimidated by the dummy of another dog", "video_id": "video12675", "sen_id": 255470}, {"caption": "a large dog walks around a corner into a room followed by two smaller dogs", "video_id": "video12675", "sen_id": 255471}, {"caption": "dog barking seeing a big toy dog", "video_id": "video12675", "sen_id": 255472}, {"caption": "the three dogs are barking at loud", "video_id": "video12675", "sen_id": 255473}, {"caption": "in the house one dog with two little dog enter the room and afraid to see one statue", "video_id": "video12675", "sen_id": 255474}, {"caption": "a large dog inside a building is barking at a statue", "video_id": "video12675", "sen_id": 255475}, {"caption": "few dogs are coming from the room in", "video_id": "video12675", "sen_id": 255476}, {"caption": "dogs walking and barking in a house", "video_id": "video12675", "sen_id": 255477}, {"caption": "a dog walks over white tile flooring", "video_id": "video12675", "sen_id": 255478}, {"caption": "a dog faces off with an inflatable alpaca", "video_id": "video12675", "sen_id": 255479}, {"caption": "dr kristen lupoli discusses how patients can deal with roscea a skin condition", "video_id": "video10996", "sen_id": 255480}, {"caption": "the doctor in blue dress talking about the irritations on the nose skin and about the medications", "video_id": "video10996", "sen_id": 255481}, {"caption": "a woman in a blue shirt giving an interview about rosacea", "video_id": "video10996", "sen_id": 255482}, {"caption": "a buised nose is shown a woman is speaking text appears underneath her", "video_id": "video10996", "sen_id": 255483}, {"caption": "a girl in blue dress wearing color cloth speaking on topic medication skin and boy still image of face skin displaying on screen", "video_id": "video10996", "sen_id": 255484}, {"caption": "rosacea a skin condition that can be treated with medication", "video_id": "video10996", "sen_id": 255485}, {"caption": "a woman in a blue shirt talks about rosacea and how to treat it", "video_id": "video10996", "sen_id": 255486}, {"caption": "a dermatologist discusses a skin disease that is not very treatable", "video_id": "video10996", "sen_id": 255487}, {"caption": "a woman in a green dress discussing a rosacea treatment", "video_id": "video10996", "sen_id": 255488}, {"caption": "a woman in a turquoise top is speaking about rosatia", "video_id": "video10996", "sen_id": 255489}, {"caption": "a doctor talks about rosatia on peoples noses", "video_id": "video10996", "sen_id": 255490}, {"caption": "a woman is speaking and she is sitting", "video_id": "video10996", "sen_id": 255491}, {"caption": "a woman is interviewed about stuff she knows a lot about", "video_id": "video10996", "sen_id": 255492}, {"caption": "a female doctor explains the truth about rosacea and its treatments", "video_id": "video10996", "sen_id": 255493}, {"caption": "sexy brunette in green dress talking to the camera", "video_id": "video10996", "sen_id": 255494}, {"caption": "the woman in blue dress is talking something in the room", "video_id": "video10996", "sen_id": 255495}, {"caption": "a bruised nose is show a woman in a green shirt is speaking", "video_id": "video10996", "sen_id": 255496}, {"caption": "a woman in green is speaking about some cure related to skin", "video_id": "video10996", "sen_id": 255497}, {"caption": "a doctor explains that rosacia is treatable but will recur", "video_id": "video10996", "sen_id": 255498}, {"caption": "a woman in a green shirt is sitting down", "video_id": "video10996", "sen_id": 255499}, {"caption": "a computer says a recipe while a black woman makes it", "video_id": "video10977", "sen_id": 255500}, {"caption": "a lady with a blue scarf on her head explains how to prepare a dish using parsley and garlic to make a paste", "video_id": "video10977", "sen_id": 255501}, {"caption": "a african women in pink dress preparing some recipe in her kitchen", "video_id": "video10977", "sen_id": 255502}, {"caption": "two team players are playing rugby on ground", "video_id": "video10977", "sen_id": 255503}, {"caption": "a woman in a kitchen showing how to make traditional food", "video_id": "video10977", "sen_id": 255504}, {"caption": "a woman in pink dress making a dish in the kitchen", "video_id": "video10977", "sen_id": 255505}, {"caption": "a african housewife is cooking a dish in her kitchen", "video_id": "video10977", "sen_id": 255506}, {"caption": "an african women preparing some dish in her kitchen", "video_id": "video10977", "sen_id": 255507}, {"caption": "one women make a recipe add salt pepper", "video_id": "video10977", "sen_id": 255508}, {"caption": "a woman grinds parsley in mortar an pestle with other spices then prepares meat", "video_id": "video10977", "sen_id": 255509}, {"caption": "a person is putting food in a bowl", "video_id": "video10977", "sen_id": 255510}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10977", "sen_id": 255511}, {"caption": "a woman is in a tiled kitchen placing filling ingredients from a bowl with a floral pattern in a mortar for grinding with a pestle", "video_id": "video10977", "sen_id": 255512}, {"caption": "one women make a recipe with parsley and black pepper and salt", "video_id": "video10977", "sen_id": 255513}, {"caption": "a woman with pink dressing is preparing a dish with explanation", "video_id": "video10977", "sen_id": 255514}, {"caption": "a person is sticking some stuff in a jar", "video_id": "video10977", "sen_id": 255515}, {"caption": "a woman is demonstrating how to make a dish with parsley garlic cloves and fish", "video_id": "video10977", "sen_id": 255516}, {"caption": "a voice over translation of a african woman s cooking instructions", "video_id": "video10977", "sen_id": 255517}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video10977", "sen_id": 255518}, {"caption": "a woman is talking about how to prepare an african dish", "video_id": "video10977", "sen_id": 255519}, {"caption": "a news reporter interviews a young women by using a video conference", "video_id": "video11000", "sen_id": 255520}, {"caption": "a reporter in a dark dress interviews a guest over a video screen about a charity", "video_id": "video11000", "sen_id": 255521}, {"caption": "a woman sitting in a room talking with another woman on a big screen", "video_id": "video11000", "sen_id": 255522}, {"caption": "a news woman is interviewing a woman that appears via telecast", "video_id": "video11000", "sen_id": 255523}, {"caption": "a woman is interviewing another lady via video chat", "video_id": "video11000", "sen_id": 255524}, {"caption": "a news reporter interviews a woman who does charity work with children", "video_id": "video11000", "sen_id": 255525}, {"caption": "a woman is doing an interview with a bangladesh woman", "video_id": "video11000", "sen_id": 255526}, {"caption": "a lady in the news channel asks question to a bangladeshi lady who climbed everest", "video_id": "video11000", "sen_id": 255527}, {"caption": "a vedio conference with a bangladeshi youngest women climber and her story telecast in a news channel", "video_id": "video11000", "sen_id": 255528}, {"caption": "a bbc new anchor is interviewing a lady from bangladeshi about work with her charity", "video_id": "video11000", "sen_id": 255529}, {"caption": "a lady talking with blue dress", "video_id": "video11000", "sen_id": 255530}, {"caption": "a woman with a blue top is speaking to a woman on a monitor", "video_id": "video11000", "sen_id": 255531}, {"caption": "a blonde woman interviewing a woman on a monitor", "video_id": "video11000", "sen_id": 255532}, {"caption": "a woman in a blue top sits in a news studio interviewing a woman on a video call on a large wall monitor", "video_id": "video11000", "sen_id": 255533}, {"caption": "woman on news station interviewing other woman using skype", "video_id": "video11000", "sen_id": 255534}, {"caption": "a lady is sitting and interviewing an another lady through a video chat", "video_id": "video11000", "sen_id": 255535}, {"caption": "a woman is taking a interview with a another woman in the tv channel", "video_id": "video11000", "sen_id": 255536}, {"caption": "a woman news anchor is interviewing an indian woman", "video_id": "video11000", "sen_id": 255537}, {"caption": "a woman sits at a desk and interviews a young lady", "video_id": "video11000", "sen_id": 255538}, {"caption": "the woman talks to a woman she is interviewing about a contest", "video_id": "video11000", "sen_id": 255539}, {"caption": "two men sit around a pot of food on the side of the road", "video_id": "video11763", "sen_id": 255540}, {"caption": "a person is mixing the gravy and then pours it into a plate for serving customers in an open restuarant", "video_id": "video11763", "sen_id": 255541}, {"caption": "big pot man boiled water and added meals i ti", "video_id": "video11763", "sen_id": 255542}, {"caption": "an on street chef puts sauce on a bowl of meat", "video_id": "video11763", "sen_id": 255543}, {"caption": "a man is putting food into a clay bowl", "video_id": "video11763", "sen_id": 255544}, {"caption": "a bowl spoon mixing dish eating person sitting prepared to serve to eat displaying on screen", "video_id": "video11763", "sen_id": 255545}, {"caption": "there is a man serving food to somone", "video_id": "video11763", "sen_id": 255546}, {"caption": "people are sitting and eating at an outdoor restaurant", "video_id": "video11763", "sen_id": 255547}, {"caption": "people sitting on cots and eating food", "video_id": "video11763", "sen_id": 255548}, {"caption": "a man prepares bowls of food while people sit", "video_id": "video11763", "sen_id": 255549}, {"caption": "delicious chicken curry is taking out of earthen pot and being served in village restaurant", "video_id": "video11763", "sen_id": 255550}, {"caption": "a person is taking food from a pot in the restaurant", "video_id": "video11763", "sen_id": 255551}, {"caption": "a native person talks about situations at the place he is visiting frequently", "video_id": "video11763", "sen_id": 255552}, {"caption": "a pot being stirred and men sitting and standing in an eating area", "video_id": "video11763", "sen_id": 255553}, {"caption": "a person is making some receipes in the outside of the road skirts and many of them are having food in the outside area", "video_id": "video11763", "sen_id": 255554}, {"caption": "a man talking about the food area of a village", "video_id": "video11763", "sen_id": 255555}, {"caption": "a man stirs a dish in a large red pot to serve", "video_id": "video11763", "sen_id": 255556}, {"caption": "a man is stirring food and people are sitting around eating it", "video_id": "video11763", "sen_id": 255557}, {"caption": "a man is eating food in a brown mud plates", "video_id": "video11763", "sen_id": 255558}, {"caption": "persons eating non-vegetarian food in a shop in the sunlight", "video_id": "video11763", "sen_id": 255559}, {"caption": "a young woman in a two piece swimsuit cleans a bag in puddle of water", "video_id": "video12979", "sen_id": 255560}, {"caption": "a woman in a bathing suit rinses a big in a stream", "video_id": "video12979", "sen_id": 255561}, {"caption": "a woman is taking water with a carry cover on the forest area", "video_id": "video12979", "sen_id": 255562}, {"caption": "a woman in the forest is catching something in the small river", "video_id": "video12979", "sen_id": 255563}, {"caption": "a woman is collecting water within a stream using a green bag", "video_id": "video12979", "sen_id": 255564}, {"caption": "a woman wearing a bikini is shaking a bag of water and pouring it into a river", "video_id": "video12979", "sen_id": 255565}, {"caption": "a women wearing bikini dress is cleaning the paper bag with the water in the nearby pond", "video_id": "video12979", "sen_id": 255566}, {"caption": "there is a woman in bra and pantie", "video_id": "video12979", "sen_id": 255567}, {"caption": "lady in bathing suit collecting rocks in a river with a green bag", "video_id": "video12979", "sen_id": 255568}, {"caption": "the lady in bikini dress rinse something in the water using the green pack", "video_id": "video12979", "sen_id": 255569}, {"caption": "a woman is in a river and rinsing in a green bag", "video_id": "video12979", "sen_id": 255570}, {"caption": "a woman fills a green container with water and then empties it", "video_id": "video12979", "sen_id": 255571}, {"caption": "there is a women in hot dress playing with water", "video_id": "video12979", "sen_id": 255572}, {"caption": "a woman in two piece dress is washing some thing in the running water", "video_id": "video12979", "sen_id": 255573}, {"caption": "a woman is cleaning her clothes in a small creek", "video_id": "video12979", "sen_id": 255574}, {"caption": "there is a water falling from a big mountain", "video_id": "video12979", "sen_id": 255575}, {"caption": "there is a woman rinsing herself in water in a forest", "video_id": "video12979", "sen_id": 255576}, {"caption": "women with long black hair washing out a green bag in her bathing suit", "video_id": "video12979", "sen_id": 255577}, {"caption": "a female is washing a green bag in a stream of water in jungle", "video_id": "video12979", "sen_id": 255578}, {"caption": "a woman is doing thigns out in a jungle", "video_id": "video12979", "sen_id": 255579}, {"caption": "a man is demonstrating something called dad gym", "video_id": "video11605", "sen_id": 255580}, {"caption": "a man with a beard is holding a baby in in a living room", "video_id": "video11605", "sen_id": 255581}, {"caption": "a kid is playing with his dad on the room", "video_id": "video11605", "sen_id": 255582}, {"caption": "a man holding a baby is showing how to work out the triceps", "video_id": "video11605", "sen_id": 255583}, {"caption": "a man is standing and holding a baby and giving info about items needed for exercise", "video_id": "video11605", "sen_id": 255584}, {"caption": "a father demonstrates how to use his infant to exercise his biceps", "video_id": "video11605", "sen_id": 255585}, {"caption": "a man is using his baby to exercise", "video_id": "video11605", "sen_id": 255586}, {"caption": "there is a man man with muscles playing with his son", "video_id": "video11605", "sen_id": 255587}, {"caption": "fun home gym free for dads who have small children", "video_id": "video11605", "sen_id": 255588}, {"caption": "a man with his baby son with a spoof on how to exercise at home", "video_id": "video11605", "sen_id": 255589}, {"caption": "interesting guy presenting the home gym including his little son", "video_id": "video11605", "sen_id": 255590}, {"caption": "there is a man playing with his baby inside the house", "video_id": "video11605", "sen_id": 255591}, {"caption": "a person with black dressing is speaking and lifting a small child is sitting violet chair with green dressing", "video_id": "video11605", "sen_id": 255592}, {"caption": "a dad works on an exercise program where he uses his son as his dumbbell", "video_id": "video11605", "sen_id": 255593}, {"caption": "man with short sleeve shirt carrying a baby in a seat", "video_id": "video11605", "sen_id": 255594}, {"caption": "a man describing dad gym by lifting his son in a chair to work his triceps", "video_id": "video11605", "sen_id": 255595}, {"caption": "there is a man playing with his son in a room", "video_id": "video11605", "sen_id": 255596}, {"caption": "a man is holding a baby and describing how to begin an exercise routine", "video_id": "video11605", "sen_id": 255597}, {"caption": "a man in a transformer shirt is holding a baby in a green outfit and repeatedly turning the baby back and forth", "video_id": "video11605", "sen_id": 255598}, {"caption": "a man carrying a baby in his arms is playing with him", "video_id": "video11605", "sen_id": 255599}, {"caption": "a chef with a blue shirt is slicing something green in the kitchen", "video_id": "video12653", "sen_id": 255600}, {"caption": "a male chef in a blue jacket shows a woman in a pink jacket how to slice a vegetable into small pieces", "video_id": "video12653", "sen_id": 255601}, {"caption": "a cooking show with a chef and a woman observing the chef cuts up a vegetable", "video_id": "video12653", "sen_id": 255602}, {"caption": "this video confirm to so-many men cook in house", "video_id": "video12653", "sen_id": 255603}, {"caption": "a pair of chefs work on a recipe together in their kitchen", "video_id": "video12653", "sen_id": 255604}, {"caption": "a man in blue color dress girl in red wearing inside kitchen cutting vegetables with knife preparing dish to cook to serve to eat displaying on screen", "video_id": "video12653", "sen_id": 255605}, {"caption": "there is a sheaf in blue dressing making a dish with a woman", "video_id": "video12653", "sen_id": 255606}, {"caption": "a chef in a blue shirt shows how to prepare an ethnic dish", "video_id": "video12653", "sen_id": 255607}, {"caption": "chef is cooking very tasty food cutting veg", "video_id": "video12653", "sen_id": 255608}, {"caption": "an indian chef demonstrates a recipe he is working on to a woman", "video_id": "video12653", "sen_id": 255609}, {"caption": "a chef in blue dress is ready to fry something in a pan of oil in a cookery show", "video_id": "video12653", "sen_id": 255610}, {"caption": "a chef in blue is talking to a woman in a pink shirt and chopping up peppers in a kitchen", "video_id": "video12653", "sen_id": 255611}, {"caption": "a man explain and how is prepare the food", "video_id": "video12653", "sen_id": 255612}, {"caption": "a man is cooking and a girl is helping him", "video_id": "video12653", "sen_id": 255613}, {"caption": "a large chef in blue shows a woman in red how to cut up green chiles", "video_id": "video12653", "sen_id": 255614}, {"caption": "a chef is demonstrating how to make a dish from chopping green vegetables", "video_id": "video12653", "sen_id": 255615}, {"caption": "a large man in a blue shirt is explaining to a woman how to cook something", "video_id": "video12653", "sen_id": 255616}, {"caption": "a tamil chef is explain about recipe in the sun tv", "video_id": "video12653", "sen_id": 255617}, {"caption": "black guy with tied hair cutting veggies and making traditional indian meal", "video_id": "video12653", "sen_id": 255618}, {"caption": "a fat man wearing blue apron is teaching a women how to cook", "video_id": "video12653", "sen_id": 255619}, {"caption": "a man wearing a bike helmet is in motion while talking and looking at some papers", "video_id": "video11587", "sen_id": 255620}, {"caption": "a man in grey t-shirt and a cap is moving around in a vehicle", "video_id": "video11587", "sen_id": 255621}, {"caption": "a cyclist talks as he ride his bicycle with a head gear on his head", "video_id": "video11587", "sen_id": 255622}, {"caption": "one man cycling fastly in road watch it", "video_id": "video11587", "sen_id": 255623}, {"caption": "a man wearing a helmet riding bike in a neighbor hood", "video_id": "video11587", "sen_id": 255624}, {"caption": "a man wearing helmet and black dress ryding cycle book in his hand", "video_id": "video11587", "sen_id": 255625}, {"caption": "a t-shirt man traveling in a cycle with helmet", "video_id": "video11587", "sen_id": 255626}, {"caption": "a man black color dressed riding on a cycle", "video_id": "video11587", "sen_id": 255627}, {"caption": "a man is going in the bicycle and talking", "video_id": "video11587", "sen_id": 255628}, {"caption": "a man with a helmet is riding his bike man is talking about education", "video_id": "video11587", "sen_id": 255629}, {"caption": "here a young man in black dress and helmet talks about students and education", "video_id": "video11587", "sen_id": 255630}, {"caption": "a boy is riding bicycle along with her luggage", "video_id": "video11587", "sen_id": 255631}, {"caption": "a man rides a bicycle while talking about high school teachers and students", "video_id": "video11587", "sen_id": 255632}, {"caption": "a man with a helmet on is riding on a bike", "video_id": "video11587", "sen_id": 255633}, {"caption": "a man with beard is riding a bike wearing sports helmet and talking to camera", "video_id": "video11587", "sen_id": 255634}, {"caption": "a man wearing helmet holding map is moving on a vehicle along the road and talking", "video_id": "video11587", "sen_id": 255635}, {"caption": "a young man bikes around outside with a beard and a helmet", "video_id": "video11587", "sen_id": 255636}, {"caption": "a man wearing the shirt and helmet ride the cycle by checking route", "video_id": "video11587", "sen_id": 255637}, {"caption": "a boy wearing helmet in black dress ryding in bycycle on road speaking and book in hands", "video_id": "video11587", "sen_id": 255638}, {"caption": "a man with a beard is riding a bike", "video_id": "video11587", "sen_id": 255639}, {"caption": "three teenage boys stand in front of motorcycles speaking to a camera person", "video_id": "video10113", "sen_id": 255640}, {"caption": "a man in a blue t-shirt talking to his friend", "video_id": "video10113", "sen_id": 255641}, {"caption": "three boys having a conversation while standing next to motorcycles", "video_id": "video10113", "sen_id": 255642}, {"caption": "three asian boys are standing near a large group of parked motorbikes", "video_id": "video10113", "sen_id": 255643}, {"caption": "a boys in blue dress wearing cloths standing and speaking beside number of bikes parking displaying on screen", "video_id": "video10113", "sen_id": 255644}, {"caption": "the three friends were surrounded by motorbikes of all styles", "video_id": "video10113", "sen_id": 255645}, {"caption": "there are some students standing nearby parking area", "video_id": "video10113", "sen_id": 255646}, {"caption": "one boy talking with another two boys near", "video_id": "video10113", "sen_id": 255647}, {"caption": "three teenage boys from asia have a conversation in english in a parking lot", "video_id": "video10113", "sen_id": 255648}, {"caption": "four boys are in a hallway then switches to three boys talking outside rows of motorbikes are aligned up and down the sides of the area where to boys are talking", "video_id": "video10113", "sen_id": 255649}, {"caption": "three guys standing in a parking lot of motorcycles", "video_id": "video10113", "sen_id": 255650}, {"caption": "there are three boys and both are talking about us", "video_id": "video10113", "sen_id": 255651}, {"caption": "a group of boys stand next a line of motorcycles under a carport while discussing the recent trip one of them took", "video_id": "video10113", "sen_id": 255652}, {"caption": "three kids stand by a motorcycle parking lot with bags", "video_id": "video10113", "sen_id": 255653}, {"caption": "three men having a conversation in a foreign language infront of a parking area for scooters", "video_id": "video10113", "sen_id": 255654}, {"caption": "a group of guys are outside talking about something", "video_id": "video10113", "sen_id": 255655}, {"caption": "three teenage boys stand in a lot filled with motorcycles having a discussion", "video_id": "video10113", "sen_id": 255656}, {"caption": "three young asian man talk with each other while standing in front of a row of scooters", "video_id": "video10113", "sen_id": 255657}, {"caption": "bunch of guys in tshirt talking at a parking lot", "video_id": "video10113", "sen_id": 255658}, {"caption": "some guys are talking outside a tent", "video_id": "video10113", "sen_id": 255659}, {"caption": "a cartoon cathedral with fireworks in the sky behind it a countdown appears from ten to one and then in gold the words happy new year appear", "video_id": "video10310", "sen_id": 255660}, {"caption": "fireworks exploding by a church steeple as numbers count doen from 10 to zero to welcome the new year", "video_id": "video10310", "sen_id": 255661}, {"caption": "there is a huge church with lights all around", "video_id": "video10310", "sen_id": 255662}, {"caption": "a visual countdown form 10 to new years set to a wintery back drop and archaic building", "video_id": "video10310", "sen_id": 255663}, {"caption": "a tower that has fireworks going off and a count down for new years", "video_id": "video10310", "sen_id": 255664}, {"caption": "there is a tall building in the background with animated lettering added that is a countdown from ten and the it says happy new year", "video_id": "video10310", "sen_id": 255665}, {"caption": "a countdown is mirrored with fireworks and an image of big ben", "video_id": "video10310", "sen_id": 255666}, {"caption": "new year count down starts from ten and ends up with the wishes", "video_id": "video10310", "sen_id": 255667}, {"caption": "happy new year coming after countdown", "video_id": "video10310", "sen_id": 255668}, {"caption": "there is a countdown with big gold numbers for new years", "video_id": "video10310", "sen_id": 255669}, {"caption": "a video of a tall building that looks like a church or tower that is celebrating the new year", "video_id": "video10310", "sen_id": 255670}, {"caption": "countdown of celebration of new year is being displayed with fireworks in the background", "video_id": "video10310", "sen_id": 255671}, {"caption": "the countdown to midnight on news years eve is animated", "video_id": "video10310", "sen_id": 255672}, {"caption": "the happy new year celebrations in 2010 which is in outstates", "video_id": "video10310", "sen_id": 255673}, {"caption": "interesting countdown to wish us happy new year with fireworks next to the tower", "video_id": "video10310", "sen_id": 255674}, {"caption": "some fire works are exploding in a place", "video_id": "video10310", "sen_id": 255675}, {"caption": "crackers are bloast and happy new year message displayed", "video_id": "video10310", "sen_id": 255676}, {"caption": "a crackers are cracking for a happy new year", "video_id": "video10310", "sen_id": 255677}, {"caption": "happy new year countown started from 10 9 and crackers busted and new year message shown", "video_id": "video10310", "sen_id": 255678}, {"caption": "numbers countdown to announce a happy new year", "video_id": "video10310", "sen_id": 255679}, {"caption": "a spider wrapping a cricket in a web that he will eat for dinner", "video_id": "video12850", "sen_id": 255680}, {"caption": "a black spider is biting the bottom of a dead winged bug", "video_id": "video12850", "sen_id": 255681}, {"caption": "a black widow spider attacking another insect in a green bowl", "video_id": "video12850", "sen_id": 255682}, {"caption": "a black spider that is attacking a captured bug", "video_id": "video12850", "sen_id": 255683}, {"caption": "the bee is attack the grasshoper in the table and the men is catch the video", "video_id": "video12850", "sen_id": 255684}, {"caption": "the black spider is eating other spider on the green surface", "video_id": "video12850", "sen_id": 255685}, {"caption": "a dead insect on the plastic bowl is shown in this video", "video_id": "video12850", "sen_id": 255686}, {"caption": "the black bug with long legs eats the white bug", "video_id": "video12850", "sen_id": 255687}, {"caption": "a black spider in a jar feeding on another insect", "video_id": "video12850", "sen_id": 255688}, {"caption": "a spider begins consuming an insect caught in its web", "video_id": "video12850", "sen_id": 255689}, {"caption": "a black widow spider is killing a bug", "video_id": "video12850", "sen_id": 255690}, {"caption": "the black spider eats the silver colored bug", "video_id": "video12850", "sen_id": 255691}, {"caption": "a person watches as a black spider eats a cricket", "video_id": "video12850", "sen_id": 255692}, {"caption": "a black spider is slowly eating a brown colored insect", "video_id": "video12850", "sen_id": 255693}, {"caption": "a large black spider attacks another large bug and kills it by repeatedly stinging it with poison", "video_id": "video12850", "sen_id": 255694}, {"caption": "a black widow spider attacks and bites a cricket", "video_id": "video12850", "sen_id": 255695}, {"caption": "a black spider is eating another helpless insect inside a container", "video_id": "video12850", "sen_id": 255696}, {"caption": "a small black spider sets near a shallow green bowl", "video_id": "video12850", "sen_id": 255697}, {"caption": "a spider trying to eat another insect on a small green plastic plate", "video_id": "video12850", "sen_id": 255698}, {"caption": "a person is showing spider closer to camera and and showing how it attacks its prey", "video_id": "video12850", "sen_id": 255699}, {"caption": "a man is talking to a woman and then begins to prepare a meal", "video_id": "video11689", "sen_id": 255700}, {"caption": "a young african man talks about a street food business that he runs", "video_id": "video11689", "sen_id": 255701}, {"caption": "a black women in yellow top is talking to someone", "video_id": "video11689", "sen_id": 255702}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11689", "sen_id": 255703}, {"caption": "a television channel reporter interviewing the road side food vendor", "video_id": "video11689", "sen_id": 255704}, {"caption": "a lady is talking to reporters outside by a fedex", "video_id": "video11689", "sen_id": 255705}, {"caption": "black guy in cap talking to the camera in the dark", "video_id": "video11689", "sen_id": 255706}, {"caption": "a black man is preparing food for a big out door party", "video_id": "video11689", "sen_id": 255707}, {"caption": "one man making a recipe in street near crowd", "video_id": "video11689", "sen_id": 255708}, {"caption": "a boy wearing hat and other boy in shop opening plastic bag and women holding mic", "video_id": "video11689", "sen_id": 255709}, {"caption": "a man on street wearing hat is eating and anohter man is cooking dish on stove", "video_id": "video11689", "sen_id": 255710}, {"caption": "debate between 5 people on the live talking to each other", "video_id": "video11689", "sen_id": 255711}, {"caption": "the man wears a hat and talks in the dark", "video_id": "video11689", "sen_id": 255712}, {"caption": "a street chef prepares a recipe at his stand and then puts the food into plastic containers", "video_id": "video11689", "sen_id": 255713}, {"caption": "someone is cutting tomatoesboiling pastas and in the end prepares an excellent dish", "video_id": "video11689", "sen_id": 255714}, {"caption": "a black woman on the street is being filmed", "video_id": "video11689", "sen_id": 255715}, {"caption": "men eating food and talking with someone", "video_id": "video11689", "sen_id": 255716}, {"caption": "a man being interviewed while cooking and serving food", "video_id": "video11689", "sen_id": 255717}, {"caption": "an african man on a busy street prepares food at a cart to sell to passers by", "video_id": "video11689", "sen_id": 255718}, {"caption": "a man with a hat eats outdoor as another man prepares more food for the crowd", "video_id": "video11689", "sen_id": 255719}, {"caption": "a man talks about data collection through an online presentation", "video_id": "video11294", "sen_id": 255720}, {"caption": "a man giving review on a data program", "video_id": "video11294", "sen_id": 255721}, {"caption": "a man is discussing information and data found online", "video_id": "video11294", "sen_id": 255722}, {"caption": "an animated graphic explaining how to do research using google and its streaming data platforms", "video_id": "video11294", "sen_id": 255723}, {"caption": "a screen cast of someone using various websites and charting data", "video_id": "video11294", "sen_id": 255724}, {"caption": "someone is talking and explaining while demonstrating a website", "video_id": "video11294", "sen_id": 255725}, {"caption": "data is being shown of 2007-2008 flu activity in the mid-atlantic region", "video_id": "video11294", "sen_id": 255726}, {"caption": "face book comments and the graph on flu activity is shown year on year", "video_id": "video11294", "sen_id": 255727}, {"caption": "video explaining different kinds of data that can be used in different ways", "video_id": "video11294", "sen_id": 255728}, {"caption": "a man is looking at and explaining flu statistics", "video_id": "video11294", "sen_id": 255729}, {"caption": "a graph is simulating actively streaming data measures as a narrator explains his company s work", "video_id": "video11294", "sen_id": 255730}, {"caption": "a man describing a computer that tracks streaming data of human activity for large groups", "video_id": "video11294", "sen_id": 255731}, {"caption": "someone is talking about the science with pictures and theoritically", "video_id": "video11294", "sen_id": 255732}, {"caption": "a man talking about streaming data while showing a graph of the 2007-2008 u flu activity", "video_id": "video11294", "sen_id": 255733}, {"caption": "a graph is being shown about something to people", "video_id": "video11294", "sen_id": 255734}, {"caption": "graphs showing data timeline and the voice of a man speaking about the science of that data", "video_id": "video11294", "sen_id": 255735}, {"caption": "a person looking up or researching something with graphs", "video_id": "video11294", "sen_id": 255736}, {"caption": "a software displaying on screen and mouse pointing towards screen graph displaying on screen", "video_id": "video11294", "sen_id": 255737}, {"caption": "a person is showing software in the computer", "video_id": "video11294", "sen_id": 255738}, {"caption": "a graph is showing some stuff to people", "video_id": "video11294", "sen_id": 255739}, {"caption": "cason daily drives a big wheeled pepsi truck and taunts p diddy", "video_id": "video11844", "sen_id": 255740}, {"caption": "a celebrity shows off his soda delivery truck to another celebrity", "video_id": "video11844", "sen_id": 255741}, {"caption": "a man walking in a sidewalk stops and takes off his sunglasses as a guy driving a pepsi truck hollers at him to check his new ride", "video_id": "video11844", "sen_id": 255742}, {"caption": "a person in yellow t shirt is going on a road and seeing pepsi vehicle", "video_id": "video11844", "sen_id": 255743}, {"caption": "ther eis a men in yellow tshirt looking for the men who is sitting in a pepsi comapny van", "video_id": "video11844", "sen_id": 255744}, {"caption": " in a yellow shirt walking down the street is hailed by a man driving a deliver truck with oversized tires", "video_id": "video11844", "sen_id": 255745}, {"caption": "the truck driver talking to the man walking becides the road", "video_id": "video11844", "sen_id": 255746}, {"caption": "the man walks on the side walk as the truck drives by him", "video_id": "video11844", "sen_id": 255747}, {"caption": "person in yellow shirt walks in street a pepsi tuck crosses at that time", "video_id": "video11844", "sen_id": 255748}, {"caption": "a man in yellow t shirt is looking at truck of pepsi", "video_id": "video11844", "sen_id": 255749}, {"caption": "a man in yellow tshirt walking in to the street", "video_id": "video11844", "sen_id": 255750}, {"caption": "a man wearing yellow color dress looking road", "video_id": "video11844", "sen_id": 255751}, {"caption": "a man in a loose yellow shirt walks past outdoor diners under black umbrellas by windows a driver leans out the window as his boxy soda truck", "video_id": "video11844", "sen_id": 255752}, {"caption": "a vedio clip of an advertisement about pepsi cold drink", "video_id": "video11844", "sen_id": 255753}, {"caption": "a man wearing yellow tee is watching a pepsi truck pass by", "video_id": "video11844", "sen_id": 255754}, {"caption": "a yellow color tshirt man walking in to the street", "video_id": "video11844", "sen_id": 255755}, {"caption": "a man with a yellow shirt looks at another man driving a pepsi truck", "video_id": "video11844", "sen_id": 255756}, {"caption": "one truck is coming diet pepsi road ways", "video_id": "video11844", "sen_id": 255757}, {"caption": "a man driving a pepsi van call another man to check his new van", "video_id": "video11844", "sen_id": 255758}, {"caption": "a man is looking at someone in a truck", "video_id": "video11844", "sen_id": 255759}, {"caption": "a man in a white shirt gives a lecture on technology", "video_id": "video11406", "sen_id": 255760}, {"caption": "a man wearing a white shirt on stage talking about technology", "video_id": "video11406", "sen_id": 255761}, {"caption": "a lecture done by a man on stage about technology", "video_id": "video11406", "sen_id": 255762}, {"caption": "a person talking in a stage infront of so many people", "video_id": "video11406", "sen_id": 255763}, {"caption": "a man in a white shirt answers what happens when technology is not good", "video_id": "video11406", "sen_id": 255764}, {"caption": "a man wearing a white shirt stands at a podium and speaks", "video_id": "video11406", "sen_id": 255765}, {"caption": "old guy in glasses talking at seminar to the audience", "video_id": "video11406", "sen_id": 255766}, {"caption": "a middle aged person in yellow shirt is explaining something", "video_id": "video11406", "sen_id": 255767}, {"caption": "a men in white tshirt is telling about something", "video_id": "video11406", "sen_id": 255768}, {"caption": "an old man in a white shirt discusses technology from a podium", "video_id": "video11406", "sen_id": 255769}, {"caption": "a man is on a stage talking about technology", "video_id": "video11406", "sen_id": 255770}, {"caption": "old guy in glasses with white shirt is talking at seminar to the audience", "video_id": "video11406", "sen_id": 255771}, {"caption": "a old man in white shirt explaining some matter in front of the dias", "video_id": "video11406", "sen_id": 255772}, {"caption": "a men wearing white shirt giving speech", "video_id": "video11406", "sen_id": 255773}, {"caption": "one old man is seriously talking in stage", "video_id": "video11406", "sen_id": 255774}, {"caption": "an old man wearing white shirt and a mic is giving speech", "video_id": "video11406", "sen_id": 255775}, {"caption": "an older man is giving a speech on technology", "video_id": "video11406", "sen_id": 255776}, {"caption": "a man talks in front of the audience he talks by saying that something special about the technology", "video_id": "video11406", "sen_id": 255777}, {"caption": "a professor is lecturing about the technology in the class room", "video_id": "video11406", "sen_id": 255778}, {"caption": "a guy behind a podium is giving a speech", "video_id": "video11406", "sen_id": 255779}, {"caption": "a lady sitting down among farm land enjoying the summer breeze", "video_id": "video12263", "sen_id": 255780}, {"caption": "a man in a bright polo shirt is touring a wine region", "video_id": "video12263", "sen_id": 255781}, {"caption": "there are some people wearing different outfil and walking on streets", "video_id": "video12263", "sen_id": 255782}, {"caption": "beautiful and big lake with sound in nature", "video_id": "video12263", "sen_id": 255783}, {"caption": "a man and woman is talking about a tourist spot", "video_id": "video12263", "sen_id": 255784}, {"caption": "tourists travel in european towns and visit a vineyard", "video_id": "video12263", "sen_id": 255785}, {"caption": "a man in blue tshirt taking pictures from the street", "video_id": "video12263", "sen_id": 255786}, {"caption": "different clips of a wine vineyard vacation are shown", "video_id": "video12263", "sen_id": 255787}, {"caption": "one man taking photos in beautiful gardens in", "video_id": "video12263", "sen_id": 255788}, {"caption": "a man is talking and a boat is moving in the lake water", "video_id": "video12263", "sen_id": 255789}, {"caption": "a man in blue t shirt with camera speaking and a women in red sea the garden", "video_id": "video12263", "sen_id": 255790}, {"caption": "a man in blue tshirt talking from the street", "video_id": "video12263", "sen_id": 255791}, {"caption": "a person carrying camera is traveling to places and participating in wine tasting and a women in orange dress is talking to the camera", "video_id": "video12263", "sen_id": 255792}, {"caption": "a group of friends drinking a liquor in the function", "video_id": "video12263", "sen_id": 255793}, {"caption": "a man and woman are talking about wine", "video_id": "video12263", "sen_id": 255794}, {"caption": "men in blue tshirt talking with camera in his hand", "video_id": "video12263", "sen_id": 255795}, {"caption": "the few people are enjoying the party in the hall", "video_id": "video12263", "sen_id": 255796}, {"caption": "these are going to tourist place and visit fruits", "video_id": "video12263", "sen_id": 255797}, {"caption": "a woman with blond hair is talking about her voyage and a man begins talking about wine tasting and cooking demonstrations", "video_id": "video12263", "sen_id": 255798}, {"caption": "a woman in an orange shirt is sitting down outside", "video_id": "video12263", "sen_id": 255799}, {"caption": "a person is running around a soccer field while hip hop music plays in the background", "video_id": "video11242", "sen_id": 255800}, {"caption": "a man in a black shirt and shorts is running on a green field", "video_id": "video11242", "sen_id": 255801}, {"caption": "a man wearing a black shirt jogging around a football field", "video_id": "video11242", "sen_id": 255802}, {"caption": "an athlete is training by running around the edges of a football field", "video_id": "video11242", "sen_id": 255803}, {"caption": "a men in black is running on open ground", "video_id": "video11242", "sen_id": 255804}, {"caption": "a player runs around the marked football field line", "video_id": "video11242", "sen_id": 255805}, {"caption": "a guy runs laps around a huge soccer field", "video_id": "video11242", "sen_id": 255806}, {"caption": "a man is running very fast around the ground", "video_id": "video11242", "sen_id": 255807}, {"caption": "a man ranning around field", "video_id": "video11242", "sen_id": 255808}, {"caption": "a young man exercises by running around a lined field", "video_id": "video11242", "sen_id": 255809}, {"caption": "an athletic man with a black t shirt and a shorts running on an open ground", "video_id": "video11242", "sen_id": 255810}, {"caption": "there is a player practicing in the groung before match", "video_id": "video11242", "sen_id": 255811}, {"caption": "on a flat large grass ground a man running along on the white colored line", "video_id": "video11242", "sen_id": 255812}, {"caption": "a young woman is conditioning by running around a large open lined field", "video_id": "video11242", "sen_id": 255813}, {"caption": "an athlete is practicing in a ground which has beautiful green grassland", "video_id": "video11242", "sen_id": 255814}, {"caption": "a person is running on a track for exercising", "video_id": "video11242", "sen_id": 255815}, {"caption": "a large playground is shown and a player runs around it", "video_id": "video11242", "sen_id": 255816}, {"caption": "the athlete practising the running race on the stadium ground", "video_id": "video11242", "sen_id": 255817}, {"caption": "a man is racing in a green grass ground", "video_id": "video11242", "sen_id": 255818}, {"caption": "a person in shorts is running around a field", "video_id": "video11242", "sen_id": 255819}, {"caption": "three people skiing quickly through a heavily wooded area then talking about it", "video_id": "video10221", "sen_id": 255820}, {"caption": "a man skis down a snowy hill between many bare trees", "video_id": "video10221", "sen_id": 255821}, {"caption": "a person with green slidder slides on the snow very fast and stops", "video_id": "video10221", "sen_id": 255822}, {"caption": "person is skiing on the snow near the trees", "video_id": "video10221", "sen_id": 255823}, {"caption": "a man is skiing down a slope with a lot of trees", "video_id": "video10221", "sen_id": 255824}, {"caption": "there is a man doing some tricks with skateboard", "video_id": "video10221", "sen_id": 255825}, {"caption": "two men ski through trees down a mountain", "video_id": "video10221", "sen_id": 255826}, {"caption": "a skier rides a slope and dodges trees in the snow with a friend", "video_id": "video10221", "sen_id": 255827}, {"caption": "a person skis down a precarious slope expertly dodging trees as the go", "video_id": "video10221", "sen_id": 255828}, {"caption": "people are skiing and recording their skiing while holding camera on head", "video_id": "video10221", "sen_id": 255829}, {"caption": "skiiers skiing down a trail in the cold winter snow", "video_id": "video10221", "sen_id": 255830}, {"caption": "people at a ski slope skiing", "video_id": "video10221", "sen_id": 255831}, {"caption": "a person skiing down a snowy slope with trees on both sides", "video_id": "video10221", "sen_id": 255832}, {"caption": "a person skates along the snow region of 41degree centigrades", "video_id": "video10221", "sen_id": 255833}, {"caption": "a male person skating in the snow forest following a person", "video_id": "video10221", "sen_id": 255834}, {"caption": "a person is skiing down a hill with a second person very fast", "video_id": "video10221", "sen_id": 255835}, {"caption": "two men were doing skating on the snow covered hills", "video_id": "video10221", "sen_id": 255836}, {"caption": "person is skiing in the mountain near the trees", "video_id": "video10221", "sen_id": 255837}, {"caption": "skating through a road covered with snow in a very high speed", "video_id": "video10221", "sen_id": 255838}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video10221", "sen_id": 255839}, {"caption": "a guy is wiping with dry cloth on the front wheel of a motorcycle after cleaning with soap and water in order to remove residual dirts", "video_id": "video10466", "sen_id": 255840}, {"caption": "a man demonstrating how to clean a motorcycle wheel", "video_id": "video10466", "sen_id": 255841}, {"caption": "mechanic demonstrates how to clean the rims of a bike", "video_id": "video10466", "sen_id": 255842}, {"caption": "a man demonstrates the way to take care of motorcycle tires", "video_id": "video10466", "sen_id": 255843}, {"caption": "a motorcycle is being cleaned and the wheels are getting wiped down", "video_id": "video10466", "sen_id": 255844}, {"caption": "a young man cleaning a new bike with a towel", "video_id": "video10466", "sen_id": 255845}, {"caption": "a man in the garage washing and cleaning a motorcycle", "video_id": "video10466", "sen_id": 255846}, {"caption": " in a black shirt cleaning the wheels on a motorcycle with a turquoise shammy before waxing it", "video_id": "video10466", "sen_id": 255847}, {"caption": "a man gives a demonstration of how to clean a motorcycle wheel properly", "video_id": "video10466", "sen_id": 255848}, {"caption": "a person wipes a motor bike tire with a green towel", "video_id": "video10466", "sen_id": 255849}, {"caption": "a man is rubbing a motorcycle rim with a teal washrag", "video_id": "video10466", "sen_id": 255850}, {"caption": "a men is removing screws of the bike chain cover", "video_id": "video10466", "sen_id": 255851}, {"caption": "the display of mechanical shed were a man showing how to clean the bike", "video_id": "video10466", "sen_id": 255852}, {"caption": "a boy is cleaning his bike wheel with the green cloth", "video_id": "video10466", "sen_id": 255853}, {"caption": "a man is cleaning the motor bike in green cloth and talking about it", "video_id": "video10466", "sen_id": 255854}, {"caption": "a guy is cleaning the wheel of a motorcycle with a green towel", "video_id": "video10466", "sen_id": 255855}, {"caption": "a man is cleaning his motorcycle with a cloth and wax", "video_id": "video10466", "sen_id": 255856}, {"caption": "one man cleaning motor bike with a cloth", "video_id": "video10466", "sen_id": 255857}, {"caption": "a man polishes a motorcyle wheel with a green rag", "video_id": "video10466", "sen_id": 255858}, {"caption": "bearded guy in black tshirt polishing the bike", "video_id": "video10466", "sen_id": 255859}, {"caption": "a man in a bright purple tie discusses business issues", "video_id": "video12586", "sen_id": 255860}, {"caption": "a man is doing a television segment analyzing the stock market", "video_id": "video12586", "sen_id": 255861}, {"caption": "a bald man with a purple tie and some paper in his hands is speaking", "video_id": "video12586", "sen_id": 255862}, {"caption": "man with blue dress talks by holding paper in hand", "video_id": "video12586", "sen_id": 255863}, {"caption": "a bald man talks with excitement about economics", "video_id": "video12586", "sen_id": 255864}, {"caption": "a bald newscaster is wearing a white shirt with a purple tie and some papers in his hand", "video_id": "video12586", "sen_id": 255865}, {"caption": "a bald man wearing a pink button up shirt and tie is reporting the news", "video_id": "video12586", "sen_id": 255866}, {"caption": "a man in a tie evaluates the stock of a pharmaceutical company", "video_id": "video12586", "sen_id": 255867}, {"caption": "a man on a news show discusses drug companies and their acquisitions", "video_id": "video12586", "sen_id": 255868}, {"caption": "a bald man in a light purple shirt and purple tie standing next to a cluttered desk and is speaking about te stock market", "video_id": "video12586", "sen_id": 255869}, {"caption": "a bald headed man wearing white shirt and violet tie standing with some papers and talking on biotech in a room", "video_id": "video12586", "sen_id": 255870}, {"caption": "men in white shirt and purple tie speaking about something in the television and holding the paper", "video_id": "video12586", "sen_id": 255871}, {"caption": "a financial personality talks about the stock market results", "video_id": "video12586", "sen_id": 255872}, {"caption": "a man have some papers in hand is explaining some thing", "video_id": "video12586", "sen_id": 255873}, {"caption": "a man talks about next generation companies and drugs", "video_id": "video12586", "sen_id": 255874}, {"caption": "a man wearing pink color dress talking", "video_id": "video12586", "sen_id": 255875}, {"caption": "a middle aged man who is somewhat hard to understand gives a business report about a pharmacy company on a news show", "video_id": "video12586", "sen_id": 255876}, {"caption": "a market analyst highlights the performances of next generation biotech companies", "video_id": "video12586", "sen_id": 255877}, {"caption": "a man wearing a purple tie discusses stocks of next-gen pharmaceutical companies", "video_id": "video12586", "sen_id": 255878}, {"caption": "mad money talks about biotech and horizon pharma stock", "video_id": "video12586", "sen_id": 255879}, {"caption": "a black volkswagon car is driving down a european street with small streets and cars parked on the sides of the road", "video_id": "video10801", "sen_id": 255880}, {"caption": "a black color car moving on the road", "video_id": "video10801", "sen_id": 255881}, {"caption": "a man is driving a vw car and talking about it features and aspects", "video_id": "video10801", "sen_id": 255882}, {"caption": "a promotional video about a volkswagen car and the reason why it is so popular", "video_id": "video10801", "sen_id": 255883}, {"caption": "a man discusses city cars being about form over function and being built to a budget while driving a black volkswagen car though the city", "video_id": "video10801", "sen_id": 255884}, {"caption": "a man talks about a car while driving down the street", "video_id": "video10801", "sen_id": 255885}, {"caption": "a black beautiful volkswagen car is moving on the road which is driven by a young man", "video_id": "video10801", "sen_id": 255886}, {"caption": "introducing the new wolkswagon car and their feature in the sports team", "video_id": "video10801", "sen_id": 255887}, {"caption": "a man is driving an automobile while reviewing it", "video_id": "video10801", "sen_id": 255888}, {"caption": "a black volkswagen car drives on the left side of the street", "video_id": "video10801", "sen_id": 255889}, {"caption": "a person drives a volkswagen and talks about how great they are", "video_id": "video10801", "sen_id": 255890}, {"caption": "a car which is black color is driving by aman", "video_id": "video10801", "sen_id": 255891}, {"caption": "the man driving a car telling people about it", "video_id": "video10801", "sen_id": 255892}, {"caption": "a man describes a small black car that he is test driving", "video_id": "video10801", "sen_id": 255893}, {"caption": "a small black volkswagon hatchback driving in traffic", "video_id": "video10801", "sen_id": 255894}, {"caption": "a car is driving down a road while a man speaks about its aspsects", "video_id": "video10801", "sen_id": 255895}, {"caption": "a man driving a black color car on the road", "video_id": "video10801", "sen_id": 255896}, {"caption": "a man drives the car fast on road by reporting some news", "video_id": "video10801", "sen_id": 255897}, {"caption": "a volkswagen is driven by a college kid on a nice morning", "video_id": "video10801", "sen_id": 255898}, {"caption": "a man talking about city cars with a black compact volkswagen as the focus of the video", "video_id": "video10801", "sen_id": 255899}, {"caption": "a player in a white uniform bounces and throws the ball to a teammate who in turn throws the ball to another teammate who dunks the ball and scores during a professional basketball game", "video_id": "video12583", "sen_id": 255900}, {"caption": "men are playing a game of professional basketball in a stadium", "video_id": "video12583", "sen_id": 255901}, {"caption": "group of players are playing basket ball", "video_id": "video12583", "sen_id": 255902}, {"caption": "a two teams playing volley ball on the stadium", "video_id": "video12583", "sen_id": 255903}, {"caption": "dive clear players in red dress and white dress are playing in basket ball ground", "video_id": "video12583", "sen_id": 255904}, {"caption": "two basketball teams are playing a basketball game with a crowd of people watching", "video_id": "video12583", "sen_id": 255905}, {"caption": "there are someone playing basketball with passion", "video_id": "video12583", "sen_id": 255906}, {"caption": "players are playing basketball on the ground", "video_id": "video12583", "sen_id": 255907}, {"caption": "a boston celtics basketball play is shown with garnett", "video_id": "video12583", "sen_id": 255908}, {"caption": "this is broadcasting of different basketball games it focuses on dunk shoots as well as dive shoots", "video_id": "video12583", "sen_id": 255909}, {"caption": "beautiful basketball ending with two amazing dunks by boston celtics", "video_id": "video12583", "sen_id": 255910}, {"caption": "footage of the boston celtics playing in a basketbll game", "video_id": "video12583", "sen_id": 255911}, {"caption": "american basketball players perform amazing plays during a game", "video_id": "video12583", "sen_id": 255912}, {"caption": "a basketball game is underway and a man dunks the ball", "video_id": "video12583", "sen_id": 255913}, {"caption": "a basketball team hustles for the advantage", "video_id": "video12583", "sen_id": 255914}, {"caption": "players playing basketball", "video_id": "video12583", "sen_id": 255915}, {"caption": "two teams players playing basketball very interestingly", "video_id": "video12583", "sen_id": 255916}, {"caption": "professional basketball players perform amazing plays in the games they are involved in", "video_id": "video12583", "sen_id": 255917}, {"caption": "basketball players are playing a basketball game with a crowd watching", "video_id": "video12583", "sen_id": 255918}, {"caption": "bunch of basketball players in white and red jersey s playing against each other in a match", "video_id": "video12583", "sen_id": 255919}, {"caption": "a man with dark hair and a mustache talks about his successful model", "video_id": "video12929", "sen_id": 255920}, {"caption": "two different men are talking one in a t-shirt and hoodie the other in a blue shirt and dark jacket", "video_id": "video12929", "sen_id": 255921}, {"caption": "two men giving interviews to the camera", "video_id": "video12929", "sen_id": 255922}, {"caption": "a young man talks about a computer model that he is working on", "video_id": "video12929", "sen_id": 255923}, {"caption": "guy in moustache talking to the guy in blue shirt", "video_id": "video12929", "sen_id": 255924}, {"caption": "there is a man talking inside the room", "video_id": "video12929", "sen_id": 255925}, {"caption": "men are speakng regarding a project that they are completing work on", "video_id": "video12929", "sen_id": 255926}, {"caption": "man in white skin talks then again another person talks he has no bear or mutach", "video_id": "video12929", "sen_id": 255927}, {"caption": "man with black curly hair talking while wearing a jacket", "video_id": "video12929", "sen_id": 255928}, {"caption": "a man with a mustache is being interviewed along with another man", "video_id": "video12929", "sen_id": 255929}, {"caption": "several gentleman appear and describe their work process", "video_id": "video12929", "sen_id": 255930}, {"caption": "customers explaining their satisfaction with a education program that teaches them computer coding", "video_id": "video12929", "sen_id": 255931}, {"caption": "two different men being interviewed both wearing zip up hoodies", "video_id": "video12929", "sen_id": 255932}, {"caption": "young men talk about their lives in writing code", "video_id": "video12929", "sen_id": 255933}, {"caption": "a guy in a jacket is sitting down and talking", "video_id": "video12929", "sen_id": 255934}, {"caption": "the men expressing there feelings on a piece of product or service", "video_id": "video12929", "sen_id": 255935}, {"caption": "a two men are talking some thing", "video_id": "video12929", "sen_id": 255936}, {"caption": "a man is asking some question to another one and he is replying him", "video_id": "video12929", "sen_id": 255937}, {"caption": "a man talking about how well a model works and another man talking about having lectures in the morning", "video_id": "video12929", "sen_id": 255938}, {"caption": "a man in a jacket is sitting down and talking", "video_id": "video12929", "sen_id": 255939}, {"caption": "large trucks with flashing lights line up to be viewed by bystanders", "video_id": "video10803", "sen_id": 255940}, {"caption": "there are some people watching lights on the street", "video_id": "video10803", "sen_id": 255941}, {"caption": "a semi truck is showing off the light display that it has mounted on the roof of the truck", "video_id": "video10803", "sen_id": 255942}, {"caption": "the vehicles are kept in one line for the show competence", "video_id": "video10803", "sen_id": 255943}, {"caption": "lighting sparks and many person beside walking blinking light music displaying on screen", "video_id": "video10803", "sen_id": 255944}, {"caption": "a bunch of things are flashing on the screen", "video_id": "video10803", "sen_id": 255945}, {"caption": "several 18 wheelers starting up a crowd of people around them", "video_id": "video10803", "sen_id": 255946}, {"caption": "a group of brightly lit trucks line up next to each other", "video_id": "video10803", "sen_id": 255947}, {"caption": "people stand around trucks with flashing lights", "video_id": "video10803", "sen_id": 255948}, {"caption": "a crowd of people is outdoors standing in front of and watching three trucks with flashing lights parked facing them", "video_id": "video10803", "sen_id": 255949}, {"caption": "some lights are flashing at people at night", "video_id": "video10803", "sen_id": 255950}, {"caption": "a bunch of people are walking around at night with bright lights flashing in the background", "video_id": "video10803", "sen_id": 255951}, {"caption": "a semi truck with flashing lights and music playing", "video_id": "video10803", "sen_id": 255952}, {"caption": "a bunch of firefighter trucks are at a scene as civilians watch", "video_id": "video10803", "sen_id": 255953}, {"caption": "a group of people are watching a lighting on a roadside", "video_id": "video10803", "sen_id": 255954}, {"caption": "some people are standing next to flashing lights", "video_id": "video10803", "sen_id": 255955}, {"caption": "people mill about in front of several trucks one of which has flashing lights", "video_id": "video10803", "sen_id": 255956}, {"caption": "a semi truck with flashing lights parked with people swarming around it", "video_id": "video10803", "sen_id": 255957}, {"caption": "group of people are trying to help because of the bad accident", "video_id": "video10803", "sen_id": 255958}, {"caption": "big semi trucks are shown flashing all of their lights", "video_id": "video10803", "sen_id": 255959}, {"caption": "a woman heats oil in a pan on the stove", "video_id": "video11455", "sen_id": 255960}, {"caption": "a woman in the kitchen adding oil to a frying pan", "video_id": "video11455", "sen_id": 255961}, {"caption": "a demonstration is going on for preparing a cookery item in a tv show", "video_id": "video11455", "sen_id": 255962}, {"caption": "a woman has a white bowl with meat inside it on the counter top she is pouring oil into the frying pan describing a recipe", "video_id": "video11455", "sen_id": 255963}, {"caption": "a person is pouring some cooking oil in a frying pan", "video_id": "video11455", "sen_id": 255964}, {"caption": "a woman is showing how to prepare a pan with oil for cooking", "video_id": "video11455", "sen_id": 255965}, {"caption": "there is a women cooking food in untensil", "video_id": "video11455", "sen_id": 255966}, {"caption": "a woman is putting oil into the frying pan describing a recipe", "video_id": "video11455", "sen_id": 255967}, {"caption": "woman preparing the pan with some kind of oil", "video_id": "video11455", "sen_id": 255968}, {"caption": "a women is pouring oil on a non stick pan and spreading it all over", "video_id": "video11455", "sen_id": 255969}, {"caption": "a women add some oil to the pan", "video_id": "video11455", "sen_id": 255970}, {"caption": "heat pan then add oil and spread it all over pan", "video_id": "video11455", "sen_id": 255971}, {"caption": "a woman is heating a pan and adding a oil", "video_id": "video11455", "sen_id": 255972}, {"caption": "a pan inside kitchen pouring oil and shaking the pan ready to cook", "video_id": "video11455", "sen_id": 255973}, {"caption": "a person is pouring some oil on a pan", "video_id": "video11455", "sen_id": 255974}, {"caption": "a woman showcases the beginning stages of an unknown meal", "video_id": "video11455", "sen_id": 255975}, {"caption": "one beautiful and lovely women make recipe in pan", "video_id": "video11455", "sen_id": 255976}, {"caption": "a pan is kept on stove and heated up with oil and spreaded overall", "video_id": "video11455", "sen_id": 255977}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11455", "sen_id": 255978}, {"caption": "someone is filming a pan on a stove", "video_id": "video11455", "sen_id": 255979}, {"caption": "a man is talking about and showing the sun roof on the vehicle", "video_id": "video11447", "sen_id": 255980}, {"caption": "a man standing in front of the house and explaining about car", "video_id": "video11447", "sen_id": 255981}, {"caption": "the man wearing a long sleeved shirt is standing near the gray vehicle", "video_id": "video11447", "sen_id": 255982}, {"caption": "a man shows off a panoramic sun roof on an suv", "video_id": "video11447", "sen_id": 255983}, {"caption": "small car where the upper door opens person in checked shirt stands to explain upper opening", "video_id": "video11447", "sen_id": 255984}, {"caption": "a person in shirt is showing the car and telling its features", "video_id": "video11447", "sen_id": 255985}, {"caption": "a man is giving his opinion on a new sport utility vehicle", "video_id": "video11447", "sen_id": 255986}, {"caption": "the man is showing the benefits of the white car standing in front of him", "video_id": "video11447", "sen_id": 255987}, {"caption": "a man explained something about his brand new car", "video_id": "video11447", "sen_id": 255988}, {"caption": "the car is small but looks cute the top of the car opens when it required", "video_id": "video11447", "sen_id": 255989}, {"caption": "a man is explaining about the new car", "video_id": "video11447", "sen_id": 255990}, {"caption": "the old man is giving the information of white car in front of him", "video_id": "video11447", "sen_id": 255991}, {"caption": "a man shows off a large size sunroof in a car that he describes has special features", "video_id": "video11447", "sen_id": 255992}, {"caption": "a cnet commentator reviews a new short vehicle with a sun roof", "video_id": "video11447", "sen_id": 255993}, {"caption": "a guy in a shirt is standing by a car", "video_id": "video11447", "sen_id": 255994}, {"caption": "a men explainging car is displayed with its features", "video_id": "video11447", "sen_id": 255995}, {"caption": "a man stands elevated between a grey four-door compact car parked at a curb and a red storefront covered with panes of glass and a narrow blue door", "video_id": "video11447", "sen_id": 255996}, {"caption": "a man is standing near a car and talking", "video_id": "video11447", "sen_id": 255997}, {"caption": "a white color car parking old man beside explayning displaying on screen", "video_id": "video11447", "sen_id": 255998}, {"caption": "a man is standing by a parked car", "video_id": "video11447", "sen_id": 255999}, {"caption": "a character from a game is running around and a man is talking about trading an item for gold and what it can be redeemed for", "video_id": "video10357", "sen_id": 256000}, {"caption": "there are some people holding gun their hands running here and there", "video_id": "video10357", "sen_id": 256001}, {"caption": "a person advertising a video game by giving all the information", "video_id": "video10357", "sen_id": 256002}, {"caption": " a person running with big gun to shoot the enemies", "video_id": "video10357", "sen_id": 256003}, {"caption": "some one is playing a video game on a screen", "video_id": "video10357", "sen_id": 256004}, {"caption": "a computer character runs through a world as a man talks", "video_id": "video10357", "sen_id": 256005}, {"caption": "there is a man running with some weapons", "video_id": "video10357", "sen_id": 256006}, {"caption": "a male is speaking about using different features and purchases in a video game", "video_id": "video10357", "sen_id": 256007}, {"caption": "video games of animated a person runs with a gun and the option is changed", "video_id": "video10357", "sen_id": 256008}, {"caption": "a man explaining currency in an online video game", "video_id": "video10357", "sen_id": 256009}, {"caption": "a video explains how to buy things in a mmorpg", "video_id": "video10357", "sen_id": 256010}, {"caption": "the beast runs in the colorful video game", "video_id": "video10357", "sen_id": 256011}, {"caption": "information about game time tokens in world of warcraft", "video_id": "video10357", "sen_id": 256012}, {"caption": "a gamer scrolls through the options in a video game", "video_id": "video10357", "sen_id": 256013}, {"caption": "player playing video game trying to get more points", "video_id": "video10357", "sen_id": 256014}, {"caption": "there is a man walking in to a cave with weapon", "video_id": "video10357", "sen_id": 256015}, {"caption": "the role playing game world of war craft is being played", "video_id": "video10357", "sen_id": 256016}, {"caption": "some one playing the video game and telling the steps they moves", "video_id": "video10357", "sen_id": 256017}, {"caption": "a video game walk through is presented in which scenes from the game are shown as a man talks", "video_id": "video10357", "sen_id": 256018}, {"caption": "a person is playing the world of warcraft video gaem", "video_id": "video10357", "sen_id": 256019}, {"caption": "a series of clips roll by as a woman talks about a shark attack", "video_id": "video10512", "sen_id": 256020}, {"caption": "a shark and a man are in the ocean while a woman describes the injuries from a shark bite", "video_id": "video10512", "sen_id": 256021}, {"caption": "photos of a body being druged in water", "video_id": "video10512", "sen_id": 256022}, {"caption": "a film roll showing the skate of the person performing at the beach", "video_id": "video10512", "sen_id": 256023}, {"caption": "the blue sea is with crystal water and some small waves", "video_id": "video10512", "sen_id": 256024}, {"caption": "a man is pictured in the ocean as a woman speaks about a man and his injuries after a great white shark attack", "video_id": "video10512", "sen_id": 256025}, {"caption": "a woman narrator is explaining how a surfer was attacked by sharks", "video_id": "video10512", "sen_id": 256026}, {"caption": "a sea water image is on the screen by scrolling", "video_id": "video10512", "sen_id": 256027}, {"caption": "images of a shark attack to a male surfer in an australian beach pass by while a female narrator talks about the incident", "video_id": "video10512", "sen_id": 256028}, {"caption": "a woman talks about a man that was attacked by sharks while surfing as pictures of the event are displayed", "video_id": "video10512", "sen_id": 256029}, {"caption": "a woman is recounting an accident where a man from australia was bitten by a great white shark", "video_id": "video10512", "sen_id": 256030}, {"caption": "there are someone surfing on the waves", "video_id": "video10512", "sen_id": 256031}, {"caption": "photos of a surfer are shown while a woman talks about a shark attack", "video_id": "video10512", "sen_id": 256032}, {"caption": "a woman explains about what happened when a man was attacked by sharks while surfing", "video_id": "video10512", "sen_id": 256033}, {"caption": "a water scene still image and pictures displaying on screen", "video_id": "video10512", "sen_id": 256034}, {"caption": "bunch of photographs of shark attacking a guy on shore shown on screen", "video_id": "video10512", "sen_id": 256035}, {"caption": "a man is talking on tv in a news channel", "video_id": "video10512", "sen_id": 256036}, {"caption": "a series of slides show blue ocean water with surfers and swimming sharks", "video_id": "video10512", "sen_id": 256037}, {"caption": "a woman is talking about two white sharks that attacked", "video_id": "video10512", "sen_id": 256038}, {"caption": "a story about a man who was attacked by a shark in australia", "video_id": "video10512", "sen_id": 256039}, {"caption": "a woman with a white scarf is hiking and speaking while holding a green coffee cup", "video_id": "video12561", "sen_id": 256040}, {"caption": "a young woman talks about a mountain hiking trail as she moves along it", "video_id": "video12561", "sen_id": 256041}, {"caption": "a women explaining some topic while walking on the road", "video_id": "video12561", "sen_id": 256042}, {"caption": "the women is talking about a product and walking through the forest", "video_id": "video12561", "sen_id": 256043}, {"caption": "a woman is talking and walking outside while holding her tea", "video_id": "video12561", "sen_id": 256044}, {"caption": "a lady in white scarf walks throughthe woods drinking tea", "video_id": "video12561", "sen_id": 256045}, {"caption": "a women walking alone is saying something here", "video_id": "video12561", "sen_id": 256046}, {"caption": "there is a women in one top standing on a hill and telling news", "video_id": "video12561", "sen_id": 256047}, {"caption": "a girl in black dress and wore white shawl capturing herself and explaining about something", "video_id": "video12561", "sen_id": 256048}, {"caption": "an asian woman walks along a mountain trail towards a rocky wall", "video_id": "video12561", "sen_id": 256049}, {"caption": "a women wearing a shawl explaining something in front of the camera", "video_id": "video12561", "sen_id": 256050}, {"caption": "there is a women walking and talking in jungle", "video_id": "video12561", "sen_id": 256051}, {"caption": "one beautiful and lovely women talking and walking in", "video_id": "video12561", "sen_id": 256052}, {"caption": "a lady taking self videoshe has white cloth around her neck", "video_id": "video12561", "sen_id": 256053}, {"caption": "a woman is walking around in the woods outside", "video_id": "video12561", "sen_id": 256054}, {"caption": "a women walking in to the forest lonely", "video_id": "video12561", "sen_id": 256055}, {"caption": "a lady wearing black color dressed talking", "video_id": "video12561", "sen_id": 256056}, {"caption": "a young woman walks along a scenic walkway saying the area is at a hot springs", "video_id": "video12561", "sen_id": 256057}, {"caption": "girl take self video has the drink in her hand she wore the white shall on her neck", "video_id": "video12561", "sen_id": 256058}, {"caption": "a woman with dark hair is walking alone", "video_id": "video12561", "sen_id": 256059}, {"caption": "music is playing and a male talks a little bit while a tennis match is being played", "video_id": "video10411", "sen_id": 256060}, {"caption": "there are 2 tennis players currently in a match with dramatic music playing in the background", "video_id": "video10411", "sen_id": 256061}, {"caption": "two women compete in a tennis match", "video_id": "video10411", "sen_id": 256062}, {"caption": "asian women playing badminton", "video_id": "video10411", "sen_id": 256063}, {"caption": "two opposite badminton players are playing in professional game", "video_id": "video10411", "sen_id": 256064}, {"caption": "two women are playing shuttle cock on a green shuttle court", "video_id": "video10411", "sen_id": 256065}, {"caption": "women s singles on badminton on the go with moderate rallies", "video_id": "video10411", "sen_id": 256066}, {"caption": "in the cort the badmintion single plays are conducting in very well", "video_id": "video10411", "sen_id": 256067}, {"caption": "two women are playing professional tennis in front of no crowd", "video_id": "video10411", "sen_id": 256068}, {"caption": "two women are competing in a game of badminton", "video_id": "video10411", "sen_id": 256069}, {"caption": "two athletes volley tennis balls over the net during a game played on a court", "video_id": "video10411", "sen_id": 256070}, {"caption": "players playing lawn tennis on the tennis court", "video_id": "video10411", "sen_id": 256071}, {"caption": "a professional tennis match is being played between two women", "video_id": "video10411", "sen_id": 256072}, {"caption": "two players are playing in a badminton event of sports", "video_id": "video10411", "sen_id": 256073}, {"caption": "at tennis court the two lady player played efficiently suddenly one will lose the ball", "video_id": "video10411", "sen_id": 256074}, {"caption": "there is a woman playing badminton with someone", "video_id": "video10411", "sen_id": 256075}, {"caption": "two players are playing tennise on the groun", "video_id": "video10411", "sen_id": 256076}, {"caption": "two girls were playing tennis on the stadium", "video_id": "video10411", "sen_id": 256077}, {"caption": "players in blue and black dresses are playing tennis very brilliantly and they enjoy it", "video_id": "video10411", "sen_id": 256078}, {"caption": "some people are playing badminton on a court", "video_id": "video10411", "sen_id": 256079}, {"caption": "someone is whisking a flour-like substance and adds liquid to the silver mixing bowl", "video_id": "video10059", "sen_id": 256080}, {"caption": "flour is put in a vessel and little water is added", "video_id": "video10059", "sen_id": 256081}, {"caption": "in the kitchena man mixing wheat for a dish", "video_id": "video10059", "sen_id": 256082}, {"caption": "a chef works on a sauce by adding warm water and stirring it with a whisk", "video_id": "video10059", "sen_id": 256083}, {"caption": "a man mixing the powder in the bowl and adding water to that", "video_id": "video10059", "sen_id": 256084}, {"caption": "a person is mixing a dough and adding water in it", "video_id": "video10059", "sen_id": 256085}, {"caption": "a man is showing how to prepare a tahini sauce", "video_id": "video10059", "sen_id": 256086}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video10059", "sen_id": 256087}, {"caption": "a person is blending a flour mixture", "video_id": "video10059", "sen_id": 256088}, {"caption": "in a kitchen a person mixing the white power with water in the bowl", "video_id": "video10059", "sen_id": 256089}, {"caption": "a person is preparing a tasty food using the mixer", "video_id": "video10059", "sen_id": 256090}, {"caption": "making of recipe adding water to flour and beat it", "video_id": "video10059", "sen_id": 256091}, {"caption": "guy adding warm water while mixing a paste", "video_id": "video10059", "sen_id": 256092}, {"caption": "a cook explaining how to make perfect sauce by adding warm water little by little and mixing it well", "video_id": "video10059", "sen_id": 256093}, {"caption": "a person is stirring white liquid in a bowl", "video_id": "video10059", "sen_id": 256094}, {"caption": "in the kitchen someone preparing a dish", "video_id": "video10059", "sen_id": 256095}, {"caption": "a man is blending a batter in the bowl", "video_id": "video10059", "sen_id": 256096}, {"caption": "the person is in kitchen mixing something in pot and putting water into it", "video_id": "video10059", "sen_id": 256097}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10059", "sen_id": 256098}, {"caption": "some whie dough is in a silver bowl", "video_id": "video10059", "sen_id": 256099}, {"caption": "two of the ffour guys standing around the piano start singing", "video_id": "video10174", "sen_id": 256100}, {"caption": "group of musicians are singing a piano song", "video_id": "video10174", "sen_id": 256101}, {"caption": "there are guys standing around a piano singing one is playing the piano", "video_id": "video10174", "sen_id": 256102}, {"caption": "a young man with long hair plays the piano as the other four gentlemen in the group lead by a young blonde man", "video_id": "video10174", "sen_id": 256103}, {"caption": "music video by the backstreet boys singing", "video_id": "video10174", "sen_id": 256104}, {"caption": "a song with a piano and some other artist in a separate location", "video_id": "video10174", "sen_id": 256105}, {"caption": "there is a black dressing man singing in front of a piano", "video_id": "video10174", "sen_id": 256106}, {"caption": "a young man sings and his members are on chorus and on piano", "video_id": "video10174", "sen_id": 256107}, {"caption": "a music video starring nick cater and four other men and a black piano", "video_id": "video10174", "sen_id": 256108}, {"caption": "a man in black color dress wearing singing and harmonium music standing beside displaying on screen", "video_id": "video10174", "sen_id": 256109}, {"caption": "music video being performed outside around a piano", "video_id": "video10174", "sen_id": 256110}, {"caption": "there is a black dressing man singing with friends", "video_id": "video10174", "sen_id": 256111}, {"caption": "back street boys performing a song on the beach", "video_id": "video10174", "sen_id": 256112}, {"caption": "a man playing a piano with a few men around singing", "video_id": "video10174", "sen_id": 256113}, {"caption": "a man in black dress wearing and harmonium playing music singing outdoor displaying on screen", "video_id": "video10174", "sen_id": 256114}, {"caption": "some people are playing music in a landscape", "video_id": "video10174", "sen_id": 256115}, {"caption": "there is a black suit man singing a song", "video_id": "video10174", "sen_id": 256116}, {"caption": "a group of people singing while playing a song", "video_id": "video10174", "sen_id": 256117}, {"caption": "a man is singing a song for a music", "video_id": "video10174", "sen_id": 256118}, {"caption": "a person black color dress wearing cloth singing and person beside harmonium playing music standing displaying on screen", "video_id": "video10174", "sen_id": 256119}, {"caption": "a round green balloon with a face and moustache hovers over a city skyline and releases fiery angled blocks which fall and embed on a green lawn by a house with a swing set", "video_id": "video11876", "sen_id": 256120}, {"caption": "video game music plays as we see alien creatures in a large vessel dropping objects and characters down onto the grass", "video_id": "video11876", "sen_id": 256121}, {"caption": "a green orb dropping tetris pieces and some bouncing characters where the pieces dropped", "video_id": "video11876", "sen_id": 256122}, {"caption": "aballon drops nice little play things around which goes jumping all over the place", "video_id": "video11876", "sen_id": 256123}, {"caption": "something is being dropped down to make fire from an aerial vehicle", "video_id": "video11876", "sen_id": 256124}, {"caption": "an animated green orb is shooting tetrus pieces at the ground", "video_id": "video11876", "sen_id": 256125}, {"caption": "so many balls are put down by a huge baloon", "video_id": "video11876", "sen_id": 256126}, {"caption": "a green balloon is dropping pinkyellow and green blocks form air", "video_id": "video11876", "sen_id": 256127}, {"caption": "in a video game some colored thick substance is to fell down from the globe through a hole to destroy some jumping articles", "video_id": "video11876", "sen_id": 256128}, {"caption": "video on the angry birds the green angry bird drops the fire ball", "video_id": "video11876", "sen_id": 256129}, {"caption": "there are some balls jumping on the ground", "video_id": "video11876", "sen_id": 256130}, {"caption": " pighead ship floating over a city and dropping tetris like blocks onto a city part while angry birds jump around", "video_id": "video11876", "sen_id": 256131}, {"caption": "in a air ballon somthing is comes and lies down", "video_id": "video11876", "sen_id": 256132}, {"caption": "a flying craft is shooting the little characters in a video game", "video_id": "video11876", "sen_id": 256133}, {"caption": "some cartoon characters dropped by green color ball are jumping on playing ground", "video_id": "video11876", "sen_id": 256134}, {"caption": "there is a men demostrating how to play video game", "video_id": "video11876", "sen_id": 256135}, {"caption": "the cartoon character and the bee is playing in their garden", "video_id": "video11876", "sen_id": 256136}, {"caption": "a video game is playing in the screen", "video_id": "video11876", "sen_id": 256137}, {"caption": "a green colour game displaying on the screen bombing on the grass building beside displaying", "video_id": "video11876", "sen_id": 256138}, {"caption": "some shapes are bouncing around outside", "video_id": "video11876", "sen_id": 256139}, {"caption": "a male is talking while a white race car is speeding around a corner on a track", "video_id": "video10710", "sen_id": 256140}, {"caption": "a white car is moving on a road with no vehicles around", "video_id": "video10710", "sen_id": 256141}, {"caption": "theire is a car race going on all cars are running fast overtaking each other", "video_id": "video10710", "sen_id": 256142}, {"caption": "one man driving car fastly and its like that jet", "video_id": "video10710", "sen_id": 256143}, {"caption": "a car speeds wrecklessly around an airport track", "video_id": "video10710", "sen_id": 256144}, {"caption": "a car is driving fast on a road", "video_id": "video10710", "sen_id": 256145}, {"caption": "some one driving a white colour car with full speed", "video_id": "video10710", "sen_id": 256146}, {"caption": "a white race car with a number 7 on the side is being driven on a closed track", "video_id": "video10710", "sen_id": 256147}, {"caption": "a man describes a small white sports car that is running through a time trial", "video_id": "video10710", "sen_id": 256148}, {"caption": "a white sports car speeds through the race track", "video_id": "video10710", "sen_id": 256149}, {"caption": "a person in a white car is driving around a place", "video_id": "video10710", "sen_id": 256150}, {"caption": "there is a car riding on the track", "video_id": "video10710", "sen_id": 256151}, {"caption": "a white race car going very fast on a race track", "video_id": "video10710", "sen_id": 256152}, {"caption": "a man discusses a race car that is flying through a race course", "video_id": "video10710", "sen_id": 256153}, {"caption": "a white car racing on a track with a commentator talking about how quickly the car is traveling", "video_id": "video10710", "sen_id": 256154}, {"caption": "a race car is driving around on a track", "video_id": "video10710", "sen_id": 256155}, {"caption": "there is a white car riding on the track", "video_id": "video10710", "sen_id": 256156}, {"caption": "a white sports car turning the corner at a very high speed on the race track", "video_id": "video10710", "sen_id": 256157}, {"caption": "a race car drives extremely fast on a race way while the commentator calls out his moves", "video_id": "video10710", "sen_id": 256158}, {"caption": "person driving his white car with big speed", "video_id": "video10710", "sen_id": 256159}, {"caption": "britney spears is singing and dancing in a music video setting followed by on stage and then she walks through a house while singing", "video_id": "video12957", "sen_id": 256160}, {"caption": "a woman in black dressing dancing with a man", "video_id": "video12957", "sen_id": 256161}, {"caption": "a blond girl in a white swimsuit dances and sings then she is in lingerie dancing with a man then walking through a room", "video_id": "video12957", "sen_id": 256162}, {"caption": "a woman in white is singing and dancing in a music video", "video_id": "video12957", "sen_id": 256163}, {"caption": "a lady is dancing with a man in a pop album", "video_id": "video12957", "sen_id": 256164}, {"caption": "a woman singing on a stage and dancing with dancers in lingerie", "video_id": "video12957", "sen_id": 256165}, {"caption": "a woman singing and dancing in a provocative way", "video_id": "video12957", "sen_id": 256166}, {"caption": "a woman sings in her underwear while sitting on the edge of a boulder on a stage near a dancing man in a bikini", "video_id": "video12957", "sen_id": 256167}, {"caption": "a young woman in her underwear sings a song", "video_id": "video12957", "sen_id": 256168}, {"caption": "a man and a woman are dancing in a place", "video_id": "video12957", "sen_id": 256169}, {"caption": "britney spears is singing in a music video while wearing little clothing", "video_id": "video12957", "sen_id": 256170}, {"caption": "a lady is singing and dancing with a man", "video_id": "video12957", "sen_id": 256171}, {"caption": "a woman is dancing with a man very sexy", "video_id": "video12957", "sen_id": 256172}, {"caption": "britney spears in her music video for her song inside out", "video_id": "video12957", "sen_id": 256173}, {"caption": "a woman with blonde hair is singing a song", "video_id": "video12957", "sen_id": 256174}, {"caption": "a music video shows a scantily clad man and woman in an obscene provacative dance", "video_id": "video12957", "sen_id": 256175}, {"caption": "a glamour song with singers dancing with male persons", "video_id": "video12957", "sen_id": 256176}, {"caption": "britney spears is singing switching outfits and dancing with men in her new music video", "video_id": "video12957", "sen_id": 256177}, {"caption": "a girl is standing in bikini and a man on briefs singing and dancing and hugging the girl and touching booms", "video_id": "video12957", "sen_id": 256178}, {"caption": "a female singer performs a music video with a male dancer", "video_id": "video12957", "sen_id": 256179}, {"caption": "a cat runs up the stairs while the cats owner makes funny noises another cat scratches a boy who curses", "video_id": "video11943", "sen_id": 256180}, {"caption": "a furry fat cat runs up a long flight of steps", "video_id": "video11943", "sen_id": 256181}, {"caption": "a black cat running fast on the steps and playing with a girl", "video_id": "video11943", "sen_id": 256182}, {"caption": "a cat running ang going to a small boy", "video_id": "video11943", "sen_id": 256183}, {"caption": "correct matching sound for cat jumping the boy is very fear", "video_id": "video11943", "sen_id": 256184}, {"caption": "cat inside a carpeted house is unable to walk normally", "video_id": "video11943", "sen_id": 256185}, {"caption": "videos of a cat acting all bizarre and running up the stairs", "video_id": "video11943", "sen_id": 256186}, {"caption": "footage of a cat doing some silly things in the house", "video_id": "video11943", "sen_id": 256187}, {"caption": "long haired cat runs up stairs into boys room then walks very unbalanced into another room", "video_id": "video11943", "sen_id": 256188}, {"caption": "a little boy in a blue shirt gets attacked by a cat", "video_id": "video11943", "sen_id": 256189}, {"caption": "a cat walksa up stairs with a human making sound effects the cat attacks a child wearing a superman shirt", "video_id": "video11943", "sen_id": 256190}, {"caption": "there is a cat playing with a boy", "video_id": "video11943", "sen_id": 256191}, {"caption": "a cat runs up some stairs while the cameraman beat boxes a young boy gets attacked by a cat while acting silly and calls for help", "video_id": "video11943", "sen_id": 256192}, {"caption": "several funny clips of cats are shown one climbing stairs one attacking a kid and one walking like he is drunk", "video_id": "video11943", "sen_id": 256193}, {"caption": "a little boy in a blue shirt is being mean to a cat", "video_id": "video11943", "sen_id": 256194}, {"caption": "a brown cat is running up some house stairs", "video_id": "video11943", "sen_id": 256195}, {"caption": "a cat runs upstairs to a room with a little bow in a blue shirt freaking out", "video_id": "video11943", "sen_id": 256196}, {"caption": "a cat is running up the stairs fast a cat also plays with a young boy", "video_id": "video11943", "sen_id": 256197}, {"caption": "a vulgar mouth young boy aggrivates his cat and the cat attacks him", "video_id": "video11943", "sen_id": 256198}, {"caption": "a cat is failing to run inside of a room", "video_id": "video11943", "sen_id": 256199}, {"caption": "a woman in a kitchen talks about her plans to fix herself some lunch", "video_id": "video10987", "sen_id": 256200}, {"caption": "a women with golden hair talking from a room", "video_id": "video10987", "sen_id": 256201}, {"caption": "there is a fat women talking and doing action with hands", "video_id": "video10987", "sen_id": 256202}, {"caption": "one beautiful and lovely women speaks in kitchen", "video_id": "video10987", "sen_id": 256203}, {"caption": "a woman wearing a light brown tshirt and black glasses it talking in a kitchen", "video_id": "video10987", "sen_id": 256204}, {"caption": "a old lady waving hand discusing about computer watch movie on topic displaying on screen", "video_id": "video10987", "sen_id": 256205}, {"caption": "there is a golden hair lady talking from a room", "video_id": "video10987", "sen_id": 256206}, {"caption": "there is a women grinding something in a grinder", "video_id": "video10987", "sen_id": 256207}, {"caption": "one beautiful and lovely women talks about something", "video_id": "video10987", "sen_id": 256208}, {"caption": "a lady video blogger says that she watched videos in her computer and will go to a movie", "video_id": "video10987", "sen_id": 256209}, {"caption": "there is a woman with golden hair talking from a room", "video_id": "video10987", "sen_id": 256210}, {"caption": "a lady is decribing what she did for the day", "video_id": "video10987", "sen_id": 256211}, {"caption": "a heavy set woman talks about what she has been doing on a lazy day at home", "video_id": "video10987", "sen_id": 256212}, {"caption": "a lady pats her head in a kitchen wearing glasses", "video_id": "video10987", "sen_id": 256213}, {"caption": "here the beautiful lady is talking about something in a show", "video_id": "video10987", "sen_id": 256214}, {"caption": "a lady in a kitchin talking to a camera she is holding seems to be grossed out by the topic", "video_id": "video10987", "sen_id": 256215}, {"caption": "a woman with red hair speaks with an attitude in a metal kitchen", "video_id": "video10987", "sen_id": 256216}, {"caption": "women wearing glasses talking about the preparation of a dish", "video_id": "video10987", "sen_id": 256217}, {"caption": "a woman in brown hair and wearing spects is talking something", "video_id": "video10987", "sen_id": 256218}, {"caption": "a fat blonde woman is sitting and talking", "video_id": "video10987", "sen_id": 256219}, {"caption": "a child pushes a green garbage truck with red trim and black wheels across a wooden floor the truck hits the wall and the child lifts the truck rear to empty a dozen blue textured pieces of trash to join the purple and tan pieces", "video_id": "video11849", "sen_id": 256220}, {"caption": "a boy is pushing a toy train over balls of paper", "video_id": "video11849", "sen_id": 256221}, {"caption": "a kid is pushing a toy truck of green colour and unloading the things", "video_id": "video11849", "sen_id": 256222}, {"caption": "a little boy plays with his toy truck across the floor", "video_id": "video11849", "sen_id": 256223}, {"caption": "a baby is playing with lorry toy using small paper bits", "video_id": "video11849", "sen_id": 256224}, {"caption": "a boy in red t-shirt playing with his toys and some one shooting the video", "video_id": "video11849", "sen_id": 256225}, {"caption": "a young boy is playing with his green garbage truck", "video_id": "video11849", "sen_id": 256226}, {"caption": "a child is playing with the toy of the bus very nicely", "video_id": "video11849", "sen_id": 256227}, {"caption": "a child plays with a garbage truck toy in the living room", "video_id": "video11849", "sen_id": 256228}, {"caption": "a boy playing a toy car and carry out something from the toy car", "video_id": "video11849", "sen_id": 256229}, {"caption": "there is a kid playing with a bus toy", "video_id": "video11849", "sen_id": 256230}, {"caption": "a little boy is playing with his toy garbage truck he then stops and dumps the toy garbage on the wooden floor", "video_id": "video11849", "sen_id": 256231}, {"caption": "child playing with a large green and red dump truck", "video_id": "video11849", "sen_id": 256232}, {"caption": "a child plays on the floor with a green toy truck", "video_id": "video11849", "sen_id": 256233}, {"caption": "a child is playing with a large green toy truck", "video_id": "video11849", "sen_id": 256234}, {"caption": "a boy pouring from a container", "video_id": "video11849", "sen_id": 256235}, {"caption": "a young boy plays with a large toy garbage truck", "video_id": "video11849", "sen_id": 256236}, {"caption": "a kid is pushing around a green dump truck he sits down and unloads trash", "video_id": "video11849", "sen_id": 256237}, {"caption": "a child with a toy trash truck that he has filled with paper and is dumping out", "video_id": "video11849", "sen_id": 256238}, {"caption": "a kid is playing with a toy in a room", "video_id": "video11849", "sen_id": 256239}, {"caption": "runners lined up at the starting blocks for a race with a smaller image of a man who appears to have won a race imposed over the top left corner", "video_id": "video10682", "sen_id": 256240}, {"caption": "a man is discusing an add on how to race the 200 meters showing the team standing near numbers on the running track", "video_id": "video10682", "sen_id": 256241}, {"caption": "a runner at a finish line and runners in the starting blocks getting ready to race", "video_id": "video10682", "sen_id": 256242}, {"caption": "there are some athletes getting ready to run", "video_id": "video10682", "sen_id": 256243}, {"caption": "photographs of athletes getting ready for run are shown and talking about it", "video_id": "video10682", "sen_id": 256244}, {"caption": "a camera man capture a picture where group of men in running", "video_id": "video10682", "sen_id": 256245}, {"caption": "men in running gear stand next to yellow numbered cones on a blue track waiting for the start of the race", "video_id": "video10682", "sen_id": 256246}, {"caption": "there is a man enjoying his won on the track", "video_id": "video10682", "sen_id": 256247}, {"caption": "a man describes how the 200m foot race event doesn t get the attention that it deserves", "video_id": "video10682", "sen_id": 256248}, {"caption": "atheletes are standing ready to start the run in the running race", "video_id": "video10682", "sen_id": 256249}, {"caption": "a man is doing a voiceover and is talking about sprinting and sprinters while pictures of sprinters are being shown", "video_id": "video10682", "sen_id": 256250}, {"caption": "a screenshot showing athletic track with athlets", "video_id": "video10682", "sen_id": 256251}, {"caption": "a man is discussing the 200 meter race as a picture of track stars are seen on track field", "video_id": "video10682", "sen_id": 256252}, {"caption": "the video shows a photo of athletes ready for a race", "video_id": "video10682", "sen_id": 256253}, {"caption": "there are several contestants preparing to start a 200 meter dash race around a track", "video_id": "video10682", "sen_id": 256254}, {"caption": "a large group of male sprinters get ready to run in a large track meet", "video_id": "video10682", "sen_id": 256255}, {"caption": "a atheletics are running to olympics on ground", "video_id": "video10682", "sen_id": 256256}, {"caption": "players are standing in a queue", "video_id": "video10682", "sen_id": 256257}, {"caption": "athlete players are warmup for the running race and runs fast", "video_id": "video10682", "sen_id": 256258}, {"caption": "a male narrator discusses his opinions of the 200m run in the olympics", "video_id": "video10682", "sen_id": 256259}, {"caption": "a square green cursor moves slightly to the right on top of the platform of a black geometric block with raised and angled edges on a computer screen", "video_id": "video10515", "sen_id": 256260}, {"caption": "a man describes how he is going to teach a coder to code a simple 2d platform game", "video_id": "video10515", "sen_id": 256261}, {"caption": "a man is explaining the coding for creating for a video game", "video_id": "video10515", "sen_id": 256262}, {"caption": "a man talking about a new game platform and how to code", "video_id": "video10515", "sen_id": 256263}, {"caption": "a compter screen with a narrator describing a pxel system", "video_id": "video10515", "sen_id": 256264}, {"caption": "a man speaks about coding video games and how simple it is for beginners", "video_id": "video10515", "sen_id": 256265}, {"caption": "there is a man designing with a new software", "video_id": "video10515", "sen_id": 256266}, {"caption": "a video game creator is creating a brand new pc video game", "video_id": "video10515", "sen_id": 256267}, {"caption": "a man describes and demonstrates a computer program he has developed", "video_id": "video10515", "sen_id": 256268}, {"caption": "a man says he is going to teach the basics of programming needed to create a plataform game", "video_id": "video10515", "sen_id": 256269}, {"caption": "using computer the person explains about the games", "video_id": "video10515", "sen_id": 256270}, {"caption": "a man uses a computer program to code and develope video games", "video_id": "video10515", "sen_id": 256271}, {"caption": "an individual talks about a program which shows the viewer how to code", "video_id": "video10515", "sen_id": 256272}, {"caption": "a man describes and demonstrates how to code a video game", "video_id": "video10515", "sen_id": 256273}, {"caption": "a guy speaking how to code fundamental codes on a game", "video_id": "video10515", "sen_id": 256274}, {"caption": "someone is creating some pixel art", "video_id": "video10515", "sen_id": 256275}, {"caption": "a man is giving information about a system for computer coding", "video_id": "video10515", "sen_id": 256276}, {"caption": "software on how to make games are explained on the monitor", "video_id": "video10515", "sen_id": 256277}, {"caption": "some in a computer is playing a video game", "video_id": "video10515", "sen_id": 256278}, {"caption": "it is an animation screen like a game in a computer", "video_id": "video10515", "sen_id": 256279}, {"caption": "a man is talking about the government and the 14th amendment", "video_id": "video12309", "sen_id": 256280}, {"caption": "the history of the united states is a victorious and occasionally violent one", "video_id": "video12309", "sen_id": 256281}, {"caption": "the post-civil war history of the usa involved reconstruction and the election of president grant", "video_id": "video12309", "sen_id": 256282}, {"caption": "map of the world and old historical letter is showing on screen", "video_id": "video12309", "sen_id": 256283}, {"caption": "a document is being shown and the photograph of leaders standing also seen", "video_id": "video12309", "sen_id": 256284}, {"caption": "a man is describing the ratification of the fourteenth amendment", "video_id": "video12309", "sen_id": 256285}, {"caption": "an image of an old document runs past along with pictures of presidents", "video_id": "video12309", "sen_id": 256286}, {"caption": "there is a man talking about a a historic person", "video_id": "video12309", "sen_id": 256287}, {"caption": "a man talking about the presidential nomination of ulysses s grant and what things were like in the united states at that time", "video_id": "video12309", "sen_id": 256288}, {"caption": "an old hand written contract aggrement and picture of american leaders", "video_id": "video12309", "sen_id": 256289}, {"caption": "the map of the united states before historical documents and men with beards", "video_id": "video12309", "sen_id": 256290}, {"caption": "narrator talking about the reconstruction era after the civil war", "video_id": "video12309", "sen_id": 256291}, {"caption": "some old book is shown and the pictures on it is explained", "video_id": "video12309", "sen_id": 256292}, {"caption": "somebody is looking over a very old document that is hand written in cursive", "video_id": "video12309", "sen_id": 256293}, {"caption": "a man is describing radical reconstruction and how andrew johnson did not become president but rather ulysses s grant in 1868", "video_id": "video12309", "sen_id": 256294}, {"caption": "a map of the united states and photos of presidents are shown as a man discusses reconstruction and the elections", "video_id": "video12309", "sen_id": 256295}, {"caption": "a documentary shows historical documents and pictures from american history", "video_id": "video12309", "sen_id": 256296}, {"caption": "a man narrates about the 1886 election whilst showing historic pictures", "video_id": "video12309", "sen_id": 256297}, {"caption": "a written document is being displayed here", "video_id": "video12309", "sen_id": 256298}, {"caption": "a picture of a guy with a beard is shown", "video_id": "video12309", "sen_id": 256299}, {"caption": "a pop song is playing while various images depict women in fashionable attire", "video_id": "video10565", "sen_id": 256300}, {"caption": "different women are showing off different fashions in photos", "video_id": "video10565", "sen_id": 256301}, {"caption": "a model disply the dressess in defferent verity", "video_id": "video10565", "sen_id": 256302}, {"caption": "several images are shown including a woman in a shirt with a face on it someone with a long scarf", "video_id": "video10565", "sen_id": 256303}, {"caption": "there is different clothes on people that are being photographed", "video_id": "video10565", "sen_id": 256304}, {"caption": "a young woman is featured modeling clothing while music plays in the background", "video_id": "video10565", "sen_id": 256305}, {"caption": "there is a lady standing with different costumes", "video_id": "video10565", "sen_id": 256306}, {"caption": "dress designs for girls are shown in different poses", "video_id": "video10565", "sen_id": 256307}, {"caption": "wild fashions of a fashion designer are shown in several different situations", "video_id": "video10565", "sen_id": 256308}, {"caption": "pictures of people in different types of clothing are being shown", "video_id": "video10565", "sen_id": 256309}, {"caption": "young beautiful women pose for photos", "video_id": "video10565", "sen_id": 256310}, {"caption": "a lady standing on the room and make uo her dress", "video_id": "video10565", "sen_id": 256311}, {"caption": "different type of clothing is being shown such as scars and coats", "video_id": "video10565", "sen_id": 256312}, {"caption": "young women pose for pictures in very colorful and fashionable outfits", "video_id": "video10565", "sen_id": 256313}, {"caption": "music plays while pictures of interesting clothing are displayed", "video_id": "video10565", "sen_id": 256314}, {"caption": "a women wearing beautiful dress is giving photo shoot and the piectures are shown with background music", "video_id": "video10565", "sen_id": 256315}, {"caption": "music is playing while showing different still photos of people in fashions", "video_id": "video10565", "sen_id": 256316}, {"caption": "in a tv fashion technology program the new dress made with kinemaster is being shown in white red and blue colors", "video_id": "video10565", "sen_id": 256317}, {"caption": "a lady poses with traditional clothing by a wall", "video_id": "video10565", "sen_id": 256318}, {"caption": "a slide show of individual models in their fashion pieces scrolls to the music of a pop song", "video_id": "video10565", "sen_id": 256319}, {"caption": "people are watching kite surfing at a beach on a windy day", "video_id": "video10841", "sen_id": 256320}, {"caption": "a bunch of people looking at kites flying in the air", "video_id": "video10841", "sen_id": 256321}, {"caption": "a bunch of people are sitting on the side of a beach watching kites being flown", "video_id": "video10841", "sen_id": 256322}, {"caption": "a crowd watches parachute skiiers as a man narrates", "video_id": "video10841", "sen_id": 256323}, {"caption": "a group of people watching hand gliders performing over the ocean", "video_id": "video10841", "sen_id": 256324}, {"caption": "a crowd on a beach watches parachute surfers compete in high winds", "video_id": "video10841", "sen_id": 256325}, {"caption": "people are on a beach watching people out in the ocean surf sailing", "video_id": "video10841", "sen_id": 256326}, {"caption": "a group of people release kites on a sunny day at a beach", "video_id": "video10841", "sen_id": 256327}, {"caption": "kite boarders perform amazing feats on a very windy day", "video_id": "video10841", "sen_id": 256328}, {"caption": "the people are watching the parachutes near the sea", "video_id": "video10841", "sen_id": 256329}, {"caption": "in a seashore people are watching parachute flying", "video_id": "video10841", "sen_id": 256330}, {"caption": "host speaking and showing kites flying over the ocean with spectators on the beach watching closely", "video_id": "video10841", "sen_id": 256331}, {"caption": "the people on the beach watch the kites fly in the sky", "video_id": "video10841", "sen_id": 256332}, {"caption": "people are watching objects in the sky at the beach", "video_id": "video10841", "sen_id": 256333}, {"caption": "a group of people are watching a man parachuted from the skyscraper", "video_id": "video10841", "sen_id": 256334}, {"caption": "para sailing is being witnessed by people on the beach", "video_id": "video10841", "sen_id": 256335}, {"caption": "a lot of people at the beach watching parachutes above the ocean", "video_id": "video10841", "sen_id": 256336}, {"caption": "a hude audience is watching water waves and kites flying in the sky", "video_id": "video10841", "sen_id": 256337}, {"caption": "people are watching kites be flown on the beach", "video_id": "video10841", "sen_id": 256338}, {"caption": "people are paragliding at a beach and catching air", "video_id": "video10841", "sen_id": 256339}, {"caption": "showing the swimming pool and beach at an ocean retreat", "video_id": "video10166", "sen_id": 256340}, {"caption": "its a about a beautiful water sea shore and tress", "video_id": "video10166", "sen_id": 256341}, {"caption": "swimming pool on beach beach house are located", "video_id": "video10166", "sen_id": 256342}, {"caption": "various images of a sea side resort are being played to relaxing music", "video_id": "video10166", "sen_id": 256343}, {"caption": "natural things that is treesbeautiful flowers are shown very naturally", "video_id": "video10166", "sen_id": 256344}, {"caption": "this is a tour filming the outside and nature of a resort", "video_id": "video10166", "sen_id": 256345}, {"caption": "there is a blue swimming pool in aresort", "video_id": "video10166", "sen_id": 256346}, {"caption": "different views of a hotel by the beach in the day and the night", "video_id": "video10166", "sen_id": 256347}, {"caption": "for tourist attraction a beautiful garden hifi swimming pool well furnished beach and cottages are shown in a tv", "video_id": "video10166", "sen_id": 256348}, {"caption": "a tropical island resort is being shown the beach island garden swimming pool and sunset have also been shown", "video_id": "video10166", "sen_id": 256349}, {"caption": "a video shoot of pleasent nature and poolside buildings and the beach view and night stay view has been shown in this clip", "video_id": "video10166", "sen_id": 256350}, {"caption": "different scenes from a tropical location including the beach and pool", "video_id": "video10166", "sen_id": 256351}, {"caption": "a chairs beach resort and swimming pool are displaying", "video_id": "video10166", "sen_id": 256352}, {"caption": "beautiful sights of the pool and the beach with the night view of the pool", "video_id": "video10166", "sen_id": 256353}, {"caption": "a beautiful resort is being shown with a swimming pool and it is fully gardened very beautiful and many sunbath chair is also there", "video_id": "video10166", "sen_id": 256354}, {"caption": "a beach area with a pool and beach house", "video_id": "video10166", "sen_id": 256355}, {"caption": "there are sceneries like swimming pool and garden and seashore", "video_id": "video10166", "sen_id": 256356}, {"caption": "a wonderful view of a hotel resort along the poolside and at the waterside in the evening", "video_id": "video10166", "sen_id": 256357}, {"caption": "various attractions of a sea coast resort", "video_id": "video10166", "sen_id": 256358}, {"caption": "some scenes of a hotel are being filmed", "video_id": "video10166", "sen_id": 256359}, {"caption": "a man cooking a mixture to lower the flour taste in the mixture", "video_id": "video10053", "sen_id": 256360}, {"caption": "a man is stirring something in a green pot", "video_id": "video10053", "sen_id": 256361}, {"caption": "in the kitchen a man making a simple dish", "video_id": "video10053", "sen_id": 256362}, {"caption": "cooking instructions given over a stove top about something involving flour", "video_id": "video10053", "sen_id": 256363}, {"caption": "a guy stirring some kind of flour based ingredient on the stove", "video_id": "video10053", "sen_id": 256364}, {"caption": "a man is mixing a flour in the pan", "video_id": "video10053", "sen_id": 256365}, {"caption": "a man is stirring butter into flour in a green saucepan on a stove as prep for making a recipe", "video_id": "video10053", "sen_id": 256366}, {"caption": "in the kitchen someone making a dish in a pan", "video_id": "video10053", "sen_id": 256367}, {"caption": "a man mixes food in a pot with a whisk as he explains the reason why he is doing it", "video_id": "video10053", "sen_id": 256368}, {"caption": "closeup shot of flour being added to melted butter and whisked in a green pot", "video_id": "video10053", "sen_id": 256369}, {"caption": "a man stirs a pastie mix in a pan and instructs", "video_id": "video10053", "sen_id": 256370}, {"caption": "man wisking flower in green pot on stove on low heat to get rid of taste", "video_id": "video10053", "sen_id": 256371}, {"caption": "a man stirring with a beater in a green bowl", "video_id": "video10053", "sen_id": 256372}, {"caption": "a man stirring a vegetable in a green ceramic pot", "video_id": "video10053", "sen_id": 256373}, {"caption": "a cook man explains about his dish", "video_id": "video10053", "sen_id": 256374}, {"caption": "cheese are fried on the tawa", "video_id": "video10053", "sen_id": 256375}, {"caption": "the cook is stirring the floor and garlic in the bowl over a stove manually", "video_id": "video10053", "sen_id": 256376}, {"caption": "a chef is preparing a gravy base in a green pan", "video_id": "video10053", "sen_id": 256377}, {"caption": "in a kitchen person is mixing the ingredients for the lunch", "video_id": "video10053", "sen_id": 256378}, {"caption": "in a kitchen a person frying something in a beaker", "video_id": "video10053", "sen_id": 256379}, {"caption": "a guy is discussing fighting scenes in various video games", "video_id": "video10648", "sen_id": 256380}, {"caption": "review of video games listed in order by a male speaker", "video_id": "video10648", "sen_id": 256381}, {"caption": "a man in white shirt is fighting against a man in red shirt", "video_id": "video10648", "sen_id": 256382}, {"caption": "a man playing the video game simpsons wrestling", "video_id": "video10648", "sen_id": 256383}, {"caption": "homer simpson is standing in front of his drunk passed out friend", "video_id": "video10648", "sen_id": 256384}, {"caption": "in a video game a man in white and a man in red shirt playing the game", "video_id": "video10648", "sen_id": 256385}, {"caption": "there is boxing court and fighting someone", "video_id": "video10648", "sen_id": 256386}, {"caption": "10 the simpsons wrestling (2001) more cartoons there", "video_id": "video10648", "sen_id": 256387}, {"caption": "two cartoon characters on the stage", "video_id": "video10648", "sen_id": 256388}, {"caption": "homer simpson bounces off the ropes towards his wrestling opponent", "video_id": "video10648", "sen_id": 256389}, {"caption": "a person is playing a video game about the simpsons", "video_id": "video10648", "sen_id": 256390}, {"caption": "animated wrestling video game is played by two boys", "video_id": "video10648", "sen_id": 256391}, {"caption": "cartoon all plays in the 10 simpsons wrestling (2001)", "video_id": "video10648", "sen_id": 256392}, {"caption": "two person are fighting in the animation picture", "video_id": "video10648", "sen_id": 256393}, {"caption": "player playing homer simson video game and trying to get more points", "video_id": "video10648", "sen_id": 256394}, {"caption": "someone is playing a simpsons video game on their tv", "video_id": "video10648", "sen_id": 256395}, {"caption": "the man knocks the other an out in the video game", "video_id": "video10648", "sen_id": 256396}, {"caption": "ranked 10 the simpsons wrestling (2001) watch mojo", "video_id": "video10648", "sen_id": 256397}, {"caption": "a person is playing a video game and giving commentary", "video_id": "video10648", "sen_id": 256398}, {"caption": "a man is narrating a game review for a simpsons-based wrestling video game", "video_id": "video10648", "sen_id": 256399}, {"caption": "video shots of a pro tennis player practicing", "video_id": "video12667", "sen_id": 256400}, {"caption": "a man is playing tennis very professionally outdoors it is very sunny", "video_id": "video12667", "sen_id": 256401}, {"caption": "man in black t-shirt is playing tennis with his partner", "video_id": "video12667", "sen_id": 256402}, {"caption": "a famous tennis player demonstrates an amazing tennis trick shot", "video_id": "video12667", "sen_id": 256403}, {"caption": "two people playing tennis on green tennis ground with hitting the tennis ball he played a nice back shot with his bat", "video_id": "video12667", "sen_id": 256404}, {"caption": "in a tennis court a man in black t shirt playing tennis", "video_id": "video12667", "sen_id": 256405}, {"caption": "a person playing a tennis on green grass and hitting the ball", "video_id": "video12667", "sen_id": 256406}, {"caption": "roger federer playing tennis in back of his head", "video_id": "video12667", "sen_id": 256407}, {"caption": "a tennis player practices some hits on the court", "video_id": "video12667", "sen_id": 256408}, {"caption": "a tennis player wearing a navy shirt is playing a match on a tennis court", "video_id": "video12667", "sen_id": 256409}, {"caption": "the tennis player hits the ball with the racquet", "video_id": "video12667", "sen_id": 256410}, {"caption": "tennis players enjoy a match together on a sunny day", "video_id": "video12667", "sen_id": 256411}, {"caption": "a man playing tennis and then going into slow motion while playing tennis", "video_id": "video12667", "sen_id": 256412}, {"caption": "a man is being recorded playing tennis on a sunny day", "video_id": "video12667", "sen_id": 256413}, {"caption": "the player is wearing black and white dress and is playing well", "video_id": "video12667", "sen_id": 256414}, {"caption": "the tennis player the black shirt hits a trick shot back to his opponent", "video_id": "video12667", "sen_id": 256415}, {"caption": "roger federer is being filmed showing his play of tennis", "video_id": "video12667", "sen_id": 256416}, {"caption": "a players are playing a tennis game in the ground", "video_id": "video12667", "sen_id": 256417}, {"caption": "a man is playing tennis on a sunny day", "video_id": "video12667", "sen_id": 256418}, {"caption": "tennis player in black shirt shows his trick show at practice", "video_id": "video12667", "sen_id": 256419}, {"caption": "a woman with long brown hair and glasses is talking about a new product brightly coloured glowing golf balls", "video_id": "video10695", "sen_id": 256420}, {"caption": "a cute brunette girl wearing glasses and talking", "video_id": "video10695", "sen_id": 256421}, {"caption": "a woman discussing some new tennis balls", "video_id": "video10695", "sen_id": 256422}, {"caption": "a woman wearing glasses describing the led golf balls that can be purchased at sharper image", "video_id": "video10695", "sen_id": 256423}, {"caption": "colorful substance in lady hand she wear red specs and has long hair", "video_id": "video10695", "sen_id": 256424}, {"caption": "a woman with glass is speaking about the led golf balls specification and details", "video_id": "video10695", "sen_id": 256425}, {"caption": "the woman with the red glasses talks about the glow in the dark golf balls", "video_id": "video10695", "sen_id": 256426}, {"caption": "a woman wearing glasses is holding an object and explaining", "video_id": "video10695", "sen_id": 256427}, {"caption": "a reporter is describing cool summer gadgets", "video_id": "video10695", "sen_id": 256428}, {"caption": "an news channel is introduced a program for a new gadgets out the market", "video_id": "video10695", "sen_id": 256429}, {"caption": "a woman on tv is showing some golf balls", "video_id": "video10695", "sen_id": 256430}, {"caption": "there is a woman with red specs talking from a studio", "video_id": "video10695", "sen_id": 256431}, {"caption": "woman in red glasses holding a case of led golf balls", "video_id": "video10695", "sen_id": 256432}, {"caption": "a woman wearing red glasses and a colorful shirt promotes an item", "video_id": "video10695", "sen_id": 256433}, {"caption": "marketing of led golf balls through the model depicting various qualities of the ball", "video_id": "video10695", "sen_id": 256434}, {"caption": "a woman with glasses is talking about nonsense", "video_id": "video10695", "sen_id": 256435}, {"caption": "a lady is showing a cool gadget to an audience on the channel cnbc", "video_id": "video10695", "sen_id": 256436}, {"caption": "a girl holding colourfull bulbs and talks about a cool summer gadgets newly introduced in the market", "video_id": "video10695", "sen_id": 256437}, {"caption": "a lady with long hair and wearing spectacles is showing led golf balls which illuminates with battery", "video_id": "video10695", "sen_id": 256438}, {"caption": "a woman is selling some gadgets and telling about the money options", "video_id": "video10695", "sen_id": 256439}, {"caption": "a man cooks a steamy dessert option and places it on a dish", "video_id": "video12920", "sen_id": 256440}, {"caption": "a dish has been prepared and decorated by someone in kitchen", "video_id": "video12920", "sen_id": 256441}, {"caption": "a man narrating how to prepare a food dish", "video_id": "video12920", "sen_id": 256442}, {"caption": "a chef improves his food presentation by adding sesame seed encrusted prunes", "video_id": "video12920", "sen_id": 256443}, {"caption": "some eating item is under prepartion in a vessel a person keeps a black color dry fruit is being keep on top of the dish", "video_id": "video12920", "sen_id": 256444}, {"caption": "a british man is explaining a traditional moroccan dish that uses dates and nuts", "video_id": "video12920", "sen_id": 256445}, {"caption": "a man talks about preparing a delicious meal", "video_id": "video12920", "sen_id": 256446}, {"caption": "a man speakingabout the appearence on a dish", "video_id": "video12920", "sen_id": 256447}, {"caption": "a man and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12920", "sen_id": 256448}, {"caption": "in a kitchen someone is displaying the dish in the table", "video_id": "video12920", "sen_id": 256449}, {"caption": "a man prepares a dish by placing fruit by hand piece by piece", "video_id": "video12920", "sen_id": 256450}, {"caption": "tv show hosts informs us that the dish we see being prepared is a very good looking dish", "video_id": "video12920", "sen_id": 256451}, {"caption": "a pot of boiling meat is dressed with prunes and nuts", "video_id": "video12920", "sen_id": 256452}, {"caption": "a great dish of arabia the roasted chicken is flagged with dry fruits", "video_id": "video12920", "sen_id": 256453}, {"caption": "a food dish is being prepared the dish appears to include some kind of meat and dried plums the ingredients are all beautifully arranged in a bubbling sauce", "video_id": "video12920", "sen_id": 256454}, {"caption": "a man talks about how beautiful a dish he is making is", "video_id": "video12920", "sen_id": 256455}, {"caption": "a person is putting a dish together which uses chicken and seeds", "video_id": "video12920", "sen_id": 256456}, {"caption": "food has dates added to it that have sesame seeds on them", "video_id": "video12920", "sen_id": 256457}, {"caption": "this guy is preparing some meals", "video_id": "video12920", "sen_id": 256458}, {"caption": "someone is cooking some food inside of a pot", "video_id": "video12920", "sen_id": 256459}, {"caption": "a talented taylor swift performs as a lady with angel wings comes out", "video_id": "video11070", "sen_id": 256460}, {"caption": "a lady in a silver dresss", "video_id": "video11070", "sen_id": 256461}, {"caption": "a woman singing and models walking out", "video_id": "video11070", "sen_id": 256462}, {"caption": "a singer on stage in a very sparkile dress with modles walking out with angle wings", "video_id": "video11070", "sen_id": 256463}, {"caption": "victoria secret fashion show with lady singing", "video_id": "video11070", "sen_id": 256464}, {"caption": "a women in stone dress standing with mike in a stage and singing a pop song a model women walking in pink dress", "video_id": "video11070", "sen_id": 256465}, {"caption": "a woman in a sparkling white dress singing while looking at the camera", "video_id": "video11070", "sen_id": 256466}, {"caption": "a woman in a sparkling dress is singing at a lingerie fashion show", "video_id": "video11070", "sen_id": 256467}, {"caption": "pop cover plays in the background of a fashion runway as a model appears in gigantic angel wings", "video_id": "video11070", "sen_id": 256468}, {"caption": "a pretty girl is singing a song while models are walking", "video_id": "video11070", "sen_id": 256469}, {"caption": "taylor swift is singing one of her songs while a woman dressed like an angel walks behind her", "video_id": "video11070", "sen_id": 256470}, {"caption": "taylor swift is singing on a stage of a victoria secret show", "video_id": "video11070", "sen_id": 256471}, {"caption": "a girl standing holding mic in hand singing song and white dress girl beside walking displaying on screen", "video_id": "video11070", "sen_id": 256472}, {"caption": "woman in sparkling white dress singing on a stage during a modeling event", "video_id": "video11070", "sen_id": 256473}, {"caption": "a woman with a microphone is singing a song", "video_id": "video11070", "sen_id": 256474}, {"caption": "a girl is singing a song as a woman models lingerie", "video_id": "video11070", "sen_id": 256475}, {"caption": "a pop singer is singing on stage in sparkly dress", "video_id": "video11070", "sen_id": 256476}, {"caption": "different colors like bluegreen and red are seen here", "video_id": "video11070", "sen_id": 256477}, {"caption": "taylor swift singing her song trouble at a victoria s secret runway event", "video_id": "video11070", "sen_id": 256478}, {"caption": "a woman in a sparkly dress performs live on cbs", "video_id": "video11070", "sen_id": 256479}, {"caption": "two teams of tennis players battle it out on the tennis court in front of a live audience to see who will win the match", "video_id": "video10303", "sen_id": 256480}, {"caption": "a mixed doubles badminton match in progress in green court", "video_id": "video10303", "sen_id": 256481}, {"caption": "there is someone playing badminton in a indoor court", "video_id": "video10303", "sen_id": 256482}, {"caption": "a group of players are having a fun time playing tennis", "video_id": "video10303", "sen_id": 256483}, {"caption": "two groups of people play a game of badmitton in a large stadium", "video_id": "video10303", "sen_id": 256484}, {"caption": "an international mixed double shuttlecock tournament is in progress and a smash is easily returned", "video_id": "video10303", "sen_id": 256485}, {"caption": "doubles badminton match is played on with large crowd witnessing it", "video_id": "video10303", "sen_id": 256486}, {"caption": "here two opposite teams are playing where one of them made a point and feeling excitement", "video_id": "video10303", "sen_id": 256487}, {"caption": "players are shown playing a sports game on an indoor field", "video_id": "video10303", "sen_id": 256488}, {"caption": "there are two tennis teams playing a match for a video game", "video_id": "video10303", "sen_id": 256489}, {"caption": "badminton player in black and whit shorts playing mixed doubles against each other in a match", "video_id": "video10303", "sen_id": 256490}, {"caption": "all people are playing badmintion in a stadium", "video_id": "video10303", "sen_id": 256491}, {"caption": "two teams are playing lawn tennis on the ground", "video_id": "video10303", "sen_id": 256492}, {"caption": "mens doubles batmiton is running in game point interesting stage", "video_id": "video10303", "sen_id": 256493}, {"caption": "two tennis teams are playing a match in a video game", "video_id": "video10303", "sen_id": 256494}, {"caption": "a group of people are competing against each other", "video_id": "video10303", "sen_id": 256495}, {"caption": "there is a badminton court with real fighting players", "video_id": "video10303", "sen_id": 256496}, {"caption": "a mixed double shuttle match being played in london", "video_id": "video10303", "sen_id": 256497}, {"caption": "two mixed pairs of players are playing double tennis on an inside tennis court", "video_id": "video10303", "sen_id": 256498}, {"caption": "people on a tennis court playing a doubles match", "video_id": "video10303", "sen_id": 256499}, {"caption": "video game review of a tennis", "video_id": "video10079", "sen_id": 256500}, {"caption": "people practising some game in front of their training coaches", "video_id": "video10079", "sen_id": 256501}, {"caption": "there is someone playing tennis on a court", "video_id": "video10079", "sen_id": 256502}, {"caption": "cartoon toys are playing tennis in a court", "video_id": "video10079", "sen_id": 256503}, {"caption": "video game footage of the video game mario tennis", "video_id": "video10079", "sen_id": 256504}, {"caption": "cartoon characters are playing tennis on a tennis court", "video_id": "video10079", "sen_id": 256505}, {"caption": "its a animated video game of badminton game", "video_id": "video10079", "sen_id": 256506}, {"caption": "there are two boys playing betmanton in indoor stadium", "video_id": "video10079", "sen_id": 256507}, {"caption": "a man talks about a tennis video game while footage of the game plays", "video_id": "video10079", "sen_id": 256508}, {"caption": "in a video game tennis playing by girl", "video_id": "video10079", "sen_id": 256509}, {"caption": "in a game they were playing tennis and the doll girl playing well", "video_id": "video10079", "sen_id": 256510}, {"caption": "there is a woman in blue playing tennis", "video_id": "video10079", "sen_id": 256511}, {"caption": "a game review on tennis duel challenge", "video_id": "video10079", "sen_id": 256512}, {"caption": "a man is describing a video game featuring animated characters", "video_id": "video10079", "sen_id": 256513}, {"caption": "video game tennis game is play by man makes it", "video_id": "video10079", "sen_id": 256514}, {"caption": "video games being talked about while scenes of coopa playing tennis with a female character are bing shown", "video_id": "video10079", "sen_id": 256515}, {"caption": "there is a woman playing tennis with a animal", "video_id": "video10079", "sen_id": 256516}, {"caption": "the cartoons are playing tenice in beautifully dicorated field", "video_id": "video10079", "sen_id": 256517}, {"caption": "a man is describing a new mode in mario tennis and how it isn t that great", "video_id": "video10079", "sen_id": 256518}, {"caption": "there is a princess battling bowser on a tennis court", "video_id": "video10079", "sen_id": 256519}, {"caption": "fox news interviewing trump after a debate", "video_id": "video12232", "sen_id": 256520}, {"caption": "a man with black and grey hair interviews president trump in a recap of the gop debate", "video_id": "video12232", "sen_id": 256521}, {"caption": "a man with black and grey hair interviews president trump in a recap of the gop debate", "video_id": "video12232", "sen_id": 256522}, {"caption": "sean hannity asking donald trump a question about how a reporter treated him", "video_id": "video12232", "sen_id": 256523}, {"caption": "a fox reporter in a dark grey suit and red tie is interviewing donald trump discussing the recap of the gop debate", "video_id": "video12232", "sen_id": 256524}, {"caption": "a news reporter is interviewing donald trump about the debate", "video_id": "video12232", "sen_id": 256525}, {"caption": " rubio battle while trump pledges gop loyalty at debate", "video_id": "video12232", "sen_id": 256526}, {"caption": "fox news interviewer questioning donald trump after a gop debate", "video_id": "video12232", "sen_id": 256527}, {"caption": "two men wearing suits speaking to each other from different areas", "video_id": "video12232", "sen_id": 256528}, {"caption": "guy in suit and tie talking to donald trump from the studio", "video_id": "video12232", "sen_id": 256529}, {"caption": "a suit man talking to a person from the crowd", "video_id": "video12232", "sen_id": 256530}, {"caption": "a man wearing black color coat is talking", "video_id": "video12232", "sen_id": 256531}, {"caption": "fox news gop debate one of the politician speaks", "video_id": "video12232", "sen_id": 256532}, {"caption": "a news anchor on fox news talk to donald trump", "video_id": "video12232", "sen_id": 256533}, {"caption": "a man in a suit is asking a question to a political candidate regarding another politician speaking ill of him", "video_id": "video12232", "sen_id": 256534}, {"caption": "there is a suit man talking from the studio", "video_id": "video12232", "sen_id": 256535}, {"caption": "two men both are dressed with same color talking together", "video_id": "video12232", "sen_id": 256536}, {"caption": "a news reporter is interviewing donald trump about the attacks made upon him", "video_id": "video12232", "sen_id": 256537}, {"caption": "donald trump is interviewed on fox news", "video_id": "video12232", "sen_id": 256538}, {"caption": "two men on tv are talking about political issues", "video_id": "video12232", "sen_id": 256539}, {"caption": "someone is explaining a scissor lift", "video_id": "video12930", "sen_id": 256540}, {"caption": "someone is teaching on designing bridge like structure using ice cream sticks", "video_id": "video12930", "sen_id": 256541}, {"caption": "a women is doing some craft work and showing to others", "video_id": "video12930", "sen_id": 256542}, {"caption": "a man did some hand made product and explaining it", "video_id": "video12930", "sen_id": 256543}, {"caption": "a wooden structure is displayed hooked up to a circuit breaker", "video_id": "video12930", "sen_id": 256544}, {"caption": "a man explains how to make a structure using popsicle sticks", "video_id": "video12930", "sen_id": 256545}, {"caption": "a person is preparing a bridge with sticks", "video_id": "video12930", "sen_id": 256546}, {"caption": "zig zag stick syrenge connected on it", "video_id": "video12930", "sen_id": 256547}, {"caption": "a person is demonstrating a scientific experiment", "video_id": "video12930", "sen_id": 256548}, {"caption": "a person is showing a thing that they made", "video_id": "video12930", "sen_id": 256549}, {"caption": "there is short form of hidrolic system on the table", "video_id": "video12930", "sen_id": 256550}, {"caption": "a man is giving directions on how to use ice cream sticks to make a jack", "video_id": "video12930", "sen_id": 256551}, {"caption": "some ice cream sticks are fixed together and a mechanism is made", "video_id": "video12930", "sen_id": 256552}, {"caption": "a man is talking about making an item with ice cream sticks", "video_id": "video12930", "sen_id": 256553}, {"caption": "a wood thing is on some body s table", "video_id": "video12930", "sen_id": 256554}, {"caption": "there is something impressing matters going on", "video_id": "video12930", "sen_id": 256555}, {"caption": "a man is explaining some sort of device on a table made out of a dooten lattice and a pair of syringes", "video_id": "video12930", "sen_id": 256556}, {"caption": "a structure mad out of cycle sticks is shown while a man instructs", "video_id": "video12930", "sen_id": 256557}, {"caption": "a two stick to do experiment to do structure for jack to ready craft work displaying on screen", "video_id": "video12930", "sen_id": 256558}, {"caption": "a man makes a jack out of popsicle sticks", "video_id": "video12930", "sen_id": 256559}, {"caption": "a video game screen shows someone holding a rifle while others run around", "video_id": "video10012", "sen_id": 256560}, {"caption": "there is a commando fighting against enemies", "video_id": "video10012", "sen_id": 256561}, {"caption": "a man is describing how he multitasks other applications while playing an online game", "video_id": "video10012", "sen_id": 256562}, {"caption": "a large weapon holding bullets is pointed at approaching attackers on a concrete urban rooftop with rectangular structures", "video_id": "video10012", "sen_id": 256563}, {"caption": "a man talking about his website while an action game plays in the back ground", "video_id": "video10012", "sen_id": 256564}, {"caption": "a solder walks around the arena holding his gun", "video_id": "video10012", "sen_id": 256565}, {"caption": "gun shooting game is played by a player on screen", "video_id": "video10012", "sen_id": 256566}, {"caption": "this person is showing off a first person shooter game", "video_id": "video10012", "sen_id": 256567}, {"caption": "a man explain about a video game its playing in the screen", "video_id": "video10012", "sen_id": 256568}, {"caption": "some fighting is between the peoples", "video_id": "video10012", "sen_id": 256569}, {"caption": "there is a person playing video game on tv screen", "video_id": "video10012", "sen_id": 256570}, {"caption": "a guy giving an update about a game tells the viewers that if they like his video they and subscribe comment and like his page on facebook twitter", "video_id": "video10012", "sen_id": 256571}, {"caption": "an person explaining how the animation work to invent a video games", "video_id": "video10012", "sen_id": 256572}, {"caption": "a man narrates over a video of him playing a video game", "video_id": "video10012", "sen_id": 256573}, {"caption": "a man is playing the video game", "video_id": "video10012", "sen_id": 256574}, {"caption": "a man narrates as he plays a video game", "video_id": "video10012", "sen_id": 256575}, {"caption": "in a roadshoot with gun 3d game is good", "video_id": "video10012", "sen_id": 256576}, {"caption": "one man playing video shooting game very interestingly", "video_id": "video10012", "sen_id": 256577}, {"caption": "video game with gun and moving fast some one talking about that", "video_id": "video10012", "sen_id": 256578}, {"caption": "player playing video game trying to get more points for the next level", "video_id": "video10012", "sen_id": 256579}, {"caption": "a rugby match is being played and the team in red shirts is passing the ball as they run down the field", "video_id": "video12264", "sen_id": 256580}, {"caption": "two male football teams wearing red yellow and black play a game of football where one of the red players score a touchdown", "video_id": "video12264", "sen_id": 256581}, {"caption": "a man in red jersey grabbed the football on the field while playing", "video_id": "video12264", "sen_id": 256582}, {"caption": " one in yellow and the other in red are playing football", "video_id": "video12264", "sen_id": 256583}, {"caption": "some players are playing hand ball game on a green grass ground", "video_id": "video12264", "sen_id": 256584}, {"caption": "a soccer team in red uniforms plays against a team in yellow uniforms as a man commentates", "video_id": "video12264", "sen_id": 256585}, {"caption": "there is a player running with a ball", "video_id": "video12264", "sen_id": 256586}, {"caption": "several sports players play on a very green field in shorts on a sunny day", "video_id": "video12264", "sen_id": 256587}, {"caption": "wow move player in red dress holds ball and then win game", "video_id": "video12264", "sen_id": 256588}, {"caption": "a rugby team is constantly passing the ball back and forth as they run down the field", "video_id": "video12264", "sen_id": 256589}, {"caption": "there is a team playing with some tricks", "video_id": "video12264", "sen_id": 256590}, {"caption": " the team in red shirt rushes and make a goal", "video_id": "video12264", "sen_id": 256591}, {"caption": "in a game of rugby red team is playing against the orange team", "video_id": "video12264", "sen_id": 256592}, {"caption": "two teams are running across the field with a ball in their hand", "video_id": "video12264", "sen_id": 256593}, {"caption": "soccer players on a team repeatedly pass the ball from player to player as they race to the goal line", "video_id": "video12264", "sen_id": 256594}, {"caption": "teams are moving fast with rugby ball in the ground", "video_id": "video12264", "sen_id": 256595}, {"caption": "the red rugby team gets the ball and carries it down the field before the referee blows the whistle", "video_id": "video12264", "sen_id": 256596}, {"caption": "in a handball game a manis in red uniform is running with ball", "video_id": "video12264", "sen_id": 256597}, {"caption": "fast football players running trough the field", "video_id": "video12264", "sen_id": 256598}, {"caption": "a rugby game where multiple players on the same team make a long run with the ball", "video_id": "video12264", "sen_id": 256599}, {"caption": "putting oil in a pan and adding onion and bay leaves while string", "video_id": "video12975", "sen_id": 256600}, {"caption": "in a stainless steal pot oil and few other ingredients are added for cooking", "video_id": "video12975", "sen_id": 256601}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video12975", "sen_id": 256602}, {"caption": "the food ingredients like some leaves sliced onion are mixed in a big pot on the gas", "video_id": "video12975", "sen_id": 256603}, {"caption": "on a kitchen lady preparing food by putting some oil and onion in to a aluminium pot", "video_id": "video12975", "sen_id": 256604}, {"caption": "in a bowl added some oil and two bay leaves and a cup of sliced onions are frying all those with a spoon", "video_id": "video12975", "sen_id": 256605}, {"caption": "a person is showing how to cook a dish while indian music plays", "video_id": "video12975", "sen_id": 256606}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video12975", "sen_id": 256607}, {"caption": "heat pressure cooker add sunflower oil then add bayleaves onions", "video_id": "video12975", "sen_id": 256608}, {"caption": "a bowl indside kitchen pouring cutting onion mixing in bowl and preparing dish to serve and eat", "video_id": "video12975", "sen_id": 256609}, {"caption": "some food is being cooked in a silver pot", "video_id": "video12975", "sen_id": 256610}, {"caption": "sauting onions in sunflower oil with some bay leaves in a pan on the stove", "video_id": "video12975", "sen_id": 256611}, {"caption": "a person is pouring oil and adding some onions and curry leaves into the pan and stirs it well", "video_id": "video12975", "sen_id": 256612}, {"caption": "a person is frying a onion in the pan", "video_id": "video12975", "sen_id": 256613}, {"caption": "a bowl pouring oil inside kitchen onion cuting knife mixing dish ready to prepare to serve", "video_id": "video12975", "sen_id": 256614}, {"caption": "some one is pouring oil in a bowl", "video_id": "video12975", "sen_id": 256615}, {"caption": "a person putting oil into a pressure cooker", "video_id": "video12975", "sen_id": 256616}, {"caption": "oil poured on it and onions are added on it and mixed", "video_id": "video12975", "sen_id": 256617}, {"caption": "someone is cutting onionsfrying them in oil in a pressure cooker and in the end prepares an excellent dish", "video_id": "video12975", "sen_id": 256618}, {"caption": "someone is pouring some oil into a metal pot", "video_id": "video12975", "sen_id": 256619}, {"caption": "a man and a monkey are opening their mouths at the same time", "video_id": "video12506", "sen_id": 256620}, {"caption": "a video of a man carrying a monkey who is wearing a white dress", "video_id": "video12506", "sen_id": 256621}, {"caption": "a white shirt man talking to a monkey", "video_id": "video12506", "sen_id": 256622}, {"caption": "a man making sound and having monkey with him", "video_id": "video12506", "sen_id": 256623}, {"caption": "man holding a monkey puppet making screaming noses simultaneously", "video_id": "video12506", "sen_id": 256624}, {"caption": "a man that is screaming with a monkey", "video_id": "video12506", "sen_id": 256625}, {"caption": "a man in white shirt holding the dressed monkey", "video_id": "video12506", "sen_id": 256626}, {"caption": "there is a man playing with his monkey", "video_id": "video12506", "sen_id": 256627}, {"caption": "a person with monkey on his hand wearing white dress making sound when he is making", "video_id": "video12506", "sen_id": 256628}, {"caption": "guy with the monkey in white dress making faces just like the owner", "video_id": "video12506", "sen_id": 256629}, {"caption": "a man is playing around with a monkey dressed in human clothing", "video_id": "video12506", "sen_id": 256630}, {"caption": "a men in black suit is talking on mic infront of a crowd", "video_id": "video12506", "sen_id": 256631}, {"caption": "a man is holding a monkey in his hand and both are give sounding", "video_id": "video12506", "sen_id": 256632}, {"caption": "a man holds a monkey that is wearing a dress and screams into the camera along with the monkey", "video_id": "video12506", "sen_id": 256633}, {"caption": "monkey in white dress impersonating like his owner", "video_id": "video12506", "sen_id": 256634}, {"caption": "a man with monkey is speaking with each other", "video_id": "video12506", "sen_id": 256635}, {"caption": "a man in a white shirt is holding a baboon and teaching it to scream", "video_id": "video12506", "sen_id": 256636}, {"caption": "a man screams and scares his pet monkey who also screams", "video_id": "video12506", "sen_id": 256637}, {"caption": "a man is keeping with him monkey and the monkey is wearing a beautiful white dressand the monkey is acting according to its person command", "video_id": "video12506", "sen_id": 256638}, {"caption": "a guy is holding a monkey in a dress", "video_id": "video12506", "sen_id": 256639}, {"caption": "a police officer walks on the side of a highway by a man in handcuffs when another officer stands up behind a partition and takes aim before changing his mind and crouches down", "video_id": "video12614", "sen_id": 256640}, {"caption": "a cop in a video game waking around by a highway", "video_id": "video12614", "sen_id": 256641}, {"caption": "a man in police suit is walking around the streets in the open world game", "video_id": "video12614", "sen_id": 256642}, {"caption": "a game about the police on a highway", "video_id": "video12614", "sen_id": 256643}, {"caption": "a man is playing a video game he is a police officer inside of the game", "video_id": "video12614", "sen_id": 256644}, {"caption": "a role playing game where the games is controlling a police officer", "video_id": "video12614", "sen_id": 256645}, {"caption": "trailor of a film or serial is running on screen", "video_id": "video12614", "sen_id": 256646}, {"caption": "a policeman walking around the police care becides the road", "video_id": "video12614", "sen_id": 256647}, {"caption": "in the national highway the police men catching the victims", "video_id": "video12614", "sen_id": 256648}, {"caption": "a young man demonstrates and describes a video game he is playing", "video_id": "video12614", "sen_id": 256649}, {"caption": "a man is explaining a video game while he s playing it", "video_id": "video12614", "sen_id": 256650}, {"caption": "a video game with a crashed cop car as a male talks about what he is doing in the game", "video_id": "video12614", "sen_id": 256651}, {"caption": "in the road the car is coming on very spped and suddenly met an accident", "video_id": "video12614", "sen_id": 256652}, {"caption": "a police chaces a person from the car and look for the victim", "video_id": "video12614", "sen_id": 256653}, {"caption": "a tall police man in white uniform walking in the road side", "video_id": "video12614", "sen_id": 256654}, {"caption": "a policeman walks around a car police car by the freeway", "video_id": "video12614", "sen_id": 256655}, {"caption": "a man playing grand theft auto thanks his viewers for watching", "video_id": "video12614", "sen_id": 256656}, {"caption": "someone is playing a video game as a police officer", "video_id": "video12614", "sen_id": 256657}, {"caption": "a person is playing a game in which a cop is trying to catch a robberer", "video_id": "video12614", "sen_id": 256658}, {"caption": "someone is playing grand theft auto five", "video_id": "video12614", "sen_id": 256659}, {"caption": "a man dressed in black is giving a presentation and lecture about science", "video_id": "video12025", "sen_id": 256660}, {"caption": "a professor with white hairs giving lecture using a big white board and showing presentation", "video_id": "video12025", "sen_id": 256661}, {"caption": "the old man wearing spectacles in giving video presentation", "video_id": "video12025", "sen_id": 256662}, {"caption": "a man in black explains about substitution he wore a spectacles", "video_id": "video12025", "sen_id": 256663}, {"caption": "a man in glasses explains math equations on a white board", "video_id": "video12025", "sen_id": 256664}, {"caption": "a middle aged man in black shirt is explaining something", "video_id": "video12025", "sen_id": 256665}, {"caption": "an old men is explaing what is written on white board", "video_id": "video12025", "sen_id": 256666}, {"caption": "a man in black tshirt is explaining about substitution application", "video_id": "video12025", "sen_id": 256667}, {"caption": "someone is talking about serious subject which are playing on screen", "video_id": "video12025", "sen_id": 256668}, {"caption": "an old man with spects is teaching something", "video_id": "video12025", "sen_id": 256669}, {"caption": "a middle aged man with spectacles is teaching something", "video_id": "video12025", "sen_id": 256670}, {"caption": "men are discussing with screen by actions", "video_id": "video12025", "sen_id": 256671}, {"caption": "older man with white hair speaking in front of a long white screen", "video_id": "video12025", "sen_id": 256672}, {"caption": "a man teaches while standing in front of a digital board", "video_id": "video12025", "sen_id": 256673}, {"caption": "the man teaches his students about genetics and mathematics", "video_id": "video12025", "sen_id": 256674}, {"caption": "there is a black t-shirt man speaking in front of a screen", "video_id": "video12025", "sen_id": 256675}, {"caption": "a professer teaching some acedemic formulas", "video_id": "video12025", "sen_id": 256676}, {"caption": "an older man in a black shirt gives a lecture on trees", "video_id": "video12025", "sen_id": 256677}, {"caption": "a man in glases talks about math on a white board", "video_id": "video12025", "sen_id": 256678}, {"caption": "a white-haired man is talking about something on a screen", "video_id": "video12025", "sen_id": 256679}, {"caption": "a bedroom is furnished with antique furniture and antique accessories", "video_id": "video10729", "sen_id": 256680}, {"caption": "a bed next to a bedside table a dresser drawer and a lamp are in a bedroom", "video_id": "video10729", "sen_id": 256681}, {"caption": "a bedroom with a bed and a bedside table with a lamp is being talks about by a woman", "video_id": "video10729", "sen_id": 256682}, {"caption": "a pan of a bedroom with a bed a bedside table with a lamp a little stool a dresser", "video_id": "video10729", "sen_id": 256683}, {"caption": "a woman is telling all the furniture that is in a room", "video_id": "video10729", "sen_id": 256684}, {"caption": "a woman describes the furniture present in a bedroom", "video_id": "video10729", "sen_id": 256685}, {"caption": "there is a bedroom with full facility inside", "video_id": "video10729", "sen_id": 256686}, {"caption": "bed was shown with white bedspread and there is a door on the corner", "video_id": "video10729", "sen_id": 256687}, {"caption": "a bed next to a bedside table with a lampt next to a table next to a stool", "video_id": "video10729", "sen_id": 256688}, {"caption": "a bedroom is shown as a young lady narrates the furniture she sees in the room", "video_id": "video10729", "sen_id": 256689}, {"caption": "someone is explain about the room and interior details", "video_id": "video10729", "sen_id": 256690}, {"caption": "there s a bed next to the bed is a table with a lamb a little chair and another chair", "video_id": "video10729", "sen_id": 256691}, {"caption": "a bedroom is displayed and in the room a dressing table and chair is shown", "video_id": "video10729", "sen_id": 256692}, {"caption": "a room having double bed covered with white bed sheet a table lamp and a chair", "video_id": "video10729", "sen_id": 256693}, {"caption": "a person is filming the inside of a room", "video_id": "video10729", "sen_id": 256694}, {"caption": "a woman gives a tour of a small white room and lists off the furniture items inside", "video_id": "video10729", "sen_id": 256695}, {"caption": "a woman videotaping and telling about what s in a room", "video_id": "video10729", "sen_id": 256696}, {"caption": "a woman is speaking about arranging a room with chairs", "video_id": "video10729", "sen_id": 256697}, {"caption": "shows a visual of a room where an empty bed with white bed sheet and pillows are present with other furnitures", "video_id": "video10729", "sen_id": 256698}, {"caption": "a white bed is being filmed in a room", "video_id": "video10729", "sen_id": 256699}, {"caption": "a bowl of onions and an a pot on the stove with oil and the onions being placed in", "video_id": "video10371", "sen_id": 256700}, {"caption": "a man adds diced onions to oil and sauteed them on the stove in a pot", "video_id": "video10371", "sen_id": 256701}, {"caption": "a cook explaining how to cook a meal then adds onions into a pot", "video_id": "video10371", "sen_id": 256702}, {"caption": "a chef making food while speaking in a foreign language", "video_id": "video10371", "sen_id": 256703}, {"caption": "a silver pot with oil heating up and garlic added to it", "video_id": "video10371", "sen_id": 256704}, {"caption": "a man is cooking beef macado and telling you how to do it", "video_id": "video10371", "sen_id": 256705}, {"caption": "there is a man cooking with a big pan and insert garlic first", "video_id": "video10371", "sen_id": 256706}, {"caption": "a clear glass bowl holds cut white onion pieces and hands add cut white garlic into a metal silver pot which has cooking oil", "video_id": "video10371", "sen_id": 256707}, {"caption": "overhad shot of a metal bowl as a man not speaking english explains a recipe while he adds garlic and something else", "video_id": "video10371", "sen_id": 256708}, {"caption": "a pot on a stove being heated with oil and garlic being added with another vegetable", "video_id": "video10371", "sen_id": 256709}, {"caption": "there is a man making a dish with garlic", "video_id": "video10371", "sen_id": 256710}, {"caption": "a man adding ingredients to cooking oil into a large heated silver pot", "video_id": "video10371", "sen_id": 256711}, {"caption": "an inhome chef works on a recipe by adding ingredients into a silver pan", "video_id": "video10371", "sen_id": 256712}, {"caption": "in a kitchen someone is showing the grey dish for the dinner", "video_id": "video10371", "sen_id": 256713}, {"caption": "the man is giving directions on cooking onions in oil on the stove", "video_id": "video10371", "sen_id": 256714}, {"caption": "a person is putting ingredients in a pot", "video_id": "video10371", "sen_id": 256715}, {"caption": "bowl is kept on the gas and cooking oil is boiling then garlic is put on to it", "video_id": "video10371", "sen_id": 256716}, {"caption": "a large pot sits on the stove as a man explains the steps to make a recipe", "video_id": "video10371", "sen_id": 256717}, {"caption": "a man talks out the steps of cooking as he prepares a specific dish", "video_id": "video10371", "sen_id": 256718}, {"caption": "a person is stirring up some stuff", "video_id": "video10371", "sen_id": 256719}, {"caption": "a blue car is swerving left and right through some cones", "video_id": "video12296", "sen_id": 256720}, {"caption": "some one driving a new blue colour car on the road", "video_id": "video12296", "sen_id": 256721}, {"caption": "a man is driving the car very fast then another 2 person is seeing", "video_id": "video12296", "sen_id": 256722}, {"caption": "a man driving a small blue compact car around a test track weaving in and out of cones", "video_id": "video12296", "sen_id": 256723}, {"caption": "a man is driving a car fast like zig zag", "video_id": "video12296", "sen_id": 256724}, {"caption": "a man in a car driving an obstical course", "video_id": "video12296", "sen_id": 256725}, {"caption": "a man is riding a blue car very fastly", "video_id": "video12296", "sen_id": 256726}, {"caption": "two men standing in the road talking while timing a blue car that drives around cones", "video_id": "video12296", "sen_id": 256727}, {"caption": "a masked man slaloms through traffic cones inside a blue vehicle while two british people comment and observe", "video_id": "video12296", "sen_id": 256728}, {"caption": "test driving a car showing its abilities and another tries to beat his time", "video_id": "video12296", "sen_id": 256729}, {"caption": "there is a blue car riding on the road", "video_id": "video12296", "sen_id": 256730}, {"caption": "a blue car doing some exciting skills on the road", "video_id": "video12296", "sen_id": 256731}, {"caption": "bbc one man in car talking about something", "video_id": "video12296", "sen_id": 256732}, {"caption": "a test car driver drives a small blue car on a closed test course", "video_id": "video12296", "sen_id": 256733}, {"caption": "a man driving a blue honda while wearing racing gear and a helmet", "video_id": "video12296", "sen_id": 256734}, {"caption": " blue car is driving between cones during a test drive", "video_id": "video12296", "sen_id": 256735}, {"caption": "a blue car drives around a test track while two men stand and talk about the car", "video_id": "video12296", "sen_id": 256736}, {"caption": "one man driving car fastly and its like that jet", "video_id": "video12296", "sen_id": 256737}, {"caption": "a person wearing helmet is riding a blue car", "video_id": "video12296", "sen_id": 256738}, {"caption": "a person is driving car and showing his skill", "video_id": "video12296", "sen_id": 256739}, {"caption": "the view above a vast green sahara in the daytime", "video_id": "video11734", "sen_id": 256740}, {"caption": "a man making a video about the african savanah", "video_id": "video11734", "sen_id": 256741}, {"caption": "beautiful trees in forest and long grass ground there", "video_id": "video11734", "sen_id": 256742}, {"caption": "someone is talking about the africa seasons", "video_id": "video11734", "sen_id": 256743}, {"caption": "tv personals is telling about the africans forest", "video_id": "video11734", "sen_id": 256744}, {"caption": "beautiful nature view with so much of greenery around", "video_id": "video11734", "sen_id": 256745}, {"caption": "there is a men telling about african place and climae", "video_id": "video11734", "sen_id": 256746}, {"caption": "a helicopter flies low and fast over an expanse of the african savanah", "video_id": "video11734", "sen_id": 256747}, {"caption": "a forest grass land trees displaying on screen", "video_id": "video11734", "sen_id": 256748}, {"caption": "we fly through the african savannah through trees and towards a green mountain", "video_id": "video11734", "sen_id": 256749}, {"caption": "some one shooting the video of a plain ground covered with grass", "video_id": "video11734", "sen_id": 256750}, {"caption": "we can see camera moving over a jungle and a guy is heard saying welcome to the african savana where in this episode", "video_id": "video11734", "sen_id": 256751}, {"caption": "a helicopter flies low over trees and grasslands as it heads towards a mountain range", "video_id": "video11734", "sen_id": 256752}, {"caption": "a forest of grass land with shaggy trees displaying on the screen", "video_id": "video11734", "sen_id": 256753}, {"caption": "flying above the vast open green garden filled with trees", "video_id": "video11734", "sen_id": 256754}, {"caption": "a camera moving towards a mountain range", "video_id": "video11734", "sen_id": 256755}, {"caption": " flat land is covered with tan dirt has patches of green grass is dotted with trees and shrubs", "video_id": "video11734", "sen_id": 256756}, {"caption": "an english man narrates as the camera zooms over a landscape", "video_id": "video11734", "sen_id": 256757}, {"caption": "a person is talking about the nature in this episode in the news channel", "video_id": "video11734", "sen_id": 256758}, {"caption": "someone is filming a large land scape in nature", "video_id": "video11734", "sen_id": 256759}, {"caption": "the television host of an animal program discusses snake encounters", "video_id": "video10894", "sen_id": 256760}, {"caption": "a man is finding and studying snakes in the wilderness", "video_id": "video10894", "sen_id": 256761}, {"caption": "a man talks about snakes and handles them in various places", "video_id": "video10894", "sen_id": 256762}, {"caption": "a man crawling on his stomach while looking at snakes in a cave", "video_id": "video10894", "sen_id": 256763}, {"caption": "a snake in the forest green trees inside a man holding snake displaying on screen", "video_id": "video10894", "sen_id": 256764}, {"caption": "a man with a cowboy hat is stalking and holding snakes", "video_id": "video10894", "sen_id": 256765}, {"caption": "a man is near a snake and capture it", "video_id": "video10894", "sen_id": 256766}, {"caption": "a television serial shows a snake handler exhibiting various snakes and speaks about them", "video_id": "video10894", "sen_id": 256767}, {"caption": "a man is messing with different snakes in the wilderness", "video_id": "video10894", "sen_id": 256768}, {"caption": "a man is finding and catching snakes in the wild", "video_id": "video10894", "sen_id": 256769}, {"caption": "a man taking a snake and eating", "video_id": "video10894", "sen_id": 256770}, {"caption": "a man is discussing snakes not being seen on a plane but just in other numerous places", "video_id": "video10894", "sen_id": 256771}, {"caption": "a man wearing a heat trying to captured the snake", "video_id": "video10894", "sen_id": 256772}, {"caption": "a man is shown encountering various snakes before he recaps highlights from his show about snakes", "video_id": "video10894", "sen_id": 256773}, {"caption": "a man talking about the top snake encounters of season 1 of a show", "video_id": "video10894", "sen_id": 256774}, {"caption": "watch and see how snakes act in the wild in season one", "video_id": "video10894", "sen_id": 256775}, {"caption": "a man talks about and handles different snakes in different areas", "video_id": "video10894", "sen_id": 256776}, {"caption": "a television announcer introduces a segment about the top snake encounters of season 1", "video_id": "video10894", "sen_id": 256777}, {"caption": "man with a hat speaking about the snakes and where snakes can be found", "video_id": "video10894", "sen_id": 256778}, {"caption": "a person is showing bunch of snakes on the camera", "video_id": "video10894", "sen_id": 256779}, {"caption": "a movie review of a stars wars movie and the weaponry in the movie", "video_id": "video11911", "sen_id": 256780}, {"caption": "a man very busy in explaining something about the subject", "video_id": "video11911", "sen_id": 256781}, {"caption": "a man in black shirt and brown beard is talking", "video_id": "video11911", "sen_id": 256782}, {"caption": "a man talking about something", "video_id": "video11911", "sen_id": 256783}, {"caption": "a blonde guy frowns at the camera", "video_id": "video11911", "sen_id": 256784}, {"caption": "a man in black is taking a class about science fiction and in background human body is drawn on board", "video_id": "video11911", "sen_id": 256785}, {"caption": "there is a black shirt man in front of a drawings", "video_id": "video11911", "sen_id": 256786}, {"caption": "man with nice beard talking in a program", "video_id": "video11911", "sen_id": 256787}, {"caption": "a man dressed in black is speaking in a fast manner", "video_id": "video11911", "sen_id": 256788}, {"caption": "a man in blue dress speaking about science programm", "video_id": "video11911", "sen_id": 256789}, {"caption": "bearded guy in black shirt talking to the camera", "video_id": "video11911", "sen_id": 256790}, {"caption": "one man talk about something his background mens picture draw", "video_id": "video11911", "sen_id": 256791}, {"caption": "a man is explain about a science with diagram", "video_id": "video11911", "sen_id": 256792}, {"caption": "an old man speaking explaining science program", "video_id": "video11911", "sen_id": 256793}, {"caption": "bearded guy in dark grey shirt talking to the camera", "video_id": "video11911", "sen_id": 256794}, {"caption": "there is a man in front of drawings", "video_id": "video11911", "sen_id": 256795}, {"caption": "one man talks about something very deeply back drawing", "video_id": "video11911", "sen_id": 256796}, {"caption": "a young man discuss the potential for having laser weapons in the future", "video_id": "video11911", "sen_id": 256797}, {"caption": "the man talking something with facial expression", "video_id": "video11911", "sen_id": 256798}, {"caption": "the man discusses the laser weapons on the television show star trek", "video_id": "video11911", "sen_id": 256799}, {"caption": "meat is being sliced on a wooden cutting board", "video_id": "video12463", "sen_id": 256800}, {"caption": "a man is cutting fish in the kitchen and is telling the next steps in cooking the food", "video_id": "video12463", "sen_id": 256801}, {"caption": "a man is preparing food on a large wooden surface", "video_id": "video12463", "sen_id": 256802}, {"caption": "a beautifully cooked fish cut in half sitting on a wooden cutting board", "video_id": "video12463", "sen_id": 256803}, {"caption": "a man cut the meat nicely into two pieces and saying that pour some sauce on it", "video_id": "video12463", "sen_id": 256804}, {"caption": "a person cut the food in two pieces and explain it", "video_id": "video12463", "sen_id": 256805}, {"caption": "a man is slicing a long piece of fish on a cutting board", "video_id": "video12463", "sen_id": 256806}, {"caption": "in the kitchen the men cut the fish in two pieces and making the good items", "video_id": "video12463", "sen_id": 256807}, {"caption": "a person makes a cut through a peiecs of cookes flesh long ways", "video_id": "video12463", "sen_id": 256808}, {"caption": "in a kitchen the cook is slicing apart a fish on two equal parts", "video_id": "video12463", "sen_id": 256809}, {"caption": "there is a man cutting some type of fish into half", "video_id": "video12463", "sen_id": 256810}, {"caption": "there is a man slicing a meet in to two pieces", "video_id": "video12463", "sen_id": 256811}, {"caption": "a man cutting the meat and explaining about to prepare the dish", "video_id": "video12463", "sen_id": 256812}, {"caption": "a man is slicing a piece of fish on a cutting board and he explains how to make a sushi roll out of the one half and then the other half can be used for another sushi roll", "video_id": "video12463", "sen_id": 256813}, {"caption": "a person displaying how to prepare a particular dish", "video_id": "video12463", "sen_id": 256814}, {"caption": "man explains how to use fish to make sushi roll and also depicts how much to season sushi rolls", "video_id": "video12463", "sen_id": 256815}, {"caption": "there is someone cutting meet on the table", "video_id": "video12463", "sen_id": 256816}, {"caption": "a man cuts a piece of fish and describes how he will make it into sushi rolls", "video_id": "video12463", "sen_id": 256817}, {"caption": "a man is cutting up a piece of meat and telling instructions", "video_id": "video12463", "sen_id": 256818}, {"caption": "a man cutting a piece of fish lengthwise to make sushi rolls", "video_id": "video12463", "sen_id": 256819}, {"caption": "a guy in a black shirt talking and making hand gestures", "video_id": "video10761", "sen_id": 256820}, {"caption": "a black t shirt man is talking about some kind of product", "video_id": "video10761", "sen_id": 256821}, {"caption": "a man waring black color dress is talking", "video_id": "video10761", "sen_id": 256822}, {"caption": "a man in a black shirt is describing a computer part", "video_id": "video10761", "sen_id": 256823}, {"caption": "a young man talks about the performance rating system that was created for the computers cpu", "video_id": "video10761", "sen_id": 256824}, {"caption": "a man wearing a black shirt talks about performance rating", "video_id": "video10761", "sen_id": 256825}, {"caption": "a man in black t-shirt explaining some topic", "video_id": "video10761", "sen_id": 256826}, {"caption": "the man is explaining the performance rating of some product", "video_id": "video10761", "sen_id": 256827}, {"caption": "a person talking about computer processor", "video_id": "video10761", "sen_id": 256828}, {"caption": "a man explaining about the performance rating with good body language", "video_id": "video10761", "sen_id": 256829}, {"caption": "a man in black t-shirt is saying something here", "video_id": "video10761", "sen_id": 256830}, {"caption": "a boy speaks about the performance of some products", "video_id": "video10761", "sen_id": 256831}, {"caption": "a man describes the history of a company that has been making cpu s for computers", "video_id": "video10761", "sen_id": 256832}, {"caption": "a man in black shirt is taking about the product which improves our performance rating", "video_id": "video10761", "sen_id": 256833}, {"caption": "a young man describing a performance rating scheme with animated hand motions", "video_id": "video10761", "sen_id": 256834}, {"caption": "there is a man with black tshirt talking about a product", "video_id": "video10761", "sen_id": 256835}, {"caption": "a man of black t-shirt is talking some about performance rating", "video_id": "video10761", "sen_id": 256836}, {"caption": "a young man talks about a computer companies products", "video_id": "video10761", "sen_id": 256837}, {"caption": "a man talking about different computer parts", "video_id": "video10761", "sen_id": 256838}, {"caption": "a tech tips man is giving tech tips", "video_id": "video10761", "sen_id": 256839}, {"caption": "in a kitchen someone is slicing a carrot carefully with other vegetables on a plate", "video_id": "video10521", "sen_id": 256840}, {"caption": "a woman in black tops cuts carrot with a sharp knife", "video_id": "video10521", "sen_id": 256841}, {"caption": "in the kitchen there is woman slicing vegetables in to the pieces", "video_id": "video10521", "sen_id": 256842}, {"caption": "woman slicing a carrot into small pieces with a sharp knife", "video_id": "video10521", "sen_id": 256843}, {"caption": "there is an asian woman preparing dish she is cutting a carrot into fine strips", "video_id": "video10521", "sen_id": 256844}, {"caption": "this is a woman who talking about bell peppers and she is cutting the slices very slim then she puts it on the plate", "video_id": "video10521", "sen_id": 256845}, {"caption": "a woman juliennes a carrot with a knife and places it on a white plate with onions mushrooms and green onions", "video_id": "video10521", "sen_id": 256846}, {"caption": "there is a woman slicing carrot for a dish", "video_id": "video10521", "sen_id": 256847}, {"caption": "heavily accented woman chopping up some vegetables", "video_id": "video10521", "sen_id": 256848}, {"caption": "an asian woman showing how to chop a carrot in thin slices", "video_id": "video10521", "sen_id": 256849}, {"caption": "a woman cuts a carrot and places the cuttings on a plate", "video_id": "video10521", "sen_id": 256850}, {"caption": "a woman is slicing carrot into thin slices and then is placing it on a plate", "video_id": "video10521", "sen_id": 256851}, {"caption": "the woman is cutting carrots on the cutting board", "video_id": "video10521", "sen_id": 256852}, {"caption": "a woman cuts carrots in julienne fashion on a wooden board", "video_id": "video10521", "sen_id": 256853}, {"caption": "a woman is cutting up a carrot into shreds", "video_id": "video10521", "sen_id": 256854}, {"caption": "a women in black dress slicing the carrot very carefully", "video_id": "video10521", "sen_id": 256855}, {"caption": "a man is very finely shredding vegetables on a table", "video_id": "video10521", "sen_id": 256856}, {"caption": "a woman is cutting up a carrot and putting it on a plate", "video_id": "video10521", "sen_id": 256857}, {"caption": "a chinese women is doing some receipe with the red - bell pepper and carrot and she fineally chopped the carrot in the plate and kept aside", "video_id": "video10521", "sen_id": 256858}, {"caption": "a woman is cutting up a vegetable", "video_id": "video10521", "sen_id": 256859}, {"caption": "people are walking around on a beach in swimsuits specifically in bikinis", "video_id": "video10688", "sen_id": 256860}, {"caption": "people are on a beach in bathing suits", "video_id": "video10688", "sen_id": 256861}, {"caption": "there is a ship in the sea and lots of people are there on it", "video_id": "video10688", "sen_id": 256862}, {"caption": "group of men and women in swim suit and walking on the beach", "video_id": "video10688", "sen_id": 256863}, {"caption": "hot ladies walking by on the sunny beach", "video_id": "video10688", "sen_id": 256864}, {"caption": "a person is showing bunch of sexy girls in bikini walking on the beach", "video_id": "video10688", "sen_id": 256865}, {"caption": "there are some tourists showing panties and bra", "video_id": "video10688", "sen_id": 256866}, {"caption": "two ladies are walking on a beach", "video_id": "video10688", "sen_id": 256867}, {"caption": "women in bikini walking in beach", "video_id": "video10688", "sen_id": 256868}, {"caption": " women and children wearing swimwear and bikinis standing lying on a beach", "video_id": "video10688", "sen_id": 256869}, {"caption": "bunch of sexy girls in bikini walking on the beach", "video_id": "video10688", "sen_id": 256870}, {"caption": "a beach scene with jazzy music in the background", "video_id": "video10688", "sen_id": 256871}, {"caption": "multiple people in bathing suits are walking and laying at a large beach", "video_id": "video10688", "sen_id": 256872}, {"caption": "people are enjoying the wind and waves from the sea shore", "video_id": "video10688", "sen_id": 256873}, {"caption": "they are in beech and somebody walk and somebody sitting and take rest", "video_id": "video10688", "sen_id": 256874}, {"caption": "the beach is crowded with many people enjoying the sunshine and water", "video_id": "video10688", "sen_id": 256875}, {"caption": "two young women wearing bikinis walk along a beach passing flapping white umbrellas open lounge chairs colorful towels and sun bathers", "video_id": "video10688", "sen_id": 256876}, {"caption": "girls in bikinis set up their tents", "video_id": "video10688", "sen_id": 256877}, {"caption": "a group of people are enjoying in a beach along with sun bath", "video_id": "video10688", "sen_id": 256878}, {"caption": "some women are walking around on a beach", "video_id": "video10688", "sen_id": 256879}, {"caption": "a woman who is a psychotherapist is speaking on the o'reilly show", "video_id": "video12521", "sen_id": 256880}, {"caption": "a brunette psychotherapy expert with long curls and glasses discusses being in the minority while on the o reilly show", "video_id": "video12521", "sen_id": 256881}, {"caption": "on fox news a psychotherapist discusses methods of self-assurance", "video_id": "video12521", "sen_id": 256882}, {"caption": "karen ruskin a psychotherapist talks about people trying to make themselves feel better", "video_id": "video12521", "sen_id": 256883}, {"caption": "a woman speaks to the host of a television show while sitting in front of a backdrop of a brightly lit city", "video_id": "video12521", "sen_id": 256884}, {"caption": "a psychologist talks about minorities on a cable newscast", "video_id": "video12521", "sen_id": 256885}, {"caption": "a lady wearing blue color dress is talking", "video_id": "video12521", "sen_id": 256886}, {"caption": "a lady psychotherapist explains how a person behaves to validate his beliefs", "video_id": "video12521", "sen_id": 256887}, {"caption": "a man wearing a suit and a woman wearing glasses speaks to each other", "video_id": "video12521", "sen_id": 256888}, {"caption": "karen ruskin comes on the o reilly factor to discus about being in the minority", "video_id": "video12521", "sen_id": 256889}, {"caption": "there is a blue dressing woman talking with some expressions", "video_id": "video12521", "sen_id": 256890}, {"caption": " a psychotherapist talks about being in the minority", "video_id": "video12521", "sen_id": 256891}, {"caption": "a news reporter is taking to the women psychotherapist karen ruskin", "video_id": "video12521", "sen_id": 256892}, {"caption": "a lady in a blue shirt is talking about a certain type of people", "video_id": "video12521", "sen_id": 256893}, {"caption": "a woman in glasses talks about how she thinks the brain works", "video_id": "video12521", "sen_id": 256894}, {"caption": "a female psychotherapist discusses validation on the fox channels o reiley show", "video_id": "video12521", "sen_id": 256895}, {"caption": "phychotherapist talking and giving information on the news", "video_id": "video12521", "sen_id": 256896}, {"caption": "a news reader is reading some news from news room", "video_id": "video12521", "sen_id": 256897}, {"caption": "a news brodcast going from a two person view to a single person view while showing the news", "video_id": "video12521", "sen_id": 256898}, {"caption": "sexy brunette in glass with blue top is talking to the camera", "video_id": "video12521", "sen_id": 256899}, {"caption": "a man in a turban is describing a dish that chefs around the world have adopted and include in their cooking", "video_id": "video12992", "sen_id": 256900}, {"caption": "a sikh chef explaning how to cook a traditional mutton rogan josh recipe", "video_id": "video12992", "sen_id": 256901}, {"caption": "a sikh man is going to prepare kashmiri mutton and talking about the recipe", "video_id": "video12992", "sen_id": 256902}, {"caption": " wearing a black chef uniform and a purple turban is in a kitchen with white shelves holding a few containers on a brown panel against a brick wall", "video_id": "video12992", "sen_id": 256903}, {"caption": "a chef is explain about a kashmir mutton dish", "video_id": "video12992", "sen_id": 256904}, {"caption": "in a kitchena chef with purple turban is explaining about the dish he is going to prepare", "video_id": "video12992", "sen_id": 256905}, {"caption": "a man in purple turban is saying something interesting", "video_id": "video12992", "sen_id": 256906}, {"caption": "a man passing an information", "video_id": "video12992", "sen_id": 256907}, {"caption": "a chef talks about sharing a specific recipe that is not often publicly given", "video_id": "video12992", "sen_id": 256908}, {"caption": "a person cook in kitchen and explain the national recipes", "video_id": "video12992", "sen_id": 256909}, {"caption": "a person from sikh community is saying something", "video_id": "video12992", "sen_id": 256910}, {"caption": "man sharing a reciepe in the kitchen has a turbine on", "video_id": "video12992", "sen_id": 256911}, {"caption": "one punjab singh is making a recipe and talks", "video_id": "video12992", "sen_id": 256912}, {"caption": "a sardar ji is giving an introduction of a beautiful recipe", "video_id": "video12992", "sen_id": 256913}, {"caption": "punjabi guy with purple turban talking in front of camera", "video_id": "video12992", "sen_id": 256914}, {"caption": "a man chef showing the recipe and telling us how to made", "video_id": "video12992", "sen_id": 256915}, {"caption": "a chef is talking and gesturing with his hands while standing in front of a brick wall with a tan panel supporting white shelves with containers", "video_id": "video12992", "sen_id": 256916}, {"caption": "a man in a black chefs coat with purple turbin on his head speaking about chefs", "video_id": "video12992", "sen_id": 256917}, {"caption": "a man in black dress wearing cloth inside kitchen explayning about dish to prepare displaying on screen", "video_id": "video12992", "sen_id": 256918}, {"caption": "a man with a purple turban is talking", "video_id": "video12992", "sen_id": 256919}, {"caption": "two football teams playing a game on a football field", "video_id": "video10363", "sen_id": 256920}, {"caption": "a competition is going on the play ground and people are watching", "video_id": "video10363", "sen_id": 256921}, {"caption": "a football game is playing a man makes a first down", "video_id": "video10363", "sen_id": 256922}, {"caption": "two teams on a football field with commentary by men off camera", "video_id": "video10363", "sen_id": 256923}, {"caption": "two teams one in red tshirt and other in white tshirt is playing ruby game", "video_id": "video10363", "sen_id": 256924}, {"caption": "football players trying to catch their opponent who has the ball", "video_id": "video10363", "sen_id": 256925}, {"caption": "two group of players on the ground facing the competition and they fighting for a victory", "video_id": "video10363", "sen_id": 256926}, {"caption": "an american football player rushes for a first down at the cotton bowl", "video_id": "video10363", "sen_id": 256927}, {"caption": "two football teams are palying and one scores a touchdown", "video_id": "video10363", "sen_id": 256928}, {"caption": "number of people playing base ball wearing red and white shirts and helment while playing two person fell down during the play", "video_id": "video10363", "sen_id": 256929}, {"caption": "scene from a american football game where players are in red and white jerseys respectively", "video_id": "video10363", "sen_id": 256930}, {"caption": "an american football player hurdles an opposing player in a game", "video_id": "video10363", "sen_id": 256931}, {"caption": "red and white t shirt palyers playing game and ball in his hand running", "video_id": "video10363", "sen_id": 256932}, {"caption": "a group of players are playing bas ball in a groud", "video_id": "video10363", "sen_id": 256933}, {"caption": "an oklahoma running back break through the blitz and hurdles a defender on the way to a first down", "video_id": "video10363", "sen_id": 256934}, {"caption": "two team players are playing game on a big ground", "video_id": "video10363", "sen_id": 256935}, {"caption": "an american football player hurdles another player during a big game", "video_id": "video10363", "sen_id": 256936}, {"caption": "white and red dress wearing players playing game in their hand in ground", "video_id": "video10363", "sen_id": 256937}, {"caption": "a group of players are playing through ball in a ground", "video_id": "video10363", "sen_id": 256938}, {"caption": "a bunch of football players are playing on a field", "video_id": "video10363", "sen_id": 256939}, {"caption": "group of women playing a game that has one women blind folded", "video_id": "video12304", "sen_id": 256940}, {"caption": "a girl is blindfolded by her friends as she feels her friend's face", "video_id": "video12304", "sen_id": 256941}, {"caption": "a woman s eye is tied with a white cloth she touches the eys of another girl while another girl holds the cloth covering the eyes", "video_id": "video12304", "sen_id": 256942}, {"caption": "a girl is holding a cloth over the eyes of a girl in red while the girl in red applies eye shadow to a third girls eyelids", "video_id": "video12304", "sen_id": 256943}, {"caption": "a girl applying makeup to her friend s face while blindfolded", "video_id": "video12304", "sen_id": 256944}, {"caption": "a three girls are in the room and one of them cover other girl s eye with a cloth", "video_id": "video12304", "sen_id": 256945}, {"caption": "three women playing a game where one woman is blindfolded", "video_id": "video12304", "sen_id": 256946}, {"caption": "a woman is blind folded by two other woman and is feeling her eye", "video_id": "video12304", "sen_id": 256947}, {"caption": "a woman in a red lace top has her eyes covered with a white cloth held by a woman behind her wearing black", "video_id": "video12304", "sen_id": 256948}, {"caption": "3 girls are playing one o girl eye is closed then she does make up for amother by closing her eyes", "video_id": "video12304", "sen_id": 256949}, {"caption": "a woman with a blind fold is holding a thing", "video_id": "video12304", "sen_id": 256950}, {"caption": "there is a woman talking with hidden eyes", "video_id": "video12304", "sen_id": 256951}, {"caption": "a blindfolded girl is feeling things and trying to tell what it is", "video_id": "video12304", "sen_id": 256952}, {"caption": "a blindfolded girl puts makeup on on of her friends", "video_id": "video12304", "sen_id": 256953}, {"caption": "a person holding a blindfold over a youngs womans eyes", "video_id": "video12304", "sen_id": 256954}, {"caption": "some women in a room are talking to each other", "video_id": "video12304", "sen_id": 256955}, {"caption": "three women doing stuff where the woman in red is blindfolded and she touches the body of the other lady beside her", "video_id": "video12304", "sen_id": 256956}, {"caption": "the woman on the wall cover the other woman s eyes", "video_id": "video12304", "sen_id": 256957}, {"caption": "a woman blindfolded and touching another woman s face", "video_id": "video12304", "sen_id": 256958}, {"caption": "group of three women are having nice time in the room", "video_id": "video12304", "sen_id": 256959}, {"caption": "a picture or diagram of some sorts for a business named catapult", "video_id": "video12730", "sen_id": 256960}, {"caption": "a woman explains using remote sensing gps technology to track shipping containers", "video_id": "video12730", "sen_id": 256961}, {"caption": "a women in black dress explaining something in front of the camera", "video_id": "video12730", "sen_id": 256962}, {"caption": "a woman speaking about container tracking over a graphic of the concept", "video_id": "video12730", "sen_id": 256963}, {"caption": " the lady explains the video were there is building", "video_id": "video12730", "sen_id": 256964}, {"caption": "a lady with black court is explaining about catapult", "video_id": "video12730", "sen_id": 256965}, {"caption": "a engineer is explaining used to chart", "video_id": "video12730", "sen_id": 256966}, {"caption": "a woman discusses a picture of containers that get shipped overseas on ships", "video_id": "video12730", "sen_id": 256967}, {"caption": "a lady tell about the catapult add website in detail", "video_id": "video12730", "sen_id": 256968}, {"caption": "a lady with black dress is explaining about something", "video_id": "video12730", "sen_id": 256969}, {"caption": "a women is explaining to the public about new ideas", "video_id": "video12730", "sen_id": 256970}, {"caption": "a woman describing new technology for container tracking and conditioning", "video_id": "video12730", "sen_id": 256971}, {"caption": "a woman is explain about a settelite", "video_id": "video12730", "sen_id": 256972}, {"caption": "a woman talking about a graphic of a boat in water with buildings on the land", "video_id": "video12730", "sen_id": 256973}, {"caption": "a mature women with short hairs are explaining some technical information", "video_id": "video12730", "sen_id": 256974}, {"caption": "women in black is talking to a men who is sitting opposite side of her", "video_id": "video12730", "sen_id": 256975}, {"caption": "big data fresher better quality products with better availability", "video_id": "video12730", "sen_id": 256976}, {"caption": "a scientist talks about using technology to make shipping more efficient", "video_id": "video12730", "sen_id": 256977}, {"caption": "a women is speaking about the real estate location and data", "video_id": "video12730", "sen_id": 256978}, {"caption": "some diagrams of a boat are explaining something", "video_id": "video12730", "sen_id": 256979}, {"caption": "i young pretty black girl is modeling a black dress", "video_id": "video12003", "sen_id": 256980}, {"caption": "a woman with black dressing posing from a room", "video_id": "video12003", "sen_id": 256981}, {"caption": "a girl in a short black dress and black leggings turning around to show it off", "video_id": "video12003", "sen_id": 256982}, {"caption": "a woman showing off a black dress she is wearing and talking about it", "video_id": "video12003", "sen_id": 256983}, {"caption": "a girl is talking about the outfit she is wearing", "video_id": "video12003", "sen_id": 256984}, {"caption": "a woman describes why the black dress is a wardrobe staple for women", "video_id": "video12003", "sen_id": 256985}, {"caption": "there is a black dressing woman posing on the floor", "video_id": "video12003", "sen_id": 256986}, {"caption": "a woman is modeling her attire and wardrobe", "video_id": "video12003", "sen_id": 256987}, {"caption": "for a new dress advertisement a cute black dressed lady is describing her new dress and its fitness in her body", "video_id": "video12003", "sen_id": 256988}, {"caption": "a lady is modeling a black outfit while talking about fashion", "video_id": "video12003", "sen_id": 256989}, {"caption": "a thin woman modeling a black dress in a bedroom", "video_id": "video12003", "sen_id": 256990}, {"caption": "a woman models a little black dress in a room filled with clothes", "video_id": "video12003", "sen_id": 256991}, {"caption": "women in black attire showing her dress", "video_id": "video12003", "sen_id": 256992}, {"caption": "a woman models a black dress while standing in a room filled with clothes and other decorative items", "video_id": "video12003", "sen_id": 256993}, {"caption": "in a small boutique a woman discusses the versatility of the little black dress as model shows off an above the knee black dress with a high neckline", "video_id": "video12003", "sen_id": 256994}, {"caption": "woman discussing the benefits of styling a little black dress while a woman in the background models a little black dress", "video_id": "video12003", "sen_id": 256995}, {"caption": "the wearing in black dress and she is telling the featutre of their dress", "video_id": "video12003", "sen_id": 256996}, {"caption": "a woman is talking about what the model is wearing", "video_id": "video12003", "sen_id": 256997}, {"caption": "a blackafrican american woman is modeling a black dress", "video_id": "video12003", "sen_id": 256998}, {"caption": "some women in a room are talking about things", "video_id": "video12003", "sen_id": 256999}, {"caption": "a split screen of a news reporter and the story he is covering", "video_id": "video10208", "sen_id": 257000}, {"caption": "a man on tv is talking about the protests in chicago", "video_id": "video10208", "sen_id": 257001}, {"caption": "a newscaster discussing a police shooting with a view from a helicopter of the scene on the left side", "video_id": "video10208", "sen_id": 257002}, {"caption": "old man talks in television he has orange color tie", "video_id": "video10208", "sen_id": 257003}, {"caption": "a reporter talking about a police officer shooting someone", "video_id": "video10208", "sen_id": 257004}, {"caption": "a old man in white color shirt dress sitting and speaking about news of video graphic displaying on screen", "video_id": "video10208", "sen_id": 257005}, {"caption": "a reporter analyses the situation in the place of protest in chicago", "video_id": "video10208", "sen_id": 257006}, {"caption": "a fox news presenter shows a graphic clip of a police shooting", "video_id": "video10208", "sen_id": 257007}, {"caption": "posters eruot in chicago its news read by person in black coat and tie in orange color", "video_id": "video10208", "sen_id": 257008}, {"caption": "a fox newscaster warns of graphic content of chicago police firing on suspects", "video_id": "video10208", "sen_id": 257009}, {"caption": "news report talking about a white police officer shooting a 17 year old", "video_id": "video10208", "sen_id": 257010}, {"caption": "a person in suite reading the news of channel and beside the showing the news content video", "video_id": "video10208", "sen_id": 257011}, {"caption": "it is a bbc report about a 17 year teenage boy", "video_id": "video10208", "sen_id": 257012}, {"caption": "news report of police officer shooting a teenager", "video_id": "video10208", "sen_id": 257013}, {"caption": "protests in chicago after the release of a police dash cam video showing a police officer shooting a 17 year old teenager", "video_id": "video10208", "sen_id": 257014}, {"caption": "a man talking about the incident on the news", "video_id": "video10208", "sen_id": 257015}, {"caption": "its protests erupt in chicago person in coat talks about it in television", "video_id": "video10208", "sen_id": 257016}, {"caption": "a grey hair man wearing a black suit with a pink tie is talking on the news about the protests in chicago after a white pol", "video_id": "video10208", "sen_id": 257017}, {"caption": "a man on the news discussing a police officer shooting a teenager", "video_id": "video10208", "sen_id": 257018}, {"caption": "guy in suit and tie talking to the camera in studio", "video_id": "video10208", "sen_id": 257019}, {"caption": "a man and a woman are on a beach with a black dog", "video_id": "video11847", "sen_id": 257020}, {"caption": "the black dress man and woman play with the black dog in the sea shore", "video_id": "video11847", "sen_id": 257021}, {"caption": "a bunch of people on the people trying to catch some waves", "video_id": "video11847", "sen_id": 257022}, {"caption": "surfers are on the beach with their dogs filming themselves preparing to go out and ride the waves", "video_id": "video11847", "sen_id": 257023}, {"caption": "several surfers are talking about their dogs trying to catch waves along with their owners", "video_id": "video11847", "sen_id": 257024}, {"caption": "people are enjoying as some of them get into water and others spend time in sand", "video_id": "video11847", "sen_id": 257025}, {"caption": "two surfers talk about trying to help their dog learn to ride a surf board", "video_id": "video11847", "sen_id": 257026}, {"caption": "some people are enjoying on a sea beach area", "video_id": "video11847", "sen_id": 257027}, {"caption": "surfers at the beach and their dog talking about catching waves", "video_id": "video11847", "sen_id": 257028}, {"caption": "sexy brunette in black swim suit patting her dog and talking to the camera", "video_id": "video11847", "sen_id": 257029}, {"caption": "a man an a woman talking by a beach fire surrounded by beach goers while they discuss surfing", "video_id": "video11847", "sen_id": 257030}, {"caption": "women talking about dog near a beach", "video_id": "video11847", "sen_id": 257031}, {"caption": "a couple of surfers are hanging out on the beach with their canine having a good time", "video_id": "video11847", "sen_id": 257032}, {"caption": "a woman and man in wet suits are kneeling on sand on a beach in front of a crowd with their black dog", "video_id": "video11847", "sen_id": 257033}, {"caption": "a man is surfing around on a beach in the day", "video_id": "video11847", "sen_id": 257034}, {"caption": "a group of people are sitting on the beach with a dog talking about surfing", "video_id": "video11847", "sen_id": 257035}, {"caption": "people being interviewed about their surfing brown lab dog at the beach", "video_id": "video11847", "sen_id": 257036}, {"caption": "a friends gang in the sea shore and enjoying their movements", "video_id": "video11847", "sen_id": 257037}, {"caption": "people on the beach are discussing their desire to catch a wave", "video_id": "video11847", "sen_id": 257038}, {"caption": "some people on a beach are having a discussion", "video_id": "video11847", "sen_id": 257039}, {"caption": "a young woman uses chopsticks to eat noodles", "video_id": "video10267", "sen_id": 257040}, {"caption": "a blonde woman eats noodles and hot sauce with chopsticks", "video_id": "video10267", "sen_id": 257041}, {"caption": "a women in white hair eating noodles with sticks", "video_id": "video10267", "sen_id": 257042}, {"caption": "a woman is eating a bowl of noodles with a pair of chopsticks", "video_id": "video10267", "sen_id": 257043}, {"caption": "a blond-haired woman eats a bowl of noodles", "video_id": "video10267", "sen_id": 257044}, {"caption": "girl with the white hair eat the noodles with the stick", "video_id": "video10267", "sen_id": 257045}, {"caption": "a woman in jacket eating noodles with a stick", "video_id": "video10267", "sen_id": 257046}, {"caption": "a woman is eating noodles out of a dish with chopsticks", "video_id": "video10267", "sen_id": 257047}, {"caption": "a woman who is eating chop stick to eat her food", "video_id": "video10267", "sen_id": 257048}, {"caption": "a girls having noodles and pouring sauce in that cup and having the noodles", "video_id": "video10267", "sen_id": 257049}, {"caption": "a women is eating noodles with fork", "video_id": "video10267", "sen_id": 257050}, {"caption": "a girl with makeup eats noodles and puts some sort of sauce on", "video_id": "video10267", "sen_id": 257051}, {"caption": "the girl is having a noodles with the chop sticks and later she is adding like pepper or something else then she again continues", "video_id": "video10267", "sen_id": 257052}, {"caption": "a lady taking a noodles and eating", "video_id": "video10267", "sen_id": 257053}, {"caption": "a woman eats noodles while music plays in the background", "video_id": "video10267", "sen_id": 257054}, {"caption": "a woman is stirring up some food inside", "video_id": "video10267", "sen_id": 257055}, {"caption": "a woman with white hair eating noodles", "video_id": "video10267", "sen_id": 257056}, {"caption": "a blond girl standing and eating a bowl of noodles with chopsticks", "video_id": "video10267", "sen_id": 257057}, {"caption": "a girl with white jacket eats noodles using chopstickshe sprinkles some sauce on it and keeps eating the noodles", "video_id": "video10267", "sen_id": 257058}, {"caption": "a woman with chopsticks is eating food", "video_id": "video10267", "sen_id": 257059}, {"caption": "a girl in a white shirt and blue sweater is describing the joy of receiving a package in the mail", "video_id": "video11788", "sen_id": 257060}, {"caption": "a women in blue dress is saying something to the other person", "video_id": "video11788", "sen_id": 257061}, {"caption": "a woman sits on bed and talks with much gesture", "video_id": "video11788", "sen_id": 257062}, {"caption": "a woman is sitting on a bed talking about package day", "video_id": "video11788", "sen_id": 257063}, {"caption": "a girl is sitting on the bed and talking", "video_id": "video11788", "sen_id": 257064}, {"caption": "a beautiful lady in white and blue dress is telling something interesting to someone", "video_id": "video11788", "sen_id": 257065}, {"caption": "there is a girl talking from her room", "video_id": "video11788", "sen_id": 257066}, {"caption": "white woman sitting on a bed in a room talking about packages", "video_id": "video11788", "sen_id": 257067}, {"caption": "a girl is sitting in the sofa at the home", "video_id": "video11788", "sen_id": 257068}, {"caption": "a woman in a blue shirt and blue jacket is talking about how great it is to hear the package delivery man arrive at your home", "video_id": "video11788", "sen_id": 257069}, {"caption": "a girl sitting on sofa and explaining why she likes package day", "video_id": "video11788", "sen_id": 257070}, {"caption": "a woman with blonde hair talking about package day", "video_id": "video11788", "sen_id": 257071}, {"caption": "a woman wearing a blue cardigan is talking using her hands", "video_id": "video11788", "sen_id": 257072}, {"caption": "a girl in blue and white dress wearing color cloth sitting and speaking shaking hands displaying on screen", "video_id": "video11788", "sen_id": 257073}, {"caption": "a young girl is talking and gesticulating wildly", "video_id": "video11788", "sen_id": 257074}, {"caption": "a woman wearing a white button down shirt and blue sweater faces the camera while sitting on a bed", "video_id": "video11788", "sen_id": 257075}, {"caption": " with brown hair pulled back wears a blue cardigan over a high-neck white blouse while sittings on brown cushions in a corner of a room", "video_id": "video11788", "sen_id": 257076}, {"caption": "a lady in a blue sweater sits on her couch in the house", "video_id": "video11788", "sen_id": 257077}, {"caption": "a girl in white color dress wearing cloth sitting speaking displaying on screen", "video_id": "video11788", "sen_id": 257078}, {"caption": "a woman with brown hair is sitting and talking", "video_id": "video11788", "sen_id": 257079}, {"caption": "a woman's voice describes a ferry ride to a beach", "video_id": "video11416", "sen_id": 257080}, {"caption": "a group of people riding in the boat on the sea", "video_id": "video11416", "sen_id": 257081}, {"caption": "there is a ship in the sea and lots of people are there on it", "video_id": "video11416", "sen_id": 257082}, {"caption": "one big boat people watching others in seashore yaiyasmin", "video_id": "video11416", "sen_id": 257083}, {"caption": "a woman describing a place and her experiences there with multiple camera shots of the city being described", "video_id": "video11416", "sen_id": 257084}, {"caption": "a women and many people in the ship on the sea and a man standing in the beach", "video_id": "video11416", "sen_id": 257085}, {"caption": "there is a brown hair woman traveling on a boat", "video_id": "video11416", "sen_id": 257086}, {"caption": "some people are at the beach having some fun", "video_id": "video11416", "sen_id": 257087}, {"caption": "a group of men and women walking on the beach side", "video_id": "video11416", "sen_id": 257088}, {"caption": "a woman is talking about taking a ferry and people are walking on a beach", "video_id": "video11416", "sen_id": 257089}, {"caption": "some people are walking around a beach", "video_id": "video11416", "sen_id": 257090}, {"caption": "there is someone walking in the shore with friends", "video_id": "video11416", "sen_id": 257091}, {"caption": "many peoples in seaside and many resorts there", "video_id": "video11416", "sen_id": 257092}, {"caption": "a lady is travelling on a boat some people are seated on the benches in the deck and a man is walking along the shore of a beach", "video_id": "video11416", "sen_id": 257093}, {"caption": "a woman on a beach and a car with other people", "video_id": "video11416", "sen_id": 257094}, {"caption": "someone is filming their trip on a boat", "video_id": "video11416", "sen_id": 257095}, {"caption": "people sitting on beach and walking on beach and enjoying", "video_id": "video11416", "sen_id": 257096}, {"caption": "on a ship man and women in the sea and travel", "video_id": "video11416", "sen_id": 257097}, {"caption": "a cruise ship is riding on the sea and few guys are resting on the sea shore", "video_id": "video11416", "sen_id": 257098}, {"caption": "its a beach site in ship were people are enjoying their time", "video_id": "video11416", "sen_id": 257099}, {"caption": "a man cooks a boneless fish in a pan on the stove", "video_id": "video11318", "sen_id": 257100}, {"caption": "a man in his kitchen frying some food in a pan", "video_id": "video11318", "sen_id": 257101}, {"caption": "a man putting a fish filet in a hot pan and then flipping it to the other side", "video_id": "video11318", "sen_id": 257102}, {"caption": "two men in the kitchen showing how to cook a bone-less filet of fish", "video_id": "video11318", "sen_id": 257103}, {"caption": "a chef decides to only leave a piece of fish in the pan long enough to give it some color", "video_id": "video11318", "sen_id": 257104}, {"caption": "a man teaches to cook the other guy on pan", "video_id": "video11318", "sen_id": 257105}, {"caption": "there is a suit man talking to a sheaf", "video_id": "video11318", "sen_id": 257106}, {"caption": "a chef shows a man that he is preparing a piece of what appears to be fish", "video_id": "video11318", "sen_id": 257107}, {"caption": "a chef demonstrates how to gently give color to a boneless fish fillet in a pan laced with oil", "video_id": "video11318", "sen_id": 257108}, {"caption": "a cooking show where a man is frying meat in a pan", "video_id": "video11318", "sen_id": 257109}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video11318", "sen_id": 257110}, {"caption": "a chef places a piece of fish in a hot skillet and then flips it over quickly", "video_id": "video11318", "sen_id": 257111}, {"caption": "men moving stuff from plate to frying pan and frying that by using oil", "video_id": "video11318", "sen_id": 257112}, {"caption": "chef is cooking on pan they add the food and make it to disolve in water", "video_id": "video11318", "sen_id": 257113}, {"caption": "a person bakes the cake piece in an oven with oil", "video_id": "video11318", "sen_id": 257114}, {"caption": "a person in a kitchen is making some food", "video_id": "video11318", "sen_id": 257115}, {"caption": "someone is adding a filet of fish into a pan of hot oil", "video_id": "video11318", "sen_id": 257116}, {"caption": "a chef pan fries a piece of fish while talking to another person", "video_id": "video11318", "sen_id": 257117}, {"caption": "a cook flips a piece of tilapia over inside a metal pan", "video_id": "video11318", "sen_id": 257118}, {"caption": "a man in white is searing a boneless fish while a man wearing black watches", "video_id": "video11318", "sen_id": 257119}, {"caption": "a man being interviewed explaining about a new product", "video_id": "video10765", "sen_id": 257120}, {"caption": "a person explaining about the new company product fusion m2", "video_id": "video10765", "sen_id": 257121}, {"caption": "a man is being interviewed and then a laser printer is shown", "video_id": "video10765", "sen_id": 257122}, {"caption": "one man interviews another man about a laser engraving machine that his company manufactures", "video_id": "video10765", "sen_id": 257123}, {"caption": "a man is interviewing a man from a company about a machine it manufactures", "video_id": "video10765", "sen_id": 257124}, {"caption": "a man in blue is giving interview for a tv channel about fusion m2 truck", "video_id": "video10765", "sen_id": 257125}, {"caption": "a man with black suit interviewing the person who wearing a t-shirt", "video_id": "video10765", "sen_id": 257126}, {"caption": "an interview with the head of a company wherein he introduces all the new products as well as the fibre laser all made in usa", "video_id": "video10765", "sen_id": 257127}, {"caption": "a man interviews another man inside of a store", "video_id": "video10765", "sen_id": 257128}, {"caption": "a person being interviewed about a product that they are responsible for", "video_id": "video10765", "sen_id": 257129}, {"caption": "the man spoke about the introduction of duel source laser systems", "video_id": "video10765", "sen_id": 257130}, {"caption": "a man is interviewed about a new machine that his company has created", "video_id": "video10765", "sen_id": 257131}, {"caption": "marketing person talks about an product fusioncustomer can make use of this machine", "video_id": "video10765", "sen_id": 257132}, {"caption": "a man in black caoat and in blue dress explaing about machine", "video_id": "video10765", "sen_id": 257133}, {"caption": "a man is being interviewed about a product he is selling", "video_id": "video10765", "sen_id": 257134}, {"caption": "a man wearing blue shirt talking about the machines with the reporter", "video_id": "video10765", "sen_id": 257135}, {"caption": "a representative of a tech company is talking about one of their products", "video_id": "video10765", "sen_id": 257136}, {"caption": "a man discusses an automated engraving machine at a convention", "video_id": "video10765", "sen_id": 257137}, {"caption": "a man in black coat and blue dress explaning about the product machine in microphone", "video_id": "video10765", "sen_id": 257138}, {"caption": "a man is being interviewed about some products in the show room", "video_id": "video10765", "sen_id": 257139}, {"caption": "a baseball game where they are trying to get three people out", "video_id": "video12329", "sen_id": 257140}, {"caption": "players in white dress are running fast holding a ball in a rugby match", "video_id": "video12329", "sen_id": 257141}, {"caption": "two teams are playing and there is comentry going on", "video_id": "video12329", "sen_id": 257142}, {"caption": "a basebal player tags someone out", "video_id": "video12329", "sen_id": 257143}, {"caption": "the baseball player tags out the opposing player secind base then forces a tag out at third base for the double play", "video_id": "video12329", "sen_id": 257144}, {"caption": "highlights from a baseball game are being shown and discussed", "video_id": "video12329", "sen_id": 257145}, {"caption": "sports men in a stadium playing baseball game in front of the audience", "video_id": "video12329", "sen_id": 257146}, {"caption": "the title reads best and funniest baseball fails and the title serves its purpose", "video_id": "video12329", "sen_id": 257147}, {"caption": "a baseball player hits a ball and makes a homerun", "video_id": "video12329", "sen_id": 257148}, {"caption": "players in white dreses playing game throwing ball diving in field", "video_id": "video12329", "sen_id": 257149}, {"caption": "all persons are playing base ball game on stadium", "video_id": "video12329", "sen_id": 257150}, {"caption": "players playing in the field", "video_id": "video12329", "sen_id": 257151}, {"caption": "baseball players have bad fails when trying to not get tagged out", "video_id": "video12329", "sen_id": 257152}, {"caption": "after getting the ball from first base the catcher attempts to tag a runner", "video_id": "video12329", "sen_id": 257153}, {"caption": "some baseball players are doing their best to win", "video_id": "video12329", "sen_id": 257154}, {"caption": "there are two teams playing a game ane player runs with ball in his hand and others runs behind him", "video_id": "video12329", "sen_id": 257155}, {"caption": "a baseball player hits the ball to short-stop and runs for first base", "video_id": "video12329", "sen_id": 257156}, {"caption": "players on ground playing baseball", "video_id": "video12329", "sen_id": 257157}, {"caption": "in a ground players are playing the game with a ball", "video_id": "video12329", "sen_id": 257158}, {"caption": "a group of players were trying to catch the ball in baseball match", "video_id": "video12329", "sen_id": 257159}, {"caption": "there is a man catching his baby while watching tv", "video_id": "video10378", "sen_id": 257160}, {"caption": "a father stops his child from what would be a terrible fall", "video_id": "video10378", "sen_id": 257161}, {"caption": "a family laying on the couch a child tips over and the dad reaches a hand out to catch him", "video_id": "video10378", "sen_id": 257162}, {"caption": "a family is sitting on a black leather sectional couch when the baby tips forward and falls head first onto the floor", "video_id": "video10378", "sen_id": 257163}, {"caption": "a family is on sofa and the baby in pink t shirt falls of floor and the man in white shirt catches it in between", "video_id": "video10378", "sen_id": 257164}, {"caption": "a group of people are sitting on the sofa talking", "video_id": "video10378", "sen_id": 257165}, {"caption": "a father catching a baby rolling off the couch", "video_id": "video10378", "sen_id": 257166}, {"caption": "people sitting in the living room trying to help out a man with special needs", "video_id": "video10378", "sen_id": 257167}, {"caption": "the baby is falling from the bed in the living room", "video_id": "video10378", "sen_id": 257168}, {"caption": "a mom wearing a blue shirt sitting on a black sofa with her husband and two kids", "video_id": "video10378", "sen_id": 257169}, {"caption": "girls are getting pissed off because im pretty sure the man is cheating", "video_id": "video10378", "sen_id": 257170}, {"caption": "a family is lying on a couch baby goes to fall off the couch the father wakes up and catches the baby", "video_id": "video10378", "sen_id": 257171}, {"caption": "a dad catches his baby from falling off of the couch", "video_id": "video10378", "sen_id": 257172}, {"caption": "a family is startled when a baby nearly falls and hits its head but thankfully the mother catches it in time", "video_id": "video10378", "sen_id": 257173}, {"caption": "some people in a room are sitting on a couch", "video_id": "video10378", "sen_id": 257174}, {"caption": "a small child tries to stand up and falls on its head", "video_id": "video10378", "sen_id": 257175}, {"caption": "just in the nick of time dad prevented toddler from falling off sofa", "video_id": "video10378", "sen_id": 257176}, {"caption": "a family lays on the couch watch tv and relaxing together", "video_id": "video10378", "sen_id": 257177}, {"caption": "static camera with man saving child from falling off couch in both regular and slow motion", "video_id": "video10378", "sen_id": 257178}, {"caption": "some people on a couch are talking insnide", "video_id": "video10378", "sen_id": 257179}, {"caption": "a men is wearing a suit and telling a sports news on bbc news", "video_id": "video11782", "sen_id": 257180}, {"caption": "a guy is talking to another guy that there are some vicious people in the country but that doesn t change the picture and still gorgia is still the safest place despite some problems", "video_id": "video11782", "sen_id": 257181}, {"caption": "a two men are speaking out side of open place", "video_id": "video11782", "sen_id": 257182}, {"caption": "a video clip an interview of a person at outdoor place", "video_id": "video11782", "sen_id": 257183}, {"caption": "guy in suit talking to each other at harbor", "video_id": "video11782", "sen_id": 257184}, {"caption": "the person being interviewd says that georgia is most safest and less corrupted place in eastern europe", "video_id": "video11782", "sen_id": 257185}, {"caption": "interview one man talking behind him ship there", "video_id": "video11782", "sen_id": 257186}, {"caption": "two men discuss the life in one of the former soviet block eastern european countries", "video_id": "video11782", "sen_id": 257187}, {"caption": "a old man in blue dress sitting and other man speaking beside river displaying on screen", "video_id": "video11782", "sen_id": 257188}, {"caption": "guys in blazers talking to each other at port", "video_id": "video11782", "sen_id": 257189}, {"caption": "two men are talking together one is wearing blue shirt", "video_id": "video11782", "sen_id": 257190}, {"caption": "one man talking so fastly near monitor of zoom", "video_id": "video11782", "sen_id": 257191}, {"caption": "two men talk about the future of a soviet block country", "video_id": "video11782", "sen_id": 257192}, {"caption": "the news reader is wearing a black suit and white shirt and sitting in a really beautiful background", "video_id": "video11782", "sen_id": 257193}, {"caption": "a man is interviewing another man in an outdoor location", "video_id": "video11782", "sen_id": 257194}, {"caption": "an old man speaks in front of a dock with a large boat behind him", "video_id": "video11782", "sen_id": 257195}, {"caption": "one old man talking about something behind ship", "video_id": "video11782", "sen_id": 257196}, {"caption": "a man in blue coat sit infront of the sea shore and talks he is clean shaved", "video_id": "video11782", "sen_id": 257197}, {"caption": "guy in coat talking to the camera in the harbor", "video_id": "video11782", "sen_id": 257198}, {"caption": "a man with a blue jacket is talking", "video_id": "video11782", "sen_id": 257199}, {"caption": "a bunch of fish are jumping around in a barrel full of water", "video_id": "video10507", "sen_id": 257200}, {"caption": "in a foreign language a man is speaking abaout a large container of live fish the fish are very actively swimming in the container and the man reaches in a brings one fish out to be viewed", "video_id": "video10507", "sen_id": 257201}, {"caption": "a fish is playing in water nicely", "video_id": "video10507", "sen_id": 257202}, {"caption": "a man has a giant bucket of water which contains a number of fish one of which he pulls out for the camera", "video_id": "video10507", "sen_id": 257203}, {"caption": "fish swim frantically in a crowded blue bucket", "video_id": "video10507", "sen_id": 257204}, {"caption": "a man picking one fish from the bucket and showing to others", "video_id": "video10507", "sen_id": 257205}, {"caption": "the fish are swimming in a bucket bucket of water", "video_id": "video10507", "sen_id": 257206}, {"caption": "guy picking fish from a water can and showing it", "video_id": "video10507", "sen_id": 257207}, {"caption": "a bowl inside fish swimming inside water and man explayning about it taking fish in hand displaying on screen", "video_id": "video10507", "sen_id": 257208}, {"caption": "a bunch of small fish flopping around in a blue tub of water while a man plucks one out and holds it in his hands", "video_id": "video10507", "sen_id": 257209}, {"caption": "there are some fishes swimming in the soap water", "video_id": "video10507", "sen_id": 257210}, {"caption": "blue color water fishes are kept and swimming", "video_id": "video10507", "sen_id": 257211}, {"caption": "men showing fish in a blue barrel to the camera", "video_id": "video10507", "sen_id": 257212}, {"caption": "a man looks and reaches into a large plastic blue tub of live fish flipping and jumping in water", "video_id": "video10507", "sen_id": 257213}, {"caption": "a man looking over a bucket of fish then reaches in a picks one out to show to the camera", "video_id": "video10507", "sen_id": 257214}, {"caption": "there is a tank of fish in the street", "video_id": "video10507", "sen_id": 257215}, {"caption": "live fishes are put into a bowl of foam water a man catches a fish and shows", "video_id": "video10507", "sen_id": 257216}, {"caption": "men are putting many small fish in a tub with ice", "video_id": "video10507", "sen_id": 257217}, {"caption": "men putting several fish into a big blue bucket of water", "video_id": "video10507", "sen_id": 257218}, {"caption": "fish swimming in the bucket together and showing its fins", "video_id": "video10507", "sen_id": 257219}, {"caption": "a man in a kitchen preparing some dish of prawnss", "video_id": "video11050", "sen_id": 257220}, {"caption": "a person putting ingredient in a skillet for a recipe", "video_id": "video11050", "sen_id": 257221}, {"caption": "a man is frying a bran on the pan", "video_id": "video11050", "sen_id": 257222}, {"caption": "a person is cooking in a pan on the stove", "video_id": "video11050", "sen_id": 257223}, {"caption": "a person is preparing some non-vegetarian receipe in the frying pan is shown in the kitchen show", "video_id": "video11050", "sen_id": 257224}, {"caption": "a man is cooking shrimp in a stainless steel pan", "video_id": "video11050", "sen_id": 257225}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video11050", "sen_id": 257226}, {"caption": "chef adds the prawn in pan then he roast it all side place the lemon on the pan", "video_id": "video11050", "sen_id": 257227}, {"caption": "a man frying prawn on the pan and the lemon", "video_id": "video11050", "sen_id": 257228}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video11050", "sen_id": 257229}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11050", "sen_id": 257230}, {"caption": "a hand is placing shrimp carefully in a silver metal skillet and then adds half a lemon in the center", "video_id": "video11050", "sen_id": 257231}, {"caption": "shrimp are cooking with some vegetables and lemon in a skillet", "video_id": "video11050", "sen_id": 257232}, {"caption": "a chef is cooking shrimp in a restaurant", "video_id": "video11050", "sen_id": 257233}, {"caption": "music plays as food simmers in a pan and a man seasons it", "video_id": "video11050", "sen_id": 257234}, {"caption": "in the kitchen someone making a prawn fry", "video_id": "video11050", "sen_id": 257235}, {"caption": "someone is adding shrimp to a silver pan on a stove", "video_id": "video11050", "sen_id": 257236}, {"caption": "shrimp cooking in a skillet with lemon and garlic", "video_id": "video11050", "sen_id": 257237}, {"caption": "a hand with a white sleeve on the arm is rearranging shrimp in a sizzling pan with steam rising the same hand lays a lemon in the middle of the sizzling pan", "video_id": "video11050", "sen_id": 257238}, {"caption": "a person is frying some shrimp in a pan", "video_id": "video11050", "sen_id": 257239}, {"caption": "two men and a woman are exercising in a gym", "video_id": "video11405", "sen_id": 257240}, {"caption": "a woman and man are practicing different yoga positions with a trainer helping", "video_id": "video11405", "sen_id": 257241}, {"caption": "two men and one woman demonstrating yoga exercises", "video_id": "video11405", "sen_id": 257242}, {"caption": "a man is giving instructions on the posing", "video_id": "video11405", "sen_id": 257243}, {"caption": "a girl in brown color dress and boy lying down other boy standing position doing exercise displaying on screen", "video_id": "video11405", "sen_id": 257244}, {"caption": "there is a man dancing with a female", "video_id": "video11405", "sen_id": 257245}, {"caption": "in the yoga room the master is teaching the students in very well behind is the symbol is om", "video_id": "video11405", "sen_id": 257246}, {"caption": "guy lifting women with her legs", "video_id": "video11405", "sen_id": 257247}, {"caption": "two ladies are training and presenting their new exercises", "video_id": "video11405", "sen_id": 257248}, {"caption": "a man showing two women how to balance on each other", "video_id": "video11405", "sen_id": 257249}, {"caption": "a man lifting a woman on his feet while another man spots them and discusses what they are doing", "video_id": "video11405", "sen_id": 257250}, {"caption": "a man and woman making yoga while the master explains how it is done", "video_id": "video11405", "sen_id": 257251}, {"caption": "three people showing hot to perform yoga exercises on a mat in a room painted that is light and dark green", "video_id": "video11405", "sen_id": 257252}, {"caption": "a man helps two other people demonstrate some very complicated yoga positions", "video_id": "video11405", "sen_id": 257253}, {"caption": "a woman balances on the out stretch feet of a man that is laying on the floor", "video_id": "video11405", "sen_id": 257254}, {"caption": "a yoga teacher and two students demonstrate a complex yoga position", "video_id": "video11405", "sen_id": 257255}, {"caption": "three people doing an exercise", "video_id": "video11405", "sen_id": 257256}, {"caption": "a man in a green room instructs two people how to do a yoga pose where one sits on the other s upraised feet", "video_id": "video11405", "sen_id": 257257}, {"caption": "a dance teacher explains why he must act in a spotter role for some of the more acrobatic moves", "video_id": "video11405", "sen_id": 257258}, {"caption": "a woman is sitting on the foot of a man and a man guides to woman to do exercise", "video_id": "video11405", "sen_id": 257259}, {"caption": "table tennis match is going on with two players fighting for the win", "video_id": "video11389", "sen_id": 257260}, {"caption": "there is a man doing some tricks in table tennis", "video_id": "video11389", "sen_id": 257261}, {"caption": "a man in a black tee shirt is playing ping pong", "video_id": "video11389", "sen_id": 257262}, {"caption": "a man making a tutorial about serving a pin pong ball", "video_id": "video11389", "sen_id": 257263}, {"caption": "a man is talking about how high you through a ball up and hit it", "video_id": "video11389", "sen_id": 257264}, {"caption": "there is a black tshirt man playing table tennis in a court", "video_id": "video11389", "sen_id": 257265}, {"caption": "a man in a black shirt is serving a ping pong ball across the table", "video_id": "video11389", "sen_id": 257266}, {"caption": "a man describes the proper way to do a table tennis ball drop", "video_id": "video11389", "sen_id": 257267}, {"caption": "a man raising ball and hitting with a racket on a table", "video_id": "video11389", "sen_id": 257268}, {"caption": "a man explaining how to complete a ball toss in table tennis", "video_id": "video11389", "sen_id": 257269}, {"caption": "there is a black tshirt man playing table tennis", "video_id": "video11389", "sen_id": 257270}, {"caption": "a man in a black shirt serving a ping pong ball across a table", "video_id": "video11389", "sen_id": 257271}, {"caption": "a man shows how to complete a ball toss in ping-pong", "video_id": "video11389", "sen_id": 257272}, {"caption": "a table tennis professional in an indoor stadium explains how a ball toss should be played effectively", "video_id": "video11389", "sen_id": 257273}, {"caption": "a man playing tennis showing different techniques", "video_id": "video11389", "sen_id": 257274}, {"caption": "there is a black tshirt man smashing a ball", "video_id": "video11389", "sen_id": 257275}, {"caption": "this is a tutorial on how to serve a ping pong ball", "video_id": "video11389", "sen_id": 257276}, {"caption": "a man in black dress is playing a table tennis game", "video_id": "video11389", "sen_id": 257277}, {"caption": "its tennis game where payer hit ball in slow motion", "video_id": "video11389", "sen_id": 257278}, {"caption": "there is a man hitting a ping pong ball on a ping pong table", "video_id": "video11389", "sen_id": 257279}, {"caption": "a man wearing a black cap and sunglasses is talking something in a foreign language", "video_id": "video10306", "sen_id": 257280}, {"caption": "the man wearing the hat and sunshades talks out doors", "video_id": "video10306", "sen_id": 257281}, {"caption": "a man in sweatshirt stands by fence near sandy beach and discusses life and family with friend happily", "video_id": "video10306", "sen_id": 257282}, {"caption": "man with black cap is in the dessert and talking in front of camera", "video_id": "video10306", "sen_id": 257283}, {"caption": "a man talking about what is really important in life for", "video_id": "video10306", "sen_id": 257284}, {"caption": "a man wearing hat and sunglasses is talking in then his bald friend is shown", "video_id": "video10306", "sen_id": 257285}, {"caption": "a man in a black jacket answering a question on a beach", "video_id": "video10306", "sen_id": 257286}, {"caption": "a man is on the beach talking about god", "video_id": "video10306", "sen_id": 257287}, {"caption": "two people are outdoors and having conversation", "video_id": "video10306", "sen_id": 257288}, {"caption": "a man getting interviewed is wearing a black hat and coat", "video_id": "video10306", "sen_id": 257289}, {"caption": "a man wearing a black sweatshirt and a cap stands in a desert talking to others who are off screen", "video_id": "video10306", "sen_id": 257290}, {"caption": "the man with cap on and goggle on it and talking while the other man is laughing", "video_id": "video10306", "sen_id": 257291}, {"caption": "a man wearing military color jacket a hat is describing that 1st is god 2nd is family and 3rd is confidence", "video_id": "video10306", "sen_id": 257292}, {"caption": "a man describes what motivates him prior to a challenge", "video_id": "video10306", "sen_id": 257293}, {"caption": "guy in grey tshirt and cap talking in front of camera", "video_id": "video10306", "sen_id": 257294}, {"caption": "a smiling dark-skinned man is talking to a bald friend", "video_id": "video10306", "sen_id": 257295}, {"caption": "the person is speaking that first is the god then family and third is confidence", "video_id": "video10306", "sen_id": 257296}, {"caption": "a man wearing a black hat starts talking in english then speaks in spanish", "video_id": "video10306", "sen_id": 257297}, {"caption": "a man stands outside near a landscape talking about god coming first then family and confidence third", "video_id": "video10306", "sen_id": 257298}, {"caption": "a man in a hat is talking to a guy", "video_id": "video10306", "sen_id": 257299}, {"caption": "athletes are getting ready for 100 meter sprint in an event", "video_id": "video10958", "sen_id": 257300}, {"caption": "eight football players lining up on a track to race to see who is the fastest", "video_id": "video10958", "sen_id": 257301}, {"caption": "the runners are on their marks waiting for the gun to sound when it does the race will begin and the outcome will determine the fastest man in football", "video_id": "video10958", "sen_id": 257302}, {"caption": "track runners lined up on a track to begin running", "video_id": "video10958", "sen_id": 257303}, {"caption": "a field of eight football players test their running speed in a sprint competition", "video_id": "video10958", "sen_id": 257304}, {"caption": "there are some athletes running on the track", "video_id": "video10958", "sen_id": 257305}, {"caption": "start position of a dash race with runners occupying their spots waiting for the start signal", "video_id": "video10958", "sen_id": 257306}, {"caption": "8 men gets ready to run the 100 meter dash", "video_id": "video10958", "sen_id": 257307}, {"caption": "multiple runners on a track preparing to run a 100 meter dash race while a commentor talks about it", "video_id": "video10958", "sen_id": 257308}, {"caption": "eight runners get on their marks by placing their feet in the starter blocks", "video_id": "video10958", "sen_id": 257309}, {"caption": "a group of runners lineing up getting ready to start a race", "video_id": "video10958", "sen_id": 257310}, {"caption": "a line of runners getting ready to race at a competition", "video_id": "video10958", "sen_id": 257311}, {"caption": "a group of men get ready to run a race on a big outdoor track", "video_id": "video10958", "sen_id": 257312}, {"caption": "a group of people are preparing to run a professional track meet", "video_id": "video10958", "sen_id": 257313}, {"caption": "several men are preparing to begin a foot race with another man commentating", "video_id": "video10958", "sen_id": 257314}, {"caption": "runners line up in the staring position to get ready for a race", "video_id": "video10958", "sen_id": 257315}, {"caption": "some athletes are getting ready for a running race in their respective tracks with a live commentary", "video_id": "video10958", "sen_id": 257316}, {"caption": "in a running competition several atletes prepare to run", "video_id": "video10958", "sen_id": 257317}, {"caption": "8 men lined up ready to start a race on a red track", "video_id": "video10958", "sen_id": 257318}, {"caption": "a group of young men prepare to race each other", "video_id": "video10958", "sen_id": 257319}, {"caption": "a man is applying coat to the already prepared food", "video_id": "video12188", "sen_id": 257320}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12188", "sen_id": 257321}, {"caption": "two papers kept on the gravy and spices along with cream is put on it and this repeats few more times", "video_id": "video12188", "sen_id": 257322}, {"caption": "a dish is being assembled on screen while music plays", "video_id": "video12188", "sen_id": 257323}, {"caption": "a baker adds a dessert to a glass container with frosting and layers", "video_id": "video12188", "sen_id": 257324}, {"caption": "a person cooking a variety in a oil on the pan", "video_id": "video12188", "sen_id": 257325}, {"caption": "a person is spreading some mixture with nuts on glass plate", "video_id": "video12188", "sen_id": 257326}, {"caption": "a person layering a dish with ground meat and cheese in a glass container on a wooden counter", "video_id": "video12188", "sen_id": 257327}, {"caption": "a chef works on a lasagne dish by layering ingredients in a dish", "video_id": "video12188", "sen_id": 257328}, {"caption": "demonstrating making a dessert in a glass baking dish", "video_id": "video12188", "sen_id": 257329}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video12188", "sen_id": 257330}, {"caption": "a person preparing a food dish with several layers of ingredients", "video_id": "video12188", "sen_id": 257331}, {"caption": "a person preparing some dish in the home", "video_id": "video12188", "sen_id": 257332}, {"caption": "a person is preparing a wonderful pastry item", "video_id": "video12188", "sen_id": 257333}, {"caption": "someone prepares a layered lasagna like dish using a meat mixture white sauce and cheese", "video_id": "video12188", "sen_id": 257334}, {"caption": "food being made in glass dish on wooden counter top", "video_id": "video12188", "sen_id": 257335}, {"caption": "a person is preparing a lasagna by adding ricottta and beef", "video_id": "video12188", "sen_id": 257336}, {"caption": "a woman glazes a cream syrup over brittle and layers it", "video_id": "video12188", "sen_id": 257337}, {"caption": "a step by step instructional video on how to make a lasagna", "video_id": "video12188", "sen_id": 257338}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video12188", "sen_id": 257339}, {"caption": "the ingredients needed for making a jam is kept on the table", "video_id": "video12956", "sen_id": 257340}, {"caption": "a wooden cutting board with berries chia seeds and maple syrup on it", "video_id": "video12956", "sen_id": 257341}, {"caption": "in the table the dish of the strawberry and the cup and spoon are near the table", "video_id": "video12956", "sen_id": 257342}, {"caption": "assorted berries are in a bowl on table along with water and other ingredients", "video_id": "video12956", "sen_id": 257343}, {"caption": "on a kitchen counter there are four ingredients the four ingredients are as follows: berries chia seeds and maple syrup", "video_id": "video12956", "sen_id": 257344}, {"caption": "some one arranged ingredients to prepare something from strawberry", "video_id": "video12956", "sen_id": 257345}, {"caption": " chia seeds and maple syrup are on a counter", "video_id": "video12956", "sen_id": 257346}, {"caption": " and chia seeds and maple syrup are shown on a table", "video_id": "video12956", "sen_id": 257347}, {"caption": "there are some incridents on the table about preparing some berries fruits dish", "video_id": "video12956", "sen_id": 257348}, {"caption": "childrens program about foods and measurements accordingly", "video_id": "video12956", "sen_id": 257349}, {"caption": "there is a bread with jam and some strawberries on the desk", "video_id": "video12956", "sen_id": 257350}, {"caption": "some kind of recipe is being gathered with berries and measuring cups present", "video_id": "video12956", "sen_id": 257351}, {"caption": "on a counter there are berries in a green bowl water in a cup chia seeds and maple syrup", "video_id": "video12956", "sen_id": 257352}, {"caption": "a bowl of berries a cup of water a pile of chia seeds and some maple syrup are on a surface", "video_id": "video12956", "sen_id": 257353}, {"caption": "a video of water and fruit and chia seeds with a measuring cup", "video_id": "video12956", "sen_id": 257354}, {"caption": "there is someone making a dish with strawberries", "video_id": "video12956", "sen_id": 257355}, {"caption": "the person displays the ingredients on the cutting board", "video_id": "video12956", "sen_id": 257356}, {"caption": "jelly is shown to be made from chia seeds maple syrup and berries", "video_id": "video12956", "sen_id": 257357}, {"caption": "ingredients sits on a counter in a cup bowl and measuring spoon", "video_id": "video12956", "sen_id": 257358}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video12956", "sen_id": 257359}, {"caption": "a lady showing different ear rings which can be worn with different dresses", "video_id": "video12156", "sen_id": 257360}, {"caption": "a woman discussing the pairing of jewelry with various pieces of her wardrobe", "video_id": "video12156", "sen_id": 257361}, {"caption": "a handing is holding a pair of earrings and marching them to different clothes laid out on a bed", "video_id": "video12156", "sen_id": 257362}, {"caption": "a woman discusses how she pairs jewelry with multiple outfits", "video_id": "video12156", "sen_id": 257363}, {"caption": "shown some apparel like clothesdescription about a fancy ear top", "video_id": "video12156", "sen_id": 257364}, {"caption": "a person is talking about the various kinds of jewelry she has and using them for double duty", "video_id": "video12156", "sen_id": 257365}, {"caption": "the lady selected the dress material and explaine the designs", "video_id": "video12156", "sen_id": 257366}, {"caption": "some dresses are scattered and a pair of blue coloured flower shaped earrings is matched with the blue dresses", "video_id": "video12156", "sen_id": 257367}, {"caption": "a woman has jewelry in her hand showing how it goes with many things in her wardrobe", "video_id": "video12156", "sen_id": 257368}, {"caption": "a woman showing how to use one or more pieces of jewelry with multiple outfits", "video_id": "video12156", "sen_id": 257369}, {"caption": "there is a women explaining about earnings used by her", "video_id": "video12156", "sen_id": 257370}, {"caption": "a woman describes how to match her jewelry with her outfits", "video_id": "video12156", "sen_id": 257371}, {"caption": "a woman talking about a jewelry matching for her dress", "video_id": "video12156", "sen_id": 257372}, {"caption": "a person recording all their clothes put put together folded", "video_id": "video12156", "sen_id": 257373}, {"caption": "a woman is talking about some clothes on the bed", "video_id": "video12156", "sen_id": 257374}, {"caption": "a woman is matching blue earrings with different shirts displayed on a table", "video_id": "video12156", "sen_id": 257375}, {"caption": "a woman is holding up different turquoise earrings and matching them to assorted garments folded on a bed", "video_id": "video12156", "sen_id": 257376}, {"caption": "a woman discusses jewelry that can be worn with various outfits", "video_id": "video12156", "sen_id": 257377}, {"caption": "a clothes and designing item displaying on screen", "video_id": "video12156", "sen_id": 257378}, {"caption": "a woman is talking about some clothing related things", "video_id": "video12156", "sen_id": 257379}, {"caption": "two women are busy preparing food in kitchen", "video_id": "video11091", "sen_id": 257380}, {"caption": "a beautician with a girl explains something about a lipstain", "video_id": "video11091", "sen_id": 257381}, {"caption": "two beautiful girls talking about the lip stainthey look gargeous", "video_id": "video11091", "sen_id": 257382}, {"caption": "two women sits at a counter with a mirror and products in a pink bowl", "video_id": "video11091", "sen_id": 257383}, {"caption": "two ladies talking about beauty tips", "video_id": "video11091", "sen_id": 257384}, {"caption": "a women in pink talking to her friend", "video_id": "video11091", "sen_id": 257385}, {"caption": "the girls converse behind the table to eachother", "video_id": "video11091", "sen_id": 257386}, {"caption": "two girls talkingabout lip stain one of the girl wore pink dress", "video_id": "video11091", "sen_id": 257387}, {"caption": "two women are demonstrating about makeup and how to wear it on", "video_id": "video11091", "sen_id": 257388}, {"caption": "a woman with pink colour saree is talking with lip stain with a woman", "video_id": "video11091", "sen_id": 257389}, {"caption": "a women is wearing earing for her ears and applying lips stick for her lips", "video_id": "video11091", "sen_id": 257390}, {"caption": "two young women both brunette talk about various make-up products", "video_id": "video11091", "sen_id": 257391}, {"caption": "a two girls got a mirrows and two menu sheets with bowl with them for the lip stain aid", "video_id": "video11091", "sen_id": 257392}, {"caption": "in this video clip there are two girls speaking", "video_id": "video11091", "sen_id": 257393}, {"caption": "the woman wore a pink dress and the girl was wearing a floral print", "video_id": "video11091", "sen_id": 257394}, {"caption": "two young beautiful girls with blond hair are giving some beauty tips", "video_id": "video11091", "sen_id": 257395}, {"caption": "2 girls explain about the lip stain the girl with black shirt has floral design", "video_id": "video11091", "sen_id": 257396}, {"caption": "two ladies talking and demonstrating a product of lip stain", "video_id": "video11091", "sen_id": 257397}, {"caption": "two young girls disagree on whether a color in their lip staining project will turn out black", "video_id": "video11091", "sen_id": 257398}, {"caption": "a girl with brown hair is talking about something", "video_id": "video11091", "sen_id": 257399}, {"caption": "two persons are speaking each other on a room", "video_id": "video12736", "sen_id": 257400}, {"caption": "a lady wearing red colo dress is talking with another old lady", "video_id": "video12736", "sen_id": 257401}, {"caption": "a old lady walks to a room and gives interview to a lady", "video_id": "video12736", "sen_id": 257402}, {"caption": "blonde woman is entering in the tv studio and have conversation", "video_id": "video12736", "sen_id": 257403}, {"caption": "two women sit together to talk about using electronic cigarettes", "video_id": "video12736", "sen_id": 257404}, {"caption": "there is a red dressing lady talking with a woman", "video_id": "video12736", "sen_id": 257405}, {"caption": "two ladies are talking each other", "video_id": "video12736", "sen_id": 257406}, {"caption": "this is a bbc story about the relative benefits of using e-cigarettes vs traditional smoking", "video_id": "video12736", "sen_id": 257407}, {"caption": "an old women is walking inside a room and conversing with other woman sitting in a red chair with some stack of files behind her", "video_id": "video12736", "sen_id": 257408}, {"caption": "an older woman with a scratchy voice is talking with another reporter about kicking the smoking habit", "video_id": "video12736", "sen_id": 257409}, {"caption": "two older women talking about smoking e-cigarettes to kick the habit of smoking cigarettes", "video_id": "video12736", "sen_id": 257410}, {"caption": "during a news report two adult women sit down and talk", "video_id": "video12736", "sen_id": 257411}, {"caption": "a lady in a pink shirt is interviewing an older lady", "video_id": "video12736", "sen_id": 257412}, {"caption": "a man discusses how e-cigarettes help you quit smoking", "video_id": "video12736", "sen_id": 257413}, {"caption": "an elderly lady who has smoked for over 40 years is discussing how she was nervous about trying e-cigarettes to help her to stop smoking", "video_id": "video12736", "sen_id": 257414}, {"caption": "a man urgeing the woman who has been smoking for fourty years to try e cigarrets", "video_id": "video12736", "sen_id": 257415}, {"caption": "a old lady comes for an interview in the news channel", "video_id": "video12736", "sen_id": 257416}, {"caption": "a lady in a red shirt is conducting an interview on bbc news", "video_id": "video12736", "sen_id": 257417}, {"caption": "a news show discuss the benefits of smoking e-cigarettes", "video_id": "video12736", "sen_id": 257418}, {"caption": "a blonde woman is talking on the tv news", "video_id": "video12736", "sen_id": 257419}, {"caption": "there are some people falling down from the cycle", "video_id": "video12277", "sen_id": 257420}, {"caption": "the men do tricks on their bikes and then falls to the ground", "video_id": "video12277", "sen_id": 257421}, {"caption": "four different men are shown attempting to perform a bmx trick and then failing to finish with each one falling painfully onto the ground", "video_id": "video12277", "sen_id": 257422}, {"caption": "boys are attempting tricks on their bikes and failing", "video_id": "video12277", "sen_id": 257423}, {"caption": "several different young guys trying to do tricks on bikes and failing", "video_id": "video12277", "sen_id": 257424}, {"caption": "men riding bmx bikes in various different settings and falling off", "video_id": "video12277", "sen_id": 257425}, {"caption": "a cyclist trying to make a jump and falls from the cycle", "video_id": "video12277", "sen_id": 257426}, {"caption": "a people riding bicycle and fell down like mad", "video_id": "video12277", "sen_id": 257427}, {"caption": "boys are trying to do tricks with their bikes and failing", "video_id": "video12277", "sen_id": 257428}, {"caption": "montage of epic bike tricks and stunts gone wrong", "video_id": "video12277", "sen_id": 257429}, {"caption": "multiple bike stunts going bad", "video_id": "video12277", "sen_id": 257430}, {"caption": "someone is riding a bike and trying to do tricks", "video_id": "video12277", "sen_id": 257431}, {"caption": "some of the persons are riding on the bicycle and jumping and falling on the ground", "video_id": "video12277", "sen_id": 257432}, {"caption": "man with yellow shorts is falling from his new bike", "video_id": "video12277", "sen_id": 257433}, {"caption": "they are driving a cycle and jump the rope and fall down", "video_id": "video12277", "sen_id": 257434}, {"caption": "a group of men who are riding bikes and attempting to do tricks but they are have painful crashes", "video_id": "video12277", "sen_id": 257435}, {"caption": "all men who are riding the cycle who makes feats with cycle fallen down when doing feats", "video_id": "video12277", "sen_id": 257436}, {"caption": "people ride their bikes doing jumping tricks then falls to the ground", "video_id": "video12277", "sen_id": 257437}, {"caption": "a numbers of boys wheeling in bicycle and falling down injuries displaying on screen", "video_id": "video12277", "sen_id": 257438}, {"caption": " boys falling off of bikes and skateboards", "video_id": "video12277", "sen_id": 257439}, {"caption": "two men in a bu do uniforms are practicing their bu do lessons", "video_id": "video12289", "sen_id": 257440}, {"caption": "two middle aged men in black clothing demonstrate martial arts moves", "video_id": "video12289", "sen_id": 257441}, {"caption": "a karate people both in black dress shows how to hit a person for our safety", "video_id": "video12289", "sen_id": 257442}, {"caption": "two men demonstrate a series of self defense moves", "video_id": "video12289", "sen_id": 257443}, {"caption": "two men demonstrate a type of marital arts", "video_id": "video12289", "sen_id": 257444}, {"caption": "there are two karatte men fighting eachother", "video_id": "video12289", "sen_id": 257445}, {"caption": "two adult martial artists depict budo techniques", "video_id": "video12289", "sen_id": 257446}, {"caption": "a karate demonstration with his student and an instructor", "video_id": "video12289", "sen_id": 257447}, {"caption": "two men in black karate outfits demonstrates fighting styles", "video_id": "video12289", "sen_id": 257448}, {"caption": "two men in black outfits demonstrating martial arts maneuvers", "video_id": "video12289", "sen_id": 257449}, {"caption": "two men in black karate gis demonstrate moves and submissions one is a black belt and one is a red belt", "video_id": "video12289", "sen_id": 257450}, {"caption": "a man in a black top and bottom with a red belt teaching some martial arts moves", "video_id": "video12289", "sen_id": 257451}, {"caption": "a demonstration of two men dressed in black doing karate moves", "video_id": "video12289", "sen_id": 257452}, {"caption": "karate fight between two guys with black kimonos and red belts", "video_id": "video12289", "sen_id": 257453}, {"caption": "a kyusho international video demnonstrating the preventive measure when some one tries to attack you", "video_id": "video12289", "sen_id": 257454}, {"caption": "two man wearing black color dress fighting each other", "video_id": "video12289", "sen_id": 257455}, {"caption": "two men are competing in a martial arts battle", "video_id": "video12289", "sen_id": 257456}, {"caption": "a man teaching karate to his student in the class room", "video_id": "video12289", "sen_id": 257457}, {"caption": "a man dressed in black with red belt is teaching some fight technique to other bald man in black dress", "video_id": "video12289", "sen_id": 257458}, {"caption": "bunch of guys showing their martial art skills", "video_id": "video12289", "sen_id": 257459}, {"caption": "two men are taking a trek walk to a beautiful lake by a mountainside", "video_id": "video12370", "sen_id": 257460}, {"caption": "a young man is walking through forest and mountains", "video_id": "video12370", "sen_id": 257461}, {"caption": "a person walking on the forest area and he is followed by other person in orange tshirt", "video_id": "video12370", "sen_id": 257462}, {"caption": "a man is walking up through a forest and we see the trees and water", "video_id": "video12370", "sen_id": 257463}, {"caption": "a man in a black jacket walks through the woods and takes home video", "video_id": "video12370", "sen_id": 257464}, {"caption": "a man is walking through a wilderness area surrounded by mountains before arriving at a lake", "video_id": "video12370", "sen_id": 257465}, {"caption": "a forest area showed a man coming from there", "video_id": "video12370", "sen_id": 257466}, {"caption": "a man is walking carrying a back pack outdoors near a lake", "video_id": "video12370", "sen_id": 257467}, {"caption": "two young men walk along a remote mountain path and next to a small river", "video_id": "video12370", "sen_id": 257468}, {"caption": "a man in blue dress color wearing cloth walking inside forest trees beside speaking water scene displaying on screen", "video_id": "video12370", "sen_id": 257469}, {"caption": "a man wearing jacket walking in the middle of the forest", "video_id": "video12370", "sen_id": 257470}, {"caption": "a man wearing black color dress is walking", "video_id": "video12370", "sen_id": 257471}, {"caption": "the two persons are walking towards the wooden forest", "video_id": "video12370", "sen_id": 257472}, {"caption": "a man is travelling in the forestacross the river", "video_id": "video12370", "sen_id": 257473}, {"caption": "a bird flies overhead where people are in a mountainous forest", "video_id": "video12370", "sen_id": 257474}, {"caption": "a man in a black jacket walks around a wooded area and speaks to the camera", "video_id": "video12370", "sen_id": 257475}, {"caption": "the man walks around in the forest near the huge mountains", "video_id": "video12370", "sen_id": 257476}, {"caption": "mountains in the backround as a man walks through the forest", "video_id": "video12370", "sen_id": 257477}, {"caption": "a charted flight landed in forest and recorded their journey to remember their memories", "video_id": "video12370", "sen_id": 257478}, {"caption": "someone is filming a misty mountain landscape", "video_id": "video12370", "sen_id": 257479}, {"caption": "an asian woman is telling the viewers of her youtube video about what she will be doing", "video_id": "video10211", "sen_id": 257480}, {"caption": "a lady wearing yellow color dress is talking", "video_id": "video10211", "sen_id": 257481}, {"caption": "a woman in a yellow dress is explaining how she is collaborating with others", "video_id": "video10211", "sen_id": 257482}, {"caption": "it is a women in yellow talking in the kitchen", "video_id": "video10211", "sen_id": 257483}, {"caption": "woman in yellow shirt showing how to cook asian noodles", "video_id": "video10211", "sen_id": 257484}, {"caption": "there is a yellow top woman talking from a kitchen", "video_id": "video10211", "sen_id": 257485}, {"caption": "a woman in a yellow dress is in a kitchen describing asian noodles", "video_id": "video10211", "sen_id": 257486}, {"caption": "a well endowed asian woman talks about recipes", "video_id": "video10211", "sen_id": 257487}, {"caption": "amateur cook on youtube advertises her channel for cooking delicious asian food", "video_id": "video10211", "sen_id": 257488}, {"caption": "a woman in a yellow dress talks about a cooking video she made for tastemate and google", "video_id": "video10211", "sen_id": 257489}, {"caption": "a woman in a yellow dress standing in a white kitchen talking to the camera", "video_id": "video10211", "sen_id": 257490}, {"caption": "as asian woman with long black hair in a yellow dress is talking about google+ in a kitchen", "video_id": "video10211", "sen_id": 257491}, {"caption": "a well endowed asian woman wears a revealing yellow dress", "video_id": "video10211", "sen_id": 257492}, {"caption": "woman describes her collaboration with taste mate and google+ on their monthly themed noodles", "video_id": "video10211", "sen_id": 257493}, {"caption": "a woman in a kitchen is talking about something", "video_id": "video10211", "sen_id": 257494}, {"caption": "a woman in a yellow blouse discusses recipes for asian cuisine", "video_id": "video10211", "sen_id": 257495}, {"caption": "a promotion of a woman wanting to get people interested in watching her create some kind of asian cuisine dish", "video_id": "video10211", "sen_id": 257496}, {"caption": "a woman in a yellow shirt stands in her kitchen and introduces her cooking video about asian food", "video_id": "video10211", "sen_id": 257497}, {"caption": "a lady standing in the kitchen talks while wearing a yellow shirt", "video_id": "video10211", "sen_id": 257498}, {"caption": "a woman with a yellow dress is speakling", "video_id": "video10211", "sen_id": 257499}, {"caption": "short introduction on using social media to help drive sales", "video_id": "video12330", "sen_id": 257500}, {"caption": "a female news anchor is talking about social media", "video_id": "video12330", "sen_id": 257501}, {"caption": "a lady is talking with blue coloe dress", "video_id": "video12330", "sen_id": 257502}, {"caption": "newswoman introduces a clip on how social media helps businesses make more money", "video_id": "video12330", "sen_id": 257503}, {"caption": "a cnbc reporter talks about how advertisers are used on social media", "video_id": "video12330", "sen_id": 257504}, {"caption": "a woman is speaking on a news channel", "video_id": "video12330", "sen_id": 257505}, {"caption": "there is a women in black suit telling news in news room", "video_id": "video12330", "sen_id": 257506}, {"caption": "a woman with silky brown hair reading out news about the cashing in n social media in channel", "video_id": "video12330", "sen_id": 257507}, {"caption": "a short haired blonde woman wearing dark blue appears talking about social media", "video_id": "video12330", "sen_id": 257508}, {"caption": "a woman with blonde hair at a television studio speaks in front of blue monitors", "video_id": "video12330", "sen_id": 257509}, {"caption": "there is a woman anchoring a tv show", "video_id": "video12330", "sen_id": 257510}, {"caption": "a woman reporter speaking about cashing in on social media", "video_id": "video12330", "sen_id": 257511}, {"caption": "a news reader reading a news in news program", "video_id": "video12330", "sen_id": 257512}, {"caption": "a tv news reporter is talking about how companies are making use of social media to increase their business", "video_id": "video12330", "sen_id": 257513}, {"caption": "a lady with black dress is talking through media about cashing in on social media", "video_id": "video12330", "sen_id": 257514}, {"caption": "there is a women talking from the studio", "video_id": "video12330", "sen_id": 257515}, {"caption": "the woman in a black dress is anchoring news", "video_id": "video12330", "sen_id": 257516}, {"caption": "lady with the sleeveless dress have the brown hair talks about the cashing in on social media", "video_id": "video12330", "sen_id": 257517}, {"caption": "blonde woman in blue dress presenting the latest news", "video_id": "video12330", "sen_id": 257518}, {"caption": "sexy blonde in black top talking to the camera from the studio", "video_id": "video12330", "sen_id": 257519}, {"caption": "a boy in blue shirt is explaining something about his experiment with gass filled with some liquid", "video_id": "video10531", "sen_id": 257520}, {"caption": "a young boy is presenting a science experiment on a dinning room table", "video_id": "video10531", "sen_id": 257521}, {"caption": "a person sits at a table with cups filled with colorful liquid and a cloth", "video_id": "video10531", "sen_id": 257522}, {"caption": "a boy in blue color dress wearing cloth sitting and speaking color papers and a paper in hand displaying on screen", "video_id": "video10531", "sen_id": 257523}, {"caption": "boy in blue tshirt showing experiment on the camera", "video_id": "video10531", "sen_id": 257524}, {"caption": "a boy in blue t-shirt explaining something in front of the camera", "video_id": "video10531", "sen_id": 257525}, {"caption": "a small explaining about something in his home", "video_id": "video10531", "sen_id": 257526}, {"caption": "a boy is sitting at a table with cups with different colors in them talking", "video_id": "video10531", "sen_id": 257527}, {"caption": "a boy talking about a project where he has dipped paper into different cups of colored water and about a fan that is 11 and has been watching his webcast for a long time", "video_id": "video10531", "sen_id": 257528}, {"caption": "a young boy is doing some science experiments with colors in glass", "video_id": "video10531", "sen_id": 257529}, {"caption": "there is a boy with blue dressing playing with some glass", "video_id": "video10531", "sen_id": 257530}, {"caption": "wonderful colorful material are placed in series of cups all colors are attractive", "video_id": "video10531", "sen_id": 257531}, {"caption": "a kid showing the viewers how he made a long piece of fabric change color by draping it carefully into different glasses filled with dye", "video_id": "video10531", "sen_id": 257532}, {"caption": "a boy is talking about some colours which is placed in front of him", "video_id": "video10531", "sen_id": 257533}, {"caption": "a boy in blue t shirt sitting in the table in which many glasses of color water", "video_id": "video10531", "sen_id": 257534}, {"caption": "a little boy is during expirments on a desk", "video_id": "video10531", "sen_id": 257535}, {"caption": "a kids sits at a table and talks about a display of colorful water in cups", "video_id": "video10531", "sen_id": 257536}, {"caption": "a kid shows how to create a rainbow like effect with dyed water and paper towels", "video_id": "video10531", "sen_id": 257537}, {"caption": "a boy describes how he mixes colors and then thanks his fans", "video_id": "video10531", "sen_id": 257538}, {"caption": "a young boy talks about people sending things to his address and subscribing", "video_id": "video10531", "sen_id": 257539}, {"caption": "a women is applying make up to her face", "video_id": "video11848", "sen_id": 257540}, {"caption": "a women is doing makeup with brush for her face", "video_id": "video11848", "sen_id": 257541}, {"caption": "a woman is doing a eye shadow color", "video_id": "video11848", "sen_id": 257542}, {"caption": "a black hair lady doing the eye shadow with the help of a black brush", "video_id": "video11848", "sen_id": 257543}, {"caption": "a women is doing face make-up with the blush", "video_id": "video11848", "sen_id": 257544}, {"caption": "there is a women applying makeup on her eyes", "video_id": "video11848", "sen_id": 257545}, {"caption": "a lady is applying makeup on her face and she is also telling us what tones she has chosen today for her lips her eye brows and eye lashes", "video_id": "video11848", "sen_id": 257546}, {"caption": "a girl with black hair applying color to her eyes", "video_id": "video11848", "sen_id": 257547}, {"caption": "a woman is demonstrating how to apply various makeup products", "video_id": "video11848", "sen_id": 257548}, {"caption": "a women is applying make up to her eyes using brush", "video_id": "video11848", "sen_id": 257549}, {"caption": "there is a women applying makeup with a brush", "video_id": "video11848", "sen_id": 257550}, {"caption": "a girl doing make up on her face and eye lash", "video_id": "video11848", "sen_id": 257551}, {"caption": "a lady teaches on how to apply the eye lashes and how to do the eye make up", "video_id": "video11848", "sen_id": 257552}, {"caption": "a woman is applying makeup and discussing makeup application", "video_id": "video11848", "sen_id": 257553}, {"caption": "a women with black hair applying the eye shadow gently on his eyes with a black brush", "video_id": "video11848", "sen_id": 257554}, {"caption": "a woman is putting on eye make up with a brush", "video_id": "video11848", "sen_id": 257555}, {"caption": "a young woman is applying eyeshadow makeup to both of her eyelids", "video_id": "video11848", "sen_id": 257556}, {"caption": "women puts a foundation in the eyelashes and brushes eye shadow", "video_id": "video11848", "sen_id": 257557}, {"caption": "a girl make up her eyes with brush facial beauty", "video_id": "video11848", "sen_id": 257558}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11848", "sen_id": 257559}, {"caption": "a woman is describing how to make a casserole", "video_id": "video12006", "sen_id": 257560}, {"caption": "in the kitchen a woman making a paneer masala", "video_id": "video12006", "sen_id": 257561}, {"caption": "a dish cooking in a pan where mushrooms and water are added after three minutes and mixed", "video_id": "video12006", "sen_id": 257562}, {"caption": "a dish with various vegetables and tofu is pan fried", "video_id": "video12006", "sen_id": 257563}, {"caption": "a bowl inside kitchen mixing vegetables with spoon preparing dish to serve to eat displaying on screen", "video_id": "video12006", "sen_id": 257564}, {"caption": "ingredients are put in a pan with oil to boil it", "video_id": "video12006", "sen_id": 257565}, {"caption": "there is a women cooking a dish in the pan", "video_id": "video12006", "sen_id": 257566}, {"caption": "white mushrooms being added to a dish being cooked in a pan with a lid", "video_id": "video12006", "sen_id": 257567}, {"caption": "a lady cooking and adding paneer in the pan", "video_id": "video12006", "sen_id": 257568}, {"caption": "this is a video of a cooker that cook mushrooms", "video_id": "video12006", "sen_id": 257569}, {"caption": "an indian woman is showing how to make a recipe with mushrooms", "video_id": "video12006", "sen_id": 257570}, {"caption": "a woman describes how to make an ethnic meal", "video_id": "video12006", "sen_id": 257571}, {"caption": "a lady explains about a preparation of some dish in kitchen", "video_id": "video12006", "sen_id": 257572}, {"caption": "a person explaining how to cook a type of cuisine", "video_id": "video12006", "sen_id": 257573}, {"caption": "in a kitchen a girl is preparing the vegetables dish", "video_id": "video12006", "sen_id": 257574}, {"caption": "a person cooking all vegetables in small pieces in a bowl", "video_id": "video12006", "sen_id": 257575}, {"caption": "a lady shows how to prepare paneer mushroom gravey", "video_id": "video12006", "sen_id": 257576}, {"caption": "a lady describing about making a dish with mushrooms", "video_id": "video12006", "sen_id": 257577}, {"caption": "a lady adding mushrooms and paneer she adds more water and closes to cook", "video_id": "video12006", "sen_id": 257578}, {"caption": "someone is cooking some food in a pan", "video_id": "video12006", "sen_id": 257579}, {"caption": "a couple is romantically linked and are making love", "video_id": "video10390", "sen_id": 257580}, {"caption": "a man kisses a woman while a lot of intense things happen on a boat", "video_id": "video10390", "sen_id": 257581}, {"caption": "a scenes of a english movie is playing", "video_id": "video10390", "sen_id": 257582}, {"caption": "a ship in the sea and a man jumps from the ship into sea the ship starts to drown", "video_id": "video10390", "sen_id": 257583}, {"caption": "guy in grey shirt and tie trying to fight a war in movie", "video_id": "video10390", "sen_id": 257584}, {"caption": "a huge ship is sinking with so many passengers in it are scattered and scared", "video_id": "video10390", "sen_id": 257585}, {"caption": "in a hollywood movie one man talks to another woman", "video_id": "video10390", "sen_id": 257586}, {"caption": "a man drives a safety boat in very rough seas and very cold weather", "video_id": "video10390", "sen_id": 257587}, {"caption": "a man goes through a rough storm on a battleship while girlfriend worries back home", "video_id": "video10390", "sen_id": 257588}, {"caption": "a man and women are kissing and a man standing in room is shouting an dpoitning finger", "video_id": "video10390", "sen_id": 257589}, {"caption": "there is a shirt man talking from a room", "video_id": "video10390", "sen_id": 257590}, {"caption": "a trailer about a upcoming new holly wood movie", "video_id": "video10390", "sen_id": 257591}, {"caption": "a couple gives lip kiss a ship is going to sink in the sea", "video_id": "video10390", "sen_id": 257592}, {"caption": "a man and a woman go on a boat in the middle of a bad storm", "video_id": "video10390", "sen_id": 257593}, {"caption": "a bunch of movies scenes are playing one after the other", "video_id": "video10390", "sen_id": 257594}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video10390", "sen_id": 257595}, {"caption": "a film scenes is playing in the screen", "video_id": "video10390", "sen_id": 257596}, {"caption": "a ship drawns into the seathe people try to come out of the sea using life boat", "video_id": "video10390", "sen_id": 257597}, {"caption": "the people inside a boat are very serious and angry and the boat is in a dangerous condition", "video_id": "video10390", "sen_id": 257598}, {"caption": "a thing is crashing as some people talk", "video_id": "video10390", "sen_id": 257599}, {"caption": "fashion show of men in brown suits and brown leather gloves walking the runway", "video_id": "video10503", "sen_id": 257600}, {"caption": "there is a suit man walking on the ramp", "video_id": "video10503", "sen_id": 257601}, {"caption": "men modeling suits using a hallway with a door as a runway with the spectators seated to both sides", "video_id": "video10503", "sen_id": 257602}, {"caption": "a men are dress well and walking in the fashion show", "video_id": "video10503", "sen_id": 257603}, {"caption": "a fashion show of white men presenting various coat styles", "video_id": "video10503", "sen_id": 257604}, {"caption": "a man wearing a suit and sun glasses is walking on a fashion show", "video_id": "video10503", "sen_id": 257605}, {"caption": "men in executive costumes appear on the ramp", "video_id": "video10503", "sen_id": 257606}, {"caption": "the men models are walking on the ramp in the fashion show", "video_id": "video10503", "sen_id": 257607}, {"caption": "a fashion show composed of men showcasing brown suits with an embellished breast pocket", "video_id": "video10503", "sen_id": 257608}, {"caption": "a person with glasses is walking inside a thing", "video_id": "video10503", "sen_id": 257609}, {"caption": "there are many young male candidates participating in fashion show", "video_id": "video10503", "sen_id": 257610}, {"caption": "men walking in a fashion all wearing tan suits and jackets", "video_id": "video10503", "sen_id": 257611}, {"caption": "male fashion show all the men walks in the blazers and official dress", "video_id": "video10503", "sen_id": 257612}, {"caption": "there is a fashion show with very somber music", "video_id": "video10503", "sen_id": 257613}, {"caption": "some models are walking on a cat walk", "video_id": "video10503", "sen_id": 257614}, {"caption": "there is a suit man walking in to the ramp", "video_id": "video10503", "sen_id": 257615}, {"caption": "the men model are showing of their suit wear materials", "video_id": "video10503", "sen_id": 257616}, {"caption": "young men in light colored suits with leather gloves walk past each other on some sort of fashion runway", "video_id": "video10503", "sen_id": 257617}, {"caption": "male models wearing brown suits walking down the fashion stage", "video_id": "video10503", "sen_id": 257618}, {"caption": "male models walk down the runway in suits", "video_id": "video10503", "sen_id": 257619}, {"caption": "a person cooking a variety in a oil on the pan", "video_id": "video11688", "sen_id": 257620}, {"caption": "a woman sautes onions and other ingredients in a pan while adding salt", "video_id": "video11688", "sen_id": 257621}, {"caption": "a person adds onion and salt to the pan and stirred it to cook", "video_id": "video11688", "sen_id": 257622}, {"caption": "finely chopped vegetable are stirred with a wooden spoon in a frying pan", "video_id": "video11688", "sen_id": 257623}, {"caption": "a person cooks a meal in a pot on the stove", "video_id": "video11688", "sen_id": 257624}, {"caption": "in the kitchen a woman making a dish with onion", "video_id": "video11688", "sen_id": 257625}, {"caption": "a girl saying how to make dry massala", "video_id": "video11688", "sen_id": 257626}, {"caption": "frying ingredients for dry masala including curry onion and green chilli", "video_id": "video11688", "sen_id": 257627}, {"caption": "ingredients being added to hot wide pan ingredients are stirred by a wooden spoon", "video_id": "video11688", "sen_id": 257628}, {"caption": "a person cooks a mix of veggies in a frying pan", "video_id": "video11688", "sen_id": 257629}, {"caption": "there is a woman making a dish with onion", "video_id": "video11688", "sen_id": 257630}, {"caption": "someone is stirring around the ingredients in a pan to make filling for dry masala", "video_id": "video11688", "sen_id": 257631}, {"caption": "a pan full of great food is stir fried impecabbly", "video_id": "video11688", "sen_id": 257632}, {"caption": "a frying pan with chopped veggies and a wooden spoon on a stove top", "video_id": "video11688", "sen_id": 257633}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video11688", "sen_id": 257634}, {"caption": "there is a woman mixing onion in a pan", "video_id": "video11688", "sen_id": 257635}, {"caption": "a lady is speaking about the ingredients needed to create a filling", "video_id": "video11688", "sen_id": 257636}, {"caption": "in a kitchen someone is saying how to make dry masala", "video_id": "video11688", "sen_id": 257637}, {"caption": "a women is cooking vegetables while describing the recipe", "video_id": "video11688", "sen_id": 257638}, {"caption": "someone is stirring food inside of a pot", "video_id": "video11688", "sen_id": 257639}, {"caption": "a beautiful women in white dress is lying on grass", "video_id": "video11949", "sen_id": 257640}, {"caption": "a woman is sitting in the field and prancing around in the field", "video_id": "video11949", "sen_id": 257641}, {"caption": "a girl posing with flowers in the garden", "video_id": "video11949", "sen_id": 257642}, {"caption": "a girl lays in a field crossing her legs between a bed of flowers", "video_id": "video11949", "sen_id": 257643}, {"caption": "a woman frolics in a field of tall lavender flowers", "video_id": "video11949", "sen_id": 257644}, {"caption": "a woman smiling a blue colored flowers in a garden", "video_id": "video11949", "sen_id": 257645}, {"caption": "a girl is wearing a white dress and sitting in a garden", "video_id": "video11949", "sen_id": 257646}, {"caption": "a girl is giving different position in the garden", "video_id": "video11949", "sen_id": 257647}, {"caption": "a girl smells the flowers outside in the day", "video_id": "video11949", "sen_id": 257648}, {"caption": "a woman in a white dress is sniffing flowers", "video_id": "video11949", "sen_id": 257649}, {"caption": "there is a beautiful women in the garden", "video_id": "video11949", "sen_id": 257650}, {"caption": "the beautyful girl and their body part displayed in variety pose", "video_id": "video11949", "sen_id": 257651}, {"caption": "a woman is talking about the process of taking a photo", "video_id": "video11949", "sen_id": 257652}, {"caption": "a lady wearing white stands on a large bed of flowers", "video_id": "video11949", "sen_id": 257653}, {"caption": "a woman is in nature and sniffing flowers", "video_id": "video11949", "sen_id": 257654}, {"caption": "there is beautiful lady in the garden and enjoying herself", "video_id": "video11949", "sen_id": 257655}, {"caption": "a woman wearing white skirt is sitting with bare foots and smelling flowers", "video_id": "video11949", "sen_id": 257656}, {"caption": "a woman is talking about holding it for a shot while still picks pop up on screen of a brown haired woman in different poses", "video_id": "video11949", "sen_id": 257657}, {"caption": "a girl showing legs and hairs still images scene in forest", "video_id": "video11949", "sen_id": 257658}, {"caption": "a lady is lying in the flower plants", "video_id": "video11949", "sen_id": 257659}, {"caption": "short segment of a movie trailor for catch me if you can", "video_id": "video12111", "sen_id": 257660}, {"caption": "various scenes featuring prominent actors in major motion pictures", "video_id": "video12111", "sen_id": 257661}, {"caption": "leonardo dicaprio in the motion picture catch me if you can", "video_id": "video12111", "sen_id": 257662}, {"caption": "a movie scene cars moving throwing and girl and boy kissing displaying on screen", "video_id": "video12111", "sen_id": 257663}, {"caption": "this is a scene of the best 4 movies list that is catch me if you can (2002) film the car ridings and then some body behave horrible to others and then the romantic between couple with the lip kiss", "video_id": "video12111", "sen_id": 257664}, {"caption": "three cars with some people is moving in road areaa bald person with black dressing is speaking with a person wearing glass", "video_id": "video12111", "sen_id": 257665}, {"caption": "a scene from a film with two men and a boy running and a men and women having sex", "video_id": "video12111", "sen_id": 257666}, {"caption": "leonardo dicaprio stars in the 2002 motion picture catch me if you can", "video_id": "video12111", "sen_id": 257667}, {"caption": "a compilation of the best scenes from a movie are displayed on a program", "video_id": "video12111", "sen_id": 257668}, {"caption": "a man and woman on a bed are kissing inside", "video_id": "video12111", "sen_id": 257669}, {"caption": "a segment taken from the trailer of the 2002 movie catch me if you can", "video_id": "video12111", "sen_id": 257670}, {"caption": "tom hanks throws a wallet and leonardo dicaprio taps on a window", "video_id": "video12111", "sen_id": 257671}, {"caption": "this is an advertisement of a movie catch me if you can (2002)", "video_id": "video12111", "sen_id": 257672}, {"caption": "a movie clip playing along with a song", "video_id": "video12111", "sen_id": 257673}, {"caption": "a scene from a movie is being shown", "video_id": "video12111", "sen_id": 257674}, {"caption": "several video clips of a movie are playing", "video_id": "video12111", "sen_id": 257675}, {"caption": "cars driving over a hill and a man throwing things", "video_id": "video12111", "sen_id": 257676}, {"caption": "multiple people in different senarios are having conversations", "video_id": "video12111", "sen_id": 257677}, {"caption": "this is a preview of a movie called catch me if you can (2002)", "video_id": "video12111", "sen_id": 257678}, {"caption": "a scene from the movie avatar is being shown", "video_id": "video12111", "sen_id": 257679}, {"caption": "a mother records her children as they play in their toy kitchen", "video_id": "video12559", "sen_id": 257680}, {"caption": "little children three little boys and one little girl the girl seems to be the oldest and the boys all seem to be younger than her and each one is younger than the last", "video_id": "video12559", "sen_id": 257681}, {"caption": "a children are playing with a toys in the home", "video_id": "video12559", "sen_id": 257682}, {"caption": "a group of kids are playing in the play kitchen the little girl with the purple headband is making tacos", "video_id": "video12559", "sen_id": 257683}, {"caption": "a group of young children play with a toy kitchen", "video_id": "video12559", "sen_id": 257684}, {"caption": "kids pretending to make food in the kitchen", "video_id": "video12559", "sen_id": 257685}, {"caption": "a cute girl puts a cup with vegetable in the small freezer and there are three other kids doing the same", "video_id": "video12559", "sen_id": 257686}, {"caption": "a group of children play together on a toy kitchen set up", "video_id": "video12559", "sen_id": 257687}, {"caption": "children playing together and cooking with a play kitchen", "video_id": "video12559", "sen_id": 257688}, {"caption": "on a kids school where childrens are playing wit clay making different items as per the wishes", "video_id": "video12559", "sen_id": 257689}, {"caption": "the child is playing with a fictional fridge placing something into the container", "video_id": "video12559", "sen_id": 257690}, {"caption": "the girl and boys play with the toy food", "video_id": "video12559", "sen_id": 257691}, {"caption": "kids playing with toys in a house", "video_id": "video12559", "sen_id": 257692}, {"caption": "a child plays at a toy kitchen next to three young boys who are also playing", "video_id": "video12559", "sen_id": 257693}, {"caption": "there are four kids playing and showing how to cook fake food", "video_id": "video12559", "sen_id": 257694}, {"caption": "there is a girl playing with her brother", "video_id": "video12559", "sen_id": 257695}, {"caption": "a group of children pretend to cook in a classroom", "video_id": "video12559", "sen_id": 257696}, {"caption": "a little girl pretends to make a smoothie and cook a taco in a toy kitchen with other children present", "video_id": "video12559", "sen_id": 257697}, {"caption": "the small girl is playing with her brother at home", "video_id": "video12559", "sen_id": 257698}, {"caption": "a girl is showing a troy in the house", "video_id": "video12559", "sen_id": 257699}, {"caption": "a silver colour car meets with an accident", "video_id": "video11191", "sen_id": 257700}, {"caption": "a car crashed in the wall so that all part are broken in front side", "video_id": "video11191", "sen_id": 257701}, {"caption": "one new car hit some wall and it was broken", "video_id": "video11191", "sen_id": 257702}, {"caption": "a crash test car is ran into a car at a high rate of speed", "video_id": "video11191", "sen_id": 257703}, {"caption": "the four-door vehicle participated in a crash test", "video_id": "video11191", "sen_id": 257704}, {"caption": "there is a car crash with a wall", "video_id": "video11191", "sen_id": 257705}, {"caption": "on the car making work shop the car is beat the wall in really", "video_id": "video11191", "sen_id": 257706}, {"caption": "a crash test of a hatchback car hitting a wall", "video_id": "video11191", "sen_id": 257707}, {"caption": "a crash test is done and the car is destroyed", "video_id": "video11191", "sen_id": 257708}, {"caption": "a car is being shown crashing into a pillar", "video_id": "video11191", "sen_id": 257709}, {"caption": "a car crashing into the wall being tested", "video_id": "video11191", "sen_id": 257710}, {"caption": "in this video a car got damaged because of an obstacle and it is shown in 2 directions", "video_id": "video11191", "sen_id": 257711}, {"caption": "a silver car is shown being crash tested", "video_id": "video11191", "sen_id": 257712}, {"caption": "a test crash car is crashed into a wall", "video_id": "video11191", "sen_id": 257713}, {"caption": "a silver mini van is crashing into a barrier", "video_id": "video11191", "sen_id": 257714}, {"caption": "there is a silver car meet with an accident", "video_id": "video11191", "sen_id": 257715}, {"caption": "a car got crashed on a wall and the front portion of the car is damaged", "video_id": "video11191", "sen_id": 257716}, {"caption": "an automobile crash test happens in a laboratory designed for testing", "video_id": "video11191", "sen_id": 257717}, {"caption": "sliver car is crashed to the wall in crashing centre", "video_id": "video11191", "sen_id": 257718}, {"caption": "a car is silver color crashed on the wall", "video_id": "video11191", "sen_id": 257719}, {"caption": "bill gates and former new york city mayor michael bloomberg is talking to the news channel", "video_id": "video12694", "sen_id": 257720}, {"caption": "the old man in coat and tie is speaking to somebody", "video_id": "video12694", "sen_id": 257721}, {"caption": "bill gates and michael bloomberg talk about philanthropy in a program on a channel along with the lady compere", "video_id": "video12694", "sen_id": 257722}, {"caption": "interview with michael bloomberg on philanthropy on the bloomberg network", "video_id": "video12694", "sen_id": 257723}, {"caption": "man discussing the benefits of philanthropy for the good of humanity", "video_id": "video12694", "sen_id": 257724}, {"caption": "michael bloomberg is speaking in a television interview on philanthropy", "video_id": "video12694", "sen_id": 257725}, {"caption": "the former mayor of new york is talking to a newscaster about world topics", "video_id": "video12694", "sen_id": 257726}, {"caption": "michael bloomberg explains that people do not interact with enough other people every day to have a full sense of the world", "video_id": "video12694", "sen_id": 257727}, {"caption": "the former mayor of new york city speaks about his views on philanthropy to a news panel of 3 men", "video_id": "video12694", "sen_id": 257728}, {"caption": "former mayor of new york city michael bloomberg talking about philanthropy", "video_id": "video12694", "sen_id": 257729}, {"caption": "there is a suit man talking from a studio", "video_id": "video12694", "sen_id": 257730}, {"caption": "the mayor of new york city talks on a talk show about making decisions based on what only a few people think", "video_id": "video12694", "sen_id": 257731}, {"caption": "a group of people in business suits sits and chat with a blue background", "video_id": "video12694", "sen_id": 257732}, {"caption": "a man is being interviewed on the news program", "video_id": "video12694", "sen_id": 257733}, {"caption": "a man taliling about philanthropy of him and gates", "video_id": "video12694", "sen_id": 257734}, {"caption": "a man in a black suit and blue tie is talking on a news show", "video_id": "video12694", "sen_id": 257735}, {"caption": "a man with a suit is talking about philanthropy", "video_id": "video12694", "sen_id": 257736}, {"caption": "it is a man in a suit talking on a show", "video_id": "video12694", "sen_id": 257737}, {"caption": "former new york city mayor michael bloomberg is speaking on a news program", "video_id": "video12694", "sen_id": 257738}, {"caption": "a man is explaining to the near by man and women and all the three guys are wearing coat", "video_id": "video12694", "sen_id": 257739}, {"caption": "a black suit man discussing with a person", "video_id": "video10293", "sen_id": 257740}, {"caption": "two men in black suit standing infront of people", "video_id": "video10293", "sen_id": 257741}, {"caption": "a political candidate takes a pot shot at another candidate in a debate", "video_id": "video10293", "sen_id": 257742}, {"caption": "rand paul attacks other republican candidates during a republican primary debate", "video_id": "video10293", "sen_id": 257743}, {"caption": "there is a republican debate going on on cnn", "video_id": "video10293", "sen_id": 257744}, {"caption": "there is a black suit man talking funny with a man", "video_id": "video10293", "sen_id": 257745}, {"caption": "as two men stand at podiums the one on the right talks waving his arms for emphasis", "video_id": "video10293", "sen_id": 257746}, {"caption": "competing presidential candidates express their views and strong opinions in debate show on tv", "video_id": "video10293", "sen_id": 257747}, {"caption": "two news reporters speaking about paul and his rivals during the fifth gop debate", "video_id": "video10293", "sen_id": 257748}, {"caption": "guy in suit and tie talking to other guy in the newsroom", "video_id": "video10293", "sen_id": 257749}, {"caption": "two man are standing on a stage having a debate", "video_id": "video10293", "sen_id": 257750}, {"caption": "chris christie and rand paul are on stage debating each other", "video_id": "video10293", "sen_id": 257751}, {"caption": "two men speak to each other on stage at a debate", "video_id": "video10293", "sen_id": 257752}, {"caption": "a debate between republican presidential candidates sen rand paul and chris christie", "video_id": "video10293", "sen_id": 257753}, {"caption": "in a fox news tv channel two person in black coat with red tie standing and giving speech", "video_id": "video10293", "sen_id": 257754}, {"caption": "chris christy and senator paul participating in the fifth republican party election debate", "video_id": "video10293", "sen_id": 257755}, {"caption": "two candidates during a debate discussing world war 3", "video_id": "video10293", "sen_id": 257756}, {"caption": "two men in dark suits talks at a podium on stage", "video_id": "video10293", "sen_id": 257757}, {"caption": "two guys dressed in black suit with red tie is addressing some people with interesting speech", "video_id": "video10293", "sen_id": 257758}, {"caption": "some people at a debate are arguing an issue", "video_id": "video10293", "sen_id": 257759}, {"caption": "two man stand on either side of a ping pong table and pass a soccer ball back and forth over the net using only their heads", "video_id": "video11140", "sen_id": 257760}, {"caption": "an uncanny game of table tennis is being played", "video_id": "video11140", "sen_id": 257761}, {"caption": "guys hitting ball with heads across a table", "video_id": "video11140", "sen_id": 257762}, {"caption": "head is pretty similar to table tennis only you have to hit the ball with your head", "video_id": "video11140", "sen_id": 257763}, {"caption": "men playing a type of ping pong with their head", "video_id": "video11140", "sen_id": 257764}, {"caption": "two men are playing ball with their heads", "video_id": "video11140", "sen_id": 257765}, {"caption": "players are playing ball in the table", "video_id": "video11140", "sen_id": 257766}, {"caption": "men play table tennis by headbutting a volleyball in a gym", "video_id": "video11140", "sen_id": 257767}, {"caption": "two men are playing ping pond with their heads instead of hands with a large version of a ping pong ball", "video_id": "video11140", "sen_id": 257768}, {"caption": "two men using a table tennis table to play a game where they hit a ball with their heads", "video_id": "video11140", "sen_id": 257769}, {"caption": "two people are playing a sport with their head", "video_id": "video11140", "sen_id": 257770}, {"caption": "a strange game of ping pong with the players using their heads instead of a paddle", "video_id": "video11140", "sen_id": 257771}, {"caption": "two players are playing head ball on a table tennis table", "video_id": "video11140", "sen_id": 257772}, {"caption": "young men play an unusual game with a ball and their heads", "video_id": "video11140", "sen_id": 257773}, {"caption": "bunch of players playing on ping pong table with volleyball with their heads", "video_id": "video11140", "sen_id": 257774}, {"caption": "a strange table tennis with large ball and using head instead of racket", "video_id": "video11140", "sen_id": 257775}, {"caption": "two men play a variation of ping pong except they use a volley ball instead of a ping pong ball and they use their heads instead of a paddle", "video_id": "video11140", "sen_id": 257776}, {"caption": "a man describes the inspiration for the sport of playing ping pong with your head instead of paddles while several videos of ganes are shown", "video_id": "video11140", "sen_id": 257777}, {"caption": "men play a version of table tennis with their heads and a volley ball", "video_id": "video11140", "sen_id": 257778}, {"caption": "a man in a hat is sitting down and talking", "video_id": "video11140", "sen_id": 257779}, {"caption": "ina volleyball court football is being played in a playground men in green uniform are playing football", "video_id": "video10946", "sen_id": 257780}, {"caption": " one in white shirts and the other in orange play basketball on an indoor court two men in green shirts play soccer", "video_id": "video10946", "sen_id": 257781}, {"caption": "a compilation of sports performances including a basketball game and a soccer game", "video_id": "video10946", "sen_id": 257782}, {"caption": "basket ball ground then volley ball ground is shown all players are playing with ball", "video_id": "video10946", "sen_id": 257783}, {"caption": "teams are playing different sports that use balls", "video_id": "video10946", "sen_id": 257784}, {"caption": "there is a man playing football with some tricks", "video_id": "video10946", "sen_id": 257785}, {"caption": "more players are playing food ball", "video_id": "video10946", "sen_id": 257786}, {"caption": "a group of players were trying to hit the ball", "video_id": "video10946", "sen_id": 257787}, {"caption": "a man doing tricks with a ball in a studio", "video_id": "video10946", "sen_id": 257788}, {"caption": "people do some crazy tricks using a soccer ball", "video_id": "video10946", "sen_id": 257789}, {"caption": "there is a man playing football with tricks", "video_id": "video10946", "sen_id": 257790}, {"caption": "a group of people are demonstrating their different skills in the sports that they play", "video_id": "video10946", "sen_id": 257791}, {"caption": "several people are playing different sports", "video_id": "video10946", "sen_id": 257792}, {"caption": "someone is playing a foot boll and doing amazing tricks with the foot boll", "video_id": "video10946", "sen_id": 257793}, {"caption": "several athletes doing tricks at matches or just they alone", "video_id": "video10946", "sen_id": 257794}, {"caption": "people involved in football matches and performing tricks with football", "video_id": "video10946", "sen_id": 257795}, {"caption": "many players are performing manuevers and tricks with balls from different sports", "video_id": "video10946", "sen_id": 257796}, {"caption": "people play soccer indoor outdoor and then a man in black does a trick with the soccer ball", "video_id": "video10946", "sen_id": 257797}, {"caption": "young men play soccer indoors and outdoors and dribble ball around opponents", "video_id": "video10946", "sen_id": 257798}, {"caption": "some people are playing soccer in various areas", "video_id": "video10946", "sen_id": 257799}, {"caption": "a fluffy brown and white cat climbs on a wooden deck meows and plays", "video_id": "video11919", "sen_id": 257800}, {"caption": "cats are playing on the green ground playing the thread and taking rest", "video_id": "video11919", "sen_id": 257801}, {"caption": "a cat are walking in the room and a woman is talking", "video_id": "video11919", "sen_id": 257802}, {"caption": "two cats playing around a back yard and inside a home", "video_id": "video11919", "sen_id": 257803}, {"caption": "a white and black cat color cat standing walking jumping inside garden playing with ball displaying on screen", "video_id": "video11919", "sen_id": 257804}, {"caption": "multiple shots of two cats and some descriptive statements about them", "video_id": "video11919", "sen_id": 257805}, {"caption": "cats playing on a playing groud outiside the building", "video_id": "video11919", "sen_id": 257806}, {"caption": "two fat cats play in a yard and on a wooden deck", "video_id": "video11919", "sen_id": 257807}, {"caption": "two cats playing and exploring around the yard cats are ok with guest at your house and no grooming required", "video_id": "video11919", "sen_id": 257808}, {"caption": "a white and black color cat walking jumping inside garden and rope playing displaying on screen", "video_id": "video11919", "sen_id": 257809}, {"caption": "the two white cats are playing with some toys", "video_id": "video11919", "sen_id": 257810}, {"caption": "two little cat are going and playing", "video_id": "video11919", "sen_id": 257811}, {"caption": "two fat cats play together in a yard and on a wooded deck", "video_id": "video11919", "sen_id": 257812}, {"caption": "few animals are playing with each other outside", "video_id": "video11919", "sen_id": 257813}, {"caption": "cats are plating on a backside garden of a home and some one is trying to transmit the emotion", "video_id": "video11919", "sen_id": 257814}, {"caption": "there are some beautiful white cats on the ground", "video_id": "video11919", "sen_id": 257815}, {"caption": "two cats playing on the grass while it turns back and follows a thread", "video_id": "video11919", "sen_id": 257816}, {"caption": "women talking about white pussy cats", "video_id": "video11919", "sen_id": 257817}, {"caption": "lady speaking about the flexible features of the beautiful cats", "video_id": "video11919", "sen_id": 257818}, {"caption": "2 black and white cats are playing in a backyard and inside a house", "video_id": "video11919", "sen_id": 257819}, {"caption": "a football game where one guy catches the ball and run with it to where he gets to the first block which he gets thru", "video_id": "video10675", "sen_id": 257820}, {"caption": "there is a rugby player working hard for getting points", "video_id": "video10675", "sen_id": 257821}, {"caption": "the team vase ball are playing the ground in very well", "video_id": "video10675", "sen_id": 257822}, {"caption": "a man has been hurt while tryng to collect the baseball from the other player", "video_id": "video10675", "sen_id": 257823}, {"caption": "playing valley ball and rolling down in the garden", "video_id": "video10675", "sen_id": 257824}, {"caption": "rugby player running hard but opponent team catch him easily", "video_id": "video10675", "sen_id": 257825}, {"caption": "two team players are playing rugby on ground", "video_id": "video10675", "sen_id": 257826}, {"caption": "football players running down field in football stadium", "video_id": "video10675", "sen_id": 257827}, {"caption": "the player with the ball in the hand strikes another player with great force", "video_id": "video10675", "sen_id": 257828}, {"caption": "a football player is running around with a ball", "video_id": "video10675", "sen_id": 257829}, {"caption": "there are some people playing a particular game in the ground", "video_id": "video10675", "sen_id": 257830}, {"caption": "a group of men are playing american football on a field", "video_id": "video10675", "sen_id": 257831}, {"caption": "two teams players playing rugby very interestingly", "video_id": "video10675", "sen_id": 257832}, {"caption": "a rugby match between rutgers and cflorida where players collide each other to pass a ball", "video_id": "video10675", "sen_id": 257833}, {"caption": "some football players are competing on the grid iron", "video_id": "video10675", "sen_id": 257834}, {"caption": "there is a man fighting against someone while playing rugby", "video_id": "video10675", "sen_id": 257835}, {"caption": "multiple football players compete in a football game", "video_id": "video10675", "sen_id": 257836}, {"caption": "a two team are playing a rugby ball", "video_id": "video10675", "sen_id": 257837}, {"caption": "two football players run and slam into eachother in a game", "video_id": "video10675", "sen_id": 257838}, {"caption": "some football players are playing a game", "video_id": "video10675", "sen_id": 257839}, {"caption": "in a kitchen someone is chopping green peppers carefully on a board", "video_id": "video12562", "sen_id": 257840}, {"caption": "one hand chopping with a knife and another hand chopping vegetables", "video_id": "video12562", "sen_id": 257841}, {"caption": "a man is chopping some fresh peppers after he chopped up garlic", "video_id": "video12562", "sen_id": 257842}, {"caption": "a man talks about how to prepare this thai dish", "video_id": "video12562", "sen_id": 257843}, {"caption": "a man is cutting peppers next to a pile of chopped garlic on a white cutting board", "video_id": "video12562", "sen_id": 257844}, {"caption": "there is a man cutting some chilies on the table", "video_id": "video12562", "sen_id": 257845}, {"caption": "a man is chopping a green chilli and a gralic", "video_id": "video12562", "sen_id": 257846}, {"caption": "a man chops peppers and garlic on board with broad knife", "video_id": "video12562", "sen_id": 257847}, {"caption": "in a kitchen someone is slicing vegetables on the desk", "video_id": "video12562", "sen_id": 257848}, {"caption": "a cooking show describing the use of a chopping device to prepare a recipe", "video_id": "video12562", "sen_id": 257849}, {"caption": "curry leaves and garlic sliced by someone on the kitchen", "video_id": "video12562", "sen_id": 257850}, {"caption": "a chef prepares for a recipe by chopping up some hot peppers", "video_id": "video12562", "sen_id": 257851}, {"caption": "a man chops up peppers on a cutting board with broad bladed knife", "video_id": "video12562", "sen_id": 257852}, {"caption": "a man is chopping peppers on a white cutting board with a large knife", "video_id": "video12562", "sen_id": 257853}, {"caption": "a man is chopping hot peppers on a cutting board", "video_id": "video12562", "sen_id": 257854}, {"caption": "a cook is chopping up peppers to add later to a thai dish he is about to make", "video_id": "video12562", "sen_id": 257855}, {"caption": "a hand holding a knife cutting ingredients for a recipe", "video_id": "video12562", "sen_id": 257856}, {"caption": "a man cutting with knife vegetables dish inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video12562", "sen_id": 257857}, {"caption": "someone is chopping up food for a dish", "video_id": "video12562", "sen_id": 257858}, {"caption": "an english speaking man using a knife to chop peppers", "video_id": "video12562", "sen_id": 257859}, {"caption": "the female candidates participating in the fashion show competition", "video_id": "video11501", "sen_id": 257860}, {"caption": "a blonde women is signing while the fashion show is underway", "video_id": "video11501", "sen_id": 257861}, {"caption": "a woman is dress well and cat walk in the fashion show", "video_id": "video11501", "sen_id": 257862}, {"caption": "a fashion show is conducted for the models", "video_id": "video11501", "sen_id": 257863}, {"caption": "a pretty woman walks in underwear and wears giant wings", "video_id": "video11501", "sen_id": 257864}, {"caption": "a woman is walking down a runway with snowflake wings while ellie goulding sings love me like you do", "video_id": "video11501", "sen_id": 257865}, {"caption": "a lady with white brazer and wings walks in a fashion show", "video_id": "video11501", "sen_id": 257866}, {"caption": "a tall blonde woman is walking down a runway modeling lingerie with wings", "video_id": "video11501", "sen_id": 257867}, {"caption": "a beautiful ellie goulding performing the song during the fashion show event", "video_id": "video11501", "sen_id": 257868}, {"caption": "a beautiful blonde girl walks down a runway in a sheer and shimmering pant with a bikini style top while a singer is performing", "video_id": "video11501", "sen_id": 257869}, {"caption": "fashion girls with wings on the ramp and a cute lady sings", "video_id": "video11501", "sen_id": 257870}, {"caption": "lady singing in white color dress and another lady do cat walk wearing white color bra and wings", "video_id": "video11501", "sen_id": 257871}, {"caption": "women in lingerie walk a fashion show runway while a singer performs", "video_id": "video11501", "sen_id": 257872}, {"caption": "a runway show with a blond model with white bra skin colored legs and white wings walking down the aisle while a blonde singer wearing white singing love me like you do stays in the background", "video_id": "video11501", "sen_id": 257873}, {"caption": "a woman wearing wings with a glittery outfit walking down a runway whiile another woman is singing for the audience", "video_id": "video11501", "sen_id": 257874}, {"caption": "a girl wearing butterfly dress walkingand singing", "video_id": "video11501", "sen_id": 257875}, {"caption": "a lingerie runway model is walking on a stage displaying the winter themed fashions for the fashion show", "video_id": "video11501", "sen_id": 257876}, {"caption": "its fashion show where the model walks with big feather on her back she looks like angel", "video_id": "video11501", "sen_id": 257877}, {"caption": "beautiful victoria angel walking down the stage while ellie goulding singing her song", "video_id": "video11501", "sen_id": 257878}, {"caption": "some models are walking on a cat walk", "video_id": "video11501", "sen_id": 257879}, {"caption": "movie scene from a english movie two mens are talking", "video_id": "video11382", "sen_id": 257880}, {"caption": "cartoon sleeping beauty technirama technicolor the hunchback of notre dame", "video_id": "video11382", "sen_id": 257881}, {"caption": "disney animated clips of movies are shown like the great mouse detective sleeping beauty and the hunchback of notre dame", "video_id": "video11382", "sen_id": 257882}, {"caption": "a cartoon show displaying on the screen and the cartoon dancing on screen", "video_id": "video11382", "sen_id": 257883}, {"caption": "some scenes from a cartoon movie are being shown", "video_id": "video11382", "sen_id": 257884}, {"caption": "there are many cartoon figures playing on ground", "video_id": "video11382", "sen_id": 257885}, {"caption": "cartoons sleeping beauty technirama technicolor the hunchback of notre dame", "video_id": "video11382", "sen_id": 257886}, {"caption": "entertaining previews are being shown for popular animated movies including sleeping beauty and the hunchback of notre dame", "video_id": "video11382", "sen_id": 257887}, {"caption": "disney characters trollop through their films until the end of time", "video_id": "video11382", "sen_id": 257888}, {"caption": "some scenes from some disney movies are being shown", "video_id": "video11382", "sen_id": 257889}, {"caption": "the hunchback of notre dame is a 1996 american animated musical drama film produced by walt disney feature animation and released by walt disney pictures", "video_id": "video11382", "sen_id": 257890}, {"caption": "various animated movie clips are shown while a fiddle plays", "video_id": "video11382", "sen_id": 257891}, {"caption": "a kid goes floating on a big air ballon", "video_id": "video11382", "sen_id": 257892}, {"caption": "a compilation of older animations done by disney movie makers", "video_id": "video11382", "sen_id": 257893}, {"caption": "a montage of clips from animated walt disney films", "video_id": "video11382", "sen_id": 257894}, {"caption": "different cartoon characters are dancingenjoying and jumping with joy", "video_id": "video11382", "sen_id": 257895}, {"caption": "the dolls and angels dancing the hunchback of notre dame", "video_id": "video11382", "sen_id": 257896}, {"caption": "three characters ride an air ballon in the rain", "video_id": "video11382", "sen_id": 257897}, {"caption": "some cartoons scenes from various movies", "video_id": "video11382", "sen_id": 257898}, {"caption": "various cartoon characters from a tv series is acting up", "video_id": "video11382", "sen_id": 257899}, {"caption": "a women in grey top is performing in stage", "video_id": "video12096", "sen_id": 257900}, {"caption": "women discussing with each other on some topic", "video_id": "video12096", "sen_id": 257901}, {"caption": "a woman wearing black and standing on a stage speaks to a crown during a conference", "video_id": "video12096", "sen_id": 257902}, {"caption": "a ted talk spokesperson talking about owning your success", "video_id": "video12096", "sen_id": 257903}, {"caption": "sexy brunette in black dress talking to the aufience", "video_id": "video12096", "sen_id": 257904}, {"caption": "there is a women talking from the studio", "video_id": "video12096", "sen_id": 257905}, {"caption": "a woman is talking on how to get success in business", "video_id": "video12096", "sen_id": 257906}, {"caption": "a woman gives a presentation on women getting better jobs and promotions", "video_id": "video12096", "sen_id": 257907}, {"caption": "a black dress wearing lady giving speech mic in her hand standing displaying on screen", "video_id": "video12096", "sen_id": 257908}, {"caption": "a women in black dress holding the mike and giving speech", "video_id": "video12096", "sen_id": 257909}, {"caption": "there is a women talking in a stage", "video_id": "video12096", "sen_id": 257910}, {"caption": "a lady in a gray dress talking to a group of people", "video_id": "video12096", "sen_id": 257911}, {"caption": "a reality show anchor is giving her speech with her mike", "video_id": "video12096", "sen_id": 257912}, {"caption": "the beautiful girl in black design dress is speaking to someone in the talk show", "video_id": "video12096", "sen_id": 257913}, {"caption": "a woman in a black dress is talking up on a stage", "video_id": "video12096", "sen_id": 257914}, {"caption": "a women in black dress and she is giving a speech", "video_id": "video12096", "sen_id": 257915}, {"caption": "ted one women talks in stage and its on big screen", "video_id": "video12096", "sen_id": 257916}, {"caption": "a woman wearing a black shirt stands on stage talking to an audience", "video_id": "video12096", "sen_id": 257917}, {"caption": "a women in black suit is describing about the success and the name ted in red color is displayed on background", "video_id": "video12096", "sen_id": 257918}, {"caption": "a woman with a mic is talking to an audience", "video_id": "video12096", "sen_id": 257919}, {"caption": "an image of a laser being used to stop bleeding of a vein", "video_id": "video12278", "sen_id": 257920}, {"caption": "some laser technology is made in the animated picture", "video_id": "video12278", "sen_id": 257921}, {"caption": "doctor explaining an operation method using animation", "video_id": "video12278", "sen_id": 257922}, {"caption": "a cartoon image shows laser being applied in between organs with red tissue in between", "video_id": "video12278", "sen_id": 257923}, {"caption": "a description of laser clot removal and an animation to help explain it", "video_id": "video12278", "sen_id": 257924}, {"caption": "there is a man explains about a system inside", "video_id": "video12278", "sen_id": 257925}, {"caption": "a bright light is used to examine the ear canal", "video_id": "video12278", "sen_id": 257926}, {"caption": "a surgeon is working on a clot with a laser and the clot is bright red", "video_id": "video12278", "sen_id": 257927}, {"caption": "a person is drooping a rod in a deep hot area and showing some spark", "video_id": "video12278", "sen_id": 257928}, {"caption": "laser energy is used to begin to get the blood to darken and eventually to clot", "video_id": "video12278", "sen_id": 257929}, {"caption": "there is a man explains about human body system", "video_id": "video12278", "sen_id": 257930}, {"caption": "a surgical procedure using a laser is performed on a tooth", "video_id": "video12278", "sen_id": 257931}, {"caption": "the person is explaining about the laser which is inserted on the human blood and the blood becomes darker", "video_id": "video12278", "sen_id": 257932}, {"caption": "a laser beam is projected to a cavity containing a red colored substance", "video_id": "video12278", "sen_id": 257933}, {"caption": "it is animated and teaches some laser surgical operation", "video_id": "video12278", "sen_id": 257934}, {"caption": "pa stick is taking a red color thing", "video_id": "video12278", "sen_id": 257935}, {"caption": "a man is explain some thing with a animation diagram", "video_id": "video12278", "sen_id": 257936}, {"caption": "computerized illustration of a medical procedure involving a laser in the formation of a blood clot", "video_id": "video12278", "sen_id": 257937}, {"caption": "an animation of a medical procedure with a man narrating the procedure", "video_id": "video12278", "sen_id": 257938}, {"caption": "a demonstration of something is being shown", "video_id": "video12278", "sen_id": 257939}, {"caption": "the man getting the interview from the blue colour dress wearing woman", "video_id": "video12492", "sen_id": 257940}, {"caption": "a dark haired man in a suit talks with a women in a torquoise dress they are discussing european policy", "video_id": "video12492", "sen_id": 257941}, {"caption": "man in black suit is talking with blonde woman", "video_id": "video12492", "sen_id": 257942}, {"caption": "brussells correspondent sergio cantone is undergoing an interview", "video_id": "video12492", "sen_id": 257943}, {"caption": "the euro news a lady interview the sergio cantone brussels correspondent he discuss about the concern answering her question efficiently", "video_id": "video12492", "sen_id": 257944}, {"caption": "a man in black suit is saying something here", "video_id": "video12492", "sen_id": 257945}, {"caption": "a man is talking in the euro news channel", "video_id": "video12492", "sen_id": 257946}, {"caption": "a brussels correspondent talks about economic issues in the eastern part of europe that used to be under russian influence", "video_id": "video12492", "sen_id": 257947}, {"caption": "european correspondents are disccusing policy on a talk show", "video_id": "video12492", "sen_id": 257948}, {"caption": "a man and a woman are talking on tv", "video_id": "video12492", "sen_id": 257949}, {"caption": "a man with a heavy french accent is being interviewed on television by a woman about something political", "video_id": "video12492", "sen_id": 257950}, {"caption": "a man and woman conducting an interview about european policy", "video_id": "video12492", "sen_id": 257951}, {"caption": "a person black color dress wearing cloth sitting with lady in blue color dress speaking displaying on screen", "video_id": "video12492", "sen_id": 257952}, {"caption": "there is an interview between a man and woman who are dressed professionally in a government office type setting", "video_id": "video12492", "sen_id": 257953}, {"caption": "a man in a tie is sitting down and listening", "video_id": "video12492", "sen_id": 257954}, {"caption": "a man with disheveled hair is talking in an interview by a woman", "video_id": "video12492", "sen_id": 257955}, {"caption": "a man in a suit sits and talks in a room with a woman in teal dress", "video_id": "video12492", "sen_id": 257956}, {"caption": "the tv journalist interviewing the expert on the economic policies", "video_id": "video12492", "sen_id": 257957}, {"caption": "a white male is being interviewed by a white female about european policy", "video_id": "video12492", "sen_id": 257958}, {"caption": "a man with curly hair is sitting in a chair", "video_id": "video12492", "sen_id": 257959}, {"caption": "a man wering suit is making his own magnetic field", "video_id": "video11464", "sen_id": 257960}, {"caption": "the man with a suit uses liquid nitrogen to cold down the permanent magnet as a super conductor", "video_id": "video11464", "sen_id": 257961}, {"caption": "liquid nitrogen is poured on a disk and it floats back and forth", "video_id": "video11464", "sen_id": 257962}, {"caption": "an industrial worker add water to a hot piece of formed metal", "video_id": "video11464", "sen_id": 257963}, {"caption": "a person with blue shirt and coat working on the metal which makes the smoke", "video_id": "video11464", "sen_id": 257964}, {"caption": "a middle aged man in black over coat is doing some experiment in laboratory", "video_id": "video11464", "sen_id": 257965}, {"caption": "a man with a slight accent is speaking about making an object float with magnets", "video_id": "video11464", "sen_id": 257966}, {"caption": "a man is doing some thing in the chemical lab", "video_id": "video11464", "sen_id": 257967}, {"caption": "a ladle contiaaning an extremely cold liquid is poured on a superconductor in a magnetic field allowing it to hover along a rail", "video_id": "video11464", "sen_id": 257968}, {"caption": "a person is showing experiment in front of camera", "video_id": "video11464", "sen_id": 257969}, {"caption": "there is a man doing some experiments in his lab", "video_id": "video11464", "sen_id": 257970}, {"caption": "a man is explaining how to create metal items with magnetics and different tempers", "video_id": "video11464", "sen_id": 257971}, {"caption": "some computer parts are manufactured in a factory", "video_id": "video11464", "sen_id": 257972}, {"caption": "a old man in blue dress color cloth standing speaking inside laboratory boiling hot and puring in hole displaying on screen", "video_id": "video11464", "sen_id": 257973}, {"caption": "the man cools down the very hot metal to use it in a super conductor", "video_id": "video11464", "sen_id": 257974}, {"caption": "a man uses liquid nitrogen to cool down a silver substance", "video_id": "video11464", "sen_id": 257975}, {"caption": "a man in a dark jacket and a blue shirt pouring liquid nitrogen over a magnet", "video_id": "video11464", "sen_id": 257976}, {"caption": "demonstration of how cooling a superconducting magnet with liquid nitrogen causes it to levitate", "video_id": "video11464", "sen_id": 257977}, {"caption": "a person stands by a mechanism that uses super cold magnets", "video_id": "video11464", "sen_id": 257978}, {"caption": "some people in a building are making a thing", "video_id": "video11464", "sen_id": 257979}, {"caption": "a young mother feeding her small baby on the bed", "video_id": "video10735", "sen_id": 257980}, {"caption": "the girl holds the baby in her lap as it cries near the wall", "video_id": "video10735", "sen_id": 257981}, {"caption": "a woman is having difficulty trying to breasfeed her baby", "video_id": "video10735", "sen_id": 257982}, {"caption": "a woman sits on the bed with a crying baby in her hands", "video_id": "video10735", "sen_id": 257983}, {"caption": "a poor child is crying in the laps of poverty stricken mother - who helplessly look the child", "video_id": "video10735", "sen_id": 257984}, {"caption": "a woman in a room with cinder block walls tries to breast feed a crying infant", "video_id": "video10735", "sen_id": 257985}, {"caption": "a woman is trying to nurse a crying baby in bed", "video_id": "video10735", "sen_id": 257986}, {"caption": "a tired woman attempting to breast feed a crying baby", "video_id": "video10735", "sen_id": 257987}, {"caption": "a woman who seems very stressed attempts to breastfeed a baby", "video_id": "video10735", "sen_id": 257988}, {"caption": "a woman holding a baby as it is crying", "video_id": "video10735", "sen_id": 257989}, {"caption": "a woman is attempting to breastfeed a crying baby while sitting on a bed", "video_id": "video10735", "sen_id": 257990}, {"caption": "distressed looking female sits on a bed with a crying baby in her lap", "video_id": "video10735", "sen_id": 257991}, {"caption": "a woman is born child on her hand and she is making her baby not to cry", "video_id": "video10735", "sen_id": 257992}, {"caption": "a mother tries to calm her crying child in a poor cinder block house", "video_id": "video10735", "sen_id": 257993}, {"caption": "a woman in a cell is holding a small baby", "video_id": "video10735", "sen_id": 257994}, {"caption": "a woman is sitting on a bed breastfeeding her child and she looks frustrated", "video_id": "video10735", "sen_id": 257995}, {"caption": "a woman in a poorly lit room is trying and failing to breastfeed a crying baby", "video_id": "video10735", "sen_id": 257996}, {"caption": "a woman sits in concrete room on bed holding her son who is crying", "video_id": "video10735", "sen_id": 257997}, {"caption": "a girl feeding milk to baby sitting in blue dress color cloth displaying on screen", "video_id": "video10735", "sen_id": 257998}, {"caption": "a woman with a baby is standing in a place", "video_id": "video10735", "sen_id": 257999}, {"caption": "a women looks to be very happy here singing and dancing in water", "video_id": "video12363", "sen_id": 258000}, {"caption": "there is a girl on the beach dancing and enjoying", "video_id": "video12363", "sen_id": 258001}, {"caption": "a girl dancing on the beach and miss her cap into water also taking selfie", "video_id": "video12363", "sen_id": 258002}, {"caption": "girl has star fish in hand then she jumps here and thereman face is changed", "video_id": "video12363", "sen_id": 258003}, {"caption": "a woman on a beach is holding a starfish then starts dancing and does a cartwheel", "video_id": "video12363", "sen_id": 258004}, {"caption": "there is a girl and boy is dancing in the sea waves", "video_id": "video12363", "sen_id": 258005}, {"caption": "a fun girl is playing in sea and missing her capand doing diving in land area", "video_id": "video12363", "sen_id": 258006}, {"caption": "a young woman dances on the beach and talks about her vacation", "video_id": "video12363", "sen_id": 258007}, {"caption": "a couple hang out on a boat while on vacation and take selfies", "video_id": "video12363", "sen_id": 258008}, {"caption": "a person does back flips on a beach", "video_id": "video12363", "sen_id": 258009}, {"caption": "a woman holding a starfish and then prancing around on a picturesque beach", "video_id": "video12363", "sen_id": 258010}, {"caption": "a young woman and man are dancing and playing at the beach", "video_id": "video12363", "sen_id": 258011}, {"caption": "a young woman dances and jumps along the edge of the ocean", "video_id": "video12363", "sen_id": 258012}, {"caption": "a woman is holding a starfish then later she dances on the beach", "video_id": "video12363", "sen_id": 258013}, {"caption": "a person is playing around in the ocean", "video_id": "video12363", "sen_id": 258014}, {"caption": "a beautiful lady enjoying the beach and relaxing there", "video_id": "video12363", "sen_id": 258015}, {"caption": "a woman is dancing around in the surf of the beach and then the wind blows her hat off", "video_id": "video12363", "sen_id": 258016}, {"caption": "women jumping and dancing near sea shore", "video_id": "video12363", "sen_id": 258017}, {"caption": "brunette woman is having great time on the beach near the sea", "video_id": "video12363", "sen_id": 258018}, {"caption": "a woman on the beach is doing some poses", "video_id": "video12363", "sen_id": 258019}, {"caption": "a guy sitting in his car explains on how to hold the steering of the car", "video_id": "video11131", "sen_id": 258020}, {"caption": "a person with black dressing is driving and explaining a car in racetrackwhite and red two car is standing in racetrack", "video_id": "video11131", "sen_id": 258021}, {"caption": "the man sits in the gray car and talk", "video_id": "video11131", "sen_id": 258022}, {"caption": "two race drivers express their chances of winning a race on the basis of their car performances", "video_id": "video11131", "sen_id": 258023}, {"caption": "two men are describing the cars they are sitting in", "video_id": "video11131", "sen_id": 258024}, {"caption": "a car racing track is shown then two men are seated in their car talking and ready for a race", "video_id": "video11131", "sen_id": 258025}, {"caption": "two men sit in their cars stating why they think their car is best", "video_id": "video11131", "sen_id": 258026}, {"caption": "the car engineer telling the new car in terior and their features", "video_id": "video11131", "sen_id": 258027}, {"caption": "a commercial showing different men driving in different cars", "video_id": "video11131", "sen_id": 258028}, {"caption": "man is sitting and showing his new bmw car", "video_id": "video11131", "sen_id": 258029}, {"caption": "there is a man riding the car in high speed", "video_id": "video11131", "sen_id": 258030}, {"caption": "a man is sitting and speaking about the power of a car in a race", "video_id": "video11131", "sen_id": 258031}, {"caption": "two men sitting in cars talking about how fast they are", "video_id": "video11131", "sen_id": 258032}, {"caption": "a race track is viewed before two men sit an starting line in consumer cars before race", "video_id": "video11131", "sen_id": 258033}, {"caption": "details of gaining speed by a model of benz car is being explained", "video_id": "video11131", "sen_id": 258034}, {"caption": "two actors discuss the specifics and pros and cons of owning cars that were made with aero dynamics", "video_id": "video11131", "sen_id": 258035}, {"caption": " one in a maroon car and one a silver car preparing to leave the starting line on a track and race", "video_id": "video11131", "sen_id": 258036}, {"caption": "two people talking about", "video_id": "video11131", "sen_id": 258037}, {"caption": "sitting in their cars two drivers discuss a race they are about have", "video_id": "video11131", "sen_id": 258038}, {"caption": "two persons sitting in the mercediez car and arguing about the conition of the car", "video_id": "video11131", "sen_id": 258039}, {"caption": "there is a white dressed women dancing with agroup", "video_id": "video11582", "sen_id": 258040}, {"caption": "a team of boys and girls dances on the floor", "video_id": "video11582", "sen_id": 258041}, {"caption": "sexy girl dancing and singing very very hot", "video_id": "video11582", "sen_id": 258042}, {"caption": "number of students dancing in a dancing school", "video_id": "video11582", "sen_id": 258043}, {"caption": "a girl dancing in white dresses boys dancing along with girls in white dresses singing song", "video_id": "video11582", "sen_id": 258044}, {"caption": "beyonce dances and sings during one of her music videos", "video_id": "video11582", "sen_id": 258045}, {"caption": "a group of youngsters are seen dancing and singing in the studio or some dance club like place", "video_id": "video11582", "sen_id": 258046}, {"caption": "a group of people were dancing for a song", "video_id": "video11582", "sen_id": 258047}, {"caption": "a beyonce music video in which a large group dance in unison", "video_id": "video11582", "sen_id": 258048}, {"caption": "sexy blonde singer dancing and singing in her music video", "video_id": "video11582", "sen_id": 258049}, {"caption": "a group dance a with a song in a concert", "video_id": "video11582", "sen_id": 258050}, {"caption": "a woman is dancing and singing in a large room with backup dancers", "video_id": "video11582", "sen_id": 258051}, {"caption": "a large group of young people dance and sing in an office building", "video_id": "video11582", "sen_id": 258052}, {"caption": "a group of people wearing white shirts dancing together", "video_id": "video11582", "sen_id": 258053}, {"caption": "beyonce was leading a very large dance troupe", "video_id": "video11582", "sen_id": 258054}, {"caption": "men and women dancing and singing song in a group", "video_id": "video11582", "sen_id": 258055}, {"caption": "group of peoples who are in white tops dancing together in a hall", "video_id": "video11582", "sen_id": 258056}, {"caption": "a room full of african people gyrate as a heavy set woman sings", "video_id": "video11582", "sen_id": 258057}, {"caption": "a group of man and woman is dancing for a song", "video_id": "video11582", "sen_id": 258058}, {"caption": "a bunch of people are dancing around a room", "video_id": "video11582", "sen_id": 258059}, {"caption": "a woman in a dark blue top is showing how to cook rice noodles", "video_id": "video10620", "sen_id": 258060}, {"caption": "a lady in a blue shirt explaining how to cook using asian medium noodles", "video_id": "video10620", "sen_id": 258061}, {"caption": "a woman is wearing a blue shirt and cooking in a kitchen", "video_id": "video10620", "sen_id": 258062}, {"caption": "an inhome asian chef discusses and demonstrates a recipe she is preparing in her home", "video_id": "video10620", "sen_id": 258063}, {"caption": "asian woman showing the ingredients for making the lunch", "video_id": "video10620", "sen_id": 258064}, {"caption": "a woman wearing blue top preparing food with rice", "video_id": "video10620", "sen_id": 258065}, {"caption": "a lady cooks with yellow cooker and shows the packet of sticks and the brand of it", "video_id": "video10620", "sen_id": 258066}, {"caption": "a woman with a blue shirt demonstrates how to properly cook what she is making", "video_id": "video10620", "sen_id": 258067}, {"caption": "an instructional clip of a woman making soup", "video_id": "video10620", "sen_id": 258068}, {"caption": "brunette woman preparing the meal and presenting the necessery ingredients", "video_id": "video10620", "sen_id": 258069}, {"caption": "a lady keeping a packet and showed front of caera", "video_id": "video10620", "sen_id": 258070}, {"caption": "a talking woman wearing a scoop-necked blue blouse is behind a yellow soup pot with boiling broth when she lifts packaged dried noodles in a cellophane bag", "video_id": "video10620", "sen_id": 258071}, {"caption": "one beautiful and lovely women makes recipe with noodles", "video_id": "video10620", "sen_id": 258072}, {"caption": "a cook prepares food inside a yellow pot and adds noodles", "video_id": "video10620", "sen_id": 258073}, {"caption": "a woman in a kitchen is making some food", "video_id": "video10620", "sen_id": 258074}, {"caption": "a woman is cooking food in a pot and showing other ingredients of a recipe", "video_id": "video10620", "sen_id": 258075}, {"caption": "an asian woman is showing the audience how to cook in a kitchen", "video_id": "video10620", "sen_id": 258076}, {"caption": "lady in blue color dress cooking noodles in yellow color vesselcooking is in process", "video_id": "video10620", "sen_id": 258077}, {"caption": "a woman is cooking and is showing a package of food", "video_id": "video10620", "sen_id": 258078}, {"caption": "a woman in a purple shirt is doing stuff", "video_id": "video10620", "sen_id": 258079}, {"caption": "a man is cooking a scallop meal with soy sauce lemon juice peas and carrots", "video_id": "video12579", "sen_id": 258080}, {"caption": "a man adding vegetables and different ingredients to a meal that is being fried in a pan", "video_id": "video12579", "sen_id": 258081}, {"caption": "the sizzle of food that is frying in a pan the pan is steaming as the food is cooking", "video_id": "video12579", "sen_id": 258082}, {"caption": "lady cooking shrimp in a white pan adding peas and carrots", "video_id": "video12579", "sen_id": 258083}, {"caption": "someone cooking shrimp in a pan", "video_id": "video12579", "sen_id": 258084}, {"caption": "someone making a variety dish in the kitchen", "video_id": "video12579", "sen_id": 258085}, {"caption": "in a tawa meals are fried", "video_id": "video12579", "sen_id": 258086}, {"caption": "someone is mixing hot food on a plate with a wooden spoon", "video_id": "video12579", "sen_id": 258087}, {"caption": "shrimp are cooked in a pan while lemon soy sauce and vegetables are added", "video_id": "video12579", "sen_id": 258088}, {"caption": "a man shows how to cook shrimp in a pan", "video_id": "video12579", "sen_id": 258089}, {"caption": "there is someone making a verity food in the kitchen", "video_id": "video12579", "sen_id": 258090}, {"caption": "a man cooking shrimp in a skillet with a wooden spoon and adding sauce", "video_id": "video12579", "sen_id": 258091}, {"caption": "a man doing some dish and explaining about it", "video_id": "video12579", "sen_id": 258092}, {"caption": "a cook prepares seafood in a skillet then adds lemon juice and vegetables", "video_id": "video12579", "sen_id": 258093}, {"caption": "man cooking small plantains on a white skillet in a kitchen", "video_id": "video12579", "sen_id": 258094}, {"caption": "sauce and vegetables are added to meat cooking in a frying pan", "video_id": "video12579", "sen_id": 258095}, {"caption": "a person showing how to cook shrimp properly for the best taste", "video_id": "video12579", "sen_id": 258096}, {"caption": "a man is showing how to saute shrimps and potatoes he then adds vegetables describing a recipe using shrimps", "video_id": "video12579", "sen_id": 258097}, {"caption": "cook works soy sauce into stovetop creation", "video_id": "video12579", "sen_id": 258098}, {"caption": "someone stir fries shrimp in a pan and adds seasonings", "video_id": "video12579", "sen_id": 258099}, {"caption": "a woman in a light green top is cooking with a man in a grey shirt", "video_id": "video10966", "sen_id": 258100}, {"caption": "in the kitchen a green dressing woman making a dish", "video_id": "video10966", "sen_id": 258101}, {"caption": "thus couple is making a dish using uncooked prawns and garlic", "video_id": "video10966", "sen_id": 258102}, {"caption": "a woman and man prepare a high end seafood meal in a nice kitchen", "video_id": "video10966", "sen_id": 258103}, {"caption": "a woman in green top is explaining prawns dish to a man in grey dress", "video_id": "video10966", "sen_id": 258104}, {"caption": "a woman adds shrimp anchovies and garlic from individual white bowls into a food processor", "video_id": "video10966", "sen_id": 258105}, {"caption": "a man is cooking a recipe and is being shown on", "video_id": "video10966", "sen_id": 258106}, {"caption": "a female chef puts prawns anchovy and garlic into a food processor to mix", "video_id": "video10966", "sen_id": 258107}, {"caption": "a woman is putting raw shrimp in a blender in a kitchen", "video_id": "video10966", "sen_id": 258108}, {"caption": "someone is prepared a delicious dish with prawns and butter in a porcelain dish", "video_id": "video10966", "sen_id": 258109}, {"caption": "all persons are preparing a tasty food in a room", "video_id": "video10966", "sen_id": 258110}, {"caption": "a man and a woman are in the kitchen preparing food together", "video_id": "video10966", "sen_id": 258111}, {"caption": "a women in green dress and a guy cooking some sea food in tv show", "video_id": "video10966", "sen_id": 258112}, {"caption": "a person places shrimp and other ingredients in a blender", "video_id": "video10966", "sen_id": 258113}, {"caption": "a woman preparing seafood while giving instructions on a cooking show", "video_id": "video10966", "sen_id": 258114}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video10966", "sen_id": 258115}, {"caption": "a lady putting fish on the bowl", "video_id": "video10966", "sen_id": 258116}, {"caption": "prawns are picked and put into a bowl after pealing the skin", "video_id": "video10966", "sen_id": 258117}, {"caption": "a lady puts some bone pieces to mixer and adds some chillies", "video_id": "video10966", "sen_id": 258118}, {"caption": "a lady is putting the bone pieces to mixture and adds chillys", "video_id": "video10966", "sen_id": 258119}, {"caption": "there is a woman with cooling glass smiling on the floor", "video_id": "video11496", "sen_id": 258120}, {"caption": "a woman is singing while a fashion show is taking place", "video_id": "video11496", "sen_id": 258121}, {"caption": "one model walks a runway while another poses for pictures", "video_id": "video11496", "sen_id": 258122}, {"caption": "a model saunters down a runway and another woman just smiles and poses as a song about fashion plays", "video_id": "video11496", "sen_id": 258123}, {"caption": "a runway model shows off some fashion in black-and-white footage while some music plays", "video_id": "video11496", "sen_id": 258124}, {"caption": "fashion show in which girls are appearing with spectacular trends", "video_id": "video11496", "sen_id": 258125}, {"caption": "a woman is walking down a path between a large group of people then some people are taking pictures of her", "video_id": "video11496", "sen_id": 258126}, {"caption": "a woman walks down a run way in a black and white montage", "video_id": "video11496", "sen_id": 258127}, {"caption": "a woman model is walking down a runway in a fashion show and many people are watching", "video_id": "video11496", "sen_id": 258128}, {"caption": "many people are shown taking part in a fashion show", "video_id": "video11496", "sen_id": 258129}, {"caption": "the woman is a fashion modeler from a inresting company", "video_id": "video11496", "sen_id": 258130}, {"caption": "a model is walking down an isle wearing sunglasses in what seems to be a fashion show", "video_id": "video11496", "sen_id": 258131}, {"caption": "a group of young women dressed in high fashion participate in a fashion show", "video_id": "video11496", "sen_id": 258132}, {"caption": "group of people are watching the beautifully dressed women", "video_id": "video11496", "sen_id": 258133}, {"caption": "a woman is walking around in a place", "video_id": "video11496", "sen_id": 258134}, {"caption": "a lady walking on the stage where more peoples are there", "video_id": "video11496", "sen_id": 258135}, {"caption": "a lady is walking down a runway and posing for the camera during a fashion show", "video_id": "video11496", "sen_id": 258136}, {"caption": "a song about fashion features a model walking the runway", "video_id": "video11496", "sen_id": 258137}, {"caption": "a runway model is walking down the catwalk while many people look on", "video_id": "video11496", "sen_id": 258138}, {"caption": "some people in black and whtie are standing", "video_id": "video11496", "sen_id": 258139}, {"caption": "various food items needed for a recipe are being shown in clear glass bowls", "video_id": "video12233", "sen_id": 258140}, {"caption": "a narrating cook explains the ingredients needed to preparea dish", "video_id": "video12233", "sen_id": 258141}, {"caption": "the different ingredients are placed in the small glass pots on the table", "video_id": "video12233", "sen_id": 258142}, {"caption": "woman lists ingredients for cooking which are demonstrated one by one", "video_id": "video12233", "sen_id": 258143}, {"caption": "a bowl with olive oil a bowl with nuts a bowl with milk a bowl with white powder", "video_id": "video12233", "sen_id": 258144}, {"caption": "there is a woman making a dish in a kitchen", "video_id": "video12233", "sen_id": 258145}, {"caption": "a woman is showing a variety of food ingredients in separate little dishes", "video_id": "video12233", "sen_id": 258146}, {"caption": "a series of ingredients are displayed on top of a wooden surface", "video_id": "video12233", "sen_id": 258147}, {"caption": "a woman is talking while glass bowls filled with different ingredients are shown on screen", "video_id": "video12233", "sen_id": 258148}, {"caption": "an italian chef demonstrates the proper proportions of ingredients in a series of glass bowl on a hardwood table", "video_id": "video12233", "sen_id": 258149}, {"caption": "there is a woman preparing for a dish", "video_id": "video12233", "sen_id": 258150}, {"caption": "there are ingredients mentioned by a woman in foreign language", "video_id": "video12233", "sen_id": 258151}, {"caption": "a lady reads out and shows various ingredients required for her recipe", "video_id": "video12233", "sen_id": 258152}, {"caption": "a woman is describing the ingredients in a recipe as those ingredients flash on the screen", "video_id": "video12233", "sen_id": 258153}, {"caption": "different ingredients for a recipe is shown", "video_id": "video12233", "sen_id": 258154}, {"caption": "a close-up view of ingredients", "video_id": "video12233", "sen_id": 258155}, {"caption": "in the chef is telling the making the best vegetable item in simply method", "video_id": "video12233", "sen_id": 258156}, {"caption": "wide ball in which walnut is added then many ingredients are added", "video_id": "video12233", "sen_id": 258157}, {"caption": "a lady is describing the ingredients she will use to cook", "video_id": "video12233", "sen_id": 258158}, {"caption": "some powder is resting in a glass jaer", "video_id": "video12233", "sen_id": 258159}, {"caption": "a man is laughing as he videos a man been followed by an animal", "video_id": "video10351", "sen_id": 258160}, {"caption": "two mens are discussing with each other by actions", "video_id": "video10351", "sen_id": 258161}, {"caption": "one of the animal is follow the man who is running", "video_id": "video10351", "sen_id": 258162}, {"caption": "a llama is chasing and attacking a man in a long-sleeved white shirt", "video_id": "video10351", "sen_id": 258163}, {"caption": "a family members in the forest area playing with the lama and lama is chasing one of the member in the family", "video_id": "video10351", "sen_id": 258164}, {"caption": "a animal running behind a man in white shirt", "video_id": "video10351", "sen_id": 258165}, {"caption": "a white and brown animakl is runnimg after a man wearing a white shirt", "video_id": "video10351", "sen_id": 258166}, {"caption": "a large lama chases a man through a group of standing people", "video_id": "video10351", "sen_id": 258167}, {"caption": "a animal was chasing the man and fighting with that in the forest", "video_id": "video10351", "sen_id": 258168}, {"caption": "a brown colour animal is catching a human in a garden", "video_id": "video10351", "sen_id": 258169}, {"caption": "a man is running away from a llama as it attacks him", "video_id": "video10351", "sen_id": 258170}, {"caption": "one sheep is follows one man in forest", "video_id": "video10351", "sen_id": 258171}, {"caption": "a man in an open field is being chased by a lama", "video_id": "video10351", "sen_id": 258172}, {"caption": "a llama is chasing a man around a grassy field", "video_id": "video10351", "sen_id": 258173}, {"caption": "lama chasing the guy in white shirt into the woods", "video_id": "video10351", "sen_id": 258174}, {"caption": "there is a animal following a man on the grass", "video_id": "video10351", "sen_id": 258175}, {"caption": "a man with a white shirt is kicked and chased by a tall black goat which is seen by a lady and kid", "video_id": "video10351", "sen_id": 258176}, {"caption": "a llama is chasing and trying to attack a man while he runs into the woods and crowd is laughing", "video_id": "video10351", "sen_id": 258177}, {"caption": "man in white shirt having fun with animal on green grass outside", "video_id": "video10351", "sen_id": 258178}, {"caption": "an animal is chasing a man around the grass", "video_id": "video10351", "sen_id": 258179}, {"caption": "a man with white hat and blue shirt is saying soemthing", "video_id": "video10947", "sen_id": 258180}, {"caption": "a man in blue t shirt is telling something about car races", "video_id": "video10947", "sen_id": 258181}, {"caption": "an older gentleman in a jim bean racing cap talking about the past", "video_id": "video10947", "sen_id": 258182}, {"caption": "an older man is interviewed about a disappointment in his life", "video_id": "video10947", "sen_id": 258183}, {"caption": "an old man wearing hat and in blue dress red and white cars moving fast", "video_id": "video10947", "sen_id": 258184}, {"caption": "man with blue shirt and cap is talking about racing cars", "video_id": "video10947", "sen_id": 258185}, {"caption": "a men with blue shirt is talking by doing action with his hands", "video_id": "video10947", "sen_id": 258186}, {"caption": "a man is in open space with wearing cap and talking", "video_id": "video10947", "sen_id": 258187}, {"caption": "an older man speaks to the camera for an interview", "video_id": "video10947", "sen_id": 258188}, {"caption": "a man is sharing his experience", "video_id": "video10947", "sen_id": 258189}, {"caption": "there is a blue t-shirt old man talking", "video_id": "video10947", "sen_id": 258190}, {"caption": "a old man talking about something has disapointted", "video_id": "video10947", "sen_id": 258191}, {"caption": "a man with cap is talk something in the ground", "video_id": "video10947", "sen_id": 258192}, {"caption": "a race car divers in a blue shirt talks about his experiences", "video_id": "video10947", "sen_id": 258193}, {"caption": "old guy in cap talking about his driving skills in racing track", "video_id": "video10947", "sen_id": 258194}, {"caption": "a old man expressing his experience about the car track", "video_id": "video10947", "sen_id": 258195}, {"caption": "an older man in a hat talking about being disappointed", "video_id": "video10947", "sen_id": 258196}, {"caption": "a old man discusses his past as a race car driver", "video_id": "video10947", "sen_id": 258197}, {"caption": "a man explains that you have to know when you re telling yourself the truth", "video_id": "video10947", "sen_id": 258198}, {"caption": "an old man in a hat is talking outside", "video_id": "video10947", "sen_id": 258199}, {"caption": "two men competing in a ping pong match", "video_id": "video12518", "sen_id": 258200}, {"caption": "the table tennis player with the black jersey plays an excellent game of table tennis", "video_id": "video12518", "sen_id": 258201}, {"caption": "an intense match of two players participating in a ping pong match", "video_id": "video12518", "sen_id": 258202}, {"caption": "its tennis game sorry table tennis where player is trying to hit the ball", "video_id": "video12518", "sen_id": 258203}, {"caption": "in a indoor stadium two men are playing table tennis for different countries", "video_id": "video12518", "sen_id": 258204}, {"caption": "in a table tennis court two people are playing", "video_id": "video12518", "sen_id": 258205}, {"caption": "table tennise player with blue and red shirt are playing", "video_id": "video12518", "sen_id": 258206}, {"caption": "two young players playing the table tennis both of them in high energy level", "video_id": "video12518", "sen_id": 258207}, {"caption": "a game of table tennis is being played between two men", "video_id": "video12518", "sen_id": 258208}, {"caption": "two men are competing in a game of table tennis", "video_id": "video12518", "sen_id": 258209}, {"caption": "there is a red tshirt man playing with a man", "video_id": "video12518", "sen_id": 258210}, {"caption": "two men are playing a fast paced game of table tennis and volleying the ball", "video_id": "video12518", "sen_id": 258211}, {"caption": "two athletes are competing in a game of ping-pong", "video_id": "video12518", "sen_id": 258212}, {"caption": "two men competing in a professions ping pong match with the score being displayed in the bottom corner", "video_id": "video12518", "sen_id": 258213}, {"caption": "players playing in a table tennis match to reach the points with full effort", "video_id": "video12518", "sen_id": 258214}, {"caption": "two men are playiing a game of ping pong on a purple table", "video_id": "video12518", "sen_id": 258215}, {"caption": "ping pong tournament between two men with heavy spectating crowd", "video_id": "video12518", "sen_id": 258216}, {"caption": "two men play ping pong in a stadium in front of a large crowd", "video_id": "video12518", "sen_id": 258217}, {"caption": "a table tennis contest that displays a great exhibition of shot making", "video_id": "video12518", "sen_id": 258218}, {"caption": "some people are playing ping pong on a court", "video_id": "video12518", "sen_id": 258219}, {"caption": "a women is wearing a indian outfit and showing to the other women who is wearing short dress", "video_id": "video10697", "sen_id": 258220}, {"caption": "a woman is showing off her earrings and shirt", "video_id": "video10697", "sen_id": 258221}, {"caption": "a young indian woman gets ready for a night out by putting on her jewelry", "video_id": "video10697", "sen_id": 258222}, {"caption": "a karate girl makes action to her mother who is more bothered about her ornaments", "video_id": "video10697", "sen_id": 258223}, {"caption": "the woman was wearing some very fashionable jewelry", "video_id": "video10697", "sen_id": 258224}, {"caption": "a lady in white and yellow with magnificent ornaments enjoying her beauty herself", "video_id": "video10697", "sen_id": 258225}, {"caption": "one beautiful and lovely women makeup and shows dress", "video_id": "video10697", "sen_id": 258226}, {"caption": "a lady looking into the mirror adjusting her ornaments and making her hair", "video_id": "video10697", "sen_id": 258227}, {"caption": "a woman who is getting ready to go out checks herself in the mirror", "video_id": "video10697", "sen_id": 258228}, {"caption": "a girl is filming herself showing her clothes", "video_id": "video10697", "sen_id": 258229}, {"caption": "a lady is showing his earrings necklace and top", "video_id": "video10697", "sen_id": 258230}, {"caption": "a indian woman is dressing nice and showing her ear ring", "video_id": "video10697", "sen_id": 258231}, {"caption": "a girl is looking herself on a mirror and showing her dress and ornaments which she has worn", "video_id": "video10697", "sen_id": 258232}, {"caption": "a pretty woman had done her make-up very beautifully", "video_id": "video10697", "sen_id": 258233}, {"caption": "a kid and a woman are showing off on camera", "video_id": "video10697", "sen_id": 258234}, {"caption": "a child gesturing funnily and a woman is showing her ear rings her necklace and the dress she is wearing", "video_id": "video10697", "sen_id": 258235}, {"caption": "a young indian woman gets ready for a night on the town", "video_id": "video10697", "sen_id": 258236}, {"caption": "a little girl and a woman in white dress seeing ear ring dress in mirror", "video_id": "video10697", "sen_id": 258237}, {"caption": "an indian women is getting ready and checking herself out in mirror", "video_id": "video10697", "sen_id": 258238}, {"caption": "a woman with brown hair is showing her jewelry", "video_id": "video10697", "sen_id": 258239}, {"caption": "a man in the blue shirt talking seriously about one topic", "video_id": "video10132", "sen_id": 258240}, {"caption": "a man with cute beard and wearing blue shirt is sitting in the chair and talking to someone", "video_id": "video10132", "sen_id": 258241}, {"caption": "a man describes a figure in roman history", "video_id": "video10132", "sen_id": 258242}, {"caption": "a man in a blue shirt is talking to an interviewer", "video_id": "video10132", "sen_id": 258243}, {"caption": "a man is sitting in a chair talking to the camera", "video_id": "video10132", "sen_id": 258244}, {"caption": "a man in a blue shirt sits in a red floral couch in front of a bookshelf", "video_id": "video10132", "sen_id": 258245}, {"caption": "a man wearing blue color dress talking", "video_id": "video10132", "sen_id": 258246}, {"caption": "a bearded man wearing a blue collared shirt positively describes another man s career", "video_id": "video10132", "sen_id": 258247}, {"caption": "a man with a beard talks about someone while sitting in a chair with flowers on it", "video_id": "video10132", "sen_id": 258248}, {"caption": "a man wearing a blue shirt sits in a chair and describes another man who had grown into himself", "video_id": "video10132", "sen_id": 258249}, {"caption": "a man with facial hair and a blue buttoned down shirt is in a chair with a bookcase behind him", "video_id": "video10132", "sen_id": 258250}, {"caption": "a man is sitting and speaking about a figure and it knowledge", "video_id": "video10132", "sen_id": 258251}, {"caption": "a man in blue speaking about someone who had a good depth of knowledge", "video_id": "video10132", "sen_id": 258252}, {"caption": "a man in an armchair in front of a bookshelf is explaining the history of a man in discussion with an interviewer", "video_id": "video10132", "sen_id": 258253}, {"caption": "a guy with a beard is talkign to some people", "video_id": "video10132", "sen_id": 258254}, {"caption": "a city skyline image panning to a man giving a historical account of a person s accomplishments", "video_id": "video10132", "sen_id": 258255}, {"caption": "person sitting on a sofa talking", "video_id": "video10132", "sen_id": 258256}, {"caption": "a man is talking about a man who grew into his trade", "video_id": "video10132", "sen_id": 258257}, {"caption": "a man being interviewed telling about another man who had much knowledge of the world and has the ability to explain his knowledge to others", "video_id": "video10132", "sen_id": 258258}, {"caption": "a man with a blue shirt is sitting in a room", "video_id": "video10132", "sen_id": 258259}, {"caption": "there is a suit man eating something from a restaurant", "video_id": "video12377", "sen_id": 258260}, {"caption": "a man in a grey suit is eating food off a blue plate with chopsticks at a resturant", "video_id": "video12377", "sen_id": 258261}, {"caption": "a man uses chopsticks to try a piece of food from a large colorful dish", "video_id": "video12377", "sen_id": 258262}, {"caption": "a person is picking a real flower from an empty plate where it has got designs of a flower", "video_id": "video12377", "sen_id": 258263}, {"caption": "a person is showing the ingredients for the recipe while her eats", "video_id": "video12377", "sen_id": 258264}, {"caption": "men and women cleaning meat in a shop", "video_id": "video12377", "sen_id": 258265}, {"caption": "a man explaining about something which is on the table", "video_id": "video12377", "sen_id": 258266}, {"caption": "guy picking food from sticks and eating it", "video_id": "video12377", "sen_id": 258267}, {"caption": "a man is sitting at a table and eating food from a plate", "video_id": "video12377", "sen_id": 258268}, {"caption": "a young man with blond hair and dark gree suit demomstrates different species of fish and seafood on a blue platter", "video_id": "video12377", "sen_id": 258269}, {"caption": "a man tasting a food served on a pretty blue floral plate", "video_id": "video12377", "sen_id": 258270}, {"caption": "a blonde haired man with a coat is eating something with chopsticks and there is a large blue plate before him", "video_id": "video12377", "sen_id": 258271}, {"caption": "a man sitting in front of a beautiful blue flower plate with sushi cut into flower petal shapes", "video_id": "video12377", "sen_id": 258272}, {"caption": "a man describes eating a petal from a flower dipped in soy sauce", "video_id": "video12377", "sen_id": 258273}, {"caption": "a man is sitting in front of a plate", "video_id": "video12377", "sen_id": 258274}, {"caption": "a man having a delicious meal ontop of the table", "video_id": "video12377", "sen_id": 258275}, {"caption": "a man is eating a food during cooking", "video_id": "video12377", "sen_id": 258276}, {"caption": "a man in suit is magically picking flower petals from the empty plate designed with flowers and eating them", "video_id": "video12377", "sen_id": 258277}, {"caption": "a middle aged man eats food from a blue plate that has been arranged in a flower shape he takes the petal from the flower into his chopsticks and dips it into soy sauce", "video_id": "video12377", "sen_id": 258278}, {"caption": "a man is talking and using chop sticks", "video_id": "video12377", "sen_id": 258279}, {"caption": "a plain ground with a skull and a man in black shirt", "video_id": "video10986", "sen_id": 258280}, {"caption": "a skull of human being is shown a men giving a gun to the other person", "video_id": "video10986", "sen_id": 258281}, {"caption": "a man is talking about a starwares", "video_id": "video10986", "sen_id": 258282}, {"caption": "a person is making a commentary on a movie", "video_id": "video10986", "sen_id": 258283}, {"caption": "a person is explaining about steven spielberg movie scene", "video_id": "video10986", "sen_id": 258284}, {"caption": "there is skeleton awaking from the darkness", "video_id": "video10986", "sen_id": 258285}, {"caption": "there is a men giving a bomb to the other men", "video_id": "video10986", "sen_id": 258286}, {"caption": "a man discusses a famous movie and some of the issues related to filming the movie", "video_id": "video10986", "sen_id": 258287}, {"caption": "a jedi passes a lightsaber to another jedi in the movie starwars", "video_id": "video10986", "sen_id": 258288}, {"caption": "a scalp is showing on screen and a flights are flying on near to sea", "video_id": "video10986", "sen_id": 258289}, {"caption": "a person reviewing a movie and describing it", "video_id": "video10986", "sen_id": 258290}, {"caption": "a large desert with around oil and a man takes some article with his hand and a river", "video_id": "video10986", "sen_id": 258291}, {"caption": "some one is talking serious mater with dark back ground and things are not identifiable", "video_id": "video10986", "sen_id": 258292}, {"caption": "a star wars character flys a pod through the sky", "video_id": "video10986", "sen_id": 258293}, {"caption": "some scenes from the new star wars movie", "video_id": "video10986", "sen_id": 258294}, {"caption": "a men describes about a skull and its existence", "video_id": "video10986", "sen_id": 258295}, {"caption": "a man discusses the latest star wars movie and show footage from the film", "video_id": "video10986", "sen_id": 258296}, {"caption": "a man commentates a star wars the force awakens movie trailer for starwarshq", "video_id": "video10986", "sen_id": 258297}, {"caption": "a star wars character is holding a light saber", "video_id": "video10986", "sen_id": 258298}, {"caption": "a skeleton depicted in the begining somebody then hands a light saber to someone else and ends with a scene of flying planes above a body of water", "video_id": "video10986", "sen_id": 258299}, {"caption": "hair stylist is on work with a black women", "video_id": "video10899", "sen_id": 258300}, {"caption": "a lady make up hair style to another lady", "video_id": "video10899", "sen_id": 258301}, {"caption": "a woman is dressing the hair for another woman", "video_id": "video10899", "sen_id": 258302}, {"caption": "a man is braiding a woman s hair in a salon setting", "video_id": "video10899", "sen_id": 258303}, {"caption": "someone is combing a girl s hair and making a hairdo so as to make her more beautiful", "video_id": "video10899", "sen_id": 258304}, {"caption": "a person making hair as beautiful", "video_id": "video10899", "sen_id": 258305}, {"caption": "a man styles a woman s hair and attaches more hair to her head", "video_id": "video10899", "sen_id": 258306}, {"caption": "a large african woman has her hair braided by another african", "video_id": "video10899", "sen_id": 258307}, {"caption": "one lady is making hair style of a girl", "video_id": "video10899", "sen_id": 258308}, {"caption": "a person is doing the hair style of the black girl", "video_id": "video10899", "sen_id": 258309}, {"caption": "a woman is braiding another woman s hair in a time lapse video", "video_id": "video10899", "sen_id": 258310}, {"caption": "one beautiful and lovely women makeup in her hair", "video_id": "video10899", "sen_id": 258311}, {"caption": "someone is explaining seriously about hair styling with demo of lady", "video_id": "video10899", "sen_id": 258312}, {"caption": "a girl hairs putting hairs and tying hairs tiet for hair style", "video_id": "video10899", "sen_id": 258313}, {"caption": "a person is showing how to put extension hair on a black girl", "video_id": "video10899", "sen_id": 258314}, {"caption": "a lady is making her hair style with barber at barber shop", "video_id": "video10899", "sen_id": 258315}, {"caption": "a man shows how to add a section of hair by weaving it into the hair of a young woman", "video_id": "video10899", "sen_id": 258316}, {"caption": "hair stylist makes a beautiful new style for their customer", "video_id": "video10899", "sen_id": 258317}, {"caption": "someone illustrates a method to do a hairdo by combing hair in a different manner", "video_id": "video10899", "sen_id": 258318}, {"caption": "a woman in a place is getting her hair done", "video_id": "video10899", "sen_id": 258319}, {"caption": "a black jacket man working hard in a garage", "video_id": "video12213", "sen_id": 258320}, {"caption": "the old man is cutting some metal in the workshop", "video_id": "video12213", "sen_id": 258321}, {"caption": "a man look the posters he sticked on his wall and draws the picture in paper and cuts some steel", "video_id": "video12213", "sen_id": 258322}, {"caption": "a old man doing craft work and painting and hammering cutting sheet displaying on screen", "video_id": "video12213", "sen_id": 258323}, {"caption": "a men is drawing sketches and another man is hitting metal with hammer", "video_id": "video12213", "sen_id": 258324}, {"caption": "a man stands in a doorway and then raises his arm", "video_id": "video12213", "sen_id": 258325}, {"caption": "men in black dress drawing something and keeping the paper in his hand", "video_id": "video12213", "sen_id": 258326}, {"caption": "a top gear star cuting a piece of metal with scissors", "video_id": "video12213", "sen_id": 258327}, {"caption": "a man is hammering and working on a project in a garage", "video_id": "video12213", "sen_id": 258328}, {"caption": "a guy with curly hair is bending over outside", "video_id": "video12213", "sen_id": 258329}, {"caption": "a man cutting a steel into piecesa", "video_id": "video12213", "sen_id": 258330}, {"caption": "a man is braking and cutting some material", "video_id": "video12213", "sen_id": 258331}, {"caption": "a man is drawing a picture of someone s face and a penis next to it", "video_id": "video12213", "sen_id": 258332}, {"caption": "a man in workshop is cutting and shaping metal in an attempt to build something", "video_id": "video12213", "sen_id": 258333}, {"caption": "a man with grey hair is struggling with some thing", "video_id": "video12213", "sen_id": 258334}, {"caption": "the man wearing the jacket draws a picture on the white board and then hammers on the object", "video_id": "video12213", "sen_id": 258335}, {"caption": "a man is shown drawing then working with a thin aluminum material", "video_id": "video12213", "sen_id": 258336}, {"caption": "a guy bangs out metal to help to shape it", "video_id": "video12213", "sen_id": 258337}, {"caption": "a man is drawing a photo and banging metal with a hammer", "video_id": "video12213", "sen_id": 258338}, {"caption": "some men on a tv show are drawing a picture", "video_id": "video12213", "sen_id": 258339}, {"caption": "many cars are coming in line as people are waiting there", "video_id": "video11183", "sen_id": 258340}, {"caption": "people are being checked at the entrance and then police inspector walks towards the check point", "video_id": "video11183", "sen_id": 258341}, {"caption": "a military man is walking through crowds of pedestrians on rather busy streets", "video_id": "video11183", "sen_id": 258342}, {"caption": "a man in a military uniform is walking through a city", "video_id": "video11183", "sen_id": 258343}, {"caption": "a group of men and women stand on the side of the street", "video_id": "video11183", "sen_id": 258344}, {"caption": "a police man is walking on the road near a white house", "video_id": "video11183", "sen_id": 258345}, {"caption": "a city with a peaceful military presents and many people wearing white clothing walking around", "video_id": "video11183", "sen_id": 258346}, {"caption": "ladies and other people stand in queue then a police corp enters the place", "video_id": "video11183", "sen_id": 258347}, {"caption": "a military leader is walking through the streets", "video_id": "video11183", "sen_id": 258348}, {"caption": "men and women stand on the street as the uniform man passes", "video_id": "video11183", "sen_id": 258349}, {"caption": "there is a police officer walking on the road", "video_id": "video11183", "sen_id": 258350}, {"caption": "a uniformed policeman walking past a group of people on the street white cars later drive by the policeman", "video_id": "video11183", "sen_id": 258351}, {"caption": "a powerful scene playing in what appears to be the middle east while a uniformed man marches with intent", "video_id": "video11183", "sen_id": 258352}, {"caption": "many ladies are on the street while the soliders came", "video_id": "video11183", "sen_id": 258353}, {"caption": "a group of people are standing and watching a serious man walk through a parking lot and on a road", "video_id": "video11183", "sen_id": 258354}, {"caption": "people are assembled in front of a building where police personnel are present and official vehicle are coming to the scene", "video_id": "video11183", "sen_id": 258355}, {"caption": "police officer walking along with police cars", "video_id": "video11183", "sen_id": 258356}, {"caption": "several people stand and watch a severe looking military official walk down a road", "video_id": "video11183", "sen_id": 258357}, {"caption": "a police cop from an indian walking inside the gate", "video_id": "video11183", "sen_id": 258358}, {"caption": "some cars are driving around india", "video_id": "video11183", "sen_id": 258359}, {"caption": "a man is preparing food in kitchen by cleaning the ingredients", "video_id": "video10382", "sen_id": 258360}, {"caption": "a woman is giving a tutorial on how to make pho soup", "video_id": "video10382", "sen_id": 258361}, {"caption": "someone is making chinese noodle soup and using chop-sticks", "video_id": "video10382", "sen_id": 258362}, {"caption": "a corning ware casserrole dish holds the ingredients of a chicken foh soup while a woman named tess promises to tell us how to make it", "video_id": "video10382", "sen_id": 258363}, {"caption": "lady explaining about how to make chicken pho soup", "video_id": "video10382", "sen_id": 258364}, {"caption": "there is a woman eating a plate of noodles", "video_id": "video10382", "sen_id": 258365}, {"caption": "a lady with a southern american accent is introducing the vietnamese dish pho to her audience on a cooking show", "video_id": "video10382", "sen_id": 258366}, {"caption": "food is being taken from a bowl with chocksticks and dipped into sauce", "video_id": "video10382", "sen_id": 258367}, {"caption": "a woman chef named tess is instructing how to make a chicken soup", "video_id": "video10382", "sen_id": 258368}, {"caption": "a woman in a kitchen making pho soup", "video_id": "video10382", "sen_id": 258369}, {"caption": "there is someone serving some noodles in to the plate", "video_id": "video10382", "sen_id": 258370}, {"caption": "a person is prepared to teach viewers how to create a ramen dish", "video_id": "video10382", "sen_id": 258371}, {"caption": "women making her all time favorite chicken soup", "video_id": "video10382", "sen_id": 258372}, {"caption": "a woman is making a chicken soup she is about to chop carrots", "video_id": "video10382", "sen_id": 258373}, {"caption": "a person doing a cooking show and showing the ingredients for the recipe", "video_id": "video10382", "sen_id": 258374}, {"caption": "a woman takes out a piece of meat and dips it into a sauce next to her bowl", "video_id": "video10382", "sen_id": 258375}, {"caption": "a lady is stirring a chicken soup and is telling you that she is going to teach you how to make it", "video_id": "video10382", "sen_id": 258376}, {"caption": "a woman is making the food and slicing the carrots", "video_id": "video10382", "sen_id": 258377}, {"caption": "in a kitchen man is putting the meat into sauce and mixing it", "video_id": "video10382", "sen_id": 258378}, {"caption": "some text is being shown for a tv show", "video_id": "video10382", "sen_id": 258379}, {"caption": "a person is driving car and also talking on his mobile phone", "video_id": "video12655", "sen_id": 258380}, {"caption": "a man with dark hair in a buzz cut and dark stubble is talking on his cell phone while sitting the driver s seat of a car", "video_id": "video12655", "sen_id": 258381}, {"caption": "a young man with dark hair and a light beard is sitting in a car talking on a cell phone", "video_id": "video12655", "sen_id": 258382}, {"caption": "there is a man talking on the phone in his car", "video_id": "video12655", "sen_id": 258383}, {"caption": "guy talking on phone in a car with seat belt on", "video_id": "video12655", "sen_id": 258384}, {"caption": "a man is looking in a mirror and talkind on phone", "video_id": "video12655", "sen_id": 258385}, {"caption": "a person is talking on his cell phone as he slowly drives in his car", "video_id": "video12655", "sen_id": 258386}, {"caption": "a muslim man sets in his car and talks on his cell phone", "video_id": "video12655", "sen_id": 258387}, {"caption": "there is a man talking on the phone while driving in his car", "video_id": "video12655", "sen_id": 258388}, {"caption": "a man is talking on his cell phone inside of his car", "video_id": "video12655", "sen_id": 258389}, {"caption": "a men in sitting in a car and talking on phone", "video_id": "video12655", "sen_id": 258390}, {"caption": "a man speaks on a cell phone while driving a car while a narrator describes him as a muslim", "video_id": "video12655", "sen_id": 258391}, {"caption": "a young muslim man sets in his car and talks on his cell phone", "video_id": "video12655", "sen_id": 258392}, {"caption": "a man talking on a cell phone while driving in a car", "video_id": "video12655", "sen_id": 258393}, {"caption": "a man talks on his cell phone when sitting in his vehicle", "video_id": "video12655", "sen_id": 258394}, {"caption": "a man is talking on his cell phone in his hand while driving his car", "video_id": "video12655", "sen_id": 258395}, {"caption": "a man is sitting in his car and talking on his cellphone", "video_id": "video12655", "sen_id": 258396}, {"caption": "a man speaks on his cellphone while sitting in his car", "video_id": "video12655", "sen_id": 258397}, {"caption": "a gentleman is talking through his phone during his travel through car", "video_id": "video12655", "sen_id": 258398}, {"caption": "a guy on a phone is sitting in a car", "video_id": "video12655", "sen_id": 258399}, {"caption": "two guys playing hard for a point in ping pong game", "video_id": "video12034", "sen_id": 258400}, {"caption": "the two young men are playing table tenice", "video_id": "video12034", "sen_id": 258401}, {"caption": "a ping-pong player wearing yellow and black jumps and leans from side to side with legs apart while his opponent", "video_id": "video12034", "sen_id": 258402}, {"caption": "two table tennis players participated in the competition and the one in yellow dress missed the ball", "video_id": "video12034", "sen_id": 258403}, {"caption": "two players are playing table tennis match and hoping for win", "video_id": "video12034", "sen_id": 258404}, {"caption": "two men playing table tennis very aggressively and audience is clapping", "video_id": "video12034", "sen_id": 258405}, {"caption": "two players are playing table tennis", "video_id": "video12034", "sen_id": 258406}, {"caption": "two men play a very active game of table tennis", "video_id": "video12034", "sen_id": 258407}, {"caption": "two men play ping pong in a stadium in front of a large crowd", "video_id": "video12034", "sen_id": 258408}, {"caption": "the players are wearing different uniforms and playing table tennis vigorously", "video_id": "video12034", "sen_id": 258409}, {"caption": "two men playing table tennis very aggressively on the stage", "video_id": "video12034", "sen_id": 258410}, {"caption": "a man in a yellow shirt is playing a man in a blue shirt in table tennis", "video_id": "video12034", "sen_id": 258411}, {"caption": "coverage of two men competing in a ping pong tournament", "video_id": "video12034", "sen_id": 258412}, {"caption": "two people are playing table tennis in which the man in blue shirt wins the match", "video_id": "video12034", "sen_id": 258413}, {"caption": "a man with blue t-shirt and yellow t-shirt playing table tennis in an indoor stadium and the guy with blue t-shirt wins the round", "video_id": "video12034", "sen_id": 258414}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video12034", "sen_id": 258415}, {"caption": "tte two mens are playing tennis ball very interest", "video_id": "video12034", "sen_id": 258416}, {"caption": "two men are vigorously playing a professional game of table tennis", "video_id": "video12034", "sen_id": 258417}, {"caption": "a players were playing tennis on the ground", "video_id": "video12034", "sen_id": 258418}, {"caption": "some people are playing ping pong on a court", "video_id": "video12034", "sen_id": 258419}, {"caption": "a man in a blue shirt takes ping pong balls out of a box and serves them over a net", "video_id": "video11744", "sen_id": 258420}, {"caption": "a man in blue jersey is practicing table tennis alone", "video_id": "video11744", "sen_id": 258421}, {"caption": "a man wearing a blue and black colored shirt serving tennis balls", "video_id": "video11744", "sen_id": 258422}, {"caption": "a man wearing a blue and white jersey is practicing ping pong serves", "video_id": "video11744", "sen_id": 258423}, {"caption": "a man is practicing serving the ball by hitting numerous balls against the other side of the net", "video_id": "video11744", "sen_id": 258424}, {"caption": "a man in blue dress practising table tennis game", "video_id": "video11744", "sen_id": 258425}, {"caption": "a man is practicing table tennis alone in the room", "video_id": "video11744", "sen_id": 258426}, {"caption": "a man practicing his serves for ping pong", "video_id": "video11744", "sen_id": 258427}, {"caption": "a man practice serving ping pong balls on a table", "video_id": "video11744", "sen_id": 258428}, {"caption": "a man is hitting ping pong balls in a room by himself", "video_id": "video11744", "sen_id": 258429}, {"caption": "a man wearing a blue jersey is hitting ping pong balls across a ping pong table", "video_id": "video11744", "sen_id": 258430}, {"caption": "a man is practicing different table tennis techniques on a table by himself", "video_id": "video11744", "sen_id": 258431}, {"caption": "a young man in a blue shirt is hitting ping pong balls on a table", "video_id": "video11744", "sen_id": 258432}, {"caption": "showing a man playing a table tennis", "video_id": "video11744", "sen_id": 258433}, {"caption": "person in blue shirt is having a ping pong training", "video_id": "video11744", "sen_id": 258434}, {"caption": "a man dressed in blue performing trick shots with ping-pong balls in an unfinished basement", "video_id": "video11744", "sen_id": 258435}, {"caption": "the basket ball player is playing in very well in the cort", "video_id": "video11744", "sen_id": 258436}, {"caption": "ping pong player practicing serves on table by himself", "video_id": "video11744", "sen_id": 258437}, {"caption": "a woman hits ping pong balls out of a box", "video_id": "video11744", "sen_id": 258438}, {"caption": "a man in a blue shirt is practicing table tennis by himself", "video_id": "video11744", "sen_id": 258439}, {"caption": "a lot of people are in a room watching the people who are performing in a fashion show", "video_id": "video12472", "sen_id": 258440}, {"caption": "a tall model with a dated hairstyle models a long burgundy colored gown while she walks down the runway with other models", "video_id": "video12472", "sen_id": 258441}, {"caption": "models wear maroon gowns with different necklines on an oval space on top of a shiny floor of a high-ceiling building with arches", "video_id": "video12472", "sen_id": 258442}, {"caption": "women in red color dresses walking on ramp", "video_id": "video12472", "sen_id": 258443}, {"caption": "women in red clothes walk down the catwalk during a fashion show", "video_id": "video12472", "sen_id": 258444}, {"caption": "avery tall model walking the run way in a long red gown", "video_id": "video12472", "sen_id": 258445}, {"caption": "models in burgendy dresses walking down the runway to quite music", "video_id": "video12472", "sen_id": 258446}, {"caption": "people at a fashion show watching the show", "video_id": "video12472", "sen_id": 258447}, {"caption": "models walking the ramp wearing red dress and lot of audience watching them", "video_id": "video12472", "sen_id": 258448}, {"caption": "a woman is walking on a runway in a fashion show", "video_id": "video12472", "sen_id": 258449}, {"caption": "tall and beautiful female fashion models wearing mostly dark red colored dresses are walking down a runway with music playing in the background", "video_id": "video12472", "sen_id": 258450}, {"caption": "a modelling show where the models are all dressed in scarlet colored dresses", "video_id": "video12472", "sen_id": 258451}, {"caption": "there are women in maroon dresses walking down a runway in a fashion show", "video_id": "video12472", "sen_id": 258452}, {"caption": "tall models in burgundy dresses walks down a runway covered in red carpet", "video_id": "video12472", "sen_id": 258453}, {"caption": "there is a woman in a red dress walking up and down a runway in front of a crowd of people", "video_id": "video12472", "sen_id": 258454}, {"caption": "models in red formal dresses walk down and around the runway", "video_id": "video12472", "sen_id": 258455}, {"caption": "a lady is modeling down the ailse wearing a red dress", "video_id": "video12472", "sen_id": 258456}, {"caption": "women doing ramp walk in variety dresses", "video_id": "video12472", "sen_id": 258457}, {"caption": "a pretty female model walks the runway wearing a red dress", "video_id": "video12472", "sen_id": 258458}, {"caption": "some models are walking on a cat walk", "video_id": "video12472", "sen_id": 258459}, {"caption": "well cooked vegetables carefully filtered by using the strainer", "video_id": "video11887", "sen_id": 258460}, {"caption": "a chef cooks ingredients then strains them in a white strainer", "video_id": "video11887", "sen_id": 258461}, {"caption": "a man explains about a preparation of some dish in kitchen", "video_id": "video11887", "sen_id": 258462}, {"caption": "a man describes a method of straining a broth that is going to be used in a recipe", "video_id": "video11887", "sen_id": 258463}, {"caption": "a person is explaining about the soups he prepares in the kitchen show", "video_id": "video11887", "sen_id": 258464}, {"caption": "in a kitchenthere is a man preparing food", "video_id": "video11887", "sen_id": 258465}, {"caption": "a man straining a broth through a colander into a pan to seperate out the vegetables", "video_id": "video11887", "sen_id": 258466}, {"caption": "a man is straining a vegetables in the strainer", "video_id": "video11887", "sen_id": 258467}, {"caption": "something is boiled in the stove and strained using the stainer", "video_id": "video11887", "sen_id": 258468}, {"caption": "in a kitchen someone is preparing a delicious dish in a pan", "video_id": "video11887", "sen_id": 258469}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11887", "sen_id": 258470}, {"caption": "the person prepares the vegetables to be cooked in the water", "video_id": "video11887", "sen_id": 258471}, {"caption": "a man talks about straining vegetable broth with a coliander", "video_id": "video11887", "sen_id": 258472}, {"caption": "a bowl of mixing heating and mixing grinder ready to serve inside kitchen", "video_id": "video11887", "sen_id": 258473}, {"caption": "a man is showing how to use a strainer to separate broth", "video_id": "video11887", "sen_id": 258474}, {"caption": "a man is straining the hot broth along with some boiled vegetable into the sink", "video_id": "video11887", "sen_id": 258475}, {"caption": "making of a recipe one man strains some vegetables", "video_id": "video11887", "sen_id": 258476}, {"caption": "a chef describes how to make a broth to be used in another recipe", "video_id": "video11887", "sen_id": 258477}, {"caption": "in a bowl carrot and corn are boiled one person straining water from that bowl", "video_id": "video11887", "sen_id": 258478}, {"caption": "a white bowl in a sink is sitting idly", "video_id": "video11887", "sen_id": 258479}, {"caption": "a women in black dress is talking to a man in brown t-shirt", "video_id": "video10671", "sen_id": 258480}, {"caption": "a amn and a women talking back and forth into big microphones", "video_id": "video10671", "sen_id": 258481}, {"caption": "a woman and a man are sittting behind a table and talking into microphones as if on a talk show", "video_id": "video10671", "sen_id": 258482}, {"caption": "a man and woman briefly talk about longevity in the entertainment industry", "video_id": "video10671", "sen_id": 258483}, {"caption": "two people doing a talk show about movies", "video_id": "video10671", "sen_id": 258484}, {"caption": "there is a tshirt man talking with a woman in a studio", "video_id": "video10671", "sen_id": 258485}, {"caption": "a man and woman each sit at a microphone and talk", "video_id": "video10671", "sen_id": 258486}, {"caption": "a man in polo shirt is interviewed in radio room by female host", "video_id": "video10671", "sen_id": 258487}, {"caption": "a man and woman sitting in front of mike and talking about something", "video_id": "video10671", "sen_id": 258488}, {"caption": "sexy brunette talking to the guy in the radio talk show", "video_id": "video10671", "sen_id": 258489}, {"caption": "a man wearing a brown polo shirt sitting in a chair is speaking into a microphone next to a woman", "video_id": "video10671", "sen_id": 258490}, {"caption": "two people in front of microphones talk about actors", "video_id": "video10671", "sen_id": 258491}, {"caption": "a girl and a guy sit on a talk show with their apple laptops", "video_id": "video10671", "sen_id": 258492}, {"caption": "a man and woman sitting in a curtained room are having a conversation into large dj mikes", "video_id": "video10671", "sen_id": 258493}, {"caption": "a woman and a man in a brown shirt talking on a talk show on the radio about the entertainment business", "video_id": "video10671", "sen_id": 258494}, {"caption": "a woman interviews an actor on his work", "video_id": "video10671", "sen_id": 258495}, {"caption": "a man is sitting down and speaking to a woman they both have mac books", "video_id": "video10671", "sen_id": 258496}, {"caption": "a man and woman talk to each other into microphones", "video_id": "video10671", "sen_id": 258497}, {"caption": "an interview and discussion from studio where a female and a male person with microphones", "video_id": "video10671", "sen_id": 258498}, {"caption": "a man and a woman are sitting and talking", "video_id": "video10671", "sen_id": 258499}, {"caption": "a man holding some sticks in his hand in the forest", "video_id": "video12697", "sen_id": 258500}, {"caption": "a old man wearing black color dress having piece of wood on his hand", "video_id": "video12697", "sen_id": 258501}, {"caption": "a man and lady discussing about a upcoming movie", "video_id": "video12697", "sen_id": 258502}, {"caption": "leonardo plays the main character from the film the revenant as a man discusses the film", "video_id": "video12697", "sen_id": 258503}, {"caption": "a guy explaining a movie and the budget of the movie", "video_id": "video12697", "sen_id": 258504}, {"caption": "a man with long beard is holding a weapon and standing alone", "video_id": "video12697", "sen_id": 258505}, {"caption": "a man in the misty woods has his rifle and eyes aimed in the same direction while he wears a long coat with short cape and flared waist", "video_id": "video12697", "sen_id": 258506}, {"caption": "a man is holding a gun in a iceland", "video_id": "video12697", "sen_id": 258507}, {"caption": "there is a guy holding a gun in the woods", "video_id": "video12697", "sen_id": 258508}, {"caption": "leonard dicaprio was wearing a wool coat and carrying a musket", "video_id": "video12697", "sen_id": 258509}, {"caption": "a person with gun and going into a snow forest", "video_id": "video12697", "sen_id": 258510}, {"caption": "a suspicious man is alone in a snowy forest between two trees while leaning forward grasping a rifle across his body", "video_id": "video12697", "sen_id": 258511}, {"caption": "a man explain about the film and duration time of movie", "video_id": "video12697", "sen_id": 258512}, {"caption": "a screenshot from the movie the revenant with leonardo di-caprio", "video_id": "video12697", "sen_id": 258513}, {"caption": "a guy in the old west is running around a forest", "video_id": "video12697", "sen_id": 258514}, {"caption": "there is a men with a gun in his hand", "video_id": "video12697", "sen_id": 258515}, {"caption": "one man holding some thing like gun in his hand", "video_id": "video12697", "sen_id": 258516}, {"caption": "a guy talking about the budget of a movie while displaying a pic from that movie", "video_id": "video12697", "sen_id": 258517}, {"caption": "a man stands holding a weapon in the snowy wods", "video_id": "video12697", "sen_id": 258518}, {"caption": "a guy with a gun is walking around the woods", "video_id": "video12697", "sen_id": 258519}, {"caption": "a go cart themed racing video game in first person view", "video_id": "video12743", "sen_id": 258520}, {"caption": "a person completes a lap on a race track and continues to speed along in the race", "video_id": "video12743", "sen_id": 258521}, {"caption": "a car running faster on the street", "video_id": "video12743", "sen_id": 258522}, {"caption": "game play of a formula 1 racing game is shown", "video_id": "video12743", "sen_id": 258523}, {"caption": "a race car is driving on a track in a video game", "video_id": "video12743", "sen_id": 258524}, {"caption": "racing car riding fast on a track in an animated game", "video_id": "video12743", "sen_id": 258525}, {"caption": "driver races a green race car around a track", "video_id": "video12743", "sen_id": 258526}, {"caption": "cockpit view of a forma1 car as it runs a lap with a driver in it obviously enough", "video_id": "video12743", "sen_id": 258527}, {"caption": "f1 formula racer races in the track at 347 kmp speed", "video_id": "video12743", "sen_id": 258528}, {"caption": "racing driver in a car of formula 1", "video_id": "video12743", "sen_id": 258529}, {"caption": "there is a man driving a car with full control", "video_id": "video12743", "sen_id": 258530}, {"caption": "a car is going on the road", "video_id": "video12743", "sen_id": 258531}, {"caption": "a person in a video game is driving a green race car extremely fast", "video_id": "video12743", "sen_id": 258532}, {"caption": "a remote controlled green color car is running on a track", "video_id": "video12743", "sen_id": 258533}, {"caption": "a person driving the formula race car and the car is going at a very high speed", "video_id": "video12743", "sen_id": 258534}, {"caption": "there is a man riding a car with full speed", "video_id": "video12743", "sen_id": 258535}, {"caption": "a car is running on the road", "video_id": "video12743", "sen_id": 258536}, {"caption": "a sport car race is being in a tv sports channel the green car is advanced the car is running in l1", "video_id": "video12743", "sen_id": 258537}, {"caption": "man is driving his formula car very fast on the street", "video_id": "video12743", "sen_id": 258538}, {"caption": "a race car is driving around on a track", "video_id": "video12743", "sen_id": 258539}, {"caption": "in a beach a bird flies a guy with her girl walking and searching for a place to stay", "video_id": "video10701", "sen_id": 258540}, {"caption": "a women and men is walking on the beach and singing a song", "video_id": "video10701", "sen_id": 258541}, {"caption": "one man and women in a sea an watching birds", "video_id": "video10701", "sen_id": 258542}, {"caption": "a man and woman are walking and talking on the lake side", "video_id": "video10701", "sen_id": 258543}, {"caption": "the couple talking the self video and they take video of the bird flying", "video_id": "video10701", "sen_id": 258544}, {"caption": "a white tshirt man talking with her woman", "video_id": "video10701", "sen_id": 258545}, {"caption": "we were walking through the dark town looking for a place to stay", "video_id": "video10701", "sen_id": 258546}, {"caption": "one man and women near sea and see some birds", "video_id": "video10701", "sen_id": 258547}, {"caption": "a man and woman walk on the beach and talk about their travel experiences", "video_id": "video10701", "sen_id": 258548}, {"caption": "a man and woman in beach walking near waves and talking about their enjoyment", "video_id": "video10701", "sen_id": 258549}, {"caption": "a white tshirt man walking with his girl", "video_id": "video10701", "sen_id": 258550}, {"caption": "a young man and woman walking along a shoreline speaking about the benefits of having a place to stay for the night prearranged", "video_id": "video10701", "sen_id": 258551}, {"caption": "the couple walk and talk on the beach", "video_id": "video10701", "sen_id": 258552}, {"caption": "a man and woman walk together on a beach where shore birds are flying", "video_id": "video10701", "sen_id": 258553}, {"caption": "a white shirt and woman walking near beach of water and swan sitting water flying", "video_id": "video10701", "sen_id": 258554}, {"caption": "a white tshirt man walking with his girlfriend", "video_id": "video10701", "sen_id": 258555}, {"caption": "the man is white t-shirt is walking with a woman", "video_id": "video10701", "sen_id": 258556}, {"caption": "a man and a girl are walking in the sea side", "video_id": "video10701", "sen_id": 258557}, {"caption": "guy in white tishirt walking near seashore", "video_id": "video10701", "sen_id": 258558}, {"caption": "a man with receding hair line is on a river", "video_id": "video10701", "sen_id": 258559}, {"caption": "only one of the locals has completed all 14 of the climbs", "video_id": "video10022", "sen_id": 258560}, {"caption": "three people preparing to scale a mountain with ropes", "video_id": "video10022", "sen_id": 258561}, {"caption": "a news reporter talks about a children s camp that involves rock climbing", "video_id": "video10022", "sen_id": 258562}, {"caption": "a voice narrates footage of a man climbing a cliff in almaty", "video_id": "video10022", "sen_id": 258563}, {"caption": "a group of people on an adventure are going mountain climbing", "video_id": "video10022", "sen_id": 258564}, {"caption": "there are many people participating in rock climbing", "video_id": "video10022", "sen_id": 258565}, {"caption": "a man in a green shirt belays a rock climber in a blue shirt while three women watch", "video_id": "video10022", "sen_id": 258566}, {"caption": "several people use ropes and other tools to climb a large moutain", "video_id": "video10022", "sen_id": 258567}, {"caption": "group of climbers preparing their ropes on a rocky mountain", "video_id": "video10022", "sen_id": 258568}, {"caption": "a person is climbing up a mountain outside", "video_id": "video10022", "sen_id": 258569}, {"caption": "there is a green tshirt man getting ready to climb", "video_id": "video10022", "sen_id": 258570}, {"caption": "a man in a green colored shirt scaling a high mountain", "video_id": "video10022", "sen_id": 258571}, {"caption": "girls on rock guy holding rope and trying to climb up", "video_id": "video10022", "sen_id": 258572}, {"caption": "two people are having nice time and climbing on the rocks", "video_id": "video10022", "sen_id": 258573}, {"caption": "a person is walking up a mountain out side", "video_id": "video10022", "sen_id": 258574}, {"caption": "there is a man in green tshirt getting ready to climb", "video_id": "video10022", "sen_id": 258575}, {"caption": "a news report of a climber in kazakhstan", "video_id": "video10022", "sen_id": 258576}, {"caption": "a man holding a rope for a climber who is climbing up a rock cliff", "video_id": "video10022", "sen_id": 258577}, {"caption": "there is a family on the side of a mountain they are rock climbing they at this moment are readying to rappel down the mountain", "video_id": "video10022", "sen_id": 258578}, {"caption": "some people outside are climbing up on a mountain", "video_id": "video10022", "sen_id": 258579}, {"caption": "many people wearing white dress showing their dancing skill on stage", "video_id": "video10936", "sen_id": 258580}, {"caption": "dancers in white are in a triangular formation between two partitions with advertising on a blue stage with a row of round overhead lights", "video_id": "video10936", "sen_id": 258581}, {"caption": "a group of dancers and singers perform on a well lit stage", "video_id": "video10936", "sen_id": 258582}, {"caption": "a group of people wearing a white dress & giving dance performance", "video_id": "video10936", "sen_id": 258583}, {"caption": "sexy blonde waching bunch of people dancing and singing in live event", "video_id": "video10936", "sen_id": 258584}, {"caption": "a white dressed young man dancing with a group on the stage", "video_id": "video10936", "sen_id": 258585}, {"caption": "mens dancing in stage that broadcast on tv womens watching and practice in their home", "video_id": "video10936", "sen_id": 258586}, {"caption": "justin bieber wearing all white attire can be seen dancing in a stage with back up dancers", "video_id": "video10936", "sen_id": 258587}, {"caption": "the dancers in white dress are superb and are performing well", "video_id": "video10936", "sen_id": 258588}, {"caption": "a musical group is singing a song and dancing around on a stage", "video_id": "video10936", "sen_id": 258589}, {"caption": "the men perform on a stage as the lights are flashing", "video_id": "video10936", "sen_id": 258590}, {"caption": "a group of men were dancing on the stage for a music", "video_id": "video10936", "sen_id": 258591}, {"caption": "a group of people dance around on stage to a song", "video_id": "video10936", "sen_id": 258592}, {"caption": "a dance group in all-white puts on a performance on a pink and purple stage", "video_id": "video10936", "sen_id": 258593}, {"caption": "justin bieber music video on a live tv show", "video_id": "video10936", "sen_id": 258594}, {"caption": "a singer in white shirt is singing and the other people are enjoying his performance", "video_id": "video10936", "sen_id": 258595}, {"caption": "justin beiber and a group of dancers performing live music", "video_id": "video10936", "sen_id": 258596}, {"caption": "justin beiber is performing at the victorias secret fashion show with his dancers", "video_id": "video10936", "sen_id": 258597}, {"caption": "a group of guys are dancing in a stage with white and pink dress", "video_id": "video10936", "sen_id": 258598}, {"caption": "some people in white clothes are dancing around", "video_id": "video10936", "sen_id": 258599}, {"caption": "a man describing how mation capture technology is being used to make video games look more life like", "video_id": "video11210", "sen_id": 258600}, {"caption": "player gets ready for the game and puts ball in the basket in a court unusually lighted and it is being animated in the computer", "video_id": "video11210", "sen_id": 258601}, {"caption": "several people are sitting behind comptuer screens working on making computer games", "video_id": "video11210", "sen_id": 258602}, {"caption": "so many lights where the stage looks like people are playing", "video_id": "video11210", "sen_id": 258603}, {"caption": "making of a video game from the models playing by 3d caging", "video_id": "video11210", "sen_id": 258604}, {"caption": "there are some people going to play a game", "video_id": "video11210", "sen_id": 258605}, {"caption": "a big hall peoples are sitting and playing basket ball", "video_id": "video11210", "sen_id": 258606}, {"caption": "video game developers capturing movement for a basketball video game", "video_id": "video11210", "sen_id": 258607}, {"caption": "a man is talking about sensors and markers while attaching sensors to a basketball player", "video_id": "video11210", "sen_id": 258608}, {"caption": "bunch of people watching basket player workout in stimulated computer", "video_id": "video11210", "sen_id": 258609}, {"caption": "there is a man with black dressing playing basketball", "video_id": "video11210", "sen_id": 258610}, {"caption": "a man describing the how the motion sensors work in a live video game", "video_id": "video11210", "sen_id": 258611}, {"caption": "a famous basketball player wears a video game design suit and shoots basketball", "video_id": "video11210", "sen_id": 258612}, {"caption": "people are using new technology to create video game characters movements", "video_id": "video11210", "sen_id": 258613}, {"caption": "a man is wearing a motion capture suit", "video_id": "video11210", "sen_id": 258614}, {"caption": "a man describing the process of digital animation in a studio", "video_id": "video11210", "sen_id": 258615}, {"caption": "a man talking about his motion capturing experience", "video_id": "video11210", "sen_id": 258616}, {"caption": "guy talking about a cage in a 3d game", "video_id": "video11210", "sen_id": 258617}, {"caption": "a team was trying to make a 3-d game of volleyball by seeing the visual of the real man game in computers", "video_id": "video11210", "sen_id": 258618}, {"caption": "guy is being recorded by 3-d sensor device to create a video game", "video_id": "video11210", "sen_id": 258619}, {"caption": "a man is putting boxes on display in a store", "video_id": "video10814", "sen_id": 258620}, {"caption": "a man wearing black color dress is talking and lifting things", "video_id": "video10814", "sen_id": 258621}, {"caption": "showing how to lift heavy objects in a safe manner", "video_id": "video10814", "sen_id": 258622}, {"caption": "a man dressed in all black is showing the correct way to lift a box", "video_id": "video10814", "sen_id": 258623}, {"caption": "man seen in convince store picking up heavy item from cart which he repositions under a shelf", "video_id": "video10814", "sen_id": 258624}, {"caption": "a video about lifting loads in the workplace and a man wearing a black work uniform lifts a kitchen aid box and places it on the shelf", "video_id": "video10814", "sen_id": 258625}, {"caption": "a man in a workplace store picking up heavy boxes and placing them on shelves", "video_id": "video10814", "sen_id": 258626}, {"caption": "a man is taking boxes off a cart and placing them on shelves", "video_id": "video10814", "sen_id": 258627}, {"caption": "a man wearing black is lifting objects and placing them on shelves", "video_id": "video10814", "sen_id": 258628}, {"caption": "a person wearing black dress lifts the load from the one place to another", "video_id": "video10814", "sen_id": 258629}, {"caption": "a man in black dress arranging the boxes in a rack", "video_id": "video10814", "sen_id": 258630}, {"caption": "a man picking up a large box and putting it on a shelf", "video_id": "video10814", "sen_id": 258631}, {"caption": "a man is standing in front of a cart at a store a man is picking up boxes and stocking the shelves", "video_id": "video10814", "sen_id": 258632}, {"caption": "a quick shop tutorial about lifting safely in the workplace", "video_id": "video10814", "sen_id": 258633}, {"caption": "guy in black shirt and pant putting products in the store", "video_id": "video10814", "sen_id": 258634}, {"caption": "a man in black dress is lifting some items and placing in table", "video_id": "video10814", "sen_id": 258635}, {"caption": "a narrator describes safely lifting heavy loads in the workplace", "video_id": "video10814", "sen_id": 258636}, {"caption": "ad discussion of proper manual handling techniques occurs while a man wearing all black handles items", "video_id": "video10814", "sen_id": 258637}, {"caption": "man in black clothes is in the shop and taking the products", "video_id": "video10814", "sen_id": 258638}, {"caption": "a guy in a room is bending down looking", "video_id": "video10814", "sen_id": 258639}, {"caption": "there is a woman dancing with a music", "video_id": "video12833", "sen_id": 258640}, {"caption": " young woman with light brown skin and bright red hair wearing a strapless pink dress appears to drown in a bed of pink feathers", "video_id": "video12833", "sen_id": 258641}, {"caption": "a music video featuring a young latin american woman surrounded by then engulfed by pink feathers", "video_id": "video12833", "sen_id": 258642}, {"caption": "rhianna performs a music video in a sea of pink feathers", "video_id": "video12833", "sen_id": 258643}, {"caption": "rihanna in a dress with most of her chest showing sinking into a bunch of feather fans then laying on the ground with her leg bent and lower butt showing", "video_id": "video12833", "sen_id": 258644}, {"caption": "a woman in a pink dress with red hair being enveloped with pink flowers while music plays", "video_id": "video12833", "sen_id": 258645}, {"caption": "a lady with red hair is raising her arms out of what seems like a pool of feathers", "video_id": "video12833", "sen_id": 258646}, {"caption": "a album singer singing a song for an album", "video_id": "video12833", "sen_id": 258647}, {"caption": "a woman is in pink feathers and is dancing and lifting her arms", "video_id": "video12833", "sen_id": 258648}, {"caption": "singer rihanna in a pink dress surrounded by red red clouds singing somebody is going to miss you", "video_id": "video12833", "sen_id": 258649}, {"caption": "girl in a pink dress singing surrounded by pink feathers", "video_id": "video12833", "sen_id": 258650}, {"caption": "the celebrity is performing inside of her music video", "video_id": "video12833", "sen_id": 258651}, {"caption": "girl looks gargious with feather dress color is so beautiful", "video_id": "video12833", "sen_id": 258652}, {"caption": "a woman is raising her arms while pink feathers are around her", "video_id": "video12833", "sen_id": 258653}, {"caption": "woman with red hair wearing a white dress singing in a video", "video_id": "video12833", "sen_id": 258654}, {"caption": "rhianna is singing in a large pink dress in a music video", "video_id": "video12833", "sen_id": 258655}, {"caption": "in the fashion show ramb the girls is waliking in amazing their frock is like as butter fly their brest is super", "video_id": "video12833", "sen_id": 258656}, {"caption": "a fashion women makes her dress into the feathers in imagination", "video_id": "video12833", "sen_id": 258657}, {"caption": "a girl with red hair is falling with feathers all around her", "video_id": "video12833", "sen_id": 258658}, {"caption": "rihanna is enveloped in pink feathers in one of her music videos", "video_id": "video12833", "sen_id": 258659}, {"caption": "there is a machine raw material safe for all materials", "video_id": "video11493", "sen_id": 258660}, {"caption": "the metal product which is corroded is shown and the way to protect is being displayed", "video_id": "video11493", "sen_id": 258661}, {"caption": "a man describing innovative packaging to provide protection from corrosive elements", "video_id": "video11493", "sen_id": 258662}, {"caption": "an advertisement for anti-corrosion packaging displays several machines", "video_id": "video11493", "sen_id": 258663}, {"caption": "a man talks about the benefits of better packaging", "video_id": "video11493", "sen_id": 258664}, {"caption": "a video footage on the utility of innovative packaging is on show", "video_id": "video11493", "sen_id": 258665}, {"caption": "video shows some metallic instrument", "video_id": "video11493", "sen_id": 258666}, {"caption": "still shots of machines being covered in a protective layer with audio of a man explaining the product", "video_id": "video11493", "sen_id": 258667}, {"caption": "tools on a table then a man looking at a model", "video_id": "video11493", "sen_id": 258668}, {"caption": "a person talks as they show factory equipment", "video_id": "video11493", "sen_id": 258669}, {"caption": "a men is cleaning a machine and doing some mechanic work", "video_id": "video11493", "sen_id": 258670}, {"caption": "a man explains the benefits of a new type of packaging material over a montage of photos", "video_id": "video11493", "sen_id": 258671}, {"caption": "a man is talking about a rejecting materials", "video_id": "video11493", "sen_id": 258672}, {"caption": "a man is talking about a product that shields products from corrosive elements", "video_id": "video11493", "sen_id": 258673}, {"caption": "a man is bending down near a machine", "video_id": "video11493", "sen_id": 258674}, {"caption": "a metal product which is rejected is shown duet to corrosion and the ways to keep it safe is being discussed", "video_id": "video11493", "sen_id": 258675}, {"caption": "and the cost of rejected product a better option", "video_id": "video11493", "sen_id": 258676}, {"caption": "the cost of rejected products are reduced the cost is more in case of innovative packaging", "video_id": "video11493", "sen_id": 258677}, {"caption": "a man is marketing a new product packaging", "video_id": "video11493", "sen_id": 258678}, {"caption": "a man describes a product called innovative packaging", "video_id": "video11493", "sen_id": 258679}, {"caption": "there is a man with cap walking on the ground", "video_id": "video10295", "sen_id": 258680}, {"caption": "a man is walking in a grassy field while the sun is setting behind him", "video_id": "video10295", "sen_id": 258681}, {"caption": "a man in jacket and cap walks through field with car in background before getting in", "video_id": "video10295", "sen_id": 258682}, {"caption": "a man wearing a black jacket and cap is walking in a green field and getting into a car while a sun rises behind him", "video_id": "video10295", "sen_id": 258683}, {"caption": "a man is walking in a field then gets in to a car while music is playing in the background", "video_id": "video10295", "sen_id": 258684}, {"caption": "the man was standing in a field of grass and then entered into his truck", "video_id": "video10295", "sen_id": 258685}, {"caption": "a person walking on early morning with a cap on head then takes the car and drives on the road", "video_id": "video10295", "sen_id": 258686}, {"caption": "a man in a black cap and jacket walks around a field before getting in a car and driving off", "video_id": "video10295", "sen_id": 258687}, {"caption": "a man walking in a field monatandose in a van and going on a road", "video_id": "video10295", "sen_id": 258688}, {"caption": "there is a guy with a black jacket and black sock hat on walking then he gets in his car and drives away", "video_id": "video10295", "sen_id": 258689}, {"caption": "a man dressed in a black coat and hat gets in his car slams the door and watches hundreds of birds fly away", "video_id": "video10295", "sen_id": 258690}, {"caption": "a man with a knit cap on walking across an opened field with a deep pondering look on his face", "video_id": "video10295", "sen_id": 258691}, {"caption": "music plays as a man walks alone across a green field then gets into a car and starts to drive", "video_id": "video10295", "sen_id": 258692}, {"caption": "a man is shown in black jacket and sits in a car", "video_id": "video10295", "sen_id": 258693}, {"caption": "a guy in a beanie is talking on tv", "video_id": "video10295", "sen_id": 258694}, {"caption": "a man in a black hat is getting into a car on a green lawn", "video_id": "video10295", "sen_id": 258695}, {"caption": "a man wears black dress walking on the lawn and getting in into his car", "video_id": "video10295", "sen_id": 258696}, {"caption": "a man in black jacket and cap is walking a field then gets in a car and drives down a misty highway with the sun rising in the distance", "video_id": "video10295", "sen_id": 258697}, {"caption": "avicci walking in a grassy field and driving down a highway during a music video", "video_id": "video10295", "sen_id": 258698}, {"caption": "a guy in a black beanie is walking around outside", "video_id": "video10295", "sen_id": 258699}, {"caption": "on a soccer park two different teams are playing soccer", "video_id": "video11377", "sen_id": 258700}, {"caption": "players are playing food ball in the ground", "video_id": "video11377", "sen_id": 258701}, {"caption": "rugby game a person with red tshirt team makes the goal", "video_id": "video11377", "sen_id": 258702}, {"caption": "two men teams are playing against each other while the crowd watches", "video_id": "video11377", "sen_id": 258703}, {"caption": "the players in red are running fast and celebrating the point", "video_id": "video11377", "sen_id": 258704}, {"caption": "a rugby player from the red team attempts to score against the blue team", "video_id": "video11377", "sen_id": 258705}, {"caption": "people in red and blue shirts play soccer while a man excitedly comments", "video_id": "video11377", "sen_id": 258706}, {"caption": "two soccer teams are competing in an outdoor arena", "video_id": "video11377", "sen_id": 258707}, {"caption": "two teams playing a game of rugby as an announcer calls the play", "video_id": "video11377", "sen_id": 258708}, {"caption": "a bunch of men playing the game of rugby with a lot of fans", "video_id": "video11377", "sen_id": 258709}, {"caption": "a red team and a blue team are playing a sport on a grass field", "video_id": "video11377", "sen_id": 258710}, {"caption": "a team of soccer players are passing the ball back and forth on a field", "video_id": "video11377", "sen_id": 258711}, {"caption": "a two team are playing a rugby game in the ground", "video_id": "video11377", "sen_id": 258712}, {"caption": "group of people are running fast and celebrating the point", "video_id": "video11377", "sen_id": 258713}, {"caption": "a red rugby team plays a blue rugby team and the red team scores", "video_id": "video11377", "sen_id": 258714}, {"caption": "the rugby player runs with the balls in his hand towards the touch down point", "video_id": "video11377", "sen_id": 258715}, {"caption": "the rugby match between the blue and red jersey teams is going on", "video_id": "video11377", "sen_id": 258716}, {"caption": "guys passing ball and running with it in a ruby match", "video_id": "video11377", "sen_id": 258717}, {"caption": "group of players are running so fast and celebrating a point", "video_id": "video11377", "sen_id": 258718}, {"caption": "the rugby player runs downfield with the ball to score a goal", "video_id": "video11377", "sen_id": 258719}, {"caption": "four masked people wearing latex gloves sit around a square table filled with white powder", "video_id": "video12342", "sen_id": 258720}, {"caption": "a group of four mean in masks wearing latex gloves sitting at a table sifting through a white powder", "video_id": "video12342", "sen_id": 258721}, {"caption": "group of men were doing some product in their home", "video_id": "video12342", "sen_id": 258722}, {"caption": "men dressed differently are sitting around a table together", "video_id": "video12342", "sen_id": 258723}, {"caption": "some industrial type of production is going on the table with gloves handed peoples", "video_id": "video12342", "sen_id": 258724}, {"caption": "there are some people packing on the table", "video_id": "video12342", "sen_id": 258725}, {"caption": " two in pink and gray all wearing face masks sort product at a white centered table with cubs and gloved hands", "video_id": "video12342", "sen_id": 258726}, {"caption": "group of men were preparing some product in the home", "video_id": "video12342", "sen_id": 258727}, {"caption": "people with their faces obscured make drugs at a kitchen table", "video_id": "video12342", "sen_id": 258728}, {"caption": "men sitting around a table sorting out drugs on into small bags", "video_id": "video12342", "sen_id": 258729}, {"caption": "men sitting around a table preparing illegal narcotics", "video_id": "video12342", "sen_id": 258730}, {"caption": " wearing face masks polo shirts and white vinyl gloves sit at a square table and fill small vials with white powder", "video_id": "video12342", "sen_id": 258731}, {"caption": "masked people at at table gathered to processing a large amount of drugs", "video_id": "video12342", "sen_id": 258732}, {"caption": "a pink color dress boy and other guys siting beside wearing gloves in hands searching displaying on screen", "video_id": "video12342", "sen_id": 258733}, {"caption": "they are sitting around the table and doing work", "video_id": "video12342", "sen_id": 258734}, {"caption": "preaparation of drug based products are being shown", "video_id": "video12342", "sen_id": 258735}, {"caption": "a group of people in ski masks and surgical gloves sit around a table of what seems like illegal white powdered drugs", "video_id": "video12342", "sen_id": 258736}, {"caption": "some people are sitting at a table and working on some flour spread out before them", "video_id": "video12342", "sen_id": 258737}, {"caption": "people sit at a table sifting through exports for mexican cartel", "video_id": "video12342", "sen_id": 258738}, {"caption": "four people are sitting at a table wearing gloves and working on something", "video_id": "video12342", "sen_id": 258739}, {"caption": "a woman stirs a simmering rich gravy on the stovetop", "video_id": "video10898", "sen_id": 258740}, {"caption": "a woman stirring a brown colored sauce in a pot over the stove", "video_id": "video10898", "sen_id": 258741}, {"caption": "a gravy is being cooked in a pan while the cook instructs", "video_id": "video10898", "sen_id": 258742}, {"caption": "a curry like dish is made which cannot be eaten daily as it is heavy", "video_id": "video10898", "sen_id": 258743}, {"caption": "a cook preparing a red sauce while explaining all materials to be used", "video_id": "video10898", "sen_id": 258744}, {"caption": "the delicious gravy is being stirred by a woman and she adds more ingredients to it", "video_id": "video10898", "sen_id": 258745}, {"caption": "a woman stirring a pot full of a brown colored sauce", "video_id": "video10898", "sen_id": 258746}, {"caption": "a chef works on a recipe in a small black and silver pot", "video_id": "video10898", "sen_id": 258747}, {"caption": "a hand is stirring a pot full of a light brown food before spooning a white ingredient out of a clear jar and stirring it into the pot", "video_id": "video10898", "sen_id": 258748}, {"caption": "a person preparing some spicy dish", "video_id": "video10898", "sen_id": 258749}, {"caption": "a gravy is mixed in the bowl and butter is put to it", "video_id": "video10898", "sen_id": 258750}, {"caption": "a woman is mixing a type of curry in a large pot", "video_id": "video10898", "sen_id": 258751}, {"caption": "in a cooking pot a thick sauce is stirred by the woman", "video_id": "video10898", "sen_id": 258752}, {"caption": "someone is stirring food in a pot on a stove", "video_id": "video10898", "sen_id": 258753}, {"caption": "a person doing a cooking show and mixing the ingredients for the recipe", "video_id": "video10898", "sen_id": 258754}, {"caption": "a woman is stirring a brown sauce in a small pan before adding another ingredient", "video_id": "video10898", "sen_id": 258755}, {"caption": "a person is cooking an orange sauce on a stove", "video_id": "video10898", "sen_id": 258756}, {"caption": "aawoman is stirring up some sauce in a pot on the stove", "video_id": "video10898", "sen_id": 258757}, {"caption": "woman is mixing the ingredients in the black pan", "video_id": "video10898", "sen_id": 258758}, {"caption": "someone is stirring food inside of a pot", "video_id": "video10898", "sen_id": 258759}, {"caption": "a man with spectacles and wearing cream shirt is explaining something on board", "video_id": "video12154", "sen_id": 258760}, {"caption": "the man is giving a speech on a service brand mark", "video_id": "video12154", "sen_id": 258761}, {"caption": "a man holding a microphone talking about apple computers and drawing on a white board with a marker", "video_id": "video12154", "sen_id": 258762}, {"caption": "a man gives a lecture on his theories about why people buy certain things", "video_id": "video12154", "sen_id": 258763}, {"caption": "a person holding a mic in hand and speaking on topic discusing audience watching displaying on screen", "video_id": "video12154", "sen_id": 258764}, {"caption": "there is a shirt man talking in front of a white board", "video_id": "video12154", "sen_id": 258765}, {"caption": "a man wearing jeans and beige dress shirt is explaining what people buy and why", "video_id": "video12154", "sen_id": 258766}, {"caption": "a man drawn something and explaining about it", "video_id": "video12154", "sen_id": 258767}, {"caption": "in white board there are many circles where he draw small circle inner circle", "video_id": "video12154", "sen_id": 258768}, {"caption": "a man in glasses gives a presentation to people", "video_id": "video12154", "sen_id": 258769}, {"caption": "there is a shirt man talking with a mic", "video_id": "video12154", "sen_id": 258770}, {"caption": "a man is giving a presentation and writes on a piece of chart paper to draw a diagram", "video_id": "video12154", "sen_id": 258771}, {"caption": "a man in brown shirt with a mike in his hand is explaining something on a white board", "video_id": "video12154", "sen_id": 258772}, {"caption": "man is stating that people don t buy what a person does but why they do it and speaks on about apple devices", "video_id": "video12154", "sen_id": 258773}, {"caption": "a man talking about how people don t buy what you do they buy why you do it", "video_id": "video12154", "sen_id": 258774}, {"caption": "a man on the stage showing sometime on a poster board", "video_id": "video12154", "sen_id": 258775}, {"caption": "the man with spectacles and mike in hand is explaining the point to the audience by diagrams on white board", "video_id": "video12154", "sen_id": 258776}, {"caption": "a man is taking class to the students", "video_id": "video12154", "sen_id": 258777}, {"caption": "a man uses a graph to explain some of the reasoning behind buying habits", "video_id": "video12154", "sen_id": 258778}, {"caption": "a man with glasses is speaking about something", "video_id": "video12154", "sen_id": 258779}, {"caption": "a female narrator describes her onscreen dish of meat and shrimp in a pineapple half next to white rice", "video_id": "video10586", "sen_id": 258780}, {"caption": "there is a verity dish served beautifully for a dinner", "video_id": "video10586", "sen_id": 258781}, {"caption": "a woman is speaking about the benefits of a food dish while it is shown", "video_id": "video10586", "sen_id": 258782}, {"caption": "a dish that is served in a pineapple is shown while a narrator instructs", "video_id": "video10586", "sen_id": 258783}, {"caption": "a still images of meals inside kitchen serve dish to eat displaying on screen", "video_id": "video10586", "sen_id": 258784}, {"caption": "a person cooked prawns on a pineapple like a bowel", "video_id": "video10586", "sen_id": 258785}, {"caption": "a pineapple is cut open with a dish in the center", "video_id": "video10586", "sen_id": 258786}, {"caption": "a woman talking while showing a white dish of food", "video_id": "video10586", "sen_id": 258787}, {"caption": "a woman describes a dish she prepared which appears to be pineapple shrimp and white rice", "video_id": "video10586", "sen_id": 258788}, {"caption": "someone is explaining about something showing some fruit filled with something like prawns etc", "video_id": "video10586", "sen_id": 258789}, {"caption": "its a pinnaple with curry and white rice", "video_id": "video10586", "sen_id": 258790}, {"caption": "some food stuffs is kept for display in a tray", "video_id": "video10586", "sen_id": 258791}, {"caption": "one woman cooking in kitchen some tasty recipes", "video_id": "video10586", "sen_id": 258792}, {"caption": "a woman is making a stuffed pineapple recipe with a side of rice", "video_id": "video10586", "sen_id": 258793}, {"caption": "some food items presentation in a pine apple", "video_id": "video10586", "sen_id": 258794}, {"caption": "in the kitchen someone served a dish on the table", "video_id": "video10586", "sen_id": 258795}, {"caption": "its a eatable food made and ready for eating", "video_id": "video10586", "sen_id": 258796}, {"caption": "a woman is describing a rice dish and how easily its made", "video_id": "video10586", "sen_id": 258797}, {"caption": "a woman talking about a dish that she made that consists of a stuff half pineapple and white sticky rice", "video_id": "video10586", "sen_id": 258798}, {"caption": "a woman makes a dish with pineapple and shrimp", "video_id": "video10586", "sen_id": 258799}, {"caption": "hands with amazing nail polishes of barbie and ana girls", "video_id": "video11362", "sen_id": 258800}, {"caption": "someones nails are being shown painted in a frozen (movie) theme", "video_id": "video11362", "sen_id": 258801}, {"caption": "barbie on the nail polish its in complete blue color the nail shape is awesome", "video_id": "video11362", "sen_id": 258802}, {"caption": "a person shows off painted disney designs on their fingernails", "video_id": "video11362", "sen_id": 258803}, {"caption": "nails are colored and given beautiful designs of beautiful faces", "video_id": "video11362", "sen_id": 258804}, {"caption": "a pair of woman s hands featuring intricately manicured finger nails the nails feature disney characters", "video_id": "video11362", "sen_id": 258805}, {"caption": " frozen charaters fingernail polish art with sparkles", "video_id": "video11362", "sen_id": 258806}, {"caption": "a woman shows off her fingernails displaying frozen characters", "video_id": "video11362", "sen_id": 258807}, {"caption": "a girl shows off her elaborately painted finger nails", "video_id": "video11362", "sen_id": 258808}, {"caption": "a hand has cartoon characters painted on the nails", "video_id": "video11362", "sen_id": 258809}, {"caption": "while music is playing a woman has her hands laying on a table showing off her nails that are decorated with characters from the disney movie frozen", "video_id": "video11362", "sen_id": 258810}, {"caption": "we see a girl s finger nails with character s from frozen painted on them", "video_id": "video11362", "sen_id": 258811}, {"caption": "woman shows off her fingernails displaying frozen characters", "video_id": "video11362", "sen_id": 258812}, {"caption": "a close-up of a woman s hands showing intricate artwork painted on her nails", "video_id": "video11362", "sen_id": 258813}, {"caption": "long polished nails of a woman which includes 2 disney characters from the movie frozen", "video_id": "video11362", "sen_id": 258814}, {"caption": "a woman is showing a set of nails art that are designed like animated characters", "video_id": "video11362", "sen_id": 258815}, {"caption": "a woman shows some custom painted nails on camera", "video_id": "video11362", "sen_id": 258816}, {"caption": "women showing off her blue frozen themed finger nails with ombre effect", "video_id": "video11362", "sen_id": 258817}, {"caption": "a girl hands applying nail polish to her hand displaying on screen", "video_id": "video11362", "sen_id": 258818}, {"caption": "a person is showing her fancy nail polish with cartoon characters", "video_id": "video11362", "sen_id": 258819}, {"caption": "a man in a kitchen preparing some vegetable salad", "video_id": "video11705", "sen_id": 258820}, {"caption": "a man stirring vegetables in a yellow bowl with a spoon then pouring in two bottles of guinness to deglaze them", "video_id": "video11705", "sen_id": 258821}, {"caption": "a chef cooks a dish that calls for two bottles of beer to deglazed the pan", "video_id": "video11705", "sen_id": 258822}, {"caption": "a man about 25 is opening two beer bottles to add to a dish he is making in a large bowl that is yellow", "video_id": "video11705", "sen_id": 258823}, {"caption": "a young man with a british accent is deglazing a pan of sauteed vegetables in a yellow stock pot with two bottle of guinness beer", "video_id": "video11705", "sen_id": 258824}, {"caption": "in the kitchen there is a man preparing a dish", "video_id": "video11705", "sen_id": 258825}, {"caption": "a boy frying carrot pieces in the fry pan and adds sauce to it while it boils", "video_id": "video11705", "sen_id": 258826}, {"caption": "a teen explaining how to prepare a dish using wine", "video_id": "video11705", "sen_id": 258827}, {"caption": "a man cooking a big pot of vegetables with two bottles of beer", "video_id": "video11705", "sen_id": 258828}, {"caption": "a young man talks about cooking with food and beer", "video_id": "video11705", "sen_id": 258829}, {"caption": "a pot of food and a man cooking in a kitchen", "video_id": "video11705", "sen_id": 258830}, {"caption": "a man in a button up shirt stirring vegetables in a kitchen before pouring in two bottles of guinness beer", "video_id": "video11705", "sen_id": 258831}, {"caption": "a man is stirring a pot and explains that he will deglaze the food with two bottles of guiness", "video_id": "video11705", "sen_id": 258832}, {"caption": "a man adds beer to some vegetables to deglaze the pan they are in", "video_id": "video11705", "sen_id": 258833}, {"caption": "a person cooks the vegetable and open the wine and put in to the vegetable beaker", "video_id": "video11705", "sen_id": 258834}, {"caption": "container sauce and vegetables are added", "video_id": "video11705", "sen_id": 258835}, {"caption": "a person in the kitchen cooking and giving instructions on how to cook a vegetable", "video_id": "video11705", "sen_id": 258836}, {"caption": "a person add ingredients to a yellow pot on the stove", "video_id": "video11705", "sen_id": 258837}, {"caption": "a boy is cooking vegetables in a pot with beer", "video_id": "video11705", "sen_id": 258838}, {"caption": "a person is pouring liquid in to a bowl", "video_id": "video11705", "sen_id": 258839}, {"caption": "there is a man talking with a suit man", "video_id": "video10085", "sen_id": 258840}, {"caption": "a man interview in a party place with very carefully attention", "video_id": "video10085", "sen_id": 258841}, {"caption": "british politician talking about gaza aide", "video_id": "video10085", "sen_id": 258842}, {"caption": "a man in a suit is being interviewed about gaza", "video_id": "video10085", "sen_id": 258843}, {"caption": "a reporter talking about a political solution to the tensions in gaza", "video_id": "video10085", "sen_id": 258844}, {"caption": "a blonde haired man in a suit is speaking into a microphone held by another man in a suit with dark hair", "video_id": "video10085", "sen_id": 258845}, {"caption": "the british international development minister addresses his views on what needs to be done at gaza with the press", "video_id": "video10085", "sen_id": 258846}, {"caption": "a man is being interviewed in a busy hotel lobby by another man pushing a mic into his face", "video_id": "video10085", "sen_id": 258847}, {"caption": "a white haired business man is speaking to another man holding a microphone in the lobby of a large hotel", "video_id": "video10085", "sen_id": 258848}, {"caption": "a man interviews another man about his opinion on gaza and what to do with it s future", "video_id": "video10085", "sen_id": 258849}, {"caption": "the video is talking about the war at gaza and a reporter is interviewing a person of what their ideas are about the topic", "video_id": "video10085", "sen_id": 258850}, {"caption": "one man interviewing another man using a microphone both men are wearing suits and among other people", "video_id": "video10085", "sen_id": 258851}, {"caption": "a man is talking to a man in a room full of people", "video_id": "video10085", "sen_id": 258852}, {"caption": "a political bites from a political member on a mass meeting", "video_id": "video10085", "sen_id": 258853}, {"caption": "one man interviewing another man who is using alot of hand gestures", "video_id": "video10085", "sen_id": 258854}, {"caption": "expert giving his opinion on the situation of the gaza strip", "video_id": "video10085", "sen_id": 258855}, {"caption": "a white headed man is interviewed about the turmoil in the middle east", "video_id": "video10085", "sen_id": 258856}, {"caption": "a white haired man is interviewed in a crowded hall about gaza", "video_id": "video10085", "sen_id": 258857}, {"caption": "a man in a suit gives an interview about politics", "video_id": "video10085", "sen_id": 258858}, {"caption": "an older man is interviewed about aid to gaza", "video_id": "video10085", "sen_id": 258859}, {"caption": "there is a woman dancing with her daughter", "video_id": "video10627", "sen_id": 258860}, {"caption": "a woman and a child dance inside a dance studio", "video_id": "video10627", "sen_id": 258861}, {"caption": "an ellen segment shows two people dancing in a dance studio", "video_id": "video10627", "sen_id": 258862}, {"caption": "a young woman and the small baby is dancing together", "video_id": "video10627", "sen_id": 258863}, {"caption": "a woman and small girl wearing dance tights are in a dance studio practicing moves in tandem", "video_id": "video10627", "sen_id": 258864}, {"caption": "a woman and a small girl dance in sync with one another to a popular song", "video_id": "video10627", "sen_id": 258865}, {"caption": "a lady is dancing and a cute girl is following it", "video_id": "video10627", "sen_id": 258866}, {"caption": "a woman and young girl are dancing to a song in a gym with a wooden floor", "video_id": "video10627", "sen_id": 258867}, {"caption": "a woman in workout clothes dances on wood floor of open room with child", "video_id": "video10627", "sen_id": 258868}, {"caption": "mother and daughter seen rehearsing dance moves on a hard wood floor", "video_id": "video10627", "sen_id": 258869}, {"caption": "a woman and a young girl do a coreographed dance to fast music inside a dance studio", "video_id": "video10627", "sen_id": 258870}, {"caption": "a woman and girl performing a dance segment on the talk show", "video_id": "video10627", "sen_id": 258871}, {"caption": "woman and child doing dance moves to music in dance studio", "video_id": "video10627", "sen_id": 258872}, {"caption": "a woman and a girl are dancing the same routine in an empty room", "video_id": "video10627", "sen_id": 258873}, {"caption": "mom with her girl are dancing together in front of the camera", "video_id": "video10627", "sen_id": 258874}, {"caption": "a lady and a kid are performing a beautiful dance inside a room", "video_id": "video10627", "sen_id": 258875}, {"caption": "a woman and a little girl are enthusiastically dancing on the ellen show", "video_id": "video10627", "sen_id": 258876}, {"caption": "women with a small girl doing aerobics", "video_id": "video10627", "sen_id": 258877}, {"caption": "a lady and a very cute girl dancing to a beyonce song", "video_id": "video10627", "sen_id": 258878}, {"caption": "a woman and a kid are dancing in a room", "video_id": "video10627", "sen_id": 258879}, {"caption": "a man is showing how to connect camera for a stand", "video_id": "video11554", "sen_id": 258880}, {"caption": "a camera being attached to the camera mount and a cord going into a usb port", "video_id": "video11554", "sen_id": 258881}, {"caption": "a step-by-step guide showing and explaining how to hook up the gopro to a camera mount", "video_id": "video11554", "sen_id": 258882}, {"caption": "a demonstration of how to mount a go pro camera", "video_id": "video11554", "sen_id": 258883}, {"caption": "a man attaches his gopro camera to its mount and secures it", "video_id": "video11554", "sen_id": 258884}, {"caption": "a men is demostraing all the function and features of camera", "video_id": "video11554", "sen_id": 258885}, {"caption": "a man taking a camera and placing it on a mount and plugging in a cord into the usb port", "video_id": "video11554", "sen_id": 258886}, {"caption": "a man places a camera onto a tripod in a demonstration", "video_id": "video11554", "sen_id": 258887}, {"caption": "man explaining how to set up a camera on a mount", "video_id": "video11554", "sen_id": 258888}, {"caption": "demonstration of how to mount a camera on top of a stand", "video_id": "video11554", "sen_id": 258889}, {"caption": "a man places a small rectangular camera on top of a long black tube and turns a screw with thumb and forefinger to tighten", "video_id": "video11554", "sen_id": 258890}, {"caption": "an instructional video on how to hook up a camera onto a camera accessory", "video_id": "video11554", "sen_id": 258891}, {"caption": "a camera man fits the camera in the white background and he turns it to the right side", "video_id": "video11554", "sen_id": 258892}, {"caption": "somebody walking us through how go pro camera tech works", "video_id": "video11554", "sen_id": 258893}, {"caption": "a person is fixing a camera like product on a stand and connecting necessary cable to it", "video_id": "video11554", "sen_id": 258894}, {"caption": "a person with ash color t-shirt is fixing a camera in a stand", "video_id": "video11554", "sen_id": 258895}, {"caption": "a young man demonstrates how to use a gopro camera mounted on a pole", "video_id": "video11554", "sen_id": 258896}, {"caption": "there s a man attaching a go pro to a stand", "video_id": "video11554", "sen_id": 258897}, {"caption": "a man telling how to connect a camera on stand and connect its wire", "video_id": "video11554", "sen_id": 258898}, {"caption": "the man shows how to attach a go pro camera to a tripod mount", "video_id": "video11554", "sen_id": 258899}, {"caption": "an older man talking about a critical path method for scheduling", "video_id": "video12745", "sen_id": 258900}, {"caption": "the man wearing the white shirt talks as the words appear on the left of the screen", "video_id": "video12745", "sen_id": 258901}, {"caption": "a man in a white shirt talks while a screen is displayed beside him", "video_id": "video12745", "sen_id": 258902}, {"caption": "a man in a white collared shirt describing critical path method", "video_id": "video12745", "sen_id": 258903}, {"caption": "in a screen the most position about something and a short position of a man talking", "video_id": "video12745", "sen_id": 258904}, {"caption": "a man is discussing a drawing on a poster board", "video_id": "video12745", "sen_id": 258905}, {"caption": "making the solve of simply method of the maths problem in the expert men", "video_id": "video12745", "sen_id": 258906}, {"caption": "a man wearing a white button up shirt glasses and white hair is seen talking about critical path methods he apopears in a smaller screen to the right while an explanation is shown on the left", "video_id": "video12745", "sen_id": 258907}, {"caption": "man is talking about his project based on facts", "video_id": "video12745", "sen_id": 258908}, {"caption": "a lecturer talking about using the critical path method", "video_id": "video12745", "sen_id": 258909}, {"caption": "an old man speaks about critical path method with diagram", "video_id": "video12745", "sen_id": 258910}, {"caption": "a man with gray hair and a white shirt giving a presentation", "video_id": "video12745", "sen_id": 258911}, {"caption": "a man in a white shirt is talking about a slide being shown", "video_id": "video12745", "sen_id": 258912}, {"caption": "a man in glasses lectures while showing an informative graphic", "video_id": "video12745", "sen_id": 258913}, {"caption": "an instructor explains how to deal with parallel job scheduling problems in computer programming", "video_id": "video12745", "sen_id": 258914}, {"caption": "the man wearing eye glasses and a white shirt talks", "video_id": "video12745", "sen_id": 258915}, {"caption": "a scientist gives a discussion of his parallel path method of data movement", "video_id": "video12745", "sen_id": 258916}, {"caption": "a older man in a white is talking", "video_id": "video12745", "sen_id": 258917}, {"caption": "an old man explains having a scheduling system", "video_id": "video12745", "sen_id": 258918}, {"caption": "a man is showing a diagram of a thing", "video_id": "video12745", "sen_id": 258919}, {"caption": "a girl doing a tutorial of applying eye makeup", "video_id": "video11454", "sen_id": 258920}, {"caption": "a woman showing how to put on mascara", "video_id": "video11454", "sen_id": 258921}, {"caption": "a woman demonstrates her method of putting makeup on her eyes", "video_id": "video11454", "sen_id": 258922}, {"caption": "blonde woman with amazing make up smiling on camera", "video_id": "video11454", "sen_id": 258923}, {"caption": "a young woman shows how to do eye makeup", "video_id": "video11454", "sen_id": 258924}, {"caption": "a women is applying make up to her face", "video_id": "video11454", "sen_id": 258925}, {"caption": "young girl applying eyeliner to her eye lashes and then applies mascara", "video_id": "video11454", "sen_id": 258926}, {"caption": "a blonde woman demonstrating how to add makeup to look like bottom eye lashes", "video_id": "video11454", "sen_id": 258927}, {"caption": "a woman is drawing on her bottom lashes with a thin eyeliner brush and completes the routine by applying black mascara", "video_id": "video11454", "sen_id": 258928}, {"caption": "a woman is applying make up to her eyes", "video_id": "video11454", "sen_id": 258929}, {"caption": "a woman is demonstrating how to put on eye makeup", "video_id": "video11454", "sen_id": 258930}, {"caption": "a beautiful blonde model applies dark eye liner and mascara", "video_id": "video11454", "sen_id": 258931}, {"caption": "someone is applying eye lashes to her eyes and explaining how to use it", "video_id": "video11454", "sen_id": 258932}, {"caption": "a lady applies eye lashes to her eye", "video_id": "video11454", "sen_id": 258933}, {"caption": "a woman is showing how to do her makeup", "video_id": "video11454", "sen_id": 258934}, {"caption": "a woman with blonde hair applies false lashes and adds small lower lashes with very thin liquid liner before applying actual mascara", "video_id": "video11454", "sen_id": 258935}, {"caption": "a woman is doing a eye lining and mascara her own", "video_id": "video11454", "sen_id": 258936}, {"caption": "a woman applies eyeliner to her lower eyelashes as well as mascara in a makeup tutorial", "video_id": "video11454", "sen_id": 258937}, {"caption": "a beautiful girl is attaching an extra eye lash to her left eye and drawing lower lashes using a brush and finally she is applying mascara", "video_id": "video11454", "sen_id": 258938}, {"caption": "a woman applies false eyelashes and adds mascara", "video_id": "video11454", "sen_id": 258939}, {"caption": "group of women and men are dancing together in bikini", "video_id": "video10723", "sen_id": 258940}, {"caption": "a gropu of men and women dancing together", "video_id": "video10723", "sen_id": 258941}, {"caption": "the men and women are dancing on music together", "video_id": "video10723", "sen_id": 258942}, {"caption": "a group of young people drink and dance at an outdoor party", "video_id": "video10723", "sen_id": 258943}, {"caption": "the boys and girls are dancing in a party and the men sitting and watching", "video_id": "video10723", "sen_id": 258944}, {"caption": "there are some people dancing and enjoying", "video_id": "video10723", "sen_id": 258945}, {"caption": "a large crowd of people are dancing in bathing suits to music", "video_id": "video10723", "sen_id": 258946}, {"caption": "many people is dancing and enjoyed with friends", "video_id": "video10723", "sen_id": 258947}, {"caption": "a man giving a totally lost and dazed expression while other girls and boys are having a gala time at the dancing", "video_id": "video10723", "sen_id": 258948}, {"caption": "bunch of people dancing shirtless in spring break beach", "video_id": "video10723", "sen_id": 258949}, {"caption": "young adults dancing in swimwear at a party with dance music playing", "video_id": "video10723", "sen_id": 258950}, {"caption": "a group of people girate and shake themselves while being scantily clad", "video_id": "video10723", "sen_id": 258951}, {"caption": "sexy girl dancing and singing very very hot", "video_id": "video10723", "sen_id": 258952}, {"caption": "a music party celebration in a pub with huge crowd", "video_id": "video10723", "sen_id": 258953}, {"caption": "in the party many boys and girls dancing with two piece dress", "video_id": "video10723", "sen_id": 258954}, {"caption": "friends enjoy the party and serve the dish to his friends", "video_id": "video10723", "sen_id": 258955}, {"caption": "man men and women are partying together at a party", "video_id": "video10723", "sen_id": 258956}, {"caption": "college kids on spring break are dancing to club music", "video_id": "video10723", "sen_id": 258957}, {"caption": "boys and girl dancing without clothes in club and many person watching displaying on screen", "video_id": "video10723", "sen_id": 258958}, {"caption": "a bunch of young partiers dance in swimsuits on spring break", "video_id": "video10723", "sen_id": 258959}, {"caption": "a person stirs batter in a bowl and shifts other peices as they fry on a hot griddle", "video_id": "video10845", "sen_id": 258960}, {"caption": "a woman is watching a man cook food in an outside vending area", "video_id": "video10845", "sen_id": 258961}, {"caption": "a man is beating eggs in a red container with a wooden spoon he then flips an omlette on the stove with a metal spatula", "video_id": "video10845", "sen_id": 258962}, {"caption": "a person stands at a counter preparing a meal from a bowl", "video_id": "video10845", "sen_id": 258963}, {"caption": "a man in kitchen mixing something aand shaking frying", "video_id": "video10845", "sen_id": 258964}, {"caption": "there is a man making a dish in the kitchen with oil", "video_id": "video10845", "sen_id": 258965}, {"caption": "the person cooks the food in the kitchen", "video_id": "video10845", "sen_id": 258966}, {"caption": "a man cooking in fromt of a window with cars passing by", "video_id": "video10845", "sen_id": 258967}, {"caption": "a man is stirring food and flipping food over", "video_id": "video10845", "sen_id": 258968}, {"caption": "a person mixes delicious food and cooks on a plate", "video_id": "video10845", "sen_id": 258969}, {"caption": "a man is displaying making of some beverage and snacks", "video_id": "video10845", "sen_id": 258970}, {"caption": "a man mixes batter in a red container and flips dough on a fryer", "video_id": "video10845", "sen_id": 258971}, {"caption": "a street vendor prepares a fried dough recipe on a large flat fry pan", "video_id": "video10845", "sen_id": 258972}, {"caption": "a man prepares batter and flips a piece of food in hot oil in a restaurant kitchen", "video_id": "video10845", "sen_id": 258973}, {"caption": "a person mixing liquid in a bucket and cooking something on a large pan", "video_id": "video10845", "sen_id": 258974}, {"caption": "a man in a brown shirt mixing batter in a pink container", "video_id": "video10845", "sen_id": 258975}, {"caption": "a woman in a restaurant stirring some food and them another person commenting on how golden brown some meat was", "video_id": "video10845", "sen_id": 258976}, {"caption": "a street side eatery cook stirs some batter with which has made a pancake which he shows being fried on the plate", "video_id": "video10845", "sen_id": 258977}, {"caption": "a man is mixing something in a glass with spoon and frying something in an oil", "video_id": "video10845", "sen_id": 258978}, {"caption": "the man quickly stirs the batter then flips the food that is cooking on the pan", "video_id": "video10845", "sen_id": 258979}, {"caption": "in a kitchen the grandfather and grandmother is explaining their grandson on cooking while showing a raw chicken on the table", "video_id": "video11586", "sen_id": 258980}, {"caption": "a woman and a boy talking to a man about cooking a chicken the lady had a white apron on with a character on it", "video_id": "video11586", "sen_id": 258981}, {"caption": "a family discusses how to prepare a turkey for the oven", "video_id": "video11586", "sen_id": 258982}, {"caption": "old lady where talking near them is smart little boy he wear blue dress", "video_id": "video11586", "sen_id": 258983}, {"caption": "a couple discusses how to prepare a chicken carcass for cooking", "video_id": "video11586", "sen_id": 258984}, {"caption": "a women teaches on cooking tips to others around", "video_id": "video11586", "sen_id": 258985}, {"caption": "a boy talking with his parents", "video_id": "video11586", "sen_id": 258986}, {"caption": "women chef explaining about chicken to men and young men and whole chicken kept on the table", "video_id": "video11586", "sen_id": 258987}, {"caption": "a family having a discussing about a chicken in a kitchen", "video_id": "video11586", "sen_id": 258988}, {"caption": "a man offering to cook the chicken for dinner for his wife while she takes a walk", "video_id": "video11586", "sen_id": 258989}, {"caption": " and man all in a kitchen talking about a raw chicken", "video_id": "video11586", "sen_id": 258990}, {"caption": " and younger man all stand around preparing a chicken to be cooked", "video_id": "video11586", "sen_id": 258991}, {"caption": "the lady is a special guest to a man and his child they together prepared a chicken item with deep discussion", "video_id": "video11586", "sen_id": 258992}, {"caption": "a family of three are in their kitchen talking about food", "video_id": "video11586", "sen_id": 258993}, {"caption": "a group of people are doing something inside", "video_id": "video11586", "sen_id": 258994}, {"caption": "three people in a kitchen preparing chicken to cook", "video_id": "video11586", "sen_id": 258995}, {"caption": "a family is pointing at a raw chicken the family is a boy a lady and a man", "video_id": "video11586", "sen_id": 258996}, {"caption": "chef tony is preparing to put a turkey in the oven in an oblong pan", "video_id": "video11586", "sen_id": 258997}, {"caption": "a boy holds a man and woman on the shoulders while they stand in a kitchen", "video_id": "video11586", "sen_id": 258998}, {"caption": "some people in a kitchen are talking about thigns", "video_id": "video11586", "sen_id": 258999}, {"caption": "children picking cotton", "video_id": "video11774", "sen_id": 259000}, {"caption": "a group of children are picking cotton from branches", "video_id": "video11774", "sen_id": 259001}, {"caption": "children appear to be picking flowers outdoors the narration sounds like it s in the french language", "video_id": "video11774", "sen_id": 259002}, {"caption": "young girls with black hair pick cotton off branches with green leaves", "video_id": "video11774", "sen_id": 259003}, {"caption": "a young girl with a purple necklace and pink shirt picks cotton", "video_id": "video11774", "sen_id": 259004}, {"caption": "a little girl taking flowers from the plant", "video_id": "video11774", "sen_id": 259005}, {"caption": "a lady plugs the flowers from the plant and put it in the bucket", "video_id": "video11774", "sen_id": 259006}, {"caption": "a small girl is plucking flowers from a plant", "video_id": "video11774", "sen_id": 259007}, {"caption": "a young girl havesting vegetables into a large brown wooden bowl", "video_id": "video11774", "sen_id": 259008}, {"caption": "people are picking plants in a forect and putting the in a bowel", "video_id": "video11774", "sen_id": 259009}, {"caption": "all persons are gathering a cotton on a plant", "video_id": "video11774", "sen_id": 259010}, {"caption": "a girl picks white cotton balls from a brown boll growing on a green shrub with three-pointed leaves and places the cotton in a brown bowl she is carrying", "video_id": "video11774", "sen_id": 259011}, {"caption": "a girls are biting a cotton seed from plant", "video_id": "video11774", "sen_id": 259012}, {"caption": "a girl with long hair is picking cotton with her hands", "video_id": "video11774", "sen_id": 259013}, {"caption": "a kid in a green shirt is doing something", "video_id": "video11774", "sen_id": 259014}, {"caption": "people is in a field picking some cotton", "video_id": "video11774", "sen_id": 259015}, {"caption": "a tribal girl is picking leafs off of a tree", "video_id": "video11774", "sen_id": 259016}, {"caption": "a lady is priking some fruits and flowers from a plant in a garden", "video_id": "video11774", "sen_id": 259017}, {"caption": "a little girl is picking cotton in a field", "video_id": "video11774", "sen_id": 259018}, {"caption": "a woman with brown hair is picking a plant", "video_id": "video11774", "sen_id": 259019}, {"caption": "a chef in a kitchen explaining about some dish", "video_id": "video12179", "sen_id": 259020}, {"caption": "a chicken is shown and then a chef uses white wine vinegar to add to the fat from the chicken", "video_id": "video12179", "sen_id": 259021}, {"caption": "a man in the kitchen prepares a pan for food on the stove", "video_id": "video12179", "sen_id": 259022}, {"caption": "a professional chef putting white wine vinegar in the pan preparing for some recipe", "video_id": "video12179", "sen_id": 259023}, {"caption": "a cooking program with a man showing how to make glaze with white wine for a chicken", "video_id": "video12179", "sen_id": 259024}, {"caption": "a man wearing white color dress is pouring oil in the container", "video_id": "video12179", "sen_id": 259025}, {"caption": "in a kitchen someone pours oil into a hot pan", "video_id": "video12179", "sen_id": 259026}, {"caption": "a cook prepares a meal in his kitchen", "video_id": "video12179", "sen_id": 259027}, {"caption": "in the kitchen a man in an apron is getting ready to cook", "video_id": "video12179", "sen_id": 259028}, {"caption": "a chef is pouring vinegar into a pan in a kitchen", "video_id": "video12179", "sen_id": 259029}, {"caption": "a chef glazing his pan with white wine", "video_id": "video12179", "sen_id": 259030}, {"caption": "a man in all white is preparing a meal in his kitchen", "video_id": "video12179", "sen_id": 259031}, {"caption": "a chef pouring vinegar into a pan with a whole cooked chicken on a cutting board", "video_id": "video12179", "sen_id": 259032}, {"caption": "a man adds ingredients to a pan in the kitchen", "video_id": "video12179", "sen_id": 259033}, {"caption": "a man a kitchen is preparing a meal he has on all white pants and shirt he also has a white smock on to keep his clothes clean", "video_id": "video12179", "sen_id": 259034}, {"caption": "the chef is showing that he is deglazing a pan", "video_id": "video12179", "sen_id": 259035}, {"caption": "a man is cooking a dish using vinegar as one of the ingredient", "video_id": "video12179", "sen_id": 259036}, {"caption": "a professional chef shows how to deglaze the crunchy bits with some white wine vinegar", "video_id": "video12179", "sen_id": 259037}, {"caption": "a male chef adds white wine vinegar to the juices of a cooked poultry before beginning to cut the body", "video_id": "video12179", "sen_id": 259038}, {"caption": "a chef in a kitchen is cutting up some food", "video_id": "video12179", "sen_id": 259039}, {"caption": "man wearing a gold bracelet and wedding ring is chopping up garlic in a stir fry cooking video", "video_id": "video11290", "sen_id": 259040}, {"caption": "this person is showing how to properly cut vegetables with a butcher kinfe", "video_id": "video11290", "sen_id": 259041}, {"caption": "a man is chopping a green chilli and a gralic", "video_id": "video11290", "sen_id": 259042}, {"caption": "a man chops up peppers and garlic for his stir fry", "video_id": "video11290", "sen_id": 259043}, {"caption": "a man cutting with knife mixing dish vegetables inside kitchen to prepare to serve to eat displaying on screen", "video_id": "video11290", "sen_id": 259044}, {"caption": "there is a man chopping chilies on the table", "video_id": "video11290", "sen_id": 259045}, {"caption": "a person is chopping and dicing foods at high speeds", "video_id": "video11290", "sen_id": 259046}, {"caption": "a person is cutting herbs with a large knife on a cutting boad", "video_id": "video11290", "sen_id": 259047}, {"caption": "a man is cutting vegetables on a cutting board and adding them to a stir fry", "video_id": "video11290", "sen_id": 259048}, {"caption": "man chopping vegetable and making stir fry", "video_id": "video11290", "sen_id": 259049}, {"caption": "man is chopping garlic up close as a part of a stir fry", "video_id": "video11290", "sen_id": 259050}, {"caption": "a man chopping vegetables in preperation for a stiry-fry", "video_id": "video11290", "sen_id": 259051}, {"caption": "two hands cut some food over a white cutting board", "video_id": "video11290", "sen_id": 259052}, {"caption": "i man is chopping up garlic with a knife for a stir fry", "video_id": "video11290", "sen_id": 259053}, {"caption": "a man cuts up garlic and spices on a white cutting board", "video_id": "video11290", "sen_id": 259054}, {"caption": "a man with a gold bracelet is using a small cleaver to chop up some ingredients", "video_id": "video11290", "sen_id": 259055}, {"caption": "a cook talks about a stir fry dish he is preparing", "video_id": "video11290", "sen_id": 259056}, {"caption": "chili is cut into pieces using big knife then ginger is also cut into pieces", "video_id": "video11290", "sen_id": 259057}, {"caption": "a man is cut the chilly on a table into pieces", "video_id": "video11290", "sen_id": 259058}, {"caption": "a guy is cutting up some food with a knife", "video_id": "video11290", "sen_id": 259059}, {"caption": "there are some hard rocks on the sea", "video_id": "video11802", "sen_id": 259060}, {"caption": "some plantations and big rocks near large mass of water", "video_id": "video11802", "sen_id": 259061}, {"caption": "its sea shore where many small plants are grown", "video_id": "video11802", "sen_id": 259062}, {"caption": "fast paced music playing while scenes of a beach with rocks are being shown", "video_id": "video11802", "sen_id": 259063}, {"caption": "jagged rocks jut out of the surf near a grassy beach", "video_id": "video11802", "sen_id": 259064}, {"caption": "a rocky coast line with islands is seen from the coast", "video_id": "video11802", "sen_id": 259065}, {"caption": "the ocean is crashing into rocks along the shoreline and there are some seabirds flying around", "video_id": "video11802", "sen_id": 259066}, {"caption": "music plays over shots of beautiful landscapes", "video_id": "video11802", "sen_id": 259067}, {"caption": "beautiful view of large rocks in a blue ocean there are trees and plants on the land", "video_id": "video11802", "sen_id": 259068}, {"caption": "woods and then a coastal area where water is hitting sand on a beach and rocks", "video_id": "video11802", "sen_id": 259069}, {"caption": "panning of a view of an ocean and beach set to rock music", "video_id": "video11802", "sen_id": 259070}, {"caption": "an exploration about the trees in the forest and the sea", "video_id": "video11802", "sen_id": 259071}, {"caption": "a beautiful scene of a garden and a sea beach", "video_id": "video11802", "sen_id": 259072}, {"caption": "a water scene mountain birds flying trees beside person inside forest displaying on the screen", "video_id": "video11802", "sen_id": 259073}, {"caption": "panning shots of ocean beaches and birds", "video_id": "video11802", "sen_id": 259074}, {"caption": "the ocean with crystal blue water with rock formations purtruding in various places", "video_id": "video11802", "sen_id": 259075}, {"caption": "there is a camera photographing a beach with rocks", "video_id": "video11802", "sen_id": 259076}, {"caption": "a forest view followed by the view of a sea coast with rocks", "video_id": "video11802", "sen_id": 259077}, {"caption": "a large body of water has huge boulders and there are plants growing around it", "video_id": "video11802", "sen_id": 259078}, {"caption": "a person is showing mountains and rocky ocean", "video_id": "video11802", "sen_id": 259079}, {"caption": "women dressed in revealing clothing are being displayed to electronic music", "video_id": "video10881", "sen_id": 259080}, {"caption": "ladies with sexy dresses is posing for photos", "video_id": "video10881", "sen_id": 259081}, {"caption": "models in the bigni dresslooks hot and sexyeverybody are beautiful", "video_id": "video10881", "sen_id": 259082}, {"caption": "a lady in a bra poses for the camera in her lingerie", "video_id": "video10881", "sen_id": 259083}, {"caption": "pictures of beautiful women in swimsuit and wearing lingerie", "video_id": "video10881", "sen_id": 259084}, {"caption": "all woman s are wearing beautiful bra with different colours", "video_id": "video10881", "sen_id": 259085}, {"caption": "a beautiful woman poses for pictures in bikinis and bras", "video_id": "video10881", "sen_id": 259086}, {"caption": "sexy girl with the bikini dress they are hot looking great", "video_id": "video10881", "sen_id": 259087}, {"caption": "short video of beautiful women in underwear set to music", "video_id": "video10881", "sen_id": 259088}, {"caption": "women in bikinis are being shown in a slideshow", "video_id": "video10881", "sen_id": 259089}, {"caption": "there is a woman showing her bra in a room", "video_id": "video10881", "sen_id": 259090}, {"caption": "a stunningly beautiful woman poses in swimsuits and bras", "video_id": "video10881", "sen_id": 259091}, {"caption": "a woman in lingerie is posing for a shoot", "video_id": "video10881", "sen_id": 259092}, {"caption": "bunch of sexy brunette in bikini s photograph being shown on screen", "video_id": "video10881", "sen_id": 259093}, {"caption": "a woman in a white bra is standing", "video_id": "video10881", "sen_id": 259094}, {"caption": "women dancing and doing fashion for photo shots", "video_id": "video10881", "sen_id": 259095}, {"caption": "a attractive female model posing in colorful bras", "video_id": "video10881", "sen_id": 259096}, {"caption": "my video will not load on computer just wanted to let you know i apologize", "video_id": "video10881", "sen_id": 259097}, {"caption": "sexy brunette in bikini top photo being shown on screen", "video_id": "video10881", "sen_id": 259098}, {"caption": "a woman is showing her tits in a bra", "video_id": "video10881", "sen_id": 259099}, {"caption": "some one driving the vehicle on a muddy road", "video_id": "video10668", "sen_id": 259100}, {"caption": "a car is driving in a wet and muddy open area", "video_id": "video10668", "sen_id": 259101}, {"caption": "a car is running in the water stagnant soil road", "video_id": "video10668", "sen_id": 259102}, {"caption": "someone is driver a sports car in muddy road and crossing it", "video_id": "video10668", "sen_id": 259103}, {"caption": "a vehicle plows and splashes its way across muddy terrain", "video_id": "video10668", "sen_id": 259104}, {"caption": "there is a toy moving in to the mud", "video_id": "video10668", "sen_id": 259105}, {"caption": "a vehicle driving fast threw muddy land and splashing mud", "video_id": "video10668", "sen_id": 259106}, {"caption": "a remote control vehicle drives through a muddy area of a farm", "video_id": "video10668", "sen_id": 259107}, {"caption": "an off road vehicle is being driven through a huge mud puddle", "video_id": "video10668", "sen_id": 259108}, {"caption": "a remote control car with a camera attached riding through mud", "video_id": "video10668", "sen_id": 259109}, {"caption": "there is a vehicle crashed through the mud", "video_id": "video10668", "sen_id": 259110}, {"caption": "a car driving through a muddy course with mud splashy up", "video_id": "video10668", "sen_id": 259111}, {"caption": "a small remote control car runs through a long mud hole in the country", "video_id": "video10668", "sen_id": 259112}, {"caption": "cross country race of motor car though the roughness of high range", "video_id": "video10668", "sen_id": 259113}, {"caption": "a person is driving on a muddy road", "video_id": "video10668", "sen_id": 259114}, {"caption": "a small car can be seen racing through mud and water with parts of the video being in slow motion", "video_id": "video10668", "sen_id": 259115}, {"caption": "a person driving the vehicle very fast on off road", "video_id": "video10668", "sen_id": 259116}, {"caption": "a trucks drives through a muddle felid and splashes mud and muck everywhere", "video_id": "video10668", "sen_id": 259117}, {"caption": "a muddy dirt road is seen through the view of the rider of an atv on a brightly sunny day", "video_id": "video10668", "sen_id": 259118}, {"caption": "some people are driving around in the mud", "video_id": "video10668", "sen_id": 259119}, {"caption": "a person preparing chicken fry on a oil bowl", "video_id": "video11728", "sen_id": 259120}, {"caption": "men is cooking meat in the utensil and putting oil", "video_id": "video11728", "sen_id": 259121}, {"caption": "a person is putting red meat from a paper plate into a black pot full of bioling water on a gas stove", "video_id": "video11728", "sen_id": 259122}, {"caption": "a man is boiling a water and add a meat into it", "video_id": "video11728", "sen_id": 259123}, {"caption": "a man is showing you how to boil beef in a pot of water", "video_id": "video11728", "sen_id": 259124}, {"caption": "in the kitchen there is a man cooking meet", "video_id": "video11728", "sen_id": 259125}, {"caption": "a close up instructional demonstrates how to cook red meat while a pot of water boils on the gas stove top", "video_id": "video11728", "sen_id": 259126}, {"caption": "a man is showing how to prepare meat for a dish", "video_id": "video11728", "sen_id": 259127}, {"caption": "an inhome chef begins a recipe by putting meat into some boiling water", "video_id": "video11728", "sen_id": 259128}, {"caption": "a man rubs raw meat between his fingers before popping it into a pot of boiling water", "video_id": "video11728", "sen_id": 259129}, {"caption": "a man is holding a white bowl with meat in it over a pot of boiling water", "video_id": "video11728", "sen_id": 259130}, {"caption": "in a oil container chicken pieces are poured", "video_id": "video11728", "sen_id": 259131}, {"caption": "a man is talking about the texture of a meat before placing it into a pot of boiling water", "video_id": "video11728", "sen_id": 259132}, {"caption": "a cook puts meat inside boiling water on a stove", "video_id": "video11728", "sen_id": 259133}, {"caption": "in a kitchen a man showing how to add minced meat in the boiling water on the stove", "video_id": "video11728", "sen_id": 259134}, {"caption": "a man cooking with a plate of raw red meat and placing that meat in a black pot of boiling water", "video_id": "video11728", "sen_id": 259135}, {"caption": "the person places the food in the pot of hot water", "video_id": "video11728", "sen_id": 259136}, {"caption": "a man holds raw meat in a white plate before placing it in a pot full of boiling water", "video_id": "video11728", "sen_id": 259137}, {"caption": "a man putting the meat in the boiling water which is on the gas stove", "video_id": "video11728", "sen_id": 259138}, {"caption": "a person is putting some meat in the boiling water and says how to cook the receipe and the ingrediants needed for it", "video_id": "video11728", "sen_id": 259139}, {"caption": "it shows the wonderful eye appealing video of the snow full hill station", "video_id": "video11745", "sen_id": 259140}, {"caption": "in the tundra there are frosty mountains sheer cliffs frozen over with ice and pine trees grouped together", "video_id": "video11745", "sen_id": 259141}, {"caption": "some trees surrounded by snow and a mountain top with a cloudy ski", "video_id": "video11745", "sen_id": 259142}, {"caption": "a snow land scene mountain trees displaying on screen", "video_id": "video11745", "sen_id": 259143}, {"caption": "a snow covered mountains is being shown and it is covered with ice throughout the area", "video_id": "video11745", "sen_id": 259144}, {"caption": "water flowing in full speed with no people around", "video_id": "video11745", "sen_id": 259145}, {"caption": "there are trees frozen ice and mountains in the scenery", "video_id": "video11745", "sen_id": 259146}, {"caption": "icey climate scenes of a distant town the scenes are being presented with uptempo music", "video_id": "video11745", "sen_id": 259147}, {"caption": "the stream smoothly flowing has been frozen to form ice", "video_id": "video11745", "sen_id": 259148}, {"caption": "a person is showing icy mountain and cloudy weather", "video_id": "video11745", "sen_id": 259149}, {"caption": "a mountain top with snow on top of it", "video_id": "video11745", "sen_id": 259150}, {"caption": "a man is telling about a snow hill", "video_id": "video11745", "sen_id": 259151}, {"caption": "beautiful pictures of the ice in the snowy mountains", "video_id": "video11745", "sen_id": 259152}, {"caption": "the mountain is full of snow and so are the trees and they bring delight to our hearts", "video_id": "video11745", "sen_id": 259153}, {"caption": "ice covering mountains and land is shown in a scenic view", "video_id": "video11745", "sen_id": 259154}, {"caption": "scenery of a snowy mountain which proceeds to zoom out", "video_id": "video11745", "sen_id": 259155}, {"caption": "due to change in temperature the water got freezes into ice it looks awesome", "video_id": "video11745", "sen_id": 259156}, {"caption": "a snow mountain trees beside inside forest still picture displaying on screen", "video_id": "video11745", "sen_id": 259157}, {"caption": "frozen ice hanging from the side of a mountain with trees on it", "video_id": "video11745", "sen_id": 259158}, {"caption": "some people are skiing in a snow covered forest", "video_id": "video11745", "sen_id": 259159}, {"caption": "the dat harmony org is chasing after some guys who fled from something", "video_id": "video11812", "sen_id": 259160}, {"caption": "trespassers are being killed in a video game", "video_id": "video11812", "sen_id": 259161}, {"caption": "a fast paced first person shooter game with robots fighting each other", "video_id": "video11812", "sen_id": 259162}, {"caption": "game play of a first person shooter game is shown while someone reviews it", "video_id": "video11812", "sen_id": 259163}, {"caption": "video games the running figures are being chased with guns and shot", "video_id": "video11812", "sen_id": 259164}, {"caption": "there is a commando attacking someone with a gun", "video_id": "video11812", "sen_id": 259165}, {"caption": "a video game where the creature uses a laser gun to shoot the enemies", "video_id": "video11812", "sen_id": 259166}, {"caption": "gameplay footage of a sci-fi themed competitive fps game", "video_id": "video11812", "sen_id": 259167}, {"caption": "a guy describes a video game while playing it", "video_id": "video11812", "sen_id": 259168}, {"caption": "a man narrates the actions of a player in a video game", "video_id": "video11812", "sen_id": 259169}, {"caption": "men commentate over people competing against each other in a combat video game", "video_id": "video11812", "sen_id": 259170}, {"caption": "a gunfight on the streets of a video game world two men talk about the action", "video_id": "video11812", "sen_id": 259171}, {"caption": "a three dimensional first person shooting game is being played", "video_id": "video11812", "sen_id": 259172}, {"caption": "a video animation of video game firing guns shots attacking cartoon running displaying on screen", "video_id": "video11812", "sen_id": 259173}, {"caption": "shooter video game in the background the voice of several men commenting", "video_id": "video11812", "sen_id": 259174}, {"caption": "two guys giving video game tutorial while they play a shooting game", "video_id": "video11812", "sen_id": 259175}, {"caption": "people playing a first person shooter comment on events in game", "video_id": "video11812", "sen_id": 259176}, {"caption": "animated game aims at shooting the enemy to win the game", "video_id": "video11812", "sen_id": 259177}, {"caption": "video game in a colorful settiings shooting and running in progress", "video_id": "video11812", "sen_id": 259178}, {"caption": "someone is playing a first person video game", "video_id": "video11812", "sen_id": 259179}, {"caption": "asus zenfone executive introduces the new phone and explain about the features like camera and other things in the meeting", "video_id": "video10108", "sen_id": 259180}, {"caption": "a man talking in a foreign language is holding a smart phone in his hand", "video_id": "video10108", "sen_id": 259181}, {"caption": "the man holding the cell phone talks in front of the large screen", "video_id": "video10108", "sen_id": 259182}, {"caption": "a man is talking about a mobile phone features", "video_id": "video10108", "sen_id": 259183}, {"caption": "in this video clip is about asus zenfone selfie", "video_id": "video10108", "sen_id": 259184}, {"caption": " martin puitzner talking about a selfie and the phone he is holding in another language", "video_id": "video10108", "sen_id": 259185}, {"caption": "a mobile is displayed with various features", "video_id": "video10108", "sen_id": 259186}, {"caption": "a guy is at a launch event of the asus zenfone he is reviewing and giving the specification details to the viewers", "video_id": "video10108", "sen_id": 259187}, {"caption": "a man is telling about a moible phone and its features", "video_id": "video10108", "sen_id": 259188}, {"caption": "a boy with blue dress mobile in hand speaking and girl standing beside displaying on screen", "video_id": "video10108", "sen_id": 259189}, {"caption": "a person with suit explaining the features of a new mobile", "video_id": "video10108", "sen_id": 259190}, {"caption": "a man in blue dress holding a black smartphone and explaining its features", "video_id": "video10108", "sen_id": 259191}, {"caption": "a man wearing a blue jacket over a grey shirt has lanyards around his neck with identification while he talks about a cell phone he displays in his hand", "video_id": "video10108", "sen_id": 259192}, {"caption": "a man speaks to the camera at a smartphone tradeshow", "video_id": "video10108", "sen_id": 259193}, {"caption": "a man who is talking on camera about a cell phone with several people popping in and out of the background", "video_id": "video10108", "sen_id": 259194}, {"caption": "a guy here is describing about the features of the phone saying about the front camera for selfy", "video_id": "video10108", "sen_id": 259195}, {"caption": "a reporter stands and explains about the smart phone", "video_id": "video10108", "sen_id": 259196}, {"caption": "m mobilenet cz one boy talks about mobile", "video_id": "video10108", "sen_id": 259197}, {"caption": "a man who is talking about the zenfone and features", "video_id": "video10108", "sen_id": 259198}, {"caption": "the man with the large cell phone talks about it features", "video_id": "video10108", "sen_id": 259199}, {"caption": "a athlete in white jersey jumping his maximum", "video_id": "video11414", "sen_id": 259200}, {"caption": "a person is participating in a long jump on large track", "video_id": "video11414", "sen_id": 259201}, {"caption": "a man is participate in the long jump", "video_id": "video11414", "sen_id": 259202}, {"caption": "a sports man is doing long-jump in athletic ground", "video_id": "video11414", "sen_id": 259203}, {"caption": "the athletes are running long jump and the winner is declared then itself", "video_id": "video11414", "sen_id": 259204}, {"caption": "there is a white jersey athlete jumping on the track", "video_id": "video11414", "sen_id": 259205}, {"caption": " in a white track and field outfit performing a triple jump in an outside venue", "video_id": "video11414", "sen_id": 259206}, {"caption": "a large african man performs a triple jump in a track meet in a stadium", "video_id": "video11414", "sen_id": 259207}, {"caption": "a track and field runner taking several leaps before making a huge one into a sand pit", "video_id": "video11414", "sen_id": 259208}, {"caption": "a replay of a contestant in a long jumping competition", "video_id": "video11414", "sen_id": 259209}, {"caption": "a group of people racing on a track", "video_id": "video11414", "sen_id": 259210}, {"caption": "athlete players are in running race and long jumps fast", "video_id": "video11414", "sen_id": 259211}, {"caption": "an african man performs a triple jump in a track and field competition", "video_id": "video11414", "sen_id": 259212}, {"caption": "a player were fall down in the game and it was replayed slowly again", "video_id": "video11414", "sen_id": 259213}, {"caption": "a person in white clothes is running and jumping", "video_id": "video11414", "sen_id": 259214}, {"caption": "a atheletics are running to olympics on ground", "video_id": "video11414", "sen_id": 259215}, {"caption": "a long jump g sport is going on a ground", "video_id": "video11414", "sen_id": 259216}, {"caption": "a man is jumping in a triple jump competition", "video_id": "video11414", "sen_id": 259217}, {"caption": "a player runs fast and makes a long jump", "video_id": "video11414", "sen_id": 259218}, {"caption": "a person is running on a track and jumping", "video_id": "video11414", "sen_id": 259219}, {"caption": "a boat heading further out into a body of water", "video_id": "video12954", "sen_id": 259220}, {"caption": "a man speaks while scenes of water and ancient buildings are shown", "video_id": "video12954", "sen_id": 259221}, {"caption": "a person on boat while a place full of pillars and a boat moves in the ocean", "video_id": "video12954", "sen_id": 259222}, {"caption": "a man speaking about coming in the deep areas with him", "video_id": "video12954", "sen_id": 259223}, {"caption": "a man s voice is heard inviting us to join him to see remote places while a white column lined walk is shown followed by a view of a lake and mountains from a boat in the lake", "video_id": "video12954", "sen_id": 259224}, {"caption": "a man is telling the viewer to follow him on a travel adventure", "video_id": "video12954", "sen_id": 259225}, {"caption": "a man is speaking about a land and its features while some is riding in a boat", "video_id": "video12954", "sen_id": 259226}, {"caption": "a person is near white columns and then rides a boat through the sea", "video_id": "video12954", "sen_id": 259227}, {"caption": "a man is travelling in the boat on the sea", "video_id": "video12954", "sen_id": 259228}, {"caption": "a trip and travel from some sculpture to a watery seen with a boat", "video_id": "video12954", "sen_id": 259229}, {"caption": "a man offering to take viewers on a journey to beautiful remote areas", "video_id": "video12954", "sen_id": 259230}, {"caption": "a variety of different scenes are being showcased in the scene", "video_id": "video12954", "sen_id": 259231}, {"caption": "row of tall white pillars in a old village by the ocean", "video_id": "video12954", "sen_id": 259232}, {"caption": "a boat moving in water swiftly slowly man inside boat displaying on the screen", "video_id": "video12954", "sen_id": 259233}, {"caption": "a boat crosses a lake and white columns form a line beneath the blue sky", "video_id": "video12954", "sen_id": 259234}, {"caption": "awesome scenes of locations remote area to be visited", "video_id": "video12954", "sen_id": 259235}, {"caption": "someone is going by boat at a fast speed", "video_id": "video12954", "sen_id": 259236}, {"caption": "a man is riding in a boat across a big body of water", "video_id": "video12954", "sen_id": 259237}, {"caption": "a remote charming scenes attraction of tourists for the wonders", "video_id": "video12954", "sen_id": 259238}, {"caption": "a person is showing bunch of famous places in that city", "video_id": "video12954", "sen_id": 259239}, {"caption": "a man wearing a backpack is hiking through the mountains and filming himself with a selfie stick", "video_id": "video11408", "sen_id": 259240}, {"caption": "a man hiking on a mountain trail high enough up for snow patches", "video_id": "video11408", "sen_id": 259241}, {"caption": "a man films himself hiking down a mountain", "video_id": "video11408", "sen_id": 259242}, {"caption": "one man is hiking a treacherous terrain while recording his journey", "video_id": "video11408", "sen_id": 259243}, {"caption": "man filming himself walking along the edge of a mountain", "video_id": "video11408", "sen_id": 259244}, {"caption": "a man in kaaki and top with a hat is walking in a forest", "video_id": "video11408", "sen_id": 259245}, {"caption": "a man is hiking and documenting his adventure with a hand held camera", "video_id": "video11408", "sen_id": 259246}, {"caption": "a man walks along a mountain ridge with a set of tall trees in the background", "video_id": "video11408", "sen_id": 259247}, {"caption": "a man with backpack and tshirt walks on trail in the mountains", "video_id": "video11408", "sen_id": 259248}, {"caption": "a man with glass and bag is walking in a mountain lonely", "video_id": "video11408", "sen_id": 259249}, {"caption": "there is a man walking with a bag", "video_id": "video11408", "sen_id": 259250}, {"caption": "a man holding a camera and walking through the wilderness", "video_id": "video11408", "sen_id": 259251}, {"caption": "a guy taking video using a selfie stick while he was walking in a cliff road of a mountain", "video_id": "video11408", "sen_id": 259252}, {"caption": "a young man walking in the wilderness on a rocky path he seems to be well prepared as he has on long sleves a hat and even sun glasses to protect him from the elements", "video_id": "video11408", "sen_id": 259253}, {"caption": "a bearded man is hiking through a slightly snow-covered trail in the mountains", "video_id": "video11408", "sen_id": 259254}, {"caption": "a man with a backpack is hiking through a trail", "video_id": "video11408", "sen_id": 259255}, {"caption": "a man is talking on a narrow trail up a mountain in the cold", "video_id": "video11408", "sen_id": 259256}, {"caption": "a person with bag on back he has black cap", "video_id": "video11408", "sen_id": 259257}, {"caption": "a man hiking through the woods with spots of snow on the ground", "video_id": "video11408", "sen_id": 259258}, {"caption": "a person is hiking around in the woods", "video_id": "video11408", "sen_id": 259259}, {"caption": "a suv is driving down a desert dirt road", "video_id": "video10182", "sen_id": 259260}, {"caption": "a white car drives through a large desert", "video_id": "video10182", "sen_id": 259261}, {"caption": "a vehicle driving in the sand", "video_id": "video10182", "sen_id": 259262}, {"caption": "a man is driving a vehicle through the sands of desert dunes", "video_id": "video10182", "sen_id": 259263}, {"caption": "a white car moving on sand a man in blue dress color wearing cloth driving a car displaying on screen", "video_id": "video10182", "sen_id": 259264}, {"caption": "man in blue shirt driving white suv through sand dunes", "video_id": "video10182", "sen_id": 259265}, {"caption": "a test to see a vehicles capabilities inside of the sand", "video_id": "video10182", "sen_id": 259266}, {"caption": "a man is driving a white suv in then desert", "video_id": "video10182", "sen_id": 259267}, {"caption": "its desert place where white car is ddrivenits fully in brown color", "video_id": "video10182", "sen_id": 259268}, {"caption": "a white range rover drives aimlessly over golden dunes of desert sand", "video_id": "video10182", "sen_id": 259269}, {"caption": "a range rover perfomance on the deseart soil particles", "video_id": "video10182", "sen_id": 259270}, {"caption": "the white car is running in the dessert", "video_id": "video10182", "sen_id": 259271}, {"caption": "a man driving his white car in the desert", "video_id": "video10182", "sen_id": 259272}, {"caption": "an suv is driving through the dessert", "video_id": "video10182", "sen_id": 259273}, {"caption": "a siler car rides alone in an open desert", "video_id": "video10182", "sen_id": 259274}, {"caption": "james may drives a new range rover through some sand dunes", "video_id": "video10182", "sen_id": 259275}, {"caption": "a white jeep is driving through a desert", "video_id": "video10182", "sen_id": 259276}, {"caption": "a car is running in the dessert sand", "video_id": "video10182", "sen_id": 259277}, {"caption": "an interesting music while a white range rover drives in the desert", "video_id": "video10182", "sen_id": 259278}, {"caption": "a white van is seen driving through a desert", "video_id": "video10182", "sen_id": 259279}, {"caption": "a man being interview about driving he truck on an off road course", "video_id": "video10597", "sen_id": 259280}, {"caption": "a man driving a dirt truck getting a interview", "video_id": "video10597", "sen_id": 259281}, {"caption": "spectators watch a truck competition followed by an interview with a competitor", "video_id": "video10597", "sen_id": 259282}, {"caption": "a man driving a monster truck drove the truck into the water", "video_id": "video10597", "sen_id": 259283}, {"caption": "there is a red truck driven by a man with a helmet on while off roading and crashing on a dirt mound", "video_id": "video10597", "sen_id": 259284}, {"caption": "a truck driving off road on a dirt track", "video_id": "video10597", "sen_id": 259285}, {"caption": "a man driving a truck with big tires on a dirt road", "video_id": "video10597", "sen_id": 259286}, {"caption": "a big truck is rock climbing down a hill when the axle snaps and the driver is interviewed after", "video_id": "video10597", "sen_id": 259287}, {"caption": "a cross country light heavy vehicle race when the front axle is broken", "video_id": "video10597", "sen_id": 259288}, {"caption": "a truck seen going down an off read course while driver is being interviewed about what happened", "video_id": "video10597", "sen_id": 259289}, {"caption": "a four wheel drive truck tries to go through a large mud hole and up a small bank and brakes a axle and gets stuck in the mud", "video_id": "video10597", "sen_id": 259290}, {"caption": "the drivers are racing the car while people are watching it", "video_id": "video10597", "sen_id": 259291}, {"caption": "an off road pick up goes downhill then gets stuck in a large hole", "video_id": "video10597", "sen_id": 259292}, {"caption": "a cross country race in light truck is held up in a ditch with broken axle", "video_id": "video10597", "sen_id": 259293}, {"caption": "a man in a big wheeled truck talking about what happened to his truck", "video_id": "video10597", "sen_id": 259294}, {"caption": "two persons with red dressing is driving a truck car in hill having mudand truck car got struck in mud", "video_id": "video10597", "sen_id": 259295}, {"caption": "an old modified half ton truck with no doors and large tires is being driven by a man in a red shirt and helmet in an open area with bystanders", "video_id": "video10597", "sen_id": 259296}, {"caption": "a truck is struggling to get up a dirt hill and then interviewed on the struggle to get out of a ditch", "video_id": "video10597", "sen_id": 259297}, {"caption": "some red uniformed man on a off road vehicle at a restricted land", "video_id": "video10597", "sen_id": 259298}, {"caption": "some people inside of a vehicle are parked", "video_id": "video10597", "sen_id": 259299}, {"caption": "ingredients are kept in separate bowls to prepare some food", "video_id": "video10677", "sen_id": 259300}, {"caption": "a woman talking about how to cook a certain type of food", "video_id": "video10677", "sen_id": 259301}, {"caption": "a woman talks about the ingredients she will be using in a recipe", "video_id": "video10677", "sen_id": 259302}, {"caption": "it is a woman talking about how to prepare engrdients", "video_id": "video10677", "sen_id": 259303}, {"caption": "in a kitchen a female is preparing ingredientsonions to make the recipe", "video_id": "video10677", "sen_id": 259304}, {"caption": "a woman in a kitchen showing ingredients to a recipe and describing them", "video_id": "video10677", "sen_id": 259305}, {"caption": "a person talking about the different ingredients needed for a recipe", "video_id": "video10677", "sen_id": 259306}, {"caption": "a lady displaying various condiments and onion on her kitchen table explains how to create the basic paste using a mixer grinder", "video_id": "video10677", "sen_id": 259307}, {"caption": "a lady is describing a variety of foods laid out in different bowls", "video_id": "video10677", "sen_id": 259308}, {"caption": "a woman discusses mixing together various types of ingredients", "video_id": "video10677", "sen_id": 259309}, {"caption": "a lady says she is going to take the onion from the bowl and to crush once and to put and she keeps other ingredients on the table", "video_id": "video10677", "sen_id": 259310}, {"caption": "a man shows all food ingredients like onion and other items explains about how to cook", "video_id": "video10677", "sen_id": 259311}, {"caption": "in kitchen lady does cooking she says about required ingredientssmall onion is placed in yellow bowl with skin removed", "video_id": "video10677", "sen_id": 259312}, {"caption": "explaining preparation of chuttney - an indian curry in tamil language", "video_id": "video10677", "sen_id": 259313}, {"caption": "a woman is narraating cooking instructions in a language other than english so english subtitles are provided", "video_id": "video10677", "sen_id": 259314}, {"caption": "the ingredients of food are placed in the bowls on the table", "video_id": "video10677", "sen_id": 259315}, {"caption": "a chef talks about the ingredients she will be using for a dish", "video_id": "video10677", "sen_id": 259316}, {"caption": "an indian woman talking anoutthe various foods and spices she will be using to cook a meal", "video_id": "video10677", "sen_id": 259317}, {"caption": "a women showing ingredients on a cooking show", "video_id": "video10677", "sen_id": 259318}, {"caption": "some ingredients are lying on a kitchen table", "video_id": "video10677", "sen_id": 259319}, {"caption": "there is a man singing a rap song", "video_id": "video11515", "sen_id": 259320}, {"caption": "a young man head covered with cloth sings and dances", "video_id": "video11515", "sen_id": 259321}, {"caption": "a man is is singing a song and dancing", "video_id": "video11515", "sen_id": 259322}, {"caption": "a young man in black jacket is singing talking and dancing", "video_id": "video11515", "sen_id": 259323}, {"caption": "a man is lip syncing with a song and is dressed like a rapper", "video_id": "video11515", "sen_id": 259324}, {"caption": "there is man dancing and singing very cool", "video_id": "video11515", "sen_id": 259325}, {"caption": "a man in a black jacket white head bandana and dark sunglasses sings", "video_id": "video11515", "sen_id": 259326}, {"caption": "a person is singing the song at a time he is doing the dancing", "video_id": "video11515", "sen_id": 259327}, {"caption": "a young man dressed in gang styled jacket chain and head kerchief lip syncs a pop song in his bedroom", "video_id": "video11515", "sen_id": 259328}, {"caption": "a man in a black jacket with a white rag on his head lip synching to a song", "video_id": "video11515", "sen_id": 259329}, {"caption": "fan dressed up like aj mclean in a homemade music video lip-syncs to the backstreet boys song the call", "video_id": "video11515", "sen_id": 259330}, {"caption": "a man wearing black sunglasses and a silvrer chain is singing", "video_id": "video11515", "sen_id": 259331}, {"caption": "a guy showing off his lip synching skills in front of his buddies", "video_id": "video11515", "sen_id": 259332}, {"caption": "a man wearing a bandanna leather jacket and sunglasses lip syncing music and dancing", "video_id": "video11515", "sen_id": 259333}, {"caption": "a person shows his body language speaking styles", "video_id": "video11515", "sen_id": 259334}, {"caption": "a man wearing a black leather jacket and a white backwards cap lip syncs a song", "video_id": "video11515", "sen_id": 259335}, {"caption": "random guy suffering a seizure in a room while in the process of trying to sing", "video_id": "video11515", "sen_id": 259336}, {"caption": "a boy in black jacket wearing cloth singing dancing shaking body wearing glass beside persons standing watching displaying on screen", "video_id": "video11515", "sen_id": 259337}, {"caption": "a goofy kid lip sychs to a song in his room", "video_id": "video11515", "sen_id": 259338}, {"caption": "a wigger in a room thinks he is so cool", "video_id": "video11515", "sen_id": 259339}, {"caption": "a person is riding a car on road then slows down to stop for traffic signal", "video_id": "video11300", "sen_id": 259340}, {"caption": "car moves fast on a road with much traffic in the city", "video_id": "video11300", "sen_id": 259341}, {"caption": "a vehicle driving on the road with other vehicles", "video_id": "video11300", "sen_id": 259342}, {"caption": "a cars moving in row driving fast on road displaying building beside street on the screen shown displaying on screen", "video_id": "video11300", "sen_id": 259343}, {"caption": "there are cars on a main busy road palm trees and a white building", "video_id": "video11300", "sen_id": 259344}, {"caption": "there is a car moving on the road with control", "video_id": "video11300", "sen_id": 259345}, {"caption": "cockpit view of a car taking a stroll in the city", "video_id": "video11300", "sen_id": 259346}, {"caption": "a painted bus is diving down a city street", "video_id": "video11300", "sen_id": 259347}, {"caption": "a car driving down the street of a city to some music", "video_id": "video11300", "sen_id": 259348}, {"caption": "some cars are driving around in a city", "video_id": "video11300", "sen_id": 259349}, {"caption": "there is someone riding a car through the street", "video_id": "video11300", "sen_id": 259350}, {"caption": "a city bus rolls down a busy street in los angeles", "video_id": "video11300", "sen_id": 259351}, {"caption": "cars traveling in busy road", "video_id": "video11300", "sen_id": 259352}, {"caption": "a car driving down a busy street while techno music plays in the background", "video_id": "video11300", "sen_id": 259353}, {"caption": "some cars are parked in a city road", "video_id": "video11300", "sen_id": 259354}, {"caption": "a vehicle is driving down the street passing cars and palm trees with blue skies and buildings in the background", "video_id": "video11300", "sen_id": 259355}, {"caption": "a person driving the vehicle very fast on road", "video_id": "video11300", "sen_id": 259356}, {"caption": "cars wait at a red light on a nice sunny city day", "video_id": "video11300", "sen_id": 259357}, {"caption": "a car driving on the street in a city with palm trees", "video_id": "video11300", "sen_id": 259358}, {"caption": "some trucks and cars are in a traffic jam", "video_id": "video11300", "sen_id": 259359}, {"caption": "a woman cuts a boiled egg into thin slices with a knife and then a mandolin", "video_id": "video12091", "sen_id": 259360}, {"caption": "there is a man cooking food and also mixing ingredients", "video_id": "video12091", "sen_id": 259361}, {"caption": "a woman explains her cooking technique in english and thai", "video_id": "video12091", "sen_id": 259362}, {"caption": "a woman is slicing mushrooms and other vegetables in a slicer placed on a chop board", "video_id": "video12091", "sen_id": 259363}, {"caption": "a egg and knife inside kitchen and vegetables cutting and prepare dish to eat displaying on screen", "video_id": "video12091", "sen_id": 259364}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video12091", "sen_id": 259365}, {"caption": "a lady cutting some vegetable in her kitchen to prepare a dish", "video_id": "video12091", "sen_id": 259366}, {"caption": "a person is choping some vegetables on the table", "video_id": "video12091", "sen_id": 259367}, {"caption": "a woman is cutting up onion with a knife", "video_id": "video12091", "sen_id": 259368}, {"caption": "in kitchen table a woman slicing vegitable like cocumberonions with the help of a slicer", "video_id": "video12091", "sen_id": 259369}, {"caption": "in the kitchen a woman slicing a onion", "video_id": "video12091", "sen_id": 259370}, {"caption": "a woman holding a knife is chopping vegetables on the chopping board describing a healthy recipe", "video_id": "video12091", "sen_id": 259371}, {"caption": "in a kitchen someone is preparing food to cook", "video_id": "video12091", "sen_id": 259372}, {"caption": "a woman is cutting up vegitables on a cutting board", "video_id": "video12091", "sen_id": 259373}, {"caption": "cooking video on grading vegetables for a japanese dish", "video_id": "video12091", "sen_id": 259374}, {"caption": "there is a woman slicing onion for a dish", "video_id": "video12091", "sen_id": 259375}, {"caption": "a persongrates the carrot and cuts the onion and slices it", "video_id": "video12091", "sen_id": 259376}, {"caption": "a cook chops up an onion into little slices for a recipe", "video_id": "video12091", "sen_id": 259377}, {"caption": "woman slicing the onions and other vegetables in the kitchen", "video_id": "video12091", "sen_id": 259378}, {"caption": "a women is cutting vetetables and slicing also for a teleshopping network many vegetables are sliced", "video_id": "video12091", "sen_id": 259379}, {"caption": "there is a machine fixed in the water tank", "video_id": "video10318", "sen_id": 259380}, {"caption": "a woman talks about an aquarium tank set up while showing different parts of it", "video_id": "video10318", "sen_id": 259381}, {"caption": "a woman explaining the benefits of a certain type of filter for fish tanks", "video_id": "video10318", "sen_id": 259382}, {"caption": "a woman talks about a way to set up parts in an inhome aquarium", "video_id": "video10318", "sen_id": 259383}, {"caption": "in a room there is aquarium filled with water and filter to clean the water", "video_id": "video10318", "sen_id": 259384}, {"caption": "there is a machine working inside the water tank", "video_id": "video10318", "sen_id": 259385}, {"caption": "a woman discusses the cleaning function of her fish tank", "video_id": "video10318", "sen_id": 259386}, {"caption": "a woman showing off her fish tank and the filter", "video_id": "video10318", "sen_id": 259387}, {"caption": "a tank with a filter and gravel at the bottom water bubbles through the filter", "video_id": "video10318", "sen_id": 259388}, {"caption": "a woman displays the filter on her fish tank and explains its uses", "video_id": "video10318", "sen_id": 259389}, {"caption": "there is a woman talking about a machine inside the water", "video_id": "video10318", "sen_id": 259390}, {"caption": "water boiled on the container", "video_id": "video10318", "sen_id": 259391}, {"caption": "girl talking about pros and cons of this aquarium filter tank", "video_id": "video10318", "sen_id": 259392}, {"caption": "water pours into a valve of a fish aquarium", "video_id": "video10318", "sen_id": 259393}, {"caption": "a person is showing a thing in a water tank", "video_id": "video10318", "sen_id": 259394}, {"caption": "a woman discusses various features positive and negative of a fish tank", "video_id": "video10318", "sen_id": 259395}, {"caption": "an aquarium filter is shown in close-up while a narrator describes its properties", "video_id": "video10318", "sen_id": 259396}, {"caption": "a woman is talking and a water are flowing down", "video_id": "video10318", "sen_id": 259397}, {"caption": "a pump and filter is in an aquarium and a woman is describing it", "video_id": "video10318", "sen_id": 259398}, {"caption": "a thing is being washed in some water inside", "video_id": "video10318", "sen_id": 259399}, {"caption": "a woman is putting eye shadow on her face", "video_id": "video11732", "sen_id": 259400}, {"caption": "a makeup artist illustrates how to apply eye shadow correctly to the face", "video_id": "video11732", "sen_id": 259401}, {"caption": "a woman is using a large brush to apply make up to her eye lids", "video_id": "video11732", "sen_id": 259402}, {"caption": "a lady with dark hair is putting on makeup above her eyes", "video_id": "video11732", "sen_id": 259403}, {"caption": "a lady aplies a concealer to her eyes as a foundation for more makeup", "video_id": "video11732", "sen_id": 259404}, {"caption": "a women is applying make up to her face", "video_id": "video11732", "sen_id": 259405}, {"caption": "a lady make up her face by brush", "video_id": "video11732", "sen_id": 259406}, {"caption": "the woman puts make up on her eye lid with a big brush", "video_id": "video11732", "sen_id": 259407}, {"caption": "a woman is applying foundation makeup to her eyelids", "video_id": "video11732", "sen_id": 259408}, {"caption": "a woman is putting makeup on her eyelids with a brush", "video_id": "video11732", "sen_id": 259409}, {"caption": "there is a woman applying makeup with a big brush", "video_id": "video11732", "sen_id": 259410}, {"caption": "a woman is doing makeup for her eyes using a brush and explainiong it", "video_id": "video11732", "sen_id": 259411}, {"caption": "the woman is applying the makeup to her eyes using brush", "video_id": "video11732", "sen_id": 259412}, {"caption": "a woman is applying a concealer above her eyes", "video_id": "video11732", "sen_id": 259413}, {"caption": "a woman is giving a tutorial on how to use her maybelline makeup product", "video_id": "video11732", "sen_id": 259414}, {"caption": "a woman wearing a bandana is using a brush to apply make-up to the top of her eyelids", "video_id": "video11732", "sen_id": 259415}, {"caption": "a woman with black hair demonstrates applying makeup under her eyebrows", "video_id": "video11732", "sen_id": 259416}, {"caption": "a woman is coloring her eye lid her own", "video_id": "video11732", "sen_id": 259417}, {"caption": "a woman priming her eyes by blending mabelline foundation around her eyes and eyebrows", "video_id": "video11732", "sen_id": 259418}, {"caption": "womans eyes and forehead seen while she is applying eye liner", "video_id": "video11732", "sen_id": 259419}, {"caption": "an orange circle bearing the word customer is surrounded by seven smaller blue circles", "video_id": "video12990", "sen_id": 259420}, {"caption": "brooks global services shows its seven services available to customers", "video_id": "video12990", "sen_id": 259421}, {"caption": "an advertisement for a global marketing firm with a slide show of applications", "video_id": "video12990", "sen_id": 259422}, {"caption": "a person is explaining about their products cover the customers with the 7 elements", "video_id": "video12990", "sen_id": 259423}, {"caption": "brooks global services talking about their products and services", "video_id": "video12990", "sen_id": 259424}, {"caption": "there is a man explain about brooks global services", "video_id": "video12990", "sen_id": 259425}, {"caption": "an advertisement about brooks global services explaining the seven elements of the services", "video_id": "video12990", "sen_id": 259426}, {"caption": "a slide show for a company where we see a bright yellow circle in the middle with writing on the middle and several other blue circles around it", "video_id": "video12990", "sen_id": 259427}, {"caption": "a blue screan with a yellow circle poping up with 7 blue circles around it", "video_id": "video12990", "sen_id": 259428}, {"caption": "a man discusses the positive attributes of a company called brooks global services", "video_id": "video12990", "sen_id": 259429}, {"caption": "there is a man explains about mobile device applications", "video_id": "video12990", "sen_id": 259430}, {"caption": "one sentence are displayed on the screen", "video_id": "video12990", "sen_id": 259431}, {"caption": "a man describes the varied services of a large company", "video_id": "video12990", "sen_id": 259432}, {"caption": "the 7baelementa of brooks global services in blue and services are listed 2nd image is of mram and mobile device applications 3rd image is of labratory workes", "video_id": "video12990", "sen_id": 259433}, {"caption": "advertise about the company being shown on the screeen", "video_id": "video12990", "sen_id": 259434}, {"caption": "a commercial for brooks global services with a man narrating", "video_id": "video12990", "sen_id": 259435}, {"caption": "the screen displays various colored slides", "video_id": "video12990", "sen_id": 259436}, {"caption": "a commercial for brooks university presents a chart listing the services offered", "video_id": "video12990", "sen_id": 259437}, {"caption": "a man explains how his company benefits its customers", "video_id": "video12990", "sen_id": 259438}, {"caption": "some images of things are being shown", "video_id": "video12990", "sen_id": 259439}, {"caption": "there are some news about earth from nasa", "video_id": "video12311", "sen_id": 259440}, {"caption": "a woman talking about the possibility of earth getting hit by an asteroid", "video_id": "video12311", "sen_id": 259441}, {"caption": "a man is talking about the article about no asteroid threatening earth", "video_id": "video12311", "sen_id": 259442}, {"caption": "a video showing space sciences and a nasa article", "video_id": "video12311", "sen_id": 259443}, {"caption": "a person is showing article on nasa on screen", "video_id": "video12311", "sen_id": 259444}, {"caption": "there is a explanation about earth and space", "video_id": "video12311", "sen_id": 259445}, {"caption": "a female voice talking about a press release saying that a nasa scientist says an asteriod won t hit earth", "video_id": "video12311", "sen_id": 259446}, {"caption": "a news reading is going on that shows that there is no asteroid threatening earth", "video_id": "video12311", "sen_id": 259447}, {"caption": "the earth and the notes of a man in the site he is on the side", "video_id": "video12311", "sen_id": 259448}, {"caption": "a person is talking about nasa s article on screen", "video_id": "video12311", "sen_id": 259449}, {"caption": "an informercial explaining when an asteroid is expected to hit earth", "video_id": "video12311", "sen_id": 259450}, {"caption": "a robotic female voice talks about news relating to space", "video_id": "video12311", "sen_id": 259451}, {"caption": "a lady speaking about nasa saying that there is no asteroid threatening earth", "video_id": "video12311", "sen_id": 259452}, {"caption": "a news clip is being read about an asteroid that is not threatening the earth", "video_id": "video12311", "sen_id": 259453}, {"caption": "the asteroid in space is shown heading toward the earth", "video_id": "video12311", "sen_id": 259454}, {"caption": "information being displayed on the screen", "video_id": "video12311", "sen_id": 259455}, {"caption": "a female reporter talks about the prospects of an asteroid striking earth", "video_id": "video12311", "sen_id": 259456}, {"caption": "a woman talking about a nasa employee who published an article about a near earth object", "video_id": "video12311", "sen_id": 259457}, {"caption": "video opens up with an asteroid coming for earth and then it goes to a screenshot talking about asteroids", "video_id": "video12311", "sen_id": 259458}, {"caption": "a man with glasses is speaking about something", "video_id": "video12311", "sen_id": 259459}, {"caption": "a cartoon man in a suit and tie and text appears about getting your own professional advertisement that you can purchase for $5", "video_id": "video11144", "sen_id": 259460}, {"caption": " wearing a blue shirt black pants and black tie stands in front of a growing amount of gold coins", "video_id": "video11144", "sen_id": 259461}, {"caption": "an advertisement for the money by animated cartoons", "video_id": "video11144", "sen_id": 259462}, {"caption": "man with blue shirt is presenting the money that can be earned for 12 hours", "video_id": "video11144", "sen_id": 259463}, {"caption": "an animation is advertising a $5 advertisement opportunity", "video_id": "video11144", "sen_id": 259464}, {"caption": "a cartoon advertisement showing a man holding a bag of money stands in front of a pink background", "video_id": "video11144", "sen_id": 259465}, {"caption": "a man is explaining something with some cartoon picture presentation", "video_id": "video11144", "sen_id": 259466}, {"caption": "background music is played with the words saying you can customize every text element and choose different stylesanother man with bulb and key symbols are shown with few more text", "video_id": "video11144", "sen_id": 259467}, {"caption": "a video animation movie of cartoon of dollars coins displaying on screen", "video_id": "video11144", "sen_id": 259468}, {"caption": "a person is showing information about the company on screen", "video_id": "video11144", "sen_id": 259469}, {"caption": "a man is standing with dollars", "video_id": "video11144", "sen_id": 259470}, {"caption": "a cartoon advertisement for professional advertisements is shown", "video_id": "video11144", "sen_id": 259471}, {"caption": "a man in blue shirt of animation is playing on", "video_id": "video11144", "sen_id": 259472}, {"caption": "an animated video explains the point of their business", "video_id": "video11144", "sen_id": 259473}, {"caption": "an animated advertisement shows about earn money for 5$ in 12 hours", "video_id": "video11144", "sen_id": 259474}, {"caption": "an animated advertisement is listing the price for a professional advertisement", "video_id": "video11144", "sen_id": 259475}, {"caption": "showing advertising for professionals", "video_id": "video11144", "sen_id": 259476}, {"caption": "cartoon man in a blue shirt and tie grabbing a large money bag", "video_id": "video11144", "sen_id": 259477}, {"caption": "video with animation of man lightbulb with growing money bags and green bills", "video_id": "video11144", "sen_id": 259478}, {"caption": "some cartoon characters are moving around an area", "video_id": "video11144", "sen_id": 259479}, {"caption": "many number of people watching rugby game in the stadium", "video_id": "video10229", "sen_id": 259480}, {"caption": "the american football players are showing some extra ordinary skills", "video_id": "video10229", "sen_id": 259481}, {"caption": "an australian rules football player running in slow motion", "video_id": "video10229", "sen_id": 259482}, {"caption": "professional teams play each other in games of rugby", "video_id": "video10229", "sen_id": 259483}, {"caption": "a group of men play a tough game of rugby", "video_id": "video10229", "sen_id": 259484}, {"caption": "there is a yellow jersey man running on the ground", "video_id": "video10229", "sen_id": 259485}, {"caption": "players are playing food ball in the ground", "video_id": "video10229", "sen_id": 259486}, {"caption": "group of players were running on the ground to catch the ball", "video_id": "video10229", "sen_id": 259487}, {"caption": "a yellow dress and blue dress player playing game inside stadium refere running chasing displaying on screen audience watching", "video_id": "video10229", "sen_id": 259488}, {"caption": "rugby players running and kicking the ball while music plays", "video_id": "video10229", "sen_id": 259489}, {"caption": "athletes are playing a game in front of an audience", "video_id": "video10229", "sen_id": 259490}, {"caption": "rugby player in yellow jersey avoids several defenders while running down the pitch", "video_id": "video10229", "sen_id": 259491}, {"caption": "a rugby player wearing a yellow shirt with a green number 10 in the back green shorts and green socks is shown running and avoiding the oposite team in slow motion", "video_id": "video10229", "sen_id": 259492}, {"caption": "from a rugby ply ground where a competition is going between two teams in a stadium", "video_id": "video10229", "sen_id": 259493}, {"caption": "a rugby player jukes out the defensive team", "video_id": "video10229", "sen_id": 259494}, {"caption": "players are passing the rugby ball kicks the ball runs with the ball", "video_id": "video10229", "sen_id": 259495}, {"caption": "several men on a grassy sports field run and kick a footbal", "video_id": "video10229", "sen_id": 259496}, {"caption": "two rugby players are competing for a montage to the sound of soft music", "video_id": "video10229", "sen_id": 259497}, {"caption": "a soccer team wearing yellow and green and another soccer team wearing all black is playing against on a grassy field while a huge crowd watches", "video_id": "video10229", "sen_id": 259498}, {"caption": "inspirational slow motion rugby video with emotionally slow music", "video_id": "video10229", "sen_id": 259499}, {"caption": "a man is explainng a detail using his phone", "video_id": "video12175", "sen_id": 259500}, {"caption": "a man is teaching people how to use a computer program", "video_id": "video12175", "sen_id": 259501}, {"caption": "a man explains which options to select to get a system working", "video_id": "video12175", "sen_id": 259502}, {"caption": "a man using a tablet and trying to install a program", "video_id": "video12175", "sen_id": 259503}, {"caption": "a man is explaining how to fix a problem on a computer or tablet", "video_id": "video12175", "sen_id": 259504}, {"caption": "a tablet with a reflection of a man s face is shown a man describes how to download an application", "video_id": "video12175", "sen_id": 259505}, {"caption": "in a mobile phone a man is showing the features and applications", "video_id": "video12175", "sen_id": 259506}, {"caption": "a man is displaying all the features of a tablet he is using", "video_id": "video12175", "sen_id": 259507}, {"caption": "a man is giving a computer tutorial over the net", "video_id": "video12175", "sen_id": 259508}, {"caption": "a man with tablet or computer describing some sort of procedure", "video_id": "video12175", "sen_id": 259509}, {"caption": "a man is pushing buttons on a tablet screen that is showing his reflection", "video_id": "video12175", "sen_id": 259510}, {"caption": "a man addresses the process of working his tablet", "video_id": "video12175", "sen_id": 259511}, {"caption": "a man explaining how to work a computer program while looking at a screen", "video_id": "video12175", "sen_id": 259512}, {"caption": "person is playing a game on his tablet", "video_id": "video12175", "sen_id": 259513}, {"caption": "man installing some sort of program on his tablet or computer", "video_id": "video12175", "sen_id": 259514}, {"caption": "a man using a tablet and giving instructions for how to use a feature", "video_id": "video12175", "sen_id": 259515}, {"caption": "a man is holding an ipad and explaining how a program within it works", "video_id": "video12175", "sen_id": 259516}, {"caption": "a man is working in the computer and telling about a wifi", "video_id": "video12175", "sen_id": 259517}, {"caption": "a foreign man with a accent gives a walkthrough on a ipad describing the steps to troubleshoot problems with ipad that other may be expiriencing", "video_id": "video12175", "sen_id": 259518}, {"caption": "a person is showing some stuff on their pc screen", "video_id": "video12175", "sen_id": 259519}, {"caption": "a young child runs into the arms of a woman and then waves to another person", "video_id": "video11592", "sen_id": 259520}, {"caption": "the woman is holding the small baby with her hands", "video_id": "video11592", "sen_id": 259521}, {"caption": "an asian toddler excited and waving to someone", "video_id": "video11592", "sen_id": 259522}, {"caption": "someone is playing with their child to make him to be happy", "video_id": "video11592", "sen_id": 259523}, {"caption": "a man in white top and red bottom and light green at the center of his dress chase a baby who is running towards his mother", "video_id": "video11592", "sen_id": 259524}, {"caption": "a small child hugs his mom and waves at other people", "video_id": "video11592", "sen_id": 259525}, {"caption": "a baby runs to his parent and waves", "video_id": "video11592", "sen_id": 259526}, {"caption": "a baby boy running to a woman the woman catches him and uses a manual fan to cool him down", "video_id": "video11592", "sen_id": 259527}, {"caption": "the kid who grasped his mother is happy and says good by to the other", "video_id": "video11592", "sen_id": 259528}, {"caption": "there is a boy with white colour t-shirt with a woman", "video_id": "video11592", "sen_id": 259529}, {"caption": "a baby runs to a woman and tells her something while she is waving a fan", "video_id": "video11592", "sen_id": 259530}, {"caption": "women holding boy in one hand and holding a hand fan in another hand", "video_id": "video11592", "sen_id": 259531}, {"caption": "a lady is fanning a little boy wearing a tshirt", "video_id": "video11592", "sen_id": 259532}, {"caption": "a small child ran and came to her mom", "video_id": "video11592", "sen_id": 259533}, {"caption": "a baby is running around in a room", "video_id": "video11592", "sen_id": 259534}, {"caption": "young child running to woman (who is fanning herself) while the child waves", "video_id": "video11592", "sen_id": 259535}, {"caption": "a woman hugs a small boy as he waves and she fans herself", "video_id": "video11592", "sen_id": 259536}, {"caption": "a cute japanese kid with black hair waving to his parent", "video_id": "video11592", "sen_id": 259537}, {"caption": "a kid playing and then hugging a woman that s sitting down", "video_id": "video11592", "sen_id": 259538}, {"caption": "a baby is standing around inside a room", "video_id": "video11592", "sen_id": 259539}, {"caption": "a woman in a black top is cooking rice on a stove", "video_id": "video12860", "sen_id": 259540}, {"caption": "the woman is preparing food then looking after the house", "video_id": "video12860", "sen_id": 259541}, {"caption": "in the kitchen the black top wearing chef is making the best vegetable item in simple method", "video_id": "video12860", "sen_id": 259542}, {"caption": "a woman is stirring and talking about how to cook the food", "video_id": "video12860", "sen_id": 259543}, {"caption": "a girl in black dress inside kitchen preparing dish to serve to eat displaying on screen", "video_id": "video12860", "sen_id": 259544}, {"caption": "a person is preparing food item in a cooker and poring water to a plant", "video_id": "video12860", "sen_id": 259545}, {"caption": "a lady black color dress watering a a plant", "video_id": "video12860", "sen_id": 259546}, {"caption": "a woman wants the radish to be softened up before mixing it with the rest of the ingredients", "video_id": "video12860", "sen_id": 259547}, {"caption": "asian woman is talking about the meal and preparing it", "video_id": "video12860", "sen_id": 259548}, {"caption": "a woman says about the cooking something and watering the plants using water jug", "video_id": "video12860", "sen_id": 259549}, {"caption": "in the kitchen a woman in black pouring some water to the plant", "video_id": "video12860", "sen_id": 259550}, {"caption": "an asian woman cooking with a hot in a kitchen then waters some plants", "video_id": "video12860", "sen_id": 259551}, {"caption": "an asian inhome chef works on a dish in a large red pot", "video_id": "video12860", "sen_id": 259552}, {"caption": "a woman in a black shirt cooks some radishes and then waters a plant", "video_id": "video12860", "sen_id": 259553}, {"caption": "someone is stirring food inside of a pot", "video_id": "video12860", "sen_id": 259554}, {"caption": "an asian woman allowing her radish to cook to a soft feel", "video_id": "video12860", "sen_id": 259555}, {"caption": "the woman water the plants near the big window", "video_id": "video12860", "sen_id": 259556}, {"caption": "an asian women in her kitchen cooking the soup and mean while the cooking she is giving water to the trees at her home", "video_id": "video12860", "sen_id": 259557}, {"caption": "a woman discusses the preparation of a dish", "video_id": "video12860", "sen_id": 259558}, {"caption": "a female chef cooks radishes in a pot for 15 minutes", "video_id": "video12860", "sen_id": 259559}, {"caption": "a person discussing the car the m600", "video_id": "video12649", "sen_id": 259560}, {"caption": "a very fancy and futuristic new sports car in white", "video_id": "video12649", "sen_id": 259561}, {"caption": "stunning car with fantastic color super pure white", "video_id": "video12649", "sen_id": 259562}, {"caption": "a narrator discuses a white n600 car and its varying aspects", "video_id": "video12649", "sen_id": 259563}, {"caption": "a man s voice describing a car", "video_id": "video12649", "sen_id": 259564}, {"caption": "virtual image of the light blue modern car called the m600 car is shown in the video", "video_id": "video12649", "sen_id": 259565}, {"caption": "a guy explaing the m600 car and it s features", "video_id": "video12649", "sen_id": 259566}, {"caption": "a white sports car with a euopean plate and cool looking headlights", "video_id": "video12649", "sen_id": 259567}, {"caption": "an australian automobile critic presents the model n600 sports car", "video_id": "video12649", "sen_id": 259568}, {"caption": "different parts of a luxury car are shown as a man with an english accent talks about its features", "video_id": "video12649", "sen_id": 259569}, {"caption": "a man describes a sleek sports car parked in an alley", "video_id": "video12649", "sen_id": 259570}, {"caption": "guy talking about a car called m600", "video_id": "video12649", "sen_id": 259571}, {"caption": "a person is explaining about the car the he purchased newly", "video_id": "video12649", "sen_id": 259572}, {"caption": "a car standing parking to show displaying still image displaying on screen", "video_id": "video12649", "sen_id": 259573}, {"caption": "showcasing the beauty of a luxury sports car from various angles", "video_id": "video12649", "sen_id": 259574}, {"caption": "a man is talking about who built a car while it s shown in different angles", "video_id": "video12649", "sen_id": 259575}, {"caption": "a white luxury vehicle is displayed with a man providing commentary in the background", "video_id": "video12649", "sen_id": 259576}, {"caption": "a white sports car is shown setting in a parking space", "video_id": "video12649", "sen_id": 259577}, {"caption": "man describing about m600 car", "video_id": "video12649", "sen_id": 259578}, {"caption": "a person is filming parts of a white car", "video_id": "video12649", "sen_id": 259579}, {"caption": "colorful buses are greeted by other vehicles that have all come to life", "video_id": "video10450", "sen_id": 259580}, {"caption": "personified cars are hanging around outside and talking among each other", "video_id": "video10450", "sen_id": 259581}, {"caption": "a group of buses gather at thier new bus garage", "video_id": "video10450", "sen_id": 259582}, {"caption": "colored buses with faces pull up to parking garage and greet each other", "video_id": "video10450", "sen_id": 259583}, {"caption": "a bunch of cartoon buses talk about how happy they are with their garage and then talk to a bunch of other buses", "video_id": "video10450", "sen_id": 259584}, {"caption": "children cartoon with some buses greeting other buses", "video_id": "video10450", "sen_id": 259585}, {"caption": "animated buses are talking to each other and they re al lined up as if to race", "video_id": "video10450", "sen_id": 259586}, {"caption": "cartoon buses are riding in roads and speaking with their mouths and they have eyes also and jeeps are also coming and speaking with them", "video_id": "video10450", "sen_id": 259587}, {"caption": "three buses stand happily at the corner of a crosswalk by a school", "video_id": "video10450", "sen_id": 259588}, {"caption": "colorful cartoon buses are lined up in front of a barn colored garage talking to and greeting each other", "video_id": "video10450", "sen_id": 259589}, {"caption": "more buses are coming in a road", "video_id": "video10450", "sen_id": 259590}, {"caption": "an animated three dimensional cartoon involving different colored buses", "video_id": "video10450", "sen_id": 259591}, {"caption": "a cartoon of colorful buses finding their new bus garage", "video_id": "video10450", "sen_id": 259592}, {"caption": "a bunch of talking animated buses talk to one another", "video_id": "video10450", "sen_id": 259593}, {"caption": "3 talking buses arrive at a bus garage", "video_id": "video10450", "sen_id": 259594}, {"caption": "more buses are going on the road", "video_id": "video10450", "sen_id": 259595}, {"caption": "few cartoon buses come and stands on the straight line and dancing", "video_id": "video10450", "sen_id": 259596}, {"caption": "a 4 cartoon school bus comes to school and greets each other", "video_id": "video10450", "sen_id": 259597}, {"caption": "four vehicles are going to race with another two", "video_id": "video10450", "sen_id": 259598}, {"caption": "a bus with a happy face is jumping around", "video_id": "video10450", "sen_id": 259599}, {"caption": "the people standing in the long que and then go to the camp", "video_id": "video10435", "sen_id": 259600}, {"caption": "more peoples are standing on the road and a girl talking", "video_id": "video10435", "sen_id": 259601}, {"caption": "a video regarding the status of terrorists in syria and europe", "video_id": "video10435", "sen_id": 259602}, {"caption": "a group of persons walking in row cars moving on road side womans walking attack threat displaying on screen", "video_id": "video10435", "sen_id": 259603}, {"caption": "a news report detailing the syrian refugee crisis", "video_id": "video10435", "sen_id": 259604}, {"caption": "a news report showing large groups of refugees", "video_id": "video10435", "sen_id": 259605}, {"caption": "a reporter is reporting on a news story about refugees from syria", "video_id": "video10435", "sen_id": 259606}, {"caption": "a people are standing and moving in the line", "video_id": "video10435", "sen_id": 259607}, {"caption": "refugees make their way through a long line near a crossing border", "video_id": "video10435", "sen_id": 259608}, {"caption": "a group of people are standing in a line for something", "video_id": "video10435", "sen_id": 259609}, {"caption": "long lines of people walking with their bags and luggage", "video_id": "video10435", "sen_id": 259610}, {"caption": "a man speaks about the current crisis of syrian refuges and how isis has affected them", "video_id": "video10435", "sen_id": 259611}, {"caption": "group of migrants stand in line walking slowly along dirt road", "video_id": "video10435", "sen_id": 259612}, {"caption": "a news anchor discusses the european refugee crises over several clips of them", "video_id": "video10435", "sen_id": 259613}, {"caption": "some people are wandering around in a desert", "video_id": "video10435", "sen_id": 259614}, {"caption": "a man reports on terrorist entering europe with syrian refugees", "video_id": "video10435", "sen_id": 259615}, {"caption": "refugees from war-torn syria entering europe and complicates security", "video_id": "video10435", "sen_id": 259616}, {"caption": "in the news ebullition it is shown that many police raids and arrests are done to check out the terrorists", "video_id": "video10435", "sen_id": 259617}, {"caption": "images of refugees as a reporter talks about the situation in europe", "video_id": "video10435", "sen_id": 259618}, {"caption": "some people on a beach are walking around", "video_id": "video10435", "sen_id": 259619}, {"caption": "a variety of individuals from different parts of the world are all enjoying the beach in their own way", "video_id": "video12164", "sen_id": 259620}, {"caption": "people are shown enjoying themselves in various ways on the beach", "video_id": "video12164", "sen_id": 259621}, {"caption": "people stand along beach shore and life gaurd sits under colorful umbrellas", "video_id": "video12164", "sen_id": 259622}, {"caption": "people enjoying a beach collecting shells and exercising", "video_id": "video12164", "sen_id": 259623}, {"caption": "a travel channel shows its introduction clip that it presumably plays for all of its shows highlighting a beach", "video_id": "video12164", "sen_id": 259624}, {"caption": "there is a beach shore people are enjoying there", "video_id": "video12164", "sen_id": 259625}, {"caption": "people are dancing and having fun on the beach", "video_id": "video12164", "sen_id": 259626}, {"caption": "travelers and vacationers do various activities along beach shoreline", "video_id": "video12164", "sen_id": 259627}, {"caption": "a aeroplane moving beach water scene many girls and boys enjoying dancing beach displaying on screen", "video_id": "video12164", "sen_id": 259628}, {"caption": "people doing various activities on a beach for a travel commercial", "video_id": "video12164", "sen_id": 259629}, {"caption": "there is a woman selling products in a beach", "video_id": "video12164", "sen_id": 259630}, {"caption": "people at beach dancingsitting and helicopter flying over", "video_id": "video12164", "sen_id": 259631}, {"caption": "expoza travel shown the beach and travel locations of italy", "video_id": "video12164", "sen_id": 259632}, {"caption": "people are standing on beaches dancing walking and viewing the ocean", "video_id": "video12164", "sen_id": 259633}, {"caption": "people enjoying in the beach with full entertainments", "video_id": "video12164", "sen_id": 259634}, {"caption": "peoples are in the beech", "video_id": "video12164", "sen_id": 259635}, {"caption": "it is the beginning of an ad for exposa travel", "video_id": "video12164", "sen_id": 259636}, {"caption": "women walk on the beach as music plays", "video_id": "video12164", "sen_id": 259637}, {"caption": "expoza travel advertisement of young girls doing fun at beach", "video_id": "video12164", "sen_id": 259638}, {"caption": "a plane is flying around with a banner", "video_id": "video12164", "sen_id": 259639}, {"caption": "a pastor is doing a television interview about faith", "video_id": "video10824", "sen_id": 259640}, {"caption": "a priest is speaking while seated on a stage", "video_id": "video10824", "sen_id": 259641}, {"caption": "father jonathan morris talking on fox news live", "video_id": "video10824", "sen_id": 259642}, {"caption": "a priest seems confused when he tries to explain his beliefs", "video_id": "video10824", "sen_id": 259643}, {"caption": "a man in a black jacket and clerical collar sits on a couch", "video_id": "video10824", "sen_id": 259644}, {"caption": "a person speaking on a news channel with other people", "video_id": "video10824", "sen_id": 259645}, {"caption": "this is a news program speaking on the lack of religion within the republican government", "video_id": "video10824", "sen_id": 259646}, {"caption": "the man wearing the black collar sits and have a discussion", "video_id": "video10824", "sen_id": 259647}, {"caption": "father giving interview to a tv channel", "video_id": "video10824", "sen_id": 259648}, {"caption": "a catholic priest on the news is discussing important factors in choosing a presidential candidate", "video_id": "video10824", "sen_id": 259649}, {"caption": "a man in suit dress talking about his experience", "video_id": "video10824", "sen_id": 259650}, {"caption": "two men conversin in the news on the television", "video_id": "video10824", "sen_id": 259651}, {"caption": "a priest gives his point of view on how religious morals fit into politics", "video_id": "video10824", "sen_id": 259652}, {"caption": "risky writing talks he wear black dress and sits on sofa", "video_id": "video10824", "sen_id": 259653}, {"caption": "a priest says that he feels that political leaders should believe in the christian god or else they will suffer eternal consequences", "video_id": "video10824", "sen_id": 259654}, {"caption": "there is a suit man talking in a tv program", "video_id": "video10824", "sen_id": 259655}, {"caption": "a man talking with another person who is in black color dres", "video_id": "video10824", "sen_id": 259656}, {"caption": "a priest gives a talk on a news show about his beliefs", "video_id": "video10824", "sen_id": 259657}, {"caption": "there is a priest describing why it is important for a presidential candidate to have faith during an interview on a television show", "video_id": "video10824", "sen_id": 259658}, {"caption": "a boy in a checks shirt wearing cloth sitting and other in black dress speaking displaying on screen", "video_id": "video10824", "sen_id": 259659}, {"caption": "a woman in blue tops is hosting for a news channel", "video_id": "video11972", "sen_id": 259660}, {"caption": "a woman wearing a blue dress is speaking professionally to the viewer", "video_id": "video11972", "sen_id": 259661}, {"caption": "nbc news shows the newest tech on tv live", "video_id": "video11972", "sen_id": 259662}, {"caption": "cnbc s program mad money signs off while showing four other programs aired by this network", "video_id": "video11972", "sen_id": 259663}, {"caption": "a lady closing a program out advertising the other programs", "video_id": "video11972", "sen_id": 259664}, {"caption": "a cnbc anchor tries to get viewers to subscribe to the channel", "video_id": "video11972", "sen_id": 259665}, {"caption": "an outro and subscription screen regarding the cbcn channel", "video_id": "video11972", "sen_id": 259666}, {"caption": "a reporter on cnbc is talking about just clicking subscribe button", "video_id": "video11972", "sen_id": 259667}, {"caption": "a blond haired woman in a blue dress invites people to subscribe to cnbc", "video_id": "video11972", "sen_id": 259668}, {"caption": "a woman in a blue shirt in a room full of computer screens she is trying to get people to subscribe to a channel", "video_id": "video11972", "sen_id": 259669}, {"caption": "a reporter from cnbc telling youtube fans to subscribe", "video_id": "video11972", "sen_id": 259670}, {"caption": "a cnbc segment thanks viewers for watching and encourages them to subscribe", "video_id": "video11972", "sen_id": 259671}, {"caption": "a woman in a blue shirt addresses youtube viewers", "video_id": "video11972", "sen_id": 259672}, {"caption": "a girl in blue dress wearing color cloth news channel discusing on topic still images on screen displaying on screen", "video_id": "video11972", "sen_id": 259673}, {"caption": "a female with long blonde hair wearing a blue dress explaining what s coming up on cnbc", "video_id": "video11972", "sen_id": 259674}, {"caption": "a woman with a blue shirt is speaking in the csnbc studio about subscribing to the csnbc channel while other video clips pan the screen", "video_id": "video11972", "sen_id": 259675}, {"caption": "lady in blue dress talks then many clips are shown where we can download", "video_id": "video11972", "sen_id": 259676}, {"caption": "a girl in blue reading the news in bbc", "video_id": "video11972", "sen_id": 259677}, {"caption": "a cnbc host is thanking and encouraging youtube viewers to subscribe to their channel", "video_id": "video11972", "sen_id": 259678}, {"caption": "some various scenes of the earth are being shown", "video_id": "video11972", "sen_id": 259679}, {"caption": "a blonde woman searches a booth for missing tickets", "video_id": "video12991", "sen_id": 259680}, {"caption": "a girl and a boy are finding some thing in the room", "video_id": "video12991", "sen_id": 259681}, {"caption": "scarlett johansen and matt damon looking for something in an office and then kissing", "video_id": "video12991", "sen_id": 259682}, {"caption": "a woman with short blonde hair talking to a man with short brown hair", "video_id": "video12991", "sen_id": 259683}, {"caption": "a man and woman are searching for tickets in a store room and she kisses him", "video_id": "video12991", "sen_id": 259684}, {"caption": "a woman in a work uniform searches a desk area with a man who she then kisses", "video_id": "video12991", "sen_id": 259685}, {"caption": "a man and woman talking and kissing each other in a movie", "video_id": "video12991", "sen_id": 259686}, {"caption": "a steel box is opened by women and her colleague helps her find tickets in office", "video_id": "video12991", "sen_id": 259687}, {"caption": "in what looks like a ticket booth a man and woman have a awkward exchange the woman sheepishly admits that she has had a crush on the man and they kiss", "video_id": "video12991", "sen_id": 259688}, {"caption": "a lady and a man are searching and kissing her", "video_id": "video12991", "sen_id": 259689}, {"caption": "a man and a woman are searching for tickets in an office the woman has a crush on the man and kisses him", "video_id": "video12991", "sen_id": 259690}, {"caption": "women kissing a guy", "video_id": "video12991", "sen_id": 259691}, {"caption": "a woman opens up steel box looking for tickets and man helps to find them", "video_id": "video12991", "sen_id": 259692}, {"caption": "a couple accidentally kissing in a workers room", "video_id": "video12991", "sen_id": 259693}, {"caption": "a man and a woman in a movie are kissing", "video_id": "video12991", "sen_id": 259694}, {"caption": "a girl closes a box and in joy she kisses the boy near her", "video_id": "video12991", "sen_id": 259695}, {"caption": "a man and woman are searching for an item and when they find the item they kiss", "video_id": "video12991", "sen_id": 259696}, {"caption": "a girl searches through some cabinets with a man", "video_id": "video12991", "sen_id": 259697}, {"caption": "a young man and a young woman wearing black dresses working in the machine and suddenly went into a kiss", "video_id": "video12991", "sen_id": 259698}, {"caption": "a man and woman in a movie are kissing", "video_id": "video12991", "sen_id": 259699}, {"caption": "two players spen and alex playing a game of table tennis with spen leading with 2-0", "video_id": "video11445", "sen_id": 259700}, {"caption": "the player of tabletenns are perfomin in very well in the background of dark light", "video_id": "video11445", "sen_id": 259701}, {"caption": "a blue light illuminates the olympic logo which is used as a support for a ping pong table in a room with sconces and a large brown tournament board", "video_id": "video11445", "sen_id": 259702}, {"caption": "a man and woman were playing a table tennis game", "video_id": "video11445", "sen_id": 259703}, {"caption": "two persons are practising table tennis in a club", "video_id": "video11445", "sen_id": 259704}, {"caption": "two people are playing friendly table tannis match", "video_id": "video11445", "sen_id": 259705}, {"caption": "the table tennis peoples are playing in tennis court in very well with the help of music", "video_id": "video11445", "sen_id": 259706}, {"caption": "an girl and boy playing table tennis", "video_id": "video11445", "sen_id": 259707}, {"caption": "a young man and woman play a ping pong game on a table that has the olympic rings on the bottom of the table", "video_id": "video11445", "sen_id": 259708}, {"caption": "a man and a lady is playing table tennis at night in a posch club", "video_id": "video11445", "sen_id": 259709}, {"caption": "two people are playing table tennis indoor with no one around", "video_id": "video11445", "sen_id": 259710}, {"caption": "the table tennis peoples are playing in tennis court in very well", "video_id": "video11445", "sen_id": 259711}, {"caption": "in a table tennis game the girl loses two points by misplaying", "video_id": "video11445", "sen_id": 259712}, {"caption": "two ping pong players play in a dark room", "video_id": "video11445", "sen_id": 259713}, {"caption": "a couple of people are playing ping pong inside", "video_id": "video11445", "sen_id": 259714}, {"caption": "two people are playing table tennis not professionally and the women loses", "video_id": "video11445", "sen_id": 259715}, {"caption": "a man and woman are playing table tennis and the man wins the rally", "video_id": "video11445", "sen_id": 259716}, {"caption": "a man and woman playing a table tennis", "video_id": "video11445", "sen_id": 259717}, {"caption": "a boy and a girl both dressed in black play a serious game of ping pong", "video_id": "video11445", "sen_id": 259718}, {"caption": "a man and woman are playing ping pong", "video_id": "video11445", "sen_id": 259719}, {"caption": "there is a child walking with his father", "video_id": "video11019", "sen_id": 259720}, {"caption": "a little bow is scared by an object that jumps out at him", "video_id": "video11019", "sen_id": 259721}, {"caption": "a man and child are at festival or convention of some sort in a gymnasium where a large animated toy spider surprises and scares the child", "video_id": "video11019", "sen_id": 259722}, {"caption": "a little boy is freaked out by a scary ride at a park", "video_id": "video11019", "sen_id": 259723}, {"caption": "a little boy is scared to death as a horror plant springs out at him", "video_id": "video11019", "sen_id": 259724}, {"caption": "there is a man carrying his boy in a mall", "video_id": "video11019", "sen_id": 259725}, {"caption": "giant fake spider jumping out at toddler and guardian laughing about it", "video_id": "video11019", "sen_id": 259726}, {"caption": "a little boy is shopping with his father and is scared by a toy that jumps at him", "video_id": "video11019", "sen_id": 259727}, {"caption": "a small kid being scared by a prank toy in a room", "video_id": "video11019", "sen_id": 259728}, {"caption": "a large fake black spider pops out and scares a child", "video_id": "video11019", "sen_id": 259729}, {"caption": "young baby holding his mother hand seeing something and got scared", "video_id": "video11019", "sen_id": 259730}, {"caption": "a huge spider that would scare anyone half to death is jumping towards people", "video_id": "video11019", "sen_id": 259731}, {"caption": "a young child and an adult walking past a halloween display that pops out at the child walking by and frightens him", "video_id": "video11019", "sen_id": 259732}, {"caption": "person is with his child who is very scared from spiders", "video_id": "video11019", "sen_id": 259733}, {"caption": "a young child in a store is frightened when an interactive display shoots a large fake spider in his direction", "video_id": "video11019", "sen_id": 259734}, {"caption": "a man and child are walking and child got fear with some thing", "video_id": "video11019", "sen_id": 259735}, {"caption": "some one is talking a baby to one function and other one is making fear on baby", "video_id": "video11019", "sen_id": 259736}, {"caption": "a young boy is scared by an animatronic spider", "video_id": "video11019", "sen_id": 259737}, {"caption": "small kid is frightened from big black spider", "video_id": "video11019", "sen_id": 259738}, {"caption": "some people are crowded around an inside place", "video_id": "video11019", "sen_id": 259739}, {"caption": "men playing baseball with a box of tomatoes", "video_id": "video11934", "sen_id": 259740}, {"caption": "a man wearing white color dress talking with another man", "video_id": "video11934", "sen_id": 259741}, {"caption": "a man is standing in a forest", "video_id": "video11934", "sen_id": 259742}, {"caption": "a group of men who seem to be drunk try and play a game of baseball", "video_id": "video11934", "sen_id": 259743}, {"caption": "three friends are practicing baseball by swinging a bat at pitched orange colored fruits", "video_id": "video11934", "sen_id": 259744}, {"caption": "men enjoying playing for to pas the time", "video_id": "video11934", "sen_id": 259745}, {"caption": "a man in white shirt ready with base ball bat and other bowls to him", "video_id": "video11934", "sen_id": 259746}, {"caption": "some men are standing in a field and one man is trying to hit something with a baseball bat", "video_id": "video11934", "sen_id": 259747}, {"caption": "three men playing baseball in a field one with a white shirt on", "video_id": "video11934", "sen_id": 259748}, {"caption": "the players are playing polo and the boy in red shirt is picking the balls", "video_id": "video11934", "sen_id": 259749}, {"caption": "a man in a white shirt tries to hit baseballs but fails every time", "video_id": "video11934", "sen_id": 259750}, {"caption": "a person holding a baseball bat and other throws ball to hit", "video_id": "video11934", "sen_id": 259751}, {"caption": "group of men were picks something from the ground", "video_id": "video11934", "sen_id": 259752}, {"caption": "men are playing a game of baseball together", "video_id": "video11934", "sen_id": 259753}, {"caption": "the man pitches the ball toward the other man who is batting", "video_id": "video11934", "sen_id": 259754}, {"caption": "a man wearing black shorts white sunglasses and a whtie shirt swings a bat at what appears to be a rock", "video_id": "video11934", "sen_id": 259755}, {"caption": "a man in a white shirt is trying to hit tomatoes with a bat along with his friends", "video_id": "video11934", "sen_id": 259756}, {"caption": "a man is trying to hit with a bat and can t hit", "video_id": "video11934", "sen_id": 259757}, {"caption": "interesting guys playing baseball in the yard when the one drops the bat", "video_id": "video11934", "sen_id": 259758}, {"caption": "a man with a white shirt is swinging a bat", "video_id": "video11934", "sen_id": 259759}, {"caption": "an indian woman is showing different types of biryani", "video_id": "video11514", "sen_id": 259760}, {"caption": "there is a women showing and telling ingredients used for a recepie", "video_id": "video11514", "sen_id": 259761}, {"caption": "one women make a recipe in bowl adding vegetables", "video_id": "video11514", "sen_id": 259762}, {"caption": "in a kitchen a woman explains how to make a vegetable briyani", "video_id": "video11514", "sen_id": 259763}, {"caption": "a beautiful yellow rice meal is displayed on a blue dish", "video_id": "video11514", "sen_id": 259764}, {"caption": "in a kitchenthere is women preparing food", "video_id": "video11514", "sen_id": 259765}, {"caption": "meals are made ready and put on the plate", "video_id": "video11514", "sen_id": 259766}, {"caption": "veg biriyani thanks for watching for more videos subscribe us", "video_id": "video11514", "sen_id": 259767}, {"caption": "a blue bowl on a countertop contains a rice dish", "video_id": "video11514", "sen_id": 259768}, {"caption": "a person showing the ingredients for the recipe with subscription details", "video_id": "video11514", "sen_id": 259769}, {"caption": "in the kitchen a woman cooking some biriyani dishes", "video_id": "video11514", "sen_id": 259770}, {"caption": "a close up of yellow rice and vegetables in a blue dish", "video_id": "video11514", "sen_id": 259771}, {"caption": "a woman is prepared a veg biriyani and telling about it", "video_id": "video11514", "sen_id": 259772}, {"caption": "a bowl inside kitchen vegetables dish to eat displaying on screen", "video_id": "video11514", "sen_id": 259773}, {"caption": "some rice and leaves are in a blue bowel", "video_id": "video11514", "sen_id": 259774}, {"caption": "a lady is cooking a recipe and is being shown on", "video_id": "video11514", "sen_id": 259775}, {"caption": "a cooker and in blue colored bowl biryani is served and giving message to subscribe the video", "video_id": "video11514", "sen_id": 259776}, {"caption": "cooking of rice in the pressure cooker the video says tanks for watching video it looks like briyani", "video_id": "video11514", "sen_id": 259777}, {"caption": "a dish inside kitchen to prepare to cook to serve to eat", "video_id": "video11514", "sen_id": 259778}, {"caption": "some rice and leaves are inside of a blue bowl", "video_id": "video11514", "sen_id": 259779}, {"caption": "two men narrate a fighting game with many vulgarities and large amounts of laughter", "video_id": "video10662", "sen_id": 259780}, {"caption": "explosion brings out a character and he fights with another one in animated game", "video_id": "video10662", "sen_id": 259781}, {"caption": "two people are playing a fighting video game and talking loudly", "video_id": "video10662", "sen_id": 259782}, {"caption": "ther are a video clip of two robots fighting", "video_id": "video10662", "sen_id": 259783}, {"caption": "it is game two horrible fighting with weapons", "video_id": "video10662", "sen_id": 259784}, {"caption": "there is someone fighting each other in a garage", "video_id": "video10662", "sen_id": 259785}, {"caption": "two video game animation character are fighting with each other", "video_id": "video10662", "sen_id": 259786}, {"caption": "video games fighting two man very hardly and furiously", "video_id": "video10662", "sen_id": 259787}, {"caption": "two animated fighters go blow to blow fighting in a dark warehouse", "video_id": "video10662", "sen_id": 259788}, {"caption": "two warriors are fighting against each other in a video game", "video_id": "video10662", "sen_id": 259789}, {"caption": "two roborts are fighting each other inside the room", "video_id": "video10662", "sen_id": 259790}, {"caption": "the people are playing a duel fight match game", "video_id": "video10662", "sen_id": 259791}, {"caption": "two players narrate an animated battle between fictional opponents in a video game", "video_id": "video10662", "sen_id": 259792}, {"caption": "two game characters fight outside a stone building", "video_id": "video10662", "sen_id": 259793}, {"caption": "in a video game 2 opponents are fighting while the video game players are conversing", "video_id": "video10662", "sen_id": 259794}, {"caption": "there are many cartoon figures fighting on ground", "video_id": "video10662", "sen_id": 259795}, {"caption": "the cartoon character fighting at the scientific lab", "video_id": "video10662", "sen_id": 259796}, {"caption": "two characters fight one another in a match", "video_id": "video10662", "sen_id": 259797}, {"caption": "two big people having a battle between themselves", "video_id": "video10662", "sen_id": 259798}, {"caption": "two video game characters are in a fight", "video_id": "video10662", "sen_id": 259799}, {"caption": "there is a lab with colorful liquids on the table", "video_id": "video11311", "sen_id": 259800}, {"caption": "an introductory to chemistry with written words and music", "video_id": "video11311", "sen_id": 259801}, {"caption": "a sequence describing the chemical reaction and its pros and cons", "video_id": "video11311", "sen_id": 259802}, {"caption": "title card for ten amazing chemical reactions that will blow your mind", "video_id": "video11311", "sen_id": 259803}, {"caption": "a video clip about ten most dengerious chemical reaction", "video_id": "video11311", "sen_id": 259804}, {"caption": "scientist demonstrates a experiments in the laboratory and test", "video_id": "video11311", "sen_id": 259805}, {"caption": "chemistry lab is shown with the gas coming out of the beaker", "video_id": "video11311", "sen_id": 259806}, {"caption": "a smoke is coming from the chemical pot", "video_id": "video11311", "sen_id": 259807}, {"caption": "beakers of colorful liquid create a fog like substance that streams out of the beakers", "video_id": "video11311", "sen_id": 259808}, {"caption": "two scientific tubes hold smoking chemicals that are yellow and green", "video_id": "video11311", "sen_id": 259809}, {"caption": "sit back and watch 10 amazing awesome and dangerous chemistry reactions", "video_id": "video11311", "sen_id": 259810}, {"caption": "in a graphical video it is showing that chemistry of 10 amazing facts", "video_id": "video11311", "sen_id": 259811}, {"caption": "in a chemical lab a smoke are coming from the chemicals", "video_id": "video11311", "sen_id": 259812}, {"caption": "text displays a warning while two beakers have smoke pouring out of them", "video_id": "video11311", "sen_id": 259813}, {"caption": "colored liquid in flasks bubbles as ten chemical reactions are introduced", "video_id": "video11311", "sen_id": 259814}, {"caption": "two cubs one is yellow and other is green", "video_id": "video11311", "sen_id": 259815}, {"caption": "10 most amazing chemical reactions with chemistry is", "video_id": "video11311", "sen_id": 259816}, {"caption": "in the chemistry lap a smoke is coming from some chemical", "video_id": "video11311", "sen_id": 259817}, {"caption": "a video clip about ten most amazing dangerous chemicals", "video_id": "video11311", "sen_id": 259818}, {"caption": "some vials of chemicals are smoking dangerously", "video_id": "video11311", "sen_id": 259819}, {"caption": "a women in black shirt is enjoying hearing a parrot talk", "video_id": "video11660", "sen_id": 259820}, {"caption": "a bird is talking on a mic sitting on stand", "video_id": "video11660", "sen_id": 259821}, {"caption": "in a show the parrot is talking and giving the opposite responce", "video_id": "video11660", "sen_id": 259822}, {"caption": "a small gray parrot does animal noises for the handler", "video_id": "video11660", "sen_id": 259823}, {"caption": "a young girl holding a mike and she conduct an interview with a parrot like bird which is replying her questions and another lady with black coat looks on the laughing", "video_id": "video11660", "sen_id": 259824}, {"caption": "talking parrot being introduced by a women in stage", "video_id": "video11660", "sen_id": 259825}, {"caption": "there is a bird sitting in the bat room on a pipe", "video_id": "video11660", "sen_id": 259826}, {"caption": "one cute beautiful parrot is making noise in mic", "video_id": "video11660", "sen_id": 259827}, {"caption": "a small gray parrot does animal sounds at its owner s request", "video_id": "video11660", "sen_id": 259828}, {"caption": "a gray parrot is talking into a mic", "video_id": "video11660", "sen_id": 259829}, {"caption": "a tshirt women talking with a parrot on a stage", "video_id": "video11660", "sen_id": 259830}, {"caption": "a girl with a grey parrot exhibit that her parrot can talk more words than other parrots", "video_id": "video11660", "sen_id": 259831}, {"caption": "a cute parrot answering for its caretaker s question in mic", "video_id": "video11660", "sen_id": 259832}, {"caption": "a woman asks her parrot to mimic sounds for a crowd", "video_id": "video11660", "sen_id": 259833}, {"caption": "a gray parrot is talking into a mic for a woman", "video_id": "video11660", "sen_id": 259834}, {"caption": "there is a sparrow talking with anchor in a stage", "video_id": "video11660", "sen_id": 259835}, {"caption": "two woman are watching as a parrot is talking over a mike", "video_id": "video11660", "sen_id": 259836}, {"caption": "a parrot s caretaker talking with her parrot on the stage", "video_id": "video11660", "sen_id": 259837}, {"caption": "a grey parrot sits on a branch and talks on a microphone", "video_id": "video11660", "sen_id": 259838}, {"caption": "a parrot is talking to a woman with a microphone", "video_id": "video11660", "sen_id": 259839}, {"caption": "people are enjoying their time by playing volleyball in beach side", "video_id": "video12779", "sen_id": 259840}, {"caption": "men are seen playing beach volley on the sand and women are standing wearing bikinis a man can be heard saying the mexican resort city of cancun is situated in yucatan a peninsula bathed by the warms waters of the caribbean sea", "video_id": "video12779", "sen_id": 259841}, {"caption": "groups of people are enjoying a sunny day at the beach", "video_id": "video12779", "sen_id": 259842}, {"caption": "a beautiful mexico people enjoy to play volley ball and nature", "video_id": "video12779", "sen_id": 259843}, {"caption": "bunch of guys playing volleyball in beach and some are surfing", "video_id": "video12779", "sen_id": 259844}, {"caption": "there is a sea shore and some one enjoying waves", "video_id": "video12779", "sen_id": 259845}, {"caption": "we can see people playing beach volleyball on the beach sand banks and then a background voice of a man is heard saying the mexican resort of cancun is situated in the yucatan a peninsula bathed by warm water of the caribbean sea", "video_id": "video12779", "sen_id": 259846}, {"caption": "four people playing volleyball while many others stand and lounge around a beach", "video_id": "video12779", "sen_id": 259847}, {"caption": "four guys play volleyball on the beach side", "video_id": "video12779", "sen_id": 259848}, {"caption": "men are playing beach volleyball and people are standing near the ocean", "video_id": "video12779", "sen_id": 259849}, {"caption": "there are some boys playing basketball on the beach", "video_id": "video12779", "sen_id": 259850}, {"caption": "beautiful ocean footage of the mexican city of cancun people on the beaches and enjoying the warm waters", "video_id": "video12779", "sen_id": 259851}, {"caption": "a volleyball player serves the ball over the net", "video_id": "video12779", "sen_id": 259852}, {"caption": "a sea beach activities video like volleyball in beach and few others", "video_id": "video12779", "sen_id": 259853}, {"caption": "a dock by the ocean is empty and peaceful under a blue sky", "video_id": "video12779", "sen_id": 259854}, {"caption": "some men are playing beach volleyball on the beach near a mexican resort on carribean sea", "video_id": "video12779", "sen_id": 259855}, {"caption": "mens playing volleyball near sea shore many boats and bridge there", "video_id": "video12779", "sen_id": 259856}, {"caption": "a commercial of a beach scene with bookinghuntercom printed on the bottom right corner", "video_id": "video12779", "sen_id": 259857}, {"caption": "a group of people are playing volley ball and few are enjoying the sea waves", "video_id": "video12779", "sen_id": 259858}, {"caption": "some people on a beach are playing and stuff", "video_id": "video12779", "sen_id": 259859}, {"caption": "a slide and picture of an abstract blue pattern appear with the caption all you ever need to run your business", "video_id": "video12418", "sen_id": 259860}, {"caption": "tally pop up menu is displayed on the screen", "video_id": "video12418", "sen_id": 259861}, {"caption": "an exploration of something about the tally program", "video_id": "video12418", "sen_id": 259862}, {"caption": "a presentation is shown entitled all you even need to run your business", "video_id": "video12418", "sen_id": 259863}, {"caption": "the tally screen is being displayed on the screen of a computer", "video_id": "video12418", "sen_id": 259864}, {"caption": "a white square containing a blue abstract picture appears with the caption all you ever need to run your business", "video_id": "video12418", "sen_id": 259865}, {"caption": "a graphic is displayed giving an introduction on ideas for what you will need to know to run your own business", "video_id": "video12418", "sen_id": 259866}, {"caption": "a screen with a blue business advertisement on it", "video_id": "video12418", "sen_id": 259867}, {"caption": "there is a picture of a tutorial on what you need to run your own business", "video_id": "video12418", "sen_id": 259868}, {"caption": "a picture of a thing is being shown online", "video_id": "video12418", "sen_id": 259869}, {"caption": "a computer screen shows a program on how to run a business", "video_id": "video12418", "sen_id": 259870}, {"caption": "the beginning of a presentation about all the things you need to know to run your own business", "video_id": "video12418", "sen_id": 259871}, {"caption": " an accounting software that you even need to run your business", "video_id": "video12418", "sen_id": 259872}, {"caption": "there is a screen cast of a website with a picture on it", "video_id": "video12418", "sen_id": 259873}, {"caption": "an image of some things is being shown to people", "video_id": "video12418", "sen_id": 259874}, {"caption": "a photo is shown and grey display", "video_id": "video12418", "sen_id": 259875}, {"caption": "a picture that shows business and how to make money", "video_id": "video12418", "sen_id": 259876}, {"caption": "a presentation on all you need to know to run your business", "video_id": "video12418", "sen_id": 259877}, {"caption": "a tutorial on how to run your business", "video_id": "video12418", "sen_id": 259878}, {"caption": "some stuff on a tv screen is being shown to people", "video_id": "video12418", "sen_id": 259879}, {"caption": "a small footpath winds through a forest filled with rocky terrain", "video_id": "video10069", "sen_id": 259880}, {"caption": "a person walks up stone steps in a bright green forest", "video_id": "video10069", "sen_id": 259881}, {"caption": "in the woods someone is walking along a path", "video_id": "video10069", "sen_id": 259882}, {"caption": "a person turns around in a jungle-like area and starts walking up some stone steps", "video_id": "video10069", "sen_id": 259883}, {"caption": "a windy path goes up a hill and through the dense woods", "video_id": "video10069", "sen_id": 259884}, {"caption": "a person is moving inside a jungle covered with large trees", "video_id": "video10069", "sen_id": 259885}, {"caption": "stone steps through minor woods with lianes lead to the inner parts", "video_id": "video10069", "sen_id": 259886}, {"caption": "a country scene following a path then showing green vines", "video_id": "video10069", "sen_id": 259887}, {"caption": "an old stone stairs leads to some old house in the jungle", "video_id": "video10069", "sen_id": 259888}, {"caption": "a person is running through what appears to be a jungle", "video_id": "video10069", "sen_id": 259889}, {"caption": "someone is walking through a green forest while electronic music plays", "video_id": "video10069", "sen_id": 259890}, {"caption": "a scene is moving fast through a jungle or wooded setting with greenery everywhere", "video_id": "video10069", "sen_id": 259891}, {"caption": "a first person journey through a rocky trail in the woods reveals a stunning landscape of trees and moss", "video_id": "video10069", "sen_id": 259892}, {"caption": "a showcase of a path cutting through the jungle", "video_id": "video10069", "sen_id": 259893}, {"caption": "music plays as we get a first person walk through of a jungle", "video_id": "video10069", "sen_id": 259894}, {"caption": "a person climbs stone steps on a hill in the woods", "video_id": "video10069", "sen_id": 259895}, {"caption": "the scenery quickly shows a forested terrian with brown earth and greenery", "video_id": "video10069", "sen_id": 259896}, {"caption": "funky electronic music plays in a swampy marshland video clip", "video_id": "video10069", "sen_id": 259897}, {"caption": "a person climbs a set of stairs along the side of a steep cliff in a heavily wooded possibly tropical", "video_id": "video10069", "sen_id": 259898}, {"caption": "some person is filming a forest out side", "video_id": "video10069", "sen_id": 259899}, {"caption": "a black suit man walking on the stage", "video_id": "video10497", "sen_id": 259900}, {"caption": "akon walks down the stage and shanell wearing large angel wings starts to walk out", "video_id": "video10497", "sen_id": 259901}, {"caption": "a famous african singer walks and sings on a fashion show runway", "video_id": "video10497", "sen_id": 259902}, {"caption": "man in a black suit performing at a fashion show", "video_id": "video10497", "sen_id": 259903}, {"caption": "a man sings a song while dancing on stage with models", "video_id": "video10497", "sen_id": 259904}, {"caption": "a song is being performed on the stage", "video_id": "video10497", "sen_id": 259905}, {"caption": "a man in a suit is singing to an audience very passionately", "video_id": "video10497", "sen_id": 259906}, {"caption": "an african man sings on the runway at a fashion show", "video_id": "video10497", "sen_id": 259907}, {"caption": "a boy in black color dress wearing cloth mic in hand singing and girls in fashion dresses audience watching displaying on screen", "video_id": "video10497", "sen_id": 259908}, {"caption": "a model with wings getting ready to walk out on the runway at a victoria s secret fashion show", "video_id": "video10497", "sen_id": 259909}, {"caption": "the man in black suit entertaining people", "video_id": "video10497", "sen_id": 259910}, {"caption": "a man wearing black coat singing a song on stage", "video_id": "video10497", "sen_id": 259911}, {"caption": "a famous singer akon is singing his famous song and few ladies are dancing on his song", "video_id": "video10497", "sen_id": 259912}, {"caption": "a man in black color dress wearing on stage singing playing music audience and girls walking shaking hand with male guy watching displaying on screen", "video_id": "video10497", "sen_id": 259913}, {"caption": "there is a black man preforming on stage with a girl wear white angel wings", "video_id": "video10497", "sen_id": 259914}, {"caption": "a man is on stage singing and a young woman is joining him with angel wings on", "video_id": "video10497", "sen_id": 259915}, {"caption": "a bald man is dance with a girls", "video_id": "video10497", "sen_id": 259916}, {"caption": "a man in a shiny suit is singing on stage", "video_id": "video10497", "sen_id": 259917}, {"caption": "akon singing on stage dressed in a suit while backstage a model dressed up as angel walks out on stage", "video_id": "video10497", "sen_id": 259918}, {"caption": "some models are walking on a cat walk", "video_id": "video10497", "sen_id": 259919}, {"caption": "a woman in a pink dress asking viewers to subscribe to her channel", "video_id": "video12353", "sen_id": 259920}, {"caption": "a lady is asking her viewers to subscribe to her channel", "video_id": "video12353", "sen_id": 259921}, {"caption": "women with nice garment and accessories she looks nice and awesome", "video_id": "video12353", "sen_id": 259922}, {"caption": "the indian presenter in a video thanks her viewers and asks them to subscribe to the channel", "video_id": "video12353", "sen_id": 259923}, {"caption": "a long haired young woman in a pink sweater speaks to the camera against a wall of brightly lit windows", "video_id": "video12353", "sen_id": 259924}, {"caption": "the lady long hair and a chain is speaking", "video_id": "video12353", "sen_id": 259925}, {"caption": "a girl explains about the recepie and asks to subscribe to their chanel", "video_id": "video12353", "sen_id": 259926}, {"caption": "a women is explaining that to join in their site and also to subscribe them through the internet", "video_id": "video12353", "sen_id": 259927}, {"caption": "a woman in pink is talking about the homeveda site", "video_id": "video12353", "sen_id": 259928}, {"caption": "a women in pink is speaking something", "video_id": "video12353", "sen_id": 259929}, {"caption": "a woman with dark hair and hoop earrings and a pink shirt speaks intently", "video_id": "video12353", "sen_id": 259930}, {"caption": "there is a woman asking her audience to subscribe and comment", "video_id": "video12353", "sen_id": 259931}, {"caption": "brunette woman in pink shirt talking about her channel", "video_id": "video12353", "sen_id": 259932}, {"caption": "a girl in pink color dress wearing cloth explaning about home veda displaying on screen", "video_id": "video12353", "sen_id": 259933}, {"caption": "a woman in a pink shirt is talking", "video_id": "video12353", "sen_id": 259934}, {"caption": "a woman in a pink shirt asking for people to write comments and subscribe on her page", "video_id": "video12353", "sen_id": 259935}, {"caption": "a lady with a pink sleeveless shirt and a necklace talking with her hands clasped together", "video_id": "video12353", "sen_id": 259936}, {"caption": "a women stands in front of windows while asking viewers to comment on her video and subscribe to her channel", "video_id": "video12353", "sen_id": 259937}, {"caption": "after presentation of a video request to subscrine", "video_id": "video12353", "sen_id": 259938}, {"caption": "a woman in a pink shirt is talking inside", "video_id": "video12353", "sen_id": 259939}, {"caption": "many people gathered in a ground and playing some games", "video_id": "video12720", "sen_id": 259940}, {"caption": "a japanese person with white t shirt talks about reunion of families", "video_id": "video12720", "sen_id": 259941}, {"caption": " childhood oil and acrylic on canvas 2006 focused whether all aspects after 2005", "video_id": "video12720", "sen_id": 259942}, {"caption": "a man who is talking in different language about something", "video_id": "video12720", "sen_id": 259943}, {"caption": "guy in white tshirt showing his skills with his hand", "video_id": "video12720", "sen_id": 259944}, {"caption": "the photo is taken from the top side of the people from the sky side the photo would appears in this condition", "video_id": "video12720", "sen_id": 259945}, {"caption": "an image of a lot of cartoon people from really far away with a white background apears", "video_id": "video12720", "sen_id": 259946}, {"caption": "a young asian artist describes his thoughts on some art work he has completed", "video_id": "video12720", "sen_id": 259947}, {"caption": "a white t shirt boy speaking and many people standing on ground", "video_id": "video12720", "sen_id": 259948}, {"caption": "an asian man is talking about the acrylic paintings", "video_id": "video12720", "sen_id": 259949}, {"caption": "people sitting on beach and walking on beach and enjoying", "video_id": "video12720", "sen_id": 259950}, {"caption": "a group of people is standing in the stand", "video_id": "video12720", "sen_id": 259951}, {"caption": "a man speaking in a foreign language while looking at a group of people in a square", "video_id": "video12720", "sen_id": 259952}, {"caption": "a landscape painting features many small brightly-colored figures", "video_id": "video12720", "sen_id": 259953}, {"caption": "a guy is talking as a picture of a beach is shown", "video_id": "video12720", "sen_id": 259954}, {"caption": "the boy are playing table tennis in indoor stadium", "video_id": "video12720", "sen_id": 259955}, {"caption": "an artist speaking in chinese about his painting", "video_id": "video12720", "sen_id": 259956}, {"caption": "a man in white shirt talk about the nature and perception of human being", "video_id": "video12720", "sen_id": 259957}, {"caption": "a camera is moving from a top angle and the persons are behind the ground", "video_id": "video12720", "sen_id": 259958}, {"caption": "some stuff on a beach is filmed from above", "video_id": "video12720", "sen_id": 259959}, {"caption": " a man pushes away a another man then calls out loud", "video_id": "video11806", "sen_id": 259960}, {"caption": "a man in a cowboy had threatens another by a truck in the rain on a dark night", "video_id": "video11806", "sen_id": 259961}, {"caption": "a man in hat scold a guy in the rain and throw his away and walks toward the other direction looking for something", "video_id": "video11806", "sen_id": 259962}, {"caption": "morgan freeman is yelling at someone while it is raining", "video_id": "video11806", "sen_id": 259963}, {"caption": "cinematic western style movie scene with male actors", "video_id": "video11806", "sen_id": 259964}, {"caption": "there is a black suit man talking to someone in a rainy day", "video_id": "video11806", "sen_id": 259965}, {"caption": "morgan freeman is really upset with jimmy people might have been hurt", "video_id": "video11806", "sen_id": 259966}, {"caption": "a man angrily shakes acquaintance during a rainstorm and yells across street", "video_id": "video11806", "sen_id": 259967}, {"caption": "one man grabs another man by the clothing and is disgruntled with him and turns and yells into the rain is everyone all right down there", "video_id": "video11806", "sen_id": 259968}, {"caption": "while it is raining outside a black man in a hat gets angry", "video_id": "video11806", "sen_id": 259969}, {"caption": "two man are talking", "video_id": "video11806", "sen_id": 259970}, {"caption": "a rainy storm and one grabs another man by his jacket and saidgod damn it jimmy god damn it", "video_id": "video11806", "sen_id": 259971}, {"caption": "two men are fighting and screaming and its raining", "video_id": "video11806", "sen_id": 259972}, {"caption": "a man wearing a rain coat yells at a person and shouts at someone", "video_id": "video11806", "sen_id": 259973}, {"caption": "it s pouring rain and one man with a hat is angry at another man while two others look on", "video_id": "video11806", "sen_id": 259974}, {"caption": "morgan freeman wears a cowboy hat and performs a scene in the rain", "video_id": "video11806", "sen_id": 259975}, {"caption": " jackson grabs a man by the coat collar and shakes him while shouting goddamn it it is raining heavily", "video_id": "video11806", "sen_id": 259976}, {"caption": "a guy in a black hat stands in the rain screaming at someone", "video_id": "video11806", "sen_id": 259977}, {"caption": "part of very exciting movie and the shouts for someone dear", "video_id": "video11806", "sen_id": 259978}, {"caption": "a guy in a hat is getting mad at a person", "video_id": "video11806", "sen_id": 259979}, {"caption": "a point of view of a driver getting into and starting the car", "video_id": "video10918", "sen_id": 259980}, {"caption": "a man starts a silver car by putting the key in the ignition and causes an indicator to beep", "video_id": "video10918", "sen_id": 259981}, {"caption": "a person sits in his car and turns it on", "video_id": "video10918", "sen_id": 259982}, {"caption": "someone enter the key into the car key holder", "video_id": "video10918", "sen_id": 259983}, {"caption": "a person enters in a car putting key to start that indicates with some leds and beeps", "video_id": "video10918", "sen_id": 259984}, {"caption": "a guy gets in a grey car and starts it", "video_id": "video10918", "sen_id": 259985}, {"caption": "a human struggles to put the key into their car and all the lights flash", "video_id": "video10918", "sen_id": 259986}, {"caption": "there is someone starting the car up and it makes sounds", "video_id": "video10918", "sen_id": 259987}, {"caption": "a man entering his car and then starting the engine", "video_id": "video10918", "sen_id": 259988}, {"caption": "a person is getting in a car and starting it", "video_id": "video10918", "sen_id": 259989}, {"caption": "there is a man entering his car and starting", "video_id": "video10918", "sen_id": 259990}, {"caption": "a person puts the car key into the ignition and all the lights come on", "video_id": "video10918", "sen_id": 259991}, {"caption": "a person gets into a small silver car and then starts the car with a key", "video_id": "video10918", "sen_id": 259992}, {"caption": "a man is starting the car by closing the car door", "video_id": "video10918", "sen_id": 259993}, {"caption": "a man gets into a car and puts the key in the ignition and starts it", "video_id": "video10918", "sen_id": 259994}, {"caption": "the driver is inserting some keys to lock the car", "video_id": "video10918", "sen_id": 259995}, {"caption": "the inside views of the car like steering seats are shown", "video_id": "video10918", "sen_id": 259996}, {"caption": "a man gets into and starts a silver car", "video_id": "video10918", "sen_id": 259997}, {"caption": "a man gets into a car and puts the key in the ignition looking at the speedometer", "video_id": "video10918", "sen_id": 259998}, {"caption": "a person is driving in their car", "video_id": "video10918", "sen_id": 259999}]} ================================================ FILE: dataset/videodatainfo_2017.json ================================================ [File too large to display: 22.0 MB] ================================================ FILE: dataset/videos/README.md ================================================ Download dataset video here ================================================ FILE: dataset_cache/README.md ================================================ Directory to store datastore cache ================================================ FILE: docker-compose.yml ================================================ version: '3.2' services: backend: image: scopeinfinity/video2description:deploy environment: V2D_CONFIG_FILE: config_docker.json networks: internal: ipv4_address: 172.14.0.2 volumes: - uploads:/home/si/v2d/uploads/:ro - ./src:/home/si/v2d/src/:ro entrypoint: /bin/bash -i -c 'python -m backend.parser server -s -m /home/si/v2d/models/ResNet_D512L512_G128G64_D1024D0.20BN_BDGRU1024_D0.2L1024DVS_model.dat_4983_loss_2.350_Cider0.355_Blue0.353_Rouge0.571_Meteor0.247_TOTAL_1.558_BEST 2>&1' frontend: build: context: . dockerfile: frontend.Dockerfile image: scopeinfinity/video2description:frontend ports: - "8080:5000" environment: V2D_CONFIG_FILE: config_docker.json networks: internal: ipv4_address: 172.14.0.3 volumes: - uploads:/home/si/v2d/uploads/ - ./src:/home/si/v2d/src/:ro entrypoint: /bin/bash -c 'python -m frontend.app 2>&1' volumes: uploads: networks: internal: ipam: driver: default config: - subnet: "172.14.0.0/24" ================================================ FILE: docker_build.sh ================================================ #!/bin/bash remote="scopeinfinity/video2description" for file_tag in "backend.Dockerfile ffmpeg_builder" "backend.Dockerfile glove_builder" "backend.Dockerfile deploy" "frontend.Dockerfile frontend"; do set -- $file_tag docker build --target $2 -t $remote:$2 --cache-from $remote:$2 --build-arg BUILDKIT_INLINE_CACHE=1 -f $1 . done ================================================ FILE: docker_hub.sh ================================================ #!/bin/bash docker $1 scopeinfinity/video2description:frontend docker $1 scopeinfinity/video2description:ffmpeg_builder docker $1 scopeinfinity/video2description:glove_builder docker $1 scopeinfinity/video2description:deploy ================================================ FILE: docker_test.sh ================================================ #!/bin/bash set -e trap 'kill $(jobs -p) || echo "No background jobs"' EXIT TIMEOUT_WAIT_FOR_BACKEND=${1:-5} # in minutes echo "[docker][backend] ./run_tests.sh" docker container run scopeinfinity/video2description:deploy conda run -n V2D /bin/bash -c 'cd /home/si/v2d/src/ && ./run_tests.sh' docker-compose up --detach docker-compose logs -f & for x in `seq ${TIMEOUT_WAIT_FOR_BACKEND}`;do sleep "1m"; curl "http://localhost:8080/model_weights_status" 2>&1 | tee /dev/stderr | grep -q '\[SUCCESS\]' && break; done 2>&1 || { echo "Backend model_weights_status failed to come to success"; exit 1; } echo "Backend model_weights_status: SUCCESS" # Run tests external to docker echo "[external] Executing tests on [docker][deploy]" python -m unittest discover tests/ docker-compose down ================================================ FILE: early_tests.sh ================================================ #!/bin/bash # Execute light tests which can be called before setting up environment to save time and resources. cd src/ python -m unittest tests.env.test_config ================================================ FILE: environment.yml ================================================ name: V2D channels: - conda-forge - defaults dependencies: - pip - python=2.7 - librosa - pip: - six - opencv-python-headless==4.1.1.26 - numpy - flask - matplotlib - pylint - h5py<3.0.0 - gtk2 - urllib3 - waitress - keras==2.0.8 - tensorflow==1.2.1 ================================================ FILE: frontend.Dockerfile ================================================ FROM python:2 as frontend RUN pip install enum34 flask waitress RUN useradd -m -s /bin/bash si RUN mkdir -p /home/si/v2d/uploads RUN chown si:si /home/si/v2d/uploads USER si # Prepare basic files ENV V2D_CONFIG_FILE=config_docker.json RUN mkdir -p /tmp/v2d/app/uploads COPY --chown=si:si src/frontend /home/si/v2d/src/frontend/ COPY --chown=si:si src/common /home/si/v2d/src/common/ COPY --chown=si:si src/*.json /home/si/v2d/src/ COPY --chown=si:si src/__init__.py /home/si/v2d/src/__init__.py WORKDIR /home/si/v2d/src ================================================ FILE: keep_alive.sh ================================================ #!/bin/bash # Keep streaming something every minute upto X or job get completed whichever first. TIMEOUT="${1:?}" EXEC="${2:?}" shift 2 timeout "${TIMEOUT}m" bash -c 'while true;do echo "Time: $(date)"; sleep 1m;done;' & TIMER_PID="$!" (timeout "${TIMEOUT}m" $EXEC "$@";kill $TIMER_PID) echo "Exiting keep alive" ================================================ FILE: requirements.txt ================================================ parameterized selenium ================================================ FILE: src/__init__.py ================================================ ================================================ FILE: src/backend/CombinedResults/calculate_score_results.sh ================================================ ls result*.txt | xargs -I {} sh -c '[ ! -f eval_{} ] && python ../../cococaption/cocoeval.py {} | tail -n 1 > eval_{}' ================================================ FILE: src/backend/CombinedResults/calculate_total_score_json.py ================================================ import ast a = ast.literal_eval(raw_input().strip()) z=0 for x in a.keys(): if x[-1] == '3' or x[-1] == '2' or x[-1] == '1': continue z+=a[x] print(z) ================================================ FILE: src/backend/CombinedResults/find_total_sentences_unique.py ================================================ import json, sys z = json.load(open(sys.argv[1])) sentences = [x['caption'] for x in z['predicted']] print("%d Unique sentences out of %d"%(len(set(sentences)),len(sentences))) ================================================ FILE: src/backend/CombinedResults/summary.sh ================================================ ls result_* | xargs -I {} sh -c 'echo {}; [ -f eval_{} ] && cat eval_{} &&cat eval_{} | python calculate_total_score_json.py;python find_total_sentences_unique.py {};echo ""' ================================================ FILE: src/backend/__init__.py ================================================ ================================================ FILE: src/backend/data.py ================================================ import cv2 import json import os import re from pytube import YouTube from subprocess import check_output DIR = 'Videos' CATEGORIES = (1<<3) with open('train_2017/videodatainfo_2017.json') as f: vdi = json.loads(f.read()) _videos={} for v in vdi['videos']: if ((1<0: _videos[v['video_id']] = { 'url' : v['url'] } for s in vdi['sentences']: if s['video_id'] in _videos.keys(): _videos[s['video_id']]['caption'] = s['caption'] def download_all(): count = 0 for _id in _videos.keys(): print("Dowloading %s " % _id) getVideoFname(_id) count+=1 print("%3.2f %% Completed" % (100.0*count/len(_videos.keys()))) def sz_videos(): return len(_videos) def get_videoId(index): v = _videos.keys()[index] return v def getVideoFname(videoId): try: fname = DIR+"/"+videoId+".mp4" # Caching if os.path.isfile(fname): print("Used cached video file %s " % fname) return fname url = _videos[videoId]['url'] print("Fetching info from %s " % url) yt = YouTube(url) v = yt.filter('mp4')[0] # For Non mp4, NOT SUPPORTED for now # if v is None: # v = yt.videos()[0] dfname = DIR+"/"+v.filename+".mp4" if v: print("Video Downloading %s " % videoId) v.download(DIR) print("Moving %s to %s " % (dfname,fname)) os.rename(dfname,fname) print("Video Downloaded") return fname else: print("Video not Found for %s " % videoId) return None except Exception as e: print(str(e)) return None def getCaption(videoId): return _videos[videoId]['caption'] def getDuration(fname): return int(float(os.popen("ffprobe -i %s -show_format 2>&1 | grep duration | sed 's/duration=//'" % (fname,)).read())) def getFrame(fname,ts): iname = 'Videos/frames/frame.png' hr = ts//3600 ts = ts%(3600) mi = ts//60 ts = ts%60 time = "%02d:%02d:%02d" % (hr,mi,ts) print("getting frame for time %s " % time) os.popen("ffmpeg -y -ss %s -i %s -frames 1 %s" % (time,fname,iname)) img = cv2.imread(iname) return img def getVideo(videoId): fname = getVideoFname(videoId) if fname is None: return None print("Loading Video %s " % fname) duration = getDuration(fname) print("Duration " + str(duration) +" sec") COUNT = 5 if duration < 15*COUNT: print("Video too short") return None frames = [] for i in range(COUNT): image = getFrame(fname,15*(i+1)) frames.append(image) return frames ================================================ FILE: src/backend/framework.py ================================================ import ast import csv import json import numpy as np import os import shutil import sys from keras import callbacks from pprint import pformat from random import shuffle from backend.model import VModel from backend.vpreprocess import Preprocessor from common.config import get_app_config, get_vpreprocess_config from common.logger import logger from common.status import ModelWeightsStatus WORKERS = 40 DATASET_CACHE = get_app_config()["DATASET_CACHE"] COCOFNAME = get_vpreprocess_config()["COCOFNAME"] CLABEL = 'ResNet_D512L512_G128G64_D1024D0.20BN_BDLSTM1024_D0.2L1024DVS' state_uninit = {'epochs':5000, 'start_batch':0, 'batch_size':100, 'saveAtBatch':500, 'steps_per_epoch':500} MFNAME = DATASET_CACHE+'/'+CLABEL+'_model.dat' _MFNAME = DATASET_CACHE+'/'+CLABEL+'_model.dat.bak' STATE = DATASET_CACHE+'/'+CLABEL+'_state.txt' RESULTS = DATASET_CACHE+'/'+CLABEL+'_results.txt' FRESTART = DATASET_CACHE+'/restart' PREDICT_BATCHSIZE = 200 class TrainingLogs: def __init__(self, prefix=""): self.epochLogHistory = [] self.fname = DATASET_CACHE+'/'+CLABEL + "_logs_" + prefix + ".txt" def flush(self): if not os.path.exists(self.fname): with open(self.fname, "w") as f: wr = csv.writer(f) if len(self.epochLogHistory) > 0: with open(self.fname, "a") as f: wr = csv.writer(f) for h in self.epochLogHistory: wr.writerow(h) self.epochLogHistory = [] logger.debug("Training Logs flushed") def add(self,cont): MXCol = 15 dat = [-1] * 15 for i in range(min(MXCol,len(cont))): dat[i]=cont[i] self.epochLogHistory.append(dat) class ModelGeneratorCallback(callbacks.Callback): def __init__(self, state, tlogs, elogs, framework): self.state = state self.lastloss = float('inf') self.tlogs = tlogs self.elogs = elogs self.last_epochmodel = None self.framework = framework self.batchTrainedCounter = 0 self.bestlossepoch = float('inf') def on_epoch_end(self, epoch, logs={}): logger.debug("Epoch %d End " % epoch) self.state['epochs']-=1 loss = logs['loss'] acc = logs['acc'] valloss = logs['val_loss'] valacc = logs['val_acc'] # Sample Content # {'CIDEr': 0.11325126353463148, 'Bleu_4': 0.1706107390467726, 'Bleu_3': 0.27462591349020055, 'Bleu_2': 0.4157995334621001, 'Bleu_1': 0.6064295446876932, 'ROUGE_L': 0.40471970665189977, 'METEOR': 0.17162570735633326} coco_json = self.framework.eval_onvalidation() cider = coco_json['CIDEr'] bleu4 = coco_json['Bleu_4'] rouge = coco_json['ROUGE_L'] meteor = coco_json['METEOR'] ename = "%.3f_Cider%.3f_Blue%.3f_Rouge%.3f_Meteor%.3f" % (valloss, cider, bleu4, rouge, meteor) self.elogs.add([epoch,loss, acc, valloss, valacc, cider, bleu4, rouge, meteor]) self.elogs.flush() if valloss < self.bestlossepoch or True: to_rm = self.last_epochmodel self.last_epochmodel = self.framework.save(epoch=("%03d_loss_%s" % (self.state['epochs'],ename))) self.bestlossepoch = valloss if to_rm is not None: pass # os.remove(to_rm) return def on_batch_end(self, batch, logs={}): logger.debug("Batch %d ends" % batch) valloss = -1 valacc = -1 loss = logs['loss'] acc = logs['acc'] self.lastloss = loss print("Keys Logger %s " % str(logs.keys())) self.tlogs.add([batch, loss, acc, valloss, valacc]) self.state['start_batch'] += 1 self.batchTrainedCounter += 1 logger.debug("Batches Trained : %d" % self.batchTrainedCounter) if self.batchTrainedCounter % self.state['saveAtBatch'] == 0: logger.debug("Preparing To Save") self.framework.save() self.tlogs.flush() class Framework(): def __init__(self, model_load = MFNAME, train_mode = False): self.mode_learning = train_mode self.state = state_uninit self.file_model = model_load self.status_model_weights = ModelWeightsStatus.NO_INFO self.tlogs = TrainingLogs() self.elogs = TrainingLogs(prefix = "epoch_") self.model = None # Init in self.build_model() self.preprocess = Preprocessor() self.build_model() self.load() logger.debug("__init__ framework complete") def build_model(self): vocab = self.preprocess.vocab self.vmodel = VModel(vocab.CAPTION_LEN, vocab.VOCAB_SIZE, learning = self.mode_learning) self.model = self.vmodel.get_model() assert self.preprocess is not None self.preprocess.set_vmodel(self.vmodel) def load(self): logger.debug("Model Path: %s" % self.file_model) if os.path.exists(self.file_model): self.model.load_weights(self.file_model) self.status_model_weights = ModelWeightsStatus.SUCCESS logger.debug("Weights Loaded") else: self.status_model_weights = ModelWeightsStatus.MODEL_NOT_FOUND logger.warning("Weights files not found.") if os.path.exists(STATE): with open(STATE) as f: self.state = json.load(f) logger.debug("State Loaded") def get_weights_status(self): return str(self.status_model_weights) def save(self, epoch='xx'): try: pass finally: tname = _MFNAME self.model.save_weights(tname) fname = self.file_model if epoch != 'xx': fname = self.file_model + '_' + epoch shutil.copy2(tname,fname) os.remove(tname) logger.debug("Weights Saved") with open(STATE,'w') as f: json.dump(self.state,f) logger.debug("State Saved") return fname return None def train_generator(self): epochs = self.state['epochs'] bs = self.state['batch_size'] steps_per_epoch = self.state['steps_per_epoch'] validation_steps = 1 logger.debug("Epochs Left : %d " % epochs) logger.debug("Batch Size : %d " % bs) train_dg = self.preprocess.data_generator(bs, start=self.state['start_batch'], typeSet = 0) val_dg = self.preprocess.data_generator(bs, -1, typeSet = 1) logger.debug("Attemping to fit") callbacklist = [ModelGeneratorCallback(self.state, self.tlogs, self.elogs, self)] self.vmodel.train_mode() self.model.fit_generator(train_dg, steps_per_epoch=steps_per_epoch, epochs=epochs, verbose=1,validation_data=val_dg, validation_steps=validation_steps, initial_epoch=0, callbacks=callbacklist, workers=WORKERS, use_multiprocessing=True) def predict_model_direct(self, fnames, cache_ids = None): videoVecs = [] audioVecs = [] for i in range(len(fnames)): cid = None if cache_ids is not None: cid = cache_ids[i] vid_audio = self.preprocess.get_video_content(fnames[i], cache_id = cid) if vid_audio is None: return None,{'error':'Video %d couldn\'t be loaded. %s ' % (i, fnames[i])} videoVecs.append(vid_audio[0]) # Video Features audioVecs.append(vid_audio[1]) # Audio Features videoVecs = np.array(videoVecs) audioVecs = np.array(audioVecs) # videoVecs =np.array([self.preprocess.get_video_content(f) for f in fnames]) count = len(fnames) logger.debug("Predicting for Videos :- \n\t%s " % fnames) l = 0 vocab = self.preprocess.vocab startCapRow = [vocab.wordEmbedding[vocab.specialWords['START']] ] startCapRow.extend([ vocab.wordEmbedding[vocab.specialWords['NONE']] ] * vocab.CAPTION_LEN) embeddedCap = np.array([ startCapRow ] * count) logger.debug("Shape of Caption : %s", str(np.shape(embeddedCap))) stringCaption = [] for i in range(count): stringCaption.append([]) while l < vocab.CAPTION_LEN: newOneHotCap = self.model.predict([embeddedCap, audioVecs, videoVecs]) print("Shape of out Predict Model : %s " % str(np.shape(newOneHotCap))) for i,newOneHotWord in enumerate(newOneHotCap): nword = vocab.word_fromonehot(newOneHotWord[l]) # print(str(i)+" "+str(l)+" "+nword) stringCaption[i].append( nword ) if l + 1 != vocab.CAPTION_LEN: embeddedCap[i][l+1] = vocab.wordEmbedding[nword] print([' '.join(cap) for cap in stringCaption]) l += 1 logger.debug("Prediction Complete") captionObject = [] for i,cap in enumerate(stringCaption): captionObject.append({'fname':fnames[i], 'caption':cap}) return stringCaption, captionObject def predict_ids(self, _ids): logger.debug("Trying to predict for %s" % (_ids,)) result = self.predict_model(_ids = _ids) return result def predict_fnames(self, fnames): logger.debug("Trying to predict for %s" % (fnames,)) result = self.predict_model(fnames = fnames) return result def predict_model(self, _ids = None, fnames = None): assert (_ids is None) ^ (fnames is None) vHandler = self.preprocess.vHandler if fnames is None: fnames = [] for _id in _ids: logger.debug("Obtaining fname for %d" % _id) fname = vHandler.downloadVideo(_id) if fname is None: logger.info("Ignoring %d video " % _id) else: fnames.append(fname) batch_size = PREDICT_BATCHSIZE batch_count = (len(fnames)+batch_size-1)//batch_size predictions,output = ([],[]) for i in range(batch_count): cids = None if _ids is not None: cids = _ids[i*batch_size:(i+1)*batch_size] pred,out = self.predict_model_direct(fnames[i*batch_size:(i+1)*batch_size], cache_ids = cids) if pred is None: logger.debug(json.dumps(out)) assert False predictions.extend(pred) output.extend(out) results = [] for i in range(len(fnames)): logger.debug("For eog %s" % fnames[i]) predictedCaption = ' '.join(predictions[i]) logger.debug("Predicted Caption : %s" % predictedCaption ) actualCaption = None if _ids is not None: actualCaption = vHandler.getCaptionData()[_ids[i]] logger.debug("Actual Captions - \n%s" % pformat(actualCaption) ) res = dict() res['fname'] = fnames[i] res['output'] = predictedCaption res['actual'] = actualCaption results.append(res) return json.dumps(results, indent=4, sort_keys=True) def isVideoExtension(self, fname): for ext in ['mp4','jpeg','png']: if fname.endswith('.'+ext): return True return False def predict_test(self, dirpath, mxc): videos = ["%s/%s" % (dirpath,vid) for vid in os.listdir(dirpath) if self.isVideoExtension(vid)][0:mxc] self.predict_model(fnames = videos) def clean_caption(self, msg): if '<' in msg: return msg.split("<")[0] return msg def save_all(self, _ids, save = RESULTS): _result = json.loads(self.predict_ids(_ids)) test_predicted = [] test_actual = [] for res in _result: tp = dict() _id = int(res['fname'].split('/')[-1].split('.')[0]) tp['video_id'] = _id tp['caption'] = self.clean_caption(res['output']) test_predicted.append(tp) for cap in res['actual']: tp_actual = dict() tp_actual['video_id'] = _id tp_actual['caption'] = cap test_actual.append(tp_actual) result = dict() result['predicted'] = test_predicted result['actual'] = test_actual with open(save, 'w') as f: f.write(json.dumps(result)) logger.debug("Result Saved") def eval_onvalidation(self): fname = '/tmp/save_model_' + CLABEL logger.debug("Calculating cocoscore") valids = self.preprocess.vHandler.getValidationIds() self.save_all(valids, save = fname) cmd = "python %s %s | tail -n 1" % (COCOFNAME, fname) coco = ast.literal_eval(os.popen(cmd).read().strip()) logger.debug("Done") logger.debug("Coco Scores :%s\n" % json.dumps(coco,indent=4, sort_keys=True)) return coco def get_testids(self, count = -1): ids = self.preprocess.vHandler.getTestIds() if count == -1: count = len(ids) else: shuffle(ids) return ids[:count] def get_valids(self, count = -1): ids = self.preprocess.vHandler.getValidationIds() if count == -1: count = len(ids) else: shuffle(ids) return ids[:count] def get_trainids(self, count = -1): ids = self.preprocess.vHandler.getTrainingIds() if count == -1: count = len(ids) else: shuffle(ids) return ids[:count] ================================================ FILE: src/backend/model.py ================================================ import numpy as np import os import sys from keras.applications import ResNet50, VGG16 from keras.applications.inception_v3 import InceptionV3 from keras.applications.resnet50 import preprocess_input from keras.layers import Dropout, Merge, Flatten, RepeatVector, Activation from keras.layers import Embedding, Conv2D, MaxPooling2D, LSTM, GRU, BatchNormalization from keras.layers import TimeDistributed, Dense, Input, Flatten, GlobalAveragePooling2D, Bidirectional from keras.models import Model from keras.models import Sequential from keras.optimizers import RMSprop from keras.preprocessing import image from keras.regularizers import l2 import keras.backend as K import tensorflow as tf from backend.vocab import Vocab from common.logger import logger def sentence_distance(y_true, y_pred): return K.sqrt(K.sum(K.square(K.abs(y_true-y_pred)),axis=1,keepdims=True)) class VModel: def __init__(self, CAPTION_LEN, VOCAB_SIZE, cutoffonly = False, learning = True): self.CAPTION_LEN = CAPTION_LEN self.VOCAB_SIZE = VOCAB_SIZE if not cutoffonly: self.build_mcnn(self.CAPTION_LEN, self.VOCAB_SIZE, learning = learning) self.build_cutoffmodel() def get_model(self): return self.model ''' Attempt to split pretrained CNN out of model To cache a lower dimension vector per frame to file # PC : pretrained CNN will be non-trainable now ''' def build_cutoffmodel(self): base = ResNet50(include_top = False, weights='imagenet') # base = InceptionV3(include_top = False, weights='imagenet') self.co_model = base logger.debug("Building Cutoff Model") self.co_model.summary() self.co_model._make_predict_function() self.graph = tf.get_default_graph() logger.debug("Building Cutoff Model : Completed") return self.co_model # co == Cutoff Model def co_getoutshape(self, assert_model = None): # ResNet shape = (None,2048) ## Inception V3 # shape = (None, 8*8*2048) logger.debug("Model Cutoff OutShape : %s" % str(shape)) ''' # Not in use if assert_model is not None: ashape = assert_model.output_shape sz = 1 for x in ashape: if x is not None: sz = sz * x ashape = (None, sz) logger.debug("Assert Model Cutoff OutShape : %s" % str(ashape)) assert shape == ashape ''' assert len(shape) == 2 assert shape[0] is None return shape def preprocess_partialmodel(self, frames): frames_in = np.asarray([image.img_to_array(frame) for frame in frames]) frames_in = preprocess_input(frames_in) with self.graph.as_default(): frames_out = self.co_model.predict(frames_in) frames_out = np.array([frame.flatten() for frame in frames_out]) return frames_out def train_mode(self): K.set_learning_phase(1) def build_mcnn(self, CAPTION_LEN, VOCAB_SIZE, learning = True): if learning: self.train_mode() from backend.videohandler import VideoHandler logger.debug("Creating Model (CNN Cutoff) with Vocab Size : %d " % VOCAB_SIZE) cmodel = Sequential() cmodel.add(TimeDistributed(Dense(512,kernel_initializer='random_normal'), input_shape=(CAPTION_LEN+1,Vocab.OUTDIM_EMB ))) cmodel.add(LSTM(512, return_sequences=True,kernel_initializer='random_normal')) cmodel.summary() input_shape_audio = VideoHandler.AUDIO_FEATURE amodel = Sequential() amodel.add(GRU(128, dropout=0.2, recurrent_dropout=0.2, return_sequences=True, input_shape=input_shape_audio)) amodel.add(BatchNormalization()) amodel.add(GRU(64, dropout=0.2, recurrent_dropout=0.2, return_sequences=True)) amodel.add(BatchNormalization()) amodel.add(Flatten()) amodel.add(RepeatVector(CAPTION_LEN + 1)) amodel.summary() input_shape_vid = self.co_getoutshape() imodel = Sequential() imodel.add(TimeDistributed(Dense(1024,kernel_initializer='random_normal'), input_shape=input_shape_vid)) imodel.add(TimeDistributed(Dropout(0.20))) imodel.add(TimeDistributed(BatchNormalization(axis=-1))) imodel.add(Activation('tanh')) imodel.add(Bidirectional(GRU(1024, return_sequences=False, kernel_initializer='random_normal'))) imodel.add(RepeatVector(CAPTION_LEN + 1)) imodel.summary() model = Sequential() model.add(Merge([cmodel,amodel,imodel],mode='concat')) model.add(TimeDistributed(Dropout(0.2))) model.add(LSTM(1024,return_sequences=True, kernel_initializer='random_normal',recurrent_regularizer=l2(0.01))) model.add(TimeDistributed(Dense(VOCAB_SIZE,kernel_initializer='random_normal'))) model.add(Activation('softmax')) optimizer = RMSprop(lr=0.001, rho=0.9, epsilon=1e-8, decay=0) model.compile(optimizer=optimizer, loss='categorical_crossentropy', metrics=['accuracy']) model.summary() logger.debug("Model Created ResNet_D512L512_G128G64_D1024D0.25BN_BDGRU1024_D0.2L1024DVS") self.model = model return model def plot_model(self, filename): from keras.utils import plot_model plot_model(self.model, to_file=filename, show_shapes = True, show_layer_names = False) print("Model Plotted in %s"%filename) if __name__ == "__main__": if sys.argv[1] == "plot_model": from vocab import Vocab vmodel = VModel(Vocab.CAPTION_LEN, Vocab.VOCAB_SIZE) vmodel.plot_model(sys.argv[2]) ================================================ FILE: src/backend/parser.py ================================================ import argparse import sys from common.logger import logger from common.rpc import register_server, get_rpc, PORT class Parser: def __init__(self): pass def init_framework(self, model_fname = None, train_mode = False): if not hasattr(self,'framework'): from backend.framework import Framework if model_fname is not None: self.framework = Framework(model_load = model_fname, train_mode = train_mode) else: self.framework = Framework(train_mode = train_mode) def parse(self): parser = argparse.ArgumentParser() parser.add_argument('command', choices=['train','predict','server','predict_all_model']) args = parser.parse_args(sys.argv[1:2]) if args.command == 'train': self.train() if args.command == 'predict': self.predict() if args.command == 'server': self.server() if args.command == 'predict_all_model': self.predict_all_model() print(args.command) def train(self): logger.debug("Training Mode") self.init_framework(train_mode = True) self.framework.train_generator() def predict_all_model(self): import glob, os from backend.framework import Framework, MFNAME logger.debug("PredictAllModel Mode") result_dir = 'CombinedResults' os.system('mkdir -p %s' % result_dir) for fname in glob.glob(MFNAME+"_*"): save_file = result_dir + "/result_"+os.path.basename(fname)+"_.txt" if os.path.exists(save_file): continue logger.debug("Working on model %s " % fname) self.framework = Framework(model_load = fname) self.framework.save_all(_ids = self.framework.get_testids(), save = save_file) logger.debug("Done") def predict(self): parser = argparse.ArgumentParser(prog = sys.argv[0]+" predict", description = 'Prediction Mode') parser.add_argument('dataset', choices=['train','test','save_all_test'], help='Video dataset for prediction') parser.add_argument('-c', '--count', type = int, default = 10) args = parser.parse_args(sys.argv[2:]) logger.debug("Prediction Mode") self.init_framework() if args.dataset == 'train': _ids = self.framework.get_trainids(args.count) elif args.dataset == 'test': _ids = self.framework.get_testids(args.count) elif args.dataset == 'save_all_test': self.framework.save_all(_ids = self.framework.get_testids()) return else: assert False self.framework.predict_model(_ids = _ids) def server(self): logger.debug("Server Mode") parser = argparse.ArgumentParser(prog = sys.argv[0]+" server", description = 'Server Mode') parser.add_argument('-i', '--init-only', help='Prepares early caches for faster execution', action='store_true') parser.add_argument('-s', '--start', help='Start RPC Server', action='store_true') parser.add_argument('-m', '--model', help='Model file') parser.add_argument('-pids', '--predict_ids',type=int, help='Obtain Results for given IDs', nargs='+') parser.add_argument('-pfs', '--predict_fnames', help='Obtain Results for given files', nargs='+') parser.add_argument('-cf', '--close_framework', help='Close Server Framework', action='store_true') args = parser.parse_args(sys.argv[2:]) if args.init_only: self.init_framework() print("[RPC][Server][Init][Done]") elif args.start: model_fname = None if args.model: model_fname = args.model self.init_framework(model_fname) register_server(self.framework) elif args.predict_ids: proxy = get_rpc() result = proxy.predict_ids( args.predict_ids ) print(result) elif args.predict_fnames: proxy = get_rpc() result = proxy.predict_fnames( args.predict_fnames ) print(result) elif args.close_framework: proxy = get_rpc() proxy.close_framework() print("[RPC][Send][close_framework]") else: parser.print_help() if __name__ == "__main__": Parser().parse() ================================================ FILE: src/backend/plotepochlog.py ================================================ import matplotlib.pyplot as plt import numpy as np import sys MXPOINT = 100 assert len(sys.argv)>=2 fname=sys.argv[1] showtrain = True if len(sys.argv)>=3: showtrain = (sys.argv[2] == 'yo') showval = True if len(sys.argv)>=4: showval = (sys.argv[3] == 'yo') showepoch = True if len(sys.argv)>=5: showepoch = (sys.argv[4] == 'yo') print("Fname %s " % fname) batch = [] loss = [] acc = [] val_loss = [] val_acc = [] ndata = [] with open(fname,'r') as f: for row in f: rr =[float(x) for x in row.split(',')] ndata.append(rr) ndata = np.array(ndata, dtype='float') print(np.shape(ndata)) step = 1 if len(ndata[0]) > MXPOINT: step = len(ndata[0]) // MXPOINT [batch, loss, acc, val_loss, val_acc,cider,bleu4,rouge,meteor] = [y[::step] for y in np.matrix.transpose(ndata)][:9] x = range(len(batch)) fig = plt.figure() host = fig.add_subplot(111) pscores = host.twinx() pacc = host.twinx() ploss = host.twinx() if showepoch: _b,=host.plot(x,batch,color= plt.cm.viridis(0.95),label='Batches') if showtrain: _a,=pacc.plot(x,acc,'-.',label="Accuracy",color= plt.cm.viridis(0)) _l,=ploss.plot(x,loss, '-', label="Loss", color = plt.cm.viridis(0)) if showval: ploss.plot(x,val_loss,'-', label="Val Loss",color= plt.cm.viridis(0.5)) pacc.plot(x,val_acc,'-.',label="Val Accuracy",color= plt.cm.viridis(0.5)) if showtrain or showval: ploss.legend(loc='lower right') pacc.legend(loc='lower left') ploss.spines['right'].set_position(('outward', 30)) score_total = cider+bleu4+rouge+meteor pscores.plot(x,cider,'-', label="Cider",color= plt.cm.viridis(0.0)) pscores.plot(x,bleu4,'-', label="Bleu4",color= plt.cm.viridis(0.2)) pscores.plot(x,rouge,'-', label="Rouge",color= plt.cm.viridis(0.4)) pscores.plot(x,meteor,'-', label="Meteor",color= plt.cm.viridis(0.6)) pscores.plot(x,score_total,'-', label="Total",color= plt.cm.viridis(0.8)) pscores.legend(loc='upper left') #host.yaxis.label.set_color(_b.get_color()) #ploss.yaxis.label.set_color(_l.get_color()) #pacc.yaxis.label.set_color(_a.get_color()) #plt.savefig("plot.png", bbox_inches='tight') best_iter = np.argmax(score_total) print("Best Iteration %d " % best_iter) print("\tCIDER %.4f " % cider[best_iter]) print("\tBLEU4 %.4f " % bleu4[best_iter]) print("\tROUGE %.4f " % rouge[best_iter]) print("\tMETEOR %.4f " % meteor[best_iter]) print("\tTotalScore %.4f " % score_total[best_iter]) plt.show() ================================================ FILE: src/backend/pred.sh ================================================ python framework.py -predict 882,527155,480723,267111,393362 ================================================ FILE: src/backend/preprocess.py ================================================ import collections import json import os import numpy as np import pickle import random import re import shutil import sys from sets import Set from keras import callbacks from keras.applications import imagenet_utils from keras.preprocessing import image from keras.preprocessing import sequence from common.logger import logger ROOT_DIR = '/home/gagan.cs14/btp' GITBRANCH = os.popen('git branch | grep "*"').read().split(" ")[1][:-1] GITBRANCHPREFIX = "/home/gagan.cs14/btp_"+GITBRANCH+"/" # Parameters CAPTION_LEN = 10 MAX_WORDS = 400000 OUTENCODINGGLOVE = False os.chdir(ROOT_DIR) BADLOGS = GITBRANCHPREFIX+"badlogs.txt" FILENAME_CAPTION = 'ImageDataset/annotations/captions_train2014.json' DIR_IMAGES = 'ImageDataset/train2014/' DIR_IMAGESP = 'ImageDataset/processed/' VOCAB_FILE = GITBRANCHPREFIX+"vocab.dat" GLOVE_FILE = 'glove/glove.6B.100d.txt' OUTDIM_EMB = 100 USE_GLOVE = True WORD_MIN_FREQ = 5 def get_image_fname(_id): return '%sCOCO_train2014_%012d.jpg' % (DIR_IMAGES, _id) vocab = Set([]) v_ind2word = {} v_word2ind = {} VOCAB_SIZE = [0] embeddingLen = None #embeddingMatrix = np.zeros((MAX_WORDS, 100)) #EMBEDDING_FILE = 'embedding' #embeddingMatrixRef = [ embeddingMatrix ] #################################################ADD GIT BRANCH ICAPPF = GITBRANCHPREFIX+'imcap.dat' embeddingIndex = {} EMBEDDINGI_FILE = GITBRANCHPREFIX+'embeddingIScaled5' EMBEDDING_OUT_SCALEFACT = 5 #(-4.0665998, 3.575) needs to be mapped to -1 to +1 embeddingIndexRef = [ embeddingIndex ] def createDirs(): try: os.makedirs(GITBRANCHPREFIX) os.makedirs(ROOT_DIR + '/' + DIR_IMAGESP) except OSError: if not os.path.isdir(GITBRANCHPREFIX): raise def badLogs(msg): print(msg) with open(BADLOGS,"a") as f: f.write(msg) ''' def addToVocab(w): global VOCAB_SIZE vocab.add(w) v_ind2word[ VOCAB_SIZE ] = w v_word2ind[ w ] = VOCAB_SIZE if not isEmbeddingPresent: if w in embeddingIndex.keys(): embeddingMatrix[VOCAB_SIZE] = embeddingIndex[w] print(embeddingMatrix[VOCAB_SIZE]) if VOCAB_SIZE<10: print("%d : %s" % (VOCAB_SIZE, w)) VOCAB_SIZE += 1 return VOCAB_SIZE-1 ''' ''' Add NULL Word Add NonVocab Word ''' ENG_SOS = ">" ENG_EOS = "<" ENG_EXTRA = "___" ENG_NONE = "?!?" ''' def iniVocab(): global W_SOS,W_EOS #addToVocab("none") #addToVocab("extra") #W_SOS = addToVocab(ENG_SOS) #W_EOS = addToVocab(ENG_EOS) ''' def build_gloveVocab(): logger.debug("Started") if len(embeddingIndexRef[0].keys()) > 0: logger.debug("Embedding Already Present %d " % len(embeddingIndexRef[0].keys())) return isEmbeddingPresent = os.path.exists(EMBEDDINGI_FILE) print("Embedding Present %s " % isEmbeddingPresent) if isEmbeddingPresent: '''with open(EMBEDDING_FILE,'r') as f: global embeddingMatrix embeddingMatrix = pickle.load(f) embeddingMatrixRef[0] = embeddingMatrix ''' minVal = float('inf') maxVal = -minVal with open(EMBEDDINGI_FILE,'r') as f: global embeddingIndex embeddingIndex = pickle.load(f) embeddingIndexRef[0] = embeddingIndex for v in embeddingIndex.values(): for x in v: minVal = min(minVal,x) maxVal = max(maxVal,x) #print("minVal, maxVal %s " % str((minVal,maxVal))) #exit() print("Embedding Loaded") else: with open(GLOVE_FILE,'r') as f: for i,line in enumerate(f): tokens = line.split() #print(tokens) tokens = [tok.__str__() for tok in tokens] #print(tokens) #exit() #if i==200: # break word = tokens[0] #embeddingLen = len(tokens)-1 if word == "none": print("YoFound you") if i<5: print(word) #print(tokens[1:]) embeddingIndex[word] = np.asarray(tokens[1:], dtype='float32') * (1.0/EMBEDDING_OUT_SCALEFACT) #print(embeddingIndex[word]) #exit() #exit() assert isEmbeddingPresent == False isEmbeddingPresent = True #with open(EMBEDDING_FILE,'w') as f: # pickle.dump(embeddingMatrix,f) with open(EMBEDDINGI_FILE,'w') as f: pickle.dump(embeddingIndex,f) print("Embedding Saved!") #iniVocab() logger.debug("Completed") ''' def op_on_caption(cap): for w in cap.split(' '): w = w.lower() if w not in vocab: v_word2ind[ w ] = addToVocab(w) ''' def build_image_caption_pair(): if os.path.exists(ICAPPF): with open(ICAPPF,'r') as f: x,mywords = pickle.load(f) print("Image Caption Pair Data Model Loaded") return x,mywords x = {} logger.debug("Started") wordFreq = {} uwords = set([]) with open(FILENAME_CAPTION) as f: captions = json.load(f)['annotations'] count = 0 for cap in captions: cap['caption']= re.sub('[^a-zA-Z]+', ' ', cap['caption'].encode('utf-8')).lower() for w in cap['caption'].split(' '): if w in uwords: wordFreq[w]+=1 else: wordFreq[w] =1 uwords.add(w) #op_on_caption(cap['caption']) if True or count < 100: x[cap['image_id']] = cap['caption'] count+=1 #nmywords = wordFreq.keys() #sorted(nmywords, key=lambda key: wordFreq[key], reverse=True) #print(wordFreq.keys()) mywords = set([w for w in wordFreq.keys() if wordFreq[w]>=WORD_MIN_FREQ]) mywords.add(ENG_SOS) mywords.add(ENG_EOS) mywords.add(ENG_NONE) mywords.add(ENG_EXTRA) #print(mywords) print(len(mywords)) #mywords = mywords[:WORD_TOP] with open(ICAPPF,'w') as f: pickle.dump([x,mywords],f) print("Image Caption Pair Data Model Saved") logger.debug("Completed, Vocab Size NONE ")#%len(v_word2ind)) return (x,mywords) #def rgb2gray(rgb): # return np.dot(rgb[...,:3], [0.299, 0.587, 0.114]) def imageToVec(_id): NEED_W = 224 NEED_H = 224 if type("")==type(_id): fname = _id else: fname = get_image_fname(_id) #afname = DIR_IMAGESP + fname.split('/')[-1] + '.pickle' #if os.path.exists(afname): # with open(afname,'r') as f: # return pickle.load(f) #print(fname) img = image.load_img(fname, target_size=(NEED_H, NEED_W)) x = image.img_to_array(img) x /= 255. x -= 0.5 x *= 2. x = np.asarray(x) #with open(afname,'w') as f: # pickle.dump(x,f) return x ############################################ REMOVE HERE ### #img.save("temp.jpg") #img = cv2.imread(fname) #print(img) #img = cv2.resize(img, (NEED_H, NEED_W)) #cv2.imwrite('test.jpg',img) #img = np.asarray(img) #print("Shape %s " % (str(np.shape(img)))) #cv2.imwrite('temp.jpg',img) #vec = np.asarray(img) #if not vec.any(): # badLogs("All zero for %s\n" % str(_id)) #vec = vec/255.0 #return vec #bw = rgb2gray(img) #print("BW Shape %s " % (str(np.shape(bw)))) def getWord2Ind(w): w=w.lower() if w not in v_word2ind.keys(): w=ENG_EXTRA #print(w) return v_word2ind[w] def word2embd(word): if word not in embeddingIndexRef[0].keys(): word = ENG_EXTRA return embeddingIndexRef[0][word] def embdToWord(embd): bestWord = None distance = float('inf') for word in embeddingIndex.keys(): e=embeddingIndex[word] d = 0 for a,b in zip(e,embd): d+=(a-b)*(a-b) if d0 assert len(v_ind2word) == 0 assert len(v_word2ind) == 0 counter = 0 for w in embeddingIndex.keys(): if w in topwords: v_ind2word[counter]=w v_word2ind[w]=counter counter += 1 # ENG_* words present in embeddingIndex and topwords VOCAB_SIZE[0] = counter #print("Embedding Index Len %d " % len(embeddingIndex.keys())) #exit() print("TOPWords %d " % len(topwords)) print("Embeddding Words %d " % len(embeddingIndex.keys())) print("Cal Vocab Size %d " % VOCAB_SIZE[0]) with open(VOCAB_FILE,'w') as f: pickle.dump([v_ind2word,v_word2ind, VOCAB_SIZE[0]],f) print("Vocab Model Saved") assert ENG_SOS in v_word2ind.keys() assert ENG_EOS in v_word2ind.keys() assert ENG_NONE in v_word2ind.keys() assert ENG_EXTRA in v_word2ind.keys() print("Vocabulary Size %d for %d captions" % (VOCAB_SIZE[0], len(lst))) return lst def feed_image_caption(_id,lst): img,capGl,capOH = get_image_caption(_id,lst) # Glove we_sos = [word2embd(ENG_SOS)] we_eos = [word2embd(ENG_EOS)] # One Hot we_eosOH = [wordToEncode(ENG_EOS,encodeType="onehot")] return ( (we_sos+list(capGl)), img, (list(capOH) + we_eosOH)) def datas_from_ids(idlst,lst): images = [] capS = [] capE = [] for _id in idlst: _capS,_img,_capE = feed_image_caption(_id,lst) images.append(_img) capS.append(_capS) capE.append(_capE) return [[np.asarray(capS),np.asarray(images)],np.asarray(capE)] # Train for batch order 0,0,1,0,1,2,0,1,2,3,4,0,1,2,3,4,5.. def data_generator(lst, batch_size, start=0, isTrainSet = True): count = (len(lst.keys()))//batch_size #print("Max Unique Batches %d " % count) countValidation = 5#100 countTrain = count - 100 print("Validation Data : %d , Train Batches %d, BatchSize %d\tBatchOffset : %d" % (countValidation, countTrain, batch_size, start)) offset = 0 left = countTrain extra = 0 #start = 0 if not isTrainSet: # Validation Data left = countValidation offset = countTrain * batch_size idlst = lst.keys()[offset:offset+left] yield datas_from_ids(idlst,lst) return # Training Data maxSequenceLength = countTrain*(countTrain+1)//2 cbatch = 1 batchId = 1 iterBatch = 0 for it in range(maxSequenceLength): if batchId == cbatch: batchId = 1 cbatch *= 2 if cbatch > countTrain: cbatch = countTrain else: batchId += 1 iterBatch+=1 if iterBatch<=start: continue idlst = lst.keys()[(batchId-1)*batch_size:(batchId)*batch_size] print("Batch Id %d Loaded" % (batchId-1)) yield datas_from_ids(idlst,lst) return def build_dataset(lst, batch_size = -1, val_size = 0,outerepoch=random.randint(0,10000)): logger.debug("Started") #_id = lst.keys()[0] #imageToVec(_id) #capVec = captionToVec(lst[_id]) #print(capVec) #print("Shape of CapVec %s " % str(np.shape(capVec))) train_set = [] val_set = [] if batch_size == -1: for i,_id in enumerate(lst.keys()): if i > 100: break train_set.append( get_image_caption(_id,lst)) else: tsize = batch_size count = (len(lst.keys())-val_size)//tsize print("Max Unique Outer Batches %d " % count) outerepoch = outerepoch%count oinds = outerepoch*tsize einds = (outerepoch+1)*tsize mylst = lst.keys()[oinds:einds] mylst.extend(lst.keys()[-val_size-1:]) mx = len(mylst) #mx = 1000 #########HERE########### splitKey = tsize #int(mx*0.9) print("Max Keys %d\tSplit keys %d" % (mx, splitKey)) todolist = [("Train set",train_set, batch_size,0,splitKey),("Validation Set",val_set, val_size,splitKey,mx-splitKey)] for (s,cset, batchsz, offset, datasz) in todolist: #indicies = np.random.choice(datasz, batchsz, replace=False) #indicies = indicies + offset for c,_id in enumerate(mylst[offset:(datasz+offset)]):# enumerate(indicies): #_id = lst.keys()[i] capimg = get_image_caption(_id,lst) #if c==0: # print("%s First Image Id %s with caption : %s " % (s,str(_id), capimg[0])) cset.append(capimg) if (c*100)%batchsz == 0: print("%s %d %% Loaded!" % (s, c*100/batchsz)) print("BS %d, VS %d " % (batch_size, val_size)) print("Shape of Training Set %s " % str(np.shape(train_set))) print("Shape of Validation Set %s " % str(np.shape(val_set))) logger.debug("Completed") return [train_set, val_set] ''' def train_generator(dataset): i = 0 while i [caption] self.captions = dict() idcreated = set() # Training Set for sen in data_train['sentences']: _id = self.stringIdToInt(sen['video_id']) if _id not in idcreated: idcreated.add(_id) self.captions[_id] = [] self.captions[_id].append(sen['caption']) self.train_ids = list(idcreated) idcreated = set() # Test Set for sen in data_test['sentences']: _id = self.stringIdToInt(sen['video_id']) if _id not in idcreated: idcreated.add(_id) self.captions[_id] = [] self.captions[_id].append(sen['caption']) self.test_ids = list(idcreated) def set_vmodel(self,vmodel): self.vmodel = vmodel def getCaptionData(self): return self.captions def stringIdToInt(self,sid): assert(sid[:5]=='video') return int(sid[5:]) def getAllIds(self): return self.captions.keys() def getDownloadedIds(self): allfiles = os.listdir(self.vdir) vfiles = [] for f in allfiles: # Issue: getDownloadedIds is called before creation of *_ignore file # Program crases onces for creating these files then works normally if f.endswith(".mp4") and (not os.path.exists(os.path.join(self.vdir,f+"_ignore"))): if os.path.getsize("%s/%s" % (self.vdir,f)) >= VideoHandler.STHRES: vfiles.append(int(f[:-4])) return vfiles def filterMod100(self, parentlst, lst, _min, _max): parentlst = set(parentlst) lst = set(lst) flst = lst.intersection(parentlst) lst = list(flst) ids = [] for i,_id in enumerate(lst): if (i%100)>=_min and (i%100)<_max: ids.append(_id) return ids def getTrainingIds(self): return self.filterMod100(self.get_otrain_ids(), self.getDownloadedIds(), 0, self.splitTrainValid[0]) def getValidationIds(self): return self.filterMod100(self.get_otrain_ids(), self.getDownloadedIds(), self.splitTrainValid[0],100) def getTestIds(self): return self.filterMod100(self.get_otest_ids(), self.getDownloadedIds(), 0, 100) def get_otrain_ids(self): return self.train_ids def get_otest_ids(self): return self.test_ids def getYoutubeId(self,url): query = urllibparse.parse_qs(urllibparse.urlparse(url).query) print(query) return query['v'][0] def downloadVideo(self, _id, logs = True): video = self.vdata[_id] url = video['url'] stime = video['start time'] etime = video['end time'] sfname = "%s/%d.mp4" % (self.vdir, _id) if os.path.exists(sfname): if logs: print("Video Id [%d] Already Downloaded" % _id) return sfname youtubeId = self.getYoutubeId(url) turl = "curl 'https://hesetube.com/download.php?id=%s'" % (youtubeId) durl = "https://hesetube.com/video/%s.mp4?start=%f&end=%f" % (youtubeId, stime, etime) print(durl) print(turl) os.system(turl) cont = urllib.urlopen(durl).read() with open(sfname,"wb") as f: f.write(cont) print("Video Id [%d] Downloaded : %s " % (_id, youtubeId)) fs = os.path.getsize(sfname) if fs < VideoHandler.STHRES: print("Crosscheck failed, File Size : %d" % fs) with open(self.logfile,"a") as f: f.write("Crosscheck file %d, %s with size %d\n" % (_id, youtubeId, fs)) os.remove(sfname) open(sfname,'a').close() self.takebreak() return None else: self.takebreak() return sfname def takebreak(self): time.sleep(VideoHandler.SLEEPTIME) ''' Either frames of video from id or vfname ''' CRAZY = 0 #@synchronized def get_crazy_id(self): VideoHandler.EXTRACT_COUNTER += 1 return VideoHandler.EXTRACT_COUNTER def get_iframes_cached(self, _id): cfname = "%s/%d.npy" % (self.cdir, _id) if os.path.exists(cfname): f = open(cfname, 'rb') frames = np.load(f) assert len(frames) == self.LIMIT_FRAMES return frames return None def get_audio_cached(self, _id): afname = "%s/%d.npy" % (self.adir, _id) if os.path.exists(afname): f = open(afname, 'rb') feature = np.load(f) if np.shape(feature) != self.AUDIO_FEATURE: print("Feature Shape error at %d, %s" % (_id, np.shape(feature))) assert np.shape(feature) == self.AUDIO_FEATURE return feature return None def cached_iframe(self, _id, frames): cfname = "%s/%d.npy" % (self.cdir, _id) print("Cached %s" % cfname) with open(cfname, 'wb') as f: np.save(f,frames) def cached_audio(self, _id, feature): afname = "%s/%d.npy" % (self.adir, _id) print("Cached %s" % afname) with open(afname, 'wb') as f: np.save(f,feature) def file_to_videofeature(self, sfname): vcap = cv2.VideoCapture(sfname) success, frame = vcap.read() allframes = [] while True: success, frame = vcap.read() if not success: break allframes.append(cv2.resize(frame, VideoHandler.SHAPE)) if len(allframes) < self.LIMIT_FRAMES: print("File [%s] with limited frames (%d)" % (sfname, len(allframes))) # Ignore those videos os.system("touch %s_ignore" % sfname) return None period = len(allframes) // self.LIMIT_FRAMES rframes = allframes[:period * self.LIMIT_FRAMES:period] frames_out = self.vmodel.preprocess_partialmodel(rframes) return frames_out def file_to_audiofeature(self, sfname): audio_y, sr = librosa.load(sfname) afeatures = librosa.feature.mfcc(y=audio_y, sr=sr, n_mfcc=self.AUDIO_FEATURE[1]) afeatures = np.transpose(afeatures) ll = len(afeatures) parts = ll//self.AUDIO_FEATURE[0] division = [] for i in range(self.AUDIO_FEATURE[0] - 1): division.append((i+1)*parts) for i in range(ll%self.AUDIO_FEATURE[0]):#left over division[i]+=1 afeatures = np.split(np.array(afeatures), division) afeature_out = [] for af in afeatures: afeature_out.append(np.mean(np.array(af),axis = 0)) afeature_out = np.asarray(afeature_out) if np.shape(afeature_out) != self.AUDIO_FEATURE: print("File [%s] with audio problem (%s)" % (sfname, str(np.shape(afeature_out)))) # Ignore videos os.system("touch %s_ignore" % sfname) return afeature_out # (Video Feature, Audio Feature) def get_iframes_audio(self, _id = None, sfname = None, logs = True, cache_id = None): assert (_id is None) ^ (sfname is None) # Load if cached frames_out = None afeature_out = None if _id is not None or cache_id is not None: if _id is not None: cache_id = _id frames_out = self.get_iframes_cached(cache_id) afeature_out = self.get_audio_cached(cache_id) if frames_out is not None and afeature_out is not None: return (frames_out, afeature_out) # Load frames from file if sfname is None: sfname = self.downloadVideo(_id, logs) if sfname is None: return None to_cache_video = False to_cache_audio = False if frames_out is None: frames_out = self.file_to_videofeature(sfname) to_cache_video = True if afeature_out is None: afeature_out = self.file_to_audiofeature(sfname) to_cache_audio = True # Cache it if _id is not None or cache_id is not None: if _id is not None: cache_id = _id if to_cache_video: self.cached_iframe(cache_id, frames_out) if to_cache_audio: self.cached_audio(cache_id, afeature_out) return (frames_out, afeature_out) def get_frames(self,_id = None, sfname = None, logs = True): assert (_id is None) ^ (sfname is None) if sfname is None: sfname = self.downloadVideo(_id, logs) if sfname is None: return None edir = "%s/v_%d" % (self.tdir, self.get_crazy_id()) if os.path.exists(edir): shutil.rmtree(edir) os.mkdir(edir) cmd = "ffmpeg -i %s -vf fps=%d -s %dx%d %s/0_%%03d.jpg &> /dev/null" % ( sfname, 5, VideoHandler.SHAPE[0], VideoHandler.SHAPE[1], edir) #&> /dev/null if logs: print(cmd) returnStatus = os.system(cmd) if returnStatus != 0: print("Extracting Failed : %s" % sfname) if os.path.exists(edir): print(cmd) print("Dir Exists") #shutil.rmtree(edir) return None files = os.listdir(edir) files = [("%s/%s"%(edir,f)) for f in files] LIMIT_FRAMES = 10 if len(files) captions) logger.debug("Glove File %s\nEmbedding File %s\nVocab File %s\n" % (GLOVE_FILE, WORD_EMBEDDED_CACHE, VOCAB_FILE)) self.specialWords = dict() self.specialWords['START'] = '>' self.specialWords['END'] = '<' self.specialWords['NONE'] = '?!?' self.specialWords['EXTRA'] = '___' freshWordEmbedding = self.loadWordEmbedding(GLOVE_FILE) for word,enc in self.specialWords.items(): assert enc in self.wordEmbedding.keys() self.buildVocab(data, train_ids, freshWordEmbedding) logger.debug("Vocab Build Completed") def loadWordEmbedding(self, glove_file): self.wordEmbedding = loadFromPickleIfExists(WORD_EMBEDDED_CACHE) if self.wordEmbedding: logger.debug("Embedding Loaded") return False else: self.wordEmbedding = dict() with open(glove_file, 'r') as f: for i,line in enumerate(f): tokens = line.split() tokens = [tok.__str__() for tok in tokens] word = tokens[0] self.wordEmbedding[word] = np.asarray(tokens[1:], dtype='float32') minVal = float('inf') maxVal = -minVal for v in self.wordEmbedding.values(): for x in v: minVal = min(minVal,x) maxVal = max(maxVal,x) mapper = interp1d([minVal,maxVal],[-1,1]) logger.info("Mapping minVal[%f], maxVal[%f] to [-1,1] " % (minVal,maxVal)) for w in self.wordEmbedding: self.wordEmbedding[w] = mapper(self.wordEmbedding[w]) print("Cross Check") print(self.wordEmbedding['good']) self.saveEmbedding() return True def saveEmbedding(self): with open(WORD_EMBEDDED_CACHE, 'wb') as f: pickle.dump(self.wordEmbedding,f) logger.info("Embedding Saved!") def buildVocab(self, data, train_ids, trimEmbedding): self.ind2word = loadFromPickleIfExists(VOCAB_FILE) if not self.ind2word: logger.debug("Building Vocab") x = {} allWords = set() for w in self.wordEmbedding.keys(): allWords.add(w) logger.debug("Cached all Embedded Words") for _id,captions in data.items(): if _id not in train_ids: continue for cap in captions: for w in caption_tokenize(cap): if w not in allWords: continue if w not in x.keys(): x[w]=1 else: x[w]+=1 assert 'tshirt' not in x.keys() assert 'tshirt' not in allWords logger.debug("Iterated over all captions") self.ind2word = [] for w,enc in self.specialWords.items(): self.ind2word.append(enc) self.ind2word.extend([w for w in x.keys() if x[w]>=Vocab.WORD_MIN_FREQ]) with open(VOCAB_FILE,'wb') as f: pickle.dump(self.ind2word,f) logger.debug("Vocab File saved") logger.info("Vocab Size : %d"%len(self.ind2word)) self.word2ind = dict() for i,w in enumerate(self.ind2word): self.word2ind[w]=i assert 'tshirt' not in self.wordEmbedding.keys() assert 'tshirt' not in self.word2ind.keys() logger.debug("Words to be in vocab %d found %d" % (Vocab.VOCAB_SIZE, len(self.ind2word))) assert len(self.ind2word) == Vocab.VOCAB_SIZE if trimEmbedding: newEmbedding = dict() logger.debug("Trimming Word Embedding") for w in self.ind2word: newEmbedding[w] = self.wordEmbedding[w] self.wordEmbedding=newEmbedding logger.debug("Trimming Word Embedding Done") self.saveEmbedding() def get_filteredword(self,w): if w in self.word2ind.keys(): return w return self.specialWords['EXTRA'] def fit_caption_tokens(self,tokens,length,addPrefix,addSuffix): tok = [] tokens = tokens[0:length] if addPrefix: tok.append(self.specialWords['START']) tok.extend(tokens) if addSuffix: tok.append(self.specialWords['END']) for i in range(length-len(tokens)): tok.append(self.specialWords['NONE']) return tok def onehot_word(self,w): encode = [0] * Vocab.VOCAB_SIZE encode[self.word2ind[w]] = 1 return encode def word_fromonehot(self, onehot): index = np.argmax(onehot) return self.ind2word[index] def get_caption_encoded(self,caption,glove, addPrefix, addSuffix): tokens = caption_tokenize(caption) tokens = self.fit_caption_tokens(tokens, Vocab.CAPTION_LEN, addPrefix, addSuffix) tokens = [self.get_filteredword(x) for x in tokens] # logger.debug("Working on Caption %s " % str(tokens)) if glove: return [self.wordEmbedding[x] for x in tokens] else: return [self.onehot_word(x) for x in tokens] def get_caption_from_indexs(self,indx): s = ' '.join([self.ind2word[x] for x in indx]) return s def vocabBuilder(): vHandler = VideoHandler(VideoHandler.s_fname_train, VideoHandler.s_fname_test) train_ids = vHandler.get_otrain_ids() captionData = vHandler.getCaptionData() vocab = Vocab(captionData, train_ids) return [vHandler, vocab] if __name__ == "__main__": vocabBuilder() ================================================ FILE: src/backend/vpreprocess.py ================================================ import numpy as np import random import os from keras.preprocessing import image from common.config import get_vpreprocess_config from common.logger import logger from backend.vocab import vocabBuilder BADLOGS = get_vpreprocess_config()["LOGS_DIR"] def badLogs(msg): logger.debug(msg) with open(BADLOGS,"a") as f: f.write(msg) class Preprocessor: def __init__(self): self.vHandler,self.vocab = vocabBuilder() def set_vmodel(self, vmodel): self.vHandler.set_vmodel(vmodel) def imageToVec(self, fname): NEED_W = 224 NEED_H = 224 img = image.load_img(fname, target_size=(NEED_H, NEED_W)) x = image.img_to_array(img) x /= 255. x -= 0.5 x *= 2. return x ''' Either convert videos from ids or frame file names ''' COUNTER = 0 def videoToVec(self, _id = None, vfname = None, cache_id = None): assert (_id is None) ^ (vfname is None) if not _id == None: out = self.vHandler.get_iframes_audio(_id = _id, logs = False) else: out = self.vHandler.get_iframes_audio(sfname = vfname, logs = False, cache_id = cache_id) if out is None: return None (frames, afeatures) = out return frames, afeatures # deprecated fnames = None edir = None if fnames is None: ef = self.vHandler.get_frames(_id = _id, logs = False) if ef is not None: edir, fnames = ef if fnames is None: return None content = [] for i,fname in enumerate(fnames): content.append(self.imageToVec(fname)) self.vHandler.free_frames(edir) #if len(fnames)>0: # os.system("cp \"%s\" ~/TESTING/%04d.jpg" % (fnames[0],Preprocessor.COUNTER)) # Preprocessor.COUNTER += 1 return content def get_video_content(self, vfname, cache_id = None): return self.videoToVec(vfname = vfname, cache_id = cache_id) def get_video_caption(self, _id, just_one_caption = True): vid_a = self.videoToVec(_id = _id) if vid_a is None: return None (vid, afeature) = vid_a data = self.vHandler.getCaptionData() out = [] for cur_caption in data[_id]: captionIn = self.vocab.get_caption_encoded(cur_caption, True, True, False) captionOut = self.vocab.get_caption_encoded(cur_caption, False, False, True) out.append([afeature,vid,captionIn,captionOut]) if len(out) == 0: return None if just_one_caption: return [random.choice(out)] return out def datas_from_ids(self, idlst): logger.debug("\n Loading Video/Captions for ids : %s" % str(idlst)) afeatures = [] vids = [] capIn = [] capOut = [] for _id in idlst: vccs = self.get_video_caption(_id, just_one_caption = True) if vccs is None: continue for vcc in vccs: _afeature, _vid, _capIn, _capOut = vcc afeatures.append(_afeature) vids.append(_vid) capIn.append(_capIn) capOut.append(_capOut) afeatures = np.asarray(afeatures) capIn = np.asarray(capIn) capOut = np.asarray(capOut) vids = np.asarray(vids) logger.debug("Shape vids %s [max distinct %d]" % (str(np.shape(vids)),len(idlst))) logger.debug("Shape afeatures %s" % str(np.shape(afeatures))) logger.debug("Shape CapIn %s" % str(np.shape(capIn))) logger.debug("Shape CapOut %s" % str(np.shape(capOut))) return [[capIn,afeatures,vids],capOut] def get_nextbatch(self, batch_size, arr_counter, ids): assert len(ids) > 0 count = arr_counter[0] start = (count * batch_size) % len(ids) idlst = [] for i in xrange(batch_size): idlst.append(ids[start]) start = (start + 1) % len(ids) count = (count +1 ) % len(ids) arr_counter[0] = count return idlst ''' typeSet 0:Training dataset, 1: Validation dataset, 2: Test Dataset ''' # Sequential def data_generator(self, batch_size, start=0, typeSet = 0): if typeSet == 0: ids = self.vHandler.getTrainingIds() elif typeSet == 1: ids = self.vHandler.getValidationIds() elif typeSet == 2: ids = self.vHandler.getTestIds() else: assert False random.shuffle(ids) arr_counter = [0] count = (len(ids)+batch_size-1)//batch_size assert count > 0 logger.debug("Max Batches of type %d : %d " % (typeSet, count)) while True: idlst = self.get_nextbatch(batch_size, arr_counter, ids) data = self.datas_from_ids(idlst) ndata = [] for d in data: if d is not None: ndata.append(d) if len(ndata) > 0: yield ndata # Random def data_generator_random(self, batch_size, start=0, typeSet = 0): if typeSet == 0: ids = self.vHandler.getTrainingIds() elif typeSet == 1: ids = self.vHandler.getValidationIds() elif typeSet == 2: ids = self.vHandler.getTestIds() else: assert False random.shuffle(ids) count = (len(ids) + batch_size - 1)//batch_size assert count > 0 if start == -1: start = random.randint(0,count) logger.debug("Max Batches of type %d : %d " % (typeSet, count)) #start = start % count while True: bs = batch_size if bs>len(ids): bs=len(ids) logger.debug("FORCE Reducing Batch Size to %d from %d",bs,batch_size) idlst = random.sample(ids,bs) data = self.datas_from_ids(idlst) ndata = [] for d in data: if d is not None: ndata.append(d) if len(ndata) > 0: yield ndata #start = (start + 1)%count ================================================ FILE: src/common/__init__.py ================================================ ================================================ FILE: src/common/config.py ================================================ """ Configuration Parser for V2D """ import json import threading import os lock = threading.Lock() def get_config(): with lock: if hasattr(get_config, "config"): return get_config.config fname = os.environ.get("V2D_CONFIG_FILE", "config.json") with open(fname, "r") as fin: get_config.config = json.load(fin) return get_config.config def clear(): with lock: if hasattr(get_config, "config"): delattr(get_config, "config") def get_app_config(): return get_config()["app"] def get_rpc_config(): return get_config()["rpc"] def get_vpreprocess_config(): return get_config()["vpreprocess"] def get_vocab_config(): return get_config()["vocab"] def get_tests_config(): return get_config()["tests"] ================================================ FILE: src/common/logger.py ================================================ import logging logger = logging.getLogger('root') FORMAT = "[%(filename)s:%(lineno)s - %(funcName)20s() ] %(message)s" logging.basicConfig(format=FORMAT) logger.setLevel(logging.DEBUG) ================================================ FILE: src/common/rpc.py ================================================ import threading import traceback from six.moves.xmlrpc_client import ServerProxy from six.moves.xmlrpc_server import SimpleXMLRPCServer from common.config import get_rpc_config from common.logger import logger CONFIG = get_rpc_config() SERVER_RUNAS = CONFIG["RPC_SERVER_RUNAS"] PORT = CONFIG["RPC_PORT"] SERVER_IP = CONFIG["RPC_ENDPOINT"] lock = threading.Lock() def rpc_decorator(f): def new_f(*args, **kwargs): try: return f(*args, **kwargs) except Exception as e: tb = traceback.format_exc() logger.error("Exception raised in rpc %s, %s\n%s" % (f, e, tb)) raise e return new_f def close_framework(): exit() def register_server(framework): print('Preparing for Register Server') server = SimpleXMLRPCServer((SERVER_RUNAS, PORT)) print('Listening to %d' % PORT) server.register_function(rpc_decorator(framework.predict_fnames), 'predict_fnames') server.register_function(rpc_decorator(framework.predict_ids), 'predict_ids') server.register_function(rpc_decorator(framework.get_weights_status), 'get_weights_status') server.register_function(rpc_decorator(close_framework), 'close_framework') print("[RPC][Server][Started]") try: server.serve_forever() except KeyboardInterrupt: raise except Exception: raise finally: print("[RPC][Server][Closing]") server.server_close() def get_rpc(): with lock: if hasattr(get_rpc, 'proxy'): return get_rpc.proxy get_rpc.proxy = ServerProxy("http://%s:%d/" % (SERVER_IP, PORT)) return get_rpc.proxy ================================================ FILE: src/common/status.py ================================================ from enum import Enum class ModelWeightsStatus(Enum): NO_INFO = 0 SUCCESS = 1 MODEL_NOT_FOUND = 2 WIP = 3 ================================================ FILE: src/config.json ================================================ { "app": { "PREDICT_MODE_ONLY": true, "PREFIX":"/home/scopeinfinity/BTP/Video2Description/src/", "MAX_CONTENT_LENGTH": 10649600, "UPLOAD_FOLDER": "/home/scopeinfinity/BTP/Video2Description/uploads/", "VIDEOS_DATASET": "/home/scopeinfinity/BTP/Video2Description/dataset/", "VIDEOS_FOLDER": "/home/scopeinfinity/BTP/Video2Description/dataset/videos/", "DATASET_CACHE": "/home/scopeinfinity/BTP/Video2Description/dataset_cache/" }, "rpc": { "RPC_SERVER_RUNAS": "127.0.0.1", "RPC_PORT": 5001, "RPC_ENDPOINT": "127.0.0.1" }, "vpreprocess": { "COCOFNAME": "/home/scopeinfinity/cococaption/cocoeval.py", "LOGS_DIR": "/tmp/v2d_vpreprocess.log" }, "vocab": { "GLOVE_FILE": "/home/scopeinfinity/BTP/Video2Description/dataset/glove.6B.300d.txt", "WORD_EMBEDDED_CACHE": "/home/scopeinfinity/BTP/Video2Description/dataset_cache/glove_300.dat", "VOCAB_FILE": "/home/scopeinfinity/BTP/Video2Description/dataset_cache/vocab.dat" }, "tests": { "dir_videos": "./tests/data/videos" } } ================================================ FILE: src/config_docker.json ================================================ { "app": { "PREDICT_MODE_ONLY": true, "PREFIX":"/home/si/v2d/src", "MAX_CONTENT_LENGTH": 10649600, "UPLOAD_FOLDER": "/home/si/v2d/uploads/", "VIDEOS_DATASET": "/home/si/v2d/dataset/", "VIDEOS_FOLDER": "/home/si/v2d/dataset/videos/", "DATASET_CACHE": "/home/si/v2d/dataset_cache/" }, "rpc": { "RPC_SERVER_RUNAS": "172.14.0.2", "RPC_PORT": 5001, "RPC_ENDPOINT": "172.14.0.2" }, "vpreprocess": { "COCOFNAME": "/home/si/coco-caption/pycocoevalcap/eval.py", "LOGS_DIR": "/var/log/v2d/vpreprocess.log" }, "vocab": { "GLOVE_FILE": "/home/si/v2d/dataset/glove.6B.300d.txt", "WORD_EMBEDDED_CACHE": "/home/si/v2d/dataset_cache/glove_300.dat", "VOCAB_FILE": "/home/si/v2d/dataset_cache/vocab.dat" }, "tests": { "dir_videos": "./tests/data/videos" } } ================================================ FILE: src/frontend/__init__.py ================================================ ================================================ FILE: src/frontend/app.py ================================================ import argparse import json import os import random import re import traceback from copy import deepcopy from flask import Flask, render_template, request, send_from_directory from waitress import serve from common.config import get_app_config from common.rpc import get_rpc from common.status import ModelWeightsStatus app = Flask(__name__) config = get_app_config() PREDICT_MODE_ONLY = config["PREDICT_MODE_ONLY"] PREFIX = config["PREFIX"] app.config['MAX_CONTENT_LENGTH'] = config["MAX_CONTENT_LENGTH"] app.config['UPLOAD_FOLDER'] = config["UPLOAD_FOLDER"] app.config['VIDEOS_FOLDER'] = config["VIDEOS_FOLDER"] navigation = [("./","Predict",False)] if not PREDICT_MODE_ONLY: navigation.extend([("./get_ids","Get ID's",False),("./play","Play Videos",False)]) # Don't even define the methods! And definately need to improve this. def get_train_ids(): command = "python %s/backend/videohandler.py -strain" % PREFIX return os.popen(command).read() def get_test_ids(): command = "python %s/backend/videohandler.py -stest" % PREFIX return os.popen(command).read() def get_val_ids(): command = "python %s/backend/videohandler.py -sval" % PREFIX return os.popen(command).read() def get_all_ids(): command = "python %s/backend/videohandler.py -sval -stest -strain" % PREFIX return os.popen(command).read() def predict_ids(ids): proxy = get_rpc() return proxy.predict_ids(ids) @app.route("/play") def play(): return render_template('play.html', navigation = getactivenav(2)) @app.route("/get_ids") def get_ids(): content = dict() content['ids'] = get_all_ids() return render_template('get_ids.html', navigation=getactivenav(1), content = content).replace("]","]

") @app.route("/predict") def predict_page(fnames = None): if request.args.get('fnames'): return computeAndRenderPredictionFnames(re.sub("[^0-9 ]", "", request.args.get('fnames'))) if (not PREDICT_MODE_ONLY) and request.args.get('ids'): return computeAndRenderPredictionIDs(ids = re.sub("[^0-9 ]", "", request.args.get('ids'))) return "Invalid Request" @app.route('/download', methods=['GET']) def download_file(): _id = request.args.get('id') if _id and unicode(_id).isnumeric(): return send_from_directory(app.config['VIDEOS_FOLDER'],str(_id)+".mp4") return "File Not Exists" return "Invalid Request" def predict_fnames(fnames): proxy = get_rpc() return proxy.predict_fnames(fnames) def model_weights_notify(): proxy = get_rpc() try: status = proxy.get_weights_status() if status == str(ModelWeightsStatus.SUCCESS): return None return status except Exception as e: print("model_weights_notify failed: %s" % e) return "Failed to communicate." def getactivenav(index): nav = deepcopy(navigation) nav[index] = (nav[index][0], nav[index][1], True) return nav @app.route("/model_weights_status") def model_weights_status(): return model_weights_notify() or "[SUCCESS]" @app.route("/") def home(): weights_notify = model_weights_notify() if PREDICT_MODE_ONLY: return render_template( 'publicindex.html', weights_notify = weights_notify) else: return render_template('index.html', navigation = getactivenav(0)) def computeAndRenderPredictionIDs(ids): content = dict() content['ids'] = ids content['data_ids'] = predict_ids(ids) return render_template('predict.html', content = content) def computeAndRenderPredictionFnames(fnames): content = dict() content['fnames'] = fnames content['data_fnames'] = predict_fnames(fnames) return render_template('predict.html', content = content) # http://flask.pocoo.org/docs/0.12/patterns/fileuploads/ def allowed_file(filename): return '.' in filename and \ filename.rsplit('.', 1)[1].lower() in ['mp4'] def error(msg): return json.dumps({'error':msg}) def success(data): return json.dumps({'success':data}) @app.route('/upload', methods=['POST']) def upload_file(): print(request.files) if request.method != "POST": return error("Only POST requests are expected!") if "file" not in request.files: return error("No filess found!") file = request.files['file'] if not file: return error("No file found!") if file.filename == '': return error("No filename found!") if not allowed_file(file.filename): return error("Only *.mp4 video files are supported at this moment!") filename = str(random.randint(0,1000000)) + ".mp4" filename = os.path.join(app.config["UPLOAD_FOLDER"], filename) try: file.save(filename) print("File uploaded: %s" % filename) output = json.loads(predict_fnames([filename])) except Exception as e: print(traceback.format_exc()) return error("Request Failed! Exception caught while generating caption.") finally: os.unlink(filename) return success(output) def main(): parser = argparse.ArgumentParser() parser.add_argument('-p', '--port', type = int, default=5000) args = parser.parse_args() serve(app, host='0.0.0.0', port=args.port) if __name__ == "__main__": main() ================================================ FILE: src/frontend/templates/get_ids.html ================================================ {% extends "layout.html" %} {% block content %}
Train / Validation / Test ID's
{{ content['ids'] }}
{% endblock %} ================================================ FILE: src/frontend/templates/index.html ================================================ {% extends "layout.html" %} {% block content %}
Predict Using IDs
Predict Using File Names
Predict via Uploading Media
{% endblock %} ================================================ FILE: src/frontend/templates/layout.html ================================================ Video2Description {% if navigation %} {% endif %} {% block content %}{% endblock %} ================================================ FILE: src/frontend/templates/play.html ================================================ {% extends "layout.html" %} {% block content %}
Play Video
{% endblock %} ================================================ FILE: src/frontend/templates/predict.html ================================================ {% extends "layout.html" %} {% block content %} {% if content['ids'] %}
Processed
{{ content['ids'] }}
{{ content['data_ids'] }}
{% endif %} {% if content['fnames'] %}
Processed
{{ content['fnames'] }}
{{ content['data_fnames'] }}
{% endif %} {% endblock %} ================================================ FILE: src/frontend/templates/publicindex.html ================================================ Video2Description
{% if weights_notify %} Backed not ready: {{ weights_notify }} {% endif %}

Describe video using text?


Keep Smiling :)
Description of video
Please upload some file.
================================================ FILE: src/run_tests.sh ================================================ set -e python -m unittest discover tests/ ================================================ FILE: src/tests/__init__.py ================================================ ================================================ FILE: src/tests/data/__init__.py ================================================ ================================================ FILE: src/tests/data/fetcher.py ================================================ import os from common.config import get_tests_config DIR_VIDEOS = get_tests_config()["dir_videos"] def get_videopath(fname): '''Returns path of given test video file.''' return os.path.join(DIR_VIDEOS, fname) ================================================ FILE: src/tests/data/test_fetcher.py ================================================ import unittest import os from tests.data import fetcher class TestFetcher(unittest.TestCase): def test_get_videopath_success(self): path = fetcher.get_videopath(".content") self.assertTrue(os.path.exists(path)) with open(path, "r") as f: self.assertEqual("I_AM_VIDEO_TESTDATA_DIR", f.read().strip()) def test_get_videopath_failure(self): path = fetcher.get_videopath("bad_filename.mp4") self.assertFalse(os.path.exists(path)) if __name__ == '__main__': unittest.main() ================================================ FILE: src/tests/data/videos/.content ================================================ I_AM_VIDEO_TESTDATA_DIR ================================================ FILE: tests/e2e/__init__.py ================================================ ================================================ FILE: tests/e2e/test_external.py ================================================ import unittest import json import os from parameterized import parameterized from selenium.webdriver import Firefox from selenium.webdriver.firefox.options import Options from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import WebDriverWait WEB_URL = "http://localhost:8080" ROOT_PATH = "src" CONFIG_FILE = "src/config.json" class TestExternal(unittest.TestCase): """Test from as a end user.""" def setUp(self): options = Options() options.add_argument('-headless') self.driver = Firefox(options=options) def tearDown(self): self.driver.close() def get_video_path(self, fname): with open(CONFIG_FILE, "r") as fin: dir_videos = json.load(fin)["tests"]["dir_videos"] path = os.path.abspath( os.path.join(ROOT_PATH, dir_videos, fname)) self.assertTrue(os.path.exists(path)) return path @parameterized.expand([ ("12727.mp4", "two men are talking about a cooking show"), ("12968.mp4", "a woman is talking about a makeup face"), ]) def test_upload_and_verify(self, fname, caption): """ Tests uploading a video and verify the response. Note: The tests values are currently hard coded to a specific trained model and it might fail for other models. """ self.driver.get(WEB_URL) video_path = self.get_video_path(fname) text_vprocessing = "Video is being uploaded and processed" self.driver.find_element_by_xpath("//input[@type='file']").send_keys(video_path) self.assertNotIn(text_vprocessing, self.driver.find_element_by_id("notifications").text) self.driver.find_element_by_xpath("//input[@value='Upload Video']").click() self.assertIn(text_vprocessing, self.driver.find_element_by_id("notifications").text) WebDriverWait(self.driver, 120).until( EC.text_to_be_present_in_element( (By.ID, "notifications"), "Request Completed") ) self.assertIn(caption, self.driver.find_element_by_id("results").text.lower()) ================================================ FILE: uploads/touched ================================================